]> git.mxchange.org Git - flightgear.git/blob - Tools/Makefile
d28cea3e54035eafc830b1ca7fa624233898c254
[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 $(FG_ROOT_SRC)/commondefs
28
29
30 SUBDIRS = AssemTris Dem2node FixNode FixObj SplitTris Stripe_u Tri2obj Triangle
31 ORDEREDDIRS = $(SUBDIRS)
32
33
34 all: 
35         for dir in $(ORDEREDDIRS); do \
36             ( cd $$dir; $(MAKE) ) ; \
37         done
38
39 depend:
40         for dir in $(ORDEREDDIRS); do \
41             ( echo "Making depend in $$dir"; \
42               cd $$dir; $(CC) -MM *.c > depend ) ; \
43         done
44
45 Makefile-os2:
46         cat Makefile | perl mkmfos2.pl > Makefile.os2; \
47         for dir in $(ORDEREDDIRS); do \
48             ( echo "Making Makefile.os2 in $$dir"; \
49               cat $$dir/Makefile | perl mkmfos2.pl > $$dir/Makefile.os2; \
50               cat $$dir/depend   | perl mkmfos2.pl > $$dir/depend.os2) ; \
51         done
52
53 clean:
54         -rm -f *.os2 *~
55         for dir in $(ORDEREDDIRS); do \
56             (cd $$dir; $(MAKE) clean) ; \
57         done
58
59
60 source-tar: clean
61         (cd ..; \
62         tar cvzf demtools-$(VERSION).tar.gz Tools/Makefile Tools/README \
63         Tools/TODO Tools/make.inc Tools/AssemTris Tools/Dem2node \
64         Tools/FixNode Tools/FixObj Tools/SplitTris Tools/Stripe_u \
65         Tools/Tri2obj Tools/Triangle)
66
67 source-zip: clean
68         (cd ..; \
69         zip -r demtools-$(VERSION).zip Tools/Makefile Tools/README \
70         Tools/TODO Tools/make.inc Tools/AssemTris Tools/Dem2node \
71         Tools/FixNode Tools/FixObj Tools/SplitTris Tools/Stripe_u \
72         Tools/Tri2obj Tools/Triangle)
73
74 bin-tar: all
75         echo "need to fix this"
76 #       cp GLUT/fg0 GLUT/runfg ..
77 #       (cd ../..; \
78 #       tar cvzf bin-$(VERSION).tar.gz FlightGear/fgtop FlightGear/fg0 \
79 #       FlightGear/runfg FlightGear/COPYING FlightGear/Docs FlightGear/Thanks)
80
81 bin-zip: 
82         echo "need to fix this"
83 #       cp GLUT/fg0.exe GLUT/runfg.bat GLUT/cygwin.dll ..
84 #       (cd ../..; \
85 #       zip -r bin-$(VERSION).zip FlightGear/fgtop FlightGear/fg0.exe \
86 #       FlightGear/runfg.bat FlightGear/cygwin.dll FlightGear/COPYING \
87 #       FlightGear/Docs FlightGear/Thanks)
88
89
90 #---------------------------------------------------------------------------
91 # $Log$
92 # Revision 1.6  1998/01/21 02:55:42  curt
93 # Incorporated new make system from Bob Kuehne <rpk@sgi.com>.
94 #
95 # Revision 1.5  1998/01/14 15:55:34  curt
96 # Finished splittris, started assemtris.
97 #
98 # Revision 1.4  1997/12/10 01:18:25  curt
99 # Initial revision.
100 #
101 # Revision 1.3  1997/11/27 00:18:26  curt
102 # Added FixNode
103 #
104 # Revision 1.2  1997/11/14 00:31:06  curt
105 # Abandon Tri2terrain ... replace with Tri2obj so we can use an existing
106 # tri-stripper.
107 #
108 # Revision 1.1  1997/10/20 19:52:18  curt
109 # Initial revision.
110 #