[GRASS-SVN] r31352 - grass/branches/develbranch_6/raster
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu May 15 07:16:18 EDT 2008
Author: hamish
Date: 2008-05-15 07:16:17 -0400 (Thu, 15 May 2008)
New Revision: 31352
Modified:
grass/branches/develbranch_6/raster/Makefile
Log:
make r.digit and r.out.gdal conditional
Modified: grass/branches/develbranch_6/raster/Makefile
===================================================================
--- grass/branches/develbranch_6/raster/Makefile 2008-05-15 06:15:56 UTC (rev 31351)
+++ grass/branches/develbranch_6/raster/Makefile 2008-05-15 11:16:17 UTC (rev 31352)
@@ -19,7 +19,6 @@
r.covar \
r.cross \
r.describe \
- r.digit \
r.distance \
r.drain \
r.fill.dir \
@@ -50,7 +49,6 @@
r.out.arc \
r.out.ascii \
r.out.bin \
- r.out.gdal \
r.out.gridatb \
r.out.mat \
r.out.mpeg \
@@ -112,7 +110,7 @@
simwe \
wildfire
-GDALBASED = r.in.gdal
+GDALBASED = r.in.gdal r.out.gdal
FFTWBASED = r.surf.fractal
@@ -122,6 +120,9 @@
TIFFBASED = r.out.tiff
+XMONBASED = r.digit
+
+
include $(MODULE_TOPDIR)/include/Make/Platform.make
#compile if GDAL present:
@@ -149,6 +150,12 @@
SUBDIRS += $(TIFFBASED)
endif
+#compile if interactive Xmons are present:
+ifneq ($(USE_X11),)
+ SUBDIRS += $(XMONBASED)
+endif
+
+
PGM = rasterintro
include $(MODULE_TOPDIR)/include/Make/Dir.make
More information about the grass-commit
mailing list