+1999-10-25 Sam Steingold <sds@ksp.com>
+
+ * Makefile (compile-files): Fixed the "tr" strings.
+ (EMACS): Set to ../src/emacs.
+
1999-10-25 Gerd Moellmann <gerd@gnu.org>
* info.el (Info-build-node-completions): Add '("*") to the
# You can specify a different executable on the make command line,
# e.g. "make EMACS=../src/emacs ...".
-EMACS = emacs
+EMACS = ../src/emacs
# Command line flags for Emacs. This must include --multibyte,
# otherwise some files will not compile.
compile-files: subdirs.el doit
find . -name "*.elc" -print | xargs chmod +w; \
wd=.; $(setwins); \
- elpat=`echo $$wins | tr '[ ]' '[\012\012]' | \
+ elpat=`echo $$wins | tr ' ' '\012\012' | \
sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
- els=`echo $$elpat $(DONTCOMPILE) | tr '[ ]' '[\012\012]' | sort | uniq -u`; \
+ els=`echo $$elpat $(DONTCOMPILE) | tr ' ' '\012\012' | sort | uniq -u`; \
echo $$els; \
EMACSLOADPATH=`pwd` $(emacs) -f batch-byte-compile $$els