Build only static libraries.
This commit is contained in:
parent
847f5b90d3
commit
1642829438
8 changed files with 16 additions and 30 deletions
|
@ -1,6 +1,5 @@
|
|||
libdir = ${exec_prefix}/lib
|
||||
noinst_LIBRARIES = libAircraft.a
|
||||
|
||||
lib_LTLIBRARIES = libAircraft.la
|
||||
libAircraft_la_SOURCES = aircraft.c aircraft.h
|
||||
libAircraft_a_SOURCES = aircraft.c aircraft.h
|
||||
|
||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
libdir = ${exec_prefix}/lib
|
||||
noinst_LIBRARIES = libAstro.a
|
||||
|
||||
lib_LTLIBRARIES = libAstro.la
|
||||
libAstro_la_SOURCES = \
|
||||
libAstro_a_SOURCES = \
|
||||
moon.cxx moon.hxx \
|
||||
orbits.cxx orbits.hxx \
|
||||
planets.cxx planets.hxx \
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
libdir = ${exec_prefix}/lib
|
||||
noinst_LIBRARIES = libAutopilot.a
|
||||
|
||||
lib_LTLIBRARIES = libAutopilot.la
|
||||
|
||||
libAutopilot_la_SOURCES = autopilot.c autopilot.h
|
||||
libAutopilot_a_SOURCES = autopilot.c autopilot.h
|
||||
|
||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
libdir = ${exec_prefix}/lib
|
||||
noinst_LIBRARIES = libControls.a
|
||||
|
||||
lib_LTLIBRARIES = libControls.la
|
||||
|
||||
libControls_la_SOURCES = controls.c controls.h
|
||||
libControls_a_SOURCES = controls.c controls.h
|
||||
|
||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Simulator
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
SUBDIRS = LaRCsim Slew
|
||||
|
||||
libdir = ${exec_prefix}/lib
|
||||
noinst_LIBRARIES = libFlight.a
|
||||
|
||||
lib_LTLIBRARIES = libFlight.la
|
||||
|
||||
libFlight_la_SOURCES = flight.c flight.h
|
||||
libFlight_a_SOURCES = flight.c flight.h
|
||||
|
||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
libdir = ${exec_prefix}/lib
|
||||
noinst_LIBRARIES = libJoystick.a
|
||||
|
||||
lib_LTLIBRARIES = libJoystick.la
|
||||
|
||||
libJoystick_la_SOURCES = joystick.c joystick.h
|
||||
libJoystick_a_SOURCES = joystick.c joystick.h
|
||||
|
||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
libdir = ${exec_prefix}/lib
|
||||
noinst_LIBRARIES = libLaRCsim.a
|
||||
|
||||
lib_LTLIBRARIES = libLaRCsim.la
|
||||
|
||||
libLaRCsim_la_SOURCES = \
|
||||
libLaRCsim_a_SOURCES = \
|
||||
atmos_62.c atmos_62.h \
|
||||
default_model_routines.c default_model_routines.h \
|
||||
ls_accel.c ls_accel.h \
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
libdir = ${exec_prefix}/lib
|
||||
noinst_LIBRARIES = libSlew.a
|
||||
|
||||
lib_LTLIBRARIES = libSlew.la
|
||||
|
||||
libSlew_la_SOURCES = slew.c slew.h
|
||||
libSlew_a_SOURCES = slew.c slew.h
|
||||
|
||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Simulator
|
||||
|
|
Loading…
Reference in a new issue