init .config git tracking

This commit is contained in:
Zhongheng Liu 2026-04-30 09:23:35 +02:00
commit 114c330966
151 changed files with 4688 additions and 0 deletions

16
Makefile Normal file
View file

@ -0,0 +1,16 @@
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
SRCDIR ?= exec
SCRIPTS := $(wildcard $(SRCDIR)/*.sh)
install:
@mkdir -p $(BINDIR)
for f in $(SCRIPTS); do \
install -m 755 "$$f" "$(BINDIR)/$$(basename $$f .sh)"; \
done
uninstall:
for f in $(SCRIPTS); do \
rm -f "$(BINDIR)/$$(basename $$f .sh)"; \
done