diff options
Diffstat (limited to 'libgloss/mn10300')
-rw-r--r-- | libgloss/mn10300/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libgloss/mn10300/Makefile.in b/libgloss/mn10300/Makefile.in index 11cd3db01..4153fd4d1 100644 --- a/libgloss/mn10300/Makefile.in +++ b/libgloss/mn10300/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 = . @@ -128,13 +129,13 @@ distclean maintainer-clean realclean: clean .PHONY: install info install-info clean-info install: @for crt in ${CRT0}; do\ - $(INSTALL_PROGRAM) $${crt} $(tooldir)/lib${MULTISUBDIR}/$${crt}; \ + $(INSTALL_PROGRAM) $${crt} $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$${crt}; \ done @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: |