aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-12-11 22:38:46 +0100
committercbdev <cb@cbcdn.com>2019-12-11 22:38:46 +0100
commitec01135171e4a57450e0250cf08cd4d60a8ad9ee (patch)
treef9be7797d8e1aaedc82428708e30dbe1218585c9 /Makefile
parente517dbe783e65fdd1c80f5c917f8f924e2adfe8d (diff)
downloadmidimonster-ec01135171e4a57450e0250cf08cd4d60a8ad9ee.tar.gz
midimonster-ec01135171e4a57450e0250cf08cd4d60a8ad9ee.tar.bz2
midimonster-ec01135171e4a57450e0250cf08cd4d60a8ad9ee.zip
Fix makefile indentation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 5183fa5..1f6f212 100644
--- a/Makefile
+++ b/Makefile
@@ -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