This commit is contained in:
Geoffrey Frogeye 2017-03-17 18:10:26 +01:00
parent 1e9f628d4c
commit 93ada685e7
7 changed files with 229 additions and 0 deletions

13
TP7/Makefile Normal file
View file

@ -0,0 +1,13 @@
tp7: tp7.o liblistechaines.a
gcc $^ -o $@
%.o: %.c
gcc -c $^ -o $@
lib%.a: %.o
ar rcs $@ $^
.PHONY: clean
clean:
rm -r lib*.a *.o tp7