DS2-2015 Démarrage
Entrainement au DS1 de demain
This commit is contained in:
parent
edee5fda32
commit
230f4f417c
3 changed files with 160 additions and 0 deletions
9
DS2-2015/Makefile
Normal file
9
DS2-2015/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
all: $(patsubst %.c,%.exe,$(shell ls *.c))
|
||||
|
||||
%.exe: %.c
|
||||
gcc $< -g -o $@ -lm
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
clean:
|
||||
rm *.exe
|
Reference in a new issue