Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added makefile for easy install/uninstall on Linux&MacOS #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Sat Sep 16 22:26:18 CEST 2023
# [email protected]

NMAP_FILES = ssh-hassh.nse hasshdb
ALL_FILES := $(foreach f,$(NMAP_FILES),$(addprefix $(NMAP_DIR)/,$(f)))

ifeq ($(shell uname -s), Linux)
NMAP_DB_DIR=/usr/share/nmap/nselib/data
NMAP_SC_DIR = /usr/share/nmap/scripts
else
ifeq ($(shell uname -s), Darwin)
NMAP_DB_DIR=/usr/local/share/nmap/nselib/data
NMAP_SC_DIR = /usr/local/share/nmap/scripts
endif
endif


default:
echo "Usage: make <install|uninstall|docker>"

docker:
docker build -t hassh:latest .

install:
install -m 0644 -t $(NMAP_DB_DIR) hasshdb
install -m 0644 -t $(NMAP_SC_DIR) ssh-hassh.nse

uninstall:
rm $(NMAP_DB_DIR)/hasshdb
rm $(NMAP_SC_DIR)/ssh-hassh.nse

.SILENT: default