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
### z8k
-all-z8k: endian.h force
+all-z8k: force
if [ -f ./z8k/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
### h8300
-all-h8300: endian.h force
+all-h8300: force
if [ -f ./h8300/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
### sh
-all-sh: endian.h force
+all-sh: force
if [ -f ./sh/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) all) ; \