Skip to content

Commit

Permalink
feat(prog): make makefile-executor obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Feb 22, 2024
1 parent c3630f7 commit f42dc43
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 12 deletions.
12 changes: 0 additions & 12 deletions modules/me-prog.el
Original file line number Diff line number Diff line change
Expand Up @@ -409,18 +409,6 @@ Fall back to the default `citre--project-root'."
(use-package justl
:straight t)

(use-package makefile-executor
:straight t
:hook (makefile-mode . makefile-executor-mode)
:init
(+map!
"pm" '(nil :wk "makefile-executor")
"pmm" #'makefile-executor-execute-project-target
"pml" #'makefile-executor-execute-last)
(+map-local! :keymaps 'makefile-mode-map
"pmt" #'makefile-executor-execute-target
"pmb" #'makefile-executor-execute-dedicated-buffer))

(use-package cmake-mode
:straight (:host github :repo "emacsmirror/cmake-mode" :files (:defaults "*")))

Expand Down
26 changes: 26 additions & 0 deletions modules/obsolete/me-makefile-executor.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
;;; me-makefile-executor.el --- Makefile executor (replaced with projection-multi) -*- lexical-binding: t; -*-

;; Copyright (C) 2022-2024 Abdelhak Bougouffa

;; Author: Abdelhak Bougouffa (rot13 "nobhtbhssn@srqbencebwrpg.bet")

;;; Commentary:

;;; Code:

(use-package makefile-executor
:straight t
:hook (makefile-mode . makefile-executor-mode)
:init
(+map!
"pm" '(nil :wk "makefile-executor")
"pmm" #'makefile-executor-execute-project-target
"pml" #'makefile-executor-execute-last)
(+map-local! :keymaps 'makefile-mode-map
"pmt" #'makefile-executor-execute-target
"pmb" #'makefile-executor-execute-dedicated-buffer))


(provide 'obsolete/me-makefile-executor)

;;; me-makefile-executor.el ends here

0 comments on commit f42dc43

Please sign in to comment.