* som.h (som_symbol_type): Delete unused a.out-related fields.
[deliverable/binutils-gdb.git] / sim / Makefile.in
index 588e31e70cf04c48c58be9e5abf0ad7d0ad3273c..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
@@ -90,22 +96,24 @@ STAGESTUFF = $(TARGETLIB) $(OFILES)
 all:   $(ALL)
        
 clean:  $(CLEAN)
-       rm -f endian e.h endian.h
 
 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
+### 
+### 
 
-endian: $(srcdir)/endian.c
-       $(CC) $(CFLAGS) -o endian $(srcdir)/endian.c
+.PHONY: check installcheck
+check:
+installcheck:
 
 ### none
 
@@ -118,8 +126,8 @@ install-nothing: force
 
 ### z8k
 
-all-z8k: endian.h force
-       if [ -f ./z8k/Makefile ] ; then \
+all-z8k: force
+       @if [ -f ./z8k/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
        else \
@@ -127,15 +135,16 @@ all-z8k: endian.h 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 \
@@ -145,8 +154,8 @@ clean-z8k: force
 
 ### h8300
 
-all-h8300: endian.h force
-       if [ -f ./h8300/Makefile ] ; then \
+all-h8300: force
+       @if [ -f ./h8300/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
        else \
@@ -154,15 +163,16 @@ all-h8300: endian.h 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 \
@@ -173,8 +183,8 @@ clean-h8300: force
 
 ### h8500
 
-all-h8500: endian.h force
-       if [ -f ./h8500/Makefile ] ; then \
+all-h8500: force
+       @if [ -f ./h8500/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
        else \
@@ -182,15 +192,16 @@ all-h8500: endian.h 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 \
@@ -201,8 +212,8 @@ clean-h8500: force
 
 ### sh
 
-all-sh: endian.h force
-       if [ -f ./sh/Makefile ] ; then \
+all-sh: force
+       @if [ -f ./sh/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
        else \
@@ -210,7 +221,7 @@ all-sh: endian.h force
        fi
 
 install-sh: force
-       if [ -f ./sh/Makefile ] ; then \
+       @if [ -f ./sh/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
        else \
@@ -218,7 +229,7 @@ install-sh: force
        fi
 
 clean-sh: force
-       if [ -f ./sh/Makefile ] ; then \
+       @if [ -f ./sh/Makefile ] ; then \
                rootme=`pwd` ; export rootme ; \
                ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
        else \
This page took 0.025334 seconds and 4 git commands to generate.