This commit is contained in:
Geoffrey Frogeye 2016-03-23 08:35:27 +01:00
parent 75553a72a1
commit 72d2f70b99
2 changed files with 37 additions and 0 deletions

9
TP4/Makefile Normal file
View file

@ -0,0 +1,9 @@
all: $(patsubst %.c,%.exe,$(shell ls *.c))
%.exe: %.c
gcc $< -o $@ -lm
.PHONY: all clean
clean:
rm *.exe