1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
GDAL_ROOT = ../..
include $(GDAL_ROOT)/GDALmake.opt
OBJ = IntergraphDataset.o IntergraphBand.o IngrTypes.o JpegHelper.o
CPPFLAGS := $(GDAL_INCLUDE) $(CPPFLAGS)
ifeq ($(TIFF_SETTING),internal)
ifeq ($(RENAME_INTERNAL_LIBTIFF_SYMBOLS),yes)
CPPFLAGS := $(CPPFLAGS) -DRENAME_INTERNAL_LIBTIFF_SYMBOLS
endif
CPPFLAGS := $(CPPFLAGS) -I../gtiff/libtiff
endif
default: $(OBJ:.o=.$(OBJ_EXT))
$(OBJ) $(O_OBJ): IngrTypes.h IntergraphBand.h IntergraphDataset.h JpegHelper.h
clean:
rm -f *.o $(O_OBJ)
install-obj: $(O_OBJ:.o=.$(OBJ_EXT))
|