80 lines
2.6 KiB
Makefile
80 lines
2.6 KiB
Makefile
FILES := $(wildcard *.el)
|
|
|
|
PACKAGE_TARGETS := $(addprefix package-,$(FILES))
|
|
|
|
package: $(PACKAGE_TARGETS) package-oni-conf package-oni-css package-oni-elisp
|
|
|
|
package-%: %
|
|
emacs --batch \
|
|
--load oni-package.el \
|
|
--funcall package-initialize \
|
|
--eval '(package-upload-file "$^")'
|
|
|
|
package-oni-conf:
|
|
emacs --batch \
|
|
--load oni-package.el \
|
|
--funcall package-initialize \
|
|
--eval "(package-upload-file (car (sort (file-expand-wildcards \"oni-conf/dist/*.tar\") #'string>)))"
|
|
|
|
package-oni-css:
|
|
emacs --batch \
|
|
--load oni-package.el \
|
|
--funcall package-initialize \
|
|
--eval "(package-upload-file (car (sort (file-expand-wildcards \"oni-css/dist/*.tar\") #'string>)))"
|
|
|
|
package-oni-elisp:
|
|
emacs --batch \
|
|
--load oni-package.el \
|
|
--funcall package-initialize \
|
|
--eval "(package-upload-file (car (sort (file-expand-wildcards \"oni-elisp/dist/*tar\") #'string>)))"
|
|
|
|
install-%:
|
|
emacs --batch \
|
|
--load oni-package.el \
|
|
--funcall package-initialize \
|
|
--eval '(package-refresh-contents)' \
|
|
$(foreach DEP,$(DEPS),--eval "(package-install-file \"$(DEP).el\")") \
|
|
--eval "(package-install-file \"$*.el\")"
|
|
|
|
install-oni-conf:
|
|
emacs --batch \
|
|
--load oni-package.el \
|
|
--funcall package-initialize \
|
|
--eval '(package-refresh-contents)' \
|
|
$(foreach DEP,$(DEPS),--eval "(package-install-file \"$(DEP).el\")") \
|
|
--eval "(package-install-file (car (sort (file-expand-wildcards \"oni-conf/dist/*.tar\") #'string>)))"
|
|
|
|
install-oni-css:
|
|
emacs --batch \
|
|
--load oni-package.el \
|
|
--funcall package-initialize \
|
|
--eval '(package-refresh-contents)' \
|
|
$(foreach DEP,$(DEPS),--eval "(package-install-file \"$(DEP).el\")") \
|
|
--eval "(package-install-file (car (sort (file-expand-wildcards \"oni-css/dist/*.tar\") #'string>)))"
|
|
|
|
install-oni-elisp:
|
|
emacs --batch \
|
|
--load oni-package.el \
|
|
--funcall package-initialize \
|
|
--eval '(package-refresh-contents)' \
|
|
$(foreach DEP,$(DEPS),--eval "(package-install-file \"$(DEP).el\")") \
|
|
--eval "(package-install-file (car (sort (file-expand-wildcards \"oni-elisp/dist/*.tar\") #'string>)))"
|
|
|
|
test-%: install-%
|
|
emacs --batch \
|
|
--load oni-package.el \
|
|
--funcall package-initialize \
|
|
--load ert \
|
|
--load "test/$*-test.el" \
|
|
--eval "(setq ert-batch-backtrace-right-margin nil)" \
|
|
--funcall ert-run-tests-batch-and-exit
|
|
|
|
test-oni-bookmark: DEPS := oni-data-dir
|
|
test-oni-conf: DEPS := oni-yasnippet
|
|
test-oni-css: DEPS := oni-company oni-fci
|
|
test-oni-php: DEPS := oni-flycheck oni-company oni-fci
|
|
test-oni-elisp: DEPS := oni-company oni-flycheck oni-paredit oni-fci \
|
|
oni-yasnippet
|
|
|
|
clean:
|
|
rm -fv $(FILES)
|