Commit 7142902ab0ae6193755a072abe7f60f6f3aa6c1d

Authored by Perry Werneck
1 parent fd836c9f
Exists in master and in 1 other branch develop

Updating README.md

Showing 1 changed file with 12 additions and 7 deletions   Show diff stats
@@ -68,17 +68,21 @@ Compiling for Windows (With MSYS2) @@ -68,17 +68,21 @@ Compiling for Windows (With MSYS2)
68 68
69 3. Get sources from git 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 4. Build library using the mingw shell 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 5. Install 81 5. Install
80 82
81 - * make install 83 + ```shell
  84 + make install
  85 + ```
82 86
83 Compiling for Windows (With MSVC) 87 Compiling for Windows (With MSVC)
84 --------------------------------- 88 ---------------------------------
@@ -101,3 +105,4 @@ Compiling for Windows (With MSVC) @@ -101,3 +105,4 @@ Compiling for Windows (With MSVC)
101 cd ipc3270 105 cd ipc3270
102 install.bat 106 install.bat
103 ``` 107 ```
  108 +