ob-makefile.el 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ;;; ob-makefile.el --- Babel Functions for Makefile -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
  3. ;; Author: Eric Schulte
  4. ;; Thomas S. Dye
  5. ;; Keywords: literate programming, reproducible research
  6. ;; Homepage: https://orgmode.org
  7. ;; This file is part of GNU Emacs.
  8. ;; GNU Emacs is free software: you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation, either version 3 of the License, or
  11. ;; (at your option) any later version.
  12. ;; GNU Emacs is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  18. ;;; Commentary:
  19. ;; This file exists solely for tangling a Makefile from Org files.
  20. ;;; Code:
  21. (require 'ob)
  22. (defvar org-babel-default-header-args:makefile '())
  23. (defun org-babel-execute:makefile (body _params)
  24. "Execute a block of makefile code.
  25. This function is called by `org-babel-execute-src-block'."
  26. body)
  27. (defun org-babel-prep-session:makefile (_session _params)
  28. "Return an error if the :session header argument is set. Make
  29. does not support sessions."
  30. (error "Makefile sessions are nonsensical"))
  31. (provide 'ob-makefile)
  32. ;;; ob-makefile.el ends here