Changeset 5023
- Timestamp:
- 07/02/03 02:38:54 (5 years ago)
- Files:
-
- trunk/dist_docs/install_unx.sh (modified) (1 diff)
- trunk/frmts/hfa/GNUmakefile (modified) (1 diff)
- trunk/frmts/sdts/GNUmakefile (modified) (1 diff)
- trunk/gcore/gdal_drivertut.dox (modified) (1 diff)
- trunk/mk_win_bin_dist.sh (modified) (1 diff)
- trunk/mkbindist.sh (modified) (1 diff)
- trunk/nmake.opt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dist_docs/install_unx.sh
r3235 r5023 42 42 # The following is intended to "burn" an updated INST_DATA location 43 43 # into the given file over the preformatted message embedded in the so. 44 # Look at core/gdaldrivermanager.cpp for a clue as to what is going on there.44 # Look at gcore/gdaldrivermanager.cpp for a clue as to what is going on there. 45 45 # 46 46 trunk/frmts/hfa/GNUmakefile
r3206 r5023 26 26 27 27 %.o: addtiffo_src/%.cpp 28 $(CXX) -c -I$(GDAL_ROOT)/ core -I$(GDAL_ROOT)/port $(ALL_C_FLAGS) \28 $(CXX) -c -I$(GDAL_ROOT)/gcore -I$(GDAL_ROOT)/port $(ALL_C_FLAGS) \ 29 29 addtiffo_src/$*.cpp -o $*.o 30 30 trunk/frmts/sdts/GNUmakefile
r4264 r5023 32 32 33 33 %.o: %.cpp 34 $(CXX) -c $(ALL_CXX_FLAGS) -I$(GDAL_ROOT)/ core -I$(GDAL_ROOT)/port \34 $(CXX) -c $(ALL_CXX_FLAGS) -I$(GDAL_ROOT)/gcore -I$(GDAL_ROOT)/port \ 35 35 $*.cpp -o $*.o 36 36 trunk/gcore/gdal_drivertut.dox
r4596 r5023 456 456 457 457 <li> Add the registration entry point declaration (ie. GDALRegister_JDEM()) to 458 gdal/ core/gdal_frmts.h.458 gdal/gcore/gdal_frmts.h. 459 459 460 460 <li> Add a call to the registration function to frmts/gdalallregister.c, trunk/mk_win_bin_dist.sh
r2488 r5023 31 31 cp gdal_i.lib gdal.lib $DIST_DIR/lib 32 32 cp data/*.csv $DIST_DIR/data 33 cp port/*.h core/*.h ogr/*.h ogr/ogrsf_frmts/*.h $DIST_DIR/include33 cp port/*.h gcore/*.h ogr/*.h ogr/ogrsf_frmts/*.h $DIST_DIR/include 34 34 cp html/*.* $DIST_DIR/html 35 35 cp pymod/*.dll pymod/*.py $DIST_DIR/pymod trunk/mkbindist.sh
r3237 r5023 40 40 # ensure gdal_misc (with GDALVersionInfo()) is recompiled. 41 41 42 rm -f core/gdal_misc.o apps/gdal-config apps/gdal-config-inst42 rm -f gcore/gdal_misc.o apps/gdal-config apps/gdal-config-inst 43 43 make 'prefix='$FULL_DIST_DIR 'INST_PYMOD='$FULL_DIST_DIR/pymod 'USER_DEFS='"$USER_DEFS" install 44 44 if test \! make ; then trunk/nmake.opt
r4994 r5023 97 97 GDAL_DLL = gdal$(VERSION).dll 98 98 99 INC = -I$(GDAL_ROOT)\port -I$(GDAL_ROOT)\ogr -I$(GDAL_ROOT)\ core99 INC = -I$(GDAL_ROOT)\port -I$(GDAL_ROOT)\ogr -I$(GDAL_ROOT)\gcore 100 100 101 101 #LINKER_FLAGS = /NODEFAULTLIB:LIBC
