]> git.mxchange.org Git - flightgear.git/blob - Simulator/Makefile
Working on Makefile structure.
[flightgear.git] / Simulator / Makefile
1 #---------------------------------------------------------------------------
2 # Toplevel Project Makefile
3 #
4 # Written by Curtis Olson, started May 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 #---------------------------------------------------------------------------
31 # You shouldn't need to modify anything beyond this point
32 #---------------------------------------------------------------------------
33
34 SUBSUBDIRS = Flight/LaRCsim Flight/Slew Scenery/ParseScn Scenery/ParseVRML
35 SUBDIRS = Aircraft Controls Flight mat3 Scenery Timer
36 MAIN = OpenGL
37
38
39 all: 
40         for dir in $(SUBSUBDIRS) $(SUBDIRS); do \
41             ( cd $$dir; $(MAKE) ) ; \
42         done
43         for dir in $(MAIN); do \
44             ( cd $$dir; $(MAKE) ) ; \
45         done
46
47 depend:
48         for dir in $(SUBSUBDIRS) $(SUBDIRS); do \
49             ( cd $$dir; $(MAKE) depend ) ; \
50         done
51         for dir in $(MAIN); do \
52             ( cd $$dir; $(MAKE) depend ) ; \
53         done
54
55 dep:
56         for dir in $(SUBSUBDIRS) $(SUBDIRS); do \
57             ( cd $$dir; $(CC) -MM *.c > depend ) ; \
58         done
59         for dir in $(MAIN); do \
60             ( cd $$dir; $(CC) -MM *.c > depend ) ; \
61         done
62
63 clean:
64         -rm -f *~
65         for dir in $(SUBSUBDIRS) $(SUBDIRS) $(MAIN); do \
66             (cd $$dir; $(MAKE) clean) ; \
67         done
68
69
70 tar: clean
71         (cd ../..; \
72         tar cvf prototype-0.04.tar FlightGear/COPYING FlightGear/Docs \
73         FlightGear/Scenery/mesa-e.scn FlightGear/Src FlightGear/Thanks)
74
75
76 #---------------------------------------------------------------------------
77 # $Log$
78 # Revision 1.12  1997/06/27 21:37:59  curt
79 # Working on Makefile structure.
80 #
81 # Revision 1.11  1997/06/27 20:03:31  curt
82 # Working on Makefile structure.
83 #
84 # Revision 1.10  1997/06/26 19:08:22  curt
85 # Restructuring make, adding automatic "make dep" support.
86 #
87 # Revision 1.9  1997/06/22 21:44:40  curt
88 # Working on intergrating the VRML (subset) parser.
89 #
90 # Revision 1.8  1997/06/21 17:52:22  curt
91 # Continue directory shuffling ... everything should be compilable/runnable
92 # again.
93 #
94 # Revision 1.7  1997/06/21 17:12:38  curt
95 # Capitalized subdirectory names.
96 #
97 # Revision 1.6  1997/06/16 19:32:50  curt
98 # Starting to add general timer support.
99 #
100 # Revision 1.5  1997/05/30 19:26:56  curt
101 # The LaRCsim flight model is starting to look like it is working.
102 #
103 # Revision 1.4  1997/05/29 02:31:43  curt
104 # Update subdirectory structure.
105 #
106 # Revision 1.3  1997/05/23 15:40:04  curt
107 # Added GNU copyright headers.
108 #
109 # Revision 1.2  1997/05/23 00:35:09  curt
110 # Trying to get fog to work ...
111 #
112 # Revision 1.1  1997/05/16 15:51:13  curt
113 # Initial revision.
114 #