Raw File
Makefile
## Build and install stuff

EMACS = emacs

ELC = git.elc vc-git.elc
INSTALL ?= install
INSTALL_ELC = $(INSTALL) -m 644
prefix ?= $(HOME)
emacsdir = $(prefix)/share/emacs/site-lisp

all: $(ELC)

install: all
	$(INSTALL) -d $(emacsdir)
	$(INSTALL_ELC) $(ELC) $(emacsdir)

%.elc: %.el
	$(EMACS) --batch --eval '(byte-compile-file "$<")'

clean:; rm -f $(ELC)
back to top