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
Windows makefile for gps importer
git-svn-id: http://svn.osgeo.org/qgis/trunk@5630 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
gsherman
committed
Jul 24, 2006
1 parent
efde71a
commit 0f7c8a9
Showing
1 changed file
with
28 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
QGTOP=../../../ | ||
|
||
OBJECTS = $(wildcard *.o) | ||
|
||
PLUGIN = .libs/gpsimporterplugin.dll | ||
|
||
all: objects $(PLUGIN) | ||
|
||
objects: | ||
$(MAKE) -f Makefile | ||
|
||
$(PLUGIN): $(OBJECTS) | ||
$(CXX) -shared -o $@ \ | ||
-Wl,--export-all-symbols \ | ||
-Wl,--enable-auto-import \ | ||
-Wl,--whole-archive $(OBJECTS) \ | ||
-Wl,--no-whole-archive \ | ||
-L ../../providers/gpx/.libs \ | ||
$(PLUGIN_LIBS) \ | ||
$(GSL_LIBS) | ||
$(STRIP) $@ | ||
|
||
# ../../providers/grass/.libs/libqgisgrass.a \ | ||
|
||
install: all | ||
$(INSTALL) -m 755 $(PLUGIN) $(prefix)/lib/qgis/gpsimporterplugin.dll | ||
|
||
include $(QGTOP)/Makefile.win.rules |