From adc44cc66dde30efe0c9de6d81e065b5b20929d8 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Sun, 30 Jan 2011 14:59:02 +0100 Subject: [PATCH] Makefile: remove build_factory for build/mesabuild + add clean pyc/pyo in kivy package --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 02779e954..390237ad7 100644 --- a/Makefile +++ b/Makefile @@ -4,11 +4,9 @@ KIVY_DIR = kivy/ mesabuild: $(PYTHON) setup.py build_ext --inplace --define __MESAGL__ - $(PYTHON) setup.py build_factory build: $(PYTHON) setup.py build_ext --inplace - $(PYTHON) setup.py build_factory style: $(PYTHON) $(CHECKSCRIPT) $(KIVY_DIR) @@ -37,6 +35,8 @@ clean: -rm .coverage -rm .noseids -rm -rf kivy/tests/build + -find kivy -iname '*.pyc' -exec rm {} \; + -find kivy -iname '*.pyo' -exec rm {} \; distclean: clean -git clean -dxf