branch: externals/compat commit 2a140e3563d3039ece2ce90d7450094a9a1775ad Merge: 4884caa838 cdf835623e Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
Merge branch 'main' into emacs-30 --- Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/Makefile b/Makefile index 0e18f337c5..54d3434d0a 100644 --- a/Makefile +++ b/Makefile @@ -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