]> git.mxchange.org Git - flightgear.git/blob - src/FDM/YASim/Makefile.am
2d4e557ae1b68c8f8bee1ad7f98aa45bd990fc00
[flightgear.git] / src / FDM / YASim / Makefile.am
1 # Link the yasim executable against the individual object files rather
2 # than libYASim.  The library references other stuff in FlightGear,
3 # and some linkers (Irix) do dependency checks per-library instead of
4 # per-object.
5 #
6 # I think that it's permissible to list the same source files more
7 # than once in a Makefile.am.  Hopefully this doesn't break anything.
8
9 SHARED_SOURCE_FILES = \
10         Airplane.cpp Airplane.hpp \
11         Atmosphere.cpp Atmosphere.hpp \
12         BodyEnvironment.hpp \
13         ControlMap.cpp ControlMap.hpp \
14         FGFDM.cpp FGFDM.hpp \
15         Gear.cpp Gear.hpp \
16         Glue.cpp Glue.hpp \
17         Integrator.cpp Integrator.hpp \
18         Jet.cpp Jet.hpp \
19         Math.cpp Math.hpp \
20         Model.cpp Model.hpp \
21         PistonEngine.cpp PistonEngine.hpp \
22         PropEngine.cpp PropEngine.hpp \
23         Propeller.cpp Propeller.hpp \
24         RigidBody.cpp RigidBody.hpp \
25         Rotor.cpp Rotor.hpp \
26         Rotorblade.cpp Rotorblade.hpp \
27         Rotorpart.cpp Rotorpart.hpp \
28         SimpleJet.cpp SimpleJet.hpp \
29         Surface.cpp Surface.hpp \
30         Thruster.cpp Thruster.hpp \
31         Vector.hpp \
32         Wing.cpp Wing.hpp \
33         Turbulence.cpp Turbulence.hpp
34
35 noinst_LIBRARIES = libYASim.a
36
37 libYASim_a_SOURCES = YASim.cxx YASim.hxx $(SHARED_SOURCE_FILES)
38
39 bin_PROGRAMS = yasim
40
41 yasim_SOURCES = yasim-test.cpp $(SHARED_SOURCE_FILES)
42
43 yasim_LDADD = -lsgxml -lsgprops -lsgmisc -lsgdebug -lsgstructure  $(base_LIBS)
44
45 INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src