]> code.delx.au - gnu-emacs/blob - lisp/progmodes/make-mode.el
(gnus-newsrc-file-version): Add defvar.
[gnu-emacs] / lisp / progmodes / make-mode.el
1 ;;; make-mode.el --- makefile editing commands for Emacs
2
3 ;; Copyright (C) 1992, 1994, 1999, 2000, 2001, 2002, 2003, 2004, 2005
4 ;; Free Software Foundation, Inc.
5
6 ;; Author: Thomas Neumann <tom@smart.bo.open.de>
7 ;; Eric S. Raymond <esr@snark.thyrsus.com>
8 ;; Maintainer: FSF
9 ;; Adapted-By: ESR
10 ;; Keywords: unix, tools
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING. If not, write to the
26 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
27 ;; Boston, MA 02110-1301, USA.
28
29 ;;; Commentary:
30
31 ;; A major mode for editing makefiles. The mode knows about Makefile
32 ;; syntax and defines M-n and M-p to move to next and previous productions.
33 ;;
34 ;; The keys $, =, : and . are electric; they try to help you fill in a
35 ;; macro reference, macro definition, ordinary target name, or special
36 ;; target name, respectively. Such names are completed using a list of
37 ;; targets and macro names parsed out of the makefile. This list is
38 ;; automatically updated, if necessary, whenever you invoke one of
39 ;; these commands. You can force it to be updated with C-c C-p.
40 ;;
41 ;; The command C-c C-f adds certain filenames in the current directory
42 ;; as targets. You can filter out filenames by setting the variable
43 ;; makefile-ignored-files-in-pickup-regex.
44 ;;
45 ;; The command C-c C-u grinds for a bit, then pops up a report buffer
46 ;; showing which target names are up-to-date with respect to their
47 ;; prerequisites, which targets are out-of-date, and which have no
48 ;; prerequisites.
49 ;;
50 ;; The command C-c C-b pops up a browser window listing all target and
51 ;; macro names. You can mark or unmark items with C-c SPC, and insert
52 ;; all marked items back in the Makefile with C-c TAB.
53 ;;
54 ;; The command C-c TAB in the makefile buffer inserts a GNU make builtin.
55 ;; You will be prompted for the builtin's args.
56 ;;
57 ;; There are numerous other customization variables.
58
59 ;;
60 ;; To Do:
61 ;;
62 ;; * Add missing doc strings, improve terse doc strings.
63 ;; * Eliminate electric stuff entirely.
64 ;; * It might be nice to highlight targets differently depending on
65 ;; whether they are up-to-date or not. Not sure how this would
66 ;; interact with font-lock.
67 ;; * Would be nice to edit the commands in ksh-mode and have
68 ;; indentation and slashification done automatically. Hard.
69 ;; * Consider removing browser mode. It seems useless.
70 ;; * ":" should notice when a new target is made and add it to the
71 ;; list (or at least set makefile-need-target-pickup).
72 ;; * Make browser into a major mode.
73 ;; * Clean up macro insertion stuff. It is a mess.
74 ;; * Browser entry and exit is weird. Normalize.
75 ;; * Browser needs to be rewritten. Right now it is kind of a crock.
76 ;; Should at least:
77 ;; * Act more like dired/buffer menu/whatever.
78 ;; * Highlight as mouse traverses.
79 ;; * B2 inserts.
80 ;; * Update documentation above.
81 ;; * Update texinfo manual.
82 ;; * Update files.el.
83
84 \f
85
86 ;;; Code:
87
88 ;; Sadly we need this for a macro.
89 (eval-when-compile
90 (require 'imenu)
91 (require 'dabbrev)
92 (require 'add-log))
93
94 ;;; ------------------------------------------------------------
95 ;;; Configurable stuff
96 ;;; ------------------------------------------------------------
97
98 (defgroup makefile nil
99 "Makefile editing commands for Emacs."
100 :group 'tools
101 :prefix "makefile-")
102
103 (defface makefile-space
104 '((((class color)) (:background "hotpink"))
105 (t (:reverse-video t)))
106 "Face to use for highlighting leading spaces in Font-Lock mode."
107 :group 'faces
108 :group 'makefile)
109 (put 'makefile-space-face 'face-alias 'makefile-space)
110
111 (defface makefile-targets
112 ;; This needs to go along both with foreground and background colors (i.e. shell)
113 '((t (:inherit font-lock-function-name-face)))
114 "Face to use for additionally highlighting rule targets in Font-Lock mode."
115 :group 'faces
116 :group 'makefile
117 :version "22.1")
118
119 (defface makefile-shell
120 ()
121 ;;'((((class color) (min-colors 88) (background light)) (:background "seashell1"))
122 ;; (((class color) (min-colors 88) (background dark)) (:background "seashell4")))
123 "Face to use for additionally highlighting Shell commands in Font-Lock mode."
124 :group 'faces
125 :group 'makefile
126 :version "22.1")
127
128 (defface makefile-makepp-perl
129 '((((class color) (background light)) (:background "LightBlue1")) ; Camel Book
130 (((class color) (background dark)) (:background "DarkBlue"))
131 (t (:reverse-video t)))
132 "Face to use for additionally highlighting Perl code in Font-Lock mode."
133 :group 'faces
134 :group 'makefile
135 :version "22.1")
136
137 (defcustom makefile-browser-buffer-name "*Macros and Targets*"
138 "*Name of the macro- and target browser buffer."
139 :type 'string
140 :group 'makefile)
141
142 (defcustom makefile-target-colon ":"
143 "*String to append to all target names inserted by `makefile-insert-target'.
144 \":\" or \"::\" are common values."
145 :type 'string
146 :group 'makefile)
147
148 (defcustom makefile-macro-assign " = "
149 "*String to append to all macro names inserted by `makefile-insert-macro'.
150 The normal value should be \" = \", since this is what
151 standard make expects. However, newer makes such as dmake
152 allow a larger variety of different macro assignments, so you
153 might prefer to use \" += \" or \" := \" ."
154 :type 'string
155 :group 'makefile)
156
157 (defcustom makefile-electric-keys nil
158 "*If non-nil, Makefile mode should install electric keybindings.
159 Default is nil."
160 :type 'boolean
161 :group 'makefile)
162
163 (defcustom makefile-use-curly-braces-for-macros-p nil
164 "*Controls the style of generated macro references.
165 Non-nil means macro references should use curly braces, like `${this}'.
166 nil means use parentheses, like `$(this)'."
167 :type 'boolean
168 :group 'makefile)
169
170 (defcustom makefile-tab-after-target-colon t
171 "*If non-nil, insert a TAB after a target colon.
172 Otherwise, a space is inserted.
173 The default is t."
174 :type 'boolean
175 :group 'makefile)
176
177 (defcustom makefile-browser-leftmost-column 10
178 "*Number of blanks to the left of the browser selection mark."
179 :type 'integer
180 :group 'makefile)
181
182 (defcustom makefile-browser-cursor-column 10
183 "*Column the cursor goes to when it moves up or down in the Makefile browser."
184 :type 'integer
185 :group 'makefile)
186
187 (defcustom makefile-backslash-column 48
188 "*Column in which `makefile-backslash-region' inserts backslashes."
189 :type 'integer
190 :group 'makefile)
191
192 (defcustom makefile-backslash-align t
193 "*If non-nil, `makefile-backslash-region' will align backslashes."
194 :type 'boolean
195 :group 'makefile)
196
197 (defcustom makefile-browser-selected-mark "+ "
198 "*String used to mark selected entries in the Makefile browser."
199 :type 'string
200 :group 'makefile)
201
202 (defcustom makefile-browser-unselected-mark " "
203 "*String used to mark unselected entries in the Makefile browser."
204 :type 'string
205 :group 'makefile)
206
207 (defcustom makefile-browser-auto-advance-after-selection-p t
208 "*If non-nil, cursor will move after item is selected in Makefile browser."
209 :type 'boolean
210 :group 'makefile)
211
212 (defcustom makefile-pickup-everything-picks-up-filenames-p nil
213 "*If non-nil, `makefile-pickup-everything' picks up filenames as targets.
214 This means it calls `makefile-pickup-filenames-as-targets'.
215 Otherwise filenames are omitted."
216 :type 'boolean
217 :group 'makefile)
218
219 (defcustom makefile-cleanup-continuations nil
220 "*If non-nil, automatically clean up continuation lines when saving.
221 A line is cleaned up by removing all whitespace following a trailing
222 backslash. This is done silently.
223 IMPORTANT: Please note that enabling this option causes Makefile mode
224 to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\"."
225 :type 'boolean
226 :group 'makefile)
227
228 (defcustom makefile-mode-hook nil
229 "*Normal hook run by `makefile-mode'."
230 :type 'hook
231 :group 'makefile)
232
233 (defvar makefile-browser-hook '())
234
235 ;;
236 ;; Special targets for DMake, Sun's make ...
237 ;;
238 (defcustom makefile-special-targets-list
239 '(("DEFAULT") ("DONE") ("ERROR") ("EXPORT")
240 ("FAILED") ("GROUPEPILOG") ("GROUPPROLOG") ("IGNORE")
241 ("IMPORT") ("INCLUDE") ("INCLUDEDIRS") ("INIT")
242 ("KEEP_STATE") ("MAKEFILES") ("MAKE_VERSION") ("NO_PARALLEL")
243 ("PARALLEL") ("PHONY") ("PRECIOUS") ("REMOVE")
244 ("SCCS_GET") ("SILENT") ("SOURCE") ("SUFFIXES")
245 ("WAIT") ("c.o") ("C.o") ("m.o")
246 ("el.elc") ("y.c") ("s.o"))
247 "*List of special targets.
248 You will be offered to complete on one of those in the minibuffer whenever
249 you enter a \".\" at the beginning of a line in `makefile-mode'."
250 :type '(repeat (list string))
251 :group 'makefile)
252
253 (defcustom makefile-runtime-macros-list
254 '(("@") ("&") (">") ("<") ("*") ("^") ("+") ("?") ("%") ("$"))
255 "*List of macros that are resolved by make at runtime.
256 If you insert a macro reference using `makefile-insert-macro-ref', the name
257 of the macro is checked against this list. If it can be found its name will
258 not be enclosed in { } or ( )."
259 :type '(repeat (list string))
260 :group 'makefile)
261
262 ;; Note that the first big subexpression is used by font lock. Note
263 ;; that if you change this regexp you might have to fix the imenu
264 ;; index in makefile-imenu-generic-expression.
265 (defvar makefile-dependency-regex
266 ;; Allow for two nested levels $(v1:$(v2:$(v3:a=b)=c)=d)
267 "^\\(\\(?:\\$\\(?:[({]\\(?:\\$\\(?:[({]\\(?:\\$\\(?:[^({]\\|.[^\n$#})]+?[})]\\)\\|[^\n$#)}]\\)+?[})]\\|[^({]\\)\\|[^\n$#)}]\\)+?[})]\\|[^({]\\)\\|[^\n$#:=]\\)+?\\)\\(:\\)\\(?:[ \t]*$\\|[^=\n]\\(?:[^#\n]*?;[ \t]*\\(.+\\)\\)?\\)"
268 "Regex used to find dependency lines in a makefile.")
269
270 (defconst makefile-bsdmake-dependency-regex
271 (progn (string-match (regexp-quote "\\(:\\)") makefile-dependency-regex)
272 (replace-match "\\([:!]\\)" t t makefile-dependency-regex))
273 "Regex used to find dependency lines in a BSD makefile.")
274
275 (defvar makefile-dependency-skip "^:"
276 "Characters to skip to find a line that might be a dependency.")
277
278 (defvar makefile-rule-action-regex
279 "^\t[ \t]*\\([-@]*\\)[ \t]*\\(\\(?:.*\\\\\n\\)*.*\\)"
280 "Regex used to highlight rule action lines in font lock mode.")
281
282 (defconst makefile-makepp-rule-action-regex
283 ;; Don't care about initial tab, but I don't know how to font-lock correctly without.
284 "^\t[ \t]*\\(\\(?:\\(?:noecho\\|ignore[-_]error\\|[-@]+\\)[ \t]*\\)*\\)\\(\\(&\\S +\\)?\\(?:.*\\\\\n\\)*.*\\)"
285 "Regex used to highlight makepp rule action lines in font lock mode.")
286
287 (defconst makefile-bsdmake-rule-action-regex
288 (progn (string-match "-@" makefile-rule-action-regex)
289 (replace-match "-+@" t t makefile-rule-action-regex))
290 "Regex used to highlight BSD rule action lines in font lock mode.")
291
292 ;; Note that the first and second subexpression is used by font lock. Note
293 ;; that if you change this regexp you might have to fix the imenu index in
294 ;; makefile-imenu-generic-expression.
295 (defconst makefile-macroassign-regex
296 "^ *\\([^ \n\t][^:#= \t\n]*\\)[ \t]*\\(?:!=\\|[*:+]?[:?]?=\\)"
297 "Regex used to find macro assignment lines in a makefile.")
298
299 (defconst makefile-var-use-regex
300 "[^$]\\$[({]\\([-a-zA-Z0-9_.]+\\|[@%<?^+*][FD]?\\)"
301 "Regex used to find $(macro) uses in a makefile.")
302
303 (defconst makefile-ignored-files-in-pickup-regex
304 "\\(^\\..*\\)\\|\\(.*~$\\)\\|\\(.*,v$\\)\\|\\(\\.[chy]\\)"
305 "Regex for filenames that will NOT be included in the target list.")
306
307 (if (fboundp 'facemenu-unlisted-faces)
308 (add-to-list 'facemenu-unlisted-faces 'makefile-space))
309 (defvar makefile-space 'makefile-space
310 "Face to use for highlighting leading spaces in Font-Lock mode.")
311
312 ;; These lists were inspired by the old solution. But they are silly, because
313 ;; you can't differentiate what follows. They need to be split up.
314 (defconst makefile-statements '("include")
315 "List of keywords understood by standard make.")
316
317 (defconst makefile-automake-statements
318 `("if" "else" "endif" ,@makefile-statements)
319 "List of keywords understood by automake.")
320
321 (defconst makefile-gmake-statements
322 `("-sinclude" "sinclude" "override" "vpath"
323 "ifdef" "ifndef" "ifeq" "ifneq" "-include" "define" "endef" "export"
324 "unexport"
325 ,@(cdr makefile-automake-statements))
326 "List of keywords understood by gmake.")
327
328 ;; These are even more silly, because you can have more spaces in between.
329 (defconst makefile-makepp-statements
330 `("and ifdef" "and ifndef" "and ifeq" "and ifneq" "and ifperl"
331 "and ifmakeperl" "and ifsys" "and ifnsys" "build_cache" "build_check"
332 "else ifdef" "else ifndef" "else ifeq" "else ifneq" "else ifperl"
333 "else ifmakeperl" "else ifsys" "else ifnsys" "enddef" "load_makefile"
334 "ifperl" "ifmakeperl" "ifsys" "ifnsys" "_include" "makeperl" "makesub"
335 "no_implicit_load" "perl" "perl-begin" "perl_begin" "perl-end" "perl_end"
336 "prebuild" "or ifdef" "or ifndef" "or ifeq" "or ifneq" "or ifperl"
337 "or ifmakeperl" "or ifsys" "or ifnsys" "register_command_parser"
338 "register_scanner" "repository" "runtime" "signature" "sub"
339 ,@(nthcdr 4 makefile-gmake-statements))
340 "List of keywords understood by gmake.")
341
342 (defconst makefile-bsdmake-statements
343 `(".elif" ".elifdef" ".elifmake" ".elifndef" ".elifnmake" ".else" ".endfor"
344 ".endif" ".for" ".if" ".ifdef" ".ifmake" ".ifndef" ".ifnmake" ".undef")
345 "List of keywords understood by BSD make.")
346
347 (defun makefile-make-font-lock-keywords (var keywords space
348 &optional negation
349 &rest font-lock-keywords)
350 `(;; Do macro assignments. These get the "variable-name" face.
351 (,makefile-macroassign-regex
352 (1 font-lock-variable-name-face)
353 ;; This is for after !=
354 (2 'makefile-shell prepend t)
355 ;; This is for after normal assignment
356 (3 'font-lock-string-face prepend t))
357
358 ;; Rule actions.
359 (makefile-match-action
360 (1 font-lock-type-face)
361 (2 'makefile-shell prepend)
362 ;; Only makepp has builtin commands.
363 (3 font-lock-builtin-face prepend t))
364
365 ;; Variable references even in targets/strings/comments.
366 (,var 1 font-lock-variable-name-face prepend)
367
368 ;; Automatic variable references and single character variable references,
369 ;; but not shell variables references.
370 ("[^$]\\$\\([@%<?^+*_]\\|[a-zA-Z0-9]\\>\\)"
371 1 font-lock-constant-face prepend)
372 ("[^$]\\(\\$[@%*]\\)"
373 1 'makefile-targets append)
374
375 ;; Fontify conditionals and includes.
376 (,(concat "^\\(?: [ \t]*\\)?"
377 (regexp-opt keywords t)
378 "\\>[ \t]*\\([^: \t\n#]*\\)")
379 (1 font-lock-keyword-face) (2 font-lock-variable-name-face))
380
381 ,@(if negation
382 `((,negation (1 font-lock-negation-char-face prepend)
383 (2 font-lock-negation-char-face prepend t))))
384
385 ,@(if space
386 '(;; Highlight lines that contain just whitespace.
387 ;; They can cause trouble, especially if they start with a tab.
388 ("^[ \t]+$" . makefile-space)
389
390 ;; Highlight shell comments that Make treats as commands,
391 ;; since these can fool people.
392 ("^\t+#" 0 makefile-space t)
393
394 ;; Highlight spaces that precede tabs.
395 ;; They can make a tab fail to be effective.
396 ("^\\( +\\)\t" 1 makefile-space)))
397
398 ,@font-lock-keywords
399
400 ;; Do dependencies.
401 (makefile-match-dependency
402 (1 'makefile-targets prepend)
403 (3 'makefile-shell prepend t))))
404
405 (defconst makefile-font-lock-keywords
406 (makefile-make-font-lock-keywords
407 makefile-var-use-regex
408 makefile-statements
409 t))
410
411 (defconst makefile-automake-font-lock-keywords
412 (makefile-make-font-lock-keywords
413 makefile-var-use-regex
414 makefile-automake-statements
415 t))
416
417 (defconst makefile-gmake-font-lock-keywords
418 (makefile-make-font-lock-keywords
419 makefile-var-use-regex
420 makefile-gmake-statements
421 t
422 "^\\(?: [ \t]*\\)?if\\(n\\)\\(?:def\\|eq\\)\\>"
423
424 '("[^$]\\(\\$[({][@%*][DF][})]\\)"
425 1 'makefile-targets append)
426
427 ;; $(function ...) ${function ...}
428 '("[^$]\\$[({]\\([-a-zA-Z0-9_.]+\\s \\)"
429 1 font-lock-function-name-face prepend)
430
431 ;; $(shell ...) ${shell ...}
432 '("[^$]\\$\\([({]\\)shell[ \t]+"
433 makefile-match-function-end nil nil
434 (1 'makefile-shell prepend t))))
435
436 (defconst makefile-makepp-font-lock-keywords
437 (makefile-make-font-lock-keywords
438 makefile-var-use-regex
439 makefile-makepp-statements
440 nil
441 "^\\(?: [ \t]*\\)?\\(?:and[ \t]+\\|else[ \t]+\\|or[ \t]+\\)?if\\(n\\)\\(?:def\\|eq\\|sys\\)\\>"
442
443 '("[^$]\\(\\$[({]\\(?:output\\|stem\\|target\\)s?\\_>.*?[})]\\)"
444 1 'makefile-targets append)
445
446 ;; Colon modifier keywords.
447 '("\\(:\\s *\\)\\(build_c\\(?:ache\\|heck\\)\\|env\\(?:ironment\\)?\\|foreach\\|signature\\|scanner\\|quickscan\\|smartscan\\)\\>\\([^:\n]*\\)"
448 (1 font-lock-type-face t)
449 (2 font-lock-keyword-face t)
450 (3 font-lock-variable-name-face t))
451
452 ;; $(function ...) $((function ...)) ${function ...} ${{function ...}}
453 '("[^$]\\$\\(?:((?\\|{{?\\)\\([-a-zA-Z0-9_.]+\\s \\)"
454 1 font-lock-function-name-face prepend)
455
456 ;; $(shell ...) $((shell ...)) ${shell ...} ${{shell ...}}
457 '("[^$]\\$\\(((?\\|{{?\\)shell\\(?:[-_]\\(?:global[-_]\\)?once\\)?[ \t]+"
458 makefile-match-function-end nil nil
459 (1 'makefile-shell prepend t))
460
461 ;; $(perl ...) $((perl ...)) ${perl ...} ${{perl ...}}
462 '("[^$]\\$\\(((?\\|{{?\\)makeperl[ \t]+"
463 makefile-match-function-end nil nil
464 (1 'makefile-makepp-perl prepend t))
465 '("[^$]\\$\\(((?\\|{{?\\)perl[ \t]+"
466 makefile-match-function-end nil nil
467 (1 'makefile-makepp-perl t t))
468
469 ;; Can we unify these with (if (match-end 1) 'prepend t)?
470 '("ifmakeperl\\s +\\(.*\\)" 1 'makefile-makepp-perl prepend)
471 '("ifperl\\s +\\(.*\\)" 1 'makefile-makepp-perl t)
472
473 ;; Perl block single- or multiline, as statement or rule action.
474 ;; Don't know why the initial newline in 2nd variant of group 2 doesn't get skipped.
475 '("\\<make\\(?:perl\\|sub\\s +\\S +\\)\\s *\n?\\s *{\\(?:{\\s *\n?\\(\\(?:.*\n\\)+?\\)\\s *}\\|\\s *\\(\\(?:.*?\\|\n?\\(?:.*\n\\)+?\\)\\)\\)}"
476 (1 'makefile-makepp-perl prepend t)
477 (2 'makefile-makepp-perl prepend t))
478 '("\\<\\(?:perl\\|sub\\s +\\S +\\)\\s *\n?\\s *{\\(?:{\\s *\n?\\(\\(?:.*\n\\)+?\\)\\s *}\\|\\s *\\(\\(?:.*?\\|\n?\\(?:.*\n\\)+?\\)\\)\\)}"
479 (1 'makefile-makepp-perl t t)
480 (2 'makefile-makepp-perl t t))
481
482 ;; Statement style perl block.
483 '("perl[-_]begin\\s *\\(?:\\s #.*\\)?\n\\(\\(?:.*\n\\)+?\\)\\s *perl[-_]end\\>"
484 1 'makefile-makepp-perl t)))
485
486 (defconst makefile-bsdmake-font-lock-keywords
487 (makefile-make-font-lock-keywords
488 ;; A lot more could be done for variables here:
489 makefile-var-use-regex
490 makefile-bsdmake-statements
491 t
492 "^\\(?: [ \t]*\\)?\\.\\(?:el\\)?if\\(n?\\)\\(?:def\\|make\\)?\\>[ \t]*\\(!?\\)"
493 '("^[ \t]*\\.for[ \t].+[ \t]\\(in\\)\\>" 1 font-lock-keyword-face)))
494
495
496 (defconst makefile-font-lock-syntactic-keywords
497 ;; From sh-script.el.
498 ;; A `#' begins a comment in sh when it is unquoted and at the beginning
499 ;; of a word. In the shell, words are separated by metacharacters.
500 ;; The list of special chars is taken from the single-unix spec of the
501 ;; shell command language (under `quoting') but with `$' removed.
502 '(("[^|&;<>()`\\\"' \t\n]\\(#+\\)" 1 "_")
503 ;; Change the syntax of a quoted newline so that it does not end a comment.
504 ("\\\\\n" 0 ".")))
505
506 (defvar makefile-imenu-generic-expression
507 `(("Dependencies" makefile-previous-dependency 1)
508 ("Macro Assignment" ,makefile-macroassign-regex 1))
509 "Imenu generic expression for Makefile mode. See `imenu-generic-expression'.")
510
511 ;;; ------------------------------------------------------------
512 ;;; The following configurable variables are used in the
513 ;;; up-to-date overview .
514 ;;; The standard configuration assumes that your `make' program
515 ;;; can be run in question/query mode using the `-q' option, this
516 ;;; means that the command
517 ;;;
518 ;;; make -q foo
519 ;;;
520 ;;; should return an exit status of zero if the target `foo' is
521 ;;; up to date and a nonzero exit status otherwise.
522 ;;; Many makes can do this although the docs/manpages do not mention
523 ;;; it. Try it with your favourite one. GNU make, System V make, and
524 ;;; Dennis Vadura's DMake have no problems.
525 ;;; Set the variable `makefile-brave-make' to the name of the
526 ;;; make utility that does this on your system.
527 ;;; To understand what this is all about see the function definition
528 ;;; of `makefile-query-by-make-minus-q' .
529 ;;; ------------------------------------------------------------
530
531 (defcustom makefile-brave-make "make"
532 "*How to invoke make, for `makefile-query-targets'.
533 This should identify a `make' command that can handle the `-q' option."
534 :type 'string
535 :group 'makefile)
536
537 (defcustom makefile-query-one-target-method 'makefile-query-by-make-minus-q
538 "*Function to call to determine whether a make target is up to date.
539 The function must satisfy this calling convention:
540
541 * As its first argument, it must accept the name of the target to
542 be checked, as a string.
543
544 * As its second argument, it may accept the name of a makefile
545 as a string. Depending on what you're going to do you may
546 not need this.
547
548 * It must return the integer value 0 (zero) if the given target
549 should be considered up-to-date in the context of the given
550 makefile, any nonzero integer value otherwise."
551 :type 'function
552 :group 'makefile)
553
554 (defcustom makefile-up-to-date-buffer-name "*Makefile Up-to-date overview*"
555 "*Name of the Up-to-date overview buffer."
556 :type 'string
557 :group 'makefile)
558
559 ;;; --- end of up-to-date-overview configuration ------------------
560
561 (defvar makefile-mode-abbrev-table nil
562 "Abbrev table in use in Makefile buffers.")
563 (if makefile-mode-abbrev-table
564 ()
565 (define-abbrev-table 'makefile-mode-abbrev-table ()))
566
567 (defvar makefile-mode-map
568 (let ((map (make-sparse-keymap)))
569 ;; set up the keymap
570 (define-key map "\C-c:" 'makefile-insert-target-ref)
571 (if makefile-electric-keys
572 (progn
573 (define-key map "$" 'makefile-insert-macro-ref)
574 (define-key map ":" 'makefile-electric-colon)
575 (define-key map "=" 'makefile-electric-equal)
576 (define-key map "." 'makefile-electric-dot)))
577 (define-key map "\C-c\C-f" 'makefile-pickup-filenames-as-targets)
578 (define-key map "\C-c\C-b" 'makefile-switch-to-browser)
579 (define-key map "\C-c\C-c" 'comment-region)
580 (define-key map "\C-c\C-p" 'makefile-pickup-everything)
581 (define-key map "\C-c\C-u" 'makefile-create-up-to-date-overview)
582 (define-key map "\C-c\C-i" 'makefile-insert-gmake-function)
583 (define-key map "\C-c\C-\\" 'makefile-backslash-region)
584 (define-key map "\C-c\C-m\C-a" 'makefile-automake-mode)
585 (define-key map "\C-c\C-m\C-b" 'makefile-bsdmake-mode)
586 (define-key map "\C-c\C-m\C-g" 'makefile-gmake-mode)
587 (define-key map "\C-c\C-m\C-m" 'makefile-mode)
588 (define-key map "\C-c\C-m\C-p" 'makefile-makepp-mode)
589 (define-key map "\M-p" 'makefile-previous-dependency)
590 (define-key map "\M-n" 'makefile-next-dependency)
591 (define-key map "\e\t" 'makefile-complete)
592
593 ;; Make menus.
594 (define-key map [menu-bar makefile-mode]
595 (cons "Makefile" (make-sparse-keymap "Makefile")))
596
597 (define-key map [menu-bar makefile-mode browse]
598 '("Pop up Makefile Browser" . makefile-switch-to-browser))
599 (define-key map [menu-bar makefile-mode complete]
600 '("Complete Target or Macro" . makefile-complete))
601 (define-key map [menu-bar makefile-mode pickup]
602 '("Find Targets and Macros" . makefile-pickup-everything))
603
604 (define-key map [menu-bar makefile-mode prev]
605 '("Move to Previous Dependency" . makefile-previous-dependency))
606 (define-key map [menu-bar makefile-mode next]
607 '("Move to Next Dependency" . makefile-next-dependency))
608 map)
609 "The keymap that is used in Makefile mode.")
610
611 (defvar makefile-browser-map nil
612 "The keymap that is used in the macro- and target browser.")
613 (if makefile-browser-map
614 ()
615 (setq makefile-browser-map (make-sparse-keymap))
616 (define-key makefile-browser-map "n" 'makefile-browser-next-line)
617 (define-key makefile-browser-map "\C-n" 'makefile-browser-next-line)
618 (define-key makefile-browser-map "p" 'makefile-browser-previous-line)
619 (define-key makefile-browser-map "\C-p" 'makefile-browser-previous-line)
620 (define-key makefile-browser-map " " 'makefile-browser-toggle)
621 (define-key makefile-browser-map "i" 'makefile-browser-insert-selection)
622 (define-key makefile-browser-map "I" 'makefile-browser-insert-selection-and-quit)
623 (define-key makefile-browser-map "\C-c\C-m" 'makefile-browser-insert-continuation)
624 (define-key makefile-browser-map "q" 'makefile-browser-quit)
625 ;; disable horizontal movement
626 (define-key makefile-browser-map "\C-b" 'undefined)
627 (define-key makefile-browser-map "\C-f" 'undefined))
628
629
630 (defvar makefile-mode-syntax-table nil)
631 (if makefile-mode-syntax-table
632 ()
633 (setq makefile-mode-syntax-table (make-syntax-table))
634 (modify-syntax-entry ?\( "() " makefile-mode-syntax-table)
635 (modify-syntax-entry ?\) ")( " makefile-mode-syntax-table)
636 (modify-syntax-entry ?\[ "(] " makefile-mode-syntax-table)
637 (modify-syntax-entry ?\] ")[ " makefile-mode-syntax-table)
638 (modify-syntax-entry ?\{ "(} " makefile-mode-syntax-table)
639 (modify-syntax-entry ?\} "){ " makefile-mode-syntax-table)
640 (modify-syntax-entry ?\' "\" " makefile-mode-syntax-table)
641 (modify-syntax-entry ?\` "\" " makefile-mode-syntax-table)
642 (modify-syntax-entry ?# "< " makefile-mode-syntax-table)
643 (modify-syntax-entry ?\n "> " makefile-mode-syntax-table))
644
645
646 ;;; ------------------------------------------------------------
647 ;;; Internal variables.
648 ;;; You don't need to configure below this line.
649 ;;; ------------------------------------------------------------
650
651 (defvar makefile-target-table nil
652 "Table of all target names known for this buffer.")
653
654 (defvar makefile-macro-table nil
655 "Table of all macro names known for this buffer.")
656
657 (defvar makefile-browser-client
658 "A buffer in Makefile mode that is currently using the browser.")
659
660 (defvar makefile-browser-selection-vector nil)
661 (defvar makefile-has-prereqs nil)
662 (defvar makefile-need-target-pickup t)
663 (defvar makefile-need-macro-pickup t)
664
665 (defvar makefile-mode-hook '())
666
667 ;; Each element looks like '("GNU MAKE FUNCTION" "ARG" "ARG" ... )
668 ;; Each "ARG" is used as a prompt for a required argument.
669 (defconst makefile-gnumake-functions-alist
670 '(
671 ;; Text functions
672 ("subst" "From" "To" "In")
673 ("patsubst" "Pattern" "Replacement" "In")
674 ("strip" "Text")
675 ("findstring" "Find what" "In")
676 ("filter" "Pattern" "Text")
677 ("filter-out" "Pattern" "Text")
678 ("sort" "List")
679 ;; Filename functions
680 ("dir" "Names")
681 ("notdir" "Names")
682 ("suffix" "Names")
683 ("basename" "Names")
684 ("addprefix" "Prefix" "Names")
685 ("addsuffix" "Suffix" "Names")
686 ("join" "List 1" "List 2")
687 ("word" "Index" "Text")
688 ("words" "Text")
689 ("firstword" "Text")
690 ("wildcard" "Pattern")
691 ;; Misc functions
692 ("foreach" "Variable" "List" "Text")
693 ("origin" "Variable")
694 ("shell" "Command")))
695
696
697 ;;; ------------------------------------------------------------
698 ;;; The mode function itself.
699 ;;; ------------------------------------------------------------
700
701 ;;;###autoload
702 (defun makefile-mode ()
703 "Major mode for editing standard Makefiles.
704
705 If you are editing a file for a different make, try one of the
706 variants `makefile-automake-mode', `makefile-gmake-mode',
707 `makefile-makepp-mode' or `makefile-bsdmake-mode'. All but the
708 last should be correctly chosen based on the file name, except if
709 it is *.mk. This function ends by invoking the function(s)
710 `makefile-mode-hook'.
711
712 It is strongly recommended to use `font-lock-mode', because that
713 provides additional parsing information. This is used for
714 example to see that a rule action `echo foo: bar' is a not rule
715 dependency, despite the colon.
716
717 \\{makefile-mode-map}
718
719 In the browser, use the following keys:
720
721 \\{makefile-browser-map}
722
723 Makefile mode can be configured by modifying the following variables:
724
725 `makefile-browser-buffer-name':
726 Name of the macro- and target browser buffer.
727
728 `makefile-target-colon':
729 The string that gets appended to all target names
730 inserted by `makefile-insert-target'.
731 \":\" or \"::\" are quite common values.
732
733 `makefile-macro-assign':
734 The string that gets appended to all macro names
735 inserted by `makefile-insert-macro'.
736 The normal value should be \" = \", since this is what
737 standard make expects. However, newer makes such as dmake
738 allow a larger variety of different macro assignments, so you
739 might prefer to use \" += \" or \" := \" .
740
741 `makefile-tab-after-target-colon':
742 If you want a TAB (instead of a space) to be appended after the
743 target colon, then set this to a non-nil value.
744
745 `makefile-browser-leftmost-column':
746 Number of blanks to the left of the browser selection mark.
747
748 `makefile-browser-cursor-column':
749 Column in which the cursor is positioned when it moves
750 up or down in the browser.
751
752 `makefile-browser-selected-mark':
753 String used to mark selected entries in the browser.
754
755 `makefile-browser-unselected-mark':
756 String used to mark unselected entries in the browser.
757
758 `makefile-browser-auto-advance-after-selection-p':
759 If this variable is set to a non-nil value the cursor
760 will automagically advance to the next line after an item
761 has been selected in the browser.
762
763 `makefile-pickup-everything-picks-up-filenames-p':
764 If this variable is set to a non-nil value then
765 `makefile-pickup-everything' also picks up filenames as targets
766 (i.e. it calls `makefile-pickup-filenames-as-targets'), otherwise
767 filenames are omitted.
768
769 `makefile-cleanup-continuations':
770 If this variable is set to a non-nil value then Makefile mode
771 will assure that no line in the file ends with a backslash
772 (the continuation character) followed by any whitespace.
773 This is done by silently removing the trailing whitespace, leaving
774 the backslash itself intact.
775 IMPORTANT: Please note that enabling this option causes Makefile mode
776 to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\".
777
778 `makefile-browser-hook':
779 A function or list of functions to be called just before the
780 browser is entered. This is executed in the makefile buffer.
781
782 `makefile-special-targets-list':
783 List of special targets. You will be offered to complete
784 on one of those in the minibuffer whenever you enter a `.'.
785 at the beginning of a line in Makefile mode."
786
787 (interactive)
788 (kill-all-local-variables)
789 (add-hook 'write-file-functions
790 'makefile-warn-suspicious-lines nil t)
791 (add-hook 'write-file-functions
792 'makefile-warn-continuations nil t)
793 (add-hook 'write-file-functions
794 'makefile-cleanup-continuations nil t)
795 (make-local-variable 'makefile-target-table)
796 (make-local-variable 'makefile-macro-table)
797 (make-local-variable 'makefile-has-prereqs)
798 (make-local-variable 'makefile-need-target-pickup)
799 (make-local-variable 'makefile-need-macro-pickup)
800
801 ;; Font lock.
802 (make-local-variable 'font-lock-defaults)
803 (setq font-lock-defaults
804 ;; SYNTAX-BEGIN set to backward-paragraph to avoid slow-down
805 ;; near the end of a large buffer, due to parse-partial-sexp's
806 ;; trying to parse all the way till the beginning of buffer.
807 '(makefile-font-lock-keywords
808 nil nil
809 ((?$ . "."))
810 backward-paragraph
811 (font-lock-syntactic-keywords . makefile-font-lock-syntactic-keywords)
812 (font-lock-support-mode))) ; JIT breaks on long series of continuation lines.
813
814 ;; Add-log.
815 (make-local-variable 'add-log-current-defun-function)
816 (setq add-log-current-defun-function 'makefile-add-log-defun)
817
818 ;; Imenu.
819 (make-local-variable 'imenu-generic-expression)
820 (setq imenu-generic-expression makefile-imenu-generic-expression)
821
822 ;; Dabbrev.
823 (make-local-variable 'dabbrev-abbrev-skip-leading-regexp)
824 (setq dabbrev-abbrev-skip-leading-regexp "\\$")
825
826 ;; Other abbrevs.
827 (setq local-abbrev-table makefile-mode-abbrev-table)
828
829 ;; Filling.
830 (make-local-variable 'fill-paragraph-function)
831 (setq fill-paragraph-function 'makefile-fill-paragraph)
832
833 ;; Comment stuff.
834 (make-local-variable 'comment-start)
835 (setq comment-start "#")
836 (make-local-variable 'comment-end)
837 (setq comment-end "")
838 (make-local-variable 'comment-start-skip)
839 (setq comment-start-skip "#+[ \t]*")
840
841 ;; Make sure TAB really inserts \t.
842 (set (make-local-variable 'indent-line-function) 'indent-to-left-margin)
843
844 ;; become the current major mode
845 (setq major-mode 'makefile-mode)
846 (setq mode-name "Makefile")
847
848 ;; Activate keymap and syntax table.
849 (use-local-map makefile-mode-map)
850 (set-syntax-table makefile-mode-syntax-table)
851
852 ;; Real TABs are important in makefiles
853 (setq indent-tabs-mode t)
854 (run-mode-hooks 'makefile-mode-hook))
855
856 ;; These should do more than just differentiate font-lock.
857 ;;;###autoload
858 (define-derived-mode makefile-automake-mode makefile-mode "Makefile.am"
859 "An adapted `makefile-mode' that knows about automake."
860 (setq font-lock-defaults
861 `(makefile-automake-font-lock-keywords ,@(cdr font-lock-defaults))))
862
863 ;;;###autoload
864 (define-derived-mode makefile-gmake-mode makefile-mode "GNUmakefile"
865 "An adapted `makefile-mode' that knows about gmake."
866 (setq font-lock-defaults
867 `(makefile-gmake-font-lock-keywords ,@(cdr font-lock-defaults))))
868
869 ;;;###autoload
870 (define-derived-mode makefile-makepp-mode makefile-mode "Makeppfile"
871 "An adapted `makefile-mode' that knows about makepp."
872 (set (make-local-variable 'makefile-rule-action-regex)
873 makefile-makepp-rule-action-regex)
874 (setq font-lock-defaults
875 `(makefile-makepp-font-lock-keywords ,@(cdr font-lock-defaults))
876 imenu-generic-expression
877 `(("Functions" "^[ \t]*\\(?:make\\)?sub[ \t]+\\([A-Za-z0-9_]+\\)" 1)
878 ,@imenu-generic-expression)))
879
880 ;;;###autoload
881 (define-derived-mode makefile-bsdmake-mode makefile-mode "BSDmakefile"
882 "An adapted `makefile-mode' that knows about BSD make."
883 (set (make-local-variable 'makefile-dependency-regex)
884 makefile-bsdmake-dependency-regex)
885 (set (make-local-variable 'makefile-dependency-skip) "^:!")
886 (set (make-local-variable 'makefile-rule-action-regex)
887 makefile-bsdmake-rule-action-regex)
888 (setq font-lock-defaults
889 `(makefile-bsdmake-font-lock-keywords ,@(cdr font-lock-defaults))))
890
891 \f
892
893 ;;; Motion code.
894
895 (defun makefile-next-dependency ()
896 "Move point to the beginning of the next dependency line."
897 (interactive)
898 (let ((here (point)))
899 (end-of-line)
900 (if (makefile-match-dependency nil)
901 (progn (beginning-of-line) t) ; indicate success
902 (goto-char here) nil)))
903
904 (defun makefile-previous-dependency ()
905 "Move point to the beginning of the previous dependency line."
906 (interactive)
907 (let ((pt (point)))
908 (beginning-of-line)
909 ;; makefile-match-dependency done backwards:
910 (catch 'found
911 (while (progn (skip-chars-backward makefile-dependency-skip)
912 (not (bobp)))
913 (or (prog1 (eq (char-after) ?=)
914 (backward-char))
915 (get-text-property (point) 'face)
916 (beginning-of-line)
917 (if (> (point) (+ (point-min) 2))
918 (eq (char-before (1- (point))) ?\\))
919 (if (looking-at makefile-dependency-regex)
920 (throw 'found t))))
921 (goto-char pt)
922 nil)))
923
924 \f
925
926 ;;; Electric keys. Blech.
927
928 (defun makefile-electric-dot (arg)
929 "Prompt for the name of a special target to insert.
930 Only does electric insertion at beginning of line.
931 Anywhere else just self-inserts."
932 (interactive "p")
933 (if (bolp)
934 (makefile-insert-special-target)
935 (self-insert-command arg)))
936
937 (defun makefile-insert-special-target ()
938 "Prompt for and insert a special target name.
939 Uses `makefile-special-targets' list."
940 (interactive)
941 (makefile-pickup-targets)
942 (let ((special-target
943 (completing-read "Special target: "
944 makefile-special-targets-list nil nil nil)))
945 (if (zerop (length special-target))
946 ()
947 (insert "." special-target ":")
948 (makefile-forward-after-target-colon))))
949
950 (defun makefile-electric-equal (arg)
951 "Prompt for name of a macro to insert.
952 Only does prompting if point is at beginning of line.
953 Anywhere else just self-inserts."
954 (interactive "p")
955 (makefile-pickup-macros)
956 (if (bolp)
957 (call-interactively 'makefile-insert-macro)
958 (self-insert-command arg)))
959
960 (defun makefile-insert-macro (macro-name)
961 "Prepare definition of a new macro."
962 (interactive "sMacro Name: ")
963 (makefile-pickup-macros)
964 (if (not (zerop (length macro-name)))
965 (progn
966 (beginning-of-line)
967 (insert macro-name makefile-macro-assign)
968 (setq makefile-need-macro-pickup t)
969 (makefile-remember-macro macro-name))))
970
971 (defun makefile-insert-macro-ref (macro-name)
972 "Complete on a list of known macros, then insert complete ref at point."
973 (interactive
974 (list
975 (progn
976 (makefile-pickup-macros)
977 (completing-read "Refer to macro: " makefile-macro-table nil nil nil))))
978 (makefile-do-macro-insertion macro-name))
979
980 (defun makefile-insert-target (target-name)
981 "Prepare definition of a new target (dependency line)."
982 (interactive "sTarget: ")
983 (if (not (zerop (length target-name)))
984 (progn
985 (beginning-of-line)
986 (insert target-name makefile-target-colon)
987 (makefile-forward-after-target-colon)
988 (end-of-line)
989 (setq makefile-need-target-pickup t)
990 (makefile-remember-target target-name))))
991
992 (defun makefile-insert-target-ref (target-name)
993 "Complete on a list of known targets, then insert TARGET-NAME at point."
994 (interactive
995 (list
996 (progn
997 (makefile-pickup-targets)
998 (completing-read "Refer to target: " makefile-target-table nil nil nil))))
999 (if (not (zerop (length target-name)))
1000 (insert target-name " ")))
1001
1002 (defun makefile-electric-colon (arg)
1003 "Prompt for name of new target.
1004 Prompting only happens at beginning of line.
1005 Anywhere else just self-inserts."
1006 (interactive "p")
1007 (if (bolp)
1008 (call-interactively 'makefile-insert-target)
1009 (self-insert-command arg)))
1010
1011 \f
1012
1013 ;;; ------------------------------------------------------------
1014 ;;; Extracting targets and macros from an existing makefile
1015 ;;; ------------------------------------------------------------
1016
1017 (defun makefile-pickup-targets ()
1018 "Notice names of all target definitions in Makefile."
1019 (interactive)
1020 (when makefile-need-target-pickup
1021 (setq makefile-need-target-pickup nil
1022 makefile-target-table nil
1023 makefile-has-prereqs nil)
1024 (save-excursion
1025 (goto-char (point-min))
1026 (while (makefile-match-dependency nil)
1027 (goto-char (match-beginning 1))
1028 (while (let ((target-name
1029 (buffer-substring-no-properties (point)
1030 (progn
1031 (skip-chars-forward "^ \t:#")
1032 (point))))
1033 (has-prereqs
1034 (not (looking-at ":[ \t]*$"))))
1035 (if (makefile-remember-target target-name has-prereqs)
1036 (message "Picked up target \"%s\" from line %d"
1037 target-name (line-number-at-pos)))
1038 (skip-chars-forward " \t")
1039 (not (or (eolp) (eq (char-after) ?:)))))
1040 (forward-line)))
1041 (message "Read targets OK.")))
1042
1043 (defun makefile-pickup-macros ()
1044 "Notice names of all macro definitions in Makefile."
1045 (interactive)
1046 (when makefile-need-macro-pickup
1047 (setq makefile-need-macro-pickup nil
1048 makefile-macro-table nil)
1049 (save-excursion
1050 (goto-char (point-min))
1051 (while (re-search-forward makefile-macroassign-regex nil t)
1052 (goto-char (match-beginning 1))
1053 (let ((macro-name (buffer-substring-no-properties (point)
1054 (progn
1055 (skip-chars-forward "^ \t:#=*")
1056 (point)))))
1057 (if (makefile-remember-macro macro-name)
1058 (message "Picked up macro \"%s\" from line %d"
1059 macro-name (line-number-at-pos))))
1060 (forward-line)))
1061 (message "Read macros OK.")))
1062
1063 (defun makefile-pickup-everything (arg)
1064 "Notice names of all macros and targets in Makefile.
1065 Prefix arg means force pickups to be redone."
1066 (interactive "P")
1067 (if arg
1068 (setq makefile-need-target-pickup t
1069 makefile-need-macro-pickup t))
1070 (makefile-pickup-macros)
1071 (makefile-pickup-targets)
1072 (if makefile-pickup-everything-picks-up-filenames-p
1073 (makefile-pickup-filenames-as-targets)))
1074
1075 (defun makefile-pickup-filenames-as-targets ()
1076 "Scan the current directory for filenames to use as targets.
1077 Checks each filename against `makefile-ignored-files-in-pickup-regex'
1078 and adds all qualifying names to the list of known targets."
1079 (interactive)
1080 (mapc (lambda (name)
1081 (or (file-directory-p name)
1082 (string-match makefile-ignored-files-in-pickup-regex name)
1083 (if (makefile-remember-target name)
1084 (message "Picked up file \"%s\" as target" name))))
1085 (file-name-all-completions "" (or (file-name-directory (buffer-file-name)) ""))))
1086
1087 \f
1088
1089 ;;; Completion.
1090
1091 (defun makefile-complete ()
1092 "Perform completion on Makefile construct preceding point.
1093 Can complete variable and target names.
1094 The context determines which are considered."
1095 (interactive)
1096 (let* ((beg (save-excursion
1097 (skip-chars-backward "^$(){}:#= \t\n")
1098 (point)))
1099 (try (buffer-substring beg (point)))
1100 (do-macros nil)
1101 (paren nil))
1102
1103 (save-excursion
1104 (goto-char beg)
1105 (let ((pc (preceding-char)))
1106 (cond
1107 ;; Beginning of line means anything.
1108 ((bolp)
1109 ())
1110
1111 ;; Preceding "$" means macros only.
1112 ((= pc ?$)
1113 (setq do-macros t))
1114
1115 ;; Preceding "$(" or "${" means macros only.
1116 ((and (or (= pc ?{)
1117 (= pc ?\())
1118 (progn
1119 (setq paren pc)
1120 (backward-char)
1121 (and (not (bolp))
1122 (= (preceding-char) ?$))))
1123 (setq do-macros t)))))
1124
1125 ;; Try completion.
1126 (let* ((table (append (if do-macros
1127 '()
1128 makefile-target-table)
1129 makefile-macro-table))
1130 (completion (try-completion try table)))
1131 (cond
1132 ;; Exact match, so insert closing paren or colon.
1133 ((eq completion t)
1134 (insert (if do-macros
1135 (if (eq paren ?{)
1136 ?}
1137 ?\))
1138 (if (save-excursion
1139 (goto-char beg)
1140 (bolp))
1141 ":"
1142 " "))))
1143
1144 ;; No match.
1145 ((null completion)
1146 (message "Can't find completion for \"%s\"" try)
1147 (ding))
1148
1149 ;; Partial completion.
1150 ((not (string= try completion))
1151 ;; FIXME it would be nice to supply the closing paren if an
1152 ;; exact, unambiguous match were found. That is not possible
1153 ;; right now. Ditto closing ":" for targets.
1154 (delete-region beg (point))
1155
1156 ;; DO-MACROS means doing macros only. If not that, then check
1157 ;; to see if this completion is a macro. Special insertion
1158 ;; must be done for macros.
1159 (if (or do-macros
1160 (assoc completion makefile-macro-table))
1161 (let ((makefile-use-curly-braces-for-macros-p
1162 (or (eq paren ?{)
1163 makefile-use-curly-braces-for-macros-p)))
1164 (delete-backward-char 2)
1165 (makefile-do-macro-insertion completion)
1166 (delete-backward-char 1))
1167
1168 ;; Just insert targets.
1169 (insert completion)))
1170
1171 ;; Can't complete any more, so make completion list. FIXME
1172 ;; this doesn't do the right thing when the completion is
1173 ;; actually inserted. I don't think there is an easy way to do
1174 ;; that.
1175 (t
1176 (message "Making completion list...")
1177 (let ((list (all-completions try table)))
1178 (with-output-to-temp-buffer "*Completions*"
1179 (display-completion-list list)))
1180 (message "Making completion list...done"))))))
1181
1182 \f
1183
1184 ;; Backslashification. Stolen from cc-mode.el.
1185
1186 (defun makefile-backslash-region (from to delete-flag)
1187 "Insert, align, or delete end-of-line backslashes on the lines in the region.
1188 With no argument, inserts backslashes and aligns existing backslashes.
1189 With an argument, deletes the backslashes.
1190
1191 This function does not modify the last line of the region if the region ends
1192 right at the start of the following line; it does not modify blank lines
1193 at the start of the region. So you can put the region around an entire macro
1194 definition and conveniently use this command."
1195 (interactive "r\nP")
1196 (save-excursion
1197 (goto-char from)
1198 (let ((column makefile-backslash-column)
1199 (endmark (make-marker)))
1200 (move-marker endmark to)
1201 ;; Compute the smallest column number past the ends of all the lines.
1202 (if makefile-backslash-align
1203 (progn
1204 (if (not delete-flag)
1205 (while (< (point) to)
1206 (end-of-line)
1207 (if (= (preceding-char) ?\\)
1208 (progn (forward-char -1)
1209 (skip-chars-backward " \t")))
1210 (setq column (max column (1+ (current-column))))
1211 (forward-line 1)))
1212 ;; Adjust upward to a tab column, if that doesn't push
1213 ;; past the margin.
1214 (if (> (% column tab-width) 0)
1215 (let ((adjusted (* (/ (+ column tab-width -1) tab-width)
1216 tab-width)))
1217 (if (< adjusted (window-width))
1218 (setq column adjusted))))))
1219 ;; Don't modify blank lines at start of region.
1220 (goto-char from)
1221 (while (and (< (point) endmark) (eolp))
1222 (forward-line 1))
1223 ;; Add or remove backslashes on all the lines.
1224 (while (and (< (point) endmark)
1225 ;; Don't backslashify the last line
1226 ;; if the region ends right at the start of the next line.
1227 (save-excursion
1228 (forward-line 1)
1229 (< (point) endmark)))
1230 (if (not delete-flag)
1231 (makefile-append-backslash column)
1232 (makefile-delete-backslash))
1233 (forward-line 1))
1234 (move-marker endmark nil))))
1235
1236 (defun makefile-append-backslash (column)
1237 (end-of-line)
1238 ;; Note that "\\\\" is needed to get one backslash.
1239 (if (= (preceding-char) ?\\)
1240 (progn (forward-char -1)
1241 (delete-horizontal-space)
1242 (indent-to column (if makefile-backslash-align nil 1)))
1243 (indent-to column (if makefile-backslash-align nil 1))
1244 (insert "\\")))
1245
1246 (defun makefile-delete-backslash ()
1247 (end-of-line)
1248 (or (bolp)
1249 (progn
1250 (forward-char -1)
1251 (if (looking-at "\\\\")
1252 (delete-region (1+ (point))
1253 (progn (skip-chars-backward " \t") (point)))))))
1254
1255 \f
1256
1257 ;; Filling
1258
1259 (defun makefile-fill-paragraph (arg)
1260 ;; Fill comments, backslashed lines, and variable definitions
1261 ;; specially.
1262 (save-excursion
1263 (beginning-of-line)
1264 (cond
1265 ((looking-at "^#+")
1266 ;; Found a comment. Set the fill prefix, and find the paragraph
1267 ;; boundaries by searching for lines that look like comment-only
1268 ;; lines.
1269 (let ((fill-prefix (match-string-no-properties 0))
1270 (fill-paragraph-function nil))
1271 (save-excursion
1272 (save-restriction
1273 (narrow-to-region
1274 ;; Search backwards.
1275 (save-excursion
1276 (while (and (zerop (forward-line -1))
1277 (looking-at "^#")))
1278 ;; We may have gone too far. Go forward again.
1279 (or (looking-at "^#")
1280 (forward-line 1))
1281 (point))
1282 ;; Search forwards.
1283 (save-excursion
1284 (while (looking-at "^#")
1285 (forward-line))
1286 (point)))
1287 (fill-paragraph nil)
1288 t))))
1289
1290 ;; Must look for backslashed-region before looking for variable
1291 ;; assignment.
1292 ((or (eq (char-before (line-end-position 1)) ?\\)
1293 (eq (char-before (line-end-position 0)) ?\\))
1294 ;; A backslash region. Find beginning and end, remove
1295 ;; backslashes, fill, and then reapply backslahes.
1296 (end-of-line)
1297 (let ((beginning
1298 (save-excursion
1299 (end-of-line 0)
1300 (while (= (preceding-char) ?\\)
1301 (end-of-line 0))
1302 (forward-char)
1303 (point)))
1304 (end
1305 (save-excursion
1306 (while (= (preceding-char) ?\\)
1307 (end-of-line 2))
1308 (point))))
1309 (save-restriction
1310 (narrow-to-region beginning end)
1311 (makefile-backslash-region (point-min) (point-max) t)
1312 (let ((fill-paragraph-function nil))
1313 (fill-paragraph nil))
1314 (makefile-backslash-region (point-min) (point-max) nil)
1315 (goto-char (point-max))
1316 (if (< (skip-chars-backward "\n") 0)
1317 (delete-region (point) (point-max))))))
1318
1319 ((looking-at makefile-macroassign-regex)
1320 ;; Have a macro assign. Fill just this line, and then backslash
1321 ;; resulting region.
1322 (save-restriction
1323 (narrow-to-region (point) (line-beginning-position 2))
1324 (let ((fill-paragraph-function nil))
1325 (fill-paragraph nil))
1326 (makefile-backslash-region (point-min) (point-max) nil)))))
1327
1328 ;; Always return non-nil so we don't fill anything else.
1329 t)
1330
1331 \f
1332
1333 ;;; ------------------------------------------------------------
1334 ;;; Browser mode.
1335 ;;; ------------------------------------------------------------
1336
1337 (defun makefile-browser-format-target-line (target selected)
1338 (format
1339 (concat (make-string makefile-browser-leftmost-column ?\ )
1340 (if selected
1341 makefile-browser-selected-mark
1342 makefile-browser-unselected-mark)
1343 "%s%s")
1344 target makefile-target-colon))
1345
1346 (defun makefile-browser-format-macro-line (macro selected)
1347 (format
1348 (concat (make-string makefile-browser-leftmost-column ?\ )
1349 (if selected
1350 makefile-browser-selected-mark
1351 makefile-browser-unselected-mark)
1352 (makefile-format-macro-ref macro))))
1353
1354 (defun makefile-browser-fill (targets macros)
1355 (let ((inhibit-read-only t))
1356 (goto-char (point-min))
1357 (erase-buffer)
1358 (mapconcat
1359 (function
1360 (lambda (item) (insert (makefile-browser-format-target-line (car item) nil) "\n")))
1361 targets
1362 "")
1363 (mapconcat
1364 (function
1365 (lambda (item) (insert (makefile-browser-format-macro-line (car item) nil) "\n")))
1366 macros
1367 "")
1368 (sort-lines nil (point-min) (point-max))
1369 (goto-char (1- (point-max)))
1370 (delete-char 1) ; remove unnecessary newline at eob
1371 (goto-char (point-min))
1372 (forward-char makefile-browser-cursor-column)))
1373
1374 ;;;
1375 ;;; Moving up and down in the browser
1376 ;;;
1377
1378 (defun makefile-browser-next-line ()
1379 "Move the browser selection cursor to the next line."
1380 (interactive)
1381 (if (not (makefile-last-line-p))
1382 (progn
1383 (forward-line 1)
1384 (forward-char makefile-browser-cursor-column))))
1385
1386 (defun makefile-browser-previous-line ()
1387 "Move the browser selection cursor to the previous line."
1388 (interactive)
1389 (if (not (makefile-first-line-p))
1390 (progn
1391 (forward-line -1)
1392 (forward-char makefile-browser-cursor-column))))
1393
1394 ;;;
1395 ;;; Quitting the browser (returns to client buffer)
1396 ;;;
1397
1398 (defun makefile-browser-quit ()
1399 "Leave the browser and return to the makefile buffer."
1400 (interactive)
1401 (let ((my-client makefile-browser-client))
1402 (setq makefile-browser-client nil) ; we quitted, so NO client!
1403 (set-buffer-modified-p nil)
1404 (quit-window t)
1405 (pop-to-buffer my-client)))
1406
1407 ;;;
1408 ;;; Toggle state of a browser item
1409 ;;;
1410
1411 (defun makefile-browser-toggle ()
1412 "Toggle the selection state of the browser item at the cursor position."
1413 (interactive)
1414 (let ((this-line (count-lines (point-min) (point))))
1415 (setq this-line (max 1 this-line))
1416 (makefile-browser-toggle-state-for-line this-line)
1417 (goto-line this-line)
1418 (let ((inhibit-read-only t))
1419 (beginning-of-line)
1420 (if (makefile-browser-on-macro-line-p)
1421 (let ((macro-name (makefile-browser-this-line-macro-name)))
1422 (delete-region (point) (progn (end-of-line) (point)))
1423 (insert
1424 (makefile-browser-format-macro-line
1425 macro-name
1426 (makefile-browser-get-state-for-line this-line))))
1427 (let ((target-name (makefile-browser-this-line-target-name)))
1428 (delete-region (point) (progn (end-of-line) (point)))
1429 (insert
1430 (makefile-browser-format-target-line
1431 target-name
1432 (makefile-browser-get-state-for-line this-line))))))
1433 (beginning-of-line)
1434 (forward-char makefile-browser-cursor-column)
1435 (if makefile-browser-auto-advance-after-selection-p
1436 (makefile-browser-next-line))))
1437
1438 ;;;
1439 ;;; Making insertions into the client buffer
1440 ;;;
1441
1442 (defun makefile-browser-insert-continuation ()
1443 "Insert a makefile continuation.
1444 In the makefile buffer, go to (end-of-line), insert a \'\\\'
1445 character, insert a new blank line, go to that line and indent by one TAB.
1446 This is most useful in the process of creating continued lines when copying
1447 large dependencies from the browser to the client buffer.
1448 \(point) advances accordingly in the client buffer."
1449 (interactive)
1450 (with-current-buffer makefile-browser-client
1451 (end-of-line)
1452 (insert "\\\n\t")))
1453
1454 (defun makefile-browser-insert-selection ()
1455 "Insert all selected targets and/or macros in the makefile buffer.
1456 Insertion takes place at point."
1457 (interactive)
1458 (save-excursion
1459 (goto-line 1)
1460 (let ((current-line 1))
1461 (while (not (eobp))
1462 (if (makefile-browser-get-state-for-line current-line)
1463 (makefile-browser-send-this-line-item))
1464 (forward-line 1)
1465 (setq current-line (1+ current-line))))))
1466
1467 (defun makefile-browser-insert-selection-and-quit ()
1468 (interactive)
1469 (makefile-browser-insert-selection)
1470 (makefile-browser-quit))
1471
1472 (defun makefile-browser-send-this-line-item ()
1473 (if (makefile-browser-on-macro-line-p)
1474 (save-excursion
1475 (let ((macro-name (makefile-browser-this-line-macro-name)))
1476 (set-buffer makefile-browser-client)
1477 (insert (makefile-format-macro-ref macro-name) " ")))
1478 (save-excursion
1479 (let ((target-name (makefile-browser-this-line-target-name)))
1480 (set-buffer makefile-browser-client)
1481 (insert target-name " ")))))
1482
1483 (defun makefile-browser-start-interaction ()
1484 (use-local-map makefile-browser-map)
1485 (setq buffer-read-only t))
1486
1487 (defun makefile-browse (targets macros)
1488 (interactive)
1489 (if (zerop (+ (length targets) (length macros)))
1490 (progn
1491 (beep)
1492 (message "No macros or targets to browse! Consider running 'makefile-pickup-everything\'"))
1493 (let ((browser-buffer (get-buffer-create makefile-browser-buffer-name)))
1494 (pop-to-buffer browser-buffer)
1495 (makefile-browser-fill targets macros)
1496 (shrink-window-if-larger-than-buffer)
1497 (set (make-local-variable 'makefile-browser-selection-vector)
1498 (make-vector (+ (length targets) (length macros)) nil))
1499 (makefile-browser-start-interaction))))
1500
1501 (defun makefile-switch-to-browser ()
1502 (interactive)
1503 (run-hooks 'makefile-browser-hook)
1504 (setq makefile-browser-client (current-buffer))
1505 (makefile-pickup-targets)
1506 (makefile-pickup-macros)
1507 (makefile-browse makefile-target-table makefile-macro-table))
1508
1509 \f
1510
1511 ;;; ------------------------------------------------------------
1512 ;;; Up-to-date overview buffer
1513 ;;; ------------------------------------------------------------
1514
1515 (defun makefile-create-up-to-date-overview ()
1516 "Create a buffer containing an overview of the state of all known targets.
1517 Known targets are targets that are explicitly defined in that makefile;
1518 in other words, all targets that appear on the left hand side of a
1519 dependency in the makefile."
1520 (interactive)
1521 (if (y-or-n-p "Are you sure that the makefile being edited is consistent? ")
1522 ;;
1523 ;; The rest of this function operates on a temporary makefile, created by
1524 ;; writing the current contents of the makefile buffer.
1525 ;;
1526 (let ((saved-target-table makefile-target-table)
1527 (this-buffer (current-buffer))
1528 (makefile-up-to-date-buffer
1529 (get-buffer-create makefile-up-to-date-buffer-name))
1530 (filename (makefile-save-temporary))
1531 ;;
1532 ;; Forget the target table because it may contain picked-up filenames
1533 ;; that are not really targets in the current makefile.
1534 ;; We don't want to query these, so get a new target-table with just the
1535 ;; targets that can be found in the makefile buffer.
1536 ;; The 'old' target table will be restored later.
1537 ;;
1538 (real-targets (progn
1539 (makefile-pickup-targets)
1540 makefile-target-table))
1541 (prereqs makefile-has-prereqs)
1542 )
1543
1544 (set-buffer makefile-up-to-date-buffer)
1545 (setq buffer-read-only nil)
1546 (erase-buffer)
1547 (makefile-query-targets filename real-targets prereqs)
1548 (if (zerop (buffer-size)) ; if it did not get us anything
1549 (progn
1550 (kill-buffer (current-buffer))
1551 (message "No overview created!")))
1552 (set-buffer this-buffer)
1553 (setq makefile-target-table saved-target-table)
1554 (if (get-buffer makefile-up-to-date-buffer-name)
1555 (progn
1556 (pop-to-buffer (get-buffer makefile-up-to-date-buffer-name))
1557 (shrink-window-if-larger-than-buffer)
1558 (sort-lines nil (point-min) (point-max))
1559 (setq buffer-read-only t))))))
1560
1561 (defun makefile-save-temporary ()
1562 "Create a temporary file from the current makefile buffer."
1563 (let ((filename (makefile-generate-temporary-filename)))
1564 (write-region (point-min) (point-max) filename nil 0)
1565 filename)) ; return the filename
1566
1567 (defun makefile-generate-temporary-filename ()
1568 "Create a filename suitable for use in `makefile-save-temporary'.
1569 Be careful to allow brain-dead file systems (DOS, SYSV ...) to cope
1570 with the generated name!"
1571 (let ((my-name (user-login-name))
1572 (my-uid (int-to-string (user-uid))))
1573 (concat "mktmp"
1574 (if (> (length my-name) 3)
1575 (substring my-name 0 3)
1576 my-name)
1577 "."
1578 (if (> (length my-uid) 3)
1579 (substring my-uid 0 3)
1580 my-uid))))
1581
1582 (defun makefile-query-targets (filename target-table prereq-list)
1583 "Fill the up-to-date overview buffer.
1584 Checks each target in TARGET-TABLE using `makefile-query-one-target-method'
1585 and generates the overview, one line per target name."
1586 (insert
1587 (mapconcat
1588 (function (lambda (item)
1589 (let* ((target-name (car item))
1590 (no-prereqs (not (member target-name prereq-list)))
1591 (needs-rebuild (or no-prereqs
1592 (funcall
1593 makefile-query-one-target-method
1594 target-name
1595 filename))))
1596 (format "\t%s%s"
1597 target-name
1598 (cond (no-prereqs " .. has no prerequisites")
1599 (needs-rebuild " .. NEEDS REBUILD")
1600 (t " .. is up to date"))))
1601 ))
1602 target-table "\n"))
1603 (goto-char (point-min))
1604 (delete-file filename)) ; remove the tmpfile
1605
1606 (defun makefile-query-by-make-minus-q (target &optional filename)
1607 (not (eq 0
1608 (call-process makefile-brave-make nil nil nil
1609 "-f" filename "-q" target))))
1610
1611 \f
1612
1613 ;;; ------------------------------------------------------------
1614 ;;; Continuation cleanup
1615 ;;; ------------------------------------------------------------
1616
1617 (defun makefile-cleanup-continuations ()
1618 (if (eq major-mode 'makefile-mode)
1619 (if (and makefile-cleanup-continuations
1620 (not buffer-read-only))
1621 (save-excursion
1622 (goto-char (point-min))
1623 (while (re-search-forward "\\\\[ \t]+$" nil t)
1624 (replace-match "\\" t t))))))
1625
1626
1627 ;;; ------------------------------------------------------------
1628 ;;; Warn of suspicious lines
1629 ;;; ------------------------------------------------------------
1630
1631 (defun makefile-warn-suspicious-lines ()
1632 ;; Returning non-nil cancels the save operation
1633 (if (eq major-mode 'makefile-mode)
1634 (save-excursion
1635 (goto-char (point-min))
1636 (if (re-search-forward "^\\(\t+$\\| +\t\\)" nil t)
1637 (not (y-or-n-p
1638 (format "Suspicious line %d. Save anyway? "
1639 (count-lines (point-min) (point)))))))))
1640
1641 (defun makefile-warn-continuations ()
1642 (if (eq major-mode 'makefile-mode)
1643 (save-excursion
1644 (goto-char (point-min))
1645 (if (re-search-forward "\\\\[ \t]+$" nil t)
1646 (not (y-or-n-p
1647 (format "Suspicious continuation in line %d. Save anyway? "
1648 (count-lines (point-min) (point)))))))))
1649 \f
1650
1651 ;;; ------------------------------------------------------------
1652 ;;; GNU make function support
1653 ;;; ------------------------------------------------------------
1654
1655 (defun makefile-insert-gmake-function ()
1656 "Insert a GNU make function call.
1657 Asks for the name of the function to use (with completion).
1658 Then prompts for all required parameters."
1659 (interactive)
1660 (let* ((gm-function-name (completing-read
1661 "Function: "
1662 makefile-gnumake-functions-alist
1663 nil t nil))
1664 (gm-function-prompts
1665 (cdr (assoc gm-function-name makefile-gnumake-functions-alist))))
1666 (if (not (zerop (length gm-function-name)))
1667 (insert (makefile-format-macro-ref
1668 (concat gm-function-name " "
1669 (makefile-prompt-for-gmake-funargs
1670 gm-function-name gm-function-prompts)))
1671 " "))))
1672
1673 (defun makefile-prompt-for-gmake-funargs (function-name prompt-list)
1674 (mapconcat
1675 (function (lambda (one-prompt)
1676 (read-string (format "[%s] %s: " function-name one-prompt)
1677 nil)))
1678 prompt-list
1679 ","))
1680
1681 \f
1682
1683 ;;; ------------------------------------------------------------
1684 ;;; Utility functions
1685 ;;; ------------------------------------------------------------
1686
1687 (defun makefile-match-function-end (end)
1688 "To be called as an anchored matcher by font-lock.
1689 The anchor must have matched the opening parens in the first group."
1690 (let ((s (match-string-no-properties 1)))
1691 (setq s (cond ((string= s "(") "\\(.*?\\)[ \t]*)")
1692 ((string= s "{") "\\(.*?\\)[ \t]*}")
1693 ((string= s "((") "\\(.*?\\)[ \t]*))")
1694 ((string= s "{{") "\\(.*?\\)[ \t]*}}")))
1695 (if s (looking-at s))))
1696
1697 (defun makefile-match-dependency (bound)
1698 "Search for `makefile-dependency-regex' up to BOUND.
1699 Checks that the colon has not already been fontified, else we
1700 matched in a rule action."
1701 (catch 'found
1702 (let ((pt (point)))
1703 (while (progn (skip-chars-forward makefile-dependency-skip bound)
1704 (< (point) (or bound (point-max))))
1705 (forward-char)
1706 (or (eq (char-after) ?=)
1707 (get-text-property (1- (point)) 'face)
1708 (if (> (line-beginning-position) (+ (point-min) 2))
1709 (eq (char-before (line-end-position 0)) ?\\))
1710 (when (save-excursion
1711 (beginning-of-line)
1712 (looking-at makefile-dependency-regex))
1713 (save-excursion
1714 (let ((deps-end (match-end 1))
1715 (match-data (match-data)))
1716 (goto-char deps-end)
1717 (skip-chars-backward " \t")
1718 (setq deps-end (point))
1719 (beginning-of-line)
1720 (skip-chars-forward " \t")
1721 ;; Alter the bounds recorded for subexp 1,
1722 ;; which is what is supposed to match the targets.
1723 (setcar (nthcdr 2 match-data) (point))
1724 (setcar (nthcdr 3 match-data) deps-end)
1725 (store-match-data match-data)))
1726 (end-of-line)
1727 (throw 'found (point)))))
1728 (goto-char pt))
1729 nil))
1730
1731 (defun makefile-match-action (bound)
1732 (catch 'found
1733 (while (re-search-forward makefile-rule-action-regex bound t)
1734 (or (eq ?\\ (char-after (- (match-beginning 0) 2)))
1735 (throw 'found t)))))
1736
1737 (defun makefile-do-macro-insertion (macro-name)
1738 "Insert a macro reference."
1739 (if (not (zerop (length macro-name)))
1740 (if (assoc macro-name makefile-runtime-macros-list)
1741 (insert "$" macro-name)
1742 (insert (makefile-format-macro-ref macro-name)))))
1743
1744 (defun makefile-remember-target (target-name &optional has-prereqs)
1745 "Remember a given target if it is not already remembered for this buffer."
1746 (if (not (zerop (length target-name)))
1747 (progn
1748 (if (not (assoc target-name makefile-target-table))
1749 (setq makefile-target-table
1750 (cons (list target-name) makefile-target-table)))
1751 (if has-prereqs
1752 (setq makefile-has-prereqs
1753 (cons target-name makefile-has-prereqs))))))
1754
1755 (defun makefile-remember-macro (macro-name)
1756 "Remember a given macro if it is not already remembered for this buffer."
1757 (if (not (zerop (length macro-name)))
1758 (if (not (assoc macro-name makefile-macro-table))
1759 (setq makefile-macro-table
1760 (cons (list macro-name) makefile-macro-table)))))
1761
1762 (defun makefile-forward-after-target-colon ()
1763 "Move point forward after inserting the terminating colon of a target.
1764 This acts according to the value of `makefile-tab-after-target-colon'."
1765 (if makefile-tab-after-target-colon
1766 (insert "\t")
1767 (insert " ")))
1768
1769 (defun makefile-browser-on-macro-line-p ()
1770 "Determine if point is on a macro line in the browser."
1771 (save-excursion
1772 (beginning-of-line)
1773 (re-search-forward "\\$[{(]" (line-end-position) t)))
1774
1775 (defun makefile-browser-this-line-target-name ()
1776 "Extract the target name from a line in the browser."
1777 (save-excursion
1778 (end-of-line)
1779 (skip-chars-backward "^ \t")
1780 (buffer-substring (point) (1- (line-end-position)))))
1781
1782 (defun makefile-browser-this-line-macro-name ()
1783 "Extract the macro name from a line in the browser."
1784 (save-excursion
1785 (beginning-of-line)
1786 (re-search-forward "\\$[{(]" (line-end-position) t)
1787 (let ((macro-start (point)))
1788 (skip-chars-forward "^})")
1789 (buffer-substring macro-start (point)))))
1790
1791 (defun makefile-format-macro-ref (macro-name)
1792 "Format a macro reference.
1793 Uses `makefile-use-curly-braces-for-macros-p'."
1794 (if (or (char-equal ?\( (string-to-char macro-name))
1795 (char-equal ?\{ (string-to-char macro-name)))
1796 (format "$%s" macro-name)
1797 (if makefile-use-curly-braces-for-macros-p
1798 (format "${%s}" macro-name)
1799 (format "$(%s)" macro-name))))
1800
1801 (defun makefile-browser-get-state-for-line (n)
1802 (aref makefile-browser-selection-vector (1- n)))
1803
1804 (defun makefile-browser-set-state-for-line (n to-state)
1805 (aset makefile-browser-selection-vector (1- n) to-state))
1806
1807 (defun makefile-browser-toggle-state-for-line (n)
1808 (makefile-browser-set-state-for-line n (not (makefile-browser-get-state-for-line n))))
1809
1810 (defun makefile-last-line-p ()
1811 (= (line-end-position) (point-max)))
1812
1813 (defun makefile-first-line-p ()
1814 (= (line-beginning-position) (point-min)))
1815
1816 \f
1817
1818 ;;; Support for other packages, like add-log.
1819
1820 (defun makefile-add-log-defun ()
1821 "Return name of target or variable assignment that point is in.
1822 If it isn't in one, return nil."
1823 (save-excursion
1824 (let (found)
1825 (beginning-of-line)
1826 ;; Scan back line by line, noticing when we come to a
1827 ;; variable or rule definition, and giving up when we see
1828 ;; a line that is not part of either of those.
1829 (while (not (or (setq found
1830 (when (or (looking-at makefile-macroassign-regex)
1831 (looking-at makefile-dependency-regex))
1832 (match-string-no-properties 1)))
1833 ;; Don't keep looking across a blank line or comment.
1834 (looking-at "$\\|#")
1835 (not (zerop (forward-line -1))))))
1836 found)))
1837
1838 (provide 'make-mode)
1839
1840 ;;; arch-tag: bd23545a-de91-44fb-b1b2-feafbb2635a0
1841 ;;; make-mode.el ends here