TP7
This commit is contained in:
parent
1e9f628d4c
commit
93ada685e7
7 changed files with 229 additions and 0 deletions
13
TP7/Makefile
Normal file
13
TP7/Makefile
Normal 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
|
Reference in a new issue