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/TP10/Makefile
2017-04-03 15:10:31 +02:00

9 lines
117 B
Makefile

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