File: makefile.pkg

package info (click to toggle)
sml-mode 3.9.5-10
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 308 kB
  • ctags: 302
  • sloc: lisp: 1,624; makefile: 144; sh: 102
file content (14 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
PACKAGE = sml-mode
ELFILES	= sml-compat.el sml-util.el sml-defs.el sml-move.el sml-mode.el \
	sml-proc.el

default: elcfiles

TESTCASE = testcases.sml

test:
	$(RM) $(TESTCASE).new
	$(EMACS) -batch $(TESTCASE) \
	    --eval '(indent-region (point-min) (point-max) nil)' \
	    --eval '(write-region (point-min) (point-max) "$(TESTCASE).new")'
	diff -u $(TESTCASE) $(TESTCASE).new