b452234cb2
- Airports Directory Thomas Foerster: Pulls out the FGTaxiNode implementation into gnnode.cxx. Melchior / Durk: Copy Constructor and assignment operator for FGTaxiRoute - AIModels Directory Durk / Melchior / Czaba Halasz: Ensure that all derived classes use AIBase member 'callsign'. Adapted, moved and deleted getter/setter functions where necessary Czaba Halasz: Fix AIBase model path vs. submodel path consistency. - Traffic Directory and AIModels CreateFlightPlanCruise DT: Temporary revert parts of the position estimation code.
22 lines
626 B
Makefile
22 lines
626 B
Makefile
noinst_LIBRARIES = libAirports.a
|
|
|
|
noinst_PROGRAMS = calc_loc
|
|
|
|
libAirports_a_SOURCES = \
|
|
apt_loader.cxx apt_loader.hxx \
|
|
runways.cxx runways.hxx \
|
|
simple.cxx simple.hxx \
|
|
runwayprefs.cxx runwayprefs.hxx \
|
|
parking.cxx parking.hxx \
|
|
gnnode.cxx gnnode.hxx \
|
|
groundnetwork.cxx groundnetwork.hxx \
|
|
dynamics.cxx dynamics.hxx \
|
|
trafficcontrol.cxx trafficcontrol.hxx \
|
|
dynamicloader.cxx dynamicloader.hxx \
|
|
runwayprefloader.cxx runwayprefloader.hxx \
|
|
xmlloader.cxx xmlloader.hxx
|
|
|
|
calc_loc_SOURCES = calc_loc.cxx
|
|
calc_loc_LDADD = -lsgmath -lsgdebug -lsgmisc -lz $(base_LIBS)
|
|
|
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src
|