You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, some makefile target need user input, so it would be nice if makefile-executor-execute-target can support universal-argument like C-u compile.
(defunmakefile-executor-execute-target (filename&optionaltarget)
"Execute a Makefile target from FILENAME.FILENAME defaults to current buffer."
(interactive
(list (file-truename buffer-file-name)))
(let ((target (or target (makefile-executor-select-target filename))))
(makefile-executor-store-cache filename target)
(compile (format"make -f %s -C %s%s"
(shell-quote-argument filename)
(shell-quote-argument (file-name-directory filename))
target))))
The compile may need to accept optional _COMINT argument:
(compile COMMAND &optional _COMINT)
The text was updated successfully, but these errors were encountered:
eval-exec
changed the title
Support universal-argument for makefile-executor-execute-target 's compile
Support universal-argument for makefile-executor-execute-target 's compile action
Nov 18, 2023
Hello, some makefile target need user input, so it would be nice if
makefile-executor-execute-target
can supportuniversal-argument
likeC-u compile
.The
compile
may need to accept optional_COMINT
argument:The text was updated successfully, but these errors were encountered: