Skip to content

Commit

Permalink
[Makefile] Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
behnam committed Apr 19, 2009
1 parent 508be98 commit 49bb8ef
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 49bb8ef

Please sign in to comment.