diff options
author | Pjotr Prins | 2017-10-05 11:10:57 +0000 |
---|---|---|
committer | Pjotr Prins | 2017-10-05 11:12:30 +0000 |
commit | d672c81f7963180c4979aecf93b624d12d3f2ed2 (patch) | |
tree | 1db846138215f05da0b5c98da964aea72920dc26 /Makefile | |
parent | 7b09fe8507962f20ccb1650b86408d40db1a0052 (diff) | |
download | pangemma-d672c81f7963180c4979aecf93b624d12d3f2ed2.tar.gz |
Addresses
https://github.com/genetics-statistics/GEMMA/issues/81
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -144,8 +144,15 @@ slow-check: all cd test && ./test_suite.sh | tee ../test.log grep -q 'success rate: 100%' test.log +lengthy-check: all + rm -vf test/output/* + cd test && ./lengthy_test_suite.sh | tee ../lengthy_test.log + grep -q 'success rate: 100%' lengthy_test.log + check: fast-check slow-check +check-all: check lengthy-check + clean: rm -vf $(SRC_DIR)/*.o rm -vf $(SRC_DIR)/*~ |