* arc-dis.c (print_insn_arc): Rename to print_insn and make static.
[deliverable/binutils-gdb.git] / sim / Makefile.in
index 12faaab32919d306488868d5d92de3421e479dec..ebfc1e819e95311ddfed3ef4c1b5475676a3dfd6 100644 (file)
@@ -19,8 +19,9 @@
 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
 srcdir = .
-
+srcroot = $(srcdir)/..
 prefix = /usr/local
+program_transform_name =
 
 exec_prefix = $(prefix)
 bindir = $(exec_prefix)/bin
@@ -44,9 +45,12 @@ docdir = doc
 
 SHELL = /bin/sh
 
-INSTALL = install -c
+INSTALL = $${srcroot}/../install.sh -c
 INSTALL_PROGRAM = $(INSTALL)
 INSTALL_DATA = $(INSTALL)
+INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
+INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1
+
 
 AR = ar
 AR_FLAGS = rc
@@ -55,6 +59,8 @@ BISON = bison
 MAKEINFO = makeinfo
 RANLIB = ranlib
 
+MAKEOVERRIDES=
+
 INCDIR = $(srcdir)/../include
 CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
 DEP = mkdep
@@ -63,7 +69,7 @@ SUBDIRS = " this is set by configire, don't change this "
 
 ALL=all-nothing
 CLEAN=clean-nothing
-INSTALL=install-nothing
+DO_INSTALL=install-nothing
 
 #### host and target dependent Makefile fragments come in here.
 ###
@@ -87,17 +93,27 @@ FLAGS_TO_PASS = \
 STAGESTUFF = $(TARGETLIB) $(OFILES)
 
 
-all:   endian.h $(ALL)
+all:   $(ALL)
        
 clean:  $(CLEAN)
 
-install: $(INSTALL)
+install: $(DO_INSTALL)
+
+mostlyclean: clean
+
+distclean realclean: clean
+       rm -f Makefile config.status
+
+info:
+install-info:
+dvi:
+
+### 
+### 
 
-### build endian.h via a temporary so that interrupted builds will not
-### leave an incomplete endian.h lying around.
-endian.h: endian
-       ./endian > e.h
-       mv -f e.h endian.h
+.PHONY: check installcheck
+check:
+installcheck:
 
 ### none
 
@@ -111,7 +127,7 @@ install-nothing: force
 ### z8k
 
 all-z8k: force
-       if [ -f ./z8k/Makefile ] ; then \
+       @if [ -f ./z8k/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
        else \
@@ -119,15 +135,16 @@ all-z8k: force
        fi
 
 install-z8k: force
-       if [ -f ./z8k/Makefile ] ; then \
+       @if [ -f ./z8k/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
+                 srcroot=`cd $(srcdir); pwd`; export srcroot; \
                ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
        else \
                true ; \
        fi
 
 clean-z8k: force
-       if [ -f ./z8k/Makefile ] ; then \
+       @if [ -f ./z8k/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
        else \
@@ -138,7 +155,7 @@ clean-z8k: force
 ### h8300
 
 all-h8300: force
-       if [ -f ./h8300/Makefile ] ; then \
+       @if [ -f ./h8300/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
        else \
@@ -146,15 +163,16 @@ all-h8300: force
        fi
 
 install-h8300: force
-       if [ -f ./h8300/Makefile ] ; then \
+       @if [ -f ./h8300/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
+                 srcroot=`cd $(srcdir); pwd`; export srcroot; \
                ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
        else \
                true ; \
        fi
 
 clean-h8300: force
-       if [ -f ./h8300/Makefile ] ; then \
+       @if [ -f ./h8300/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
        else \
@@ -166,7 +184,7 @@ clean-h8300: force
 ### h8500
 
 all-h8500: force
-       if [ -f ./h8500/Makefile ] ; then \
+       @if [ -f ./h8500/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
        else \
@@ -174,15 +192,16 @@ all-h8500: force
        fi
 
 install-h8500: force
-       if [ -f ./h8500/Makefile ] ; then \
+       @if [ -f ./h8500/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
+                 srcroot=`cd $(srcdir); pwd`; export srcroot; \
                ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
        else \
                true ; \
        fi
 
 clean-h8500: force
-       if [ -f ./h8500/Makefile ] ; then \
+       @if [ -f ./h8500/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
        else \
@@ -191,6 +210,34 @@ clean-h8500: force
 
 ###
 
+### sh
+
+all-sh: force
+       @if [ -f ./sh/Makefile ] ; then \
+               rootme=`pwd` ; export rootme ; \
+               ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
+       else \
+               true ; \
+       fi
+
+install-sh: force
+       @if [ -f ./sh/Makefile ] ; then \
+               rootme=`pwd` ; export rootme ; \
+               ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
+       else \
+               true ; \
+       fi
+
+clean-sh: force
+       @if [ -f ./sh/Makefile ] ; then \
+               rootme=`pwd` ; export rootme ; \
+               ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
+       else \
+               true ; \
+       fi
+
+###
+
 force:
 
 
This page took 0.026021 seconds and 4 git commands to generate.