ajout explications

This commit is contained in:
Hugo LAMY
2019-11-13 12:48:59 +01:00
parent 3d8dde51f4
commit ac4a5e088c
16 changed files with 102 additions and 72 deletions

9
test/Makefile Normal file
View File

@@ -0,0 +1,9 @@
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 $<