From 80eae8cc49fb9d17c56e1d084c5c4374160738e3 Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Tue, 27 Dec 2016 13:41:22 +0100 Subject: [PATCH] remove some old (unused/duplicate) files (#3975) --- sync/cov.sh | 9 --------- util/Makefile | 12 ------------ util/cov.sh | 9 --------- 3 files changed, 30 deletions(-) delete mode 100755 sync/cov.sh delete mode 100644 util/Makefile delete mode 100755 util/cov.sh diff --git a/sync/cov.sh b/sync/cov.sh deleted file mode 100755 index 5e95542fa..000000000 --- a/sync/cov.sh +++ /dev/null @@ -1,9 +0,0 @@ -if ! type kcov > /dev/null; then - echo "Install kcov first (details inside this file). Aborting." - exit 1 -fi - -cargo test --no-run || exit $? -mkdir -p target/coverage -kcov --exclude-pattern ~/.multirust,rocksdb,secp256k1,sync/src/tests --include-pattern sync/src --verify target/coverage target/debug/ethsync* -xdg-open target/coverage/index.html diff --git a/util/Makefile b/util/Makefile deleted file mode 100644 index ad3c5230f..000000000 --- a/util/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# Makefile for cross-compilation -IOS_ARCHS = i386-apple-ios x86_64-apple-ios armv7-apple-ios armv7s-apple-ios aarch64-apple-ios -IOS_LIB = libethcore_util.a - -ios: $(IOS_LIB) - -.PHONY: $(IOS_ARCHS) -$(IOS_ARCHS): %: - multirust run ios cargo build --target $@ - -$(IOS_LIB): $(IOS_ARCHS) - lipo -create -output $@ $(foreach arch,$(IOS_ARCHS),$(wildcard target/$(arch)/debug/$(IOS_LIB))) diff --git a/util/cov.sh b/util/cov.sh deleted file mode 100755 index 19aa3b892..000000000 --- a/util/cov.sh +++ /dev/null @@ -1,9 +0,0 @@ -if ! type kcov > /dev/null; then - echo "Install kcov first (details inside this file). Aborting." - exit 1 -fi - -cargo test --no-run || exit $? -mkdir -p target/coverage -kcov --exclude-pattern ~/.multirust,rocksdb,secp256k1 --include-pattern src --verify target/coverage target/debug/ethcore_util* -xdg-open target/coverage/index.html