1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
# $Id$
#
# Makefile to build OGR GeoJSON driver
#
GDAL_ROOT = ..\..\..
GEOJSON_OBJ = \
ogrgeojsondriver.obj \
ogrgeojsondatasource.obj \
ogrgeojsonlayer.obj \
ogrgeojsonwritelayer.obj \
ogrgeojsonutils.obj \
ogrgeojsonreader.obj \
ogrgeojsonwriter.obj \
ogresrijsonreader.obj
EXTRAFLAGS = -I. -I.. -I..\..
!INCLUDE $(GDAL_ROOT)\nmake.opt
# TODO: Do we want to include GeoJSON driver by default
# or if user asks for it? Now it's on by default.
OBJ = $(GEOJSON_OBJ)
default: $(OBJ)
cd jsonc
$(MAKE) /f makefile.vc
cd ..
clean:
cd jsonc
$(MAKE) /f makefile.vc clean
cd ..
-del *.lib
-del *.obj *.pdb
|