This commit is contained in:
Geoffrey Frogeye 2016-02-24 11:05:25 +01:00
parent ad499557cf
commit 630cfed0ed
7 changed files with 306 additions and 0 deletions

9
DS1-2015/Makefile Normal file
View file

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