From 8be1ed3de5de5ad9ba6126675d8fad6da8283043 Mon Sep 17 00:00:00 2001 From: Quentin Bourgeois Date: Tue, 24 Jan 2017 00:21:51 +0100 Subject: [PATCH] The ( & ) could be interpreted by the shell when running make --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 74de646..9474cc5 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ PYTHON := python all: - @echo Available targets: - @echo clean - clean build directory - @echo test - run unittest - @echo epydoc - run epydoc to create API documentation - @echo wininst - Windows installer for Python - @echo docs - build docs with ReST and Sphinx - @echo wheel - build wheel binary archive (see pip & wheel) + @echo 'Available targets:' + @echo 'clean - clean build directory' + @echo 'test - run unittest' + @echo 'epydoc - run epydoc to create API documentation' + @echo 'wininst - Windows installer for Python' + @echo 'docs - build docs with ReST and Sphinx' + @echo 'wheel - build wheel binary archive (see pip & wheel)' .PHONY: clean test epydoc wininst docs