summaryrefslogtreecommitdiff
path: root/bin/Prepare
diff options
context:
space:
mode:
Diffstat (limited to 'bin/Prepare')
-rwxr-xr-xbin/Prepare17
1 files changed, 0 insertions, 17 deletions
diff --git a/bin/Prepare b/bin/Prepare
deleted file mode 100755
index 871c03a..0000000
--- a/bin/Prepare
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-set -x
-set -e
-
-sh ./autogen.sh
-
-CFLAGS="-O0 -g -Wall --coverage" ./configure
-
-# NOTES:
-
-# Coverage data matches the source files more closely if you do not optimize.
-
-# --coverage
-# This option is used to compile and link code instrumented for coverage
-# analysis. The option is a synonym for -fprofile-arcs -ftest-coverage
-# (when compiling) and -lgcov (when linking).