From 9b10150c17b02bfcb21dd21269a71db8b45ceb37 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 11 Dec 2007 17:02:05 +0100 Subject: Move Automake substitution code into a separate file. * substitute.am: New. * src/Makefile.am (substitute, SUFFIXES): Moved in the above file. --- substitute.am | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 substitute.am (limited to 'substitute.am') diff --git a/substitute.am b/substitute.am new file mode 100644 index 0000000..e0e5c00 --- /dev/null +++ b/substitute.am @@ -0,0 +1,15 @@ +# Automake/Autoconf substitutions. + +substitute = sed -e 's,[@]guilemoduledir[@],$(guilemoduledir),g' \ + -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \ + -e 's,[@]abs_top_builddir[@],$(abs_top_builddir),g' \ + -e 's,[@]prefix[@],$(prefix),g' \ + -e 's,[@]docdir[@],$(docdir),g' \ + -e 's,[@]emacsdir[@],$(emacsdir),g' \ + -e 's,[@]GUILE[@],$(GUILE),g' \ + -e 's,[@]PACKAGE_STRING[@],$(PACKAGE_STRING),g' \ + -e 's,[@]PACKAGE_NAME[@],$(PACKAGE_NAME),g' \ + -e 's,[@]PACKAGE_VERSION[@],$(PACKAGE_VERSION),g' \ + -e 's,[@]PACKAGE_BUGREPORT[@],$(PACKAGE_BUGREPORT),g' + +SUFFIXES = .in -- cgit v1.2.3