# files to install
# they all need the caml mode

FILES=lucy-font.el lucy-hilit.el lucy.el
        
install:
	cp $(FILES) $(EMACSDIR);
	@ echo "==========================================";
	@ echo "emacs mode installed in $(EMACSDIR)";
	@ echo "=========================================="

uninstall:
	(cd $(EMACSDIR);rm -f $(FILES));
	@ echo "==========================================";
	@ echo "emacs mode installed in $(EMACSDIR)";
	@ echo "=========================================="

clean:
	rm -f *~ #*#
