Added install/uninstall

This commit is contained in:
Bruce Hill 2021-05-16 18:28:44 -07:00
parent 585d1e8dce
commit c64cba27b8

View File

@ -44,4 +44,11 @@ python:
testpython:
@cd Python; make test
.PHONY: all, checksyntax, clean, c, testc, lua, testlua, python, testpython
install:
mkdir -pv -m 755 "${PREFIX}/include" \
&& cp -v btui.h "${PREFIX}/include/"
uninstall:
rm -f "${PREFIX}/include/btui.h"
.PHONY: all, checksyntax, clean, c, testc, lua, testlua, python, testpython, install, uninstall