Commit f3a79c31 authored by Hanno Schlichting's avatar Hanno Schlichting

add a `make clean`

parent b0a6d174
...@@ -3,6 +3,7 @@ bin/ ...@@ -3,6 +3,7 @@ bin/
build/ build/
develop-eggs/ develop-eggs/
eggs/ eggs/
parts/
python/ python/
*.pyc *.pyc
*.egg *.egg
......
...@@ -13,6 +13,7 @@ endif ...@@ -13,6 +13,7 @@ endif
PYTHON_DOWNLOAD ?= http://www.python.org/ftp/python/$(PYTHON_MINOR)/Python-$(PYTHON_MINOR).tgz PYTHON_DOWNLOAD ?= http://www.python.org/ftp/python/$(PYTHON_MINOR)/Python-$(PYTHON_MINOR).tgz
.PHONY: all build test .PHONY: all build test
BUILD_DIRS = $(PYTHON_PATH) bin build develop-eggs eggs parts
all: build all: build
...@@ -30,5 +31,8 @@ $(PYTHON_PATH): ...@@ -30,5 +31,8 @@ $(PYTHON_PATH):
build: $(PYTHON_PATH) build: $(PYTHON_PATH)
$(PYTHON_PATH)/bin/python dev.py $(PYTHON_PATH)/bin/python dev.py
clean:
rm -rf $(BUILD_DIRS)
test: test:
$(HERE)/bin/test -v $(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