Files
42_INT_01_libft/test/Makefile
2019-11-13 12:48:59 +01:00

10 lines
137 B
Makefile

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 $<