]> git.mxchange.org Git - flightgear.git/blob - Main/Makefile
Minor changes to compile with rsxnt/win32.
[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=fgfs0
28
29 CC = gcc
30
31 # STD_FLAGS = -O2 -Wall
32 STD_CFLAGS = -g -Wall
33
34
35 #---------------------------------------------------------------------------
36 # Define the high level GL interface library
37 #---------------------------------------------------------------------------
38
39 # For GLUT
40 INTERFACE_FLAGS = -DGLUT
41 INTERFACE_LIBS = -lglut
42 INTERFACE_FILES = GLUTkey.c
43
44 # For MESA_TK (Tk interface to Mesa)
45 # INCLUDES = -I/usr/include/mesa
46 # INTERFACE_FLAGS = -DMESA_TK
47 # INTERFACE_LIBS = -L/usr/lib/mesa -lMesatk
48 # INTERFACE_FILES = GLTKkey.c
49
50
51 #---------------------------------------------------------------------------
52 # Define main GL libraries
53 #---------------------------------------------------------------------------
54
55 # For OpenGL
56 GRAPHICS_LIBS = -lGLU -lGL -lXmu -lX11
57
58 # For Mesa
59 # MESA_LIBS = -L/usr/lib/mesa -lMesatk -lMesaaux -lMesaGLU -lMesaGL
60 # X11_LIBS =  -L/usr/X11R6/lib -lXext -lXmu -lXi -lX11
61 # GRAPHICS_LIBS = $(MESA_LIBS) $(X11_LIBS)
62
63
64 CFLAGS = $(STD_CFLAGS) $(INTERFACE_FLAGS)
65 LIBS =  $(INTERFACE_LIBS) $(GRAPHICS_LIBS) -lm -lfl
66
67 CFILES = GLmain.c $(INTERFACE_FILES) mesh2GL.c
68 OFILES = $(CFILES:.c=.o)
69 AFILES = ../Aircraft/libAircraft.a ../Controls/libControls.a \
70         ../Flight/libFlight.a ../Flight/LaRCsim/libLaRCsim.a \
71         ../Flight/Slew/libSlew.a ../mat3/libmat3.a \
72         ../Scenery/ParseScn/libParseScn.a ../Scenery/libScenery.a \
73         ../Timer/libTimer.a
74
75
76 #---------------------------------------------------------------------------
77 # Primary Targets
78 #---------------------------------------------------------------------------
79
80 $(TARGET): $(OFILES) $(AFILES)
81         $(CC) -o $(TARGET) $(OFILES) $(AFILES) $(LIBS)
82
83 all: $(TARGET)
84
85 clean:
86         rm -f *.o $(TARGET) lib*.a *~ core
87
88
89 #---------------------------------------------------------------------------
90 # Secondary Targets
91 #---------------------------------------------------------------------------
92
93 GLmain.o: GLmain.c GLUTkey.h ../Aircraft/aircraft.h ../Scenery/scenery.h \
94         ../Timer/fg_timer.h
95         $(CC) $(CFLAGS) $(INCLUDES) -c GLmain.c
96
97 GLUTkey.o: GLUTkey.c GLUTkey.h ../Aircraft/aircraft.h
98         $(CC) $(CFLAGS) $(INCLUDES) -c GLUTkey.c
99
100 GLTKkey.o: GLTKkey.c GLTKkey.h ../Aircraft/aircraft.h
101         $(CC) $(CFLAGS) $(INCLUDES) -c GLTKkey.c
102
103 mesh2GL.o: mesh2GL.c ../Scenery/mesh.h
104         $(CC) $(CFLAGS) $(INCLUDES) -c mesh2GL.c
105
106
107 #---------------------------------------------------------------------------
108 # $Log$
109 # Revision 1.15  1997/06/25 15:39:47  curt
110 # Minor changes to compile with rsxnt/win32.
111 #
112 # Revision 1.14  1997/06/21 17:52:23  curt
113 # Continue directory shuffling ... everything should be compilable/runnable
114 # again.
115 #
116 # Revision 1.13  1997/06/21 17:12:54  curt
117 # Capitalized subdirectory names.
118 #
119 # Revision 1.12  1997/06/16 19:32:51  curt
120 # Starting to add general timer support.
121 #
122 # Revision 1.11  1997/05/31 19:16:25  curt
123 # Elevator trim added.
124 #
125 # Revision 1.10  1997/05/31 04:13:53  curt
126 # WE CAN NOW FLY!!!
127 #
128 # Continuing work on the LaRCsim flight model integration.
129 # Added some MSFS-like keyboard input handling.
130 #
131 # Revision 1.9  1997/05/30 23:26:19  curt
132 # Added elevator/aileron controls.
133 #
134 # Revision 1.8  1997/05/30 19:27:02  curt
135 # The LaRCsim flight model is starting to look like it is working.
136 #
137 # Revision 1.7  1997/05/29 22:39:50  curt
138 # Working on incorporating the LaRCsim flight model.
139 #
140 # Revision 1.6  1997/05/29 02:33:23  curt
141 # Updated to reflect changing interfaces in other "modules."
142 #
143 # Revision 1.5  1997/05/27 17:44:32  curt
144 # Renamed & rearranged variables and routines.   Added some initial simple
145 # timer/alarm routines so the flight model can be updated on a regular interval.
146 #
147 # Revision 1.4  1997/05/23 15:40:26  curt
148 # Added GNU copyright headers.
149 # Fog now works!
150 #
151 # Revision 1.3  1997/05/23 00:35:13  curt
152 # Trying to get fog to work ...
153 #
154 # Revision 1.2  1997/05/21 15:57:52  curt
155 # Renamed due to added GLUT support.
156 #
157 # Revision 1.1  1997/05/16 16:05:51  curt
158 # Initial revision.
159 #