aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2013-05-09 00:49:45 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2013-05-10 02:06:27 +0200
commitbcf933fb9e8cc327a0c095b3456360a3ebf9fe6e (patch)
tree06e42cd86f95758cb3358d2ec67b4a9f8f44f324 /Makefile
parent28321b72e9c679bf5a8044c19f48f7ced5bb6249 (diff)
downloadtdv-bcf933fb9e8cc327a0c095b3456360a3ebf9fe6e.tar.gz
tdv-bcf933fb9e8cc327a0c095b3456360a3ebf9fe6e.tar.xz
tdv-bcf933fb9e8cc327a0c095b3456360a3ebf9fe6e.zip
Move dictionary generation to its own module
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ce20ed3..a12f9a1 100644
--- a/Makefile
+++ b/Makefile
@@ -19,10 +19,10 @@ clean:
sdcli: src/sdcli.o src/stardict.o
$(CC) $^ -o $@ $(LDFLAGS)
-add-pronunciation: src/add-pronunciation.o src/stardict.o
+add-pronunciation: src/add-pronunciation.o src/stardict.o src/generator.o
$(CC) $^ -o $@ $(LDFLAGS)
-test-stardict: src/test-stardict.o src/stardict.o
+test-stardict: src/test-stardict.o src/stardict.o src/generator.o
$(CC) $^ -o $@ $(LDFLAGS)
test: $(tests)