summaryrefslogtreecommitdiff
path: root/Makefile
blob: cfbb6e2a8558a0cdd7c09eb4ed0112b8409482b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

.PHONY: clean tests

all: ctags tests

tests:
	@echo `pkg-config --libs-only-L fribidi | sed s'/^-L//'`
	python test/test1.py
	python test/test2.py

ctags:
	@clear
	@ctags -R . `pkg-config --libs-only-L fribidi | sed s'/^-L//'`


clean:
	find *.pyc | xargs rm -f