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/TP4/Makefile
Geoffrey Frogeye b464da4e57 TP4 WIP
La fonction insérer n'est pas correcte
2017-03-10 18:16:55 +01:00

10 lines
114 B
Makefile

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