27 lines
640 B
Text
27 lines
640 B
Text
|
FILES := $(wildcard *.el)
|
||
|
|
||
|
PACKAGE_TARGETS := $(addprefix package-,$(FILES))
|
||
|
|
||
|
package: $(PACKAGE_TARGETS)
|
||
|
|
||
|
package-%: %
|
||
|
emacs --batch \
|
||
|
--load oni-package.el \
|
||
|
--funcall package-initialize \
|
||
|
--eval '(package-upload-file "$^")'
|
||
|
|
||
|
test-%:
|
||
|
emacs --batch \
|
||
|
--load oni-package.el \
|
||
|
--funcall package-initialize \
|
||
|
--eval '(package-refresh-contents)' \
|
||
|
--load ert \
|
||
|
--load "test/$*-test.el" \
|
||
|
--funcall package-initialize \
|
||
|
--eval "(package-install-file \"oni-data-dir.el\")" \
|
||
|
--eval "(package-install-file \"$*.el\")" \
|
||
|
--funcall ert-run-tests-batch-and-exit
|
||
|
|
||
|
clean:
|
||
|
rm -fv $(FILES)
|