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
|
CppUnitLitedir = $(pkgincludedir)/CppUnitLite
|
||||||
noinst_LIBRARIES = libCppUnitLite.a
|
noinst_LIBRARIES = libCppUnitLite.a
|
||||||
libCppUnitLite_a_SOURCES = $(sources)
|
libCppUnitLite_a_SOURCES = $(sources)
|
||||||
|
noinst_HEADERS = $(headers)
|
||||||
|
|
|
@ -14,5 +14,4 @@ AUTOMAKE_OPTIONS = foreign nostdinc
|
||||||
SUBDIRS = CppUnitLite gtsam tests examples
|
SUBDIRS = CppUnitLite gtsam tests examples
|
||||||
|
|
||||||
# Add these files to make sure they're in the distribution
|
# 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
|
# 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
|
sources += Vector.cpp svdcmp.cpp Matrix.cpp
|
||||||
check_PROGRAMS += tests/testFixedVector tests/testVector tests/testMatrix
|
check_PROGRAMS += tests/testFixedVector tests/testVector tests/testMatrix
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,8 @@ check_PROGRAMS += tests/testGaussianJunctionTree
|
||||||
# Iterative Methods
|
# Iterative Methods
|
||||||
headers += iterative-inl.h
|
headers += iterative-inl.h
|
||||||
sources += iterative.cpp SubgraphPreconditioner.cpp
|
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
|
#sources += iterative.cpp BayesNetPreconditioner.cpp SubgraphPreconditioner.cpp
|
||||||
#check_PROGRAMS += tests/testBayesNetPreconditioner
|
#check_PROGRAMS += tests/testBayesNetPreconditioner
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue