ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
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.
 
 
 
 
 
 

36 lines
837 B

  1. @echo off
  2. rem Filename: BCCDOS16.BAT
  3. rem Purpose: Build Bywater BASIC for MS-DOS (16-bit) using Borland C++ Version 3.1
  4. rem Author: Howard Wulf, AF5NE
  5. rem Date: 2015-01-29
  6. rem Uasage: implementation defined
  7. rem Example:
  8. rem cd \sdcard\Download\BASIC\bwbasic3\
  9. rem BCCDOS16.BAT
  10. rem
  11. rem This is the location of BCC.EXE
  12. rem
  13. set BINDIR=C:\DOS\BC31\BIN
  14. rem
  15. rem Cleanup before compile
  16. rem
  17. DEL BW*.EXE 1> NUL 2> NUL
  18. DEL BW*.OBJ 1> NUL 2> NUL
  19. DEL BW*.MAP 1> NUL 2> NUL
  20. rem
  21. rem Compile
  22. rem
  23. set OLDPATH=%PATH%
  24. set PATH=%BINDIR%;%PATH%
  25. bcc.exe > BCCDOS16.TXT
  26. bcc.exe -mh -eBWBASIC.EXE -DHAVE_MSDOS=1 -Y bw*.c >> BCCDOS16.TXT
  27. set PATH=%OLDPATH%
  28. set OLDPATH=
  29. set BINDIR=
  30. rem
  31. rem Cleanup after compile
  32. rem
  33. DEL BW*.OBJ 1> NUL 2> NUL
  34. DEL BW*.MAP 1> NUL 2> NUL
  35. rem EOF