11 lines
302 B
Makefile
11 lines
302 B
Makefile
EXAMPLES = 3dtest basstest contest custloop devlist dsptest fxtest livefx livespec modtest multi netradio plugins rectest speakers spectrum synth writewav
|
|
|
|
.PHONY: all clean $(EXAMPLES)
|
|
|
|
all: $(EXAMPLES)
|
|
|
|
clean:
|
|
@$(foreach x,$(EXAMPLES),$(MAKE) -C $(x) clean;)
|
|
|
|
$(EXAMPLES):
|
|
$(MAKE) -C $@
|