;;; -*- lexical-binding: t -*- ;; ;; this file: ;; https://dataswamp.org/~incal/emacs-init/ide/compile-incal.el (require 'compile) (require 'mode-line) (require 'super) (setq compile-command "make -j 4 -s -k ") (defun makefile-mode-hook-f () (lines) (disable-super-global-keys) ) (add-hook 'makefile-mode-hook #'makefile-mode-hook-f) (defun compile-with-prompt () "Use this if there are sudos in the Makefile." (interactive) (compile compile-command t) ) (provide 'compile-incal)