TP4 E1
This commit is contained in:
parent
75553a72a1
commit
72d2f70b99
2 changed files with 37 additions and 0 deletions
9
TP4/Makefile
Normal file
9
TP4/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
all: $(patsubst %.c,%.exe,$(shell ls *.c))
|
||||
|
||||
%.exe: %.c
|
||||
gcc $< -o $@ -lm
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
clean:
|
||||
rm *.exe
|
Reference in a new issue