1VPATH = @srcdir@
2srcdir = @srcdir@
3
4all: 
5	@echo "Nothing to be done for all..."
6
7#### host, target, and site specific Makefile frags come in here.
8
9clean mostlyclean:
10	-rm -f *.o *~ core tmp.c tmp.s weird.s errs
11
12distclean maintainer-clean realclean: clean
13	-rm -f Makefile config.status config.log
14
15Makefile: $(srcdir)/Makefile.in $(srcdir)/configure.in
16	$(SHELL) ./config.status --recheck
17