+Sun Aug 30 21:24:46 1992 Ian Lance Taylor (ian@cygnus.com)
+
+ * Makefile.in: map "as" through program_transform_name when
+ installing.
+
Sat Aug 29 12:11:12 1992 Jim Wilson (wilson@sphagnum.cygnus.com)
* Makefile.in (as.new): Depend on LOCAL_LOADLIBES.
prefix = /usr/local
-program_prefix =
-program_suffix =
+program_transform_name =
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
-parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
-if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi
- -rm -f $(bindir)/$(program_prefix)as$(program_suffix)
- $(INSTALL_PROGRAM) as.new $(bindir)/$(program_prefix)as$(program_suffix)
- -rm -f $(tooldir)/as
- ln $(bindir)/$(program_prefix)as$(program_suffix) $(tooldir)/as
- -rm -f $(man1dir)/$(program_prefix)as$(program_suffix).1
- $(INSTALL_DATA) $(srcdir)/doc/as.1 $(man1dir)/$(program_prefix)as$(program_suffix).1
+ -n=`t='$(program_transform_name)'; echo as | sed -e "" $$t`; \
+ rm -f $(bindir)/$$n; \
+ $(INSTALL_PROGRAM) as.new $(bindir)/$$n; \
+ rm -f $(tooldir)/as; \
+ ln $(bindir)/$$n $(tooldir)/as || cp $(bindir)/$$n $(tooldir)/as; \
+ $(INSTALL_DATA) $(srcdir)/doc/as.1 $(man1dir)/$$n.1
# Cancel installation by deleting the installed files.
uninstall:
- -rm -rf $(libsubdir)
- -rm -rf $(bindir)/as
- -rm -rf $(mandir)/gas.$(manext)
-
+ -n=`t='$(program_transform_name)'; echo as | sed -e "" $$t`; \
+ rm -f $(bindir)/$$n; \
+ rm -f $(mandir)/$$n.1
# These exist for maintenance purposes.
+Sun Aug 30 21:26:05 1992 Ian Lance Taylor (ian@cygnus.com)
+
+ * Makefile.in: map "as" through program_transform_name when
+ installing.
+
Tue Aug 18 14:19:01 1992 Ian Lance Taylor (ian@cygnus.com)
* Makefile.in: always create installation directories.