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. ...@@ -32,26 +32,26 @@ Built add-ons are created in the packages directory.
### Building the extension for Mozilla Firefox, Google Chrome (Chromium) and Opera: ### 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 ``` shell
cmake . cmake .
make make
``` ```
* For compilation on **OS X** execute: For compilation on **OS X** execute:
``` shell ``` shell
cmake -DTARGET_ARCH=x86_64 . cmake -DTARGET_ARCH=x86_64 .
(cmake -DTARGET_ARCH=i386 .) (cmake -DTARGET_ARCH=i386 .)
make make
``` ```
* For compilation on **BSD**-flavoured systems (tested on FreeBSD): For compilation on **BSD**-flavoured systems (tested on FreeBSD):
``` shell ``` shell
cmake . cmake .
gmake gmake
``` ```
* To create a Windows version on Linux with MinGW32: To create a **Windows** version on Linux using MinGW32:
``` shell ``` shell
make -f Makefile.libwin make -f Makefile.libwin
make -f Makefile.win make -f Makefile.win
...@@ -69,7 +69,7 @@ make -f Makefile.main clean ...@@ -69,7 +69,7 @@ make -f Makefile.main clean
### Building the extension for Safari: ### Building the extension for Safari:
* On **OS X** execute: On **OS X** execute:
``` shell ``` shell
cmake -DTARGET_ARCH=x86_64 . cmake -DTARGET_ARCH=x86_64 .
(cmake -DTARGET_ARCH=i386 .) (cmake -DTARGET_ARCH=i386 .)
... ...
......