1
0
Fork 0
mirror of https://github.com/vbatts/bitorchestra.git synced 2025-08-02 07:30:29 +00:00

initial commit

This commit is contained in:
Vincent Batts 2011-11-14 10:13:02 -05:00
commit 0ad2b60a9d
6 changed files with 44 additions and 0 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
FILES := $(basename $(wildcard *.c))
all: $(FILES)
%: %.c
$(CC) -o $@ $<
clean:
rm -rf $(FILES) *.o *~