blob: 5ab776255c487a4d3795a906ea132933be074ee8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
DST=zencoding-mode.el
all: zencoding-mode.el
zencoding-mode.el: src/snippets.el src/*
rm -f $(DST)
touch $(DST)
cat src/comments.el >> $(DST)
cat src/init.el >> $(DST)
cat src/snippets.el >> $(DST)
cat src/html-abbrev.el >> $(DST)
cat src/css-abbrev.el >> $(DST)
cat src/mode-def.el >> $(DST)
src/snippets.el: conf/snippets.json
tools/json2hash conf/snippets.json -o src/snippets.el --defvar 'zencoding-snippets'
clean:
rm -f zencoding-mode.el src/snippets.el
test:
/usr/bin/env emacs --script src/test.el
docs:
echo docs
.PHONY: all test docs clean
|