Use "make cask" to install the dependencies. Use "make compile" to byte-compile counsel-projectile.el.
16 lines
209 B
Makefile
16 lines
209 B
Makefile
emacs ?= emacs
|
|
CASK = ~/.cask/bin/cask
|
|
BEMACS = $(emacs) -batch -l targets/elpa.el
|
|
|
|
all: compile
|
|
|
|
cask:
|
|
$(CASK)
|
|
|
|
compile:
|
|
$(BEMACS) -l targets/compile.el
|
|
|
|
.PHONY: all compile clean cask
|
|
|
|
clean:
|
|
rm -f *.elc
|