diff options
author | cbdev <cb@cbcdn.com> | 2019-03-24 15:20:25 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-03-24 15:20:25 +0100 |
commit | fa8f005a6c97480a671146c483cf1183d5f1b083 (patch) | |
tree | fa97601e78b5b355f3860d5173d002665ddc92b2 /Makefile | |
parent | 90c58250ed8f10996000bc6cea10385f97969847 (diff) | |
download | midimonster-fa8f005a6c97480a671146c483cf1183d5f1b083.tar.gz midimonster-fa8f005a6c97480a671146c483cf1183d5f1b083.tar.bz2 midimonster-fa8f005a6c97480a671146c483cf1183d5f1b083.zip |
Introduce full build target in root
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 $@ |