8f3aa1bebd
the aircraft parameters from a file. It still uses Tony's <crappy> (and I mean that in a constructive way) gear model. :-)
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
EXTRA_DIST = \
|
|
c172_aero.c c172_aero.h \
|
|
c172_engine.c \
|
|
c172_gear.c \
|
|
c172_init.c \
|
|
navion_init.h \
|
|
uiuc_aero.c
|
|
|
|
if ENABLE_NAVION
|
|
NAVION_MODEL = \
|
|
navion_aero.c navion_engine.c navion_gear.c navion_init.c navion_init.h
|
|
else
|
|
NAVION_MODEL =
|
|
endif
|
|
|
|
if ENABLE_C172
|
|
C172_MODEL = c172_aero.c c172_engine.c c172_gear.c c172_init.c navion_init.h
|
|
else
|
|
C172_MODEL =
|
|
endif
|
|
|
|
if ENABLE_UIUC
|
|
UIUC_MODEL = uiuc_aero.c c172_init.c navion_init.h
|
|
else
|
|
UIUC_MODEL =
|
|
endif
|
|
|
|
# AIRCRAFT_MODEL = cherokee_aero.c cherokee_engine.c cherokee_gear.c cherokee_init.c navion_init.h
|
|
|
|
noinst_LIBRARIES = libLaRCsim.a
|
|
|
|
libLaRCsim_a_SOURCES = \
|
|
atmos_62.c atmos_62.h \
|
|
default_model_routines.c default_model_routines.h \
|
|
ls_accel.c ls_accel.h \
|
|
ls_aux.c ls_aux.h \
|
|
ls_cockpit.h ls_constants.h ls_generic.h \
|
|
ls_geodesy.c ls_geodesy.h \
|
|
ls_gravity.c ls_gravity.h \
|
|
ls_init.c ls_init.h \
|
|
ls_matrix.c ls_matrix.h \
|
|
ls_model.c ls_model.h \
|
|
ls_sim_control.h \
|
|
ls_step.c ls_step.h \
|
|
ls_sym.h ls_types.h \
|
|
$(NAVION_MODEL) $(C172_MODEL) $(UIUC_MODEL) \
|
|
ls_interface.c ls_interface.h
|
|
|
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/src
|