diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-03 20:26:35 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-03 20:26:35 +0000 |
commit | deaa8283750e790090b4e1d94ec5ac572cbd2cc6 (patch) | |
tree | b232409725aeb50a62123a94c8941ad9b68e4d66 /Makefile | |
parent | 231341f7bbe2bb6343ec6694b894803b100937c5 (diff) | |
download | vdr-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |