52 lines
1.9 KiB
Makefile
52 lines
1.9 KiB
Makefile
#----------------------------------------------------------------------------------------------------
|
|
# GTSAM top-level automake file
|
|
#----------------------------------------------------------------------------------------------------
|
|
|
|
#The option -I m4 tells Autoconf to look for additional Autoconf macros in the m4 subdirectory.
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
# make automake install some standard but missing files
|
|
# also use nostdinc to turn off -I. and -I.., we do not need them because
|
|
# header files are qualified so they can be included in external projects.
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
# All the sub-directories that need to be built
|
|
SUBDIRS = CppUnitLite base geometry inference linear nonlinear slam . tests wrap examples
|
|
|
|
# And the corresponding libraries produced
|
|
SUBLIBS = base/libbase.la geometry/libgeometry.la inference/libinference.la \
|
|
linear/liblinear.la nonlinear/libnonlinear.la slam/libslam.la
|
|
|
|
if USE_LAPACK
|
|
SUBLIBS += -L$(SparseLib) -lcholmod -lspqr
|
|
endif
|
|
|
|
# TODO: UFconfig, CCOLAMD, and LDL automake magic without adding or touching any file
|
|
# in those directories as to not invalidate the LGPL license
|
|
# See some possibilities in
|
|
# http://www.gnu.org/software/hello/manual/automake/Third_002dParty-Makefiles.html
|
|
|
|
# The following lines specify the actual shared library to be built with libtool
|
|
lib_LTLIBRARIES = libgtsam.la
|
|
libgtsam_la_SOURCES =
|
|
nodist_EXTRA_libgtsam_la_SOURCES = dummy.cxx
|
|
libgtsam_la_LIBADD = $(SUBLIBS) -L$(SparseLib) -lccolamd
|
|
libgtsam_la_LDFLAGS = -no-undefined -version-info 0:0:0
|
|
|
|
if USE_ACCELERATE_MACOS
|
|
libgtsam_la_LDFLAGS += -Wl,/System/Library/Frameworks/Accelerate.framework/Accelerate
|
|
endif
|
|
|
|
# Add these files to make sure they're in the distribution
|
|
noinst_HEADERS = gtsam.h
|
|
EXTRA_DIST = autogen.sh configure.ac THANKS
|
|
|
|
# Todo: Also do CppUnitLite with automake
|
|
dist-hook:
|
|
mkdir $(distdir)/config
|
|
mkdir $(distdir)/matlab
|
|
cp -p $(srcdir)/matlab/*.m $(distdir)/matlab
|
|
cp -r $(srcdir)/wrap/expected $(distdir)/wrap
|
|
|
|
|