summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-03-21 04:36:03 +0100
committerhut <hut@lavabit.com>2010-03-21 04:36:03 +0100
commitfde932f216932009fc7cdb1b362012651c03468f (patch)
treeb4f19b2f01f199f44818fc6e4bfc994f83c097a6 /Makefile
parent75d98c66fffb40c8d84fbfd3fd0e469b2a2db3d2 (diff)
downloadranger-fde932f216932009fc7cdb1b362012651c03468f.tar.gz
make test: don't use "clean" before "test"
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 60de6487..83ee1e3d 100644
--- a/Makefile
+++ b/Makefile
@@ -72,7 +72,7 @@ cleandoc:
 clean:
 	find . -regex .\*.py[co]$ | xargs rm -f --
 
-test: clean
+test:
 	./all_tests.py
 
 edit:
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164