]> git.mxchange.org Git - flightgear.git/blob - Tools/Makefile
34b2a5254527ff9f12419a8fd17da4af3e068b01
[flightgear.git] / Tools / Makefile
1 #---------------------------------------------------------------------------
2 # Toplevel FGTools Makefile
3 #
4 # Written by Curtis Olson, started October 1997.
5 #
6 # Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #
22 # $Id$
23 # (Log is kept at end of this file)
24 #---------------------------------------------------------------------------
25
26
27 include make.inc
28
29
30 SUBDIRS = Dem2node Tri2terrain Triangle
31
32
33 all: 
34         for dir in $(SUBDIRS); do \
35             ( cd $$dir; $(MAKE) ) ; \
36         done
37
38 depend:
39         for dir in $(SUBDIRS); do \
40             ( echo "Making depend in $$dir"; \
41               cd $$dir; $(CC) -MM *.c > depend ) ; \
42         done
43
44 Makefile-os2:
45         cat Makefile | perl mkmfos2.pl > Makefile.os2; \
46         for dir in $(SUBDIRS); do \
47             ( echo "Making Makefile.os2 in $$dir"; \
48               cat $$dir/Makefile | perl mkmfos2.pl > $$dir/Makefile.os2; \
49               cat $$dir/depend   | perl mkmfos2.pl > $$dir/depend.os2) ; \
50         done
51
52 clean:
53         -rm -f *.os2 *~
54         for dir in $(SUBDIRS); do \
55             (cd $$dir; $(MAKE) clean) ; \
56         done
57
58
59 source-tar: clean
60         echo "need to fix this"
61 #       (cd ../..; \
62 #       tar cvzf source-$(VERSION).tar.gz FlightGear/fgtop FlightGear/COPYING \
63 #       FlightGear/Docs FlightGear/Src FlightGear/Thanks)
64
65 source-zip: clean
66         echo "need to fix this"
67 #       (cd ../..; \
68 #       zip -r source-$(VERSION).zip FlightGear/fgtop FlightGear/COPYING \
69 #       FlightGear/Docs FlightGear/Src FlightGear/Thanks)
70
71 bin-tar: all
72         echo "need to fix this"
73 #       cp GLUT/fg0 GLUT/runfg ..
74 #       (cd ../..; \
75 #       tar cvzf bin-$(VERSION).tar.gz FlightGear/fgtop FlightGear/fg0 \
76 #       FlightGear/runfg FlightGear/COPYING FlightGear/Docs FlightGear/Thanks)
77
78 bin-zip: 
79         echo "need to fix this"
80 #       cp GLUT/fg0.exe GLUT/runfg.bat GLUT/cygwin.dll ..
81 #       (cd ../..; \
82 #       zip -r bin-$(VERSION).zip FlightGear/fgtop FlightGear/fg0.exe \
83 #       FlightGear/runfg.bat FlightGear/cygwin.dll FlightGear/COPYING \
84 #       FlightGear/Docs FlightGear/Thanks)
85
86
87 #---------------------------------------------------------------------------
88 # $Log$
89 # Revision 1.1  1997/10/20 19:52:18  curt
90 # Initial revision.
91 #