#
# $Id: Makefile,v 1.1 1997/01/29 03:37:02 morgan Exp $
#

dummy:
	@echo "*** This is not a top level Makefile!"

all:
	@echo "nothing to do in this directory"

install: all

remove: all

clean:
	rm -f core *.a *.so *.o *~

extraclean: clean
	rm -f *.out

