summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2010-07-28 08:32:40 +0000
committerTarmac <>2010-07-28 08:32:40 +0000
commit3187d555c43a2c8360244d7cfef06bb5bf786ad1 (patch)
treeb7276913f9763e0da9f8b2faf353bf72f5914279 /Makefile
parent0d32008ea944071b99dea5a88805d78736e5f21e (diff)
parent90ffbc240ffc68154816d2237dc04ea33f5066cb (diff)
Got the tree set for debian packaging.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile40
1 files changed, 0 insertions, 40 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 847da779f..000000000
--- a/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-venv=.nova-venv
-with_venv=tools/with_venv.sh
-
-build:
- # Nothing to do
-
-default_test_type:= $(shell if [ -e $(venv) ]; then echo venv; else echo system; fi)
-
-test: test-$(default_test_type)
-
-test-venv: $(venv)
- $(with_venv) python run_tests.py
-
-test-system:
- python run_tests.py
-
-clean:
- rm -rf _trial_temp
- rm -rf keys
- rm -rf instances
- rm -rf networks
- rm -f run_tests.err.log
-
-clean-all: clean
- rm -rf $(venv)
-
-MANIFEST.in:
- [ -d .bzr ] || (echo "Must be a bzr checkout" ; exit 1)
- bzr ls --kind=file -VR | while read f; do echo include "$$f"; done > $@
-
-sdist: MANIFEST.in
- python setup.py sdist
-
-$(venv):
- @echo "You need to install the Nova virtualenv before you can run this."
- @echo ""
- @echo "Please run tools/install_venv.py"
- @exit 1
-
-.PHONY: MANIFEST.in