summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHolger Steinhaus <hsteinhaus@gmx.de>2015-09-11 18:22:20 +0200
committerHolger Steinhaus <hsteinhaus@gmx.de>2015-09-11 18:22:20 +0200
commitf01774accb4606de607d9597f40144d78eb62243 (patch)
treec2754ae05a1f2bdbb325c0d4bec3922570a543de /Makefile
parent2baa295a6fa561d012785b36387ed07cf914cd8d (diff)
downloadvdr-plugin-mcli-f01774accb4606de607d9597f40144d78eb62243.tar.gz
vdr-plugin-mcli-f01774accb4606de607d9597f40144d78eb62243.tar.bz2
serveral Makefile fixes
- fixed build of mcli-shared exexutable - fixed dependecies for reliable parallel build
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 29586ff..a1776d9 100644
--- a/Makefile
+++ b/Makefile
@@ -127,7 +127,7 @@ i18n-dist: $(I18Nmsgs)
$(SOFILE): $(OBJS)
$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@
-libvdr-$(PLUGIN).so: $(OBJS)
+libvdr-$(PLUGIN).so: $(OBJS) libmcli.a
ifeq ($(APPLE_DARWIN), 1)
$(CXX) $(CXXFLAGS) $(OBJS) $(LIBS) -o $@
@cp $@ $(LIBDIR)/$@.$(APIVERSION)
@@ -151,3 +151,7 @@ dist: clean
clean:
@-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~
+ $(MAKE) -C mcast/client/ clean
+ $(MAKE) -C mcast/netcv2dvbip/ clean
+ $(MAKE) -C mcast/tool/ clean
+