summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehnam Esfahbod <behnam@zwnj.org>2009-04-19 22:06:46 +0430
committerBehnam Esfahbod ZWNJ <behnam@zwnj.org>2009-04-19 22:06:46 +0430
commit49bb8ef7a08c6c9c1e069fc09c15996dfd4decd5 (patch)
tree277b9e0d228603a1a53c80d8f8b7b98a3e19c9c2
parent508be983573bb4eff6a873604cf11859d7aee22a (diff)
[Makefile] Fix testsHEADmaster
-rw-r--r--Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 53058e9..cfbb6e2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,18 @@
-all: ctags test
+.PHONY: clean tests
-test:
- python tests/test1.py
- python tests/test2.py
+all: ctags tests
+
+tests:
+ @echo `pkg-config --libs-only-L fribidi | sed s'/^-L//'`
+ python test/test1.py
+ python test/test2.py
ctags:
@clear
- @echo `pkg-config --libs-only-L fribidi | sed s'/^-L//'`
@ctags -R . `pkg-config --libs-only-L fribidi | sed s'/^-L//'`
+
clean:
find *.pyc | xargs rm -f