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
999 B

  1. @echo off
  2. rem Filename: DMCWIN32.CMD
  3. rem Purpose: Build Bywater BASIC for MS-WINDOWS (32-bit) using Digital Mars Compiler Version 8.42n
  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 DMCWIN32.CMD
  10. rem
  11. rem This is the location of DMC.EXE
  12. rem
  13. set BINDIR=C:\DOS\dm\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. dmc.exe > DMCWIN32.TXT
  26. dmc.exe -mn -A89 -oBWBASIC.EXE -DHAVE_MSDOS=1 bwbasic.c bwb_cmd.c bwb_cnd.c bwb_dio.c bwb_exp.c bwb_fnc.c bwb_inp.c bwb_int.c bwb_prn.c bwb_stc.c bwb_str.c bwb_tbl.c bwb_var.c bwd_cmd.c bwd_fun.c bwx_tty.c >> DMCWIN32.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