2006-11-28 05:35:37 +08:00
|
|
|
# Make Autoconf-related libraries.
|
2001-07-24 16:43:06 +08:00
|
|
|
|
2010-01-06 11:59:55 +08:00
|
|
|
# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2009, 2010 Free Software
|
2009-02-25 00:27:15 +08:00
|
|
|
# Foundation, Inc.
|
2006-11-28 05:35:37 +08:00
|
|
|
|
2007-07-21 07:11:49 +08:00
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2006-11-28 05:35:37 +08:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-21 07:11:49 +08:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
2006-11-28 05:35:37 +08:00
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-07-21 07:11:49 +08:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-02-05 16:24:06 +08:00
|
|
|
|
2001-09-28 19:56:26 +08:00
|
|
|
SUBDIRS = Autom4te m4sugar autoconf autotest autoscan emacs
|
2001-08-29 17:52:49 +08:00
|
|
|
nodist_pkgdata_DATA = autom4te.cfg
|
2002-02-05 16:24:06 +08:00
|
|
|
EXTRA_DIST = autom4te.in freeze.mk
|
2001-08-29 17:52:49 +08:00
|
|
|
|
|
|
|
edit = sed \
|
2005-03-23 09:01:58 +08:00
|
|
|
-e 's|@SHELL[@]|$(SHELL)|g' \
|
|
|
|
-e 's|@PERL[@]|$(PERL)|g' \
|
|
|
|
-e 's|@bindir[@]|$(bindir)|g' \
|
2009-02-25 00:27:15 +08:00
|
|
|
-e 's|@pkgdatadir[@]|$(pkgdatadir)|g' \
|
2005-03-23 09:01:58 +08:00
|
|
|
-e 's|@prefix[@]|$(prefix)|g' \
|
|
|
|
-e 's|@autoconf-name[@]|'`echo autoconf | sed '$(transform)'`'|g' \
|
|
|
|
-e 's|@autoheader-name[@]|'`echo autoheader | sed '$(transform)'`'|g' \
|
|
|
|
-e 's|@autom4te-name[@]|'`echo autom4te | sed '$(transform)'`'|g' \
|
|
|
|
-e 's|@M4[@]|$(M4)|g' \
|
|
|
|
-e 's|@AWK[@]|$(AWK)|g' \
|
|
|
|
-e 's|@VERSION[@]|$(VERSION)|g' \
|
|
|
|
-e 's|@PACKAGE_NAME[@]|$(PACKAGE_NAME)|g'
|
2001-08-29 17:52:49 +08:00
|
|
|
|
2003-06-25 21:38:54 +08:00
|
|
|
# All the files below depend on Makefile so that they are rebuilt
|
|
|
|
# when the prefix, etc. changes. Unfortunately, suffix rules
|
2001-08-29 17:52:49 +08:00
|
|
|
# cannot have additional dependencies, so we have to use explicit rules.
|
2001-08-31 21:36:31 +08:00
|
|
|
CLEANFILES = autom4te.cfg
|
2003-06-25 21:38:54 +08:00
|
|
|
autom4te.cfg: $(srcdir)/autom4te.in Makefile
|
2001-08-29 17:52:49 +08:00
|
|
|
rm -f autom4te.cfg autom4te.tmp
|
|
|
|
$(edit) $(srcdir)/autom4te.in >autom4te.tmp
|
2004-01-05 16:18:24 +08:00
|
|
|
chmod a-w autom4te.tmp
|
2001-08-29 17:52:49 +08:00
|
|
|
mv autom4te.tmp autom4te.cfg
|