annotate lisp/tooltalk/Makefile @ 165:5a88923fcbfe
r20-3b9
Import from CVS: tag r20-3b9
author |
cvs |
date |
Mon, 13 Aug 2007 09:44:42 +0200 |
parents |
376386a54a3c |
children |
|
rev |
line source |
0
|
1 # @(#)Makefile 1.4 94/04/19
|
|
2
|
|
3 EMACS=../../src/xemacs
|
|
4
|
|
5 TOOLTALK.el = tooltalk-macros.el tooltalk-init.el tooltalk-util.el
|
|
6 TOOLTALK.elc = $(TOOLTALK.el:.el=.elc)
|
|
7
|
|
8 all: $(TOOLTALK.elc)
|
|
9
|
|
10 .INIT: tooltalk-load.el $(TOOLTALK.el)
|
|
11
|
|
12 .SUFFIXES: .elc .el
|
|
13
|
|
14 .el.elc:
|
|
15 $(EMACS) -batch -q -f batch-byte-compile $(@:.elc=.el)
|
|
16
|
|
17 clean:
|
|
18 $(RM) $(TOOLTALK.elc)
|