Support for -dev installations.

This commit is contained in:
Dominik Pantůček 2023-04-13 22:10:44 +02:00
parent 0b597696eb
commit 53b845dd66
2 changed files with 8 additions and 0 deletions

View file

@ -38,3 +38,7 @@ clean:
.PHONY: install
install:
@make -C src install
.PHONY: install-dev
install-dev:
@make -C src install-dev

View file

@ -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