diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2013-05-08 20:42:35 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2013-05-08 20:44:41 +0200 |
commit | 04ae72158e8bb0bd11553eacece6901714c9d455 (patch) | |
tree | 53b946c7153c1de33b409612f5a78a2b9a9b94f0 /Makefile | |
parent | 818ee593aadece3ffe8ac36579c241c0bf157047 (diff) | |
download | tdv-04ae72158e8bb0bd11553eacece6901714c9d455.tar.gz tdv-04ae72158e8bb0bd11553eacece6901714c9d455.tar.xz tdv-04ae72158e8bb0bd11553eacece6901714c9d455.zip |
Add a WIP tool to add pronunciations to dicts
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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) |