It appears Solaris's cc is ignoring the signedness of bitfield types.
[xiph/unicode.git] / win32sdk / clean_libs_mak.bat
blob5b6b95d039ac9356700a97caa7f38e0bd081c5a1
1 @echo off
2 rem $Id: clean_libs_mak.bat,v 1.3 2001/10/20 17:38:22 cwolf Exp $
3 rem
4 rem Deletes auto generated makefiles in ogg/win32 and vorbis/win32
5 rem
6 if ."%SRCROOT%"==."" goto notset
7 del %SRCROOT%\ogg\win32\*.mak 2> nul
8 del %SRCROOT%\ogg\win32\*.dep 2> nul
9 del %SRCROOT%\vorbis\win32\*.mak 2> nul
10 del %SRCROOT%\vorbis\win32\*.dep 2> nul
11 goto done
13 :notset
14 echo **** SRCROOT must be set
15 goto done
17 :done