view elpa/ivy-0.8.0/Makefile @ 156:c745e2cc79ee

elpy: update along with direct deps
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Mon, 27 Feb 2017 12:17:38 -0500
parents
children
line wrap: on
line source

emacs ?= emacs

LOAD = -l colir.el -l ivy.el -l swiper.el -l counsel.el

.PHONY: all compile clean

all: test

test:
	$(emacs) -batch $(LOAD) -l ivy-test.el -f ert-run-tests-batch-and-exit

compile:
	$(emacs) -batch --eval "(progn (add-to-list 'load-path default-directory) (mapc #'byte-compile-file '(\"ivy.el\" \"swiper.el\" \"counsel.el\")))"

clean:
	rm -f *.elc