diff options
author | VirtualTam <tamisier.aurelien@gmail.com> | 2015-07-23 00:34:52 +0200 |
---|---|---|
committer | VirtualTam <tamisier.aurelien@gmail.com> | 2015-07-23 00:34:52 +0200 |
commit | caaae9b32bc44175b65555921e67e1f9405231e4 (patch) | |
tree | a4f57a6e74d9d155f9bf4b8af34b4e491eabeb5b /Makefile | |
parent | 2ac5938b670997454f00e9f1d8f7459e428bb331 (diff) | |
parent | d0ce99e59ecc8d62eefbf1322736880159a7e9e7 (diff) | |
download | Shaarli-caaae9b32bc44175b65555921e67e1f9405231e4.tar.gz Shaarli-caaae9b32bc44175b65555921e67e1f9405231e4.tar.zst Shaarli-caaae9b32bc44175b65555921e67e1f9405231e4.zip |
Merge pull request #289 from virtualtam/make-clean
Makefile: do not call `clean` before `test`
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 | ## |
105 | test: clean | 105 | test: |
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 |
116 | clean: | 116 | clean: |
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 |
120 | doc: clean | 120 | doc: 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 |
126 | htmldoc: | 126 | htmldoc: |