~ubuntu-branches/debian/sid/gdal/sid

« back to all changes in this revision

Viewing changes to frmts/mrsid_lidar/GNUmakefile

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2012-05-07 15:04:42 UTC
  • mfrom: (5.5.16 experimental)
  • Revision ID: package-import@ubuntu.com-20120507150442-2eks97loeh6rq005
Tags: 1.9.0-1
* Ready for sid, starting transition.
* All symfiles updated to latest builds.
* Added dh_numpy call in debian/rules to depend on numpy ABI.
* Policy bumped to 3.9.3, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include ../../GDALmake.opt
 
2
 
 
3
OBJ             =       gdal_MG4Lidar.o
 
4
 
 
5
CPPFLAGS        :=      $(XTRA_OPT) $(GDAL_INCLUDE) $(MRSID_LIDAR_INCLUDE) $(CPPFLAGS)
 
6
 
 
7
PLUGIN_SO       =       gdal_MG4Lidar.so
 
8
 
 
9
default:        $(OBJ:.o=.$(OBJ_EXT))
 
10
 
 
11
clean:
 
12
        rm -f *.o $(O_OBJ) *.so
 
13
 
 
14
install-obj:    $(O_OBJ:.o=.$(OBJ_EXT))
 
15
 
 
16
plugin: $(PLUGIN_SO)
 
17
 
 
18
$(PLUGIN_SO):   $(OBJ)
 
19
        gcc -shared $(LNK_FLAGS) $(OBJ) $(CONFIG_LIBS_INS) $(EXTRA_LIBS) \
 
20
                -o $(PLUGIN_SO)