# ~/public_html/bin/.csh/Makefile

test:
	@echo "testing /usr/bin/file"
	./test_exec /usr/bin/file
	@echo "/usr/bin/file is seen as an executable"
	@echo "testing /etc/rc"
	./test_exec /etc/rc
	@echo "/etc/rc is seen as an executable" # should never get this far
install:
	true	# dummy

.include <berklix.mk>

