summaryrefslogtreecommitdiffstats
path: root/doc/index.html
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2009-06-03 13:01:05 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2009-06-03 13:01:05 (GMT)
commitea8a21e12e15208d34f0b3acfa12bb03f3c213f8 (patch)
treefa2ad027b71bb5b5a158ad832a2afc51e840455f /doc/index.html
parent5374e69174e79923605853b65caa2b3a805e065a (diff)
downloadmxe-ea8a21e12e15208d34f0b3acfa12bb03f3c213f8.zip
mxe-ea8a21e12e15208d34f0b3acfa12bb03f3c213f8.tar.gz
mxe-ea8a21e12e15208d34f0b3acfa12bb03f3c213f8.tar.bz2
introduce placeholders for version number and target in the tutorial
Diffstat (limited to 'doc/index.html')
-rw-r--r--doc/index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/index.html b/doc/index.html
index c51a21b..0f342fc 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -177,8 +177,8 @@
<a href="#latest-release">latest release</a>
and unpack the tarball:
</p>
- <pre>wget http://www.profv.de/mingw_cross_env/mingw_cross_env-2.5.tar.gz
-tar -xzvf mingw_cross_env-2.5.tar.gz</pre>
+ <pre>wget http://www.profv.de/mingw_cross_env/mingw_cross_env-<span class="version">X.Y</span>.tar.gz
+tar -xzvf mingw_cross_env-<span class="version">X.Y</span>.tar.gz</pre>
<p>
If you don't mind installing it in your home directory,
@@ -204,7 +204,7 @@ exit</pre>
but feel free to use any other directory if you like.
</p>
<pre>su
-mv mingw_cross_env-2.5 /opt/mingw
+mv mingw_cross_env-<span class="version">X.Y</span> /opt/mingw
exit</pre>
<p>
@@ -275,12 +275,12 @@ AR=$(CROSS)ar</pre>
You may have to add a few others, depending on your project.
Then, all you have to do is type this:
</p>
- <pre>make CROSS="i386-mingw32msvc-"</pre>
+ <pre>make CROSS="<span class="target">i386-mingw32msvc</span>-"</pre>
<p>
If you're using configure, all you have to do is:
</p>
- <pre>./configure --host="i386-mingw32msvc"
+ <pre>./configure --host="<span class="target">i386-mingw32msvc</span>"
make</pre>
<p>
That's it!