1998-11-16 13:59:58 +00:00
|
|
|
if ENABLE_UNIX_SERIAL
|
2000-02-15 03:30:01 +00:00
|
|
|
SERIAL_LIBS = -lsgserial
|
1998-11-16 13:59:58 +00:00
|
|
|
else
|
|
|
|
SERIAL_LIBS =
|
|
|
|
endif
|
|
|
|
|
1999-10-14 20:30:54 +00:00
|
|
|
if ENABLE_OLD_WEATHER
|
2000-02-15 03:30:01 +00:00
|
|
|
WEATHER_LIBS = $(top_builddir)/src/Weather/libWeather.a
|
1999-10-14 20:30:54 +00:00
|
|
|
else
|
2000-02-15 03:30:01 +00:00
|
|
|
WEATHER_LIBS = $(top_builddir)/src/WeatherCM/libWeatherCM.a
|
2000-01-12 18:09:35 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
if ENABLE_NETWORK_OLK
|
|
|
|
NETWORK_LIBS = \
|
2000-02-15 03:30:01 +00:00
|
|
|
$(top_builddir)/src/Network/libNetwork.a \
|
|
|
|
$(top_builddir)/src/NetworkOLK/libNetworkOLK.a
|
2000-01-12 18:09:35 +00:00
|
|
|
else
|
|
|
|
NETWORK_LIBS = \
|
2000-02-15 03:30:01 +00:00
|
|
|
$(top_builddir)/src/Network/libNetwork.a
|
1999-08-12 17:13:44 +00:00
|
|
|
endif
|
|
|
|
|
1999-10-30 04:27:21 +00:00
|
|
|
if OLD_AUTOMAKE
|
|
|
|
CXXFLAGS += -DPKGLIBDIR=\"$(pkglibdir)\"
|
|
|
|
else
|
1999-10-30 02:37:56 +00:00
|
|
|
AM_CXXFLAGS = -DPKGLIBDIR=\"$(pkglibdir)\"
|
1999-10-30 04:27:21 +00:00
|
|
|
endif
|
1999-06-04 20:35:47 +00:00
|
|
|
|
1999-04-19 20:19:36 +00:00
|
|
|
EXTRA_DIST = 3dfx.sh runfgfs.in runfgfs.bat.in
|
1998-04-03 22:09:02 +00:00
|
|
|
|
1998-08-24 20:33:48 +00:00
|
|
|
bin_PROGRAMS = fgfs
|
1998-04-03 22:09:02 +00:00
|
|
|
|
2000-09-14 17:36:39 +00:00
|
|
|
noinst_SCRIPTS = runfgfs runfgfs.bat
|
|
|
|
|
|
|
|
bin_SCRIPTS = runfgfs
|
1998-04-03 22:09:02 +00:00
|
|
|
|
1998-08-24 20:33:48 +00:00
|
|
|
fgfs_SOURCES = \
|
2000-04-24 23:51:26 +00:00
|
|
|
main.cxx \
|
2000-02-26 18:01:13 +00:00
|
|
|
bfi.cxx bfi.hxx \
|
1998-04-22 13:25:39 +00:00
|
|
|
fg_init.cxx fg_init.hxx \
|
1999-11-19 02:10:24 +00:00
|
|
|
fg_io.cxx fg_io.hxx \
|
2000-07-07 17:27:37 +00:00
|
|
|
globals.cxx globals.hxx \
|
1999-06-18 03:42:54 +00:00
|
|
|
keyboard.cxx keyboard.hxx \
|
1998-04-24 00:49:17 +00:00
|
|
|
options.cxx options.hxx \
|
2000-02-11 22:27:23 +00:00
|
|
|
save.cxx save.hxx \
|
1998-07-06 02:42:02 +00:00
|
|
|
splash.cxx splash.hxx \
|
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:
a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches - main.cxx
ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.
flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD
Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
code.
hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.
options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows
options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.
views.cxx
---------
Added code to retrieve view offset for window.
Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.
2000-10-19 19:46:13 +00:00
|
|
|
viewer.cxx viewer.hxx
|
1998-04-08 23:32:28 +00:00
|
|
|
|
1998-08-24 20:33:48 +00:00
|
|
|
fgfs_LDADD = \
|
2000-02-15 03:30:01 +00:00
|
|
|
$(top_builddir)/src/Aircraft/libAircraft.a \
|
|
|
|
$(top_builddir)/src/Autopilot/libAutopilot.a \
|
|
|
|
$(top_builddir)/src/Cockpit/libCockpit.a \
|
|
|
|
$(top_builddir)/src/Controls/libControls.a \
|
|
|
|
$(top_builddir)/src/FDM/libFlight.a \
|
|
|
|
$(top_builddir)/src/FDM/Balloon/libBalloon.a \
|
2000-07-24 17:27:12 +00:00
|
|
|
$(top_builddir)/src/FDM/JSBSim/libJSBSim.a \
|
|
|
|
$(top_builddir)/src/FDM/JSBSim/filtersjb/libfiltersjb.a \
|
2000-02-15 03:30:01 +00:00
|
|
|
$(top_builddir)/src/FDM/LaRCsim/libLaRCsim.a \
|
2000-03-22 22:01:33 +00:00
|
|
|
$(top_builddir)/src/FDM/UIUCModel/libUIUCModel.a \
|
2000-02-15 03:30:01 +00:00
|
|
|
$(top_builddir)/src/GUI/libGUI.a \
|
2000-04-24 23:51:26 +00:00
|
|
|
$(top_builddir)/src/Navaids/libNavaids.a \
|
2000-02-15 03:30:01 +00:00
|
|
|
$(top_builddir)/src/Scenery/libScenery.a \
|
|
|
|
$(top_builddir)/src/Airports/libAirports.a \
|
2000-01-12 18:09:35 +00:00
|
|
|
$(NETWORK_LIBS) \
|
2000-02-15 03:30:01 +00:00
|
|
|
$(top_builddir)/src/Objects/libObjects.a \
|
|
|
|
$(top_builddir)/src/Time/libTime.a \
|
1999-08-12 17:13:44 +00:00
|
|
|
$(WEATHER_LIBS) \
|
2000-02-15 03:30:01 +00:00
|
|
|
$(top_builddir)/src/Joystick/libJoystick.a \
|
2000-10-11 00:18:26 +00:00
|
|
|
-lsgroute -lsgsky -lsgephem -lsgtiming -lsgio -lsgscreen -lsgmath \
|
|
|
|
-lsgbucket -lsgdebug -lsgmagvar -lsgmisc -lsgxml \
|
2000-07-11 20:40:12 +00:00
|
|
|
$(SERIAL_LIBS) \
|
2000-02-04 22:50:04 +00:00
|
|
|
-lplibpu -lplibfnt -lplibssg -lplibsg \
|
2000-05-27 05:54:02 +00:00
|
|
|
-lmk4 -lz \
|
1999-06-24 20:38:31 +00:00
|
|
|
$(opengl_LIBS) \
|
|
|
|
$(audio_LIBS)
|
|
|
|
|
2000-09-20 23:27:25 +00:00
|
|
|
INCLUDES += -I$(top_srcdir) -I$(top_srcdir)/src
|