aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToni Uhlig <Toni.Uhlig@tq-group.com>2017-12-01 14:43:19 +0100
committerToni Uhlig <Toni.Uhlig@tq-group.com>2017-12-01 14:43:19 +0100
commitc0523ebbe05e4add1c6872310a40d3390c89694c (patch)
tree5b69b73cd72f923ef85aa6921faa71f33bd10816
parent042ce2d0b743a4caaf3923db0df6d9a9afe9c022 (diff)
autogen.sh does not need libtoolize (not a shared library), INSTALL renamed to README
-rw-r--r--INSTALL46
-rw-r--r--[l---------]README47
-rwxr-xr-xautogen.sh1
3 files changed, 46 insertions, 48 deletions
diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index d0ec659..0000000
--- a/INSTALL
+++ /dev/null
@@ -1,46 +0,0 @@
-Howto Build
-===========
-
-Basically there are four different possible build configurations which are (more or less) well-tested.
-All builds require a full C++2011 toolchain! Microsoft's VisualStudio2013 won't work since it's not fully C++2011 compatible!
-You can either use a Linux toolchain with g++/clang or a mingw64-g++ toolchain for Windows builds.
-
-Linux:
- - non-GUI build
- - GUI build linked against a static wxWidgets library
- - GUI build linked against a dynamic wxWidgets library
-Windows:
- - GUI build linked against a static wxWidgets library
-
-Untested:
- - Windows non-GUI build
- - Windows GUI build with a dynamic wxWidgets library
-
-
-Build with a shipped (static) wxWidgets version
-===============================================
-
-1. Run `build_wxwidgets.sh [target-triplet]`
- where [target-triplet] should look like cpu-vendor-os e.g. i686-w64-mingw32 if you are building for Windows
- Example: `./build_wxwidgets.sh i686-w64-mingw32`
-
-2. Run `./autogen.sh`
- and add an additional `--help` to set some package options.
- Example: `./autogen.sh --disable-gui`
-
-3. Run `make` or `make -j4` or `make -j4 V=1`
- The argument -jN specifies the number of parallel build jobs.
- The argument V=1 specifies a verbose compilation mode.
-
-
-Build with a dynamic wxWidgets version
-======================================
-
-1. Run `./autogen.sh --enable-host-wxwidgets`
- Build a dynamic linked version.
-
-2. Run `make` (see above)
-
-
-For a successful host-wxwudgets build you'll need an extra package.
-`./autogen.sh --enable-host-wxwidgets`: libwxbase3.0-dev
diff --git a/README b/README
index 842bf0e..d0ec659 120000..100644
--- a/README
+++ b/README
@@ -1 +1,46 @@
-INSTALL \ No newline at end of file
+Howto Build
+===========
+
+Basically there are four different possible build configurations which are (more or less) well-tested.
+All builds require a full C++2011 toolchain! Microsoft's VisualStudio2013 won't work since it's not fully C++2011 compatible!
+You can either use a Linux toolchain with g++/clang or a mingw64-g++ toolchain for Windows builds.
+
+Linux:
+ - non-GUI build
+ - GUI build linked against a static wxWidgets library
+ - GUI build linked against a dynamic wxWidgets library
+Windows:
+ - GUI build linked against a static wxWidgets library
+
+Untested:
+ - Windows non-GUI build
+ - Windows GUI build with a dynamic wxWidgets library
+
+
+Build with a shipped (static) wxWidgets version
+===============================================
+
+1. Run `build_wxwidgets.sh [target-triplet]`
+ where [target-triplet] should look like cpu-vendor-os e.g. i686-w64-mingw32 if you are building for Windows
+ Example: `./build_wxwidgets.sh i686-w64-mingw32`
+
+2. Run `./autogen.sh`
+ and add an additional `--help` to set some package options.
+ Example: `./autogen.sh --disable-gui`
+
+3. Run `make` or `make -j4` or `make -j4 V=1`
+ The argument -jN specifies the number of parallel build jobs.
+ The argument V=1 specifies a verbose compilation mode.
+
+
+Build with a dynamic wxWidgets version
+======================================
+
+1. Run `./autogen.sh --enable-host-wxwidgets`
+ Build a dynamic linked version.
+
+2. Run `make` (see above)
+
+
+For a successful host-wxwudgets build you'll need an extra package.
+`./autogen.sh --enable-host-wxwidgets`: libwxbase3.0-dev
diff --git a/autogen.sh b/autogen.sh
index b9383da..f2b5774 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -2,7 +2,6 @@
test -f ./Makefile && make distclean
-libtoolize --force
aclocal
autoheader
automake --force-missing --add-missing