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:
|
||||
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.
|
||||
|
|
|
@ -36,6 +36,11 @@ Gene Buckle <geneb@nwlink.com>
|
|||
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
|
||||
"newbie" OpenGL questions. His effort alone has made me a great SGI
|
||||
fan.
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue