Misc. configuration tweaks.
This commit is contained in:
parent
14bb8f337c
commit
4e4bd05053
4 changed files with 16 additions and 6 deletions
|
@ -40,7 +40,7 @@ all:
|
||||||
depend:
|
depend:
|
||||||
for dir in $(ORDEREDDIRS); do \
|
for dir in $(ORDEREDDIRS); do \
|
||||||
( echo "Making depend in $$dir"; \
|
( echo "Making depend in $$dir"; \
|
||||||
cd $$dir; $(CC) $(CFLAGS) -M *.c > depend ) ; \
|
cd $$dir; $(CC) $(CFLAGS) $(CCDEPFLAG) *.c > depend ) ; \
|
||||||
done
|
done
|
||||||
|
|
||||||
Makefile-os2:
|
Makefile-os2:
|
||||||
|
@ -117,6 +117,9 @@ bin-exp-zip:
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.44 1998/03/09 22:52:53 curt
|
||||||
|
# Misc. configuration tweaks.
|
||||||
|
#
|
||||||
# Revision 1.43 1998/02/19 13:05:43 curt
|
# Revision 1.43 1998/02/19 13:05:43 curt
|
||||||
# Incorporated some HUD tweaks from Michelle America.
|
# Incorporated some HUD tweaks from Michelle America.
|
||||||
# Tweaked the sky's sunset/rise colors.
|
# Tweaked the sky's sunset/rise colors.
|
||||||
|
|
|
@ -36,6 +36,11 @@ Gene Buckle <geneb@nwlink.com>
|
||||||
a good hard shove.) :-)
|
a good hard shove.) :-)
|
||||||
|
|
||||||
|
|
||||||
|
Didier Chauveau <chauveau@math.univ-mlv.fr>
|
||||||
|
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 <gold@puck.asd.sgi.com> -- Patiently answered my endless
|
Michael I. Gold <gold@puck.asd.sgi.com> -- Patiently answered my endless
|
||||||
"newbie" OpenGL questions. His effort alone has made me a great SGI
|
"newbie" OpenGL questions. His effort alone has made me a great SGI
|
||||||
fan.
|
fan.
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
|
||||||
FG_VERSION_MAJOR = 0
|
FG_VERSION_MAJOR = 0
|
||||||
FG_VERSION_MINOR = 36
|
FG_VERSION_MINOR = 37
|
||||||
FG_VERSION = $(FG_VERSION_MAJOR).$(FG_VERSION_MINOR)
|
FG_VERSION = $(FG_VERSION_MAJOR).$(FG_VERSION_MINOR)
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,6 +15,8 @@ FG_VERSION = $(FG_VERSION_MAJOR).$(FG_VERSION_MINOR)
|
||||||
|
|
||||||
CC = g++
|
CC = g++
|
||||||
CXX = g++
|
CXX = g++
|
||||||
|
CCDEPFLAG = -M
|
||||||
|
|
||||||
LD = ld
|
LD = ld
|
||||||
AR = ar
|
AR = ar
|
||||||
RANLIB = ranlib
|
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)
|
CFLAGS = $(FG_CFLAGS) -I$(FG_ROOT_SRC) $(LCFLAGS)
|
||||||
|
|
||||||
CXXDEFS = $(LCXXDEFS)
|
CXXDEFS = $(LCXXDEFS)
|
||||||
CXXFLAGS = $(FG_CFLAGS) $(LCXXFLAGS)
|
CXXFLAGS = $(CFLAGS)
|
||||||
|
|
||||||
LDDEFS = $(LLDDEFS)
|
LDDEFS = $(LLDDEFS)
|
||||||
LDFLAGS = $(LLDFLAGS) -L$(FG_ROOT_LIB)
|
LDFLAGS = $(LLDFLAGS) -L$(FG_ROOT_LIB)
|
||||||
|
|
|
@ -19,10 +19,10 @@ depend: $(DEPENDS)
|
||||||
cat $(DEPENDS) > $(MAKEDEPENDFILE)
|
cat $(DEPENDS) > $(MAKEDEPENDFILE)
|
||||||
|
|
||||||
.cxx.d:
|
.cxx.d:
|
||||||
$(CPP) $(CPPFLAGS) $(CPPDEFS) -c $< -MD
|
$(CXX) $(CXXFLAGS) $(CXXDEFS) -c $< -MD
|
||||||
|
|
||||||
.cxx.o:
|
.cxx.o:
|
||||||
$(CPP) $(CPPFLAGS) $(CPPDEFS) -c $<
|
$(CXX) $(CXXFLAGS) $(CXXDEFS) -c $<
|
||||||
|
|
||||||
.c.d:
|
.c.d:
|
||||||
$(CC) $(CFLAGS) $(CDEFS) -c $< -MD
|
$(CC) $(CFLAGS) $(CDEFS) -c $< -MD
|
||||||
|
|
Loading…
Add table
Reference in a new issue