This repository has been archived on 2019-08-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
s4-c/DS2-2015/Makefile
Geoffrey Frogeye 230f4f417c DS2-2015 Démarrage
Entrainement au DS1 de demain
2016-03-15 22:14:21 +01:00

9 lines
114 B
Makefile

all: $(patsubst %.c,%.exe,$(shell ls *.c))
%.exe: %.c
gcc $< -g -o $@ -lm
.PHONY: all clean
clean:
rm *.exe