TP5 E1
This commit is contained in:
parent
e7efbd99c5
commit
34f6792698
3 changed files with 73 additions and 0 deletions
9
TP5/Makefile
Normal file
9
TP5/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