* test/automated/Makefile.in (abs_srcdir): Remove.
[bpt/emacs.git] / test / automated / Makefile.in
1 ### @configure_input@
2
3 # Copyright (C) 2010-2013 Free Software Foundation, Inc.
4
5 # This file is part of GNU Emacs.
6
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.
11
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
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/>.
19
20 SHELL = @SHELL@
21
22 srcdir = @srcdir@
23 VPATH = $(srcdir)
24
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
29
30 # Command line flags for Emacs.
31 EMACSOPT = -batch --no-site-file --no-site-lisp
32
33 # Extra flags to pass to the byte compiler.
34 BYTE_COMPILE_EXTRA_FLAGS =
35
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)
39
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" ;; \
45 esac; \
46 done
47
48 .PHONY: all check
49
50 all: check
51
52 # The compilation stuff is copied from lisp/Makefile - see comments there.
53
54 .SUFFIXES: .elc .el
55
56 .el.elc:
57 @echo Compiling $<
58 @$(emacs) -L :$(srcdir) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $<
59
60
61 .PHONY: compile-targets compile-main compile-clean
62
63 # TARGETS is set dynamically in the recursive call from `compile-main'.
64 compile-targets: $(TARGETS)
65
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'`; \
71 for el in $$els; do \
72 test -f $$el || continue; \
73 test ! -f $${el}c && GREP_OPTIONS= grep '^;.*no-byte-compile: t' $$el > /dev/null && continue; \
74 echo "$${el}c"; \
75 done | xargs echo) | \
76 while read chunk; do \
77 $(MAKE) $(MFLAGS) compile-targets EMACS="$(EMACS)" TARGETS="$$chunk"; \
78 done
79
80 # Erase left-over .elc files that do not have a corresponding .el file.
81 compile-clean:
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 \
86 echo rm "$${el}c"; \
87 rm "$${el}c"; \
88 fi \
89 done
90
91
92 .PHONY: bootstrap-clean distclean maintainer-clean
93
94 bootstrap-clean:
95 -cd $(srcdir) && rm -f *.elc */*.elc */*/*.elc */*/*/*.elc
96
97 distclean:
98 rm -f Makefile
99
100 maintainer-clean: distclean bootstrap-clean
101
102
103 check: compile-main
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"; \
109 els="$$els $$el"; \
110 done; \
111 echo Testing $$els; \
112 cd "$$thisdir"; \
113 $(emacs) --chdir $(srcdir) -L :. $$args -f ert-run-tests-batch-and-exit
114
115 # Makefile ends here.