aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-03-24 15:20:25 +0100
committercbdev <cb@cbcdn.com>2019-03-24 15:20:25 +0100
commitfa8f005a6c97480a671146c483cf1183d5f1b083 (patch)
treefa97601e78b5b355f3860d5173d002665ddc92b2 /Makefile
parent90c58250ed8f10996000bc6cea10385f97969847 (diff)
downloadmidimonster-fa8f005a6c97480a671146c483cf1183d5f1b083.tar.gz
midimonster-fa8f005a6c97480a671146c483cf1183d5f1b083.tar.bz2
midimonster-fa8f005a6c97480a671146c483cf1183d5f1b083.zip
Introduce full build target in root
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cda8fae..5ee9cd9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: all clean run sanitize backends
+.PHONY: all clean run sanitize backends full backends-full
OBJS = config.o backend.o plugin.o
PLUGINDIR = "\"./backends/\""
@@ -19,9 +19,14 @@ endif
all: midimonster backends
+full: midimonster backends-full
+
backends:
$(MAKE) -C backends
+backends-full:
+ $(MAKE) -C backends full
+
# This rule can not be the default rule because OSX the target prereqs are not exactly the build prereqs
midimonster: midimonster.c portability.h $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $< $(OBJS) $(LDLIBS) -o $@