Ajout exemples cours

This commit is contained in:
Geoffrey Frogeye 2016-02-03 08:25:47 +01:00
parent 3be6dfefbe
commit b960e61f3f
8 changed files with 123 additions and 0 deletions

9
Makefile Normal file
View file

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