]> git.mxchange.org Git - flightgear.git/blob - Main/Makefile
Removed "depend" files from cvs control. Other minor make tweaks.
[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 TARGET = fg-$(FG_VERSION)
27
28 CFILES = fg_init.c fg_debug.c views.c $(INTERFACE_FILES)
29
30 FGLIBS = -lAircraft -lAstro -lCockpit -lControls -lFlight \
31         -lJoystick -lLaRCsim -lSlew -lScenery -lTime -lWeather -lMath \
32         $(NULL)
33
34
35 LCDEFS = -DGLUT
36 LLDFLAGS =
37 LDLIBS = $(FGLIBS) $(FG_DEBUG_LIBS) \
38         $(INTERFACE_LIBS) $(GRAPHICS_LIBS) -lm
39
40 include $(FG_ROOT_SRC)/commondefs
41
42 #---------------------------------------------------------------------------
43 # Rule for TARGET
44 #---------------------------------------------------------------------------
45
46 $(TARGET)$(EXT): $(OBJECTS) $(FG_ROOT_LIB)/stamp_libs
47         $(CC) -o $(TARGET)$(EXT) $(OBJECTS) $(LDFLAGS) $(LDLIBS)
48         $(RM) -f fg$(FG_VERSION_MAJOR)$(EXT)
49         $(LN) $(TARGET)$(EXT) fg$(FG_VERSION_MAJOR)$(EXT)
50
51 include $(COMMONRULES)
52
53 #---------------------------------------------------------------------------
54 # $Log$
55 # Revision 1.47  1998/02/09 22:56:56  curt
56 # Removed "depend" files from cvs control.  Other minor make tweaks.
57 #
58 # Revision 1.46  1998/02/03 23:20:24  curt
59 # Lots of little tweaks to fix various consistency problems discovered by
60 # Solaris' CC.  Fixed a bug in fg_debug.c with how the fgPrintf() wrapper
61 # passed arguments along to the real printf().  Also incorporated HUD changes
62 # by Michele America.
63 #
64 # Revision 1.45  1998/01/27 00:47:57  curt
65 # Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
66 # system and commandline/config file processing code.
67 #
68 # Revision 1.44  1998/01/22 22:04:00  curt
69 # Tweaked extention stuff.
70 #
71 # Revision 1.43  1998/01/22 02:59:37  curt
72 # Changed #ifdef FILE_H to #ifdef _FILE_H
73 #
74 # Revision 1.42  1998/01/21 21:11:34  curt
75 # Misc. tweaks.
76 #
77 # Revision 1.41  1998/01/19 19:27:08  curt
78 # Merged in make system changes from Bob Kuehne <rpk@sgi.com>
79 # This should simplify things tremendously.
80 #
81 # Revision 1.1  1998/01/07 03:16:15  curt
82 # Moved from .../Src/Scenery/ to .../Src/Astro/
83 #
84 # Revision 1.26  1997/12/19 16:45:01  curt
85 # Working on scene rendering order and options.
86 #
87 # Revision 1.25  1997/12/17 23:13:45  curt
88 # Began working on rendering the sky.
89 #
90 # Revision 1.24  1997/11/25 19:25:33  curt
91 # Changes to integrate Durk's moon/sun code updates + clean up.
92 #
93 # Revision 1.23  1997/10/28 21:00:20  curt
94 # Changing to new terrain format.
95 #
96 # Revision 1.22  1997/10/25 03:30:07  curt
97 # Misc. tweaks.
98 #
99 # Revision 1.21  1997/10/25 03:18:26  curt
100 # Incorporated sun, moon, and planet position and rendering code contributed
101 # by Durk Talsma.
102 #
103 # Revision 1.20  1997/09/22 14:44:21  curt
104 # Continuing to try to align stars correctly.
105 #
106 # Revision 1.19  1997/08/27 03:30:23  curt
107 # Changed naming scheme of basic shared structures.
108 #
109 # Revision 1.18  1997/08/02 19:10:12  curt
110 # Incorporated mesh2GL.c into mesh.c
111 #
112 # Revision 1.17  1997/07/23 21:52:23  curt
113 # Put comments around the text after an #endif for increased portability.
114 #
115 # Revision 1.16  1997/07/20 02:19:11  curt
116 # First stab at a system to generate os2 makefiles automatically.
117 #
118 # Revision 1.15  1997/07/12 02:24:47  curt
119 # Added ranlib.
120 #
121 # Revision 1.14  1997/06/29 21:16:47  curt
122 # More twiddling with the Scenery Management system.
123 #
124 # Revision 1.13  1997/06/27 21:38:10  curt
125 # Working on Makefile structure.
126 #
127 # Revision 1.12  1997/06/27 20:03:37  curt
128 # Working on Makefile structure.
129 #
130 # Revision 1.11  1997/06/26 22:14:57  curt
131 # Beginning work on a scenery management system.
132 #
133 # Revision 1.10  1997/06/26 19:08:34  curt
134 # Restructuring make, adding automatic "make dep" support.
135 #
136 # Revision 1.9  1997/06/25 15:39:48  curt
137 # Minor changes to compile with rsxnt/win32.
138 #
139 # Revision 1.8  1997/06/21 17:58:07  curt
140 # directory shuffling ...
141 #
142 # Revision 1.1  1997/06/21 17:39:28  curt
143 # Moved to the ParseScn subdirectory.
144 #
145 # Revision 1.6  1997/06/21 17:12:55  curt
146 # Capitalized subdirectory names.
147 #
148 # Revision 1.5  1997/05/31 19:16:29  curt
149 # Elevator trim added.
150 #
151 # Revision 1.4  1997/05/27 17:48:50  curt
152 # Added -f flag to flex to generate a "fast" scanner.
153 #
154 # Revision 1.3  1997/05/23 15:40:40  curt
155 # Added GNU copyright headers.
156 #
157 # Revision 1.2  1997/05/17 00:17:01  curt
158 # Cosmetic changes.
159 #
160 # Revision 1.1  1997/05/16 16:07:02  curt
161 # Initial revision.
162 #