Skip to content

Commit

Permalink
A minor fix in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
canfirtina committed Sep 11, 2023
1 parent 6bb4dda commit 88d5b5a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
.PHONY: all subset clean help

all:rawhash
all:rawhash2

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

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

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

clean:
rm -rf bin/
+$(MAKE) clean -C ./src/


0 comments on commit 88d5b5a

Please sign in to comment.