diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2013-05-08 20:54:06 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2013-05-08 20:54:06 +0200 |
commit | febff16ed4736c9fcb4dc65c04f0260dc2fe2b33 (patch) | |
tree | 9cb6badd8708d91df935223909f94d0f5f8dd77f /Makefile | |
parent | 04ae72158e8bb0bd11553eacece6901714c9d455 (diff) | |
download | tdv-febff16ed4736c9fcb4dc65c04f0260dc2fe2b33.tar.gz tdv-febff16ed4736c9fcb4dc65c04f0260dc2fe2b33.tar.xz tdv-febff16ed4736c9fcb4dc65c04f0260dc2fe2b33.zip |
Move sources into their own directory
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -14,15 +14,15 @@ LDFLAGS = `pkg-config --libs $(pkgs)` all: $(targets) clean: - rm -f $(targets) *.o + rm -f $(targets) src/*.o -sdcli: sdcli.o stardict.o +sdcli: src/sdcli.o src/stardict.o $(CC) $^ -o $@ $(LDFLAGS) -add-pronunciation: add-pronunciation.o stardict.o +add-pronunciation: src/add-pronunciation.o src/stardict.o $(CC) $^ -o $@ $(LDFLAGS) -test-stardict: test-stardict.o stardict.o +test-stardict: src/test-stardict.o src/stardict.o $(CC) $^ -o $@ $(LDFLAGS) test: $(tests) |