diff options
author | cbdev <cb@cbcdn.com> | 2019-12-11 22:38:46 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-12-11 22:38:46 +0100 |
commit | ec01135171e4a57450e0250cf08cd4d60a8ad9ee (patch) | |
tree | f9be7797d8e1aaedc82428708e30dbe1218585c9 /Makefile | |
parent | e517dbe783e65fdd1c80f5c917f8f924e2adfe8d (diff) | |
download | midimonster-ec01135171e4a57450e0250cf08cd4d60a8ad9ee.tar.gz midimonster-ec01135171e4a57450e0250cf08cd4d60a8ad9ee.tar.bz2 midimonster-ec01135171e4a57450e0250cf08cd4d60a8ad9ee.zip |
Fix makefile indentation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -71,14 +71,14 @@ run: valgrind --leak-check=full --show-leak-kinds=all ./midimonster install: - install -d "$(DESTDIR)$(PREFIX)/bin" - install -m 0755 midimonster "$(DESTDIR)$(PREFIX)/bin" - install -d "$(DESTDIR)$(PLUGIN_INSTALL)" - install -m 0755 backends/*.so "$(DESTDIR)$(PLUGIN_INSTALL)" - install -d "$(DESTDIR)$(EXAMPLES)" - install -m 0644 configs/* "$(DESTDIR)$(EXAMPLES)" + install -d "$(DESTDIR)$(PREFIX)/bin" + install -m 0755 midimonster "$(DESTDIR)$(PREFIX)/bin" + install -d "$(DESTDIR)$(PLUGIN_INSTALL)" + install -m 0755 backends/*.so "$(DESTDIR)$(PLUGIN_INSTALL)" + install -d "$(DESTDIR)$(EXAMPLES)" + install -m 0644 configs/* "$(DESTDIR)$(EXAMPLES)" ifdef DEFAULT_CFG - install -Dm 0644 monster.cfg "$(DESTDIR)$(DEFAULT_CFG)" + install -Dm 0644 monster.cfg "$(DESTDIR)$(DEFAULT_CFG)" endif sanitize: export CC = clang |