瀏覽代碼

Add Makefile that has test target

pull/1/head
10sr 9 年之前
父節點
當前提交
2a58bef2c7
共有 1 個檔案被更改,包括 20 行新增0 行删除
  1. +20
    -0
      Makefile

+ 20
- 0
Makefile 查看文件

@@ -0,0 +1,20 @@
emacs ?= emacs

shrc_loadables = sh bash zsh

.PHONY: all default test emacs

all: default

emacs: emacs.el
$(emacs) -q --debug-init --batch --load $< -f my-auto-install-package


test: test_el test_shrc

test_shrc: shrc
sh -exc 'for sh in $(shrc_loadables); do $$sh -n $<; done'

test_el: emacs.el
$(emacs) -q --debug-init --batch --eval "(setq debug-on-error t)" \
--load $< --kill

Loading…
取消
儲存