Skip to content

Commit 1ee5c82

Browse files
committed
Fixed README
1 parent 9e7e552 commit 1ee5c82

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

unitttest/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22

33
To build the unit tests, execute:
44

5-
cd unittest
6-
gcc -O unittest.c -o unittest
5+
cd unittest
6+
gcc -O unittest.c -o unittest
77

88
(Or if you need to make sure there are no warnings:)
99

10-
gcc -Wall -Wstrict-prototypes -Wshorten-64-to-32 -O unittest.c -o unittest
10+
gcc -Wall -Wstrict-prototypes -Wshorten-64-to-32 -O unittest.c -o unittest
1111

12-
To execute the tests, simply execute 'unittest' with no arguments.
12+
To execute the tests, simply execute:
13+
14+
./unittest

utility/README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,20 @@
33
This directory contains a Mapcode encoding/decoding utility.
44
To build the original Mapcode tool, execute:
55

6-
gcc -O mapcode.cpp -o mapcode
6+
gcc -O mapcode.cpp -o mapcode
77

88
(Or if you need to make sure there are no warnings:)
99

10-
gcc -Wall -Wstrict-prototypes -Wshorten-64-to-32 -O mapcode.cpp -o mapcode
10+
gcc -Wall -Wstrict-prototypes -Wshorten-64-to-32 -O mapcode.cpp -o mapcode
11+
12+
For help, simply execute:
13+
14+
./mapcode
15+
16+
As an example, type:
17+
18+
./mapcode --decode NLD XX.XX
1119

12-
For help, simply execute the binary file 'mapcode' without no arguments.
1320
This tool provides a rather extensive command-line interface to encode and
1421
decode Mapcodes.
1522

0 commit comments

Comments
 (0)