From a7be64dae25b12690531d965da9f8684e4226e38 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Fri, 24 Sep 2021 04:23:00 -0400 Subject: [PATCH] Add presets dir to Makefile in case it is added later. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9a14fb2..b339e62 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,8 @@ RACK_DIR ?= ../.. FLAGS += -Idep/include SOURCES += $(wildcard src/*.cpp) -DISTRIBUTABLES += $(wildcard LICENSE*) res +DISTRIBUTABLES += res +DISTRIBUTABLES += $(wildcard LICENSE*) +DISTRIBUTABLES += $(wildcard presets) include $(RACK_DIR)/plugin.mk