mirror of
https://github.com/opnsense/tools.git
synced 2026-04-25 16:16:57 -04:00
10 lines
156 B
Bash
Executable file
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
|