]> git.mxchange.org Git - flightgear.git/blob - Main/Makefile
Began working on rendering a sky.
[flightgear.git] / Main / 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 CFILES = fg_init.c views.c $(INTERFACE_FILES)
28 OFILES = $(CFILES:.c=.o)
29 AFILES = ../Aircraft/libAircraft.a ../Cockpit/libCockpit.a \
30         ../Controls/libControls.a ../Flight/libFlight.a \
31         ../Joystick/libJoystick.a ../Flight/LaRCsim/libLaRCsim.a \
32         ../Flight/Slew/libSlew.a ../Scenery/libScenery.a \
33         ../Time/libTime.a ../Weather/libWeather.a ../Math/libMath.a \
34
35
36 include ../make.inc
37
38
39 CFLAGS = $(FG_CFLAGS) $(INTERFACE_FLAGS)
40 LIBS =  $(FG_DEBUG_LIBS) $(INTERFACE_LIBS) $(GRAPHICS_LIBS) -lm -lfl
41
42
43 TARGET=fg-$(FG_VERSION)
44
45
46 #---------------------------------------------------------------------------
47 # Primary Targets
48 #---------------------------------------------------------------------------
49
50 $(TARGET): $(OFILES) $(AFILES)
51         $(CC) -o $(TARGET) $(OFILES) $(AFILES) $(LIBS)
52         $(RM) -f fg$(FG_VERSION_MAJOR)
53         $(LN) $(TARGET) fg$(FG_VERSION_MAJOR)
54
55 all: $(TARGET)
56
57 clean:
58         rm -f *.o $(TARGET) $(TARGET).exe \
59                 fg$(FG_VERSION_MAJOR) fg$(FG_VERSION_MAJOR).exe \
60                 lib*.a *.os2 *~ core
61
62
63 #---------------------------------------------------------------------------
64 # Secondary Targets
65 #---------------------------------------------------------------------------
66
67 include depend
68
69 GLUTmain.o:
70         $(CC) $(CFLAGS) -c GLUTmain.c -o $@
71
72 GLUTkey.o:
73         $(CC) $(CFLAGS) -c GLUTkey.c -o $@
74
75 GLTKkey.o:
76         $(CC) $(CFLAGS) -c GLTKkey.c -o $@
77
78 fg_init.o:
79         $(CC) $(CFLAGS) -c fg_init.c -o $@
80
81 views.o:
82         $(CC) $(CFLAGS) -c views.c -o $@
83
84
85 #---------------------------------------------------------------------------
86 # $Log$
87 # Revision 1.39  1997/12/17 23:13:35  curt
88 # Began working on rendering a sky.
89 #
90 # Revision 1.38  1997/12/15 23:54:47  curt
91 # Add xgl wrappers for debugging.
92 # Generate terrain normals on the fly.
93 #
94 # Revision 1.37  1997/12/12 21:41:26  curt
95 # More light/material property tweaking ... still a ways off.
96 #
97 # Revision 1.36  1997/12/10 01:19:47  curt
98 # Tweaks for verion 0.15 release.
99 #
100 # Revision 1.35  1997/10/28 21:11:22  curt
101 # Organizational changes.
102 #
103 # Revision 1.34  1997/10/25 03:24:21  curt
104 # Incorporated sun, moon, and star positioning code contributed by Durk Talsma.
105 #
106 # Revision 1.33  1997/09/04 02:17:35  curt
107 # Shufflin' stuff.
108 #
109 # Revision 1.32  1997/08/27 21:31:27  curt
110 # Added views.[ch]
111 #
112 # Revision 1.31  1997/08/25 20:27:23  curt
113 # Merged in initial HUD and Joystick code.
114 #
115 # Revision 1.30  1997/08/22 21:34:40  curt
116 # Doing a bit of reorganizing and house cleaning.
117 #
118 # Revision 1.29  1997/08/04 20:25:15  curt
119 # Organizational tweaking.
120 #
121 # Revision 1.28  1997/08/02 18:45:01  curt
122 # Renamed GLmain.c GLUTmain.c
123 #
124 # Revision 1.27  1997/07/31 22:52:39  curt
125 # Working on redoing internal coordinate systems & scenery transformations.
126 #
127 # Revision 1.26  1997/07/30 16:12:42  curt
128 # Moved fg_random routines from Util/ to Math/
129 #
130 # Revision 1.25  1997/07/20 02:19:11  curt
131 # First stab at a system to generate os2 makefiles automatically.
132 #
133 # Revision 1.24  1997/07/19 23:04:47  curt
134 # Added an initial weather section.
135 #
136 # Revision 1.23  1997/07/19 22:34:03  curt
137 # Moved PI definitions to ../constants.h
138 # Moved random() stuff to ../Utils/ and renamed fg_random()
139 #
140 # Revision 1.22  1997/07/18 23:41:25  curt
141 # Tweaks for building with Cygnus Win32 compiler.
142 #
143 # Revision 1.21  1997/07/05 20:43:34  curt
144 # renamed mat3 directory to Math so we could add other math related routines.
145 #
146 # Revision 1.20  1997/06/29 21:19:17  curt
147 # Working on scenery management system.
148 #
149 # Revision 1.19  1997/06/27 21:38:09  curt
150 # Working on Makefile structure.
151 #
152 # Revision 1.18  1997/06/27 20:03:36  curt
153 # Working on Makefile structure.
154 #
155 # Revision 1.17  1997/06/26 22:14:54  curt
156 # Beginning work on a scenery management system.
157 #
158 # Revision 1.16  1997/06/26 19:08:33  curt
159 # Restructuring make, adding automatic "make dep" support.
160 #
161 # Revision 1.15  1997/06/25 15:39:47  curt
162 # Minor changes to compile with rsxnt/win32.
163 #
164 # Revision 1.14  1997/06/21 17:52:23  curt
165 # Continue directory shuffling ... everything should be compilable/runnable
166 # again.
167 #
168 # Revision 1.13  1997/06/21 17:12:54  curt
169 # Capitalized subdirectory names.
170 #
171 # Revision 1.12  1997/06/16 19:32:51  curt
172 # Starting to add general timer support.
173 #
174 # Revision 1.11  1997/05/31 19:16:25  curt
175 # Elevator trim added.
176 #
177 # Revision 1.10  1997/05/31 04:13:53  curt
178 # WE CAN NOW FLY!!!
179 #
180 # Continuing work on the LaRCsim flight model integration.
181 # Added some MSFS-like keyboard input handling.
182 #
183 # Revision 1.9  1997/05/30 23:26:19  curt
184 # Added elevator/aileron controls.
185 #
186 # Revision 1.8  1997/05/30 19:27:02  curt
187 # The LaRCsim flight model is starting to look like it is working.
188 #
189 # Revision 1.7  1997/05/29 22:39:50  curt
190 # Working on incorporating the LaRCsim flight model.
191 #
192 # Revision 1.6  1997/05/29 02:33:23  curt
193 # Updated to reflect changing interfaces in other "modules."
194 #
195 # Revision 1.5  1997/05/27 17:44:32  curt
196 # Renamed & rearranged variables and routines.   Added some initial simple
197 # timer/alarm routines so the flight model can be updated on a regular interval.
198 #
199 # Revision 1.4  1997/05/23 15:40:26  curt
200 # Added GNU copyright headers.
201 # Fog now works!
202 #
203 # Revision 1.3  1997/05/23 00:35:13  curt
204 # Trying to get fog to work ...
205 #
206 # Revision 1.2  1997/05/21 15:57:52  curt
207 # Renamed due to added GLUT support.
208 #
209 # Revision 1.1  1997/05/16 16:05:51  curt
210 # Initial revision.
211 #