aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2015-07-18 11:56:41 +0200
committerVirtualTam <virtualtam@flibidi.net>2015-07-18 13:43:19 +0200
commitd0ce99e59ecc8d62eefbf1322736880159a7e9e7 (patch)
treea4f57a6e74d9d155f9bf4b8af34b4e491eabeb5b /Makefile
parent2ac5938b670997454f00e9f1d8f7459e428bb331 (diff)
downloadShaarli-d0ce99e59ecc8d62eefbf1322736880159a7e9e7.tar.gz
Shaarli-d0ce99e59ecc8d62eefbf1322736880159a7e9e7.tar.zst
Shaarli-d0ce99e59ecc8d62eefbf1322736880159a7e9e7.zip
Makefile: do not call `clean` before `test`
Fixes #288 Modifications: - call `make clean` explicitely to clean the workspace - add `make clean` to Travis instructions Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 80efcfaa..28353587 100644
--- a/Makefile
+++ b/Makefile
@@ -102,7 +102,7 @@ mess_detector_summary: mess_title
102# See phpunit.xml for configuration 102# See phpunit.xml for configuration
103# https://phpunit.de/manual/current/en/appendixes.configuration.html 103# https://phpunit.de/manual/current/en/appendixes.configuration.html
104## 104##
105test: clean 105test:
106 @echo "-------" 106 @echo "-------"
107 @echo "PHPUNIT" 107 @echo "PHPUNIT"
108 @echo "-------" 108 @echo "-------"
@@ -114,13 +114,13 @@ test: clean
114 114
115### remove all unversioned files 115### remove all unversioned files
116clean: 116clean:
117 @git clean -df 117 @git clean -df
118 118
119### update the local copy of the documentation 119### update the local copy of the documentation
120doc: clean 120doc: clean
121 @rm -rf doc 121 @rm -rf doc
122 @git clone https://github.com/shaarli/Shaarli.wiki.git doc 122 @git clone https://github.com/shaarli/Shaarli.wiki.git doc
123 @rm -rf doc/.git 123 @rm -rf doc/.git
124 124
125### Convert local markdown documentation to HTML 125### Convert local markdown documentation to HTML
126htmldoc: 126htmldoc: