33 lines
1.1 KiB
Makefile
33 lines
1.1 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
|
|
|
|
# For Doxygen integration
|
|
#include aminclude.am
|
|
|
|
# All the sub-directories that need to be built
|
|
SUBDIRS = CppUnitLite gtsam tests examples
|
|
|
|
if ENABLE_BUILD_TOOLBOX
|
|
SUBDIRS += wrap
|
|
endif
|
|
|
|
# Add these files to make sure they're in the distribution
|
|
EXTRA_DIST = autogen.sh configure.ac COPYING INSTALL LGPL LICENSE README THANKS USAGE doc
|
|
|
|
# For Doxygen integration
|
|
#MOSTLYCLEANFILES = $(DX_CLEANFILES)
|
|
#EXTRA_DIST += $(DX_CONFIG)
|
|
|
|
# Remove .svn directories from dist
|
|
dist-hook:
|
|
rm -rf `find $(distdir)/doc -type d -name .svn`
|