25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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