This repository has been archived on 2019-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
s6-pa-tp/TP7/Makefile
2017-03-17 18:11:03 +01:00

14 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