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.

Makefile.ncu 3.5 KiB

v2.20pl2 Patch level 2 release by Jon B. Volkoff, 11 October 1997 LIST OF PATCHES TO 2.20: bwb_cmd.c Fixed calling stack level logic in RETURN statement to prevent erroneous "RETURN without GOSUB" messages. bwb_cnd.c bwb_stc.c Changed continuation condition for WHILE, ELSEIF, and LOOP UNTIL to be != FALSE, not == TRUE. More in line with common commercial BASIC implementations. bwb_mth.c Fixed initialization in VAL function so that old results are not later returned as values. bwb_var.c Added parenthesis level checking to dim_getparams. Using multi-level expressions as array subscripts was causing the program to bomb. bwx_iqc.c bwx_tty.c bwb_mes.h Added second copyright notice. bwb_dio.c bwb_str.c Added support for strings longer than 255 characters. bwb_prn.c Disabled tab expansion and print width checks when not printing to a file. bwb_inp.c Fixed LINE INPUT file reads to accommodate strings of length MAXSTRINGSIZE. bwx_ncu.h bwx_ncu.c New files. Code for UNIX ncurses interface, compliments of L.C. Benschop, Eindhoven, The Netherlands. Makefile.ncu New files. Sample makefile for ncurses implementation. bwbasic.h Revised defines for MININTSIZE and MAXINTSIZE from 16-bit to 32-bit limits. Revised define for MAXSTRINGSIZE from 255 to 5000 characters. Changed string length from unsigned char to unsigned int to support strings longer than 255 characters. Added support for new ncurses package. Revised VERSION define to reflect above changes. To implement these patches simply replace the old versions of the above source files with the new ones and remake bwbasic.
3 years ago
v2.20pl2 Patch level 2 release by Jon B. Volkoff, 11 October 1997 LIST OF PATCHES TO 2.20: bwb_cmd.c Fixed calling stack level logic in RETURN statement to prevent erroneous "RETURN without GOSUB" messages. bwb_cnd.c bwb_stc.c Changed continuation condition for WHILE, ELSEIF, and LOOP UNTIL to be != FALSE, not == TRUE. More in line with common commercial BASIC implementations. bwb_mth.c Fixed initialization in VAL function so that old results are not later returned as values. bwb_var.c Added parenthesis level checking to dim_getparams. Using multi-level expressions as array subscripts was causing the program to bomb. bwx_iqc.c bwx_tty.c bwb_mes.h Added second copyright notice. bwb_dio.c bwb_str.c Added support for strings longer than 255 characters. bwb_prn.c Disabled tab expansion and print width checks when not printing to a file. bwb_inp.c Fixed LINE INPUT file reads to accommodate strings of length MAXSTRINGSIZE. bwx_ncu.h bwx_ncu.c New files. Code for UNIX ncurses interface, compliments of L.C. Benschop, Eindhoven, The Netherlands. Makefile.ncu New files. Sample makefile for ncurses implementation. bwbasic.h Revised defines for MININTSIZE and MAXINTSIZE from 16-bit to 32-bit limits. Revised define for MAXSTRINGSIZE from 255 to 5000 characters. Changed string length from unsigned char to unsigned int to support strings longer than 255 characters. Added support for new ncurses package. Revised VERSION define to reflect above changes. To implement these patches simply replace the old versions of the above source files with the new ones and remake bwbasic.
3 years ago
v2.20pl2 Patch level 2 release by Jon B. Volkoff, 11 October 1997 LIST OF PATCHES TO 2.20: bwb_cmd.c Fixed calling stack level logic in RETURN statement to prevent erroneous "RETURN without GOSUB" messages. bwb_cnd.c bwb_stc.c Changed continuation condition for WHILE, ELSEIF, and LOOP UNTIL to be != FALSE, not == TRUE. More in line with common commercial BASIC implementations. bwb_mth.c Fixed initialization in VAL function so that old results are not later returned as values. bwb_var.c Added parenthesis level checking to dim_getparams. Using multi-level expressions as array subscripts was causing the program to bomb. bwx_iqc.c bwx_tty.c bwb_mes.h Added second copyright notice. bwb_dio.c bwb_str.c Added support for strings longer than 255 characters. bwb_prn.c Disabled tab expansion and print width checks when not printing to a file. bwb_inp.c Fixed LINE INPUT file reads to accommodate strings of length MAXSTRINGSIZE. bwx_ncu.h bwx_ncu.c New files. Code for UNIX ncurses interface, compliments of L.C. Benschop, Eindhoven, The Netherlands. Makefile.ncu New files. Sample makefile for ncurses implementation. bwbasic.h Revised defines for MININTSIZE and MAXINTSIZE from 16-bit to 32-bit limits. Revised define for MAXSTRINGSIZE from 255 to 5000 characters. Changed string length from unsigned char to unsigned int to support strings longer than 255 characters. Added support for new ncurses package. Revised VERSION define to reflect above changes. To implement these patches simply replace the old versions of the above source files with the new ones and remake bwbasic.
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. # Generated automatically from Makefile.in by configure.
  2. # Unix Makefile for Bywater BASIC Interpreter
  3. ##---------------------------------------------------------------##
  4. ## NOTE: Modifications marked "JBV" were made by Jon B. Volkoff, ##
  5. ## 10/1995 (eidetics@cerf.net). ##
  6. ##---------------------------------------------------------------##
  7. srcdir = .
  8. VPATH = .
  9. CC = cc
  10. INSTALL = cp
  11. INSTALL_PROGRAM = $(INSTALL)
  12. INSTALL_DATA = $(INSTALL)
  13. DEFS = -DHAVE_STRING=1 -DHAVE_STDLIB=1 -DHAVE_RAISE=1 -DHAVE_UNISTD=1
  14. # Revised by JBV
  15. #CFLAGS = -O
  16. CFLAGS = -g -ansi
  17. # Revised by JBV
  18. #LDFLAGS = -s
  19. prefix = /usr/local
  20. exec_prefix = $(prefix)
  21. bindir = $(exec_prefix)/bin
  22. SHELL = /bin/sh
  23. #CFILES= bwbasic.c bwb_int.c bwb_tbl.c bwb_cmd.c bwb_prn.c\
  24. # bwb_exp.c bwb_var.c bwb_inp.c bwb_fnc.c bwb_cnd.c\
  25. # bwb_ops.c bwb_dio.c bwb_str.c bwb_elx.c bwb_mth.c\
  26. # bwb_stc.c bwb_par.c bwx_tty.c
  27. CFILES= bwbasic.c bwb_int.c bwb_tbl.c bwb_cmd.c bwb_prn.c\
  28. bwb_exp.c bwb_var.c bwb_inp.c bwb_fnc.c bwb_cnd.c\
  29. bwb_ops.c bwb_dio.c bwb_str.c bwb_elx.c bwb_mth.c\
  30. bwb_stc.c bwb_par.c bwx_ncu.c
  31. #OFILES= bwbasic.o bwb_int.o bwb_tbl.o bwb_cmd.o bwb_prn.o\
  32. # bwb_exp.o bwb_var.o bwb_inp.o bwb_fnc.o bwb_cnd.o\
  33. # bwb_ops.o bwb_dio.o bwb_str.o bwb_elx.o bwb_mth.o\
  34. # bwb_stc.o bwb_par.o bwx_tty.o
  35. OFILES= bwbasic.o bwb_int.o bwb_tbl.o bwb_cmd.o bwb_prn.o\
  36. bwb_exp.o bwb_var.o bwb_inp.o bwb_fnc.o bwb_cnd.o\
  37. bwb_ops.o bwb_dio.o bwb_str.o bwb_elx.o bwb_mth.o\
  38. bwb_stc.o bwb_par.o bwx_ncu.o
  39. #HFILES= bwbasic.h bwb_mes.h bwx_tty.h
  40. HFILES= bwbasic.h bwb_mes.h bwx_ncu.h
  41. MISCFILES= COPYING INSTALL Makefile.in README bwbasic.doc\
  42. bwbasic.mak configure.in configure makefile.qcl\
  43. bwb_tcc.c bwx_iqc.c bwx_iqc.h bwx_ncu.c bwx_ncu.h
  44. TESTFILES= \
  45. abs.bas assign.bas callfunc.bas callsub.bas chain1.bas\
  46. chain2.bas dataread.bas deffn.bas dim.bas doloop.bas\
  47. dowhile.bas elseif.bas end.bas err.bas fncallfn.bas\
  48. fornext.bas function.bas gosub.bas gotolabl.bas ifline.bas\
  49. index.txt input.bas lof.bas loopuntl.bas main.bas\
  50. mlifthen.bas on.bas onerr.bas onerrlbl.bas ongosub.bas\
  51. opentest.bas option.bas putget.bas random.bas selcase.bas\
  52. snglfunc.bas stop.bas term.bas whilwend.bas width.bas\
  53. writeinp.bas pascaltr.bas
  54. DISTFILES= $(CFILES) $(HFILES) $(MISCFILES)
  55. # Revised by JBV
  56. #all: bwbasic
  57. all: bwbasic renum
  58. bwbasic: $(OFILES)
  59. $(CC) $(OFILES) -lm -lcurses -o $@ $(LDFLAGS)
  60. # Added by JBV
  61. renum:
  62. $(CC) renum.c -o renum
  63. $(OFILES): $(HFILES)
  64. .c.o:
  65. $(CC) -c $(CPPFLAGS) -I$(srcdir) $(DEFS) $(CFLAGS) $<
  66. install: all
  67. $(INSTALL_PROGRAM) bwbasic $(bindir)/bwbasic
  68. uninstall:
  69. rm -f $(bindir)/bwbasic
  70. Makefile: Makefile.in config.status
  71. $(SHELL) config.status
  72. config.status: configure
  73. $(SHELL) config.status --recheck
  74. configure: configure.in
  75. cd $(srcdir); autoconf
  76. TAGS: $(CFILES)
  77. etags $(CFILES)
  78. clean:
  79. rm -f *.o bwbasic core
  80. mostlyclean: clean
  81. distclean: clean
  82. rm -f Makefile config.status
  83. realclean: distclean
  84. rm -f TAGS
  85. # Version number changed from 2.20 to 2.40 by PE
  86. dist: $(DISTFILES)
  87. echo bwbasic-2.40 > .fname
  88. rm -rf `cat .fname`
  89. mkdir `cat .fname`
  90. ln $(DISTFILES) `cat .fname`
  91. mkdir `cat .fname`/bwbtest
  92. cd bwbtest; ln $(TESTFILES) ../`cat ../.fname`/bwbtest
  93. tar czhf `cat .fname`.tar.gz `cat .fname`
  94. rm -rf `cat .fname` .fname
  95. # Prevent GNU make v3 from overflowing arg limit on SysV.
  96. .NOEXPORT: