Variable: makefile-special-targets-list

makefile-special-targets-list is a customizable variable defined in make-mode.el.gz.

Value

("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")

Documentation

List of special targets.

You will be offered to complete on one of those in the minibuffer whenever you enter a "." at the beginning of a line in makefile-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
;;
;; Special targets for DMake, Sun's make ...
;;
(defcustom makefile-special-targets-list
  '("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")
  "List of special targets.
You will be offered to complete on one of those in the minibuffer whenever
you enter a \".\" at the beginning of a line in `makefile-mode'."
  :type '(repeat string)
  :risky t)