# Webster
SHELL=/bin/sh

SUBDIRS=CommandLine Interactive

all install clean spotless::
	for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) $(MFLAGS) $@); done

spotless::
	-rm *~

install::
	@echo "------------------------------------------------------------------------------"
	@echo "If you want emacs support,"
	@echo "do not forget to move the appropriate file from Clients/Emacs-1x/webster.el"
	@echo "to your local lisp directory (maybe /usr/local/lib/emacs/site-lisp)."
	@echo "------------------------------------------------------------------------------"

