Reorder target so that `check' is the first one - csvtofsv - Convert CSV to FSV… | |
hg clone https://bitbucket.org/iamleot/csvtofsv | |
Log | |
Files | |
Refs | |
README | |
--- | |
changeset 1597ecadd1e5e3d81c5dc46374bcf3e737307798 | |
parent 4455ebaed931df136744b6c257e55250ed95613f | |
Author: Leonardo Taccari <[email protected]> | |
Date: Wed, 26 Jun 2019 02:02:22 | |
Reorder target so that `check' is the first one | |
Diffstat: | |
t/Makefile | 10 +++++----- | |
1 files changed, 5 insertions(+), 5 deletions(-) | |
--- | |
diff -r 4455ebaed931 -r 1597ecadd1e5 t/Makefile | |
--- a/t/Makefile Wed Jun 26 02:01:29 2019 +0200 | |
+++ b/t/Makefile Wed Jun 26 02:02:22 2019 +0200 | |
@@ -2,13 +2,13 @@ | |
CSVTOFSV?= ../csvtofsv | |
-clean: | |
-.for t in ${TESTS} | |
- rm -f "${t}.tmp.fsv" | |
-.endfor | |
- | |
check: | |
.for t in ${TESTS} | |
${CSVTOFSV} < "${t}.csv" > "${t}.tmp.fsv" | |
cmp "${t}.fsv" "${t}.tmp.fsv" | |
.endfor | |
+ | |
+clean: | |
+.for t in ${TESTS} | |
+ rm -f "${t}.tmp.fsv" | |
+.endfor |