]> git.mxchange.org Git - flightgear.git/blob - Scenery/Makefile
Moved astro stuff to .../Src/Astro/
[flightgear.git] / Scenery / Makefile
1 #---------------------------------------------------------------------------
2 # 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 TARGET = libScenery.a
28
29 CFILES = common.c geometry.c mesh.c obj.c scenery.c
30
31 OFILES = $(CFILES:.c=.o)
32
33
34 include ../make.inc
35
36
37 CFLAGS = $(FG_CFLAGS)
38
39
40 #---------------------------------------------------------------------------
41 # Primary Targets
42 #---------------------------------------------------------------------------
43
44 $(TARGET): $(OFILES) $(HFILES) 
45         $(AR) rv $(TARGET) $(OFILES)
46         $(RANLIB) $(TARGET)
47
48 all: $(TARGET)
49
50 clean:
51         rm -f *.o $(TARGET) lib*.a *.os2 *~ core
52
53 realclean: clean
54
55
56 #---------------------------------------------------------------------------
57 # Secondary Targets
58 #---------------------------------------------------------------------------
59
60 include depend
61
62 astro.o:
63         $(CC) $(CFLAGS) -c astro.c -o $@
64
65 common.o:
66         $(CC) $(CFLAGS) -c common.c -o $@
67
68 mesh.o:
69         $(CC) $(CFLAGS) -c mesh.c -o $@
70
71 mesh2GL.o:
72         $(CC) $(CFLAGS) -c mesh2GL.c -o $@
73
74 moon.o:
75         $(CC) $(CFLAGS) -c moon.c -o $@
76
77 obj.o:
78         $(CC) $(CFLAGS) -c obj.c -o $@
79
80 orbits.o:
81         $(CC) $(CFLAGS) -c orbits.c -o $@
82
83 planets.o:
84         $(CC) $(CFLAGS) -c planets.c -o $@
85
86 scenery.o:
87         $(CC) $(CFLAGS) -c scenery.c -o $@
88
89 stars.c:
90         $(CC) $(CFLAGS) -c stars.c -o $@
91
92 sun.o:
93         $(CC) $(CFLAGS) -c sun.c -o $@
94
95 geometry.o:
96         $(CC) $(CFLAGS) -c geometry.c -o $@
97
98
99 #---------------------------------------------------------------------------
100 # $Log$
101 # Revision 1.27  1998/01/07 03:22:28  curt
102 # Moved astro stuff to .../Src/Astro/
103 #
104 # Revision 1.26  1997/12/19 16:45:01  curt
105 # Working on scene rendering order and options.
106 #
107 # Revision 1.25  1997/12/17 23:13:45  curt
108 # Began working on rendering the sky.
109 #
110 # Revision 1.24  1997/11/25 19:25:33  curt
111 # Changes to integrate Durk's moon/sun code updates + clean up.
112 #
113 # Revision 1.23  1997/10/28 21:00:20  curt
114 # Changing to new terrain format.
115 #
116 # Revision 1.22  1997/10/25 03:30:07  curt
117 # Misc. tweaks.
118 #
119 # Revision 1.21  1997/10/25 03:18:26  curt
120 # Incorporated sun, moon, and planet position and rendering code contributed
121 # by Durk Talsma.
122 #
123 # Revision 1.20  1997/09/22 14:44:21  curt
124 # Continuing to try to align stars correctly.
125 #
126 # Revision 1.19  1997/08/27 03:30:23  curt
127 # Changed naming scheme of basic shared structures.
128 #
129 # Revision 1.18  1997/08/02 19:10:12  curt
130 # Incorporated mesh2GL.c into mesh.c
131 #
132 # Revision 1.17  1997/07/23 21:52:23  curt
133 # Put comments around the text after an #endif for increased portability.
134 #
135 # Revision 1.16  1997/07/20 02:19:11  curt
136 # First stab at a system to generate os2 makefiles automatically.
137 #
138 # Revision 1.15  1997/07/12 02:24:47  curt
139 # Added ranlib.
140 #
141 # Revision 1.14  1997/06/29 21:16:47  curt
142 # More twiddling with the Scenery Management system.
143 #
144 # Revision 1.13  1997/06/27 21:38:10  curt
145 # Working on Makefile structure.
146 #
147 # Revision 1.12  1997/06/27 20:03:37  curt
148 # Working on Makefile structure.
149 #
150 # Revision 1.11  1997/06/26 22:14:57  curt
151 # Beginning work on a scenery management system.
152 #
153 # Revision 1.10  1997/06/26 19:08:34  curt
154 # Restructuring make, adding automatic "make dep" support.
155 #
156 # Revision 1.9  1997/06/25 15:39:48  curt
157 # Minor changes to compile with rsxnt/win32.
158 #
159 # Revision 1.8  1997/06/21 17:58:07  curt
160 # directory shuffling ...
161 #
162 # Revision 1.1  1997/06/21 17:39:28  curt
163 # Moved to the ParseScn subdirectory.
164 #
165 # Revision 1.6  1997/06/21 17:12:55  curt
166 # Capitalized subdirectory names.
167 #
168 # Revision 1.5  1997/05/31 19:16:29  curt
169 # Elevator trim added.
170 #
171 # Revision 1.4  1997/05/27 17:48:50  curt
172 # Added -f flag to flex to generate a "fast" scanner.
173 #
174 # Revision 1.3  1997/05/23 15:40:40  curt
175 # Added GNU copyright headers.
176 #
177 # Revision 1.2  1997/05/17 00:17:01  curt
178 # Cosmetic changes.
179 #
180 # Revision 1.1  1997/05/16 16:07:02  curt
181 # Initial revision.
182 #