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.
s6-pa-tp/TP5/Makefile
Geoffrey Frogeye 46b1ecc22c TP5 + 1/2 questions supplémentaires
Intersection ne fonctionne pas encore
2017-03-15 12:10:20 +01:00

9 lines
114 B
Makefile

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