This commit is contained in:
Geoffrey Frogeye 2016-03-16 09:51:20 +01:00
parent 230f4f417c
commit 178291f9f0
8 changed files with 321 additions and 0 deletions

9
DS1/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