all:
	(cd src; make -f Makefile CPU=BSDI all)

install:
	-mkdir -p /usr/contrib/interviews
	rm -f installed
	ln -s /usr/contrib/interviews installed
	chmod 755 /usr/contrib/interviews
	umask 022; cd src; make -f Makefile install CPU=BSDI
	chmod +x ./fixman
	./fixman /usr/contrib/interviews/man/mann

mansourceinstall:

clean:
	cd src; make -f Makefile clean CPU=BSDI
	rm -f installed

cleandir: clean
	find . -type d -name BSDI -print | xargs rm -rf
	
obj:

objdir:

tags:

depend:	Makefiles
	cd src; make -f Makefile CPU=BSDI depend

Makefiles:
	cd src; make -f Makefile CPU=BSDI Makefiles
