TP3
This commit is contained in:
parent
17d12f8016
commit
92ffb7e562
5 changed files with 78 additions and 0 deletions
9
TP3/Makefile
Normal file
9
TP3/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