Moved in from p3:
Tue Aug 18 13:28:44 1992 Ian Lance Taylor (ian@cygnus.com) * config/mh-apollo68v: removed -g from CC definition. * Makefile.in: always create installation directories.
This commit is contained in:
parent
967d40ca76
commit
f478fcf663
3 changed files with 31 additions and 7 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Tue Aug 18 13:28:44 1992 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
|
* config/mh-apollo68v: removed -g from CC definition.
|
||||||
|
|
||||||
|
* Makefile.in: always create installation directories.
|
||||||
|
|
||||||
Mon Aug 17 18:33:41 1992 Per Bothner (bothner@rtl.cygnus.com)
|
Mon Aug 17 18:33:41 1992 Per Bothner (bothner@rtl.cygnus.com)
|
||||||
|
|
||||||
* m68k-pinsn.c: Minor fix in style of output (don't use
|
* m68k-pinsn.c: Minor fix in style of output (don't use
|
||||||
|
|
|
@ -17,13 +17,12 @@
|
||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
#$Id$
|
|
||||||
|
|
||||||
srcdir = .
|
srcdir = .
|
||||||
|
|
||||||
prefix = /usr/local
|
prefix = /usr/local
|
||||||
|
|
||||||
program_prefix =
|
program_prefix =
|
||||||
|
program_suffix =
|
||||||
exec_prefix = $(prefix)
|
exec_prefix = $(prefix)
|
||||||
bindir = $(exec_prefix)/bin
|
bindir = $(exec_prefix)/bin
|
||||||
libdir = $(exec_prefix)/lib
|
libdir = $(exec_prefix)/lib
|
||||||
|
@ -312,14 +311,23 @@ realclean: clean
|
||||||
-rm -f $(STAGESTUFF) TAGS
|
-rm -f $(STAGESTUFF) TAGS
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
|
-parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
|
||||||
|
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
||||||
|
-if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
|
||||||
for i in $(PROGS) ; do \
|
for i in $(PROGS) ; do \
|
||||||
$(INSTALL_PROGRAM) $$i $(bindir)/$(program_prefix)$$i ; \
|
$(INSTALL_PROGRAM) $$i $(bindir)/$(program_prefix)$${i}$(program_suffix) ; \
|
||||||
done
|
done
|
||||||
|
-parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
|
||||||
|
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
||||||
|
-if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi
|
||||||
for i in $(MANPAGES) ; do \
|
for i in $(MANPAGES) ; do \
|
||||||
$(INSTALL_DATA) $(srcdir)/$$i $(man1dir)/$(program_prefix)$$i ; \
|
$(INSTALL_DATA) $(srcdir)/$$i $(man1dir)/$(program_prefix)$${i}$(program_suffix) ; \
|
||||||
done
|
done
|
||||||
|
|
||||||
install-info: info
|
install-info: info
|
||||||
|
-parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
|
||||||
|
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
||||||
|
-if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
|
||||||
for i in *.info* ; do \
|
for i in *.info* ; do \
|
||||||
$(INSTALL_DATA) $$i $(infodir)/$$i ; \
|
$(INSTALL_DATA) $$i $(infodir)/$$i ; \
|
||||||
done
|
done
|
||||||
|
|
|
@ -13,6 +13,16 @@ case "${host_cpu}" in
|
||||||
rs6000) my_host=rs6000
|
rs6000) my_host=rs6000
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
hppa*)
|
||||||
|
case "${host_vendor}" in
|
||||||
|
hp)
|
||||||
|
case "${host_os}" in
|
||||||
|
hpux) my_host=hppahpux ;;
|
||||||
|
bsd) my_host=hppabsd ;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
mips)
|
mips)
|
||||||
case "${host_vendor}" in
|
case "${host_vendor}" in
|
||||||
dec) my_host=decstation ;;
|
dec) my_host=decstation ;;
|
||||||
|
@ -32,7 +42,7 @@ m88k)
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
m68k)
|
m68*)
|
||||||
case "${host_vendor}" in
|
case "${host_vendor}" in
|
||||||
cbm)
|
cbm)
|
||||||
case ${host_os} in
|
case ${host_os} in
|
||||||
|
@ -103,9 +113,9 @@ links="sysdep.h"
|
||||||
|
|
||||||
if [ ! -f ${srcdir}/${files} ] ; then
|
if [ ! -f ${srcdir}/${files} ] ; then
|
||||||
if [ -n "${my_host}" ] ; then
|
if [ -n "${my_host}" ] ; then
|
||||||
echo '***' No file ${srcdir}/${files}
|
echo '***' No file ${srcdir}/${files} 1>&2
|
||||||
fi
|
fi
|
||||||
echo '***' ${srcname} does not support host ${host}
|
echo '***' ${srcname} does not support host ${host} 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue