summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-08-23 17:23:58 +0100
committerLars Wirzenius <liw@liw.fi>2011-08-23 17:23:58 +0100
commitb27e90fa60473f06315b8479fcd9b0ce59374666 (patch)
tree1c34704449367a3ce6424116181d9fca9fe1e9c2
parent18d6acaefce11db36874e20f4915236daae92c11 (diff)
downloadobnam-b27e90fa60473f06315b8479fcd9b0ce59374666.tar.gz
Remove the Makefile as it is now in the way.
-rw-r--r--Makefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 92c89838..00000000
--- a/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-PYTHON = python
-
-prefix = /usr/local
-bindir = $(prefix)/bin
-
-all: _obnam.so obnam.1 obnam-benchmark.1
-
-_obnam.so: _obnammodule.c
- if $(PYTHON) setup.py build > setup.log 2>&1; then \
- rm setup.log; else cat setup.log; exit 1; fi
- cp build/lib*/*.so .
- rm -rf build
-
-obnam.1: obnam.1.in
- ./obnam --generate-manpage=obnam.1.in > obnam.1
-
-obnam-benchmark.1: obnam-benchmark.1.in obnam-benchmark
- ./obnam-benchmark --generate-manpage=obnam-benchmark.1.in \
- > obnam-benchmark.1
-
-fast-check:
- python -m CoverageTestRunner --ignore-missing-from=without-tests
- rm .coverage
-
-check: fast-check
- python blackboxtest
-
-network-tests:
- ./test-sftpfs
- OBNAM_TEST_SFTP_ROOT=yes OBNAM_TEST_SFTP_REPOSITORY=yes ./blackboxtest
-
-clean:
- rm -f _obnam.so obnamlib/*.pyc obnamlib/plugins/*.pyc test-plugins/*.pyc
- rm -f blackboxtest.log blackboxtest-obnam.log obnam.prof obnam.1
- rm -f obnam-benchmark.1
- rm -rf build