[GRASS-SVN] r41102 - in grass-addons: . database display general
gui gui/wxpython imagery misc ossim_grass postscript raster
raster/r.rast4d vector
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Feb 18 15:41:49 EST 2010
Author: neteler
Date: 2010-02-18 15:41:48 -0500 (Thu, 18 Feb 2010)
New Revision: 41102
Added:
grass-addons/Makefile
grass-addons/database/Makefile
grass-addons/display/Makefile
grass-addons/general/Makefile
grass-addons/gui/Makefile
grass-addons/gui/wxpython/Makefile
grass-addons/imagery/Makefile
grass-addons/misc/Makefile
grass-addons/ossim_grass/Makefile
grass-addons/postscript/Makefile
grass-addons/raster/Makefile
grass-addons/vector/Makefile
Modified:
grass-addons/raster/r.rast4d/Makefile
Log:
Makefiles added for easier global compilation (testing)
Added: grass-addons/Makefile
===================================================================
--- grass-addons/Makefile (rev 0)
+++ grass-addons/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,24 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ database \
+ display \
+ general \
+ gui \
+ HydroFOSS \
+ imagery \
+ IPCC \
+ LandDyn \
+ misc \
+ ossim_grass \
+ postscript \
+ raster \
+ vector
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
Added: grass-addons/database/Makefile
===================================================================
--- grass-addons/database/Makefile (rev 0)
+++ grass-addons/database/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,12 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ db.join
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/database/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
Added: grass-addons/display/Makefile
===================================================================
--- grass-addons/display/Makefile (rev 0)
+++ grass-addons/display/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,16 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ d.edit.rast \
+ d.frame.split \
+ d.region \
+ d.region.box \
+ d.shortcuts
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/display/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
Added: grass-addons/general/Makefile
===================================================================
--- grass-addons/general/Makefile (rev 0)
+++ grass-addons/general/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,18 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ g.extension \
+ g.region.point
+## already in 6.4+:
+# g.xlist \
+# g.xremove \
+## external program:
+# grass_create_location
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/general/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
Added: grass-addons/gui/Makefile
===================================================================
--- grass-addons/gui/Makefile (rev 0)
+++ grass-addons/gui/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,12 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ wxpython
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/gui/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
Added: grass-addons/gui/wxpython/Makefile
===================================================================
--- grass-addons/gui/wxpython/Makefile (rev 0)
+++ grass-addons/gui/wxpython/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,12 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ data_catalog
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/gui/wxpython/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
Added: grass-addons/imagery/Makefile
===================================================================
--- grass-addons/imagery/Makefile (rev 0)
+++ grass-addons/imagery/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,23 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ i.homography \
+ i.landsat.acca \
+ i.landsat.dehaze \
+ i.landsat.toar \
+ i.points.auto \
+ i.points.reproj \
+ i.pr \
+ i.spec.grass63 \
+ i.spec.sam \
+ i.spec.unmix \
+ i.topo.corr \
+ i.warp
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/imagery/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
Added: grass-addons/misc/Makefile
===================================================================
--- grass-addons/misc/Makefile (rev 0)
+++ grass-addons/misc/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,13 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ m.eigensystem \
+ m.sim
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/misc/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
Added: grass-addons/ossim_grass/Makefile
===================================================================
--- grass-addons/ossim_grass/Makefile (rev 0)
+++ grass-addons/ossim_grass/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,13 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ r.planet \
+ v.planet
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/ossim_grass/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
Added: grass-addons/postscript/Makefile
===================================================================
--- grass-addons/postscript/Makefile (rev 0)
+++ grass-addons/postscript/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,12 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ ps.output
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/postscript/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
Added: grass-addons/raster/Makefile
===================================================================
--- grass-addons/raster/Makefile (rev 0)
+++ grass-addons/raster/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,50 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ mcda \
+ r.boxcount \
+ r.boxcount.sh \
+ r.burn.frict \
+ r.clim \
+ r.colors.quantiles \
+ r.colors.tools \
+ r.convert \
+ r.denoise \
+ r.game_of_life \
+ r.inund.fluv \
+ r.in.xyz.auto \
+ r.ipso \
+ r.isoregions \
+ r.out.gmap \
+ r.out.gmt \
+ r.out.gmt2 \
+ r.out.kml \
+ r.out.netcdf \
+ r.pack \
+ r.prominence \
+ r.rast4d \
+ r.roughness \
+ r.soils.texture \
+ r.stream.basins \
+ r.stream.del \
+ r.stream.distance \
+ r.stream.extract \
+ r.stream.order \
+ r.stream.pos \
+ r.stream.stats \
+ r.sun.tools \
+ r.surf.volcano \
+ r.terracost \
+ r.terraflow.tools \
+ r.univar2.zonal \
+ r.viewshed \
+ r.wf \
+ r.xtent
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/raster/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
Modified: grass-addons/raster/r.rast4d/Makefile
===================================================================
--- grass-addons/raster/r.rast4d/Makefile 2010-02-18 20:10:43 UTC (rev 41101)
+++ grass-addons/raster/r.rast4d/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -1,21 +1,22 @@
MODULE_TOPDIR = ../..
-PGM1=r.rast4d.init
-PGM2=tg.update
-PGM3=tg.list
-PGM4=tg.remove
-PGM5=init_db.sh
+PGM1=init_db.sh
+PGM2=r.rast4d.init
+PGM3=tg.update
+PGM4=tg.list
+PGM5=tg.remove
+PGM6=tg.decades.calc
include $(MODULE_TOPDIR)/include/Make/Script.make
default:
- $(INSTALL) ${PGM1} bin/${PGM2} bin/${PGM3} bin/${PGM4} $(GISBASE)/scripts/
+ $(INSTALL) ${PGM2} bin/${PGM3} bin/${PGM4} bin/${PGM5} bin/${PGM6} $(GISBASE)/scripts/
if [ ! -d $(ETC)/r.rast4d ]; then $(MKDIR) $(ETC)/r.rast4d ; fi
if [ ! -d $(ETC)/r.rast4d/globals ]; then $(MKDIR) $(ETC)/r.rast4d/globals ; fi
if [ ! -d $(ETC)/r.rast4d/sql ]; then $(MKDIR) $(ETC)/r.rast4d/sql ; fi
if [ ! -d $(ETC)/r.rast4d/lib ]; then $(MKDIR) $(ETC)/r.rast4d/lib ; fi
if [ ! -d $(ETC)/r.rast4d/bin ]; then $(MKDIR) $(ETC)/r.rast4d/bin ; fi
- $(INSTALL) bin/${PGM5} $(ETC)/r.rast4d/bin/
+ $(INSTALL) bin/${PGM1} $(ETC)/r.rast4d/bin/
$(INSTALL) lib/*.sh $(ETC)/r.rast4d/lib
$(INSTALL_DATA) globals/defines.sh $(ETC)/r.rast4d/globals/
$(INSTALL_DATA) sql/create_* $(ETC)/r.rast4d/sql/
Added: grass-addons/vector/Makefile
===================================================================
--- grass-addons/vector/Makefile (rev 0)
+++ grass-addons/vector/Makefile 2010-02-18 20:41:48 UTC (rev 41102)
@@ -0,0 +1,36 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ adehabitat \
+ net.analyze \
+ v.autokrige \
+ v.curvature \
+ v.db.calc \
+ v.in.gama \
+ v.in.geoplot \
+ v.in.gshhs \
+ v.in.mbsys_fnv \
+ v.in.ncdc \
+ v.in.postgis \
+ v.out.ascii.db \
+ v.out.ascii.mat \
+ v.out.gmt \
+ v.out.postgis \
+ v.points.cog \
+ v.profile \
+ v.random.cover \
+ v.rast.stats2 \
+ v.selmany \
+ v.strahler \
+ v.surf.icw \
+ v.swathwidth \
+ v.transect.kia \
+ v.what.rast.buffer
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: htmldir
+
+htmldir: subdirs
+
+clean: cleansubdirs
Property changes on: grass-addons/vector/Makefile
___________________________________________________________________
Added: svn:eol-style
+ native
More information about the grass-commit
mailing list