Commit 5e8d44d1 authored by Helmut Eller's avatar Helmut Eller
Browse files

Avoid echo -e which apparently is not very portable.

* Makefile (help, help-vars): Use printf instead of echo -e.
parent a9ca581e
Showing with 4 additions and 4 deletions
+4 -4
......@@ -17,7 +17,7 @@ default: compile contrib-compile
all: compile
help:
@echo -e "\
@printf "\
Main targets\n\
all -- see compile\n\
compile -- compile .el files\n\
......@@ -25,14 +25,14 @@ check -- run tests in batch mode\n\
clean -- delete generated files\n\
doc-help -- print help about doc targets\n\
help-vars -- print info about variables\n\
help -- print this message"
help -- print this message\n"
help-vars:
@echo -e "\
@printf "\
Main make variables:\n\
EMACS -- program to start Emacs ($(EMACS))\n\
LISP -- program to start Lisp ($(LISP))\n\
SELECTOR -- selector for ERT tests ($(SELECTOR))"
SELECTOR -- selector for ERT tests ($(SELECTOR))\n"
# Compilation
#
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment