23 lines
363 B
Makefile
23 lines
363 B
Makefile
|
|
help:
|
|
cat INSTALL.md
|
|
make --print-targets
|
|
|
|
code/bin/activate:
|
|
python3 -m venv code
|
|
|
|
python_dependencies: code/bin/activate
|
|
|
|
|
|
setup_dev: python_dependencies
|
|
cd code; bin/pip3 install git+https://github.com/MieuxVoter/majority-judgment-library-python
|
|
|
|
|
|
clean:
|
|
echo "TODO"
|
|
|
|
tests:
|
|
cd samples;./tests.sh
|
|
|
|
.PHONY: clean setup_dev python_dependencies help tests
|