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