From c8d7f2f5cb70081037a392df4f3f1e71e860990e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 21 Mar 2018 12:06:21 +0100 Subject: [PATCH] README: convert to reStructuredText --- README | 25 ------------------------- README.rst | 26 ++++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 25 deletions(-) delete mode 100644 README create mode 100644 README.rst diff --git a/README b/README deleted file mode 100644 index 3842e1a..0000000 --- a/README +++ /dev/null @@ -1,25 +0,0 @@ -This is meta-repository to build entire CeGCC toolchain. - -Clone this repository using: - -git clone git://gitorious.org/cegcc/cegcc-build.git - -To build: - -cd cegcc-build -git submodule init -git submodule update -cd build-arm-mingw32ce -./build-mingw32ce.sh --prefix=/where/to/install - -If you won't specify --prefix, it will install to cegcc-build/bindist-arm-mingw32ce/ . - - -To update afterwards: - -git pull -git submodule update -cd build -./build-mingw32ce.sh --prefix=/where/to/install - -(After update, to get 100% clean-room, you may want to rebuild everything from scratch.) diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..31959f7 --- /dev/null +++ b/README.rst @@ -0,0 +1,26 @@ +This is meta-repository to build entire CeGCC toolchain. + +Clone this repository using:: + + git clone git://gitorious.org/cegcc/cegcc-build.git + +To build:: + + cd cegcc-build + git submodule init + git submodule update + cd build-arm-mingw32ce + ./build-mingw32ce.sh --prefix=/where/to/install + +If you won't specify `--prefix`, it will install to +`cegcc-build/bindist-arm-mingw32ce/` + +To update afterwards:: + + git pull + git submodule update + cd build + ./build-mingw32ce.sh --prefix=/where/to/install + +(After update, to get 100% clean-room, you may want to rebuild +everything from scratch.)