SRC = main.c putchar.c transform.c DEP = test.h OBJ = $(SRC:.c=.o) test: $(OBJ) gcc -I. -o test $(OBJ) %.o: %.c $(DEP) gcc -I. -c $<