Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
dll
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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |