소스 검색

Add Makefile that has test target

pull/1/head
10sr 10 년 전
부모
커밋
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

불러오는 중...
취소
저장