Skip to content

Commit

Permalink
Prepare for 1.0.2 release as tcbasic
Browse files Browse the repository at this point in the history
  • Loading branch information
tcort committed Feb 22, 2015
1 parent e8b9e5e commit 4acdf07
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
23 changes: 15 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# tcbasic

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

## Current Status

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

## Requirements

* [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/), ...).
* [flex](http://www.gnu.org/software/flex/) - buildtime
* [bison](http://www.gnu.org/software/bison/) - buildtime
* [diff](http://www.gnu.org/software/diffutils/) - buildtime (running unit tests)
* [sed](http://www.gnu.org/software/sed/) - buildtime (running unit tests)
* [autoconf](http://gnu.org/software/autoconf) - development time
* [automake](http://gnu.org/software/makeconf) - development time
The following software is used for developing tcbasic:

* [cc](http://www.gnu.org/software/gcc/)
* [make](http://www.gnu.org/software/make/)
* [sh](http://www.gnu.org/software/bash/)
* [sed](http://www.gnu.org/software/sed/)
* [diff](http://www.gnu.org/software/diffutils/)
* [flex](http://www.gnu.org/software/flex/)
* [bison](http://www.gnu.org/software/bison/)
* [autoconf](http://gnu.org/software/autoconf)
* [automake](http://gnu.org/software/makeconf)

tcbasic does not depend on any external libraries other than
[libc](http://www.gnu.org/software/libc/)

## Building

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dnl You should have received a copy of the GNU General Public License
dnl along with this program. If not, see <http://www.gnu.org/licenses/>.

AC_PREREQ(2.59)
AC_INIT([tcbasic], [1.0.0], [[email protected]])
AC_INIT([tcbasic], [1.0.2], [[email protected]])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AM_SILENT_RULES([yes])

Expand Down
2 changes: 1 addition & 1 deletion tcbasic.1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
.\"
.\" You should have received a copy of the GNU General Public License
.\" along with this program. If not, see <http://www.gnu.org/licenses/>.
.TH TCB "1" "February 2015" "edgar 1.0.0" "User Commands"
.TH TCB "1" "February 2015" "tcbasic 1.0.2" "User Commands"
.SH NAME
tcbasic \- a small BASIC Interpreter written in C
.SH SYNOPSIS
Expand Down

0 comments on commit 4acdf07

Please sign in to comment.