aboutsummaryrefslogtreecommitdiffhomepage
path: root/backends/Makefile
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-03-24 19:57:45 +0100
committercbdev <cb@cbcdn.com>2019-03-24 19:57:45 +0100
commit6e8f195c36cb5f5cd6469658937336f2d31ab6e8 (patch)
treea9bb12ec9962aaf45e6dc36fa0fd85441782c63b /backends/Makefile
parentcf76f45ec229ac8f6f6fdbd3834c139f28c2ea57 (diff)
downloadmidimonster-6e8f195c36cb5f5cd6469658937336f2d31ab6e8.tar.gz
midimonster-6e8f195c36cb5f5cd6469658937336f2d31ab6e8.tar.bz2
midimonster-6e8f195c36cb5f5cd6469658937336f2d31ab6e8.zip
Hack-fix parallel builds
Diffstat (limited to 'backends/Makefile')
-rw-r--r--backends/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/Makefile b/backends/Makefile
index a7ea35a..c11de56 100644
--- a/backends/Makefile
+++ b/backends/Makefile
@@ -28,7 +28,7 @@ evdev.so: LDLIBS = $(shell pkg-config --libs libevdev)
ola.so: LDLIBS = -lola
ola.so: CPPFLAGS += -Wno-write-strings
-%.so :: %.c %.h
+%.so :: %.c %.h $(BACKEND_LIB)
$(CC) $(CFLAGS) $(LDLIBS) $< $(ADDITIONAL_OBJS) -o $@ $(LDFLAGS)
%.so :: %.cpp %.h