Fixed a few problems in Makefile.am's so that 'make dist' works to build a distribution tarball
parent
e8422a22e3
commit
c157b6faa0
|
@ -10,3 +10,4 @@ headers += $(sources:.cpp=.h)
|
|||
CppUnitLitedir = $(pkgincludedir)/CppUnitLite
|
||||
noinst_LIBRARIES = libCppUnitLite.a
|
||||
libCppUnitLite_a_SOURCES = $(sources)
|
||||
noinst_HEADERS = $(headers)
|
||||
|
|
|
@ -14,5 +14,4 @@ AUTOMAKE_OPTIONS = foreign nostdinc
|
|||
SUBDIRS = CppUnitLite gtsam tests examples
|
||||
|
||||
# Add these files to make sure they're in the distribution
|
||||
EXTRA_DIST = autogen.sh configure.ac THANKS
|
||||
|
||||
EXTRA_DIST = autogen.sh configure.ac COPYING INSTALL LGPL LICENSE README THANKS USAGE
|
||||
|
|
|
@ -13,7 +13,7 @@ check_PROGRAMS =
|
|||
|
||||
# base Math
|
||||
|
||||
headers += FixedVector.h types.h blockMatrices.h
|
||||
headers += FixedVector.h types.h blockMatrices.h Matrix-inl.h
|
||||
sources += Vector.cpp svdcmp.cpp Matrix.cpp
|
||||
check_PROGRAMS += tests/testFixedVector tests/testVector tests/testMatrix
|
||||
|
||||
|
|
|
@ -36,7 +36,8 @@ check_PROGRAMS += tests/testGaussianJunctionTree
|
|||
# Iterative Methods
|
||||
headers += iterative-inl.h
|
||||
sources += iterative.cpp SubgraphPreconditioner.cpp
|
||||
#headers += iterative-inl.h SubgraphSolver.h SubgraphSolver-inl.h
|
||||
headers += IterativeOptimizationParameters.h IterativeSolver.h ConjugateGradientSolver.h ConjugateGradientSolver-inl.h
|
||||
headers += SubgraphSolver.h SubgraphSolver-inl.h
|
||||
#sources += iterative.cpp BayesNetPreconditioner.cpp SubgraphPreconditioner.cpp
|
||||
#check_PROGRAMS += tests/testBayesNetPreconditioner
|
||||
|
||||
|
|
Loading…
Reference in New Issue