* Makefile.am (install-exec-local): Split into two ...
(install-exec-bindir,install-exec-tooldir): New rules. * Makefile.in: Regenerate.
This commit is contained in:
parent
2326d63003
commit
db36f77fa0
3 changed files with 26 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri Jul 24 19:58:59 1998 Doug Evans <devans@canuck.cygnus.com>
|
||||
|
||||
* Makefile.am (install-exec-local): Split into two ...
|
||||
(install-exec-bindir,install-exec-tooldir): New rules.
|
||||
* Makefile.in: Regenerate.
|
||||
|
||||
Fri Jul 24 16:31:49 1998 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* Makefile.am (install-exec-local): Don't remove the file before
|
||||
|
|
|
@ -549,20 +549,28 @@ MOSTLYCLEANFILES = $(STAGESTUFF) core stamp-mk.com \
|
|||
CLEANFILES = dep.sed .tcdep .objdep .dep2 .dep1 .depa .dep .depdir
|
||||
|
||||
.PHONY: install-exec-local install-data-local
|
||||
.PHONY: install-exec-bindir install-exec-tooldir
|
||||
|
||||
install-exec-local: $(noinst_PROGRAMS)
|
||||
$(mkinstalldirs) $(bindir) $(tooldir)/bin
|
||||
install-exec-local: install-exec-bindir install-exec-tooldir
|
||||
|
||||
install-exec-bindir: $(noinst_PROGRAMS)
|
||||
$(mkinstalldirs) $(bindir)
|
||||
@list='$(noinst_PROGRAMS)'; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
|
||||
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
|
||||
else :; fi; \
|
||||
done
|
||||
|
||||
install-exec-tooldir: $(noinst_PROGRAMS)
|
||||
$(mkinstalldirs) $(tooldir)/bin
|
||||
n=`echo as | sed '$(transform)'`; \
|
||||
if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \
|
||||
rm -f $(tooldir)/bin/as$(EXEEXT); \
|
||||
ln $(bindir)/$$n$(EXEEXT) $(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \
|
||||
|| $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) as-new$(EXEEXT) $(tooldir)/bin/as$(EXEEXT); \
|
||||
else \
|
||||
true ; \
|
||||
fi
|
||||
|
||||
# These exist for maintenance purposes.
|
||||
|
|
|
@ -1757,20 +1757,28 @@ cgen.o: cgen.c cgen.h cgen-opc.h subsegs.h \
|
|||
$(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-opc.h
|
||||
|
||||
.PHONY: install-exec-local install-data-local
|
||||
.PHONY: install-exec-bindir install-exec-tooldir
|
||||
|
||||
install-exec-local: $(noinst_PROGRAMS)
|
||||
$(mkinstalldirs) $(bindir) $(tooldir)/bin
|
||||
install-exec-local: install-exec-bindir install-exec-tooldir
|
||||
|
||||
install-exec-bindir: $(noinst_PROGRAMS)
|
||||
$(mkinstalldirs) $(bindir)
|
||||
@list='$(noinst_PROGRAMS)'; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
|
||||
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
|
||||
else :; fi; \
|
||||
done
|
||||
|
||||
install-exec-tooldir: $(noinst_PROGRAMS)
|
||||
$(mkinstalldirs) $(tooldir)/bin
|
||||
n=`echo as | sed '$(transform)'`; \
|
||||
if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \
|
||||
rm -f $(tooldir)/bin/as$(EXEEXT); \
|
||||
ln $(bindir)/$$n$(EXEEXT) $(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \
|
||||
|| $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) as-new$(EXEEXT) $(tooldir)/bin/as$(EXEEXT); \
|
||||
else \
|
||||
true ; \
|
||||
fi
|
||||
|
||||
# These exist for maintenance purposes.
|
||||
|
|
Loading…
Reference in a new issue