1
0
forked from N0VA/kewt

dist: bpkg preparation

This commit is contained in:
2026-03-20 08:46:13 +01:00
parent de8cbefb8e
commit 55a515ccd5
3 changed files with 27 additions and 1 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
PREFIX ?= /usr/local
BINDIR = $(PREFIX)/bin
all: kewt
kewt:
./tools/build-standalone.sh
install: kewt
install -d $(DESTDIR)$(BINDIR)
install -m 755 kewt $(DESTDIR)$(BINDIR)/kewt
uninstall:
rm -f $(DESTDIR)$(BINDIR)/kewt
clean:
rm -f kewt
.PHONY: all install uninstall clean