]> git.mxchange.org Git - flightgear.git/blob - Main/Makefile
0760bc87708389b2a5c94e5a82392d0f36a284a0
[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 TARGET=fg0
28
29 CFILES = GLmain.c $(INTERFACE_FILES) mesh2GL.c
30 OFILES = $(CFILES:.c=.o)
31 AFILES = ../Aircraft/libAircraft.a ../Controls/libControls.a \
32         ../Flight/libFlight.a ../Flight/LaRCsim/libLaRCsim.a \
33         ../Flight/Slew/libSlew.a ../Math/libMath.a \
34         ../Scenery/libScenery.a \
35         ../Timer/libTimer.a ../Utils/libUtils.a ../Weather/libWeather.a
36
37
38 include ../make.inc
39
40
41 CFLAGS = $(FG_CFLAGS) $(INTERFACE_FLAGS)
42 LIBS =  $(INTERFACE_LIBS) $(GRAPHICS_LIBS) -lm -lfl
43
44
45 #---------------------------------------------------------------------------
46 # Primary Targets
47 #---------------------------------------------------------------------------
48
49 $(TARGET): $(OFILES) $(AFILES)
50         $(CC) -o $(TARGET) $(OFILES) $(AFILES) $(LIBS)
51
52 all: $(TARGET)
53
54 clean:
55         rm -f *.o $(TARGET) $(TARGET).exe lib*.a *~ core
56
57
58 #---------------------------------------------------------------------------
59 # Secondary Targets
60 #---------------------------------------------------------------------------
61
62 include depend
63
64 GLmain.o:
65         $(CC) $(CFLAGS) -c GLmain.c
66
67 GLUTkey.o:
68         $(CC) $(CFLAGS) -c GLUTkey.c
69
70 GLTKkey.o:
71         $(CC) $(CFLAGS) -c GLTKkey.c
72
73 mesh2GL.o:
74         $(CC) $(CFLAGS) -c mesh2GL.c
75
76
77 #---------------------------------------------------------------------------
78 # $Log$
79 # Revision 1.24  1997/07/19 23:04:47  curt
80 # Added an initial weather section.
81 #
82 # Revision 1.23  1997/07/19 22:34:03  curt
83 # Moved PI definitions to ../constants.h
84 # Moved random() stuff to ../Utils/ and renamed fg_random()
85 #
86 # Revision 1.22  1997/07/18 23:41:25  curt
87 # Tweaks for building with Cygnus Win32 compiler.
88 #
89 # Revision 1.21  1997/07/05 20:43:34  curt
90 # renamed mat3 directory to Math so we could add other math related routines.
91 #
92 # Revision 1.20  1997/06/29 21:19:17  curt
93 # Working on scenery management system.
94 #
95 # Revision 1.19  1997/06/27 21:38:09  curt
96 # Working on Makefile structure.
97 #
98 # Revision 1.18  1997/06/27 20:03:36  curt
99 # Working on Makefile structure.
100 #
101 # Revision 1.17  1997/06/26 22:14:54  curt
102 # Beginning work on a scenery management system.
103 #
104 # Revision 1.16  1997/06/26 19:08:33  curt
105 # Restructuring make, adding automatic "make dep" support.
106 #
107 # Revision 1.15  1997/06/25 15:39:47  curt
108 # Minor changes to compile with rsxnt/win32.
109 #
110 # Revision 1.14  1997/06/21 17:52:23  curt
111 # Continue directory shuffling ... everything should be compilable/runnable
112 # again.
113 #
114 # Revision 1.13  1997/06/21 17:12:54  curt
115 # Capitalized subdirectory names.
116 #
117 # Revision 1.12  1997/06/16 19:32:51  curt
118 # Starting to add general timer support.
119 #
120 # Revision 1.11  1997/05/31 19:16:25  curt
121 # Elevator trim added.
122 #
123 # Revision 1.10  1997/05/31 04:13:53  curt
124 # WE CAN NOW FLY!!!
125 #
126 # Continuing work on the LaRCsim flight model integration.
127 # Added some MSFS-like keyboard input handling.
128 #
129 # Revision 1.9  1997/05/30 23:26:19  curt
130 # Added elevator/aileron controls.
131 #
132 # Revision 1.8  1997/05/30 19:27:02  curt
133 # The LaRCsim flight model is starting to look like it is working.
134 #
135 # Revision 1.7  1997/05/29 22:39:50  curt
136 # Working on incorporating the LaRCsim flight model.
137 #
138 # Revision 1.6  1997/05/29 02:33:23  curt
139 # Updated to reflect changing interfaces in other "modules."
140 #
141 # Revision 1.5  1997/05/27 17:44:32  curt
142 # Renamed & rearranged variables and routines.   Added some initial simple
143 # timer/alarm routines so the flight model can be updated on a regular interval.
144 #
145 # Revision 1.4  1997/05/23 15:40:26  curt
146 # Added GNU copyright headers.
147 # Fog now works!
148 #
149 # Revision 1.3  1997/05/23 00:35:13  curt
150 # Trying to get fog to work ...
151 #
152 # Revision 1.2  1997/05/21 15:57:52  curt
153 # Renamed due to added GLUT support.
154 #
155 # Revision 1.1  1997/05/16 16:05:51  curt
156 # Initial revision.
157 #