Source code of Windows XP (NT5)
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.

21 lines
406 B

  1. @setlocal
  2. @echo off
  3. rem Fix this path
  4. set VS_DIRECTORY=e:\c\Program Files\Microsoft Visual Studio
  5. set path=%path%;%VS_DIRECTORY%\VB98;%VS_DIRECTORY%\Common\MSDev98\Bin
  6. md Bins
  7. cd Bins
  8. rem del /q *
  9. echo Build Authdatabase.dll...
  10. cd ..\AuthDatabase
  11. VB6 /m AuthDatabase.vbp
  12. copy Authdatabase.dll ..\Bins
  13. echo Build ProductionTool.exe...
  14. cd ..\UI
  15. VB6 /m ProductionTool.vbp
  16. copy ProductionTool.exe ..\Bins