Add a top-level Makefile

So we have single entry points to install/check everything
This commit is contained in:
Javier Goizueta
2016-02-19 11:57:13 +01:00
parent fe167efca5
commit 1ce0a206c7
5 changed files with 53 additions and 19 deletions

11
python/Makefile Normal file
View File

@@ -0,0 +1,11 @@
# Install the package (needs root privileges)
install:
pip install ./crankshaft --upgrade
# Test from source code
test:
(cd crankshaft && nosetests test/)
# Test currently installed package
testinstalled:
nosetests crankshaft/test/