diff --git a/Makefile b/Makefile index 8318e29..9aa04cb 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# This Makefile was generated using MakeGen v1.3.3 made by Tim HÃ¥kansson +# This Makefile was generated using MakeGen v1.3.0 made by Tim HÃ¥kansson # and is licensed under MIT. Full source of the project can be found at # https://github.com/Thraix/MakeGen CC=@g++ diff --git a/README.md b/README.md index a4a77ed..71cc947 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,11 @@ Then navigate into the MakeGen folder (`cd MakeGen`) and run: sudo make install This will install MakeGen into `/usr/bin/makegen`. + If you want it to be installed in another place just run `make` and copy the file to where you want it. +**NOTE**: If you are installing from the latest commit, debug flags might be enabled for the project. As such, MakeGen can run slightly slower. To resolve this edit the Makefile and remove `-D_DEBUG -g3 -w` from the `CFLAGS` variable. This should not be a problem in released versions after version `1.3.0`. + ## Usage ### Config file In order to create a MakeGen configuration file use the following command: diff --git a/makegen.xml b/makegen.xml index e9b7ec8..f555d6d 100644 --- a/makegen.xml +++ b/makegen.xml @@ -21,5 +21,5 @@ src/ Debug - v1.3.3 + v1.3.0 diff --git a/src/Common.h b/src/Common.h index 2bdde24..5a91d5e 100755 --- a/src/Common.h +++ b/src/Common.h @@ -12,7 +12,7 @@ // Release, should be backwards compatible with any minor version #define MAKEGEN_VERSION_RELEASE 3 // Minor changes, generally bug fixes -#define MAKEGEN_VERSION_MINOR 3 +#define MAKEGEN_VERSION_MINOR 0 #define MAKEGEN_VERSION ("v" STR(MAKEGEN_VERSION_MAJOR) "." STR(MAKEGEN_VERSION_RELEASE) "." STR(MAKEGEN_VERSION_MINOR))