diff --git a/Makefile b/Makefile index f83bcb1..46eb9d5 100644 --- a/Makefile +++ b/Makefile @@ -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