first
This commit is contained in:
commit
8e42f06716
5 changed files with 258 additions and 0 deletions
23
Makefile
Normal file
23
Makefile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue