Polishing z8k simulator support
[deliverable/binutils-gdb.git] / Makefile.in
index 52413d714b78145fef52e5aad6c7e67d6cd8d19d..66c88c28cc5a41b1fc1e5ba54b88e7ffa36feb21 100644 (file)
@@ -53,8 +53,8 @@ AS = as
 AR = ar
 AR_FLAGS = rc
 CC = cc
-$(start-sanitize-chill)
 CFLAGS = -g
+$(start-sanitize-chill)
 CHILLFLAGS = $(CFLAGS)
 CHILL_LIB = -lchill
 $(end-sanitize-chill)
@@ -76,6 +76,10 @@ MAKEINFO = `if [ -f $${rootme}/texinfo/C/makeinfo ] ; \
        then echo $${rootme}/texinfo/C/makeinfo ; \
        else echo makeinfo ; fi`
 
+
+# libraries that may need to be augmented on a system-by-system basis
+X11_LIB = -lX11
+
 # compilers to use to create programs which must be run in the build
 # environment.
 CC_FOR_BUILD = $(CC)
@@ -210,7 +214,7 @@ $(start-sanitize-chill)\
        "CHILLFLAGS=$(CHILLFLAGS)" \
        "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
        "CHILL_LIB=$(CHILL_LIB)" \
-$(start-sanitize-chill)\
+$(end-sanitize-chill)\
        "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
        "INSTALL=$(INSTALL)" \
        "INSTALL_DATA=$(INSTALL_DATA)" \
@@ -227,9 +231,11 @@ $(start-sanitize-chill)\
 
 # Flags that are concerned with the location of the X11 include files
 # and library files
+
 X11_FLAGS_TO_PASS = \
        "X11_INCLUDE_FLAGS=$(X11_INCLUDE_FLAGS)" \
-       "X11_LIB_FLAGS=$(X11_LIB_FLAGS)"
+       "X11_LIB_FLAGS=$(X11_LIB_FLAGS)" \
+       "X11_LIB=$(X11_LIB)"
 
 # Flags to pass down to makes which are built with the target
 # environment (e.g. libg++, xiberty, newlib).  -- keep these in alpha order please
@@ -313,7 +319,7 @@ install-dir.info:
 
 all.normal: all-m4 all-autoconf all-libiberty all-mmalloc all-texinfo \
        all-byacc all-flex all-opcodes all-bfd all-ld all-gas all-tgas \
-       all-gcc all-binutils  all-libg++ all-readline all-z8ksim all-h8300sim all-gdb \
+       all-gcc all-binutils  all-libg++ all-readline all-sim all-gdb \
        all-make all-rcs all-cvs all-diff all-grep \
        all-patch all-emacs all-ispell all-etc \
        all-tcl all-tk all-expect \
@@ -323,11 +329,11 @@ all.normal: all-m4 all-autoconf all-libiberty all-mmalloc all-texinfo \
        $(end-sanitize-chill) \
        all-gprof all-send_pr all-libm all-deja-gnu \
        all-fileutils all-find all-gawk all-sed all-shellutils \
-       all-textutils all-time all-wdiff
+       all-textutils all-time all-wdiff all-uudecode 
 
 
 all.cross: all-libiberty all-mmalloc all-gas all-byacc all-flex all-ld \
-       all-opcodes all-z8ksim all-h8300sim all-bfd all-readline \
+       all-opcodes all-bfd all-readline all-sim \
        all-gdb all-binutils all-gcc all-newlib \
        $(start-sanitize-chill) \
        all-chillrt \
@@ -401,20 +407,29 @@ install-no-fixedincludes: install-dirs gcc-no-fixedincludes \
        install-tcl \
        install-texinfo \
        install-tk  \
-       install-z8ksim \
-       install-h8300sim \
+       install-sim \
        install-fileutils install-find install-gawk install-m4 install-sed install-shellutils \
-       install-textutils install-time install-wdiff
+       install-textutils install-time install-wdiff install-uudecode
 
+#
+# Install the gcc headers files, but not the fixed include files,
+# which we are not allowed to distribute.  This rule is very dependent
+# on the workings of the gcc Makefile.in.
+#
 gcc-no-fixedincludes:
