DS1
This commit is contained in:
parent
230f4f417c
commit
178291f9f0
8 changed files with 321 additions and 0 deletions
9
DS1/Makefile
Normal file
9
DS1/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