From: morioka Date: Fri, 14 Mar 1997 09:30:55 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emh-0_21~31 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=163346e051406728286d9934c58da8a3e534ed95;p=elisp%2Femh.git *** empty log message *** --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..80a2bc5 --- /dev/null +++ b/Makefile @@ -0,0 +1,33 @@ +# +# $Id: Makefile,v 0.0 1997-03-14 09:30:55 morioka Exp $ +# + +VERSION = 0.7 + +TAR = gtar +RM = /bin/rm -f +EMACS = emacs +FLAGS = -batch -q -no-site-file -l EMH-MK + +PREFIX = + +FILES = README.en Makefile EMH-MK EMH-CFG EMH-ELS *.el ChangeLog + + +elc: + $(EMACS) $(FLAGS) -f compile-emh + +install: elc + $(EMACS) $(FLAGS) -f install-emh $(PREFIX) + + +clean: + -rm *.elc + + +tar: + tar cvf ../emh-$(VERSION).tar $(FILES) + -cd ..; mkdir emh-$(VERSION) + cd ../emh-$(VERSION); $(TAR) xvf ../emh-$(VERSION).tar + cd ..; $(TAR) cvzf emh-$(VERSION).tar.gz emh-$(VERSION) + cd ..; $(RM) -r emh-$(VERSION); rm emh-$(VERSION).tar