]> git.mxchange.org Git - flightgear.git/blobdiff - Simulator/Makefile
Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
[flightgear.git] / Simulator / Makefile
index 14410d4b6c0b6f5c3025017592f0617877207894..0067d2ea98338718e2503c3b02f90eddb952371f 100644 (file)
@@ -23,6 +23,7 @@
 # (Log is kept at end of this file)
 #---------------------------------------------------------------------------
 
+
 include $(FG_ROOT_SRC)/commondefs
 
 SUBSUBDIRS = Flight/LaRCsim Flight/Slew
@@ -39,7 +40,7 @@ all:
 depend:
        for dir in $(ORDEREDDIRS); do \
            ( echo "Making depend in $$dir"; \
-             cd $$dir; $(CC) -MM *.c > depend ) ; \
+             cd $$dir; $(CC) $(CFLAGS) -MM *.c > depend ) ; \
        done
 
 Makefile-os2:
@@ -64,12 +65,12 @@ clobber:
 source-tar: clean
        (cd ../..; \
        $(TAR) cvzf source-$(FG_VERSION).tar.gz FlightGear/fgtop \
-       FlightGear/COPYING FlightGear/Docs FlightGear/Src FlightGear/Thanks)
+       FlightGear/COPYING FlightGear/Docs FlightGear/Src)
 
 source-zip: clean
        (cd ../..; \
        zip -r source-$(FG_VERSION).zip FlightGear/fgtop \
-       FlightGear/COPYING FlightGear/Docs FlightGear/Src FlightGear/Thanks)
+       FlightGear/COPYING FlightGear/Docs FlightGear/Src)
 
 scenery-tar:
        (cd ../..; \
@@ -80,7 +81,7 @@ scenery-zip:
        zip -r scenery-$(FG_VERSION).zip FlightGear/Scenery)
 
 bin-tar: all
-       cp Main/fg-$(FG_VERSION) README runfg ..
+       cp Main/fg-$(FG_VERSION) README Thanks runfg ..
        $(RM) -f ../fg$(FG_VERSION_MAJOR)
        $(LN) ../fg-$(FG_VERSION) ../fg$(FG_VERSION_MAJOR)
        (cd ../..; \
@@ -90,7 +91,8 @@ bin-tar: all
        FlightGear/Thanks)
 
 bin-zip: 
-       cp Main/fg$(FG_VERSION_MAJOR).exe Main/cygwin.dll README runfg.bat ..
+       cp Main/fg$(FG_VERSION_MAJOR).exe Main/cygwin.dll README Thanks \
+       runfg.bat ..
        (cd ../..; \
        zip -r bin-$(FG_VERSION).zip FlightGear/fgtop \
        FlightGear/fg$(FG_VERSION_MAJOR).exe FlightGear/runfg.bat \
@@ -100,6 +102,16 @@ bin-zip:
 
 #---------------------------------------------------------------------------
 # $Log$
+# Revision 1.39  1998/01/27 00:47:41  curt
+# Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
+# system and commandline/config file processing code.
+#
+# Revision 1.38  1998/01/22 22:03:22  curt
+# Tweaks.
+#
+# Revision 1.37  1998/01/19 19:42:58  curt
+# More misc. tweaks for rpk make merge.
+#
 # Revision 1.36  1998/01/19 19:26:51  curt
 # Merged in make system changes from Bob Kuehne <rpk@sgi.com>
 # This should simplify things tremendously.