diff options
author | cbdev <cb@cbcdn.com> | 2021-07-01 22:34:24 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2021-07-01 22:34:24 +0200 |
commit | 3b134cc43965c1c196734be7a162da7cddeeafc8 (patch) | |
tree | fa900d172d5c75d48b1a811bde70bfa40dca56bd /Makefile | |
parent | 6fab3de48e129e1703f70941f65ae89853e567d5 (diff) | |
download | midimonster-3b134cc43965c1c196734be7a162da7cddeeafc8.tar.gz midimonster-3b134cc43965c1c196734be7a162da7cddeeafc8.tar.bz2 midimonster-3b134cc43965c1c196734be7a162da7cddeeafc8.zip |
Factor out explicit frontend API
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |