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:
#---------------------------------------------------------------------------
# $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.
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.
#---------------------------------------------------------------------------
FG_VERSION_MAJOR = 0
-FG_VERSION_MINOR = 36
+FG_VERSION_MINOR = 37
FG_VERSION = $(FG_VERSION_MAJOR).$(FG_VERSION_MINOR)
CC = g++
CXX = g++
+CCDEPFLAG = -M
+
LD = ld
AR = ar
RANLIB = ranlib
#
#---------------------------------------------------------------------------
-GLOBAL_CFLAGS = -Wall -DVERSION=\"$(FG_VERSION)\"
+GLOBAL_CFLAGS = -g -Wall -DVERSION=\"$(FG_VERSION)\"
#---------------------------------------------------------------------------
CFLAGS = $(FG_CFLAGS) -I$(FG_ROOT_SRC) $(LCFLAGS)
CXXDEFS = $(LCXXDEFS)
-CXXFLAGS = $(FG_CFLAGS) $(LCXXFLAGS)
+CXXFLAGS = $(CFLAGS)
LDDEFS = $(LLDDEFS)
LDFLAGS = $(LLDFLAGS) -L$(FG_ROOT_LIB)
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