Automake adds all kinds of subdirectories to -I, the list of directories
to be searched for header files. However, CLN's header files are not
supposed to be included without the cln/ subdirectory, so adding
-Iinclude/cln can lead to conflicts with other header files. (The
problem at hand was a conflict between CLN's string.h and the C
library's string.h).
timebench2b_LDADD = ../src/libcln.la
AM_CPPFLAGS = -I../include -I$(top_srcdir)/include
+DEFAULT_INCLUDES = -I.@am__isrc@
EXTRA_DIST = README bench2.txt timebench2.sh
AM_CPPFLAGS = -I../include -I$(top_srcdir)/include
+DEFAULT_INCLUDES = -I.@am__isrc@
lib_LTLIBRARIES = libcln.la
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src -I$(top_builddir)/include -I$(top_builddir)/src
+DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/autoconf
libcln_la_LDFLAGS = -version-info $(LT_VERSION_INFO)
libcln_la_SOURCES = \
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \
-I$(top_builddir)/include -I$(top_builddir)/src
+DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/autoconf
exam_SOURCES = exam.h exam.cc \