1991-12-07 07:58:04 +01:00
|
|
|
#
|
|
|
|
# Makefile
|
1993-03-16 21:16:31 +01:00
|
|
|
# Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation
|
1991-12-07 07:58:04 +01:00
|
|
|
#
|
|
|
|
# This file 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 of the License, 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. */
|
|
|
|
#
|
|
|
|
|
1995-07-05 11:32:47 +02:00
|
|
|
VPATH = @srcdir@
|
|
|
|
srcdir = @srcdir@
|
1991-11-14 01:17:45 +01:00
|
|
|
|
1995-07-05 11:32:47 +02:00
|
|
|
prefix = @prefix@
|
1991-12-07 07:58:04 +01:00
|
|
|
|
1995-07-05 11:32:47 +02:00
|
|
|
exec_prefix = @exec_prefix@
|
1992-04-22 23:49:56 +02:00
|
|
|
bindir = $(exec_prefix)/bin
|
|
|
|
libdir = $(exec_prefix)/lib
|
|
|
|
|
1991-12-07 07:58:04 +01:00
|
|
|
datadir = $(prefix)/lib
|
1992-04-22 23:49:56 +02:00
|
|
|
mandir = $(prefix)/man
|
1991-12-07 07:58:04 +01:00
|
|
|
man1dir = $(mandir)/man1
|
|
|
|
man2dir = $(mandir)/man2
|
|
|
|
man3dir = $(mandir)/man3
|
|
|
|
man4dir = $(mandir)/man4
|
|
|
|
man5dir = $(mandir)/man5
|
|
|
|
man6dir = $(mandir)/man6
|
|
|
|
man7dir = $(mandir)/man7
|
|
|
|
man8dir = $(mandir)/man8
|
|
|
|
man9dir = $(mandir)/man9
|
1992-04-22 23:49:56 +02:00
|
|
|
infodir = $(prefix)/info
|
1991-12-07 07:58:04 +01:00
|
|
|
includedir = $(prefix)/include
|
|
|
|
docdir = $(datadir)/doc
|
|
|
|
|
1992-04-22 23:49:56 +02:00
|
|
|
MKDOC=./chew
|
1991-11-14 01:17:45 +01:00
|
|
|
SHELL = /bin/sh
|
|
|
|
|
1995-07-05 11:32:47 +02:00
|
|
|
INSTALL = `cd $(srcdir)/../..;pwd`/install.sh -c
|
1991-12-07 07:58:04 +01:00
|
|
|
INSTALL_PROGRAM = $(INSTALL)
|
|
|
|
INSTALL_DATA = $(INSTALL)
|
|
|
|
|
1991-11-14 01:17:45 +01:00
|
|
|
MAKEINFO = makeinfo
|
1993-03-16 21:16:31 +01:00
|
|
|
TEXI2DVI = texi2dvi
|
1992-04-28 19:22:07 +02:00
|
|
|
CFLAGS = -g
|
1991-12-07 07:58:04 +01:00
|
|
|
|
1993-06-16 02:44:27 +02:00
|
|
|
CC_FOR_BUILD = $(CC)
|
|
|
|
|
1991-12-07 07:58:04 +01:00
|
|
|
#### Host, target, and site specific Makefile fragments come in here.
|
|
|
|
###
|
|
|
|
|
1992-04-28 19:22:07 +02:00
|
|
|
.c.o:
|
1993-07-08 19:58:15 +02:00
|
|
|
$(CC) -c -I.. -I$(srcdir)/.. -I$(srcdir)/../../include $(H_CFLAGS) $(CFLAGS) $<
|
1991-11-14 01:17:45 +01:00
|
|
|
|
1991-11-13 21:00:07 +01:00
|
|
|
DOCFILES = aoutx.texi archive.texi archures.texi \
|
|
|
|
bfd.texi cache.texi coffcode.texi \
|
1993-12-30 23:02:22 +01:00
|
|
|
core.texi elf.texi elfcode.texi format.texi libbfd.texi \
|
1991-11-13 21:00:07 +01:00
|
|
|
opncls.texi reloc.texi section.texi \
|
1995-07-05 11:32:47 +02:00
|
|
|
syms.texi targets.texi init.texi hash.texi linker.texi
|
1991-11-13 21:00:07 +01:00
|
|
|
|
|
|
|
PROTOS = archive.p archures.p bfd.p \
|
1991-12-01 02:16:56 +01:00
|
|
|
core.p format.p \
|
1991-11-13 21:00:07 +01:00
|
|
|
libbfd.p opncls.p reloc.p \
|
|
|
|
section.p syms.p targets.p \
|
1991-12-01 02:16:56 +01:00
|
|
|
format.p core.p init.p
|
1991-11-13 21:00:07 +01:00
|
|
|
|
1995-07-05 11:32:47 +02:00
|
|
|
IPROTOS = cache.ip libbfd.ip reloc.ip init.ip archures.ip coffcode.ip
|
1991-11-13 21:00:07 +01:00
|
|
|
|
|
|
|
# SRCDOC, SRCPROT, SRCIPROT only used to sidestep Sun Make bug in interaction
|
|
|
|
# between VPATH and suffix rules. If you use GNU Make, perhaps other Makes,
|
|
|
|
# you don't need these three:
|
1991-11-14 04:14:12 +01:00
|
|
|
SRCDOC = $(srcdir)/../aoutx.h $(srcdir)/../archive.c \
|
|
|
|
$(srcdir)/../archures.c $(srcdir)/../bfd.c \
|
|
|
|
$(srcdir)/../cache.c $(srcdir)/../coffcode.h \
|
1993-12-30 23:02:22 +01:00
|
|
|
$(srcdir)/../core.c $(srcdir)/../elf.c \
|
|
|
|
$(srcdir)/../elfcode.h $(srcdir)/../format.c \
|
1991-11-14 04:14:12 +01:00
|
|
|
$(srcdir)/../libbfd.c $(srcdir)/../opncls.c \
|
|
|
|
$(srcdir)/../reloc.c $(srcdir)/../section.c \
|
1995-07-05 11:32:47 +02:00
|
|
|
$(srcdir)/../syms.c $(srcdir)/../targets.c \
|
|
|
|
$(srcdir)/../hash.c $(srcdir)/../linker.c
|
1991-11-14 04:14:12 +01:00
|
|
|
|
|
|
|
SRCPROT = $(srcdir)/../archive.c $(srcdir)/../archures.c \
|
|
|
|
$(srcdir)/../bfd.c $(srcdir)/../coffcode.h $(srcdir)/../core.c \
|
|
|
|
$(srcdir)/../format.c $(srcdir)/../libbfd.c \
|
|
|
|
$(srcdir)/../opncls.c $(srcdir)/../reloc.c \
|
|
|
|
$(srcdir)/../section.c $(srcdir)/../syms.c \
|
1993-12-30 23:02:22 +01:00
|
|
|
$(srcdir)/../targets.c $(srcdir)/../init.c
|
1991-11-14 04:14:12 +01:00
|
|
|
|
|
|
|
SRCIPROT = $(srcdir)/../cache.c $(srcdir)/../libbfd.c \
|
|
|
|
$(srcdir)/../reloc.c $(srcdir)/../cpu-h8300.c \
|
|
|
|
$(srcdir)/../cpu-i960.c $(srcdir)/../archures.c \
|
1995-07-05 11:32:47 +02:00
|
|
|
$(srcdir)/../init.c
|
1991-11-13 21:00:07 +01:00
|
|
|
|
1991-12-01 02:16:56 +01:00
|
|
|
STAGESTUFF = $(DOCFILES) *.info*
|
1991-11-14 01:17:45 +01:00
|
|
|
|
1993-03-16 21:16:31 +01:00
|
|
|
TEXIDIR = $(srcdir)/../../texinfo/fsf
|
|
|
|
|
1991-11-15 04:44:04 +01:00
|
|
|
all install:
|
1991-11-13 21:00:07 +01:00
|
|
|
|
1991-12-07 07:58:04 +01:00
|
|
|
info: bfd.info
|
1991-11-15 04:44:04 +01:00
|
|
|
|
1993-03-16 21:16:31 +01:00
|
|
|
dvi: bfd.dvi
|
|
|
|
|
1991-12-07 07:58:04 +01:00
|
|
|
install-info: info
|
1991-11-14 01:17:45 +01:00
|
|
|
for i in *.info* ; do \
|
1991-12-07 07:58:04 +01:00
|
|
|
$(INSTALL_DATA) $$i $(infodir)/$$i ; \
|
1991-11-14 01:17:45 +01:00
|
|
|
done
|
|
|
|
|
1992-04-22 23:49:56 +02:00
|
|
|
docs: $(MKDOC) protos bfd.info bfd.dvi bfd.ps
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1993-06-16 02:44:27 +02:00
|
|
|
$(MKDOC): chew.o
|
1993-07-08 19:58:15 +02:00
|
|
|
$(CC_FOR_BUILD) -o $(MKDOC) chew.o $(LOADLIBES) $(LDFLAGS)
|
1993-06-16 02:44:27 +02:00
|
|
|
|
|
|
|
chew.o: chew.c
|
1993-07-08 19:58:15 +02:00
|
|
|
$(CC_FOR_BUILD) -c -I.. -I$(srcdir)/.. -I$(srcdir)/../../include $(H_CFLAGS) $(CFLAGS) $(srcdir)/chew.c
|
1991-12-01 02:16:56 +01:00
|
|
|
|
|
|
|
protos: libbfd.h libcoff.h bfd.h
|
|
|
|
|
1993-07-08 19:58:15 +02:00
|
|
|
|
|
|
|
# We can't replace these rules with an implicit rule, because
|
|
|
|
# makes without VPATH support couldn't find the .h files in `..'.
|
|
|
|
|
1991-12-11 07:11:31 +01:00
|
|
|
aoutx.texi: $(MKDOC) $(srcdir)/../aoutx.h $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../aoutx.h >aoutx.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1991-12-11 07:11:31 +01:00
|
|
|
archive.texi: $(MKDOC) $(srcdir)/../archive.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../archive.c >archive.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1993-12-30 23:02:22 +01:00
|
|
|
archures.texi: $(MKDOC) $(srcdir)/../archures.c $(srcdir)/doc.str
|
1991-12-11 07:11:31 +01:00
|
|
|
$(MKDOC) -f $(srcdir)/doc.str < $(srcdir)/../archures.c >archures.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1991-12-11 07:11:31 +01:00
|
|
|
bfd.texi: $(MKDOC) $(srcdir)/../bfd.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str < $(srcdir)/../bfd.c >bfd.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1991-12-11 07:11:31 +01:00
|
|
|
cache.texi: $(MKDOC) $(srcdir)/../cache.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str < $(srcdir)/../cache.c >cache.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1991-12-11 07:11:31 +01:00
|
|
|
coffcode.texi: $(MKDOC) $(srcdir)/../coffcode.h $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../coffcode.h >coffcode.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1991-12-11 07:11:31 +01:00
|
|
|
core.texi: $(MKDOC) $(srcdir)/../core.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../core.c >core.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1993-12-30 23:02:22 +01:00
|
|
|
elf.texi: $(MKDOC) $(srcdir)/../elf.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../elf.c >elf.texi
|
|
|
|
|
|
|
|
elfcode.texi: $(MKDOC) $(srcdir)/../elfcode.h $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../elfcode.h >elfcode.texi
|
|
|
|
|
1991-12-11 07:11:31 +01:00
|
|
|
format.texi: $(MKDOC) $(srcdir)/../format.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../format.c >format.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1991-12-11 07:11:31 +01:00
|
|
|
libbfd.texi: $(MKDOC) $(srcdir)/../libbfd.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str < $(srcdir)/../libbfd.c >libbfd.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1992-04-22 23:49:56 +02:00
|
|
|
opncls.texi: $(MKDOC) $(srcdir)/../opncls.c $(srcdir)/doc.str
|
1991-12-11 07:11:31 +01:00
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../opncls.c >opncls.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
|
|
|
reloc.texi : $(MKDOC) $(srcdir)/../reloc.c
|
1991-12-11 07:11:31 +01:00
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../reloc.c >reloc.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1991-12-11 07:11:31 +01:00
|
|
|
section.texi: $(MKDOC) $(srcdir)/../section.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../section.c >section.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
|
|
|
syms.texi : $(MKDOC) $(srcdir)/../syms.c
|
1991-12-11 07:11:31 +01:00
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../syms.c >syms.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1991-12-11 07:11:31 +01:00
|
|
|
targets.texi: $(MKDOC) $(srcdir)/../targets.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../targets.c >targets.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1991-12-11 07:11:31 +01:00
|
|
|
init.texi: $(MKDOC) $(srcdir)/../init.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../init.c >init.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1995-07-05 11:32:47 +02:00
|
|
|
hash.texi: $(MKDOC) $(srcdir)/../hash.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../hash.c >hash.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
1995-07-05 11:32:47 +02:00
|
|
|
linker.texi: $(MKDOC) $(srcdir)/../linker.c $(srcdir)/doc.str
|
|
|
|
$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../linker.c >linker.texi
|
1991-12-01 02:16:56 +01:00
|
|
|
|
|
|
|
libbfd.h: $(srcdir)/../libbfd-in.h \
|
|
|
|
$(srcdir)/../init.c \
|
|
|
|
$(srcdir)/../libbfd.c \
|
|
|
|
$(srcdir)/../cache.c \
|
|
|
|
$(srcdir)/../reloc.c \
|
|
|
|
$(srcdir)/../cpu-h8300.c \
|
|
|
|
$(srcdir)/../cpu-i960.c \
|
1991-12-01 02:31:03 +01:00
|
|
|
$(srcdir)/../archures.c \
|
1993-06-16 02:44:27 +02:00
|
|
|
$(srcdir)/../elfcode.h \
|
1992-04-22 23:49:56 +02:00
|
|
|
$(MKDOC)
|
1991-12-01 02:16:56 +01:00
|
|
|
cat $(srcdir)/../libbfd-in.h >libbfd.h
|
1991-12-11 07:11:31 +01:00
|
|
|
$(MKDOC) -i -f $(srcdir)/proto.str < $(srcdir)/../init.c >>libbfd.h
|
|
|
|
$(MKDOC) -i -f $(srcdir)/proto.str < $(srcdir)/../libbfd.c >>libbfd.h
|
|
|
|
$(MKDOC) -i -f $(srcdir)/proto.str < $(srcdir)/../cache.c >>libbfd.h
|
|
|
|
$(MKDOC) -i -f $(srcdir)/proto.str < $(srcdir)/../reloc.c >>libbfd.h
|
|
|
|
$(MKDOC) -i -f $(srcdir)/proto.str < $(srcdir)/../cpu-h8300.c >>libbfd.h
|
|
|
|
$(MKDOC) -i -f $(srcdir)/proto.str < $(srcdir)/../cpu-i960.c >>libbfd.h
|
|
|
|
$(MKDOC) -i -f $(srcdir)/proto.str < $(srcdir)/../archures.c >>libbfd.h
|
1993-07-08 19:58:15 +02:00
|
|
|
$(MKDOC) -i -f $(srcdir)/proto.str < $(srcdir)/../elf.c >>libbfd.h
|
1993-06-16 02:44:27 +02:00
|
|
|
$(MKDOC) -i -f $(srcdir)/proto.str < $(srcdir)/../elfcode.h >>libbfd.h
|
1991-12-01 02:16:56 +01:00
|
|
|
|
|
|
|
libcoff.h: $(srcdir)/../libcoff-in.h \
|
1991-12-01 02:28:32 +01:00
|
|
|
$(srcdir)/../coffcode.h \
|
1992-04-22 23:49:56 +02:00
|
|
|
$(MKDOC)
|
1991-12-01 02:16:56 +01:00
|
|
|
cat $(srcdir)/../libcoff-in.h >libcoff.h
|
1991-12-11 07:11:31 +01:00
|
|
|
$(MKDOC) -i -f $(srcdir)/proto.str < $(srcdir)/../coffcode.h >>libcoff.h
|
1991-12-01 02:16:56 +01:00
|
|
|
|
|
|
|
bfd.h: $(srcdir)/../bfd-in.h \
|
|
|
|
$(srcdir)/../init.c \
|
|
|
|
$(srcdir)/../opncls.c \
|
|
|
|
$(srcdir)/../libbfd.c \
|
|
|
|
$(srcdir)/../section.c \
|
|
|
|
$(srcdir)/../archures.c \
|
|
|
|
$(srcdir)/../reloc.c \
|
|
|
|
$(srcdir)/../syms.c \
|
1993-03-16 21:16:31 +01:00
|
|
|
$(srcdir)/../bfd.c \
|
1991-12-01 02:16:56 +01:00
|
|
|
$(srcdir)/../archive.c \
|
|
|
|
$(srcdir)/../core.c \
|
|
|
|
$(srcdir)/../targets.c \
|
1991-12-01 02:28:32 +01:00
|
|
|
$(srcdir)/../format.c \
|
1992-04-22 23:49:56 +02:00
|
|
|
$(MKDOC)
|
1991-12-01 02:16:56 +01:00
|
|
|
cat $(srcdir)/../bfd-in.h >bfd.h
|
1991-12-11 07:11:31 +01:00
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../init.c >>bfd.h
|
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../opncls.c >>bfd.h
|
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../libbfd.c >>bfd.h
|
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../section.c >>bfd.h
|
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../archures.c >>bfd.h
|
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../reloc.c >>bfd.h
|
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../syms.c >>bfd.h
|
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../bfd.c >>bfd.h
|
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../archive.c >>bfd.h
|
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../core.c >>bfd.h
|
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../targets.c >>bfd.h
|
|
|
|
$(MKDOC) -f $(srcdir)/proto.str<$(srcdir)/../format.c >>bfd.h
|
1991-12-07 07:58:04 +01:00
|
|
|
echo "#endif" >>bfd.h
|
1991-11-15 21:22:15 +01:00
|
|
|
|
|
|
|
|
1993-03-16 21:16:31 +01:00
|
|
|
clean-info: clean
|
|
|
|
|
|
|
|
mostlyclean:
|
1993-06-16 02:44:27 +02:00
|
|
|
rm -rf *.log *.ps *~* *.dvi *# $(MKDOC) *.o
|
1993-03-16 21:16:31 +01:00
|
|
|
|
|
|
|
clean: mostlyclean
|
|
|
|
rm -rf $(STAGESTUFF)
|
|
|
|
rm -f *.p *.ip bfd.?? bfd.??? bfd.h libbfd.h libcoff.h texput.log
|
1992-04-22 23:49:56 +02:00
|
|
|
|
1993-03-16 21:16:31 +01:00
|
|
|
distclean: clean
|
|
|
|
rm -f Makefile config.status
|
|
|
|
|
|
|
|
realclean: clean
|
|
|
|
rm -f Makefile config.status
|
1991-11-13 21:00:07 +01:00
|
|
|
|
1993-07-08 19:58:15 +02:00
|
|
|
bfd.info: $(DOCFILES) bfdsumm.texi bfd.texinfo
|
1993-12-30 23:02:22 +01:00
|
|
|
$(MAKEINFO) -I$(srcdir) -o bfd.info $(srcdir)/bfd.texinfo
|
1991-11-13 21:00:07 +01:00
|
|
|
|
1993-07-08 19:58:15 +02:00
|
|
|
bfd.dvi: $(DOCFILES) bfdsumm.texi bfd.texinfo
|
1993-06-16 02:44:27 +02:00
|
|
|
$(TEXI2DVI) $(srcdir)/bfd.texinfo
|
1991-11-13 21:00:07 +01:00
|
|
|
|
|
|
|
bfd.ps: bfd.dvi
|
|
|
|
dvips bfd -o
|
1993-07-08 19:58:15 +02:00
|
|
|
|
|
|
|
quickdoc: $(DOCFILES) bfdsumm.texi bfd.texinfo
|
1991-11-13 21:00:07 +01:00
|
|
|
TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex bfd.texinfo
|
1991-11-14 01:17:45 +01:00
|
|
|
|
|
|
|
stage1: force
|
|
|
|
- mkdir stage1
|
|
|
|
- mv -f $(STAGESTUFF) stage1
|
|
|
|
|
|
|
|
stage2: force
|
|
|
|
- mkdir stage2
|
|
|
|
- mv -f $(STAGESTUFF) stage2
|
|
|
|
|
|
|
|
stage3: force
|
|
|
|
- mkdir stage3
|
|
|
|
- mv -f $(STAGESTUFF) stage3
|
|
|
|
|
|
|
|
against=stage2
|
|
|
|
|
|
|
|
comparison: force
|
1991-12-01 02:16:56 +01:00
|
|
|
for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i || exit 1 ; done
|
1991-11-14 01:17:45 +01:00
|
|
|
|
|
|
|
de-stage1: force
|
|
|
|
- (cd stage1 ; mv -f $(STAGESTUFF) ..)
|
|
|
|
- rmdir stage1
|
|
|
|
|
|
|
|
de-stage2: force
|
|
|
|
- (cd stage2 ; mv -f $(STAGESTUFF) ..)
|
|
|
|
- rmdir stage2
|
|
|
|
|
|
|
|
de-stage3: force
|
|
|
|
- (cd stage3 ; mv -f $(STAGESTUFF) ..)
|
|
|
|
- rmdir stage3
|
|
|
|
|
|
|
|
force:
|
|
|
|
|
1995-07-05 11:32:47 +02:00
|
|
|
Makefile: $(srcdir)/Makefile.in
|
|
|
|
cd .. && $(SHELL) ./config.status
|
1991-11-14 01:17:45 +01:00
|
|
|
|