home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: WPS_PM / WPS_PM.zip / xfld085s.zip / cleanup.cmd < prev    next >
OS/2 REXX Batch file  |  1999-03-15  |  1KB  |  53 lines

  1. @echo off
  2. REM cleanup all compiled XFolder files
  3.  
  4. ECHO This will delete all .DLL, .RES, .OBJ, .MSG files in
  5. ECHO the source directories. Press any key to continue or Ctrl+C to stop.
  6. PAUSE
  7.  
  8. del 001\xfldr001.dll
  9. del 001\xfldr001.obj
  10. del 001\xfldr001.res
  11. del 001\xfldr001.msg
  12.  
  13. del 049_de\xfldr049.dll
  14. del 049_de\xfldr049.obj
  15. del 049_de\xfldr049.res
  16. del 049_de\xfldr049.msg
  17.  
  18. del helpers\*.obj
  19.  
  20. del main\*.dll
  21. del main\*.obj
  22. del main\*.res
  23.  
  24. REM INF/HLP files
  25.  
  26. ECHO Do you also wish to delete the INF/HLP files?
  27. ECHO Press any key to continue or Ctrl+C to stop.
  28. PAUSE
  29.  
  30. del 001\help.001\xfldr001.hlp
  31. del 001\inf.001\xfldr001.inf
  32.  
  33. del 049_de\help.049\xfldr049.hlp
  34. del 049_de\inf.049\xfldr049.inf
  35.  
  36. REM IPF source files
  37.  
  38. ECHO Do you also wish to delete all the IPF source files?
  39. ECHO Press any key to continue or Ctrl+C to stop.
  40. PAUSE
  41.  
  42. del 001\inf.001\xfldr001.ipf
  43. del 001\inf.001\*.bmp
  44. del 001\help.001\xfldr001.ipf
  45. del 001\help.001\*.bmp
  46.  
  47. del 049_de\inf.049\xfldr049.ipf
  48. del 049_de\inf.049\*.bmp
  49. del 049_de\help.049\xfldr049.ipf
  50. del 049_de\help.049\*.bmp
  51.  
  52.  
  53.