5b84ae51a5
Dynamics (Sim)ulator. Basically, this is a rough, first cut of a "different take" on FDM design. It's intended to be very simple to use, producing reasonable results for aircraft of all sorts and sizes, while maintaining simulation plausibility even in odd flight conditions like spins and aerobatics. It's at the point now where one can actually fly the planes around.
22 lines
509 B
Makefile
22 lines
509 B
Makefile
SUBDIRS = Balloon JSBSim LaRCsim UIUCModel YASim
|
|
|
|
noinst_LIBRARIES = libFlight.a
|
|
|
|
libFlight_a_SOURCES = \
|
|
ADA.cxx ADA.hxx \
|
|
Balloon.cxx Balloon.h \
|
|
External.cxx External.hxx \
|
|
ExternalNet.cxx ExternalNet.hxx \
|
|
flight.cxx flight.hxx \
|
|
IO360.cxx IO360.hxx \
|
|
JSBSim.cxx JSBSim.hxx \
|
|
LaRCsim.cxx LaRCsim.hxx \
|
|
LaRCsimIC.cxx LaRCsimIC.hxx \
|
|
MagicCarpet.cxx MagicCarpet.hxx \
|
|
NullFDM.cxx NullFDM.hxx
|
|
|
|
bin_PROGRAMS = pstest
|
|
|
|
pstest_SOURCES = ps-10520c.cxx
|
|
|
|
INCLUDES += -I$(top_srcdir) -I$(top_srcdir)/src
|