TP6
This commit is contained in:
parent
1a5e7af515
commit
45f6092d0d
11 changed files with 549 additions and 0 deletions
9
TP6/Makefile
Normal file
9
TP6/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
all: $(patsubst %.c,%,$(shell ls *.c))
|
||||
|
||||
%: %.c
|
||||
clang -Wall -Wextra $< -o $@ -g -lm
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
clean:
|
||||
rm *.exe
|
Reference in a new issue