No commit message authored by Karel Slaný's avatar Karel Slaný
No commit message
......@@ -32,26 +32,26 @@ Built add-ons are created in the packages directory.
### Building the extension for Mozilla Firefox, Google Chrome (Chromium) and Opera:
* For compilation on **Linux**-based systems run:
For compilation on **Linux**-based systems run:
``` shell
cmake .
make
```
* For compilation on **OS X** execute:
For compilation on **OS X** execute:
``` shell
cmake -DTARGET_ARCH=x86_64 .
(cmake -DTARGET_ARCH=i386 .)
make
```
* For compilation on **BSD**-flavoured systems (tested on FreeBSD):
For compilation on **BSD**-flavoured systems (tested on FreeBSD):
``` shell
cmake .
gmake
```
* To create a Windows version on Linux with MinGW32:
To create a **Windows** version on Linux using MinGW32:
``` shell
make -f Makefile.libwin
make -f Makefile.win
......@@ -69,7 +69,7 @@ make -f Makefile.main clean
### Building the extension for Safari:
* On **OS X** execute:
On **OS X** execute:
``` shell
cmake -DTARGET_ARCH=x86_64 .
(cmake -DTARGET_ARCH=i386 .)
......
......