add README.md and LICENSE files

This commit is contained in:
Boris Nagaev 2015-08-29 12:35:00 +03:00
parent a65e97c541
commit bf49b8958d
2 changed files with 68 additions and 0 deletions

31
LICENSE Normal file
View File

@ -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.

37
README.md Normal file
View File

@ -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.