Changeset 14708
- Timestamp:
- 06/14/08 16:13:36 (6 months ago)
- Files:
-
- trunk/gdal/apps/GNUmakefile (modified) (5 diffs)
- trunk/gdal/apps/gdal2ogr.c (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/gdal/apps/GNUmakefile
r14651 r14708 60 60 -o gdaltindex$(EXE) 61 61 62 # Not compiled by default 62 63 gdalbuildvrt$(EXE): gdalbuildvrt.o $(DEP_LIBS) 63 64 $(LD) $(LNK_FLAGS) gdalbuildvrt.o $(XTRAOBJ) $(CONFIG_LIBS) \ 64 65 -o gdalbuildvrt$(EXE) 65 66 67 # Not compiled by default 66 68 multireadtest$(EXE): multireadtest.o $(DEP_LIBS) 67 69 $(LD) $(LNK_FLAGS) multireadtest.o $(XTRAOBJ) $(CONFIG_LIBS) \ 68 70 -o multireadtest$(EXE) 69 71 72 # Not compiled by default 70 73 dumpoverviews$(EXE): dumpoverviews.o $(DEP_LIBS) 71 74 $(LD) $(LNK_FLAGS) dumpoverviews.o $(XTRAOBJ) $(CONFIG_LIBS) \ … … 80 83 -o gdal_grid$(EXE) 81 84 85 # Not compiled by default 82 86 gdalwarpsimple$(EXE): gdalwarpsimple.o $(DEP_LIBS) 83 87 $(LD) $(LNK_FLAGS) gdalwarpsimple.o $(XTRAOBJ) \ … … 88 92 $(CONFIG_LIBS) -o gdaltransform$(EXE) 89 93 94 # Not compiled by default 90 95 gdalflattenmask$(EXE): gdalflattenmask.o $(DEP_LIBS) 91 96 $(LD) $(LNK_FLAGS) gdalflattenmask.o $(XTRAOBJ) \ 92 97 $(CONFIG_LIBS) -o gdalflattenmask$(EXE) 98 99 # Not compiled by default 100 gdal2ogr$(EXE): gdal2ogr.o $(DEP_LIBS) 101 $(LD) $(LNK_FLAGS) gdal2ogr.o $(XTRAOBJ) $(CONFIG_LIBS) \ 102 -o gdal2ogr$(EXE) 93 103 94 104 ogrinfo$(EXE): ogrinfo.o $(DEP_LIBS) … … 100 110 -o ogr2ogr$(EXE) 101 111 112 # Not compiled by default 102 113 testepsg$(EXE): testepsg.o $(DEP_LIBS) 103 114 $(LD) $(LNK_FLAGS) testepsg.o $(XTRAOBJ) $(CONFIG_LIBS) \ … … 108 119 -o ogrtindex$(EXE) 109 120 121 # Not compiled by default 110 122 test_ogrsf$(EXE): test_ogrsf.o $(DEP_LIBS) 111 123 $(LD) $(LNK_FLAGS) test_ogrsf.o $(XTRAOBJ) $(CONFIG_LIBS) \
