Missing file from the last checkin

release/4.3a0
Richard Roberts 2010-10-25 20:11:23 +00:00
parent 2c90e3d836
commit c7c55c8edc
1 changed files with 18 additions and 0 deletions

18
gtsam/Makefile.am Normal file
View File

@ -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