2013-11-02 Glenn Morris <rgm@gnu.org>
- * automated/Makefile.in (top_builddir, abs_test, abs_lispsrc, lisp):
- Remove variables.
+ * automated/Makefile.in (top_builddir, abs_test, abs_lispsrc, lisp)
+ (test): Remove variables.
(emacs): Use abs_top_srcdir, abs_srcdir rather than abs_lispsrc,
abs_test.
(lisp-compile): Use ../../lisp rather than $lisp.
+ (compile-main, compile-clean, compile-always, bootstrap-clean)
+ (check): Use srcdir rather than $test. Check cd return value.
+ (compile-always): Depend on bootstrap-clean.
2013-10-31 Michael Albinus <michael.albinus@gmx.de>
srcdir = @srcdir@
abs_top_srcdir = @abs_top_srcdir@
abs_top_builddir = @abs_top_builddir@
-test = $(srcdir)
VPATH = $(srcdir)
# You can specify a different executable on the make command line,
# Compile all the Elisp files that need it. Beware: it approximates
# `no-byte-compile', so watch out for false-positives!
compile-main: compile-clean lisp-compile
- @(cd $(test); $(setwins); \
+ @(cd $(srcdir) && $(setwins); \
els=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \
for el in $$els; do \
test -f $$el || continue; \
.PHONY: compile-clean
# Erase left-over .elc files that do not have a corresponding .el file.
compile-clean:
- @cd $(test); $(setwins); \
+ @cd $(srcdir) && $(setwins); \
elcs=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.elc |g'`; \
for el in $$(echo $$elcs | sed -e 's/\.elc/\.el/g'); do \
if test -f "$$el" -o \! -f "$${el}c"; then :; else \
# Compile all Lisp files. This is like `compile' but compiles files
# unconditionally. Some files don't actually get compiled because they
# set the local variable no-byte-compile.
-compile-always: doit
- cd $(test); rm -f *.elc */*.elc */*/*.elc */*/*/*.elc
+compile-always: bootstrap-clean
$(MAKE) $(MFLAGS) compile EMACS="$(EMACS)"
bootstrap-clean:
- cd $(test); rm -f *.elc */*.elc */*/*.elc */*/*/*.elc
+ -cd $(srcdir) && rm -f *.elc */*.elc */*/*.elc */*/*/*.elc
distclean:
- -rm -f ./Makefile
+ rm -f Makefile
maintainer-clean: distclean bootstrap-clean
check: compile-main
- @(cd $(test); $(setwins); \
+ @(cd $(srcdir) && $(setwins); \
pattern=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \
for el in $$pattern; do \
test -f $$el || continue; \