-       @if [ -f ./gcc/Makefile ] ; then \
-               rootme=`pwd` ; export rootme ; \
-               (cd ./gcc; \
-               $(MAKE) $(FLAGS_TO_PASS) install install-man \
-                       "INSTALL_HEADERS=install-common-headers install-float-h install-limits-h") ; \
-       else \
-               true ; \
-       fi
+       @if [ -f ./gcc/Makefile ]; then \
+         rm -rf gcc/tmp-include; \
+         mv gcc/include gcc/tmp-include 2>/dev/null; \
+         mkdir gcc/include; \
+         touch gcc/stmp-fixincludes; \
+         rm -f gcc/stmp-headers; \
+         rootme=`pwd`; export rootme; \
+         srcroot=`cd $(srcdir); pwd` ; export srcroot; \
+         (cd ./gcc; \
+          $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
+         rm -rf gcc/include; \
+         mv gcc/tmp-include gcc/include 2>/dev/null; \
+       else true; fi
 
 install.cross: install-dirs install-libiberty install-mmalloc \
         install-binutils install-opcodes install-byacc install-flex \
@@ -714,7 +729,7 @@ install-flex: force
                true ; \
        fi
 ### gcc
-all-gcc: all-libiberty all-byacc all-binutils
+all-gcc: all-libiberty all-byacc all-binutils all-gas
        @if [ -f ./gcc/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                srcroot=`cd $(srcdir); pwd` ; export srcroot ; \
@@ -1117,45 +1132,25 @@ install-expect: force
                true ; \
        fi
 
-### z8ksim
-all-z8ksim: all-bfd 
-       @if [ -f ./z8ksim/Makefile ] ; then \
-               rootme=`pwd` ; export rootme ; \
-               (cd ./z8ksim; \
-               $(MAKE) $(FLAGS_TO_PASS) all) ; \
-       else \
-               true ; \
-       fi
-
-install-z8ksim: force
-       @if [ -f ./z8ksim/Makefile ] ; then \
-               rootme=`pwd` ; export rootme ; \
-               (cd ./z8ksim; \
-               $(MAKE) $(FLAGS_TO_PASS) install) ; \
-       else \
-               true ; \
-       fi
-
-### h8300sim:
-all-h8300sim:  all-bfd 
-       @if [ -f ./h8300sim/Makefile ] ; then \
+### sim
+all-sim: all-bfd 
+       @if [ -f ./sim/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
-               (cd ./h8300sim; \
+               (cd ./sim; \
                $(MAKE) $(FLAGS_TO_PASS) all) ; \
        else \
                true ; \
        fi
 
-install-h8300sim: force
-       @if [ -f ./h8300sim/Makefile ] ; then \
+install-sim: force
+       @if [ -f ./sim/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
-               (cd ./h8300sim; \
+               (cd ./sim; \
                $(MAKE) $(FLAGS_TO_PASS) install) ; \
        else \
                true ; \
        fi
 
-
 ### fileutils
 all-fileutils: force
        @if [ -f ./fileutils/Makefile ] ; then \
@@ -1275,6 +1270,23 @@ install-wdiff: force
                true ; \
        fi
 
+### uudecode
+all-uudecode: all-libiberty
+       @if [ -f ./uudecode/Makefile ] ; then \
+         rootme=`pwd` ; export rootme ; \
+               (cd ./uudecode; $(MAKE) $(FLAGS_TO_PASS) all) ; \
+       else \
+               true ; \
+       fi
+
+install-uudecode: force
+       @if [ -f ./uudecode/Makefile ] ; then \
+               rootme=`pwd` ; export rootme ; \
+               (cd ./uudecode; $(MAKE) $(FLAGS_TO_PASS) install) ; \
+       else \
+               true ; \
+       fi
+
 ### shellutils
 all-shellutils: force
        @if [ -f ./shellutils/Makefile ] ; then \
@@ -1438,11 +1450,11 @@ Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
 #
 # Build GDB distributions that contain BFD, Include, Libiberty, Readline, etc
 
-DEVO_SUPPORT= README cfg-paper.texi Makefile.in configure configure.in \
-       config.sub config configure.man configure.texi move-if-change \
+DEVO_SUPPORT= README Makefile.in configure configure.in \
+       config.guess config.sub config etc move-if-change \
        COPYING.LIB
 GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline glob
-GDB_SUPPORT_FILES= $(GDB_SUPPORT_DIRS) texinfo/fsf/texinfo.tex
+GDB_SUPPORT_FILES= $(GDB_SUPPORT_DIRS)
 
 setup-dirs: force
        ./configure sun4
@@ -1454,7 +1466,7 @@ gdb.tar.Z: setup-dirs
        (cd gdb; $(MAKE) -f Makefile.in make-proto-gdb.dir)
        $(MAKE) $(MFLAGS) -f Makefile.in make-gdb.tar.Z
 
-make-gdb.tar.Z: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/fsf/texinfo.tex
+make-gdb.tar.Z: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/texinfo.tex
        rm -rf proto-toplev; mkdir proto-toplev
        ln -s ../gdb/proto-gdb.dir proto-toplev/gdb
        (cd proto-toplev; for i in $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS); do \
@@ -1467,21 +1479,23 @@ make-gdb.tar.Z: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/fsf/texinfo.tex
        ln proto-toplev/gdb/COPYING proto-toplev/include/COPYING
        rm                          proto-toplev/readline/COPYING
        ln proto-toplev/gdb/COPYING proto-toplev/readline/COPYING
-       # Take out texinfo from configurable dirs
+
+       # Take out texinfo and glob from configurable dirs
        rm proto-toplev/configure.in
-       sed '/^configdirs=/s/texinfo //' <configure.in >proto-toplev/configure.in
-       # Take out glob from buildable dirs
-       rm proto-toplev/Makefile.in
+       sed -e '/^host_tools=/s/texinfo //' \
+           -e '/^host_libs=/s/glob //' \
+           <configure.in >proto-toplev/configure.in
 
-       sed -e '/^SUBDIRS =/s/glob //' \
-           -e '/^all\.normal: /s/\all-texinfo //' \
-           -e '/^clean: /s/clean-texinfo //' \
-           -e '/^install\.all: /s/install-texinfo //' \
+       # Take out texinfo from a few places; make simple BISON=bison line.
+       rm proto-toplev/Makefile.in
+       sed -e '/^all\.normal: /s/\all-texinfo //' \
+           -e '/^      install-texinfo /d' \
+           -e '\/^BISON =/,\/^$$/c\
+               BISON = bison' \
        <Makefile.in >proto-toplev/Makefile.in
 
        mkdir proto-toplev/texinfo
-       mkdir proto-toplev/texinfo/fsf
-       ln -s ../../../texinfo/fsf/texinfo.tex proto-toplev/texinfo/fsf/
+       ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
        chmod og=u `find proto-toplev -print`
        (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \
                echo "==> Making gdb-$$VER.tar.Z"; \
This page took 0.027623 seconds and 4 git commands to generate.