DS1-2015
This commit is contained in:
parent
ad499557cf
commit
630cfed0ed
7 changed files with 306 additions and 0 deletions
9
DS1-2015/Makefile
Normal file
9
DS1-2015/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
all: $(subst c,exe,$(shell ls *.c))
|
||||
|
||||
%.exe: %.c
|
||||
gcc $< -o $@ -lm
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
clean:
|
||||
rm *.exe
|
Reference in a new issue