* Makefile.in (MANPAGES): Remove $(DEMANGLER_PROG).
(install): Install it explicitly, from build dir, not srcdir.
This commit is contained in:
parent
639c820dae
commit
1cf8bd3f31
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Mon Jun 20 16:43:03 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in (MANPAGES): Remove $(DEMANGLER_PROG).
|
||||||
|
(install): Install it explicitly, from build dir, not srcdir.
|
||||||
|
|
||||||
Mon Jun 20 16:29:54 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
|
Mon Jun 20 16:29:54 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
|
||||||
|
|
||||||
* objdump.c: Don't include elf/internal.h.
|
* objdump.c: Don't include elf/internal.h.
|
||||||
|
|
|
@ -104,7 +104,7 @@ NLMCONV_PROG=nlmconv
|
||||||
|
|
||||||
SRCONV_PROG=srconv sysdump coffdump
|
SRCONV_PROG=srconv sysdump coffdump
|
||||||
|
|
||||||
MANPAGES= ar nm objdump ranlib size strings strip $(DEMANGLER_PROG) objcopy nlmconv
|
MANPAGES= ar nm objdump ranlib size strings strip objcopy nlmconv
|
||||||
|
|
||||||
PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) $(BUILD_NLMCONV) $(BUILD_SRCONV) $(SYSINFO_PROG)
|
PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) $(BUILD_NLMCONV) $(BUILD_SRCONV) $(SYSINFO_PROG)
|
||||||
STAGESTUFF = $(PROGS) *.o
|
STAGESTUFF = $(PROGS) *.o
|
||||||
|
@ -485,6 +485,7 @@ install: all $(DEMANGLER_PROG).1
|
||||||
for i in $(MANPAGES) ; do \
|
for i in $(MANPAGES) ; do \
|
||||||
$(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \
|
$(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \
|
||||||
done
|
done
|
||||||
|
$(INSTALL_XFORM1) $(DEMANGLER_PROG).1 $(man1dir)/$(DEMANGLER_PROG).1
|
||||||
-if [ -d $(tooldir) ]; then \
|
-if [ -d $(tooldir) ]; then \
|
||||||
if [ -d $(tooldir)/bin ]; then true; else mkdir $(tooldir)/bin; fi; \
|
if [ -d $(tooldir)/bin ]; then true; else mkdir $(tooldir)/bin; fi; \
|
||||||
for i in $(TOOL_PROGS) ; do \
|
for i in $(TOOL_PROGS) ; do \
|
||||||
|
|
Loading…
Reference in a new issue