#!/bin/bash
# Compilation script for Sound Studio
# by Paul D. Sharpe
echo Building maxmin...
gcc -O2 maxmin.c -o maxmin
echo Building studio_mixer...
gcc s_mixer.c -o studio_mixer
echo Building studio_tool...
gcc s_tool.c -o studio_tool
echo Building reset_dsp.
echo You might want to put this in a directory in your path \(just in case\)...
gcc reset_dsp.c -o reset_dsp
strip reset_dsp
echo Locating wish:
whereis wish
echo Enter this location \(of wish\) in the file studio.
