aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 48ee800..1768be0 100644
--- a/Makefile
+++ b/Makefile
@@ -2,11 +2,11 @@ include config.mk
.SILENT: all
all: dist
- echo "This is a python project, no compilation at this step required."
- echo "Run make install to install global."
- echo "Run make install-user to install for the current user."
- echo ""
- echo "If you want to update your installation, use make update."
+ $(echo) "This is a python project, no compilation at this step required."
+ $(echo) "Run make install to install global."
+ $(echo) "Run make install-user to install for the current user."
+ $(echo) ""
+ $(echo) "If you want to update your installation, use make update."
# you need SOURCE_DATE_EPOCH at least at the 1980s when
# your default SOURCE_DATE_EPOCH in env is 1.
@@ -36,7 +36,7 @@ check:
$(tox) || echo "error: you have to install tox"
pretty:
- find . -type f -name '*.py' -or -name '*.py.in' -print0 | xargs -0 $(yapf) -i 2>&1 || true
+ $(find) . -type f -name '*.py' -or -name '*.py.in' -print0 | $(xargs) -0 $(yapf) -i 2>&1 || true
clean:
- rm -rf __pycache__ *~
+ $(rm) -rf __pycache__ *~