This commit is contained in:
Geoffrey Frogeye 2016-05-18 11:21:03 +02:00
parent 3034d88603
commit d00d0745d0
6 changed files with 354 additions and 0 deletions

9
DS2/Makefile Normal file
View file

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