選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Makefile 389 B

1234567891011121314151617181920
  1. emacs ?= emacs
  2. shrc_loadables = sh bash zsh
  3. .PHONY: all default test emacs
  4. all: default
  5. emacs: emacs.el
  6. $(emacs) -q --debug-init --batch --load $< -f my-auto-install-package
  7. test: test_el test_shrc
  8. test_shrc: shrc
  9. sh -exc 'for sh in $(shrc_loadables); do $$sh -n $<; done'
  10. test_el: emacs.el
  11. $(emacs) -q --debug-init --batch --eval "(setq debug-on-error t)" \
  12. --load $< --kill