aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2021-07-01 22:34:24 +0200
committercbdev <cb@cbcdn.com>2021-07-01 22:34:24 +0200
commit3b134cc43965c1c196734be7a162da7cddeeafc8 (patch)
treefa900d172d5c75d48b1a811bde70bfa40dca56bd /Makefile
parent6fab3de48e129e1703f70941f65ae89853e567d5 (diff)
downloadmidimonster-3b134cc43965c1c196734be7a162da7cddeeafc8.tar.gz
midimonster-3b134cc43965c1c196734be7a162da7cddeeafc8.tar.bz2
midimonster-3b134cc43965c1c196734be7a162da7cddeeafc8.zip
Factor out explicit frontend API
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index de9b24e..e78a745 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
.PHONY: all clean run sanitize backends windows full backends-full install
-OBJS = core/config.o core/backend.o core/plugin.o
+OBJS = core/core.o core/config.o core/backend.o core/plugin.o core/routing.o
PREFIX ?= /usr
PLUGIN_INSTALL = $(PREFIX)/lib/midimonster
@@ -38,7 +38,7 @@ ifdef DEFAULT_CFG
midimonster: CFLAGS += -DDEFAULT_CFG=\"$(DEFAULT_CFG)\"
endif
ifdef PLUGINS
-midimonster: CFLAGS += -DPLUGINS=\"$(PLUGINS)\"
+core/core.o: CFLAGS += -DPLUGINS=\"$(PLUGINS)\"
PLUGIN_INSTALL = $(PLUGINS)
endif