DS2
This commit is contained in:
parent
3034d88603
commit
d00d0745d0
6 changed files with 354 additions and 0 deletions
9
DS2/Makefile
Normal file
9
DS2/Makefile
Normal 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
|
Reference in a new issue