Skip to content

Commit 5c27540

Browse files
authored
Merge pull request #43 from jottinger/42-spelling
Fix spelling error in README
2 parents 08033d8 + bbcbe5c commit 5c27540

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# ---> Go
22
# Binaries for programs and plugins
33
*.exe
4-
*.exe~
54
*.dll
65
*.so
76
*.dylib
@@ -29,3 +28,10 @@ l.txt
2928
ll.txt
3029
notes.txt
3130

31+
# ignore IDEA configuration
32+
*.iml
33+
.idea/
34+
35+
# ignore temp files generated by other editors
36+
*~
37+

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ In keeping with the look and feel of the late 70s and early 80s the battlefield
1212
## **basicbot's programming language,**
1313
**basicbots** uses a subset of *BASIC*. Why *BASIC*? Well, because why not? *BASIC* is not a completely dead language, but for those of us old enough this should take you back in time to the versions around the late 1970s and early 1980s. If not, that is okay as well. You can get a sample of what it was like to live in the 8-bit world when computers were simpler.
1414

15+
## Building
16+
17+
To build basicbots, simply call `make` - this will build Linux and Windows binaries. The OSX port has not been prepared yet.
18+
1519
## basicbots is my first Open Source project.
1620

1721
I expect it will take time for me to learn the ins and outs of managing an Open Source project. I ask for your help, in all areas of the project.
1822

19-
- Fixxing spelling errors and typos.
23+
- Fixing spelling errors and typos.
2024
- Creating documentation.
2125
- Documenting the code.
2226
- Squashing bugs.
@@ -69,4 +73,4 @@ Team2 w:00114 t:00003 l:00104 p:00315
6973

7074
- [Updates](docs/UPDATES.md)
7175

72-
I am on twitter as @misterunix and @basicbots my email address is misterunix@gmail.com. Reachout with any questions.
76+
I am on twitter as @misterunix and @basicbots my email address is misterunix@gmail.com. Reachout with any questions.

makefile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
all : build
22

3-
docs:
3+
docs:
44
gomarkdoc -u > documentation/basicbots-dev.md
55

66
build:
7-
mkdir basicbots
8-
mkdir basicbots/docs
9-
mkdir basicbots/robots
10-
mkdir basicbots/binaries
7+
mkdir -p basicbots
8+
mkdir -p basicbots/docs
9+
mkdir -p basicbots/robots
10+
mkdir -p basicbots/binaries
1111
cp documentation/BASIC.md basicbots/docs/
1212
cp documentation/BASICBOTS.md basicbots/docs/
1313
cp robots/* basicbots/robots
14+
env GOOD=osx GOARCH=amd64 go build -o basicbots/binaries/basicbots
1415
env GOOS=linux GOARCH=amd64 go build -o basicbots/binaries/basicbots64-linux
1516
env CGO_ENABLED=1 GOOS=windows GOARCH=amd64 go build -o basicbots/binaries/basicbots64-windows.exe
1617
env CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 go build -o basicbots/binaries/basicbots64-darwin
1718
tar cvfz latest/linux64-0.0.2a.tgz basicbots/docs/ basicbots/robots/ basicbots/binaries/basicbots64-linux
1819
zip latest/windows64-0.0.2a.zip basicbots/robots/* basicbots/docs/* basicbots/binaries/basicbots64-windows.exe
19-
rm -rf basicbots
20+
rm -rf basicbots

0 commit comments

Comments
 (0)