mirror of
https://github.com/vbatts/bitorchestra.git
synced 2024-11-23 17:15:41 +00:00
11 lines
110 B
Makefile
11 lines
110 B
Makefile
|
|
FILES := $(basename $(wildcard *.c))
|
|
|
|
all: $(FILES)
|
|
|
|
%: %.c
|
|
$(CC) -o $@ $<
|
|
|
|
clean:
|
|
rm -rf $(FILES) *.o *~
|
|
|