|
Revision 8434, 0.6 kB
(checked in by fwarmerdam, 3 years ago)
|
Added gdal_rat.obj.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
# |
|---|
| 2 |
# CPL (Common Portability Library) makefile |
|---|
| 3 |
# |
|---|
| 4 |
|
|---|
| 5 |
OBJ = gdalopeninfo.obj gdaldrivermanager.obj gdaldriver.obj \ |
|---|
| 6 |
gdaldataset.obj gdalrasterband.obj gdal_misc.obj \ |
|---|
| 7 |
rasterio.obj gdalrasterblock.obj gdal_rat.obj \ |
|---|
| 8 |
gdalcolortable.obj overview.obj gdaldefaultoverviews.obj \ |
|---|
| 9 |
gdalmajorobject.obj gdalpamdataset.obj gdalpamrasterband.obj \ |
|---|
| 10 |
gdaljp2metadata.obj gdaljp2box.obj gdalmultidomainmetadata.obj |
|---|
| 11 |
|
|---|
| 12 |
RES = Version.res |
|---|
| 13 |
|
|---|
| 14 |
GDAL_ROOT = .. |
|---|
| 15 |
|
|---|
| 16 |
!INCLUDE ..\nmake.opt |
|---|
| 17 |
|
|---|
| 18 |
default: $(OBJ) $(RES) |
|---|
| 19 |
|
|---|
| 20 |
clean: |
|---|
| 21 |
-del *.obj *.res |
|---|
| 22 |
|
|---|
| 23 |
Version.res: |
|---|
| 24 |
rc -fo Version.res -r -I..\port Version.rc |
|---|
| 25 |
|
|---|
| 26 |
gdal_misc.obj: gdal_misc.cpp gdal_version.h |
|---|