Skip to content

Commit e8b9e5e

Browse files
committed
Rename to tcbasic to avoid conflict with exist tcb package.
1 parent ea82e8c commit e8b9e5e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+74
-74
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ scanner.c
2121
scanner.h
2222
scanner.plist
2323
stamp-h1
24-
tcb
25-
tcb*.tar.gz
24+
tcbasic
25+
tcbasic*.tar.gz
2626
test-driver
2727
test-suite.log
2828
*.out

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
See https://github.com/tcort/tcb/graphs/contributors
1+
See https://github.com/tcort/tcbasic/graphs/contributors

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
See https://github.com/tcort/tcb/commits/master
1+
See https://github.com/tcort/tcbasic/commits/master

Makefile.am

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# tcb - a small BASIC Interpreter written in C.
1+
# tcbasic - a small BASIC Interpreter written in C.
22
# Copyright (C) 2015 Thomas Cort <linuxgeek@gmail.com>
33
#
44
# This program is free software: you can redistribute it and/or modify
@@ -20,9 +20,9 @@ AM_YFLAGS = -d
2020
scanner.h: scanner.l
2121
$(LEX) --header-file=$@ -o /dev/null $(top_srcdir)/scanner.l
2222

23-
bin_PROGRAMS = tcb
23+
bin_PROGRAMS = tcbasic
2424

25-
tcb_SOURCES = \
25+
tcbasic_SOURCES = \
2626
scanner.l \
2727
parser.y \
2828
driver.c \
@@ -47,9 +47,9 @@ tcb_SOURCES = \
4747
var.h var.c \
4848
var_list.h var_list.c
4949

50-
tcb_LDADD = @LEXLIB@
50+
tcbasic_LDADD = @LEXLIB@
5151

52-
man_MANS = tcb.1
52+
man_MANS = tcbasic.1
5353

5454
TESTS = \
5555
abs.sh \
@@ -60,7 +60,7 @@ TESTS = \
6060
TESTS_ENVIRONMENT = \
6161
DIFF=$(DIFF) \
6262
SED=$(SED) \
63-
TCB=$(top_builddir)/tcb \
63+
TCB=$(top_builddir)/tcbasic \
6464
TOP_SRCDIR=$(top_srcdir) \
6565
TCB_IN_DIR=$(top_srcdir) \
6666
TCB_OUT_DIR=$(top_builddir) \

README.md

Lines changed: 4 additions & 4 deletions

abs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# tcb - a small BASIC Interpreter written in C.
2+
# tcbasic - a small BASIC Interpreter written in C.
33
# Copyright (C) 2015 Thomas Cort <linuxgeek@gmail.com>
44
#
55
# This program is free software: you can redistribute it and/or modify

addop.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
tcb - a small BASIC Interpreter written in C.
2+
tcbasic - a small BASIC Interpreter written in C.
33
Copyright (C) 2015 Thomas Cort <linuxgeek@gmail.com>
44
55
This program is free software: you can redistribute it and/or modify

addop.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
tcb - a small BASIC Interpreter written in C.
2+
tcbasic - a small BASIC Interpreter written in C.
33
Copyright (C) 2015 Thomas Cort <linuxgeek@gmail.com>
44
55
This program is free software: you can redistribute it and/or modify

buffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
tcb - a small BASIC Interpreter written in C.
2+
tcbasic - a small BASIC Interpreter written in C.
33
Copyright (C) 2015 Thomas Cort <linuxgeek@gmail.com>
44
55
This program is free software: you can redistribute it and/or modify

buffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
tcb - a small BASIC Interpreter written in C.
2+
tcbasic - a small BASIC Interpreter written in C.
33
Copyright (C) 2015 Thomas Cort <linuxgeek@gmail.com>
44
55
This program is free software: you can redistribute it and/or modify

0 commit comments

Comments
 (0)