From: curt Date: Thu, 19 Mar 1998 02:52:51 +0000 (+0000) Subject: Updated to reflect some minor tool reorganization and the creation of class X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=21a2616ab42219e28297b8103726e1d2981eea2b;p=flightgear.git Updated to reflect some minor tool reorganization and the creation of class to handle DEM processing needs. --- diff --git a/Tools/Makefile b/Tools/Makefile index 6a4ed347f..370d4ef55 100644 --- a/Tools/Makefile +++ b/Tools/Makefile @@ -27,9 +27,10 @@ include $(FG_ROOT_SRC)/commondefs -SUBDIRS = gpc2.01 AssemTris Dem2node DemRaw2Ascii FixNode FixObj SplitTris \ - Stripe_u Tri2obj Triangle -ORDEREDDIRS = $(SUBDIRS) +LIBDIRS = DEM gpc2.01 +SUBDIRS = Areas AssemTris Dem2node DemRaw2Ascii FixNode FixObj \ + SplitTris Stripe_u Tri2obj Triangle +ORDEREDDIRS = $(LIBDIRS) $(SUBDIRS) all: @@ -90,6 +91,10 @@ bin-zip: #--------------------------------------------------------------------------- # $Log$ +# Revision 1.13 1998/03/19 02:52:51 curt +# Updated to reflect some minor tool reorganization and the creation of class +# to handle DEM processing needs. +# # Revision 1.12 1998/03/19 01:48:34 curt # Added gpc-2.01 (generic polygon clipping library) # diff --git a/Tools/process-dem.pl b/Tools/process-dem.pl index 8737d2744..a9c0ba05e 100755 --- a/Tools/process-dem.pl +++ b/Tools/process-dem.pl @@ -110,9 +110,9 @@ sub file_root { sub demfit { if ( $dem_file =~ m/.gz$/ ) { - $command = "gzip -dc $dem_file | ./Dem2node/demfit $ENV{FG_ROOT} - $error"; + $command = "gzip -dc $dem_file | ./Dem2node/dem2node $ENV{FG_ROOT} - $error"; } else { - $command = "./Dem2node/demfit $ENV{FG_ROOT} $dem_file $error"; + $command = "./Dem2node/dem2node $ENV{FG_ROOT} $dem_file $error"; } print "Running '$command'\n"; @@ -364,6 +364,10 @@ sub fixobj { #--------------------------------------------------------------------------- # $Log$ +# Revision 1.13 1998/03/19 02:52:52 curt +# Updated to reflect some minor tool reorganization and the creation of class +# to handle DEM processing needs. +# # Revision 1.12 1998/03/19 01:48:35 curt # Added gpc-2.01 (generic polygon clipping library) #