1
0
Fork 0
mirror of https://github.com/vbatts/bitorchestra.git synced 2024-11-23 17:15:41 +00:00
bitorchestra/Makefile

12 lines
110 B
Makefile
Raw Normal View History

2011-11-14 15:13:02 +00:00
FILES := $(basename $(wildcard *.c))
all: $(FILES)
%: %.c
$(CC) -o $@ $<
clean:
rm -rf $(FILES) *.o *~