editor/bass-sys/linux/bass24/makefile
2021-01-07 21:37:50 -06:00

11 lines
295 B
Makefile

EXAMPLES = 3dtest basstest contest custloop devlist dsptest fxtest 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 $@