3 # Copyright (C) 2010-2013 Free Software Foundation, Inc.
5 # This file is part of GNU Emacs.
7 # GNU Emacs is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (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.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 # We never change directory before running Emacs, so a relative file
26 # name is fine, and makes life easier. If we need to change
27 # directory, we can use emacs --chdir.
28 EMACS
= ..
/..
/src
/emacs
30 # Command line flags for Emacs.
31 EMACSOPT
= -batch
--no-site-file
--no-site-lisp
33 # Extra flags to pass to the byte compiler.
34 BYTE_COMPILE_EXTRA_FLAGS
=
36 # The actual Emacs command run in the targets below.
37 # Prevent any setting of EMACSLOADPATH in user environment causing problems.
38 emacs
= unset EMACSLOADPATH
; LC_ALL
=C
"$(EMACS)" $(EMACSOPT
)
40 # Common command to find subdirectories
41 setwins
=subdirs
=`find . -type d -print`; \
42 for file in
$$subdirs; do \
43 case
$$file in
*/.
* |
*/.
*/* |
*/=* | .
/data
* ) ;; \
44 *) wins
="$$wins$${wins:+ }$$file" ;; \
52 # The compilation stuff is copied from lisp/Makefile - see comments there.
58 @
$(emacs
) -L
:$(srcdir) $(BYTE_COMPILE_EXTRA_FLAGS
) -f batch-byte-compile
$<
61 .PHONY
: compile-targets compile-main compile-clean
63 # TARGETS is set dynamically in the recursive call from `compile-main'.
64 compile-targets
: $(TARGETS
)
66 # Compile all the Elisp files that need it. Beware: it approximates
67 # `no-byte-compile', so watch out for false-positives!
68 compile-main
: compile-clean
69 @
(cd
$(srcdir) && $(setwins
); \
70 els
=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \
72 test -f
$$el || continue
; \
73 test ! -f
$${el}c
&& GREP_OPTIONS
= grep
'^;.*no-byte-compile: t' $$el > /dev
/null
&& continue
; \
75 done | xargs echo
) | \
76 while read chunk
; do \
77 $(MAKE
) $(MFLAGS
) compile-targets EMACS
="$(EMACS)" TARGETS
="$$chunk"; \
80 # Erase left-over .elc files that do not have a corresponding .el file.
82 @cd
$(srcdir) && $(setwins
); \
83 elcs
=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.elc |g'`; \
84 for el in
$$(echo
$$elcs | sed
-e
's/\.elc/\.el/g'); do \
85 if
test -f
"$$el" -o \
! -f
"$${el}c"; then
:; else \
92 .PHONY
: bootstrap-clean
distclean maintainer-clean
95 -cd
$(srcdir) && rm -f
*.elc
*/*.elc
*/*/*.elc
*/*/*/*.elc
100 maintainer-clean
: distclean bootstrap-clean
104 @thisdir
=`pwd`; cd
$(srcdir) && $(setwins
); \
105 pattern
=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \
106 for el in
$$pattern; do \
107 test -f
$$el || continue
; \
108 args
="$$args -l $$el"; \
111 echo Testing
$$els; \
113 $(emacs
) --chdir
$(srcdir) -L
:.
$$args -f ert-run-tests-batch-and-exit
115 # Makefile ends here.