Commit 7142902ab0ae6193755a072abe7f60f6f3aa6c1d
1 parent
fd836c9f
Exists in
master
and in
1 other branch
Updating README.md
Showing
1 changed file
with
12 additions
and
7 deletions
Show diff stats
README.md
| ... | ... | @@ -68,17 +68,21 @@ Compiling for Windows (With MSYS2) |
| 68 | 68 | |
| 69 | 69 | 3. Get sources from git |
| 70 | 70 | |
| 71 | - * git clone https://github.com/PerryWerneck/libipc3270.git ./libipc3270 | |
| 72 | - | |
| 71 | + ```shell | |
| 72 | + git clone https://github.com/PerryWerneck/libipc3270.git ./libipc3270 | |
| 73 | + ``` | |
| 73 | 74 | 4. Build library using the mingw shell |
| 74 | 75 | |
| 75 | - * cd libipc3270 | |
| 76 | - * ./autogen.sh | |
| 77 | - * make all | |
| 78 | - | |
| 76 | + ```shell | |
| 77 | + cd libipc3270 | |
| 78 | + ./autogen.sh | |
| 79 | + make all | |
| 80 | + ``` | |
| 79 | 81 | 5. Install |
| 80 | 82 | |
| 81 | - * make install | |
| 83 | + ```shell | |
| 84 | + make install | |
| 85 | + ``` | |
| 82 | 86 | |
| 83 | 87 | Compiling for Windows (With MSVC) |
| 84 | 88 | --------------------------------- |
| ... | ... | @@ -101,3 +105,4 @@ Compiling for Windows (With MSVC) |
| 101 | 105 | cd ipc3270 |
| 102 | 106 | install.bat |
| 103 | 107 | ``` |
| 108 | + | ... | ... |