Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/Makefile
blob: d8461aafc40d239217586c5545d48b5244bbc1e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all:
install:
uninstall:

check:
	@./runalltests.py

valgrind:
	valgrind  --tool=callgrind --suppressions=valgrind-python.supp python runalltests.py

distclean: clean
clean:
	@find . -name "*.pyc" -exec rm {} \;
	@find . -name "*.pyo" -exec rm {} \;
	@find . -name "*~" -exec rm {} \;
	@find . -name "callgrind.out*" -exec rm {} \;

tags: