TP10
This commit is contained in:
parent
f7e3478fce
commit
6da645b05e
5 changed files with 193 additions and 0 deletions
9
TP10/Makefile
Normal file
9
TP10/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
all: $(patsubst %.c,%,$(shell ls *.c))
|
||||
|
||||
%: %.c
|
||||
clang -Wall -Wextra $< -o $@ -g
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
clean:
|
||||
rm *.exe
|
Reference in a new issue