* d10v_sim.h (SEXT56): Define.
[deliverable/binutils-gdb.git] / sim / Makefile.in
index 92fd900a38044397bdf6fcae90732d8eedacebe5..c70355c1f2ec5d63704ee35ce840590c3c9d5537 100644 (file)
@@ -61,10 +61,6 @@ RANLIB = @RANLIB@
 
 SUBDIRS = @subdirs@
 
-.NOEXPORT:
-MAKEOVERRIDES=
-
-
 INCDIR = $(srcdir)/../include
 CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
 DEP = mkdep
@@ -133,6 +129,16 @@ all:
                else true; fi; \
        done
 
+clean mostlyclean:
+       @rootme=`pwd` ; export rootme ; \
+       for dir in . ${SUBDIRS}; do \
+               if [ "$$dir" = "." ]; then \
+                       true; \
+               elif [ -d $$dir ]; then \
+                       (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@); \
+               else true; fi; \
+       done
+
 distclean maintainer-clean realclean:
        @rootme=`pwd` ; export rootme ; \
        for dir in . ${SUBDIRS}; do \
@@ -178,6 +184,9 @@ dvi:
 ### 
 ### 
 
+.NOEXPORT:
+MAKEOVERRIDES=
+
 .PHONY: check installcheck
 check:
 installcheck:
@@ -196,7 +205,7 @@ config.status: configure
 # This is intended to be invoked in $srcdir as
 # "make -f Makefile.in autoconf-common".
 .PHONY: autoconf-common
-autoconf-common:
+autoconf-common autoheader-common:
        for d in * ; \
        do \
            if [ -d $$d -a -f $$d/configure.in ] ; \
@@ -205,11 +214,16 @@ autoconf-common:
                then \
                    echo "Running autoconf in $$d ..." ; \
                    (cd $$d && autoconf) ; \
+                   if [ $* = autoheader-common ] ; \
+                   then \
+                     echo "Running autoheader in $$d ..." ; \
+                     (cd $$d && autoheader) ; \
+                   fi ; \
                fi ; \
            fi ; \
        done
 
-autoconf-changelog:
+autoconf-changelog autoheader-changelog:
        id="`id | sed -e 's/^[^(]*(\([^)]*\).*$$/\1/'`" ; \
        name=`grep "^$$id:" /etc/passwd | cut -f 5 -d ':'` ; \
        host="`hostname`" ; \
@@ -225,6 +239,10 @@ autoconf-changelog:
                    ( echo "$$date  $$name  <$$id@$$host>" ; \
                      echo "" ; \
                      echo "    * configure: Regenerated to track ../common/aclocal.m4 changes." ; \
+                     if [ $* = autoheader-changelog ] ; \
+                     then \
+                       echo "  * config.in: Ditto." ; \
+                     fi ; \
                      echo "" ; \
                      cat $$d/ChangeLog \
                    ) > $$d/new-ChangeLog ; \
@@ -232,7 +250,7 @@ autoconf-changelog:
            fi ; \
        done
 
-autoconf-install:
+autoconf-install autoheader-install:
        for d in * ; \
        do \
            if [ -d $$d -a -f $$d/configure.in ] ; \
This page took 0.023379 seconds and 4 git commands to generate.