]> git.mxchange.org Git - flightgear.git/blob - Tools/Makefile
44eb3cdebe27a030dddec20994f6bcbbaa4b361a
[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 = AssemTris Dem2node FixNode FixObj SplitTris Stripe_u Tri2obj 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 demtools-$(VERSION).tar.gz Tools/Makefile Tools/README \
63         Tools/TODO Tools/make.inc Tools/Dem2node Tools/FixNode Tools/FixObj \
64         Tools/Stripe_u Tools/Tri2obj Tools/Triangle Tools/mesa-e.dem)
65
66 source-zip: clean
67         echo "need to fix this"
68         (cd ..; \
69         zip -r demtools-$(VERSION).zip Tools/Makefile Tools/README \
70         Tools/TODO Tools/make.inc Tools/Dem2node Tools/FixNode Tools/FixObj \
71         Tools/Stripe_u Tools/Tri2obj Tools/Triangle Tools/mesa-e.dem)
72
73 bin-tar: all
74         echo "need to fix this"
75 #       cp GLUT/fg0 GLUT/runfg ..
76 #       (cd ../..; \
77 #       tar cvzf bin-$(VERSION).tar.gz FlightGear/fgtop FlightGear/fg0 \
78 #       FlightGear/runfg FlightGear/COPYING FlightGear/Docs FlightGear/Thanks)
79
80 bin-zip: 
81         echo "need to fix this"
82 #       cp GLUT/fg0.exe GLUT/runfg.bat GLUT/cygwin.dll ..
83 #       (cd ../..; \
84 #       zip -r bin-$(VERSION).zip FlightGear/fgtop FlightGear/fg0.exe \
85 #       FlightGear/runfg.bat FlightGear/cygwin.dll FlightGear/COPYING \
86 #       FlightGear/Docs FlightGear/Thanks)
87
88
89 #---------------------------------------------------------------------------
90 # $Log$
91 # Revision 1.5  1998/01/14 15:55:34  curt
92 # Finished splittris, started assemtris.
93 #
94 # Revision 1.4  1997/12/10 01:18:25  curt
95 # Initial revision.
96 #
97 # Revision 1.3  1997/11/27 00:18:26  curt
98 # Added FixNode
99 #
100 # Revision 1.2  1997/11/14 00:31:06  curt
101 # Abandon Tri2terrain ... replace with Tri2obj so we can use an existing
102 # tri-stripper.
103 #
104 # Revision 1.1  1997/10/20 19:52:18  curt
105 # Initial revision.
106 #