Makefile (409B)
1 RACK_DIR ?= ../.. 2 3 # Exported code 4 FLAGS += -Isrc/genlib -Igen/exports -DGENLIB_NO_JSON 5 SOURCES += $(wildcard src/genlib/*.cpp) 6 SOURCES += $(wildcard gen/exports/*.cpp) 7 8 # VCV module 9 FLAGS += -Isrc 10 SOURCES += $(wildcard src/*.cpp) 11 SOURCES += $(wildcard src/modules/*.cpp) 12 13 # Include the license and module SVGs in the distribution 14 DISTRIBUTABLES += $(wildcard ../LICENSE*) res 15 16 include $(RACK_DIR)/plugin.mk