Line 54... |
Line 54... |
info_TEXINFOS = bfd.texinfo
|
info_TEXINFOS = bfd.texinfo
|
bfd_TEXINFOS = $(DOCFILES) bfdsumm.texi
|
bfd_TEXINFOS = $(DOCFILES) bfdsumm.texi
|
|
|
MKDOC = chew$(EXEEXT_FOR_BUILD)
|
MKDOC = chew$(EXEEXT_FOR_BUILD)
|
|
|
INCLUDES = -I.. -I$(srcdir)/.. -I$(srcdir)/../../include \
|
AM_CPPFLAGS = -I.. -I$(srcdir)/.. -I$(srcdir)/../../include \
|
-I$(srcdir)/../../intl -I../../intl
|
-I$(srcdir)/../../intl -I../../intl
|
|
|
$(MKDOC): $(srcdir)/chew.c
|
$(MKDOC): $(srcdir)/chew.c
|
$(CC_FOR_BUILD) -o chew.$$$$ $(srcdir)/chew.c \
|
$(CC_FOR_BUILD) -o chew.$$$$ $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) \
|
$(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(H_CFLAGS) \
|
$(H_CFLAGS) $(AM_CPPFLAGS) $(srcdir)/chew.c; \
|
$(INCLUDES); \
|
|
$(SHELL) $(srcdir)/../../move-if-change chew.$$$$ $(MKDOC)
|
$(SHELL) $(srcdir)/../../move-if-change chew.$$$$ $(MKDOC)
|
|
|
chew.o: chew.c
|
|
$(CC_FOR_BUILD) -c $(INCLUDES) $(H_CFLAGS) $(CFLAGS_FOR_BUILD) $(srcdir)/chew.c
|
|
|
|
protos: libbfd.h libcoff.h bfd.h
|
protos: libbfd.h libcoff.h bfd.h
|
|
|
# We can't replace these rules with an implicit rule, because
|
# We can't replace these rules with an implicit rule, because
|
# makes without VPATH support couldn't find the .h files in `..'.
|
# makes without VPATH support couldn't find the .h files in `..'.
|
|
|
Line 251... |
Line 247... |
$(srcdir)/../corefile.c \
|
$(srcdir)/../corefile.c \
|
$(srcdir)/../targets.c \
|
$(srcdir)/../targets.c \
|
$(srcdir)/../format.c \
|
$(srcdir)/../format.c \
|
$(srcdir)/../linker.c \
|
$(srcdir)/../linker.c \
|
$(srcdir)/../simple.c \
|
$(srcdir)/../simple.c \
|
|
$(srcdir)/../compress.c \
|
$(srcdir)/header.sed \
|
$(srcdir)/header.sed \
|
$(srcdir)/proto.str \
|
$(srcdir)/proto.str \
|
$(srcdir)/../version.h \
|
$(srcdir)/../version.h \
|
$(MKDOC)
|
$(MKDOC)
|
|
|
Line 297... |
Line 294... |
|
|
# We want install to imply install-info as per GNU standards, despite the
|
# We want install to imply install-info as per GNU standards, despite the
|
# cygnus option.
|
# cygnus option.
|
install: install-info
|
install: install-info
|
|
|
html__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
|
|
|
install-html: install-html-am
|
|
|
|
install-html-am: $(HTMLS)
|
|
@$(NORMAL_INSTALL)
|
|
test -z "$(htmldir)" || $(mkdir_p) "$(DESTDIR)$(htmldir)"
|
|
@list='$(HTMLS)'; for p in $$list; do \
|
|
if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \
|
|
f=$(html__strip_dir) \
|
|
if test -d "$$d$$p"; then \
|
|
echo " $(mkdir_p) '$(DESTDIR)$(htmldir)/$$f'"; \
|
|
$(mkdir_p) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
|
|
echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
|
|
$(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
|
|
else \
|
|
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
|
|
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
|
|
fi; \
|
|
done
|
|
|
|
MAINTAINERCLEANFILES += bfd.info
|
MAINTAINERCLEANFILES += bfd.info
|
|
|
# Automake 1.9 will only build info files in the objdir if they are
|
# Automake 1.9 will only build info files in the objdir if they are
|
# mentioned in DISTCLEANFILES. It doesn't have to be unconditional,
|
# mentioned in DISTCLEANFILES. It doesn't have to be unconditional,
|
# though, so we use a bogus condition.
|
# though, so we use a bogus condition.
|