ledger/tools/build.sh
2012-05-25 04:13:14 -05:00

12 lines
No EOL
523 B
Bash
Executable file

#!/bin/sh
flavor=$1
shift 1
time ( \
cd ~/src/ledger ; \
PATH=/usr/local/bin:/opt/local/bin:$PATH \
nice -n 20 ./acprep $flavor --debug --python --doxygen make "$@" && \
PATH=/usr/local/bin:/opt/local/bin:$PATH \
nice -n 20 ./acprep $flavor --debug --python --doxygen check "$@" \
)