11 lines
134 B
Bash
Executable File
11 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
|
|
os="$(uname)"
|
|
|
|
printf 'OS = %s\n' "$os" > os.mk
|
|
|
|
if [ "$os" = "OpenBSD" ]
|
|
then
|
|
printf 'OSLIBS = -lossaudio\n' >> os.mk
|
|
fi
|