#
# $Id: Makefile,v 1.8 1998/06/13 07:49:55 saw Exp $
#

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

##########################################################

all:
	@echo "*** Nothing to make in this directory"

install: /etc/pam.conf

/etc/pam.conf: ./pam.conf
	./install_conf

remove:
	rm -f /etc/pam.conf

check:
	./md5itall

clean:
	rm -f core *~ .ignore_age

extraclean: clean

.PHONY: dummy all install remove check clean extraclean
