# If you ever want to uninstall ALUT, this should do it:
cd
su
test -d src/freealut-* && ( cd src/freealut-* ; make uninstall )
rm -f /usr/local/bin/freealut-config \
/usr/local/lib/pgkconfig/freealut.pc \
/usr/local/lib/libfreealut.*
ldconfig
exit
find ~/src -maxdepth 1 -type d -name "freealut-*" -exec rm -r {} \;
rm -f ~/installed/freealut-*.tar.*
# If you ever want to uninstall OpenAL, this should do it:
cd
su
test -d src/openal-* && ( cd src/openal-* ; make uninstall )
rm -f /usr/local/bin/openal-config /
/usr/local/lib/pgkconfig/openal.pc /
/usr/local/lib/libopenal.*
ldconfig
exit
find ~/src -maxdepth 1 -type d -name "openal-*" -exec rm -r {} \;
rm -f ~/installed/openal-*.tar.*