This makes it easier for me to build a version of ledger with optimizations, one for coverage analysis, one for profiling, etc.
12 lines
236 B
Bash
Executable file
12 lines
236 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
tools/myacprep --opt
|
|
tools/myacprep --gprof
|
|
tools/myacprep --gcov
|
|
tools/myacprep
|
|
|
|
touch ~/Products/ledger-gcov/config.status
|
|
touch ~/Products/ledger-gprof/config.status
|
|
touch ~/Products/ledger-opt/touch config.status
|