diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2004-06-28 22:42:21 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2004-06-28 22:42:21 +0000 |
commit | 051f21ca833ee7604b1787405526aa3f54033e12 (patch) | |
tree | 478a25a062e736e0334178da5dffb8b790895fef /libgloss/mn10200 | |
parent | 76a3f968a57035c29d74aeb79017d7ca9dd931d7 (diff) | |
download | cygnal-051f21ca833ee7604b1787405526aa3f54033e12.tar.gz cygnal-051f21ca833ee7604b1787405526aa3f54033e12.tar.bz2 cygnal-051f21ca833ee7604b1787405526aa3f54033e12.zip |
2004-06-27 Hideki Iwamoto <h-iwamoto@kit.hi-ho.ne.jp>
* Makefile.in: Support $(DESTDIR).
* arm/Makefile.in: Ditto.
* d30v/Makefile.in: Ditto.
* doc/Makefile.in: Ditto.
* fr30/Makefile.in: Ditto.
* frv/Makefile.in: Ditto.
* hp74x/Makefile.in: Ditto.
* i386/Makefile.in: Ditto.
* i960/Makefile.in: Ditto.
* iq2000/Makefile.in: Ditto.
* libnosys/Makefile.in: Ditto.
* m32r/Makefile.in: Ditto.
* m68hc11/Makefile.in: Ditto.
* m68k/Makefile.in: Ditto.
* mcore/Makefile.in: Ditto.
* mips/Makefile.in: Ditto.
* mn10200/Makefile.in: Ditto.
* mn10300/Makefile.in: Ditto.
* pa/Makefile.in: Ditto.
* rs6000/Makefile.in: Ditto.
* sparc/Makefile.in: Ditto.
* sparc/libsys/Makefile.in: Ditto.
* xstormy16/Makefile.in: Ditto.
Diffstat (limited to 'libgloss/mn10200')
-rw-r--r-- | libgloss/mn10200/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libgloss/mn10200/Makefile.in b/libgloss/mn10200/Makefile.in index 9ed0055e2..5a6e10b31 100644 --- a/libgloss/mn10200/Makefile.in +++ b/libgloss/mn10200/Makefile.in @@ -10,6 +10,7 @@ # the new terms are clearly indicated on the first page of each file where # they apply. +DESTDIR = VPATH = @srcdir@ srcdir = @srcdir@ objdir = . @@ -121,12 +122,12 @@ distclean maintainer-clean realclean: clean .PHONY: install info install-info clean-info install: - $(INSTALL_PROGRAM) $(CRT0) $(tooldir)/lib${MULTISUBDIR}/$(CRT0) + $(INSTALL_PROGRAM) $(CRT0) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(CRT0) @for bsp in ${BSP}; do\ - $(INSTALL_PROGRAM) $${bsp} $(tooldir)/lib${MULTISUBDIR}; \ + $(INSTALL_PROGRAM) $${bsp} $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}; \ done @for script in ${SCRIPTS}; do\ - $(INSTALL_DATA) ${srcdir}/$${script}.ld $(tooldir)/lib${MULTISUBDIR}/$${script}.ld; \ + $(INSTALL_DATA) ${srcdir}/$${script}.ld $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$${script}.ld; \ done info: |