This commit is contained in:
Geoffrey Frogeye 2017-04-03 15:10:31 +02:00
parent f7e3478fce
commit 6da645b05e
5 changed files with 193 additions and 0 deletions

9
TP10/Makefile Normal file
View file

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