Reorder target so that `check' is the first one - csvtofsv - Convert CSV to FSV (`fs' (0x1c) as FS and `rs' (0x1e) as RS)
(HTM) hg clone https://bitbucket.org/iamleot/csvtofsv
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
(DIR) changeset 1597ecadd1e5e3d81c5dc46374bcf3e737307798
(DIR) parent 4455ebaed931df136744b6c257e55250ed95613f
(HTM) Author: Leonardo Taccari <iamleot@gmail.com>
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