You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 regels
389 B

  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