1995-11-05 04:40:19 +00:00
|
|
|
|
;;; make-mode.el --- makefile editing commands for Emacs
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
2003-02-24 23:49:27 +00:00
|
|
|
|
;; Copyright (C) 1992,94,99,2000,2001, 2002, 2003 Free Software Foundation, Inc.
|
1992-07-22 02:58:48 +00:00
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;; Author: Thomas Neumann <tom@smart.bo.open.de>
|
1993-04-21 03:47:05 +00:00
|
|
|
|
;; Eric S. Raymond <esr@snark.thyrsus.com>
|
1997-05-27 17:46:19 +00:00
|
|
|
|
;; Maintainer: FSF
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;; Adapted-By: ESR
|
1992-07-17 08:15:29 +00:00
|
|
|
|
;; Keywords: unix, tools
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
1995-06-15 20:42:24 +00:00
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1993-03-22 03:27:18 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1993-04-21 03:47:05 +00:00
|
|
|
|
;; A major mode for editing makefiles. The mode knows about Makefile
|
|
|
|
|
;; syntax and defines M-n and M-p to move to next and previous productions.
|
|
|
|
|
;;
|
|
|
|
|
;; The keys $, =, : and . are electric; they try to help you fill in a
|
|
|
|
|
;; macro reference, macro definition, ordinary target name, or special
|
|
|
|
|
;; target name, respectively. Such names are completed using a list of
|
|
|
|
|
;; targets and macro names parsed out of the makefile. This list is
|
|
|
|
|
;; automatically updated, if necessary, whenever you invoke one of
|
|
|
|
|
;; these commands. You can force it to be updated with C-c C-p.
|
|
|
|
|
;;
|
1994-10-11 20:42:23 +00:00
|
|
|
|
;; The command C-c C-f adds certain filenames in the current directory
|
1993-04-21 03:47:05 +00:00
|
|
|
|
;; as targets. You can filter out filenames by setting the variable
|
|
|
|
|
;; makefile-ignored-files-in-pickup-regex.
|
|
|
|
|
;;
|
|
|
|
|
;; The command C-c C-u grinds for a bit, then pops up a report buffer
|
|
|
|
|
;; showing which target names are up-to-date with respect to their
|
|
|
|
|
;; prerequisites, which targets are out-of-date, and which have no
|
|
|
|
|
;; prerequisites.
|
|
|
|
|
;;
|
1994-10-11 20:42:23 +00:00
|
|
|
|
;; The command C-c C-b pops up a browser window listing all target and
|
2005-05-05 19:07:39 +00:00
|
|
|
|
;; macro names. You can mark or unmark items with C-c SPC, and insert
|
1993-04-21 03:47:05 +00:00
|
|
|
|
;; all marked items back in the Makefile with C-c TAB.
|
|
|
|
|
;;
|
|
|
|
|
;; The command C-c TAB in the makefile buffer inserts a GNU make builtin.
|
|
|
|
|
;; You will be prompted for the builtin's args.
|
|
|
|
|
;;
|
|
|
|
|
;; There are numerous other customization variables.
|
1993-03-22 03:27:18 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
;;
|
|
|
|
|
;; To Do:
|
|
|
|
|
;;
|
2004-07-22 14:26:26 +00:00
|
|
|
|
;; * Add missing doc strings, improve terse doc strings.
|
1994-10-11 20:42:23 +00:00
|
|
|
|
;; * Eliminate electric stuff entirely.
|
|
|
|
|
;; * It might be nice to highlight targets differently depending on
|
|
|
|
|
;; whether they are up-to-date or not. Not sure how this would
|
|
|
|
|
;; interact with font-lock.
|
|
|
|
|
;; * Would be nice to edit the commands in ksh-mode and have
|
|
|
|
|
;; indentation and slashification done automatically. Hard.
|
|
|
|
|
;; * Consider removing browser mode. It seems useless.
|
|
|
|
|
;; * ":" should notice when a new target is made and add it to the
|
|
|
|
|
;; list (or at least set makefile-need-target-pickup).
|
1994-10-30 21:20:42 +00:00
|
|
|
|
;; * Make browser into a major mode.
|
1994-10-11 20:42:23 +00:00
|
|
|
|
;; * Clean up macro insertion stuff. It is a mess.
|
|
|
|
|
;; * Browser entry and exit is weird. Normalize.
|
|
|
|
|
;; * Browser needs to be rewritten. Right now it is kind of a crock.
|
|
|
|
|
;; Should at least:
|
|
|
|
|
;; * Act more like dired/buffer menu/whatever.
|
|
|
|
|
;; * Highlight as mouse traverses.
|
|
|
|
|
;; * B2 inserts.
|
|
|
|
|
;; * Update documentation above.
|
|
|
|
|
;; * Update texinfo manual.
|
|
|
|
|
;; * Update files.el.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
;; Sadly we need this for a macro.
|
|
|
|
|
(eval-when-compile
|
2000-04-04 21:03:15 +00:00
|
|
|
|
(require 'imenu)
|
|
|
|
|
(require 'dabbrev)
|
|
|
|
|
(require 'add-log))
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; ------------------------------------------------------------
|
1993-06-09 11:59:12 +00:00
|
|
|
|
;;; Configurable stuff
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
|
1997-07-27 19:50:06 +00:00
|
|
|
|
(defgroup makefile nil
|
|
|
|
|
"Makefile editing commands for Emacs."
|
|
|
|
|
:group 'tools
|
|
|
|
|
:prefix "makefile-")
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(defface makefile-space
|
2005-05-13 07:51:15 +00:00
|
|
|
|
'((((class color)) (:background "hotpink"))
|
|
|
|
|
(t (:reverse-video t)))
|
1997-07-28 22:22:27 +00:00
|
|
|
|
"Face to use for highlighting leading spaces in Font-Lock mode."
|
|
|
|
|
:group 'faces
|
2002-11-17 22:37:11 +00:00
|
|
|
|
:group 'makefile)
|
2005-06-15 22:15:46 +00:00
|
|
|
|
(put 'makefile-space-face 'face-alias 'makefile-space)
|
1997-07-28 22:22:27 +00:00
|
|
|
|
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(defface makefile-targets
|
2005-05-13 07:51:15 +00:00
|
|
|
|
;; This needs to go along both with foreground and background colors (i.e. shell)
|
2005-06-14 22:33:56 +00:00
|
|
|
|
'((t (:inherit font-lock-function-name-face)))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
"Face to use for additionally highlighting rule targets in Font-Lock mode."
|
|
|
|
|
:group 'faces
|
2005-06-03 08:47:25 +00:00
|
|
|
|
:group 'makefile
|
|
|
|
|
:version "22.1")
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(defface makefile-shell
|
|
|
|
|
()
|
|
|
|
|
;;'((((class color) (min-colors 88) (background light)) (:background "seashell1"))
|
|
|
|
|
;; (((class color) (min-colors 88) (background dark)) (:background "seashell4")))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
"Face to use for additionally highlighting Shell commands in Font-Lock mode."
|
|
|
|
|
:group 'faces
|
2005-06-03 08:47:25 +00:00
|
|
|
|
:group 'makefile
|
|
|
|
|
:version "22.1")
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(defface makefile-makepp-perl
|
2005-05-13 07:51:15 +00:00
|
|
|
|
'((((class color) (background light)) (:background "LightBlue1")) ; Camel Book
|
|
|
|
|
(((class color) (background dark)) (:background "DarkBlue"))
|
|
|
|
|
(t (:reverse-video t)))
|
|
|
|
|
"Face to use for additionally highlighting Perl code in Font-Lock mode."
|
|
|
|
|
:group 'faces
|
2005-06-03 08:47:25 +00:00
|
|
|
|
:group 'makefile
|
|
|
|
|
:version "22.1")
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
1997-07-27 19:50:06 +00:00
|
|
|
|
(defcustom makefile-browser-buffer-name "*Macros and Targets*"
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*Name of the macro- and target browser buffer."
|
1997-07-27 19:50:06 +00:00
|
|
|
|
:type 'string
|
|
|
|
|
:group 'makefile)
|
|
|
|
|
|
|
|
|
|
(defcustom makefile-target-colon ":"
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*String to append to all target names inserted by `makefile-insert-target'.
|
1997-07-27 19:50:06 +00:00
|
|
|
|
\":\" or \"::\" are common values."
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'makefile)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1997-07-27 19:50:06 +00:00
|
|
|
|
(defcustom makefile-macro-assign " = "
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*String to append to all macro names inserted by `makefile-insert-macro'.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
The normal value should be \" = \", since this is what
|
1999-10-22 17:04:35 +00:00
|
|
|
|
standard make expects. However, newer makes such as dmake
|
1992-07-17 06:48:03 +00:00
|
|
|
|
allow a larger variety of different macro assignments, so you
|
1997-07-27 19:50:06 +00:00
|
|
|
|
might prefer to use \" += \" or \" := \" ."
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'makefile)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1997-07-27 19:50:06 +00:00
|
|
|
|
(defcustom makefile-electric-keys nil
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*If non-nil, Makefile mode should install electric keybindings.
|
1997-07-27 19:50:06 +00:00
|
|
|
|
Default is nil."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'makefile)
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
1997-07-27 19:50:06 +00:00
|
|
|
|
(defcustom makefile-use-curly-braces-for-macros-p nil
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*Controls the style of generated macro references.
|
1997-07-27 19:50:06 +00:00
|
|
|
|
Non-nil means macro references should use curly braces, like `${this}'.
|
|
|
|
|
nil means use parentheses, like `$(this)'."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'makefile)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1997-07-27 19:50:06 +00:00
|
|
|
|
(defcustom makefile-tab-after-target-colon t
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*If non-nil, insert a TAB after a target colon.
|
1994-10-30 21:20:42 +00:00
|
|
|
|
Otherwise, a space is inserted.
|
1997-07-27 19:50:06 +00:00
|
|
|
|
The default is t."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'makefile)
|
|
|
|
|
|
|
|
|
|
(defcustom makefile-browser-leftmost-column 10
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*Number of blanks to the left of the browser selection mark."
|
1997-07-27 19:50:06 +00:00
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'makefile)
|
|
|
|
|
|
|
|
|
|
(defcustom makefile-browser-cursor-column 10
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*Column the cursor goes to when it moves up or down in the Makefile browser."
|
1997-07-27 19:50:06 +00:00
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'makefile)
|
|
|
|
|
|
|
|
|
|
(defcustom makefile-backslash-column 48
|
|
|
|
|
"*Column in which `makefile-backslash-region' inserts backslashes."
|
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'makefile)
|
|
|
|
|
|
|
|
|
|
(defcustom makefile-backslash-align t
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*If non-nil, `makefile-backslash-region' will align backslashes."
|
1997-07-27 19:50:06 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'makefile)
|
|
|
|
|
|
|
|
|
|
(defcustom makefile-browser-selected-mark "+ "
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*String used to mark selected entries in the Makefile browser."
|
1997-07-27 19:50:06 +00:00
|
|
|
|
:type 'string
|
|
|
|
|
:group 'makefile)
|
|
|
|
|
|
|
|
|
|
(defcustom makefile-browser-unselected-mark " "
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*String used to mark unselected entries in the Makefile browser."
|
1997-07-27 19:50:06 +00:00
|
|
|
|
:type 'string
|
|
|
|
|
:group 'makefile)
|
|
|
|
|
|
|
|
|
|
(defcustom makefile-browser-auto-advance-after-selection-p t
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*If non-nil, cursor will move after item is selected in Makefile browser."
|
1997-07-27 19:50:06 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'makefile)
|
|
|
|
|
|
|
|
|
|
(defcustom makefile-pickup-everything-picks-up-filenames-p nil
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*If non-nil, `makefile-pickup-everything' picks up filenames as targets.
|
1997-09-12 22:40:55 +00:00
|
|
|
|
This means it calls `makefile-pickup-filenames-as-targets'.
|
1997-07-27 19:50:06 +00:00
|
|
|
|
Otherwise filenames are omitted."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'makefile)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
2002-10-26 22:49:12 +00:00
|
|
|
|
(defcustom makefile-cleanup-continuations nil
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*If non-nil, automatically clean up continuation lines when saving.
|
1994-10-30 21:20:42 +00:00
|
|
|
|
A line is cleaned up by removing all whitespace following a trailing
|
|
|
|
|
backslash. This is done silently.
|
1999-10-22 17:04:35 +00:00
|
|
|
|
IMPORTANT: Please note that enabling this option causes Makefile mode
|
1997-07-27 19:50:06 +00:00
|
|
|
|
to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\"."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'makefile)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1999-11-26 17:45:19 +00:00
|
|
|
|
(defcustom makefile-mode-hook nil
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*Normal hook run by `makefile-mode'."
|
1999-11-26 17:45:19 +00:00
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'makefile)
|
|
|
|
|
|
1994-10-30 21:20:42 +00:00
|
|
|
|
(defvar makefile-browser-hook '())
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
;; Special targets for DMake, Sun's make ...
|
2003-02-04 13:24:35 +00:00
|
|
|
|
;;
|
1997-07-27 19:50:06 +00:00
|
|
|
|
(defcustom makefile-special-targets-list
|
1992-07-17 06:48:03 +00:00
|
|
|
|
'(("DEFAULT") ("DONE") ("ERROR") ("EXPORT")
|
|
|
|
|
("FAILED") ("GROUPEPILOG") ("GROUPPROLOG") ("IGNORE")
|
|
|
|
|
("IMPORT") ("INCLUDE") ("INCLUDEDIRS") ("INIT")
|
|
|
|
|
("KEEP_STATE") ("MAKEFILES") ("MAKE_VERSION") ("NO_PARALLEL")
|
|
|
|
|
("PARALLEL") ("PHONY") ("PRECIOUS") ("REMOVE")
|
|
|
|
|
("SCCS_GET") ("SILENT") ("SOURCE") ("SUFFIXES")
|
|
|
|
|
("WAIT") ("c.o") ("C.o") ("m.o")
|
|
|
|
|
("el.elc") ("y.c") ("s.o"))
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*List of special targets.
|
1994-10-30 21:20:42 +00:00
|
|
|
|
You will be offered to complete on one of those in the minibuffer whenever
|
2000-04-04 21:03:15 +00:00
|
|
|
|
you enter a \".\" at the beginning of a line in `makefile-mode'."
|
1997-07-27 19:50:06 +00:00
|
|
|
|
:type '(repeat (list string))
|
|
|
|
|
:group 'makefile)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1997-07-27 19:50:06 +00:00
|
|
|
|
(defcustom makefile-runtime-macros-list
|
1996-02-26 19:33:15 +00:00
|
|
|
|
'(("@") ("&") (">") ("<") ("*") ("^") ("+") ("?") ("%") ("$"))
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*List of macros that are resolved by make at runtime.
|
1999-10-22 17:04:35 +00:00
|
|
|
|
If you insert a macro reference using `makefile-insert-macro-ref', the name
|
|
|
|
|
of the macro is checked against this list. If it can be found its name will
|
1997-07-27 19:50:06 +00:00
|
|
|
|
not be enclosed in { } or ( )."
|
|
|
|
|
:type '(repeat (list string))
|
|
|
|
|
:group 'makefile)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
;; Note that the first big subexpression is used by font lock. Note
|
1999-02-07 04:07:14 +00:00
|
|
|
|
;; that if you change this regexp you might have to fix the imenu
|
|
|
|
|
;; index in makefile-imenu-generic-expression.
|
2005-05-16 20:13:09 +00:00
|
|
|
|
(defvar makefile-dependency-regex
|
|
|
|
|
;; Allow for two nested levels $(v1:$(v2:$(v3:a=b)=c)=d)
|
2005-06-08 15:43:59 +00:00
|
|
|
|
"^\\(\\(?:\\$\\(?:[({]\\(?:\\$\\(?:[({]\\(?:\\$\\(?:[^({]\\|.[^\n$#})]+?[})]\\)\\|[^\n$#)}]\\)+?[})]\\|[^({]\\)\\|[^\n$#)}]\\)+?[})]\\|[^({]\\)\\|[^\n$#:=]\\)+?\\)\\(:\\)\\(?:[ \t]*$\\|[^=\n]\\(?:[^#\n]*?;[ \t]*\\(.+\\)\\)?\\)"
|
1992-07-17 06:48:03 +00:00
|
|
|
|
"Regex used to find dependency lines in a makefile.")
|
|
|
|
|
|
2005-06-03 08:47:25 +00:00
|
|
|
|
(defconst makefile-bsdmake-dependency-regex
|
|
|
|
|
(progn (string-match (regexp-quote "\\(:\\)") makefile-dependency-regex)
|
|
|
|
|
(replace-match "\\([:!]\\)" t t makefile-dependency-regex))
|
|
|
|
|
"Regex used to find dependency lines in a BSD makefile.")
|
|
|
|
|
|
2005-05-17 20:45:26 +00:00
|
|
|
|
(defvar makefile-dependency-skip "^:"
|
|
|
|
|
"Characters to skip to find a line that might be a dependency.")
|
|
|
|
|
|
2005-05-16 20:13:09 +00:00
|
|
|
|
(defvar makefile-rule-action-regex
|
2005-05-29 07:54:07 +00:00
|
|
|
|
"^\t[ \t]*\\([-@]*\\)[ \t]*\\(\\(?:.*\\\\\n\\)*.*\\)"
|
2005-05-13 07:51:15 +00:00
|
|
|
|
"Regex used to highlight rule action lines in font lock mode.")
|
|
|
|
|
|
2005-06-03 08:47:25 +00:00
|
|
|
|
(defconst makefile-makepp-rule-action-regex
|
|
|
|
|
;; Don't care about initial tab, but I don't know how to font-lock correctly without.
|
|
|
|
|
"^\t[ \t]*\\(\\(?:\\(?:noecho\\|ignore[-_]error\\|[-@]+\\)[ \t]*\\)*\\)\\(\\(&\\S +\\)?\\(?:.*\\\\\n\\)*.*\\)"
|
|
|
|
|
"Regex used to highlight makepp rule action lines in font lock mode.")
|
|
|
|
|
|
|
|
|
|
(defconst makefile-bsdmake-rule-action-regex
|
|
|
|
|
(progn (string-match "-@" makefile-rule-action-regex)
|
|
|
|
|
(replace-match "-+@" t t makefile-rule-action-regex))
|
|
|
|
|
"Regex used to highlight BSD rule action lines in font lock mode.")
|
|
|
|
|
|
2005-05-13 07:51:15 +00:00
|
|
|
|
;; Note that the first and second subexpression is used by font lock. Note
|
|
|
|
|
;; that if you change this regexp you might have to fix the imenu index in
|
|
|
|
|
;; makefile-imenu-generic-expression.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(defconst makefile-macroassign-regex
|
2005-06-06 12:50:01 +00:00
|
|
|
|
"^ *\\([^ \n\t][^:#= \t\n]*\\)[ \t]*\\(?:!=\\|[*:+]?[:?]?=\\)"
|
1992-07-17 06:48:03 +00:00
|
|
|
|
"Regex used to find macro assignment lines in a makefile.")
|
|
|
|
|
|
2005-05-13 07:51:15 +00:00
|
|
|
|
(defconst makefile-var-use-regex
|
2005-05-16 20:13:09 +00:00
|
|
|
|
"[^$]\\$[({]\\([-a-zA-Z0-9_.]+\\|[@%<?^+*][FD]?\\)"
|
2005-05-13 07:51:15 +00:00
|
|
|
|
"Regex used to find $(macro) uses in a makefile.")
|
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(defconst makefile-ignored-files-in-pickup-regex
|
1993-12-23 04:57:18 +00:00
|
|
|
|
"\\(^\\..*\\)\\|\\(.*~$\\)\\|\\(.*,v$\\)\\|\\(\\.[chy]\\)"
|
1992-07-17 06:48:03 +00:00
|
|
|
|
"Regex for filenames that will NOT be included in the target list.")
|
|
|
|
|
|
1996-01-09 23:19:17 +00:00
|
|
|
|
(if (fboundp 'facemenu-unlisted-faces)
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(add-to-list 'facemenu-unlisted-faces 'makefile-space))
|
|
|
|
|
(defvar makefile-space 'makefile-space
|
1995-08-21 17:27:04 +00:00
|
|
|
|
"Face to use for highlighting leading spaces in Font-Lock mode.")
|
1994-10-30 21:20:42 +00:00
|
|
|
|
|
2005-05-13 07:51:15 +00:00
|
|
|
|
;; These lists were inspired by the old solution. But they are silly, because
|
|
|
|
|
;; you can't differentiate what follows. They need to be split up.
|
|
|
|
|
(defconst makefile-statements '("include")
|
|
|
|
|
"List of keywords understood by standard make.")
|
|
|
|
|
|
|
|
|
|
(defconst makefile-automake-statements
|
|
|
|
|
`("if" "else" "endif" ,@makefile-statements)
|
|
|
|
|
"List of keywords understood by automake.")
|
|
|
|
|
|
|
|
|
|
(defconst makefile-gmake-statements
|
|
|
|
|
`("-sinclude" "sinclude" "override" "vpath"
|
|
|
|
|
"ifdef" "ifndef" "ifeq" "ifneq" "-include" "define" "endef" "export"
|
|
|
|
|
"unexport"
|
|
|
|
|
,@(cdr makefile-automake-statements))
|
|
|
|
|
"List of keywords understood by gmake.")
|
|
|
|
|
|
|
|
|
|
;; These are even more silly, because you can have more spaces in between.
|
|
|
|
|
(defconst makefile-makepp-statements
|
|
|
|
|
`("and ifdef" "and ifndef" "and ifeq" "and ifneq" "and ifperl"
|
|
|
|
|
"and ifmakeperl" "and ifsys" "and ifnsys" "build_cache" "build_check"
|
|
|
|
|
"else ifdef" "else ifndef" "else ifeq" "else ifneq" "else ifperl"
|
|
|
|
|
"else ifmakeperl" "else ifsys" "else ifnsys" "enddef" "load_makefile"
|
|
|
|
|
"ifperl" "ifmakeperl" "ifsys" "ifnsys" "_include" "makeperl" "makesub"
|
|
|
|
|
"no_implicit_load" "perl" "perl-begin" "perl_begin" "perl-end" "perl_end"
|
|
|
|
|
"prebuild" "or ifdef" "or ifndef" "or ifeq" "or ifneq" "or ifperl"
|
|
|
|
|
"or ifmakeperl" "or ifsys" "or ifnsys" "register_command_parser"
|
|
|
|
|
"register_scanner" "repository" "runtime" "signature" "sub"
|
|
|
|
|
,@(nthcdr 4 makefile-gmake-statements))
|
|
|
|
|
"List of keywords understood by gmake.")
|
|
|
|
|
|
|
|
|
|
(defconst makefile-bsdmake-statements
|
|
|
|
|
`(".elif" ".elifdef" ".elifmake" ".elifndef" ".elifnmake" ".else" ".endfor"
|
|
|
|
|
".endif" ".for" ".if" ".ifdef" ".ifmake" ".ifndef" ".ifnmake" ".undef")
|
|
|
|
|
"List of keywords understood by BSD make.")
|
|
|
|
|
|
2005-05-16 20:13:09 +00:00
|
|
|
|
(defun makefile-make-font-lock-keywords (var keywords space
|
|
|
|
|
&optional negation
|
|
|
|
|
&rest font-lock-keywords)
|
2005-05-13 07:51:15 +00:00
|
|
|
|
`(;; Do macro assignments. These get the "variable-name" face.
|
|
|
|
|
(,makefile-macroassign-regex
|
|
|
|
|
(1 font-lock-variable-name-face)
|
|
|
|
|
;; This is for after !=
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(2 'makefile-shell prepend t)
|
2005-05-17 21:37:59 +00:00
|
|
|
|
;; This is for after normal assignment
|
|
|
|
|
(3 'font-lock-string-face prepend t))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
;; Rule actions.
|
2005-05-16 20:13:09 +00:00
|
|
|
|
(makefile-match-action
|
2005-05-13 07:51:15 +00:00
|
|
|
|
(1 font-lock-type-face)
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(2 'makefile-shell prepend)
|
2005-05-13 07:51:15 +00:00
|
|
|
|
;; Only makepp has builtin commands.
|
|
|
|
|
(3 font-lock-builtin-face prepend t))
|
|
|
|
|
|
|
|
|
|
;; Variable references even in targets/strings/comments.
|
|
|
|
|
(,var 1 font-lock-variable-name-face prepend)
|
|
|
|
|
|
|
|
|
|
;; Automatic variable references and single character variable references,
|
|
|
|
|
;; but not shell variables references.
|
|
|
|
|
("[^$]\\$\\([@%<?^+*_]\\|[a-zA-Z0-9]\\>\\)"
|
|
|
|
|
1 font-lock-constant-face prepend)
|
|
|
|
|
("[^$]\\(\\$[@%*]\\)"
|
2005-06-14 22:33:56 +00:00
|
|
|
|
1 'makefile-targets append)
|
2000-04-04 21:03:15 +00:00
|
|
|
|
|
2005-05-13 07:51:15 +00:00
|
|
|
|
;; Fontify conditionals and includes.
|
|
|
|
|
(,(concat "^\\(?: [ \t]*\\)?"
|
|
|
|
|
(regexp-opt keywords t)
|
|
|
|
|
"\\>[ \t]*\\([^: \t\n#]*\\)")
|
|
|
|
|
(1 font-lock-keyword-face) (2 font-lock-variable-name-face))
|
2000-04-04 21:03:15 +00:00
|
|
|
|
|
2005-05-16 20:13:09 +00:00
|
|
|
|
,@(if negation
|
2005-05-18 20:12:10 +00:00
|
|
|
|
`((,negation (1 font-lock-negation-char-face prepend)
|
|
|
|
|
(2 font-lock-negation-char-face prepend t))))
|
2000-04-04 21:03:15 +00:00
|
|
|
|
|
2005-05-13 07:51:15 +00:00
|
|
|
|
,@(if space
|
|
|
|
|
'(;; Highlight lines that contain just whitespace.
|
|
|
|
|
;; They can cause trouble, especially if they start with a tab.
|
2005-06-14 22:33:56 +00:00
|
|
|
|
("^[ \t]+$" . makefile-space)
|
2003-02-11 23:47:11 +00:00
|
|
|
|
|
2005-05-13 07:51:15 +00:00
|
|
|
|
;; Highlight shell comments that Make treats as commands,
|
|
|
|
|
;; since these can fool people.
|
2005-06-14 22:33:56 +00:00
|
|
|
|
("^\t+#" 0 makefile-space t)
|
2000-05-03 19:24:18 +00:00
|
|
|
|
|
2005-05-13 07:51:15 +00:00
|
|
|
|
;; Highlight spaces that precede tabs.
|
|
|
|
|
;; They can make a tab fail to be effective.
|
2005-06-14 22:33:56 +00:00
|
|
|
|
("^\\( +\\)\t" 1 makefile-space)))
|
2005-05-05 19:07:39 +00:00
|
|
|
|
|
2005-05-16 20:13:09 +00:00
|
|
|
|
,@font-lock-keywords
|
|
|
|
|
|
|
|
|
|
;; Do dependencies.
|
|
|
|
|
(makefile-match-dependency
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(1 'makefile-targets prepend)
|
|
|
|
|
(3 'makefile-shell prepend t))))
|
1995-08-23 23:51:38 +00:00
|
|
|
|
|
2005-05-13 07:51:15 +00:00
|
|
|
|
(defconst makefile-font-lock-keywords
|
|
|
|
|
(makefile-make-font-lock-keywords
|
|
|
|
|
makefile-var-use-regex
|
|
|
|
|
makefile-statements
|
|
|
|
|
t))
|
|
|
|
|
|
|
|
|
|
(defconst makefile-automake-font-lock-keywords
|
|
|
|
|
(makefile-make-font-lock-keywords
|
|
|
|
|
makefile-var-use-regex
|
|
|
|
|
makefile-automake-statements
|
|
|
|
|
t))
|
|
|
|
|
|
|
|
|
|
(defconst makefile-gmake-font-lock-keywords
|
|
|
|
|
(makefile-make-font-lock-keywords
|
|
|
|
|
makefile-var-use-regex
|
|
|
|
|
makefile-gmake-statements
|
|
|
|
|
t
|
|
|
|
|
"^\\(?: [ \t]*\\)?if\\(n\\)\\(?:def\\|eq\\)\\>"
|
|
|
|
|
|
|
|
|
|
'("[^$]\\(\\$[({][@%*][DF][})]\\)"
|
2005-06-14 22:33:56 +00:00
|
|
|
|
1 'makefile-targets append)
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
;; $(function ...) ${function ...}
|
2005-05-16 20:13:09 +00:00
|
|
|
|
'("[^$]\\$[({]\\([-a-zA-Z0-9_.]+\\s \\)"
|
|
|
|
|
1 font-lock-function-name-face prepend)
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
;; $(shell ...) ${shell ...}
|
|
|
|
|
'("[^$]\\$\\([({]\\)shell[ \t]+"
|
|
|
|
|
makefile-match-function-end nil nil
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(1 'makefile-shell prepend t))))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
(defconst makefile-makepp-font-lock-keywords
|
|
|
|
|
(makefile-make-font-lock-keywords
|
|
|
|
|
makefile-var-use-regex
|
|
|
|
|
makefile-makepp-statements
|
|
|
|
|
nil
|
|
|
|
|
"^\\(?: [ \t]*\\)?\\(?:and[ \t]+\\|else[ \t]+\\|or[ \t]+\\)?if\\(n\\)\\(?:def\\|eq\\|sys\\)\\>"
|
|
|
|
|
|
2005-05-29 07:54:07 +00:00
|
|
|
|
'("[^$]\\(\\$[({]\\(?:output\\|stem\\|target\\)s?\\_>.*?[})]\\)"
|
2005-06-14 22:33:56 +00:00
|
|
|
|
1 'makefile-targets append)
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
;; Colon modifier keywords.
|
2005-05-16 20:13:09 +00:00
|
|
|
|
'("\\(:\\s *\\)\\(build_c\\(?:ache\\|heck\\)\\|env\\(?:ironment\\)?\\|foreach\\|signature\\|scanner\\|quickscan\\|smartscan\\)\\>\\([^:\n]*\\)"
|
|
|
|
|
(1 font-lock-type-face t)
|
|
|
|
|
(2 font-lock-keyword-face t)
|
|
|
|
|
(3 font-lock-variable-name-face t))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
;; $(function ...) $((function ...)) ${function ...} ${{function ...}}
|
2005-05-16 20:13:09 +00:00
|
|
|
|
'("[^$]\\$\\(?:((?\\|{{?\\)\\([-a-zA-Z0-9_.]+\\s \\)"
|
|
|
|
|
1 font-lock-function-name-face prepend)
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
;; $(shell ...) $((shell ...)) ${shell ...} ${{shell ...}}
|
|
|
|
|
'("[^$]\\$\\(((?\\|{{?\\)shell\\(?:[-_]\\(?:global[-_]\\)?once\\)?[ \t]+"
|
|
|
|
|
makefile-match-function-end nil nil
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(1 'makefile-shell prepend t))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
;; $(perl ...) $((perl ...)) ${perl ...} ${{perl ...}}
|
|
|
|
|
'("[^$]\\$\\(((?\\|{{?\\)makeperl[ \t]+"
|
|
|
|
|
makefile-match-function-end nil nil
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(1 'makefile-makepp-perl prepend t))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
'("[^$]\\$\\(((?\\|{{?\\)perl[ \t]+"
|
|
|
|
|
makefile-match-function-end nil nil
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(1 'makefile-makepp-perl t t))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
;; Can we unify these with (if (match-end 1) 'prepend t)?
|
2005-06-14 22:33:56 +00:00
|
|
|
|
'("ifmakeperl\\s +\\(.*\\)" 1 'makefile-makepp-perl prepend)
|
|
|
|
|
'("ifperl\\s +\\(.*\\)" 1 'makefile-makepp-perl t)
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
;; Perl block single- or multiline, as statement or rule action.
|
|
|
|
|
;; Don't know why the initial newline in 2nd variant of group 2 doesn't get skipped.
|
|
|
|
|
'("\\<make\\(?:perl\\|sub\\s +\\S +\\)\\s *\n?\\s *{\\(?:{\\s *\n?\\(\\(?:.*\n\\)+?\\)\\s *}\\|\\s *\\(\\(?:.*?\\|\n?\\(?:.*\n\\)+?\\)\\)\\)}"
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(1 'makefile-makepp-perl prepend t)
|
|
|
|
|
(2 'makefile-makepp-perl prepend t))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
'("\\<\\(?:perl\\|sub\\s +\\S +\\)\\s *\n?\\s *{\\(?:{\\s *\n?\\(\\(?:.*\n\\)+?\\)\\s *}\\|\\s *\\(\\(?:.*?\\|\n?\\(?:.*\n\\)+?\\)\\)\\)}"
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(1 'makefile-makepp-perl t t)
|
|
|
|
|
(2 'makefile-makepp-perl t t))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
;; Statement style perl block.
|
|
|
|
|
'("perl[-_]begin\\s *\\(?:\\s #.*\\)?\n\\(\\(?:.*\n\\)+?\\)\\s *perl[-_]end\\>"
|
2005-06-14 22:33:56 +00:00
|
|
|
|
1 'makefile-makepp-perl t)))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
(defconst makefile-bsdmake-font-lock-keywords
|
|
|
|
|
(makefile-make-font-lock-keywords
|
2005-05-16 20:13:09 +00:00
|
|
|
|
;; A lot more could be done for variables here:
|
2005-05-13 07:51:15 +00:00
|
|
|
|
makefile-var-use-regex
|
|
|
|
|
makefile-bsdmake-statements
|
|
|
|
|
t
|
|
|
|
|
"^\\(?: [ \t]*\\)?\\.\\(?:el\\)?if\\(n?\\)\\(?:def\\|make\\)?\\>[ \t]*\\(!?\\)"
|
|
|
|
|
'("^[ \t]*\\.for[ \t].+[ \t]\\(in\\)\\>" 1 font-lock-keyword-face)))
|
1995-08-28 15:09:57 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
2003-03-19 22:25:11 +00:00
|
|
|
|
(defconst makefile-font-lock-syntactic-keywords
|
2003-11-26 16:49:33 +00:00
|
|
|
|
;; From sh-script.el.
|
|
|
|
|
;; A `#' begins a comment in sh when it is unquoted and at the beginning
|
|
|
|
|
;; of a word. In the shell, words are separated by metacharacters.
|
|
|
|
|
;; The list of special chars is taken from the single-unix spec of the
|
|
|
|
|
;; shell command language (under `quoting') but with `$' removed.
|
|
|
|
|
'(("[^|&;<>()`\\\"' \t\n]\\(#+\\)" 1 "_")
|
|
|
|
|
;; Change the syntax of a quoted newline so that it does not end a comment.
|
|
|
|
|
("\\\\\n" 0 ".")))
|
2003-03-19 22:25:11 +00:00
|
|
|
|
|
1999-02-02 03:47:08 +00:00
|
|
|
|
(defvar makefile-imenu-generic-expression
|
2005-05-21 02:46:37 +00:00
|
|
|
|
`(("Dependencies" makefile-previous-dependency 1)
|
2005-05-16 20:13:09 +00:00
|
|
|
|
("Macro Assignment" ,makefile-macroassign-regex 1))
|
1999-10-22 17:04:35 +00:00
|
|
|
|
"Imenu generic expression for Makefile mode. See `imenu-generic-expression'.")
|
1999-02-02 03:47:08 +00:00
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
;;; The following configurable variables are used in the
|
|
|
|
|
;;; up-to-date overview .
|
1993-06-09 11:59:12 +00:00
|
|
|
|
;;; The standard configuration assumes that your `make' program
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; can be run in question/query mode using the `-q' option, this
|
|
|
|
|
;;; means that the command
|
|
|
|
|
;;;
|
|
|
|
|
;;; make -q foo
|
|
|
|
|
;;;
|
|
|
|
|
;;; should return an exit status of zero if the target `foo' is
|
|
|
|
|
;;; up to date and a nonzero exit status otherwise.
|
|
|
|
|
;;; Many makes can do this although the docs/manpages do not mention
|
1993-04-21 03:47:05 +00:00
|
|
|
|
;;; it. Try it with your favourite one. GNU make, System V make, and
|
|
|
|
|
;;; Dennis Vadura's DMake have no problems.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; Set the variable `makefile-brave-make' to the name of the
|
|
|
|
|
;;; make utility that does this on your system.
|
1993-06-09 11:59:12 +00:00
|
|
|
|
;;; To understand what this is all about see the function definition
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; of `makefile-query-by-make-minus-q' .
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
|
1997-07-27 19:50:06 +00:00
|
|
|
|
(defcustom makefile-brave-make "make"
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*How to invoke make, for `makefile-query-targets'.
|
1997-07-27 19:50:06 +00:00
|
|
|
|
This should identify a `make' command that can handle the `-q' option."
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'makefile)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1997-07-27 19:50:06 +00:00
|
|
|
|
(defcustom makefile-query-one-target-method 'makefile-query-by-make-minus-q
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*Function to call to determine whether a make target is up to date.
|
1995-08-23 23:51:38 +00:00
|
|
|
|
The function must satisfy this calling convention:
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
* As its first argument, it must accept the name of the target to
|
|
|
|
|
be checked, as a string.
|
|
|
|
|
|
|
|
|
|
* As its second argument, it may accept the name of a makefile
|
1999-10-22 17:04:35 +00:00
|
|
|
|
as a string. Depending on what you're going to do you may
|
1992-07-17 06:48:03 +00:00
|
|
|
|
not need this.
|
|
|
|
|
|
|
|
|
|
* It must return the integer value 0 (zero) if the given target
|
|
|
|
|
should be considered up-to-date in the context of the given
|
1997-07-27 19:50:06 +00:00
|
|
|
|
makefile, any nonzero integer value otherwise."
|
|
|
|
|
:type 'function
|
|
|
|
|
:group 'makefile)
|
|
|
|
|
|
|
|
|
|
(defcustom makefile-up-to-date-buffer-name "*Makefile Up-to-date overview*"
|
2000-04-04 21:03:15 +00:00
|
|
|
|
"*Name of the Up-to-date overview buffer."
|
1997-07-27 19:50:06 +00:00
|
|
|
|
:type 'string
|
|
|
|
|
:group 'makefile)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
;;; --- end of up-to-date-overview configuration ------------------
|
|
|
|
|
|
2000-04-04 21:03:15 +00:00
|
|
|
|
(defvar makefile-mode-abbrev-table nil
|
|
|
|
|
"Abbrev table in use in Makefile buffers.")
|
|
|
|
|
(if makefile-mode-abbrev-table
|
|
|
|
|
()
|
|
|
|
|
(define-abbrev-table 'makefile-mode-abbrev-table ()))
|
|
|
|
|
|
2005-05-13 07:51:15 +00:00
|
|
|
|
(defvar makefile-mode-map
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
|
;; set up the keymap
|
|
|
|
|
(define-key map "\C-c:" 'makefile-insert-target-ref)
|
|
|
|
|
(if makefile-electric-keys
|
|
|
|
|
(progn
|
|
|
|
|
(define-key map "$" 'makefile-insert-macro-ref)
|
|
|
|
|
(define-key map ":" 'makefile-electric-colon)
|
|
|
|
|
(define-key map "=" 'makefile-electric-equal)
|
|
|
|
|
(define-key map "." 'makefile-electric-dot)))
|
|
|
|
|
(define-key map "\C-c\C-f" 'makefile-pickup-filenames-as-targets)
|
|
|
|
|
(define-key map "\C-c\C-b" 'makefile-switch-to-browser)
|
|
|
|
|
(define-key map "\C-c\C-c" 'comment-region)
|
|
|
|
|
(define-key map "\C-c\C-p" 'makefile-pickup-everything)
|
|
|
|
|
(define-key map "\C-c\C-u" 'makefile-create-up-to-date-overview)
|
|
|
|
|
(define-key map "\C-c\C-i" 'makefile-insert-gmake-function)
|
|
|
|
|
(define-key map "\C-c\C-\\" 'makefile-backslash-region)
|
|
|
|
|
(define-key map "\C-c\C-m\C-a" 'makefile-automake-mode)
|
|
|
|
|
(define-key map "\C-c\C-m\C-b" 'makefile-bsdmake-mode)
|
|
|
|
|
(define-key map "\C-c\C-m\C-g" 'makefile-gmake-mode)
|
|
|
|
|
(define-key map "\C-c\C-m\C-m" 'makefile-mode)
|
|
|
|
|
(define-key map "\C-c\C-m\C-p" 'makefile-makepp-mode)
|
|
|
|
|
(define-key map "\M-p" 'makefile-previous-dependency)
|
|
|
|
|
(define-key map "\M-n" 'makefile-next-dependency)
|
|
|
|
|
(define-key map "\e\t" 'makefile-complete)
|
|
|
|
|
|
|
|
|
|
;; Make menus.
|
|
|
|
|
(define-key map [menu-bar makefile-mode]
|
|
|
|
|
(cons "Makefile" (make-sparse-keymap "Makefile")))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar makefile-mode browse]
|
|
|
|
|
'("Pop up Makefile Browser" . makefile-switch-to-browser))
|
|
|
|
|
(define-key map [menu-bar makefile-mode complete]
|
|
|
|
|
'("Complete Target or Macro" . makefile-complete))
|
|
|
|
|
(define-key map [menu-bar makefile-mode pickup]
|
|
|
|
|
'("Find Targets and Macros" . makefile-pickup-everything))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar makefile-mode prev]
|
|
|
|
|
'("Move to Previous Dependency" . makefile-previous-dependency))
|
|
|
|
|
(define-key map [menu-bar makefile-mode next]
|
|
|
|
|
'("Move to Next Dependency" . makefile-next-dependency))
|
|
|
|
|
map)
|
1995-08-23 23:51:38 +00:00
|
|
|
|
"The keymap that is used in Makefile mode.")
|
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(defvar makefile-browser-map nil
|
|
|
|
|
"The keymap that is used in the macro- and target browser.")
|
|
|
|
|
(if makefile-browser-map
|
|
|
|
|
()
|
|
|
|
|
(setq makefile-browser-map (make-sparse-keymap))
|
|
|
|
|
(define-key makefile-browser-map "n" 'makefile-browser-next-line)
|
1999-10-22 17:04:35 +00:00
|
|
|
|
(define-key makefile-browser-map "\C-n" 'makefile-browser-next-line)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(define-key makefile-browser-map "p" 'makefile-browser-previous-line)
|
|
|
|
|
(define-key makefile-browser-map "\C-p" 'makefile-browser-previous-line)
|
|
|
|
|
(define-key makefile-browser-map " " 'makefile-browser-toggle)
|
|
|
|
|
(define-key makefile-browser-map "i" 'makefile-browser-insert-selection)
|
1999-10-22 17:04:35 +00:00
|
|
|
|
(define-key makefile-browser-map "I" 'makefile-browser-insert-selection-and-quit)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(define-key makefile-browser-map "\C-c\C-m" 'makefile-browser-insert-continuation)
|
|
|
|
|
(define-key makefile-browser-map "q" 'makefile-browser-quit)
|
|
|
|
|
;; disable horizontal movement
|
|
|
|
|
(define-key makefile-browser-map "\C-b" 'undefined)
|
1999-10-22 17:04:35 +00:00
|
|
|
|
(define-key makefile-browser-map "\C-f" 'undefined))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
|
1994-10-30 21:20:42 +00:00
|
|
|
|
(defvar makefile-mode-syntax-table nil)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(if makefile-mode-syntax-table
|
|
|
|
|
()
|
|
|
|
|
(setq makefile-mode-syntax-table (make-syntax-table))
|
|
|
|
|
(modify-syntax-entry ?\( "() " makefile-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?\) ")( " makefile-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?\[ "(] " makefile-mode-syntax-table)
|
1995-08-24 20:18:58 +00:00
|
|
|
|
(modify-syntax-entry ?\] ")[ " makefile-mode-syntax-table)
|
1999-10-22 17:04:35 +00:00
|
|
|
|
(modify-syntax-entry ?\{ "(} " makefile-mode-syntax-table)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(modify-syntax-entry ?\} "){ " makefile-mode-syntax-table)
|
1994-10-12 08:55:27 +00:00
|
|
|
|
(modify-syntax-entry ?\' "\" " makefile-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?\` "\" " makefile-mode-syntax-table)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(modify-syntax-entry ?# "< " makefile-mode-syntax-table)
|
|
|
|
|
(modify-syntax-entry ?\n "> " makefile-mode-syntax-table))
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
;;; Internal variables.
|
|
|
|
|
;;; You don't need to configure below this line.
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
(defvar makefile-target-table nil
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Table of all target names known for this buffer.")
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defvar makefile-macro-table nil
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Table of all macro names known for this buffer.")
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defvar makefile-browser-client
|
1995-08-23 23:51:38 +00:00
|
|
|
|
"A buffer in Makefile mode that is currently using the browser.")
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defvar makefile-browser-selection-vector nil)
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(defvar makefile-has-prereqs nil)
|
|
|
|
|
(defvar makefile-need-target-pickup t)
|
|
|
|
|
(defvar makefile-need-macro-pickup t)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defvar makefile-mode-hook '())
|
|
|
|
|
|
1994-10-30 21:20:42 +00:00
|
|
|
|
;; Each element looks like '("GNU MAKE FUNCTION" "ARG" "ARG" ... )
|
|
|
|
|
;; Each "ARG" is used as a prompt for a required argument.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(defconst makefile-gnumake-functions-alist
|
|
|
|
|
'(
|
|
|
|
|
;; Text functions
|
|
|
|
|
("subst" "From" "To" "In")
|
|
|
|
|
("patsubst" "Pattern" "Replacement" "In")
|
|
|
|
|
("strip" "Text")
|
|
|
|
|
("findstring" "Find what" "In")
|
|
|
|
|
("filter" "Pattern" "Text")
|
|
|
|
|
("filter-out" "Pattern" "Text")
|
|
|
|
|
("sort" "List")
|
|
|
|
|
;; Filename functions
|
|
|
|
|
("dir" "Names")
|
|
|
|
|
("notdir" "Names")
|
|
|
|
|
("suffix" "Names")
|
|
|
|
|
("basename" "Names")
|
1996-06-27 07:48:39 +00:00
|
|
|
|
("addprefix" "Prefix" "Names")
|
1992-07-17 06:48:03 +00:00
|
|
|
|
("addsuffix" "Suffix" "Names")
|
|
|
|
|
("join" "List 1" "List 2")
|
|
|
|
|
("word" "Index" "Text")
|
|
|
|
|
("words" "Text")
|
|
|
|
|
("firstword" "Text")
|
|
|
|
|
("wildcard" "Pattern")
|
|
|
|
|
;; Misc functions
|
|
|
|
|
("foreach" "Variable" "List" "Text")
|
|
|
|
|
("origin" "Variable")
|
1994-10-30 21:20:42 +00:00
|
|
|
|
("shell" "Command")))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
;;; The mode function itself.
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
|
1993-04-14 19:47:05 +00:00
|
|
|
|
;;;###autoload
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(defun makefile-mode ()
|
2005-05-13 07:51:15 +00:00
|
|
|
|
"Major mode for editing standard Makefiles.
|
|
|
|
|
|
|
|
|
|
If you are editing a file for a different make, try one of the
|
|
|
|
|
variants `makefile-automake-mode', `makefile-gmake-mode',
|
|
|
|
|
`makefile-makepp-mode' or `makefile-bsdmake-mode'. All but the
|
|
|
|
|
last should be correctly chosen based on the file name, except if
|
|
|
|
|
it is *.mk. This function ends by invoking the function(s)
|
|
|
|
|
`makefile-mode-hook'.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
2005-05-16 20:13:09 +00:00
|
|
|
|
It is strongly recommended to use `font-lock-mode', because that
|
|
|
|
|
provides additional parsing information. This is used for
|
|
|
|
|
example to see that a rule action `echo foo: bar' is a not rule
|
|
|
|
|
dependency, despite the colon.
|
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
\\{makefile-mode-map}
|
|
|
|
|
|
|
|
|
|
In the browser, use the following keys:
|
|
|
|
|
|
|
|
|
|
\\{makefile-browser-map}
|
|
|
|
|
|
1995-08-23 23:51:38 +00:00
|
|
|
|
Makefile mode can be configured by modifying the following variables:
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-browser-buffer-name':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
Name of the macro- and target browser buffer.
|
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-target-colon':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
The string that gets appended to all target names
|
1995-08-23 23:51:38 +00:00
|
|
|
|
inserted by `makefile-insert-target'.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
\":\" or \"::\" are quite common values.
|
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-macro-assign':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
The string that gets appended to all macro names
|
1995-08-23 23:51:38 +00:00
|
|
|
|
inserted by `makefile-insert-macro'.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
The normal value should be \" = \", since this is what
|
1999-10-22 17:04:35 +00:00
|
|
|
|
standard make expects. However, newer makes such as dmake
|
1992-07-17 06:48:03 +00:00
|
|
|
|
allow a larger variety of different macro assignments, so you
|
|
|
|
|
might prefer to use \" += \" or \" := \" .
|
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-tab-after-target-colon':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
If you want a TAB (instead of a space) to be appended after the
|
|
|
|
|
target colon, then set this to a non-nil value.
|
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-browser-leftmost-column':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
Number of blanks to the left of the browser selection mark.
|
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-browser-cursor-column':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
Column in which the cursor is positioned when it moves
|
|
|
|
|
up or down in the browser.
|
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-browser-selected-mark':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
String used to mark selected entries in the browser.
|
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-browser-unselected-mark':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
String used to mark unselected entries in the browser.
|
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-browser-auto-advance-after-selection-p':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
If this variable is set to a non-nil value the cursor
|
|
|
|
|
will automagically advance to the next line after an item
|
|
|
|
|
has been selected in the browser.
|
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-pickup-everything-picks-up-filenames-p':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
If this variable is set to a non-nil value then
|
1995-08-23 23:51:38 +00:00
|
|
|
|
`makefile-pickup-everything' also picks up filenames as targets
|
1997-09-12 22:40:55 +00:00
|
|
|
|
(i.e. it calls `makefile-pickup-filenames-as-targets'), otherwise
|
1992-07-17 06:48:03 +00:00
|
|
|
|
filenames are omitted.
|
|
|
|
|
|
2002-09-19 01:21:46 +00:00
|
|
|
|
`makefile-cleanup-continuations':
|
1999-10-22 17:04:35 +00:00
|
|
|
|
If this variable is set to a non-nil value then Makefile mode
|
1992-07-17 06:48:03 +00:00
|
|
|
|
will assure that no line in the file ends with a backslash
|
|
|
|
|
(the continuation character) followed by any whitespace.
|
|
|
|
|
This is done by silently removing the trailing whitespace, leaving
|
|
|
|
|
the backslash itself intact.
|
1999-10-22 17:04:35 +00:00
|
|
|
|
IMPORTANT: Please note that enabling this option causes Makefile mode
|
1995-08-23 23:51:38 +00:00
|
|
|
|
to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\".
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-browser-hook':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
A function or list of functions to be called just before the
|
1993-04-21 03:47:05 +00:00
|
|
|
|
browser is entered. This is executed in the makefile buffer.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
`makefile-special-targets-list':
|
1992-07-17 06:48:03 +00:00
|
|
|
|
List of special targets. You will be offered to complete
|
1995-08-23 23:51:38 +00:00
|
|
|
|
on one of those in the minibuffer whenever you enter a `.'.
|
|
|
|
|
at the beginning of a line in Makefile mode."
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(kill-all-local-variables)
|
2002-09-19 01:21:46 +00:00
|
|
|
|
(add-hook 'write-file-functions
|
|
|
|
|
'makefile-warn-suspicious-lines nil t)
|
2002-10-26 22:49:12 +00:00
|
|
|
|
(add-hook 'write-file-functions
|
|
|
|
|
'makefile-warn-continuations nil t)
|
2002-09-19 01:21:46 +00:00
|
|
|
|
(add-hook 'write-file-functions
|
|
|
|
|
'makefile-cleanup-continuations nil t)
|
1994-03-02 07:57:04 +00:00
|
|
|
|
(make-local-variable 'makefile-target-table)
|
|
|
|
|
(make-local-variable 'makefile-macro-table)
|
|
|
|
|
(make-local-variable 'makefile-has-prereqs)
|
|
|
|
|
(make-local-variable 'makefile-need-target-pickup)
|
|
|
|
|
(make-local-variable 'makefile-need-macro-pickup)
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
|
|
|
|
;; Font lock.
|
1994-10-12 08:55:27 +00:00
|
|
|
|
(make-local-variable 'font-lock-defaults)
|
2001-02-06 17:10:29 +00:00
|
|
|
|
(setq font-lock-defaults
|
|
|
|
|
;; SYNTAX-BEGIN set to backward-paragraph to avoid slow-down
|
|
|
|
|
;; near the end of a large buffer, due to parse-partial-sexp's
|
|
|
|
|
;; trying to parse all the way till the beginning of buffer.
|
2003-03-19 22:25:11 +00:00
|
|
|
|
'(makefile-font-lock-keywords
|
|
|
|
|
nil nil
|
|
|
|
|
((?$ . "."))
|
|
|
|
|
backward-paragraph
|
2005-05-17 21:37:59 +00:00
|
|
|
|
(font-lock-syntactic-keywords . makefile-font-lock-syntactic-keywords)
|
|
|
|
|
(font-lock-support-mode))) ; JIT breaks on long series of continuation lines.
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
|
|
|
|
;; Add-log.
|
|
|
|
|
(make-local-variable 'add-log-current-defun-function)
|
|
|
|
|
(setq add-log-current-defun-function 'makefile-add-log-defun)
|
|
|
|
|
|
|
|
|
|
;; Imenu.
|
1999-02-02 03:47:08 +00:00
|
|
|
|
(make-local-variable 'imenu-generic-expression)
|
|
|
|
|
(setq imenu-generic-expression makefile-imenu-generic-expression)
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
1995-05-01 17:16:40 +00:00
|
|
|
|
;; Dabbrev.
|
|
|
|
|
(make-local-variable 'dabbrev-abbrev-skip-leading-regexp)
|
|
|
|
|
(setq dabbrev-abbrev-skip-leading-regexp "\\$")
|
|
|
|
|
|
2000-04-04 21:03:15 +00:00
|
|
|
|
;; Other abbrevs.
|
|
|
|
|
(setq local-abbrev-table makefile-mode-abbrev-table)
|
|
|
|
|
|
1997-03-24 05:30:10 +00:00
|
|
|
|
;; Filling.
|
|
|
|
|
(make-local-variable 'fill-paragraph-function)
|
|
|
|
|
(setq fill-paragraph-function 'makefile-fill-paragraph)
|
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
;; Comment stuff.
|
1994-01-06 09:59:12 +00:00
|
|
|
|
(make-local-variable 'comment-start)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(setq comment-start "#")
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(make-local-variable 'comment-end)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(setq comment-end "")
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(make-local-variable 'comment-start-skip)
|
|
|
|
|
(setq comment-start-skip "#+[ \t]*")
|
|
|
|
|
|
2001-11-28 20:40:36 +00:00
|
|
|
|
;; Make sure TAB really inserts \t.
|
|
|
|
|
(set (make-local-variable 'indent-line-function) 'indent-to-left-margin)
|
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;; become the current major mode
|
|
|
|
|
(setq major-mode 'makefile-mode)
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(setq mode-name "Makefile")
|
|
|
|
|
|
|
|
|
|
;; Activate keymap and syntax table.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(use-local-map makefile-mode-map)
|
|
|
|
|
(set-syntax-table makefile-mode-syntax-table)
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
|
|
|
|
;; Real TABs are important in makefiles
|
|
|
|
|
(setq indent-tabs-mode t)
|
2005-05-19 15:46:19 +00:00
|
|
|
|
(run-mode-hooks 'makefile-mode-hook))
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
2005-05-13 07:51:15 +00:00
|
|
|
|
;; These should do more than just differentiate font-lock.
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(define-derived-mode makefile-automake-mode makefile-mode "Makefile.am"
|
|
|
|
|
"An adapted `makefile-mode' that knows about automake."
|
|
|
|
|
(setq font-lock-defaults
|
|
|
|
|
`(makefile-automake-font-lock-keywords ,@(cdr font-lock-defaults))))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(define-derived-mode makefile-gmake-mode makefile-mode "GNUmakefile"
|
|
|
|
|
"An adapted `makefile-mode' that knows about gmake."
|
|
|
|
|
(setq font-lock-defaults
|
|
|
|
|
`(makefile-gmake-font-lock-keywords ,@(cdr font-lock-defaults))))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(define-derived-mode makefile-makepp-mode makefile-mode "Makeppfile"
|
|
|
|
|
"An adapted `makefile-mode' that knows about makepp."
|
2005-06-03 08:47:25 +00:00
|
|
|
|
(set (make-local-variable 'makefile-rule-action-regex)
|
|
|
|
|
makefile-makepp-rule-action-regex)
|
2005-05-13 07:51:15 +00:00
|
|
|
|
(setq font-lock-defaults
|
2005-05-21 02:46:37 +00:00
|
|
|
|
`(makefile-makepp-font-lock-keywords ,@(cdr font-lock-defaults))
|
|
|
|
|
imenu-generic-expression
|
|
|
|
|
`(("Functions" "^[ \t]*\\(?:make\\)?sub[ \t]+\\([A-Za-z0-9_]+\\)" 1)
|
|
|
|
|
,@imenu-generic-expression)))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(define-derived-mode makefile-bsdmake-mode makefile-mode "BSDmakefile"
|
|
|
|
|
"An adapted `makefile-mode' that knows about BSD make."
|
2005-05-16 20:13:09 +00:00
|
|
|
|
(set (make-local-variable 'makefile-dependency-regex)
|
2005-06-03 08:47:25 +00:00
|
|
|
|
makefile-bsdmake-dependency-regex)
|
2005-05-17 20:45:26 +00:00
|
|
|
|
(set (make-local-variable 'makefile-dependency-skip) "^:!")
|
2005-05-16 20:13:09 +00:00
|
|
|
|
(set (make-local-variable 'makefile-rule-action-regex)
|
2005-06-03 08:47:25 +00:00
|
|
|
|
makefile-bsdmake-rule-action-regex)
|
2005-05-13 07:51:15 +00:00
|
|
|
|
(setq font-lock-defaults
|
2005-05-21 02:46:37 +00:00
|
|
|
|
`(makefile-bsdmake-font-lock-keywords ,@(cdr font-lock-defaults))))
|
2005-05-13 07:51:15 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Motion code.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-next-dependency ()
|
1995-08-23 23:51:38 +00:00
|
|
|
|
"Move point to the beginning of the next dependency line."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let ((here (point)))
|
|
|
|
|
(end-of-line)
|
2005-05-17 20:45:26 +00:00
|
|
|
|
(if (makefile-match-dependency nil)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(progn (beginning-of-line) t) ; indicate success
|
|
|
|
|
(goto-char here) nil)))
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(defun makefile-previous-dependency ()
|
1995-08-23 23:51:38 +00:00
|
|
|
|
"Move point to the beginning of the previous dependency line."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive)
|
2005-05-17 20:45:26 +00:00
|
|
|
|
(let ((pt (point)))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(beginning-of-line)
|
2005-05-17 20:45:26 +00:00
|
|
|
|
;; makefile-match-dependency done backwards:
|
|
|
|
|
(catch 'found
|
2005-05-19 02:20:34 +00:00
|
|
|
|
(while (progn (skip-chars-backward makefile-dependency-skip)
|
|
|
|
|
(not (bobp)))
|
2005-05-18 20:12:10 +00:00
|
|
|
|
(or (prog1 (eq (char-after) ?=)
|
|
|
|
|
(backward-char))
|
|
|
|
|
(get-text-property (point) 'face)
|
2005-05-17 20:45:26 +00:00
|
|
|
|
(beginning-of-line)
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(if (> (point) (+ (point-min) 2))
|
|
|
|
|
(eq (char-before (1- (point))) ?\\))
|
2005-05-17 20:45:26 +00:00
|
|
|
|
(if (looking-at makefile-dependency-regex)
|
|
|
|
|
(throw 'found t))))
|
|
|
|
|
(goto-char pt)
|
|
|
|
|
nil)))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
;;; Electric keys. Blech.
|
1993-04-21 03:47:05 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(defun makefile-electric-dot (arg)
|
|
|
|
|
"Prompt for the name of a special target to insert.
|
|
|
|
|
Only does electric insertion at beginning of line.
|
|
|
|
|
Anywhere else just self-inserts."
|
|
|
|
|
(interactive "p")
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(if (bolp)
|
|
|
|
|
(makefile-insert-special-target)
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(self-insert-command arg)))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-insert-special-target ()
|
1996-01-04 23:44:52 +00:00
|
|
|
|
"Prompt for and insert a special target name.
|
1994-10-11 20:42:23 +00:00
|
|
|
|
Uses `makefile-special-targets' list."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive)
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(makefile-pickup-targets)
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(let ((special-target
|
|
|
|
|
(completing-read "Special target: "
|
|
|
|
|
makefile-special-targets-list nil nil nil)))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(if (zerop (length special-target))
|
|
|
|
|
()
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(insert "." special-target ":")
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(makefile-forward-after-target-colon))))
|
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(defun makefile-electric-equal (arg)
|
|
|
|
|
"Prompt for name of a macro to insert.
|
|
|
|
|
Only does prompting if point is at beginning of line.
|
|
|
|
|
Anywhere else just self-inserts."
|
|
|
|
|
(interactive "p")
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(makefile-pickup-macros)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(if (bolp)
|
|
|
|
|
(call-interactively 'makefile-insert-macro)
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(self-insert-command arg)))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-insert-macro (macro-name)
|
|
|
|
|
"Prepare definition of a new macro."
|
|
|
|
|
(interactive "sMacro Name: ")
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(makefile-pickup-macros)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(if (not (zerop (length macro-name)))
|
|
|
|
|
(progn
|
|
|
|
|
(beginning-of-line)
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(insert macro-name makefile-macro-assign)
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(setq makefile-need-macro-pickup t)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(makefile-remember-macro macro-name))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-insert-macro-ref (macro-name)
|
1995-08-23 23:51:38 +00:00
|
|
|
|
"Complete on a list of known macros, then insert complete ref at point."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(progn
|
|
|
|
|
(makefile-pickup-macros)
|
|
|
|
|
(completing-read "Refer to macro: " makefile-macro-table nil nil nil))))
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(makefile-do-macro-insertion macro-name))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-insert-target (target-name)
|
|
|
|
|
"Prepare definition of a new target (dependency line)."
|
|
|
|
|
(interactive "sTarget: ")
|
|
|
|
|
(if (not (zerop (length target-name)))
|
|
|
|
|
(progn
|
|
|
|
|
(beginning-of-line)
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(insert target-name makefile-target-colon)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(makefile-forward-after-target-colon)
|
|
|
|
|
(end-of-line)
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(setq makefile-need-target-pickup t)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(makefile-remember-target target-name))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-insert-target-ref (target-name)
|
1999-10-22 17:04:35 +00:00
|
|
|
|
"Complete on a list of known targets, then insert TARGET-NAME at point."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list
|
1993-12-23 04:57:18 +00:00
|
|
|
|
(progn
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(makefile-pickup-targets)
|
|
|
|
|
(completing-read "Refer to target: " makefile-target-table nil nil nil))))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(if (not (zerop (length target-name)))
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(insert target-name " ")))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(defun makefile-electric-colon (arg)
|
|
|
|
|
"Prompt for name of new target.
|
|
|
|
|
Prompting only happens at beginning of line.
|
|
|
|
|
Anywhere else just self-inserts."
|
|
|
|
|
(interactive "p")
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(if (bolp)
|
|
|
|
|
(call-interactively 'makefile-insert-target)
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(self-insert-command arg)))
|
|
|
|
|
|
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
;;; Extracting targets and macros from an existing makefile
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
(defun makefile-pickup-targets ()
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Notice names of all target definitions in Makefile."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive)
|
2005-05-19 02:20:34 +00:00
|
|
|
|
(when makefile-need-target-pickup
|
|
|
|
|
(setq makefile-need-target-pickup nil
|
|
|
|
|
makefile-target-table nil
|
|
|
|
|
makefile-has-prereqs nil)
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
2005-05-16 20:13:09 +00:00
|
|
|
|
(while (makefile-match-dependency nil)
|
2005-05-19 02:20:34 +00:00
|
|
|
|
(goto-char (match-beginning 1))
|
|
|
|
|
(while (let ((target-name
|
|
|
|
|
(buffer-substring-no-properties (point)
|
|
|
|
|
(progn
|
|
|
|
|
(skip-chars-forward "^ \t:#")
|
|
|
|
|
(point))))
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(has-prereqs
|
|
|
|
|
(not (looking-at ":[ \t]*$"))))
|
2005-05-19 02:20:34 +00:00
|
|
|
|
(if (makefile-remember-target target-name has-prereqs)
|
|
|
|
|
(message "Picked up target \"%s\" from line %d"
|
|
|
|
|
target-name (line-number-at-pos)))
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(not (or (eolp) (eq (char-after) ?:)))))
|
|
|
|
|
(forward-line)))
|
|
|
|
|
(message "Read targets OK.")))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-pickup-macros ()
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Notice names of all macro definitions in Makefile."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive)
|
2005-05-19 02:20:34 +00:00
|
|
|
|
(when makefile-need-macro-pickup
|
|
|
|
|
(setq makefile-need-macro-pickup nil
|
|
|
|
|
makefile-macro-table nil)
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
2002-09-19 01:21:46 +00:00
|
|
|
|
(while (re-search-forward makefile-macroassign-regex nil t)
|
2005-05-19 02:20:34 +00:00
|
|
|
|
(goto-char (match-beginning 1))
|
|
|
|
|
(let ((macro-name (buffer-substring-no-properties (point)
|
|
|
|
|
(progn
|
|
|
|
|
(skip-chars-forward "^ \t:#=*")
|
|
|
|
|
(point)))))
|
|
|
|
|
(if (makefile-remember-macro macro-name)
|
|
|
|
|
(message "Picked up macro \"%s\" from line %d"
|
|
|
|
|
macro-name (line-number-at-pos))))
|
|
|
|
|
(forward-line)))
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(message "Read macros OK.")))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(defun makefile-pickup-everything (arg)
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Notice names of all macros and targets in Makefile.
|
1994-10-11 20:42:23 +00:00
|
|
|
|
Prefix arg means force pickups to be redone."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(if arg
|
2005-05-19 02:20:34 +00:00
|
|
|
|
(setq makefile-need-target-pickup t
|
|
|
|
|
makefile-need-macro-pickup t))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(makefile-pickup-macros)
|
|
|
|
|
(makefile-pickup-targets)
|
|
|
|
|
(if makefile-pickup-everything-picks-up-filenames-p
|
|
|
|
|
(makefile-pickup-filenames-as-targets)))
|
|
|
|
|
|
|
|
|
|
(defun makefile-pickup-filenames-as-targets ()
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Scan the current directory for filenames to use as targets.
|
|
|
|
|
Checks each filename against `makefile-ignored-files-in-pickup-regex'
|
|
|
|
|
and adds all qualifying names to the list of known targets."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive)
|
2005-05-19 02:20:34 +00:00
|
|
|
|
(mapc (lambda (name)
|
|
|
|
|
(or (file-directory-p name)
|
|
|
|
|
(string-match makefile-ignored-files-in-pickup-regex name)
|
|
|
|
|
(if (makefile-remember-target name)
|
|
|
|
|
(message "Picked up file \"%s\" as target" name))))
|
|
|
|
|
(file-name-all-completions "" (or (file-name-directory (buffer-file-name)) ""))))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Completion.
|
|
|
|
|
|
|
|
|
|
(defun makefile-complete ()
|
|
|
|
|
"Perform completion on Makefile construct preceding point.
|
|
|
|
|
Can complete variable and target names.
|
|
|
|
|
The context determines which are considered."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let* ((beg (save-excursion
|
|
|
|
|
(skip-chars-backward "^$(){}:#= \t\n")
|
|
|
|
|
(point)))
|
|
|
|
|
(try (buffer-substring beg (point)))
|
|
|
|
|
(do-macros nil)
|
|
|
|
|
(paren nil))
|
|
|
|
|
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char beg)
|
|
|
|
|
(let ((pc (preceding-char)))
|
|
|
|
|
(cond
|
|
|
|
|
;; Beginning of line means anything.
|
|
|
|
|
((bolp)
|
|
|
|
|
())
|
|
|
|
|
|
|
|
|
|
;; Preceding "$" means macros only.
|
|
|
|
|
((= pc ?$)
|
|
|
|
|
(setq do-macros t))
|
|
|
|
|
|
|
|
|
|
;; Preceding "$(" or "${" means macros only.
|
|
|
|
|
((and (or (= pc ?{)
|
|
|
|
|
(= pc ?\())
|
|
|
|
|
(progn
|
|
|
|
|
(setq paren pc)
|
|
|
|
|
(backward-char)
|
|
|
|
|
(and (not (bolp))
|
|
|
|
|
(= (preceding-char) ?$))))
|
|
|
|
|
(setq do-macros t)))))
|
|
|
|
|
|
|
|
|
|
;; Try completion.
|
|
|
|
|
(let* ((table (append (if do-macros
|
|
|
|
|
'()
|
|
|
|
|
makefile-target-table)
|
|
|
|
|
makefile-macro-table))
|
|
|
|
|
(completion (try-completion try table)))
|
|
|
|
|
(cond
|
|
|
|
|
;; Exact match, so insert closing paren or colon.
|
|
|
|
|
((eq completion t)
|
|
|
|
|
(insert (if do-macros
|
|
|
|
|
(if (eq paren ?{)
|
|
|
|
|
?}
|
|
|
|
|
?\))
|
|
|
|
|
(if (save-excursion
|
|
|
|
|
(goto-char beg)
|
|
|
|
|
(bolp))
|
|
|
|
|
":"
|
|
|
|
|
" "))))
|
|
|
|
|
|
|
|
|
|
;; No match.
|
|
|
|
|
((null completion)
|
|
|
|
|
(message "Can't find completion for \"%s\"" try)
|
|
|
|
|
(ding))
|
|
|
|
|
|
|
|
|
|
;; Partial completion.
|
|
|
|
|
((not (string= try completion))
|
|
|
|
|
;; FIXME it would be nice to supply the closing paren if an
|
|
|
|
|
;; exact, unambiguous match were found. That is not possible
|
|
|
|
|
;; right now. Ditto closing ":" for targets.
|
|
|
|
|
(delete-region beg (point))
|
|
|
|
|
|
|
|
|
|
;; DO-MACROS means doing macros only. If not that, then check
|
|
|
|
|
;; to see if this completion is a macro. Special insertion
|
|
|
|
|
;; must be done for macros.
|
|
|
|
|
(if (or do-macros
|
|
|
|
|
(assoc completion makefile-macro-table))
|
|
|
|
|
(let ((makefile-use-curly-braces-for-macros-p
|
|
|
|
|
(or (eq paren ?{)
|
|
|
|
|
makefile-use-curly-braces-for-macros-p)))
|
|
|
|
|
(delete-backward-char 2)
|
|
|
|
|
(makefile-do-macro-insertion completion)
|
|
|
|
|
(delete-backward-char 1))
|
|
|
|
|
|
|
|
|
|
;; Just insert targets.
|
|
|
|
|
(insert completion)))
|
|
|
|
|
|
|
|
|
|
;; Can't complete any more, so make completion list. FIXME
|
|
|
|
|
;; this doesn't do the right thing when the completion is
|
|
|
|
|
;; actually inserted. I don't think there is an easy way to do
|
|
|
|
|
;; that.
|
|
|
|
|
(t
|
|
|
|
|
(message "Making completion list...")
|
|
|
|
|
(let ((list (all-completions try table)))
|
|
|
|
|
(with-output-to-temp-buffer "*Completions*"
|
|
|
|
|
(display-completion-list list)))
|
|
|
|
|
(message "Making completion list...done"))))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1994-10-30 21:20:42 +00:00
|
|
|
|
;; Backslashification. Stolen from cc-mode.el.
|
|
|
|
|
|
1997-03-24 05:30:10 +00:00
|
|
|
|
(defun makefile-backslash-region (from to delete-flag)
|
|
|
|
|
"Insert, align, or delete end-of-line backslashes on the lines in the region.
|
|
|
|
|
With no argument, inserts backslashes and aligns existing backslashes.
|
|
|
|
|
With an argument, deletes the backslashes.
|
|
|
|
|
|
1999-10-22 17:04:35 +00:00
|
|
|
|
This function does not modify the last line of the region if the region ends
|
1997-03-24 05:30:10 +00:00
|
|
|
|
right at the start of the following line; it does not modify blank lines
|
|
|
|
|
at the start of the region. So you can put the region around an entire macro
|
|
|
|
|
definition and conveniently use this command."
|
1994-10-30 21:20:42 +00:00
|
|
|
|
(interactive "r\nP")
|
|
|
|
|
(save-excursion
|
1997-03-24 05:30:10 +00:00
|
|
|
|
(goto-char from)
|
|
|
|
|
(let ((column makefile-backslash-column)
|
|
|
|
|
(endmark (make-marker)))
|
|
|
|
|
(move-marker endmark to)
|
|
|
|
|
;; Compute the smallest column number past the ends of all the lines.
|
|
|
|
|
(if makefile-backslash-align
|
|
|
|
|
(progn
|
|
|
|
|
(if (not delete-flag)
|
|
|
|
|
(while (< (point) to)
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(if (= (preceding-char) ?\\)
|
|
|
|
|
(progn (forward-char -1)
|
|
|
|
|
(skip-chars-backward " \t")))
|
|
|
|
|
(setq column (max column (1+ (current-column))))
|
|
|
|
|
(forward-line 1)))
|
|
|
|
|
;; Adjust upward to a tab column, if that doesn't push
|
|
|
|
|
;; past the margin.
|
|
|
|
|
(if (> (% column tab-width) 0)
|
|
|
|
|
(let ((adjusted (* (/ (+ column tab-width -1) tab-width)
|
|
|
|
|
tab-width)))
|
|
|
|
|
(if (< adjusted (window-width))
|
|
|
|
|
(setq column adjusted))))))
|
|
|
|
|
;; Don't modify blank lines at start of region.
|
|
|
|
|
(goto-char from)
|
|
|
|
|
(while (and (< (point) endmark) (eolp))
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
;; Add or remove backslashes on all the lines.
|
|
|
|
|
(while (and (< (point) endmark)
|
|
|
|
|
;; Don't backslashify the last line
|
|
|
|
|
;; if the region ends right at the start of the next line.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(< (point) endmark)))
|
|
|
|
|
(if (not delete-flag)
|
|
|
|
|
(makefile-append-backslash column)
|
|
|
|
|
(makefile-delete-backslash))
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
(move-marker endmark nil))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-append-backslash (column)
|
|
|
|
|
(end-of-line)
|
|
|
|
|
;; Note that "\\\\" is needed to get one backslash.
|
|
|
|
|
(if (= (preceding-char) ?\\)
|
|
|
|
|
(progn (forward-char -1)
|
|
|
|
|
(delete-horizontal-space)
|
|
|
|
|
(indent-to column (if makefile-backslash-align nil 1)))
|
|
|
|
|
(indent-to column (if makefile-backslash-align nil 1))
|
|
|
|
|
(insert "\\")))
|
|
|
|
|
|
|
|
|
|
(defun makefile-delete-backslash ()
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(or (bolp)
|
|
|
|
|
(progn
|
|
|
|
|
(forward-char -1)
|
|
|
|
|
(if (looking-at "\\\\")
|
|
|
|
|
(delete-region (1+ (point))
|
|
|
|
|
(progn (skip-chars-backward " \t") (point)))))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Filling
|
|
|
|
|
|
|
|
|
|
(defun makefile-fill-paragraph (arg)
|
|
|
|
|
;; Fill comments, backslashed lines, and variable definitions
|
|
|
|
|
;; specially.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(cond
|
2004-09-20 15:45:31 +00:00
|
|
|
|
((looking-at "^#+")
|
2002-09-18 16:00:29 +00:00
|
|
|
|
;; Found a comment. Set the fill prefix, and find the paragraph
|
|
|
|
|
;; boundaries by searching for lines that look like comment-only
|
|
|
|
|
;; lines.
|
2002-09-19 01:21:46 +00:00
|
|
|
|
(let ((fill-prefix (match-string-no-properties 0))
|
1997-03-24 05:30:10 +00:00
|
|
|
|
(fill-paragraph-function nil))
|
2002-09-18 16:00:29 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region
|
|
|
|
|
;; Search backwards.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (and (zerop (forward-line -1))
|
|
|
|
|
(looking-at "^#")))
|
|
|
|
|
;; We may have gone too far. Go forward again.
|
|
|
|
|
(or (looking-at "^#")
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
(point))
|
|
|
|
|
;; Search forwards.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (looking-at "^#")
|
|
|
|
|
(forward-line))
|
|
|
|
|
(point)))
|
|
|
|
|
(fill-paragraph nil)
|
|
|
|
|
t))))
|
1997-03-24 05:30:10 +00:00
|
|
|
|
|
|
|
|
|
;; Must look for backslashed-region before looking for variable
|
|
|
|
|
;; assignment.
|
2002-09-19 01:21:46 +00:00
|
|
|
|
((or (eq (char-before (line-end-position 1)) ?\\)
|
|
|
|
|
(eq (char-before (line-end-position 0)) ?\\))
|
1997-03-24 05:30:10 +00:00
|
|
|
|
;; A backslash region. Find beginning and end, remove
|
|
|
|
|
;; backslashes, fill, and then reapply backslahes.
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(let ((beginning
|
|
|
|
|
(save-excursion
|
|
|
|
|
(end-of-line 0)
|
|
|
|
|
(while (= (preceding-char) ?\\)
|
|
|
|
|
(end-of-line 0))
|
|
|
|
|
(forward-char)
|
|
|
|
|
(point)))
|
|
|
|
|
(end
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (= (preceding-char) ?\\)
|
|
|
|
|
(end-of-line 2))
|
|
|
|
|
(point))))
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region beginning end)
|
|
|
|
|
(makefile-backslash-region (point-min) (point-max) t)
|
|
|
|
|
(let ((fill-paragraph-function nil))
|
|
|
|
|
(fill-paragraph nil))
|
|
|
|
|
(makefile-backslash-region (point-min) (point-max) nil)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(if (< (skip-chars-backward "\n") 0)
|
|
|
|
|
(delete-region (point) (point-max))))))
|
|
|
|
|
|
|
|
|
|
((looking-at makefile-macroassign-regex)
|
|
|
|
|
;; Have a macro assign. Fill just this line, and then backslash
|
|
|
|
|
;; resulting region.
|
1994-10-30 21:20:42 +00:00
|
|
|
|
(save-restriction
|
2001-11-28 20:40:36 +00:00
|
|
|
|
(narrow-to-region (point) (line-beginning-position 2))
|
1997-03-24 05:30:10 +00:00
|
|
|
|
(let ((fill-paragraph-function nil))
|
|
|
|
|
(fill-paragraph nil))
|
|
|
|
|
(makefile-backslash-region (point-min) (point-max) nil)))))
|
|
|
|
|
|
|
|
|
|
;; Always return non-nil so we don't fill anything else.
|
|
|
|
|
t)
|
1994-10-30 21:20:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; ------------------------------------------------------------
|
1994-10-11 20:42:23 +00:00
|
|
|
|
;;; Browser mode.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-format-target-line (target selected)
|
|
|
|
|
(format
|
|
|
|
|
(concat (make-string makefile-browser-leftmost-column ?\ )
|
|
|
|
|
(if selected
|
|
|
|
|
makefile-browser-selected-mark
|
|
|
|
|
makefile-browser-unselected-mark)
|
|
|
|
|
"%s%s")
|
|
|
|
|
target makefile-target-colon))
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-format-macro-line (macro selected)
|
|
|
|
|
(format
|
|
|
|
|
(concat (make-string makefile-browser-leftmost-column ?\ )
|
|
|
|
|
(if selected
|
|
|
|
|
makefile-browser-selected-mark
|
|
|
|
|
makefile-browser-unselected-mark)
|
|
|
|
|
(makefile-format-macro-ref macro))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-fill (targets macros)
|
1994-02-07 05:54:34 +00:00
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(mapconcat
|
|
|
|
|
(function
|
|
|
|
|
(lambda (item) (insert (makefile-browser-format-target-line (car item) nil) "\n")))
|
|
|
|
|
targets
|
|
|
|
|
"")
|
|
|
|
|
(mapconcat
|
|
|
|
|
(function
|
|
|
|
|
(lambda (item) (insert (makefile-browser-format-macro-line (car item) nil) "\n")))
|
|
|
|
|
macros
|
|
|
|
|
"")
|
|
|
|
|
(sort-lines nil (point-min) (point-max))
|
|
|
|
|
(goto-char (1- (point-max)))
|
|
|
|
|
(delete-char 1) ; remove unnecessary newline at eob
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(forward-char makefile-browser-cursor-column)))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Moving up and down in the browser
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-next-line ()
|
|
|
|
|
"Move the browser selection cursor to the next line."
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (not (makefile-last-line-p))
|
|
|
|
|
(progn
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(forward-char makefile-browser-cursor-column))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-previous-line ()
|
|
|
|
|
"Move the browser selection cursor to the previous line."
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (not (makefile-first-line-p))
|
|
|
|
|
(progn
|
|
|
|
|
(forward-line -1)
|
|
|
|
|
(forward-char makefile-browser-cursor-column))))
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Quitting the browser (returns to client buffer)
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-quit ()
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Leave the browser and return to the makefile buffer."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let ((my-client makefile-browser-client))
|
|
|
|
|
(setq makefile-browser-client nil) ; we quitted, so NO client!
|
|
|
|
|
(set-buffer-modified-p nil)
|
1998-03-08 00:21:26 +00:00
|
|
|
|
(quit-window t)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(pop-to-buffer my-client)))
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Toggle state of a browser item
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-toggle ()
|
|
|
|
|
"Toggle the selection state of the browser item at the cursor position."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((this-line (count-lines (point-min) (point))))
|
|
|
|
|
(setq this-line (max 1 this-line))
|
|
|
|
|
(makefile-browser-toggle-state-for-line this-line)
|
|
|
|
|
(goto-line this-line)
|
1994-02-07 05:54:34 +00:00
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(if (makefile-browser-on-macro-line-p)
|
|
|
|
|
(let ((macro-name (makefile-browser-this-line-macro-name)))
|
1996-01-24 20:06:06 +00:00
|
|
|
|
(delete-region (point) (progn (end-of-line) (point)))
|
1994-02-07 05:54:34 +00:00
|
|
|
|
(insert
|
|
|
|
|
(makefile-browser-format-macro-line
|
|
|
|
|
macro-name
|
|
|
|
|
(makefile-browser-get-state-for-line this-line))))
|
|
|
|
|
(let ((target-name (makefile-browser-this-line-target-name)))
|
1996-01-24 20:06:06 +00:00
|
|
|
|
(delete-region (point) (progn (end-of-line) (point)))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(insert
|
1994-02-07 05:54:34 +00:00
|
|
|
|
(makefile-browser-format-target-line
|
|
|
|
|
target-name
|
|
|
|
|
(makefile-browser-get-state-for-line this-line))))))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(forward-char makefile-browser-cursor-column)
|
|
|
|
|
(if makefile-browser-auto-advance-after-selection-p
|
|
|
|
|
(makefile-browser-next-line))))
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Making insertions into the client buffer
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-insert-continuation ()
|
1993-04-21 03:47:05 +00:00
|
|
|
|
"Insert a makefile continuation.
|
1994-10-30 21:20:42 +00:00
|
|
|
|
In the makefile buffer, go to (end-of-line), insert a \'\\\'
|
1992-07-17 06:48:03 +00:00
|
|
|
|
character, insert a new blank line, go to that line and indent by one TAB.
|
1993-04-21 03:47:05 +00:00
|
|
|
|
This is most useful in the process of creating continued lines when copying
|
|
|
|
|
large dependencies from the browser to the client buffer.
|
1994-05-22 22:14:17 +00:00
|
|
|
|
\(point) advances accordingly in the client buffer."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive)
|
2001-11-28 20:40:36 +00:00
|
|
|
|
(with-current-buffer makefile-browser-client
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(end-of-line)
|
|
|
|
|
(insert "\\\n\t")))
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-insert-selection ()
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Insert all selected targets and/or macros in the makefile buffer.
|
1995-08-23 23:51:38 +00:00
|
|
|
|
Insertion takes place at point."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-line 1)
|
|
|
|
|
(let ((current-line 1))
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(if (makefile-browser-get-state-for-line current-line)
|
|
|
|
|
(makefile-browser-send-this-line-item))
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(setq current-line (1+ current-line))))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-insert-selection-and-quit ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(makefile-browser-insert-selection)
|
|
|
|
|
(makefile-browser-quit))
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-send-this-line-item ()
|
|
|
|
|
(if (makefile-browser-on-macro-line-p)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((macro-name (makefile-browser-this-line-macro-name)))
|
|
|
|
|
(set-buffer makefile-browser-client)
|
|
|
|
|
(insert (makefile-format-macro-ref macro-name) " ")))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((target-name (makefile-browser-this-line-target-name)))
|
|
|
|
|
(set-buffer makefile-browser-client)
|
|
|
|
|
(insert target-name " ")))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-start-interaction ()
|
|
|
|
|
(use-local-map makefile-browser-map)
|
|
|
|
|
(setq buffer-read-only t))
|
|
|
|
|
|
|
|
|
|
(defun makefile-browse (targets macros)
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (zerop (+ (length targets) (length macros)))
|
|
|
|
|
(progn
|
|
|
|
|
(beep)
|
|
|
|
|
(message "No macros or targets to browse! Consider running 'makefile-pickup-everything\'"))
|
|
|
|
|
(let ((browser-buffer (get-buffer-create makefile-browser-buffer-name)))
|
|
|
|
|
(pop-to-buffer browser-buffer)
|
|
|
|
|
(makefile-browser-fill targets macros)
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(shrink-window-if-larger-than-buffer)
|
2001-07-16 01:52:50 +00:00
|
|
|
|
(set (make-local-variable 'makefile-browser-selection-vector)
|
|
|
|
|
(make-vector (+ (length targets) (length macros)) nil))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(makefile-browser-start-interaction))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-switch-to-browser ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(run-hooks 'makefile-browser-hook)
|
|
|
|
|
(setq makefile-browser-client (current-buffer))
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(makefile-pickup-targets)
|
|
|
|
|
(makefile-pickup-macros)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(makefile-browse makefile-target-table makefile-macro-table))
|
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
;;; Up-to-date overview buffer
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
(defun makefile-create-up-to-date-overview ()
|
1993-04-21 03:47:05 +00:00
|
|
|
|
"Create a buffer containing an overview of the state of all known targets.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
Known targets are targets that are explicitly defined in that makefile;
|
|
|
|
|
in other words, all targets that appear on the left hand side of a
|
|
|
|
|
dependency in the makefile."
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (y-or-n-p "Are you sure that the makefile being edited is consistent? ")
|
|
|
|
|
;;
|
|
|
|
|
;; The rest of this function operates on a temporary makefile, created by
|
|
|
|
|
;; writing the current contents of the makefile buffer.
|
|
|
|
|
;;
|
|
|
|
|
(let ((saved-target-table makefile-target-table)
|
|
|
|
|
(this-buffer (current-buffer))
|
|
|
|
|
(makefile-up-to-date-buffer
|
|
|
|
|
(get-buffer-create makefile-up-to-date-buffer-name))
|
|
|
|
|
(filename (makefile-save-temporary))
|
|
|
|
|
;;
|
|
|
|
|
;; Forget the target table because it may contain picked-up filenames
|
|
|
|
|
;; that are not really targets in the current makefile.
|
|
|
|
|
;; We don't want to query these, so get a new target-table with just the
|
|
|
|
|
;; targets that can be found in the makefile buffer.
|
|
|
|
|
;; The 'old' target table will be restored later.
|
|
|
|
|
;;
|
|
|
|
|
(real-targets (progn
|
|
|
|
|
(makefile-pickup-targets)
|
1993-04-21 03:47:05 +00:00
|
|
|
|
makefile-target-table))
|
|
|
|
|
(prereqs makefile-has-prereqs)
|
|
|
|
|
)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(set-buffer makefile-up-to-date-buffer)
|
|
|
|
|
(setq buffer-read-only nil)
|
|
|
|
|
(erase-buffer)
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(makefile-query-targets filename real-targets prereqs)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(if (zerop (buffer-size)) ; if it did not get us anything
|
|
|
|
|
(progn
|
|
|
|
|
(kill-buffer (current-buffer))
|
|
|
|
|
(message "No overview created!")))
|
|
|
|
|
(set-buffer this-buffer)
|
|
|
|
|
(setq makefile-target-table saved-target-table)
|
|
|
|
|
(if (get-buffer makefile-up-to-date-buffer-name)
|
|
|
|
|
(progn
|
|
|
|
|
(pop-to-buffer (get-buffer makefile-up-to-date-buffer-name))
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(shrink-window-if-larger-than-buffer)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(sort-lines nil (point-min) (point-max))
|
|
|
|
|
(setq buffer-read-only t))))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-save-temporary ()
|
|
|
|
|
"Create a temporary file from the current makefile buffer."
|
|
|
|
|
(let ((filename (makefile-generate-temporary-filename)))
|
|
|
|
|
(write-region (point-min) (point-max) filename nil 0)
|
|
|
|
|
filename)) ; return the filename
|
|
|
|
|
|
|
|
|
|
(defun makefile-generate-temporary-filename ()
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Create a filename suitable for use in `makefile-save-temporary'.
|
1992-07-17 06:48:03 +00:00
|
|
|
|
Be careful to allow brain-dead file systems (DOS, SYSV ...) to cope
|
1994-10-30 21:20:42 +00:00
|
|
|
|
with the generated name!"
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(let ((my-name (user-login-name))
|
|
|
|
|
(my-uid (int-to-string (user-uid))))
|
|
|
|
|
(concat "mktmp"
|
|
|
|
|
(if (> (length my-name) 3)
|
|
|
|
|
(substring my-name 0 3)
|
|
|
|
|
my-name)
|
|
|
|
|
"."
|
|
|
|
|
(if (> (length my-uid) 3)
|
|
|
|
|
(substring my-uid 0 3)
|
|
|
|
|
my-uid))))
|
|
|
|
|
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(defun makefile-query-targets (filename target-table prereq-list)
|
1995-08-23 23:51:38 +00:00
|
|
|
|
"Fill the up-to-date overview buffer.
|
1994-10-30 21:20:42 +00:00
|
|
|
|
Checks each target in TARGET-TABLE using `makefile-query-one-target-method'
|
1992-07-17 06:48:03 +00:00
|
|
|
|
and generates the overview, one line per target name."
|
|
|
|
|
(insert
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(mapconcat
|
|
|
|
|
(function (lambda (item)
|
|
|
|
|
(let* ((target-name (car item))
|
|
|
|
|
(no-prereqs (not (member target-name prereq-list)))
|
1999-10-22 17:04:35 +00:00
|
|
|
|
(needs-rebuild (or no-prereqs
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(funcall
|
|
|
|
|
makefile-query-one-target-method
|
|
|
|
|
target-name
|
|
|
|
|
filename))))
|
|
|
|
|
(format "\t%s%s"
|
|
|
|
|
target-name
|
|
|
|
|
(cond (no-prereqs " .. has no prerequisites")
|
|
|
|
|
(needs-rebuild " .. NEEDS REBUILD")
|
|
|
|
|
(t " .. is up to date"))))
|
|
|
|
|
))
|
|
|
|
|
target-table "\n"))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(delete-file filename)) ; remove the tmpfile
|
|
|
|
|
|
|
|
|
|
(defun makefile-query-by-make-minus-q (target &optional filename)
|
2004-01-03 12:12:01 +00:00
|
|
|
|
(not (eq 0
|
1994-10-30 21:20:42 +00:00
|
|
|
|
(call-process makefile-brave-make nil nil nil
|
|
|
|
|
"-f" filename "-q" target))))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
;;; Continuation cleanup
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
(defun makefile-cleanup-continuations ()
|
|
|
|
|
(if (eq major-mode 'makefile-mode)
|
2002-09-19 01:21:46 +00:00
|
|
|
|
(if (and makefile-cleanup-continuations
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(not buffer-read-only))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
2002-09-19 01:21:46 +00:00
|
|
|
|
(while (re-search-forward "\\\\[ \t]+$" nil t)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(replace-match "\\" t t))))))
|
|
|
|
|
|
1994-03-02 07:57:04 +00:00
|
|
|
|
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
;;; Warn of suspicious lines
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
(defun makefile-warn-suspicious-lines ()
|
2000-03-23 02:39:58 +00:00
|
|
|
|
;; Returning non-nil cancels the save operation
|
|
|
|
|
(if (eq major-mode 'makefile-mode)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (re-search-forward "^\\(\t+$\\| +\t\\)" nil t)
|
|
|
|
|
(not (y-or-n-p
|
2002-10-26 22:49:12 +00:00
|
|
|
|
(format "Suspicious line %d. Save anyway? "
|
|
|
|
|
(count-lines (point-min) (point)))))))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-warn-continuations ()
|
|
|
|
|
(if (eq major-mode 'makefile-mode)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
2002-10-28 08:17:27 +00:00
|
|
|
|
(if (re-search-forward "\\\\[ \t]+$" nil t)
|
2002-10-26 22:49:12 +00:00
|
|
|
|
(not (y-or-n-p
|
|
|
|
|
(format "Suspicious continuation in line %d. Save anyway? "
|
2000-03-23 02:39:58 +00:00
|
|
|
|
(count-lines (point-min) (point)))))))))
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
1994-03-02 07:57:04 +00:00
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
;;; GNU make function support
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
(defun makefile-insert-gmake-function ()
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Insert a GNU make function call.
|
|
|
|
|
Asks for the name of the function to use (with completion).
|
|
|
|
|
Then prompts for all required parameters."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let* ((gm-function-name (completing-read
|
|
|
|
|
"Function: "
|
|
|
|
|
makefile-gnumake-functions-alist
|
|
|
|
|
nil t nil))
|
|
|
|
|
(gm-function-prompts
|
|
|
|
|
(cdr (assoc gm-function-name makefile-gnumake-functions-alist))))
|
|
|
|
|
(if (not (zerop (length gm-function-name)))
|
|
|
|
|
(insert (makefile-format-macro-ref
|
|
|
|
|
(concat gm-function-name " "
|
|
|
|
|
(makefile-prompt-for-gmake-funargs
|
|
|
|
|
gm-function-name gm-function-prompts)))
|
|
|
|
|
" "))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-prompt-for-gmake-funargs (function-name prompt-list)
|
|
|
|
|
(mapconcat
|
|
|
|
|
(function (lambda (one-prompt)
|
1994-10-30 21:20:42 +00:00
|
|
|
|
(read-string (format "[%s] %s: " function-name one-prompt)
|
|
|
|
|
nil)))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
prompt-list
|
|
|
|
|
","))
|
1994-10-30 21:20:42 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
;;; Utility functions
|
|
|
|
|
;;; ------------------------------------------------------------
|
|
|
|
|
|
2005-05-13 07:51:15 +00:00
|
|
|
|
(defun makefile-match-function-end (end)
|
|
|
|
|
"To be called as an anchored matcher by font-lock.
|
|
|
|
|
The anchor must have matched the opening parens in the first group."
|
|
|
|
|
(let ((s (match-string-no-properties 1)))
|
|
|
|
|
(setq s (cond ((string= s "(") "\\(.*?\\)[ \t]*)")
|
|
|
|
|
((string= s "{") "\\(.*?\\)[ \t]*}")
|
|
|
|
|
((string= s "((") "\\(.*?\\)[ \t]*))")
|
|
|
|
|
((string= s "{{") "\\(.*?\\)[ \t]*}}")))
|
|
|
|
|
(if s (looking-at s))))
|
|
|
|
|
|
2005-05-17 20:45:26 +00:00
|
|
|
|
(defun makefile-match-dependency (bound)
|
2005-05-16 20:13:09 +00:00
|
|
|
|
"Search for `makefile-dependency-regex' up to BOUND.
|
|
|
|
|
Checks that the colon has not already been fontified, else we
|
|
|
|
|
matched in a rule action."
|
|
|
|
|
(catch 'found
|
2005-05-17 20:45:26 +00:00
|
|
|
|
(let ((pt (point)))
|
2005-05-19 02:20:34 +00:00
|
|
|
|
(while (progn (skip-chars-forward makefile-dependency-skip bound)
|
2005-05-21 02:46:37 +00:00
|
|
|
|
(< (point) (or bound (point-max))))
|
2005-05-17 20:45:26 +00:00
|
|
|
|
(forward-char)
|
2005-05-18 20:12:10 +00:00
|
|
|
|
(or (eq (char-after) ?=)
|
|
|
|
|
(get-text-property (1- (point)) 'face)
|
2005-06-14 22:33:56 +00:00
|
|
|
|
(if (> (line-beginning-position) (+ (point-min) 2))
|
|
|
|
|
(eq (char-before (line-end-position 0)) ?\\))
|
2005-05-17 20:45:26 +00:00
|
|
|
|
(when (save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(looking-at makefile-dependency-regex))
|
2005-06-06 12:50:01 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((deps-end (match-end 1))
|
|
|
|
|
(match-data (match-data)))
|
|
|
|
|
(goto-char deps-end)
|
|
|
|
|
(skip-chars-backward " \t")
|
|
|
|
|
(setq deps-end (point))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
;; Alter the bounds recorded for subexp 1,
|
|
|
|
|
;; which is what is supposed to match the targets.
|
|
|
|
|
(setcar (nthcdr 2 match-data) (point))
|
|
|
|
|
(setcar (nthcdr 3 match-data) deps-end)
|
|
|
|
|
(store-match-data match-data)))
|
2005-05-17 20:45:26 +00:00
|
|
|
|
(end-of-line)
|
|
|
|
|
(throw 'found (point)))))
|
|
|
|
|
(goto-char pt))
|
|
|
|
|
nil))
|
2005-05-16 20:13:09 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-match-action (bound)
|
|
|
|
|
(catch 'found
|
|
|
|
|
(while (re-search-forward makefile-rule-action-regex bound t)
|
|
|
|
|
(or (eq ?\\ (char-after (- (match-beginning 0) 2)))
|
|
|
|
|
(throw 'found t)))))
|
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(defun makefile-do-macro-insertion (macro-name)
|
|
|
|
|
"Insert a macro reference."
|
|
|
|
|
(if (not (zerop (length macro-name)))
|
|
|
|
|
(if (assoc macro-name makefile-runtime-macros-list)
|
|
|
|
|
(insert "$" macro-name)
|
|
|
|
|
(insert (makefile-format-macro-ref macro-name)))))
|
|
|
|
|
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(defun makefile-remember-target (target-name &optional has-prereqs)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
"Remember a given target if it is not already remembered for this buffer."
|
|
|
|
|
(if (not (zerop (length target-name)))
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(progn
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(if (not (assoc target-name makefile-target-table))
|
|
|
|
|
(setq makefile-target-table
|
1993-04-21 03:47:05 +00:00
|
|
|
|
(cons (list target-name) makefile-target-table)))
|
|
|
|
|
(if has-prereqs
|
|
|
|
|
(setq makefile-has-prereqs
|
|
|
|
|
(cons target-name makefile-has-prereqs))))))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-remember-macro (macro-name)
|
|
|
|
|
"Remember a given macro if it is not already remembered for this buffer."
|
|
|
|
|
(if (not (zerop (length macro-name)))
|
|
|
|
|
(if (not (assoc macro-name makefile-macro-table))
|
|
|
|
|
(setq makefile-macro-table
|
|
|
|
|
(cons (list macro-name) makefile-macro-table)))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-forward-after-target-colon ()
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Move point forward after inserting the terminating colon of a target.
|
|
|
|
|
This acts according to the value of `makefile-tab-after-target-colon'."
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(if makefile-tab-after-target-colon
|
|
|
|
|
(insert "\t")
|
|
|
|
|
(insert " ")))
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-on-macro-line-p ()
|
|
|
|
|
"Determine if point is on a macro line in the browser."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
2001-11-28 20:40:36 +00:00
|
|
|
|
(re-search-forward "\\$[{(]" (line-end-position) t)))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-browser-this-line-target-name ()
|
|
|
|
|
"Extract the target name from a line in the browser."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(skip-chars-backward "^ \t")
|
2001-11-28 20:40:36 +00:00
|
|
|
|
(buffer-substring (point) (1- (line-end-position)))))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-browser-this-line-macro-name ()
|
|
|
|
|
"Extract the macro name from a line in the browser."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
2001-11-28 20:40:36 +00:00
|
|
|
|
(re-search-forward "\\$[{(]" (line-end-position) t)
|
1992-07-17 06:48:03 +00:00
|
|
|
|
(let ((macro-start (point)))
|
|
|
|
|
(skip-chars-forward "^})")
|
|
|
|
|
(buffer-substring macro-start (point)))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-format-macro-ref (macro-name)
|
1994-10-30 21:20:42 +00:00
|
|
|
|
"Format a macro reference.
|
|
|
|
|
Uses `makefile-use-curly-braces-for-macros-p'."
|
1994-03-02 07:57:04 +00:00
|
|
|
|
(if (or (char-equal ?\( (string-to-char macro-name))
|
|
|
|
|
(char-equal ?\{ (string-to-char macro-name)))
|
|
|
|
|
(format "$%s" macro-name)
|
|
|
|
|
(if makefile-use-curly-braces-for-macros-p
|
|
|
|
|
(format "${%s}" macro-name)
|
|
|
|
|
(format "$(%s)" macro-name))))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-browser-get-state-for-line (n)
|
|
|
|
|
(aref makefile-browser-selection-vector (1- n)))
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-set-state-for-line (n to-state)
|
|
|
|
|
(aset makefile-browser-selection-vector (1- n) to-state))
|
|
|
|
|
|
|
|
|
|
(defun makefile-browser-toggle-state-for-line (n)
|
|
|
|
|
(makefile-browser-set-state-for-line n (not (makefile-browser-get-state-for-line n))))
|
|
|
|
|
|
|
|
|
|
(defun makefile-last-line-p ()
|
2001-11-28 20:40:36 +00:00
|
|
|
|
(= (line-end-position) (point-max)))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-first-line-p ()
|
2001-11-28 20:40:36 +00:00
|
|
|
|
(= (line-beginning-position) (point-min)))
|
1992-07-17 06:48:03 +00:00
|
|
|
|
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
|
|
|
|
|
1999-02-07 04:07:14 +00:00
|
|
|
|
;;; Support for other packages, like add-log.
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
|
|
|
|
(defun makefile-add-log-defun ()
|
1995-12-25 01:43:07 +00:00
|
|
|
|
"Return name of target or variable assignment that point is in.
|
|
|
|
|
If it isn't in one, return nil."
|
1994-10-11 20:42:23 +00:00
|
|
|
|
(save-excursion
|
1995-12-25 01:43:07 +00:00
|
|
|
|
(let (found)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
;; Scan back line by line, noticing when we come to a
|
|
|
|
|
;; variable or rule definition, and giving up when we see
|
|
|
|
|
;; a line that is not part of either of those.
|
2002-09-19 01:21:46 +00:00
|
|
|
|
(while (not (or (setq found
|
|
|
|
|
(when (or (looking-at makefile-macroassign-regex)
|
|
|
|
|
(looking-at makefile-dependency-regex))
|
|
|
|
|
(match-string-no-properties 1)))
|
|
|
|
|
;; Don't keep looking across a blank line or comment.
|
|
|
|
|
(looking-at "$\\|#")
|
|
|
|
|
(not (zerop (forward-line -1))))))
|
|
|
|
|
found)))
|
1994-10-11 20:42:23 +00:00
|
|
|
|
|
2001-11-28 20:41:49 +00:00
|
|
|
|
(provide 'make-mode)
|
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
|
;;; arch-tag: bd23545a-de91-44fb-b1b2-feafbb2635a0
|
1995-11-05 04:40:19 +00:00
|
|
|
|
;;; make-mode.el ends here
|