This commit is contained in:
Geoffrey Frogeye 2016-04-20 11:19:01 +02:00
parent e7efbd99c5
commit 34f6792698
3 changed files with 73 additions and 0 deletions

9
TP5/Makefile Normal file
View file

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