Skip to content

Commit 88d5b5a

Browse files
committed
A minor fix in Makefile
1 parent 6bb4dda commit 88d5b5a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
.PHONY: all subset clean help
22

3-
all:rawhash
3+
all:rawhash2
44

55
help: ##Show help
66
+$(MAKE) -C src help
77

8-
rawhash:
8+
rawhash2:
99
@if [ ! -e bin ] ; then mkdir -p ./bin/ ; fi
1010
+$(MAKE) -C src
11-
mv ./src/rawhash ./bin/
11+
mv ./src/rawhash2 ./bin/
1212

1313
subset:
1414
@if [ ! -e bin ] ; then mkdir -p ./bin/ ; fi
1515
+$(MAKE) -C src subset
16-
mv ./src/rawhash ./bin/
16+
mv ./src/rawhash2 ./bin/
1717

1818
clean:
1919
rm -rf bin/
2020
+$(MAKE) clean -C ./src/
21-
21+

0 commit comments

Comments
 (0)