This repository has been archived on 2019-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
s6-pa-tp/TP3/Makefile

10 lines
117 B
Makefile
Raw Normal View History

2017-03-03 16:45:25 +00:00
all: $(patsubst %.c,%,$(shell ls *.c))
%: %.c
2017-03-10 10:30:49 +00:00
clang -Wall -Wextra $< -o $@ -g
2017-03-03 16:45:25 +00:00
.PHONY: all clean
clean:
rm *.exe