Add a WIP tool to add pronunciations to dicts

This commit is contained in:
2013-05-08 20:42:35 +02:00
parent 818ee593aa
commit 04ae72158e
2 changed files with 266 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ SHELL = /bin/sh
pkgs = ncursesw glib-2.0 gio-2.0
tests = test-stardict
targets = sdcli $(tests)
targets = sdcli add-pronunciation $(tests)
CC = clang
CFLAGS = -ggdb -std=gnu99 -Wall -Wextra -Wno-missing-field-initializers \
@@ -19,6 +19,9 @@ clean:
sdcli: sdcli.o stardict.o
$(CC) $^ -o $@ $(LDFLAGS)
add-pronunciation: add-pronunciation.o stardict.o
$(CC) $^ -o $@ $(LDFLAGS)
test-stardict: test-stardict.o stardict.o
$(CC) $^ -o $@ $(LDFLAGS)