TP4 WIP
La fonction insérer n'est pas correcte
This commit is contained in:
parent
d4af7955e5
commit
b464da4e57
6 changed files with 351 additions and 0 deletions
9
TP4/Makefile
Normal file
9
TP4/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