d9bfd5a425
SimGear change. It changes all the SG_xxxx to be the 'real' includes, and gets rid of many #ifdef SG_HAVE_STD_INCLUDES. As an added bonus, rather than replacing 'SG_USING_NAMESPACE(std)' with 'using namespace std', I just fixed the small number of places to use std:: explicitly. So we're no longer polluting the global namespace with the entire contents of std, in many cases. There is one more 'mechanical' change to come - getting rid of SG_USING_STD(X), but I want to keep that separate from everything else. (There's another mechnical change, replacing <math.h> with <cmath> and so on *everywhere*, but one step at a time)
18 lines
347 B
Makefile
18 lines
347 B
Makefile
if ENABLE_SP_FDM
|
|
SP_DIR = SP
|
|
else
|
|
SP_DIR =
|
|
endif
|
|
|
|
SUBDIRS = JSBSim LaRCsim UIUCModel YASim \
|
|
$(SP_DIR) ExternalNet ExternalPipe
|
|
|
|
noinst_LIBRARIES = libFlight.a
|
|
|
|
libFlight_a_SOURCES = \
|
|
flight.cxx flight.hxx \
|
|
groundcache.cxx groundcache.hxx \
|
|
UFO.cxx UFO.hxx \
|
|
NullFDM.cxx NullFDM.hxx
|
|
|
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src
|