자동화 변수, automatic variables

hello.o  : hello.c hello.h
						gcc -c $< -o $@
// $@ : hello.o를 가리킨다
// $< : 첫 번째 의존성인 hello.c를 가리킨다
// $<(hello.c)를 컴파일해서 $@(hello.o)로 output을 만들어라