diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2023-09-27 20:17:07 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2023-09-27 20:17:26 +0200 |
| commit | cdf835623e9ce779788603e4cacd966664d4a5c0 (patch) | |
| tree | b39e73f872e6b75f09031c772d2b5771da64481e | |
| parent | a417d78f8abfc46386a4008fd694b77ba3e8fb2b (diff) | |
Makefile: Add header
| -rw-r--r-- | Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -1,3 +1,33 @@ +### Makefile + +# Copyright (C) 2021-2023 Free Software Foundation, Inc. + +# GNU Emacs is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# GNU Emacs is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. + +### Commentary: + +# The Makefile is an internal tool used for Compat development and checking on +# the continuous integration system. + +# make all/compile Compile Elisp files without no-byte-compile marking +# make force-compile Compile *all* Elisp files to check for compilation warnings +# make clean Delete compiled *.elc and *.info files +# make test Run the test suite +# make check Sanity checking of the test suite + +### Code: + .POSIX: .PHONY: all compile force-compile test clean check .SUFFIXES: .el .elc |
