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.
 
 
 
 
 
 

33 lines
658 B

  1. # Filename: xxx.sh
  2. # Purpose: Build Bywater BASIC for Unix uwing GCC 4.8
  3. # Author: Howard Wulf, AF5NE
  4. # Date: 2015-01-29
  5. # Uasage: implementation defined
  6. # Example:
  7. # cd /sdcard/Download/BASIC/bwbasic3/
  8. # ash ./xxx.sh
  9. #
  10. # cleanup
  11. rm -f bwbasic
  12. rm -f *.o
  13. # normal compile
  14. gcc -o bwbasic -lm -ansi -pedantic -Wall -Werror bw*.c
  15. # On my system, I cannot execute the binary from the source folder.
  16. # So, I have to copy the binary to ~ which is
  17. # /data/data/com.pdaxrom.cctools/root/cctools/home/
  18. cp bwbasic ~/
  19. # cleanup
  20. rm -f bwbasic
  21. # make the binary executable
  22. chmod 764 ~/bwbasic
  23. # start exectuable
  24. ~/bwbasic
  25. # EOF