comparison etc/Makefile @ 10053:0c5b5d89288e

(eterm): New rule. (TIC): New variable.
author Richard M. Stallman <rms@gnu.org>
date Tue, 22 Nov 1994 21:05:42 +0000
parents cb15d148ee99
children 4baa1bd953d8
comparison
equal deleted inserted replaced
10052:c51fcff184b7 10053:0c5b5d89288e
19 unlock: 19 unlock:
20 chmod u+w $(SOURCES) 20 chmod u+w $(SOURCES)
21 21
22 relock: 22 relock:
23 chmod u-w $(SOURCES) 23 chmod u-w $(SOURCES)
24
25 # ${etcdir}/e/eterm is used by ../lisp/term.el.
26 # TERMINFO systems use terminfo files compiled by the Terminfo Compiler (tic).
27 # These files are binary, and depend on the version of tic, but they seem
28 # to be system-independent and backwardly compatible.
29 # So there should be no need to recompile the distributed binary version.
30 TIC=tic
31 e/eterm: e/eterm.ti
32 TERMINFO=`pwd`; export TERMINFO; $(TIC) e/eterm.ti
33