Skip to content

Commit

Permalink
dll
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@4736 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Jan 24, 2006
1 parent a12bb9a commit 82ad96b
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/Makefile.win
@@ -1,11 +1,23 @@
# We have to run first standard build system (stdsubdirs) which
# creates static libraries (.libs/libqgis_xxx.a)
# then we run win32 specific makefiles which generates DLL

STDSUBDIRS = core ui legend raster composer widgets helpviewer
#providers plugins

WINSUBDIRS = gui
WINSUBDIRS = core legend raster composer \
widgets/projectionselector gui

all: stdsubdirs guilib winsubdirs

all: stdsubdirs winsubdirs
guilib:
$(MAKE) -C gui -f Makefile libqgis_gui.la

install: all
$(MAKE) -C gui -f Makefile.win install
@list='$(WINSUBDIRS)'; \
for subdir in $$list; do \
echo $$subdir ; \
$(MAKE) -C $$subdir -f Makefile.win install ; \
done

include ../Makefile.win.rules

0 comments on commit 82ad96b

Please sign in to comment.