diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2013-05-09 00:49:45 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2013-05-10 02:06:27 +0200 |
commit | bcf933fb9e8cc327a0c095b3456360a3ebf9fe6e (patch) | |
tree | 06e42cd86f95758cb3358d2ec67b4a9f8f44f324 /Makefile | |
parent | 28321b72e9c679bf5a8044c19f48f7ced5bb6249 (diff) | |
download | tdv-bcf933fb9e8cc327a0c095b3456360a3ebf9fe6e.tar.gz tdv-bcf933fb9e8cc327a0c095b3456360a3ebf9fe6e.tar.xz tdv-bcf933fb9e8cc327a0c095b3456360a3ebf9fe6e.zip |
Move dictionary generation to its own module
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |