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.
s4-c/DS2/Makefile
2016-05-18 11:21:03 +02:00

10 lines
120 B
Makefile

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