From 88d5b5aec50ec2e0bd83295e898a1b8c2f3909f8 Mon Sep 17 00:00:00 2001 From: canfirtina Date: Mon, 11 Sep 2023 17:42:51 +0200 Subject: [PATCH] A minor fix in Makefile --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 6ee7b9d..eeb1108 100644 --- a/Makefile +++ b/Makefile @@ -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/ - \ No newline at end of file +