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/Makefile

10 lines
107 B
Makefile
Raw Permalink Normal View History

2016-03-02 07:50:03 +00:00
all: $(patsubst %.c,%.exe,$(shell ls *.c))
2016-02-03 07:25:47 +00:00
%.exe: %.c
gcc $< -o $@
.PHONY: all clean
clean:
rm *.exe