mirror of
git://git.sv.gnu.org/autoconf
synced 2024-11-21 01:01:48 +08:00
22c7df0c2b
instead of to $@ directly so that after a disk full error, the targets to not exist. Otherwise, a subsequent make could install a corrupt (but not executable) script. From Jim Meyering.
144 lines
4.5 KiB
Makefile
144 lines
4.5 KiB
Makefile
# Makefile for Autoconf.
|
|
# Copyright (C) 1992, 1993 Free Software Foundation, Inc.
|
|
|
|
# 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
|
|
TEXI2DVI = texi2dvi
|
|
M4 = @M4@
|
|
|
|
prefix = /usr/local
|
|
exec_prefix = $(prefix)
|
|
|
|
# Directory in which to install scripts.
|
|
bindir = $(exec_prefix)/bin
|
|
|
|
# Directory in which to install library files.
|
|
datadir = $(prefix)/lib
|
|
acdatadir = $(datadir)/autoconf
|
|
|
|
# Directory in which to install documentation info files.
|
|
infodir = $(prefix)/info
|
|
|
|
#### End of system configuration section. ####
|
|
|
|
SHELL = /bin/sh
|
|
|
|
DISTFILES = README Makefile.in INSTALL NEWS COPYING ChangeLog \
|
|
autoconf.texi autoconf.info standards.texi make-stds.texi standards.info \
|
|
texinfo.tex acconfig.h autoconf.sh acgeneral.m4 acspecific.m4 \
|
|
configure configure.in autoheader.sh mkinstalldirs install.sh
|
|
|
|
editsh = sed -e 's,@''datadir''@,$(acdatadir),g' -e 's,@''M4''@,$(M4),g'
|
|
|
|
all: autoconf autoheader autoconf.info standards.info
|
|
|
|
autoconf: autoconf.sh
|
|
rm -f $@ $@.tmp
|
|
$(editsh) $(srcdir)/autoconf.sh > $@.tmp && mv $@.tmp $@ && chmod +x $@
|
|
|
|
autoheader: autoheader.sh
|
|
rm -f $@ $@.tmp
|
|
$(editsh) $(srcdir)/autoheader.sh > $@.tmp && mv $@.tmp $@ && chmod +x $@
|
|
|
|
info: autoconf.info standards.info
|
|
|
|
autoconf.info: autoconf.texi
|
|
$(MAKEINFO) -I$(srcdir) $(srcdir)/autoconf.texi --no-split --output=$@
|
|
|
|
standards.info: standards.texi make-stds.texi
|
|
$(MAKEINFO) -I$(srcdir) $(srcdir)/standards.texi --no-split --output=$@
|
|
|
|
dvi: autoconf.dvi standards.dvi
|
|
|
|
autoconf.dvi: autoconf.texi
|
|
$(TEXI2DVI) $(srcdir)/autoconf.texi
|
|
|
|
standards.dvi: standards.texi make-stds.texi
|
|
$(TEXI2DVI) $(srcdir)/standards.texi
|
|
|
|
check:
|
|
|
|
installdirs:
|
|
$(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(acdatadir)
|
|
|
|
# References to install-info have been removed until it's released.
|
|
install: all acgeneral.m4 acspecific.m4 acconfig.h installdirs
|
|
$(INSTALL_PROGRAM) autoconf $(bindir)/autoconf
|
|
$(INSTALL_PROGRAM) autoheader $(bindir)/autoheader
|
|
$(INSTALL_DATA) $(srcdir)/acgeneral.m4 $(acdatadir)/acgeneral.m4
|
|
$(INSTALL_DATA) $(srcdir)/acspecific.m4 $(acdatadir)/acspecific.m4
|
|
$(INSTALL_DATA) $(srcdir)/acconfig.h $(acdatadir)/acconfig.h
|
|
test ! -r $(srcdir)/aclocal.m4 || $(INSTALL_DATA) $(srcdir)/aclocal.m4 $(acdatadir)/aclocal.m4
|
|
-if test -f autoconf.info; then d=.; else d=$(srcdir); fi; \
|
|
$(INSTALL_DATA) $$d/autoconf.info $(infodir)/autoconf.info
|
|
-if test -f standards.info; then d=.; else d=$(srcdir); fi; \
|
|
$(INSTALL_DATA) $$d/standards.info $(infodir)/standards.info
|
|
|
|
uninstall:
|
|
rm -f $(bindir)/autoconf $(bindir)/autoheader
|
|
cd $(acdatadir); rm -f acgeneral.m4 acspecific.m4 aclocal.m4 acconfig.h
|
|
-rmdir $(acdatadir)
|
|
cd $(infodir); rm -f autoconf.info standards.info
|
|
|
|
Makefile: Makefile.in
|
|
$(SHELL) config.status
|
|
config.status: configure
|
|
$(SHELL) config.status --recheck
|
|
configure: configure.in acgeneral.m4 acspecific.m4
|
|
cd $(srcdir); \
|
|
rm -f $@ $@.tmp; \
|
|
$(M4) acgeneral.m4 acspecific.m4 configure.in > $@.tmp && \
|
|
mv $@.tmp $@ && \
|
|
chmod +x $@
|
|
|
|
clean:
|
|
rm -f autoconf autoheader *.tmp
|
|
rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.log
|
|
rm -f *.pg *.pgs *.toc *.tp *.tps *.vr *.vrs *.ma *.mas
|
|
|
|
mostlyclean: clean
|
|
|
|
distclean: clean
|
|
rm -f Makefile config.status
|
|
|
|
realclean: distclean
|
|
rm -f TAGS *.info*
|
|
|
|
TAGS:
|
|
etags ${srcdir}/*.m4 ${srcdir}/*.sh ${srcdir}/[a-z]*.in ${srcdir}/*.texi
|
|
|
|
dist: Makefile $(DISTFILES)
|
|
echo autoconf-`sed -e '/define(AC_ACVERSION,/!d' -e 's/[^0-9.]*\([0-9.]*\).*/\1/' -e q acgeneral.m4` > .fname
|
|
rm -rf `cat .fname`
|
|
mkdir `cat .fname`
|
|
for file in $(DISTFILES); do \
|
|
ln $$file `cat .fname` \
|
|
|| { echo copying $$file instead; cp -p $$file `cat .fname`; }; \
|
|
done
|
|
tar --gzip -chf `cat .fname`.tar.gz `cat .fname`
|
|
rm -rf `cat .fname` .fname
|
|
|
|
# Prevent GNU make v3 from overflowing arg limit on SysV.
|
|
.NOEXPORT:
|