summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index ed100a8e..77fad740 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,6 @@ SETUPOPTS ?= '--record=install_log.txt'
 DOCDIR ?= doc/pydoc
 DESTDIR ?= /
 PYOPTIMIZE ?= 1
-BMCOUNT ?= 5  # how often to run the benchmarks?
 
 CWD = $(shell pwd)
 
@@ -43,7 +42,6 @@ help:
 	@echo 'make clean: Remove the compiled files (*.pyc, *.pyo)'
 	@echo 'make cleandoc: Remove the pydoc documentation'
 	@echo 'make snapshot: Create a tar.gz of the current git revision'
-	@echo 'make test: Run all unittests.'
 
 install:
 	$(PYTHON) setup.py install $(SETUPOPTS) \
@@ -73,13 +71,7 @@ manhtml:
 cleandoc:
 	test -d $(DOCDIR) && rm -f -- $(DOCDIR)/*.html || true
 
-test:
-	@$(PYTHON) test/all_tests.py 1
-
-bm:
-	@$(PYTHON) test/all_benchmarks.py $(BMCOUNT)
-
 snapshot:
 	git archive --prefix='$(NAME)-$(VERSION)/' --format=tar HEAD | gzip > $(SNAPSHOT_NAME)
 
-.PHONY: default options compile clean doc cleandoc test bm snapshot install man
+.PHONY: default options compile clean doc cleandoc snapshot install man
.8.1&id=4e9450f955e763a4d301645ab11201834d8a0ccc'>4e9450f9 ^
36e4e71e ^







78a7d762 ^
36e4e71e ^

78a7d762 ^
36e4e71e ^










































306c76d8 ^















36e4e71e ^





b6aed5ef ^
36e4e71e ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105