X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=Makefile;fp=Makefile;h=d27eb07b8ddb8e9a75de779b6813377b133e2d3c;hb=df18bae821b2fd5d2be8bf9aee240f91c77bd497;hp=0000000000000000000000000000000000000000;hpb=13a43cd8b6a551a401faac658e75058ddbd4384c;p=elisp%2Flemi.git diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d27eb07 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +# +# Makefile for LEIM +# + +EMACS = emacs +FLAGS = -batch -q -no-site-file -l lemi-path.el +RM = /bin/rm -f + +GARBAGES = */*.elc + +elc: + $(EMACS) $(FLAGS) -f batch-byte-compile */*.el + +clean: + -$(RM) $(GARBAGES)