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.

23 lines
296B

  1. @echo off
  2. if "%1"=="check" GOTO CHECK
  3. if "%1"=="clean" GOTO CLEAN
  4. copy /y Win32\config.h src\config.h
  5. copy /y Win32\unistd.h examples\unistd.h
  6. nmake -f Win32\Makefile.msvc
  7. goto END
  8. :CHECK
  9. nmake -f Win32\Makefile.msvc check
  10. goto END
  11. :CLEAN
  12. nmake -f Win32\Makefile.msvc clean
  13. goto END
  14. :END