Function: makefile-pickup-everything

makefile-pickup-everything is an interactive and byte-compiled function defined in make-mode.el.gz.

Signature

(makefile-pickup-everything ARG)

Documentation

Notice names of all macros and targets in Makefile.

Prefix argument ARG means force pickups to be redone.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
(defun makefile-pickup-everything (arg)
  "Notice names of all macros and targets in Makefile.
Prefix argument ARG means force pickups to be redone."
  (interactive "P")
  (if arg
      (setq makefile-need-target-pickup t
	    makefile-need-macro-pickup t))
  (makefile-pickup-macros)
  (makefile-pickup-targets)
  (if makefile-pickup-everything-picks-up-filenames-p
      (makefile-pickup-filenames-as-targets)))