diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2023-09-27 20:17:37 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2023-09-27 20:17:37 +0200 |
| commit | 2a140e3563d3039ece2ce90d7450094a9a1775ad (patch) | |
| tree | 6c50a9d42fe5d91e39d78378673fffe1d13e5738 /Makefile | |
| parent | 4884caa838bea48b7cca28d7bda8faed930b03b1 (diff) | |
| parent | cdf835623e9ce779788603e4cacd966664d4a5c0 (diff) | |
Merge branch 'main' into emacs-30
Diffstat (limited to 'Makefile')
| -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 |
