Function: eshell/make
eshell/make is a byte-compiled function defined in em-unix.el.gz.
Signature
(eshell/make &rest ARGS)
Documentation
Use compile to do background makes.
Fallback to standard make when called synchronously.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-unix.el.gz
(defun eshell/make (&rest args)
"Use `compile' to do background makes.
Fallback to standard make when called synchronously."
(eshell-compile "make" args
;; Use plain output unless we're executing in the
;; background.
(unless eshell-current-subjob-p 'plain)))