From 4e4bd05053b7b9ee24da789456efd5fdefef5b3d Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 9 Mar 1998 22:52:53 +0000 Subject: [PATCH] Misc. configuration tweaks. --- Simulator/Makefile | 5 ++++- Simulator/Thanks | 5 +++++ Simulator/commondefs | 8 +++++--- Simulator/commonrules | 4 ++-- 4 files changed, 16 insertions(+), 6 deletions(-) diff --git a/Simulator/Makefile b/Simulator/Makefile index 072b4b050..2afccb4f4 100644 --- a/Simulator/Makefile +++ b/Simulator/Makefile @@ -40,7 +40,7 @@ all: depend: for dir in $(ORDEREDDIRS); do \ ( echo "Making depend in $$dir"; \ - cd $$dir; $(CC) $(CFLAGS) -M *.c > depend ) ; \ + cd $$dir; $(CC) $(CFLAGS) $(CCDEPFLAG) *.c > depend ) ; \ done Makefile-os2: @@ -117,6 +117,9 @@ bin-exp-zip: #--------------------------------------------------------------------------- # $Log$ +# Revision 1.44 1998/03/09 22:52:53 curt +# Misc. configuration tweaks. +# # Revision 1.43 1998/02/19 13:05:43 curt # Incorporated some HUD tweaks from Michelle America. # Tweaked the sky's sunset/rise colors. diff --git a/Simulator/Thanks b/Simulator/Thanks index 070d4ae9e..9706424d1 100644 --- a/Simulator/Thanks +++ b/Simulator/Thanks @@ -36,6 +36,11 @@ Gene Buckle a good hard shove.) :-) +Didier Chauveau + Provided some initial code to parse the 30 arcsec DEM files found at: + http://edcwww.cr.usgs.gov/landdaac/gtopo30/gtopo30.html + + Michael I. Gold -- Patiently answered my endless "newbie" OpenGL questions. His effort alone has made me a great SGI fan. diff --git a/Simulator/commondefs b/Simulator/commondefs index 186bf017f..144d04c0c 100644 --- a/Simulator/commondefs +++ b/Simulator/commondefs @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- FG_VERSION_MAJOR = 0 -FG_VERSION_MINOR = 36 +FG_VERSION_MINOR = 37 FG_VERSION = $(FG_VERSION_MAJOR).$(FG_VERSION_MINOR) @@ -15,6 +15,8 @@ FG_VERSION = $(FG_VERSION_MAJOR).$(FG_VERSION_MINOR) CC = g++ CXX = g++ +CCDEPFLAG = -M + LD = ld AR = ar RANLIB = ranlib @@ -47,7 +49,7 @@ TAR = tar # #--------------------------------------------------------------------------- -GLOBAL_CFLAGS = -Wall -DVERSION=\"$(FG_VERSION)\" +GLOBAL_CFLAGS = -g -Wall -DVERSION=\"$(FG_VERSION)\" #--------------------------------------------------------------------------- @@ -162,7 +164,7 @@ CDEFS = $(LCDEFS) CFLAGS = $(FG_CFLAGS) -I$(FG_ROOT_SRC) $(LCFLAGS) CXXDEFS = $(LCXXDEFS) -CXXFLAGS = $(FG_CFLAGS) $(LCXXFLAGS) +CXXFLAGS = $(CFLAGS) LDDEFS = $(LLDDEFS) LDFLAGS = $(LLDFLAGS) -L$(FG_ROOT_LIB) diff --git a/Simulator/commonrules b/Simulator/commonrules index 7c7c97935..0421feb25 100644 --- a/Simulator/commonrules +++ b/Simulator/commonrules @@ -19,10 +19,10 @@ depend: $(DEPENDS) cat $(DEPENDS) > $(MAKEDEPENDFILE) .cxx.d: - $(CPP) $(CPPFLAGS) $(CPPDEFS) -c $< -MD + $(CXX) $(CXXFLAGS) $(CXXDEFS) -c $< -MD .cxx.o: - $(CPP) $(CPPFLAGS) $(CPPDEFS) -c $< + $(CXX) $(CXXFLAGS) $(CXXDEFS) -c $< .c.d: $(CC) $(CFLAGS) $(CDEFS) -c $< -MD -- 2.39.2