This commit is contained in:
Geoffrey Frogeye 2017-03-03 17:45:25 +01:00
parent 17d12f8016
commit 92ffb7e562
5 changed files with 78 additions and 0 deletions

9
TP3/Makefile Normal file
View file

@ -0,0 +1,9 @@
all: $(patsubst %.c,%,$(shell ls *.c))
%: %.c
clang -Wall -Wextra $< -o $@
.PHONY: all clean
clean:
rm *.exe