Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
157 B

  1. @echo off
  2. if "%1"=="" goto bld
  3. del *.dll
  4. del *.sym
  5. del *.map
  6. del *.obj
  7. del *.bak
  8. del *.res
  9. del *.lnk
  10. goto done
  11. :bld
  12. nmake -f makefile.dos
  13. :done