summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 41e69c1..ce20ed3 100644
--- a/Makefile
+++ b/Makefile
@@ -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)