ALL=all-nothing
CLEAN=clean-nothing
-INSTALL=install-nothing
+DO_INSTALL=install-nothing
#### host and target dependent Makefile fragments come in here.
###
all: endian.h $(ALL)
clean: $(CLEAN)
+ rm -f endian e.h endian.h
-install: $(INSTALL)
+install: $(DO_INSTALL)
+
+info:
+install-info:
### build endian.h via a temporary so that interrupted builds will not
### leave an incomplete endian.h lying around.
###
+### 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:
# appropriate for this directory. For more information, check any
# existing configure script.
-configdirs="h8300 z8k h8500"
+configdirs="h8300 z8k h8500 sh"
srctrigger=Makefile.in
srcname="sim"
target_dependent=true
h8300-*-*) sim_target=h8300 ;;
h8500-*-*) sim_target=h8500 ;;
z8k*-*-*) sim_target=z8k ;;
+ sh*-*-*) sim_target=sh ;;
*) sim_target=none ;;
esac