From 53b845dd66da7e01e54f3b7e7a763f52e04805db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Pant=C5=AF=C4=8Dek?= Date: Thu, 13 Apr 2023 22:10:44 +0200 Subject: [PATCH] Support for -dev installations. --- Makefile | 4 ++++ src/Makefile | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 328a4ba..1d79dd7 100644 --- a/Makefile +++ b/Makefile @@ -38,3 +38,7 @@ clean: .PHONY: install install: @make -C src install + +.PHONY: install-dev +install-dev: + @make -C src install-dev diff --git a/src/Makefile b/src/Makefile index db3b50a..ff0644e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -65,6 +65,10 @@ clean: install: static install -m 0755 ../hackerbase /usr/local/bin/ +.PHONY: install-dev +install-dev: static + install -m 0755 ../hackerbase /usr/local/bin/hackerbase-dev + ################################################################ # Module static and shared object and import source compilation