annotate etc/Makefile @ 4841:8800a7377ceb
(Vafter_insert_file_functions): New variable.
(Vwrite_region_annotate_functions): New variable.
(Qcar_less_than_car): New variable.
(Fcar_less_than_car): New function.
(syms_of_fileio): Make Lisp variables and function available.
staticpro Qcar_less_than_car.
(a_write, build_annotations): New functions.
(Fwrite_region): Call them.
(Finsert_file_contents): Run the Vafter_insert_file_functions.
author |
Richard M. Stallman <rms@gnu.org> |
date |
Sat, 09 Oct 1993 21:30:48 +0000 |
parents |
3ce509de88ec |
children |
cb15d148ee99 |
rev |
line source |
2260
|
1 DESTDIR=
|
|
2 LIBDIR=/usr/local/lib
|
|
3 BINDIR=/usr/local/bin
|
|
4 MANDIR=/usr/man/man1
|
|
5 MANEXT=1
|
|
6
|
|
7 all:
|
|
8
|
3752
|
9 mostlyclean clean:
|
|
10 -rm -f core
|
2260
|
11
|
3752
|
12 distclean realclean:
|
|
13 -rm -f DOC* core
|
2260
|
14
|
|
15 SOURCES = [0-9A-QS-Z]* README *.[ch16] emacs.* etags.* ledit.l ms-* \
|
|
16 news.texi rc2log refcard.tex spook-lines termcap.* ulimit.hack \
|
|
17 vcdiff vipcard.tex xmouse.doc
|
|
18
|
|
19 unlock:
|
|
20 chmod u+w $(SOURCES)
|
|
21
|
|
22 relock:
|
|
23 chmod u-w $(SOURCES)
|