This commit is contained in:
rhiannon morris 2022-01-10 01:26:49 +01:00
commit 8e42f06716
5 changed files with 258 additions and 0 deletions

23
Makefile Normal file
View file

@ -0,0 +1,23 @@
PREFIX ?= /usr
DB := bqn.db
ICON := bqn.png
OUT := $(DB) $(ICON)
INSTALL := $(PREFIX)/share/ibus-table
%.db: %.txt
ibus-table-createdb -s $< -n $@
.PHONY: all
all: $(DB)
.PHONY: install
install: $(DB) $(ICON)
mkdir -p $(INSTALL)/tables $(INSTALL)/icons
cp $(DB) $(INSTALL)/tables
cp $(ICON) $(INSTALL)/icons
.PHONY: clean
clean:
rm -f $(DB)