#!/bin/sh os="$(uname)" printf 'OS = %s\n' "$os" > os.mk if [ "$os" = "OpenBSD" ] then printf 'OSLIBS = -lossaudio\n' >> os.mk fi