annotate etc/Makefile @ 6146:1a2a8ef9b4af

(makefile-mode): Set local-write-file-hooks, not write-file-hooks. Version 1.16. (makefile-mode): Correct `make-variable-buffer-local' to `make-local-variable'. Set indent-tabs-mode to t. (makefile-insert-macro-ref): Do not append a space to the inserted macro reference. (makefile-insert-macro-ref): Likewise if the reference is to one of makefile-runtime-macros-list. (makefile-format-macro-ref): If the name of the macro ref starts with a '(' or '{' then the enclosing parentheses are not added. (makefile-warn-suspicious-lines): New function. Changed mode name to "Makefile" instead of "makefile".
author Richard M. Stallman <rms@gnu.org>
date Wed, 02 Mar 1994 07:57:04 +0000
parents 3ce509de88ec
children cb15d148ee99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2260
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
1 DESTDIR=
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
2 LIBDIR=/usr/local/lib
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
3 BINDIR=/usr/local/bin
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
4 MANDIR=/usr/man/man1
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
5 MANEXT=1
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
6
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
7 all:
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
8
3752
3ce509de88ec entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 2260
diff changeset
9 mostlyclean clean:
3ce509de88ec entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 2260
diff changeset
10 -rm -f core
2260
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
11
3752
3ce509de88ec entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 2260
diff changeset
12 distclean realclean:
3ce509de88ec entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 2260
diff changeset
13 -rm -f DOC* core
2260
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
14
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
15 SOURCES = [0-9A-QS-Z]* README *.[ch16] emacs.* etags.* ledit.l ms-* \
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
16 news.texi rc2log refcard.tex spook-lines termcap.* ulimit.hack \
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
17 vcdiff vipcard.tex xmouse.doc
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
18
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
19 unlock:
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
20 chmod u+w $(SOURCES)
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
21
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
22 relock:
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
23 chmod u-w $(SOURCES)