1:
2
3CC='cc -DT_LINUX -Wall -O3 -s -lm -lossaudio'
4sed -e 's/\/dev\/dsp/\/dev\/audio/g' <sbagen.c >temp.c || exit 1
5sed -e 's/sys\/soundcard.h/soundcard.h/g' <temp.c >temp2.c || exit 1
6
7$CC temp2.c -o sbagen || exit 1
8rm -f temp.c temp2.c
9
10