1
0
Fork 0
flightgear/Main/Makefile.am
curt 65cc9a9e66 C++ - ified views.[ch]xx
Shuffled some additional view parameters into the fgVIEW class.
Changed tile-radius to tile-diameter because it is a much better
  name.
Added a WORLD_TO_EYE transformation to views.cxx.  This allows us
 to transform world space to eye space for view frustum culling.
1998-05-16 13:08:34 +00:00

42 lines
1.2 KiB
Makefile

EXTRA_DIST = runfg.in runfg.bat.in
bin_PROGRAMS = fg ttest
bin_SCRIPTS = runfg runfg.bat
fg_SOURCES = \
GLUTkey.cxx GLUTkey.hxx \
GLUTmain.cxx \
airports.cxx airports.hxx \
fg_config.h \
fg_init.cxx fg_init.hxx \
options.cxx options.hxx \
views.cxx views.hxx
fg_LDADD = \
$(top_builddir)/Simulator/Aircraft/libAircraft.la \
$(top_builddir)/Simulator/Astro/libAstro.la \
$(top_builddir)/Simulator/Autopilot/libAutopilot.la \
$(top_builddir)/Simulator/Cockpit/libCockpit.la \
$(top_builddir)/Simulator/Controls/libControls.la \
$(top_builddir)/Simulator/Flight/libFlight.la \
$(top_builddir)/Simulator/Flight/LaRCsim/libLaRCsim.la \
$(top_builddir)/Simulator/Flight/Slew/libSlew.la \
$(top_builddir)/Simulator/Scenery/libScenery.la \
$(top_builddir)/Simulator/Time/libTime.la \
$(top_builddir)/Simulator/Weather/libWeather.la \
$(top_builddir)/Simulator/Joystick/libJoystick.la \
$(top_builddir)/Lib/Math/libMath.la \
$(top_builddir)/Lib/Bucket/libBucket.la \
$(top_builddir)/Lib/Debug/libDebug.la \
$(top_builddir)/Lib/zlib/libz.la
ttest_SOURCES = ttest.cxx
ttest_LDADD = $(top_builddir)/Lib/Math/libMath.la \
INCLUDES += \
-DGLUT \
-I$(top_builddir) \
-I$(top_builddir)/Lib \
-I$(top_builddir)/Simulator