This commit is contained in:
Geoffrey Frogeye 2017-02-16 21:54:45 +01:00
parent aca877f0f2
commit 17d12f8016
5 changed files with 327 additions and 0 deletions

9
TP2/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