Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added doc and exit on fail
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@4922 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Feb 28, 2006
1 parent fc3bfde commit dccce7b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Makefile.win
Expand Up @@ -4,10 +4,11 @@ all: winsubdirs

install: all
mkdir -p -m 755 $(prefix)
$(MAKE) -C i18n -f Makefile install
$(MAKE) -C images -f Makefile install
$(MAKE) -C resources -f Makefile install
$(MAKE) -C src -f Makefile.win install
$(MAKE) -C i18n -f Makefile install || exit 1
$(MAKE) -C images -f Makefile install || exit 1
$(MAKE) -C resources -f Makefile install || exit 1
$(MAKE) -C src -f Makefile.win install || exit 1
$(MAKE) -C doc -f Makefile install || exit 1

# Copy GRASS to QGIS
cpgrass:
Expand All @@ -20,7 +21,7 @@ cpgrass:
cp -r $(GRASS_BASE)/bin $(prefix)/grass
cp -r $(GRASS_BASE)/scripts $(prefix)/grass
cp -r $(GRASS_BASE)/lib/*.dll $(prefix)
cp -r $(GRASS_BASE)/docs/html $(prefix)/docs
cp -r $(GRASS_BASE)/docs/html $(prefix)/grass/docs
@list=`ls $(prefix)/grass_*.dll`; \
for f in $$list; do \
$(STRIP) $$f; \
Expand Down

0 comments on commit dccce7b

Please sign in to comment.