Commit aafda80fdfb0dd2011205f9cb731aa5d42b163b9
Committed by
GitHub
1 parent
5e1ac670
Exists in
develop
Update README.md
Showing
1 changed file
with
18 additions
and
18 deletions
Show diff stats
README.md
... | ... | @@ -33,35 +33,35 @@ For the supported distributions get the install repositories and instructions fr |
33 | 33 | 1. Add the MinGW Repositories |
34 | 34 | |
35 | 35 | ``` |
36 | - $ sudo zypper ar obs://windows:mingw:win32 mingw32 | |
37 | - $ sudo zypper ar obs://windows:mingw:win64 mingw64 | |
38 | - $ sudo zypper ar obs://home:PerryWerneck:pw3270 pw3270 | |
39 | - $ sudo zypper ref | |
36 | + sudo zypper ar obs://windows:mingw:win32 mingw32 | |
37 | + sudo zypper ar obs://windows:mingw:win64 mingw64 | |
38 | + sudo zypper ar obs://home:PerryWerneck:pw3270 pw3270 | |
39 | + sudo zypper ref | |
40 | 40 | ``` |
41 | 41 | 2. Get sources from git |
42 | 42 | |
43 | 43 | ```shell |
44 | - $ git clone https://github.com/PerryWerneck/libipc3270.git ./libipc3270 | |
44 | + git clone https://github.com/PerryWerneck/libipc3270.git ./libipc3270 | |
45 | 45 | ``` |
46 | 46 | |
47 | 47 | 3. Install 64 bits cross compilers |
48 | 48 | |
49 | 49 | ```shell |
50 | - $ ./libipc3270/win/install-cross.sh --64 | |
50 | + ./libipc3270/win/install-cross.sh --64 | |
51 | 51 | ``` |
52 | 52 | |
53 | 53 | 3. Configure 64 bits build environment |
54 | 54 | |
55 | 55 | ```shell |
56 | - $ ./libipc3270/win/win-configure.sh --64 | |
56 | + ./libipc3270/win/win-configure.sh --64 | |
57 | 57 | ``` |
58 | 58 | |
59 | 59 | 4. Build |
60 | 60 | |
61 | 61 | ```shell |
62 | - $ cd libipc3270 | |
63 | - $ make clean | |
64 | - $ make all | |
62 | + cd libipc3270 | |
63 | + make clean | |
64 | + make all | |
65 | 65 | ``` |
66 | 66 | |
67 | 67 | ### Windows native with MSYS2 |
... | ... | @@ -71,20 +71,20 @@ For the supported distributions get the install repositories and instructions fr |
71 | 71 | 2. Get sources from git |
72 | 72 | |
73 | 73 | ```shell |
74 | - $ git clone https://github.com/PerryWerneck/libipc3270.git ./libipc3270 | |
74 | + git clone https://github.com/PerryWerneck/libipc3270.git ./libipc3270 | |
75 | 75 | ``` |
76 | 76 | |
77 | 77 | 4. Build library using the mingw shell |
78 | 78 | |
79 | 79 | ```shell |
80 | - $ cd libipc3270 | |
81 | - $ ./autogen.sh | |
82 | - $ make all | |
80 | + cd libipc3270 | |
81 | + ./autogen.sh | |
82 | + make all | |
83 | 83 | ``` |
84 | 84 | 5. Install |
85 | 85 | |
86 | 86 | ```shell |
87 | - $ make install | |
87 | + make install | |
88 | 88 | ``` |
89 | 89 | |
90 | 90 | ### Windows native with MSVC |
... | ... | @@ -98,13 +98,13 @@ For the supported distributions get the install repositories and instructions fr |
98 | 98 | 4. Get sources from git |
99 | 99 | |
100 | 100 | ```shell |
101 | - $ git clone https://github.com/PerryWerneck/libipc3270.git ./ipc3270 | |
101 | + git clone https://github.com/PerryWerneck/libipc3270.git ./ipc3270 | |
102 | 102 | ``` |
103 | 103 | |
104 | 104 | 5. Build and install |
105 | 105 | |
106 | 106 | ```shell |
107 | - $ cd ipc3270 | |
108 | - $ install.bat | |
107 | + cd ipc3270 | |
108 | + install.bat | |
109 | 109 | ``` |
110 | 110 | ... | ... |