commit 3f4f97cf2d423cd0281823604a651dc0820148aa parent f780dd64ec440bf2f7b56f26cb90ab6255cb2950 Author: Thorsten Maerz <info@netztorte.de> Date: Fri, 30 Apr 2021 15:44:25 +0200 Allow compilation from outside source directory The autogenerated files (matcher_parser_*, quote_fmt_*) are created in builddir (not in srcdir). Updated IFLAGS (include paths), so these files are found. Diffstat:
11 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/src/plugins/address_keeper/Makefile.am b/src/plugins/address_keeper/Makefile.am @@ -6,6 +6,7 @@ EXTRA_DIST = claws.def plugin.def version.rc IFLAGS = \ + -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/common \ -I$(top_builddir)/src/common \ diff --git a/src/plugins/att_remover/Makefile.am b/src/plugins/att_remover/Makefile.am @@ -6,6 +6,7 @@ EXTRA_DIST = claws.def plugin.def version.rc IFLAGS = \ + -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/common \ -I$(top_builddir)/src/common \ diff --git a/src/plugins/attachwarner/Makefile.am b/src/plugins/attachwarner/Makefile.am @@ -6,6 +6,7 @@ EXTRA_DIST = claws.def plugin.def version.rc IFLAGS = \ + -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/common \ -I$(top_builddir)/src/common \ diff --git a/src/plugins/gdata/Makefile.am b/src/plugins/gdata/Makefile.am @@ -23,6 +23,7 @@ gdata_la_LDFLAGS = \ $(GDATA_LIBS) gdata_la_CPPFLAGS = \ + -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/common \ -I$(top_builddir)/src/common \ diff --git a/src/plugins/libravatar/Makefile.am b/src/plugins/libravatar/Makefile.am @@ -6,6 +6,7 @@ EXTRA_DIST = claws.def plugin.def version.rc IFLAGS = \ + -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/common \ -I$(top_builddir)/src/common \ diff --git a/src/plugins/managesieve/Makefile.am b/src/plugins/managesieve/Makefile.am @@ -6,6 +6,7 @@ EXTRA_DIST = claws.def plugin.def version.rc IFLAGS = \ + -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/common \ -I$(top_builddir)/src/common \ diff --git a/src/plugins/pdf_viewer/Makefile.am b/src/plugins/pdf_viewer/Makefile.am @@ -19,6 +19,7 @@ pdf_viewer_la_LDFLAGS = \ $(POPPLER_LIBS) pdf_viewer_la_CPPFLAGS = \ + -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/common \ -I$(top_builddir)/src/common \ diff --git a/src/plugins/pgpcore/Makefile.am b/src/plugins/pgpcore/Makefile.am @@ -11,6 +11,7 @@ endif EXTRA_DIST = version.rc plugin.def claws.def IFLAGS = \ + -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/common \ -I$(top_builddir)/src/common \ diff --git a/src/plugins/pgpmime/Makefile.am b/src/plugins/pgpmime/Makefile.am @@ -6,6 +6,7 @@ EXTRA_DIST = version.rc plugin.def claws.def mypgpcore.def pgpmime.deps IFLAGS = \ + -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/common \ -I$(top_builddir)/src/common \ diff --git a/src/plugins/smime/Makefile.am b/src/plugins/smime/Makefile.am @@ -6,6 +6,7 @@ EXTRA_DIST = version.rc plugin.def claws.def mypgpcore.def smime.deps IFLAGS = \ + -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/common \ -I$(top_builddir)/src/common \ diff --git a/src/plugins/vcalendar/Makefile.am b/src/plugins/vcalendar/Makefile.am @@ -6,6 +6,7 @@ EXTRA_DIST = claws.def plugin.def version.rc IFLAGS = \ + -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/common \ -I$(top_builddir)/src/common \