1993-06-07 19:00:55 +08:00
|
|
|
# Makefile for Autoconf.
|
1994-04-30 09:47:37 +08:00
|
|
|
# Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
|
1993-06-07 19:00:55 +08:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
|
|
|
|
# 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
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
#### Start of system configuration section. ####
|
|
|
|
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
MAKEINFO = makeinfo
|
1993-07-20 10:07:49 +08:00
|
|
|
TEXI2DVI = texi2dvi
|
1993-10-09 23:08:50 +08:00
|
|
|
M4 = @M4@
|
1994-04-30 09:56:30 +08:00
|
|
|
|
1994-08-31 02:42:54 +08:00
|
|
|
# Programs that are always installed.
|
|
|
|
APROGS = autoconf autoheader autoreconf autoupdate ifnames
|
|
|
|
PROGS = $(APROGS) @PROGS@
|
1994-04-30 09:47:37 +08:00
|
|
|
# Path of the perl interpreter.
|
|
|
|
PERL = @PERL@
|
1993-06-07 19:00:55 +08:00
|
|
|
|
1994-05-25 09:22:04 +08:00
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
1993-06-07 19:00:55 +08:00
|
|
|
|
1993-07-09 09:22:48 +08:00
|
|
|
# Directory in which to install scripts.
|
1993-06-07 19:00:55 +08:00
|
|
|
bindir = $(exec_prefix)/bin
|
|
|
|
|
1993-07-09 09:22:48 +08:00
|
|
|
# Directory in which to install library files.
|
1993-06-07 19:00:55 +08:00
|
|
|
datadir = $(prefix)/lib
|
1994-03-24 14:20:44 +08:00
|
|
|
acdatadir = $(datadir)/autoconf
|
1993-06-07 19:00:55 +08:00
|
|
|
|
|
|
|
# Directory in which to install documentation info files.
|
|
|
|
infodir = $(prefix)/info
|
|
|
|
|
|
|
|
#### End of system configuration section. ####
|
|
|
|
|
|
|
|
SHELL = /bin/sh
|
|
|
|
|
1994-07-25 11:33:46 +08:00
|
|
|
SUBDIRS = testsuite
|
1994-08-31 02:42:54 +08:00
|
|
|
|
1994-08-31 04:24:50 +08:00
|
|
|
M4FILES = autoconf.m4 acgeneral.m4 acoldnames.m4 acspecific.m4 autoheader.m4
|
1994-08-31 02:42:54 +08:00
|
|
|
|
1994-05-03 07:47:13 +08:00
|
|
|
# Files that can be generated, but should be up to date for a distribution.
|
|
|
|
DISTDEP = info Makefile
|
1994-04-30 09:47:37 +08:00
|
|
|
# Files to distribute.
|
1994-08-26 09:15:45 +08:00
|
|
|
DISTFILES = COPYING ChangeLog ChangeLog.1 INSTALL \
|
1994-08-31 02:42:54 +08:00
|
|
|
Makefile.in NEWS README TODO $(M4FILES) \
|
|
|
|
acconfig.h acfunctions acheaders acidentifiers \
|
|
|
|
acmakevars acprograms autoconf.info* \
|
|
|
|
autoconf.sh autoconf.texi install.texi \
|
1994-08-24 14:41:01 +08:00
|
|
|
autoheader.sh autoreconf.sh autoscan.pl autoupdate.sh ifnames.sh \
|
1994-04-30 09:47:37 +08:00
|
|
|
config.guess config.sub configure configure.in \
|
1994-09-11 14:20:58 +08:00
|
|
|
install-sh mkinstalldirs texinfo.tex \
|
1994-07-19 22:44:16 +08:00
|
|
|
testsuite/Makefile.in testsuite/config/*.exp \
|
1994-07-20 06:14:03 +08:00
|
|
|
testsuite/lib/*.exp testsuite/autoconf.[gs]/*.exp \
|
1994-05-03 07:47:13 +08:00
|
|
|
standards.texi make-stds.texi standards.info*
|
1993-06-07 19:00:55 +08:00
|
|
|
|
1994-03-24 14:20:44 +08:00
|
|
|
editsh = sed -e 's,@''datadir''@,$(acdatadir),g' -e 's,@''M4''@,$(M4),g'
|
1994-04-30 09:47:37 +08:00
|
|
|
editpl = sed -e 's,@''datadir''@,$(acdatadir),g' -e 's,@''PERL''@,$(PERL),g'
|
1993-06-07 19:00:55 +08:00
|
|
|
|
1994-04-30 09:56:30 +08:00
|
|
|
all: ${PROGS}
|
1993-07-09 09:22:48 +08:00
|
|
|
|
1993-06-07 19:00:55 +08:00
|
|
|
autoconf: autoconf.sh
|
1994-04-01 00:34:43 +08:00
|
|
|
rm -f $@ $@.tmp
|
|
|
|
$(editsh) $(srcdir)/autoconf.sh > $@.tmp && mv $@.tmp $@ && chmod +x $@
|
1993-07-09 09:22:48 +08:00
|
|
|
|
1993-06-07 19:00:55 +08:00
|
|
|
autoheader: autoheader.sh
|
1994-04-01 00:34:43 +08:00
|
|
|
rm -f $@ $@.tmp
|
|
|
|
$(editsh) $(srcdir)/autoheader.sh > $@.tmp && mv $@.tmp $@ && chmod +x $@
|
1993-06-07 19:00:55 +08:00
|
|
|
|
1994-04-30 09:47:37 +08:00
|
|
|
autoreconf: autoreconf.sh
|
|
|
|
rm -f $@ $@.tmp
|
|
|
|
$(editsh) $(srcdir)/autoreconf.sh > $@.tmp && mv $@.tmp $@ && chmod +x $@
|
1993-07-20 10:07:49 +08:00
|
|
|
|
1994-08-01 21:44:22 +08:00
|
|
|
autoupdate: autoupdate.sh
|
|
|
|
rm -f $@ $@.tmp
|
|
|
|
$(editsh) $(srcdir)/autoupdate.sh > $@.tmp && mv $@.tmp $@ && chmod +x $@
|
|
|
|
|
1994-07-19 22:44:16 +08:00
|
|
|
ifnames: ifnames.sh
|
|
|
|
rm -f $@ $@.tmp
|
|
|
|
$(editsh) $(srcdir)/ifnames.sh > $@.tmp && mv $@.tmp $@ && chmod +x $@
|
|
|
|
|
1994-04-30 09:47:37 +08:00
|
|
|
autoscan: autoscan.pl
|
|
|
|
rm -f $@ $@.tmp
|
|
|
|
$(editpl) $(srcdir)/autoscan.pl > $@.tmp && mv $@.tmp $@ && chmod +x $@
|
1993-07-09 09:22:48 +08:00
|
|
|
|
1994-07-19 22:44:16 +08:00
|
|
|
info: autoconf.info @standards_info@ INSTALL
|
1993-06-07 19:00:55 +08:00
|
|
|
|
1994-07-19 22:44:16 +08:00
|
|
|
autoconf.info: autoconf.texi install.texi
|
1994-04-30 09:47:37 +08:00
|
|
|
$(MAKEINFO) -I$(srcdir) $(srcdir)/autoconf.texi --output=$@
|
1993-07-20 10:07:49 +08:00
|
|
|
|
1994-07-19 22:44:16 +08:00
|
|
|
INSTALL: install.texi
|
|
|
|
$(MAKEINFO) -I$(srcdir) $(srcdir)/install.texi --output=$@ \
|
|
|
|
--no-headers --no-validate
|
|
|
|
|
1994-05-03 07:47:13 +08:00
|
|
|
standards.info: standards.texi make-stds.texi
|
|
|
|
$(MAKEINFO) -I$(srcdir) $(srcdir)/standards.texi --output=$@
|
|
|
|
|
|
|
|
dvi: autoconf.dvi @standards_dvi@
|
1993-07-20 10:07:49 +08:00
|
|
|
|
1994-04-30 09:47:37 +08:00
|
|
|
autoconf.dvi: autoconf.texi
|
1994-05-03 07:47:13 +08:00
|
|
|
$(TEXI2DVI) $(srcdir)/autoconf.texi
|
|
|
|
|
|
|
|
standards.dvi: standards.texi make-stds.texi
|
|
|
|
$(TEXI2DVI) $(srcdir)/standards.texi
|
1993-07-20 10:07:49 +08:00
|
|
|
|
1994-07-19 22:44:16 +08:00
|
|
|
check: all
|
|
|
|
rootme=`pwd`; cd testsuite && ${MAKE} $@ AUTOCONF=$$rootme/autoconf \
|
|
|
|
AUTOCONFFLAGS="-m $$rootme"
|
|
|
|
installcheck: all install
|
|
|
|
cd testsuite && ${MAKE} AUTOCONF=${bindir}/autoconf $@
|
1993-06-07 19:00:55 +08:00
|
|
|
|
1994-05-06 12:04:40 +08:00
|
|
|
installdirs:
|
1994-03-24 14:20:44 +08:00
|
|
|
$(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(acdatadir)
|
1993-07-09 09:22:48 +08:00
|
|
|
|
1994-08-31 02:42:54 +08:00
|
|
|
install: all $(M4FILES) acconfig.h installdirs install-info
|
|
|
|
@case `$(M4) --help < /dev/null 2>&1` in \
|
1994-08-31 04:24:50 +08:00
|
|
|
*reload-state*) echo installing frozen m4 files; \
|
|
|
|
$(M4) -F $(acdatadir)/autoconf.m4f autoconf.m4 ; \
|
|
|
|
$(M4) -F $(acdatadir)/autoheader.m4f autoheader.m4 ;; \
|
1994-08-31 02:42:54 +08:00
|
|
|
*traditional*) ;; \
|
|
|
|
*) echo Error: Autoconf requires GNU m4 1.1 or later; exit 1 ;; \
|
|
|
|
esac
|
1994-08-26 02:05:45 +08:00
|
|
|
for i in autoconf autoheader autoreconf autoupdate ifnames; do \
|
|
|
|
$(INSTALL_PROGRAM) $$i $(bindir)/$$i; \
|
|
|
|
done
|
1994-08-31 02:42:54 +08:00
|
|
|
for i in $(M4FILES) acconfig.h; do \
|
1994-08-26 02:05:45 +08:00
|
|
|
$(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \
|
|
|
|
done
|
1994-04-30 09:47:37 +08:00
|
|
|
-if test -f autoscan; then \
|
|
|
|
$(INSTALL_PROGRAM) autoscan $(bindir)/autoscan; \
|
1994-08-26 02:05:45 +08:00
|
|
|
for i in acfunctions acheaders acidentifiers acprograms \
|
|
|
|
acmakevars; do \
|
|
|
|
$(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \
|
|
|
|
done; \
|
1994-04-30 09:47:37 +08:00
|
|
|
else :; fi
|
|
|
|
|
1994-05-05 07:41:27 +08:00
|
|
|
install-info: info installdirs
|
1994-05-03 07:47:13 +08:00
|
|
|
-test -f autoconf.info || cd $(srcdir); \
|
|
|
|
for i in autoconf.info*; do \
|
|
|
|
$(INSTALL_DATA) $$i $(infodir)/$$i; \
|
|
|
|
done
|
|
|
|
-test -f standards.info || cd $(srcdir); \
|
|
|
|
for i in standards.info*; do \
|
1994-04-30 09:47:37 +08:00
|
|
|
$(INSTALL_DATA) $$i $(infodir)/$$i; \
|
|
|
|
done
|
1993-06-07 19:00:55 +08:00
|
|
|
|
|
|
|
uninstall:
|
1994-04-30 09:47:37 +08:00
|
|
|
rm -f $(bindir)/autoconf $(bindir)/autoheader $(bindir)/autoscan
|
1994-08-24 14:41:01 +08:00
|
|
|
rm -f $(bindir)/autoreconf $(bindir)/autoupdate $(bindir)/ifnames
|
1994-04-30 09:47:37 +08:00
|
|
|
rm -fr $(acdatadir)
|
|
|
|
cd $(infodir); rm -f autoconf.info*
|
1994-05-03 07:47:13 +08:00
|
|
|
if test -f standards.info || test -f $(srcdir)/standards.info; \
|
|
|
|
then cd $(infodir); rm -f standards.info*; fi
|
1993-06-07 19:00:55 +08:00
|
|
|
|
1994-08-31 02:42:54 +08:00
|
|
|
configure: configure.in $(M4FILES)
|
1993-07-09 09:22:48 +08:00
|
|
|
cd $(srcdir); \
|
1994-04-01 00:34:43 +08:00
|
|
|
rm -f $@ $@.tmp; \
|
1994-08-23 23:04:53 +08:00
|
|
|
$(M4) autoconf.m4 configure.in > $@.tmp && \
|
1994-04-01 00:34:43 +08:00
|
|
|
mv $@.tmp $@ && \
|
|
|
|
chmod +x $@
|
1994-04-05 09:29:40 +08:00
|
|
|
Makefile: Makefile.in config.status
|
|
|
|
./config.status
|
|
|
|
config.status: configure
|
|
|
|
./config.status --recheck
|
1993-07-09 09:22:48 +08:00
|
|
|
|
1994-07-25 11:33:46 +08:00
|
|
|
clean mostlyclean distclean realclean::
|
|
|
|
for dir in $(SUBDIRS); do \
|
|
|
|
echo making $@ in $$dir ; \
|
|
|
|
(cd $$dir; $(MAKE) $@) ; \
|
|
|
|
done
|
|
|
|
|
1994-08-09 21:44:55 +08:00
|
|
|
clean mostlyclean distclean realclean::
|
1994-08-24 14:41:01 +08:00
|
|
|
rm -f autoconf autoheader autoscan autoreconf autoupdate ifnames *.tmp
|
1993-06-07 19:00:55 +08:00
|
|
|
rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.log
|
1994-08-25 02:28:20 +08:00
|
|
|
rm -f *.pg *.pgs *.toc *.tp *.tps *.vr *.vrs
|
1994-09-07 23:07:09 +08:00
|
|
|
rm -f *.ev *.evs *.ov *.ovs *.cv *.cvs *.ma *.mas
|
1993-06-07 19:00:55 +08:00
|
|
|
|
1994-08-09 21:44:55 +08:00
|
|
|
distclean realclean::
|
1994-06-23 02:22:34 +08:00
|
|
|
rm -f Makefile config.status config.cache config.log
|
1993-06-07 19:00:55 +08:00
|
|
|
|
1994-08-09 21:44:55 +08:00
|
|
|
realclean::
|
1994-07-19 22:44:16 +08:00
|
|
|
rm -f TAGS *.info* INSTALL
|
1993-06-07 19:00:55 +08:00
|
|
|
|
|
|
|
TAGS:
|
1993-07-09 09:22:48 +08:00
|
|
|
etags ${srcdir}/*.m4 ${srcdir}/*.sh ${srcdir}/[a-z]*.in ${srcdir}/*.texi
|
1993-06-07 19:00:55 +08:00
|
|
|
|
1994-05-05 23:53:37 +08:00
|
|
|
# Don't depend on DISTFILES because there's no rule for "standards.info*".
|
|
|
|
dist: $(DISTDEP)
|
1994-04-30 09:47:37 +08:00
|
|
|
distname=`sed -e '/define(AC_ACVERSION,/!d' \
|
|
|
|
-e 's/[^0-9.]*\([0-9.]*\).*/autoconf-\1/' -e q acgeneral.m4`; \
|
|
|
|
rm -fr $$distname; \
|
1994-07-20 06:14:03 +08:00
|
|
|
mkdir $$distname $$distname/testsuite $$distname/testsuite/config \
|
|
|
|
$$distname/testsuite/lib $$distname/testsuite/autoconf.g \
|
|
|
|
$$distname/testsuite/autoconf.s; \
|
1994-05-03 07:47:13 +08:00
|
|
|
for file in $(DISTFILES); do \
|
1994-07-19 22:44:16 +08:00
|
|
|
ln $$file $$distname/$$file \
|
|
|
|
|| { echo copying $$file instead; cp -p $$file $$distname/$$file;}; \
|
1994-04-30 09:47:37 +08:00
|
|
|
done; \
|
1994-09-07 23:07:09 +08:00
|
|
|
chmod -R a+rX $$distname; \
|
1994-05-03 07:47:13 +08:00
|
|
|
tar -chz -f $$distname.tar.gz $$distname; \
|
1994-04-30 09:47:37 +08:00
|
|
|
rm -fr $$distname
|