1
0
Fork 0
mirror of https://github.com/vbatts/bitorchestra.git synced 2025-02-17 09:37:55 +00:00
bitorchestra/Makefile

15 lines
224 B
Makefile
Raw Normal View History

2011-11-14 15:13:02 +00:00
MUSIC_FILES := $(basename $(wildcard f*.c))
TMP_FILES := $(wildcard *~) $(wildcard *.o)
2011-11-14 15:13:02 +00:00
all: $(MUSIC_FILES)
2011-11-14 15:13:02 +00:00
audio.o: audio.c audio.h
%: %.c audio.o
$(CC) -static -s -o $@ $^
2011-11-14 15:13:02 +00:00
clean:
rm -rf $(MUSIC_FILES) $(TMP_FILES)
2011-11-14 15:13:02 +00:00