From c7c55c8edcc2dd2ada3e6060be60aeb3f8a05427 Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Mon, 25 Oct 2010 20:11:23 +0000 Subject: [PATCH] Missing file from the last checkin --- gtsam/Makefile.am | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 gtsam/Makefile.am diff --git a/gtsam/Makefile.am b/gtsam/Makefile.am new file mode 100644 index 000000000..6e4cfd769 --- /dev/null +++ b/gtsam/Makefile.am @@ -0,0 +1,18 @@ + +# All the sub-directories that need to be built +SUBDIRS = base geometry inference linear nonlinear slam + +# And the corresponding libraries produced +SUBLIBS = base/libbase.la geometry/libgeometry.la inference/libinference.la \ + linear/liblinear.la nonlinear/libnonlinear.la slam/libslam.la + +# 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$(CCOLAMDLib) $(BOOST_LDFLAGS) -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