houndsniff

Hash identification tool
git clone git@git.mcdim.xyz:/var/www/git/houndsniff.git
Log | Files | Refs | README | LICENSE

commit 61a9f03ba52ad36fc462d8557309c41dfbfb9339
parent bb3c04d3a834c5875f34ce60ebcb125da9df40fa
Author: Michael Constantine Dimopoulos <mk@mcdim.xyz>
Date:   Tue, 28 Sep 2021 04:41:11 +0000

Improved Makefile

Diffstat:
Msrc/Makefile | 10+++++-----
Asrc/houndsniff | 0
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/Makefile b/src/Makefile @@ -8,11 +8,11 @@ BIN=houndsniff all: main.c select.c $(CC) $(FILES) -o $(BIN) -install: main.c select.c houndsniff.1 +install: main.c select.c $(BIN).1 $(CC) $(FILES) -o $(BIN) - sudo cp hound /usr/bin - sudo cp houndsniff.1 /usr/share/man/man1 + sudo cp $(BIN) /usr/bin + sudo cp $(BIN).1 /usr/share/man/man1 sudo mandb -uninstall: /usr/bin/$(BIN) /usr/share/man/man1/houndsniff.1 - rm /usr/bin/$(BIN) /usr/share/man/man1/houndsniff.1 +uninstall: /usr/bin/$(BIN) /usr/share/man/man1/$(BIN).1 + rm /usr/bin/$(BIN) /usr/share/man/man1/$(BIN).1 diff --git a/src/houndsniff b/src/houndsniff Binary files differ.