Makefile now builds spintrum and installs it

This commit is contained in:
Samer Afach 2017-01-13 08:42:23 +01:00
parent 36656e46d2
commit 904cdf2b5a
1 changed files with 10 additions and 4 deletions

View File

@ -1,12 +1,18 @@
default:
chmod +x ./run_build.sh
chmod +x ./run_install.sh
./run_build.sh
./get_resources.sh
mkdir -p build
cd build && cmake .. && make
@echo "\033[0;37;44mYou can now copy the directory \033[0;37;40mspintrum\033[0;37;44m to your Python installation.\033[0m"
python3 setup.py sdist
@echo "\033[0;37;44mYou can now copy the directory \033[0;37;40mspintrum\033[0;37;44m to your Python installation.\033[0m"
@echo "\033[0;37;44mOr you can now use \033[0;37;40mmake install\033[0;37;44m to install to your Python3 using pip3\033[0m"
install:
./run_install.sh
pip3 install dist/spintrum* --upgrade
clean:
rm -rf 3rdparty
rm -rf dist
rm -rf build/*
rm -rf __pycache__