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