This commit is contained in:
Geoffrey Frogeye 2016-01-27 10:06:00 +01:00
parent b1fce38fc7
commit 5cb258b405
2 changed files with 93 additions and 1 deletions

View file

@ -1,4 +1,4 @@
all: $(subst c,exe,$(shell ls))
all: $(subst c,exe,$(shell ls *.c))
E1-1.exe: E1-1.c
gcc E1-1.c -o E1-1.exe
@ -35,6 +35,9 @@ E9.exe: E9.c
E10.exe: E10.c
gcc E10.c -o E10.exe
E11.exe: E11.c
gcc E11.c -o E11.exe
.PHONY: all clean