Skip to content

Commit 4acdf07

Browse files
committed
Prepare for 1.0.2 release as tcbasic
1 parent e8b9e5e commit 4acdf07

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

README.md

+15-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# tcbasic
22

33
tcbasic is a small [BASIC](http://en.wikipedia.org/wiki/BASIC) Interpreter
4-
written in C.
4+
written in [C](http://en.wikipedia.org/wiki/C_%28programming_language%29).
55

66
## Current Status
77

@@ -12,13 +12,20 @@ complete dialects of BASIC.
1212

1313
## Requirements
1414

15-
* [C compiler](http://www.gnu.org/software/gcc/) and standard build tools ([make](http://www.gnu.org/software/make/), [sh](http://www.gnu.org/software/bash/), ...).
16-
* [flex](http://www.gnu.org/software/flex/) - buildtime
17-
* [bison](http://www.gnu.org/software/bison/) - buildtime
18-
* [diff](http://www.gnu.org/software/diffutils/) - buildtime (running unit tests)
19-
* [sed](http://www.gnu.org/software/sed/) - buildtime (running unit tests)
20-
* [autoconf](http://gnu.org/software/autoconf) - development time
21-
* [automake](http://gnu.org/software/makeconf) - development time
15+
The following software is used for developing tcbasic:
16+
17+
* [cc](http://www.gnu.org/software/gcc/)
18+
* [make](http://www.gnu.org/software/make/)
19+
* [sh](http://www.gnu.org/software/bash/)
20+
* [sed](http://www.gnu.org/software/sed/)
21+
* [diff](http://www.gnu.org/software/diffutils/)
22+
* [flex](http://www.gnu.org/software/flex/)
23+
* [bison](http://www.gnu.org/software/bison/)
24+
* [autoconf](http://gnu.org/software/autoconf)
25+
* [automake](http://gnu.org/software/makeconf)
26+
27+
tcbasic does not depend on any external libraries other than
28+
[libc](http://www.gnu.org/software/libc/)
2229

2330
## Building
2431

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dnl You should have received a copy of the GNU General Public License
1616
dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
1717

1818
AC_PREREQ(2.59)
19-
AC_INIT([tcbasic], [1.0.0], [[email protected]])
19+
AC_INIT([tcbasic], [1.0.2], [[email protected]])
2020
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
2121
AM_SILENT_RULES([yes])
2222

tcbasic.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
.\"
1414
.\" You should have received a copy of the GNU General Public License
1515
.\" along with this program. If not, see <http://www.gnu.org/licenses/>.
16-
.TH TCB "1" "February 2015" "edgar 1.0.0" "User Commands"
16+
.TH TCB "1" "February 2015" "tcbasic 1.0.2" "User Commands"
1717
.SH NAME
1818
tcbasic \- a small BASIC Interpreter written in C
1919
.SH SYNOPSIS

0 commit comments

Comments
 (0)