*** empty log message ***
authormorioka <morioka>
Fri, 14 Mar 1997 09:30:55 +0000 (09:30 +0000)
committermorioka <morioka>
Fri, 14 Mar 1997 09:30:55 +0000 (09:30 +0000)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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