diff options
author | cbdev <cb@cbcdn.com> | 2021-06-21 22:03:17 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2021-06-21 22:03:17 +0200 |
commit | 921ce069a4770fbadad7bb4e806361e857469409 (patch) | |
tree | 944dbc2c4fbb539168f9353de5eba175313762b6 /Makefile | |
parent | 9faaeeac95d20ea678a844de05b8b0515f19e19d (diff) | |
download | midimonster-921ce069a4770fbadad7bb4e806361e857469409.tar.gz midimonster-921ce069a4770fbadad7bb4e806361e857469409.tar.bz2 midimonster-921ce069a4770fbadad7bb4e806361e857469409.zip |
Repository cleanup
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 = config.o backend.o plugin.o +OBJS = core/config.o core/backend.o core/plugin.o PREFIX ?= /usr PLUGIN_INSTALL = $(PREFIX)/lib/midimonster @@ -11,7 +11,7 @@ GITVERSION = $(shell git describe) CFLAGS ?= -g -Wall -Wpedantic #CFLAGS += -DDEBUG # Hide all non-API symbols for export -CFLAGS += -fvisibility=hidden +CFLAGS += -fvisibility=hidden -I./ midimonster: LDLIBS = -ldl # Replace version string with current git-describe if possible |