summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2015-08-29 09:35:00 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2015-09-21 00:05:48 (GMT)
commitbf49b8958d245ac47ebc6e35b2acf4b886702ec6 (patch)
treeacd8845afc53d22bbae6fe3855de81cc85e9e544
parenta65e97c541d9fd6a881771b89fa7190bdfc49650 (diff)
downloadmxe-bf49b8958d245ac47ebc6e35b2acf4b886702ec6.zip
mxe-bf49b8958d245ac47ebc6e35b2acf4b886702ec6.tar.gz
mxe-bf49b8958d245ac47ebc6e35b2acf4b886702ec6.tar.bz2
add README.md and LICENSE files
-rw-r--r--LICENSE31
-rw-r--r--README.md37
2 files changed, 68 insertions, 0 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..92aa9a6
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,31 @@
+The MIT License (MIT)
+
+Copyright (c) 2007-2015
+
+ * Volker Diels-Grabsch
+ * Mark Brand
+ * Tony Theodore
+ * Martin Gerhardy
+ * Tiancheng "Timothy" Gu
+ * ... and many other contributors
+
+(contact via the project mailing list)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..c9bde62
--- /dev/null
+++ b/README.md
@@ -0,0 +1,37 @@
+# MXE (M cross environment)
+
+[![Travis build][travis-badge]][travis-page]
+[![License][license-badge]][license-page]
+
+[travis-page]: https://travis-ci.org/mxe/mxe
+[travis-badge]: https://travis-ci.org/mxe/mxe.png
+[license-page]: LICENSE
+[license-badge]: http://img.shields.io/badge/License-MIT-brightgreen.png
+
+MXE (M cross environment) is a Makefile that compiles a cross
+compiler and cross compiles many free libraries such as SDL and
+Qt. Thus, it provides a nice cross compiling environment for
+various target platforms, which:
+
+ * is designed to run on any Unix system
+ * is easy to adapt and to extend
+ * builds many free libraries in addition to the cross compiler
+ * can also build just a subset of the packages, and automatically builds their dependencies
+ * downloads all needed packages and verifies them by their checksums
+ * is able to update the version numbers of all packages automatically
+ * directly uses source packages, thus ensuring the whole build mechanism is transparent
+ * allows inter-package and intra-package parallel builds whenever possible
+ * integrates well with autotools, cmake, qmake, and hand-written makefiles.
+ * has been in continuous development since 2007 and is used by several projects
+
+## Supported Toolchains
+
+ * Runtime: MinGW-w64
+ * Host Triplet:
+ - `i686-w64-mingw32`
+ - `x86_64-w64-mingw32`
+ * Packages:
+ - static
+ - shared
+
+Shared support in MXE was just added in early February, 2014.