summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSascha Volkenandt <sascha (at) akv-soft (dot) de>2007-01-03 20:26:35 +0000
committerSascha Volkenandt <sascha (at) akv-soft (dot) de>2007-01-03 20:26:35 +0000
commitdeaa8283750e790090b4e1d94ec5ac572cbd2cc6 (patch)
treeb232409725aeb50a62123a94c8941ad9b68e4d66 /Makefile
parent231341f7bbe2bb6343ec6694b894803b100937c5 (diff)
downloadvdr-plugin-live-deaa8283750e790090b4e1d94ec5ac572cbd2cc6.tar.gz
vdr-plugin-live-deaa8283750e790090b4e1d94ec5ac572cbd2cc6.tar.bz2
- added exit when compiling inside a subdir fails
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 84a5680..e66bc19 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile,v 1.15 2007/01/03 19:33:54 tadi Exp $
+# $Id: Makefile,v 1.16 2007/01/03 20:26:35 lordjaxom Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -85,7 +85,7 @@ $(DEPFILE): Makefile
SUBDIRS:
@for dir in $(SUBDIRS); do \
- make -C $$dir CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS)" ; \
+ make -C $$dir CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS)" || exit 1; \
done
libvdr-$(PLUGIN).so: $(PLUGINOBJS) $(LIBS)