From c51d3fc70cee085d34734126e1f4f0aa0bcd6f81 Mon Sep 17 00:00:00 2001 From: Alfred Wingate Date: Tue, 14 Nov 2023 19:59:23 +0200 Subject: [PATCH] Remove helper scripts * These scripts will be broken after PEP517 transition. Signed-off-by: Alfred Wingate --- Makefile | 34 ---------------------------------- clean.sh | 9 --------- 2 files changed, 43 deletions(-) delete mode 100644 Makefile delete mode 100755 clean.sh 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