diff --git a/Makefile b/Makefile deleted file mode 100644 index aa62957..0000000 --- a/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# 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 diff --git a/clean.sh b/clean.sh deleted file mode 100755 index c2be441..0000000 --- a/clean.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - - -rm -drv build -rm -drv dist -find . -name "*.egg*" -exec rm -drv {} \; -find . -name "*__pycache__*" -exec rm -drv {} \; - -exit 0