TP5 + 1/2 questions supplémentaires
Intersection ne fonctionne pas encore
This commit is contained in:
parent
5dfd8e74ea
commit
46b1ecc22c
6 changed files with 335 additions and 1 deletions
9
TP5/Makefile
Normal file
9
TP5/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
all: $(patsubst %.c,%,$(shell ls *.c))
|
||||
|
||||
%: %.c
|
||||
clang -Wall -Wextra $< -o $@
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
clean:
|
||||
rm *.exe
|
Reference in a new issue