22de080373a21b6d801ba6c58d664db3a912e901 chmalee Mon Dec 20 13:41:45 2021 -0800 Adding clean target to matrixNormalize makefile so top of the tree make clean runs diff --git src/utils/matrixNormalize/tests/makefile src/utils/matrixNormalize/tests/makefile index fee2c43..c964c8c 100644 --- src/utils/matrixNormalize/tests/makefile +++ src/utils/matrixNormalize/tests/makefile @@ -1,11 +1,14 @@ test: mkdir -p out matrixNormalize row sum test.in out/rowSum.out diff expected/rowSum.out out/rowSum.out matrixNormalize row length test.in out/rowLength.out diff expected/rowLength.out out/rowLength.out matrixNormalize column sum test.in out/colSum.out diff expected/colSum.out out/colSum.out matrixNormalize column length test.in out/colLength.out diff expected/colLength.out out/colLength.out + +clean: + rm -rf out/