Skip to content
Permalink
Browse files
exit if make fails
git-svn-id: http://svn.osgeo.org/qgis/trunk@4900 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Feb 21, 2006
1 parent 0635726 commit 0a7e959
Showing 1 changed file with 3 additions and 3 deletions.
@@ -59,21 +59,21 @@ stdsubdirs:
@list='$(STDSUBDIRS)'; \
for subdir in $$list; do \
echo $$subdir ; \
$(MAKE) -C $$subdir ; \
$(MAKE) -C $$subdir || exit 1 ; \
done

# Rule for subdirs using standard win system (make -f Makefile.win)
winsubdirs:
@list='$(WINSUBDIRS)'; \
for subdir in $$list; do \
echo $$subdir ; \
$(MAKE) -C $$subdir -f Makefile.win ; \
$(MAKE) -C $$subdir -f Makefile.win || exit 1 ; \
done

# Rule instalation (using WINSUBDIRS)
instsubdirs:
@list='$(WINSUBDIRS)'; \
for subdir in $$list; do \
echo $$subdir ; \
$(MAKE) -C $$subdir -f Makefile.win install ; \
$(MAKE) -C $$subdir -f Makefile.win install || exit1 ; \
done

0 comments on commit 0a7e959

Please sign in to comment.