Skip to content

Commit

Permalink
dependencies
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@4795 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Feb 3, 2006
1 parent 88260cd commit 8aaad62
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
9 changes: 6 additions & 3 deletions src/composer/Makefile.win
Expand Up @@ -7,16 +7,19 @@ all: libs $(DLL)
libs:
$(MAKE) -f Makefile libqgis_composer.la

$(DLL):
$(DLL): .libs/libqgis_composer.a
$(CXX) -shared -o $(DLL) \
-Wl,--out-implib=lib$(DLL).a \
-Wl,--export-all-symbols \
-Wl,--enable-auto-import \
-Wl,--whole-archive .libs/libqgis_composer.a \
-Wl,--no-whole-archive \
$(CORE_A) \
$(GUI_A) $(CORE_A) $(RASTER_A) $(LEGEND_A) \
$(PROJSEL_A) $(CORE_A) $(GUI_A) $(CORE_A) \
$(GUI_A) \
-lproj -lgdal -lsqlite3 \
$(QT_LDADD) \
-lmingw32
-lwsock32 -lmingw32
$(STRIP) $@

install: all
Expand Down
2 changes: 1 addition & 1 deletion src/core/Makefile.win
Expand Up @@ -7,7 +7,7 @@ all: libs $(DLL)
libs:
$(MAKE) -f Makefile libqgis_core.la

$(DLL):
$(DLL): .libs/libqgis_core.a
$(CXX) -shared -o $(DLL) \
-Wl,--out-implib=lib$(DLL).a \
-Wl,--export-all-symbols \
Expand Down
2 changes: 1 addition & 1 deletion src/gui/Makefile.win
Expand Up @@ -18,7 +18,7 @@ objects:
libs:
$(MAKE) -f Makefile libqgis_gui.la

$(DLL):
$(DLL): .libs/libqgis_gui.a
$(CXX) -shared -o $(DLL) \
-Wl,--out-implib=lib$(DLL).a \
-Wl,--export-all-symbols \
Expand Down
2 changes: 1 addition & 1 deletion src/legend/Makefile.win
Expand Up @@ -7,7 +7,7 @@ all: libs $(DLL)
libs:
$(MAKE) -f Makefile libqgis_legend.la

$(DLL):
$(DLL): .libs/libqgis_legend.a
$(CXX) -shared -o $(DLL) \
-Wl,--out-implib=lib$(DLL).a \
-Wl,--export-all-symbols \
Expand Down
2 changes: 1 addition & 1 deletion src/raster/Makefile.win
Expand Up @@ -7,7 +7,7 @@ all: libs $(DLL)
libs:
$(MAKE) -f Makefile libqgis_raster.la

$(DLL):
$(DLL): .libs/libqgis_raster.a
$(CXX) -shared -o $(DLL) \
-Wl,--out-implib=lib$(DLL).a \
-Wl,--export-all-symbols \
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/projectionselector/Makefile.win
Expand Up @@ -7,7 +7,7 @@ all: libs $(DLL)
libs:
$(MAKE) -f Makefile libqgsprojectionselector.la

$(DLL):
$(DLL): .libs/libqgsprojectionselector.a
$(CXX) -shared -o $(DLL) \
-Wl,--out-implib=lib$(DLL).a \
-Wl,--export-all-symbols \
Expand Down

0 comments on commit 8aaad62

Please sign in to comment.