summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2011-11-25 17:38:41 +0100
committerMarcel Hellkamp <marc@gsites.de>2011-11-25 19:11:10 +0100
commit9cac674546bf52884334a4730f73c37f8cd0720a (patch)
treea4c1ff6c415406072fd8172d6ad9e5b797fe1cc1 /Makefile
parentfa2c8842f3503e522923df6a78c08f1ba5003173 (diff)
downloadbottle-9cac674546bf52884334a4730f73c37f8cd0720a.tar.gz
Removed 2to3 code and documentation.
Started to port the test cases.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 4 insertions, 18 deletions
diff --git a/Makefile b/Makefile
index 57faf69..3acce80 100644
--- a/Makefile
+++ b/Makefile
@@ -30,25 +30,11 @@ test_26:
test_27:
python2.7 test/testall.py
-test_31: 2to3
- python3.1 build/2to3/test/testall.py
+test_31:
+ python3.1 test/testall.py
-test_32: 2to3
- python3.2 build/2to3/test/testall.py
-
-# If anyne knows a better way, please tell me
-# This builds missig files in build/2to3 by either copying or 2to3-ing them.
-
-2to3: $(addprefix build/2to3/,$(ALLFILES))
-
-build/2to3/%.tpl: %.tpl
- mkdir -p `dirname $@`
- cp -a $< $@
-
-build/2to3/%.py: %.py
- mkdir -p `dirname $@`
- cp -a $< $@
- 2to3 -w $@ 1>/dev/null
+test_32:
+ python3.2 test/testall.py
clean:
find . -name '*.pyc' -exec rm -f {} +