From c125e0caf25bb5ae60d994f91f66cbb3ae1a2fc3 Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Sun, 24 Nov 2024 19:03:28 +0000 Subject: [PATCH] Makefile.am: include common eu.am definitions Some definitions in Makefile.am can be moved to the common definitions in config/eu.am, but for them to apply to the top-level Makefile after moving, eu.am must be added as an include statement. Except for "CLEANFILES", handled in the next commit, there are no definitions in eu.am that are defined in Makefile.am, so there are no other conflicts or overrides between the two. Signed-off-by: Michael Pratt --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.am b/Makefile.am index 92130b57..9a8e5a52 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,6 +18,8 @@ ## You should have received a copy of the GNU General Public License ## along with this program. If not, see . ## +include $(top_srcdir)/config/eu.am + ACLOCAL_AMFLAGS = -I m4 # automake already tells which subdir is being entered. -- 2.47.2