DS2-2015 Démarrage

Entrainement au DS1 de demain
This commit is contained in:
Geoffrey Frogeye 2016-03-15 22:14:21 +01:00
parent edee5fda32
commit 230f4f417c
3 changed files with 160 additions and 0 deletions

9
DS2-2015/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