mirror of
https://github.com/opnsense/tools.git
synced 2026-06-01 07:17:20 -05:00
11 lines
156 B
Bash
Executable File
11 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
|