diff options
author | cbdev <cb@cbcdn.com> | 2019-12-01 12:56:22 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-12-01 12:56:22 +0100 |
commit | 5b840d986ae723656aad4163e12f7d24a88e1da3 (patch) | |
tree | 31ff7b9a488102bd63ef23025f5bf6d3f80a4afc /Makefile | |
parent | dadadbe4aa8028197cfaaedc37bceb920923b803 (diff) | |
download | midimonster-5b840d986ae723656aad4163e12f7d24a88e1da3.tar.gz midimonster-5b840d986ae723656aad4163e12f7d24a88e1da3.tar.bz2 midimonster-5b840d986ae723656aad4163e12f7d24a88e1da3.zip |
Add configuration files and examples to install target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -2,7 +2,7 @@ OBJS = config.o backend.o plugin.o PREFIX ?= /usr -PLUGIN_INSTALL = "$(PREFIX)/lib/midimonster" +PLUGIN_INSTALL = $(PREFIX)/lib/midimonster SYSTEM := $(shell uname -s) CFLAGS ?= -g -Wall -Wpedantic @@ -65,9 +65,14 @@ run: install: install -d "$(DESTDIR)$(PREFIX)/bin" - install -d "$(DESTDIR)$(PLUGIN_INSTALL)" install -m 0755 midimonster "$(DESTDIR)$(PREFIX)/bin" - install -m 0755 backends/*.so "$(DESTDIR)$(PREFIX)/lib/midimonster" + install -d "$(DESTDIR)$(PLUGIN_INSTALL)" + install -m 0755 backends/*.so "$(DESTDIR)$(PLUGIN_INSTALL)" + install -d "$(DESTDIR)$(PREFIX)/share/midimonster" + install -m 0644 configs/* "$(DESTDIR)$(PREFIX)/share/midimonster" +ifdef DEFAULT_CFG + install -m 0644 monster.cfg "$(DESTDIR)$(DEFAULT_CFG)" +endif sanitize: export CC = clang sanitize: export CFLAGS += -g -Wall -Wpedantic -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer |