euscan-ng/Makefile
Alfred Wingate ec7399752c
Remove the djano webservice in its entirety
Signed-off-by: Alfred Wingate <parona@protonmail.com>
2023-11-15 23:30:06 +02:00

35 lines
434 B
Makefile

# TODO: rename binary to euscan-ng
BIN = euscan
.PHONY:
all
clean
install-user
install-user-test
install
uninstall distclean
all:
@echo "Did nothing."
@echo "To do user installation use target: install-user"
install-user:
python setup.py -v install --user
install-user-test:
pip install --user .'[test]'
install: install-user
clean:
sh clean.sh
uninstall:
pip uninstall -v -y $(BIN)
distclean: clean uninstall