opnsense-tools/scripts/batch.sh
2017-08-05 13:07:27 +02:00

10 lines
156 B
Bash
Executable file

#!/bin/sh
# simple batch script for release builds
for FLAVOUR in OpenSSL LibreSSL; do
make clean-obj
make ${*} FLAVOUR=${FLAVOUR}
done
make clean-obj