CleanWin32.bat 737 B

123456789101112131415161718192021222324252627282930
  1. @if NOT EXIST ..\include\xmlrpc-c\config.h goto DN1
  2. del ..\include\xmlrpc-c\config.h > nul
  3. @set TEMP1=%TEMP1% ..\include\xmlrpc-c\config.h
  4. :DN1
  5. @if NOT EXIST ..\xmlrpc_config.h goto DN2
  6. del ..\xmlrpc_config.h > nul
  7. @set TEMP1=%TEMP1% ..\xmlrpc_config.h
  8. :DN2
  9. @if NOT EXIST ..\transport_config.h goto DN3
  10. del ..\transport_config.h > nul
  11. @set TEMP1=%TEMP1% ..\transport_config.h
  12. :DN3
  13. @if NOT EXIST ..\version.h goto DN4
  14. del ..\version.h > nul
  15. @set TEMP1=%TEMP1% ..\version.h
  16. :DN4
  17. @if NOT EXIST ..\examples\config.h goto DN5
  18. del ..\examples\config.h > nul
  19. @set TEMP1=%TEMP1% ..\examples\config.h
  20. :DN5
  21. @if "%TEMP1%." == "." goto ALLDN
  22. @echo DELETED win32 header files.
  23. @echo %TEMP1%
  24. @goto END
  25. :ALLDN
  26. @echo NOne to DELETE ...
  27. @goto END
  28. :END