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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 # @(#)Makefile 1.4 94/04/19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 EMACS=../../src/xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 TOOLTALK.el = tooltalk-macros.el tooltalk-init.el tooltalk-util.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 TOOLTALK.elc = $(TOOLTALK.el:.el=.elc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 all: $(TOOLTALK.elc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 .INIT: tooltalk-load.el $(TOOLTALK.el)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 .SUFFIXES: .elc .el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 .el.elc:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 $(EMACS) -batch -q -f batch-byte-compile $(@:.elc=.el)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 clean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 $(RM) $(TOOLTALK.elc)