Commit f3a79c31 authored by Hanno Schlichting's avatar Hanno Schlichting

add a `make clean`

parent b0a6d174
......@@ -3,6 +3,7 @@ bin/
build/
develop-eggs/
eggs/
parts/
python/
*.pyc
*.egg
......
......@@ -13,6 +13,7 @@ endif
PYTHON_DOWNLOAD ?= http://www.python.org/ftp/python/$(PYTHON_MINOR)/Python-$(PYTHON_MINOR).tgz
.PHONY: all build test
BUILD_DIRS = $(PYTHON_PATH) bin build develop-eggs eggs parts
all: build
......@@ -30,5 +31,8 @@ $(PYTHON_PATH):
build: $(PYTHON_PATH)
$(PYTHON_PATH)/bin/python dev.py
clean:
rm -rf $(BUILD_DIRS)
test:
$(HERE)/bin/test -v
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment