This commit is contained in:
Geoffrey Frogeye 2017-03-27 15:59:08 +02:00
parent 1a5e7af515
commit 45f6092d0d
11 changed files with 549 additions and 0 deletions

9
TP6/Makefile Normal file
View file

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