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

check:
	# bad hack to make Python extensions work from source directory
	cp ../src/carquinyol/.libs/*.so ../src/carquinyol/
	@./runalltests.py

valgrind:
	@echo "Profiling the process. Run kcachegrind on the output"
	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: