Makefile now builds spintrum and installs it
This commit is contained in:
parent
36656e46d2
commit
904cdf2b5a
14
Makefile
14
Makefile
@ -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__
|
||||
|
Loading…
Reference in New Issue
Block a user