From c64cba27b803d1909d12bc120ef7a0f67aea5b46 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 16 May 2021 18:28:44 -0700 Subject: [PATCH] Added install/uninstall --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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