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