1fa4c88d0e
- automake-1.4 sets default values for INCLUDES which we can't overwrite. - automake-1.5 renames this to DEFAULT_INCLUDES and leaves INCLUDES open for the developer to use. Thus for automake-1.4 we are forced to 'append' to INCLUDES and in automake-1.5 we can just set the value to whatever we like. Unfortunately, the behaviors of the two versions are mutually incompatible. The solution I am committing now works for both versions but automake-1.5 generates a lot of spurious warning messages that are annoying, but not fatal.
26 lines
583 B
Makefile
26 lines
583 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
|
|
|
|
if OLD_AUTOMAKE
|
|
INCLUDES += -I$(top_srcdir) -I$(top_srcdir)/src
|
|
else
|
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src
|
|
endif
|