You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
354 B
21 lines
354 B
19 years ago
|
## 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)
|