]> git.mxchange.org Git - flightgear.git/blobdiff - Simulator/Makefile
Removed "depend" files from cvs control. Other minor make tweaks.
[flightgear.git] / Simulator / Makefile
index 0067d2ea98338718e2503c3b02f90eddb952371f..e8836288d800194dc2ae17751c1ead4bc726dc07 100644 (file)
@@ -40,7 +40,7 @@ all:
 depend:
        for dir in $(ORDEREDDIRS); do \
            ( echo "Making depend in $$dir"; \
-             cd $$dir; $(CC) $(CFLAGS) -MM *.c > depend ) ; \
+             cd $$dir; $(CC) $(CFLAGS) -M *.c > depend ) ; \
        done
 
 Makefile-os2:
@@ -59,7 +59,7 @@ clean:
 
 clobber:
        for dir in $(ORDEREDDIRS); do \
-           (cd $$dir; $(MAKE) clean) ; \
+           (cd $$dir; $(MAKE) clobber) ; \
        done
 
 source-tar: clean
@@ -74,11 +74,13 @@ source-zip: clean
 
 scenery-tar:
        (cd ../..; \
-       $(TAR) cvzf scenery-$(FG_VERSION).tar.gz FlightGear/Scenery)
+       $(TAR) cvzf scenery-$(FG_VERSION).tar.gz FlightGear/Scenery/*.dat \
+       FlightGear/Scenery/*/*/*.obj)
 
 scenery-zip:
        (cd ../..; \
-       zip -r scenery-$(FG_VERSION).zip FlightGear/Scenery)
+       zip -r scenery-$(FG_VERSION).zip FlightGear/Scenery/*.dat \
+       FlightGear/Scenery/*/*/*.obj)
 
 bin-tar: all
        cp Main/fg-$(FG_VERSION) README Thanks runfg ..
@@ -102,6 +104,12 @@ bin-zip:
 
 #---------------------------------------------------------------------------
 # $Log$
+# Revision 1.41  1998/02/09 22:56:28  curt
+# Removed "depend" files from cvs control.  Other minor make tweaks.
+#
+# Revision 1.40  1998/02/01 03:39:53  curt
+# Minor tweaks.
+#
 # 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.