This repository has been archived on 2019-08-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
s6-pa-tp/TP7/Makefile
2017-03-17 18:11:03 +01:00

13 lines
142 B
Makefile

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