Revision 10, 459 bytes
(checked in by hayamizu, 17 years ago)
|
lang/elisp/twittering-mode: Initial import
|
Line | |
---|
1 | |
---|
2 | EMACS21 = /home/haya/usr/bin/emacs-21.4 |
---|
3 | EMACS22 = /home/haya/usr/bin/emacs-22.1 |
---|
4 | |
---|
5 | batchtest : twittering-mode.el |
---|
6 | $(EMACS21) --no-init-file --batch -f batch-byte-compile twittering-mode.el |
---|
7 | rm twittering-mode.elc |
---|
8 | $(EMACS22) --no-init-file --batch -f batch-byte-compile twittering-mode.el |
---|
9 | rm twittering-mode.elc |
---|
10 | |
---|
11 | test : twittering-mode.el |
---|
12 | $(EMACS21) -q -l local.test-emacs21.el & |
---|
13 | $(EMACS22) -q -l local.test-emacs22.el & |
---|
14 | |
---|
15 | clean : |
---|
16 | rm twittering-mode.elc |
---|
17 | |
---|