From d231e93bec7dd72f3239819def43bfa6def7e376 Mon Sep 17 00:00:00 2001 From: Peter Allwin Date: Wed, 9 Jan 2019 00:01:21 +0100 Subject: [PATCH] fixed makefile issue causing wavetables not to be updated --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5c9b0f8..7cc2fa9 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,7 @@ OSCILLATORS := $(wildcard *mk) $(TOPTARGETS): $(OSCILLATORS) package $(OSCILLATORS): -# @rm -fR .dep ./build - @rm -f ./build/obj/macro-oscillator2.o + @rm -fR .dep ./build @$(MAKE) -f $@ $(MAKECMDGOALS) .PHONY: $(TOPTARGETS) $(OSCILLATORS)