Remove github reference in README.md
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# This Makefile was generated using MakeGen v1.3.8 made by Tim Håkansson
|
# This Makefile was generated using MakeGen v1.3.9 made by Tim Håkansson
|
||||||
# and is licensed under MIT. Full source of the project can be found at
|
# and is licensed under MIT. Full source of the project can be found at
|
||||||
# https://github.com/Thraix/MakeGen
|
# https://gitea.timha.se/Thraix/MakeGen
|
||||||
CC=@g++
|
CC=@g++
|
||||||
CO=@g++ -o
|
CO=@g++ -o
|
||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
|
|||||||
@@ -16,10 +16,7 @@ After MakeGen is installed it will always be able to generate a Makefile (even w
|
|||||||
However it will not compile your code if those programs don't exist.
|
However it will not compile your code if those programs don't exist.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
To install MakeGen make sure you have the dependencies listed above.
|
To install MakeGen make sure you have the dependencies listed above and clone this repository.
|
||||||
Then clone this repository:
|
|
||||||
|
|
||||||
git clone git@github.com:Thraix/MakeGen.git
|
|
||||||
|
|
||||||
Then navigate into the MakeGen folder (`cd MakeGen`) and run:
|
Then navigate into the MakeGen folder (`cd MakeGen`) and run:
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -19,5 +19,5 @@
|
|||||||
<srcdir>src/</srcdir>
|
<srcdir>src/</srcdir>
|
||||||
</configuration>
|
</configuration>
|
||||||
<target>Release</target>
|
<target>Release</target>
|
||||||
<version>v1.3.8</version>
|
<version>v1.3.9</version>
|
||||||
</makegen>
|
</makegen>
|
||||||
|
|||||||
+1
-1
@@ -14,7 +14,7 @@
|
|||||||
// Release, should be backwards compatible with any minor version
|
// Release, should be backwards compatible with any minor version
|
||||||
#define MAKEGEN_VERSION_RELEASE 3
|
#define MAKEGEN_VERSION_RELEASE 3
|
||||||
// Minor changes, generally bug fixes
|
// Minor changes, generally bug fixes
|
||||||
#define MAKEGEN_VERSION_MINOR 8
|
#define MAKEGEN_VERSION_MINOR 9
|
||||||
|
|
||||||
#define MAKEGEN_VERSION ("v" STR(MAKEGEN_VERSION_MAJOR) "." STR(MAKEGEN_VERSION_RELEASE) "." STR(MAKEGEN_VERSION_MINOR))
|
#define MAKEGEN_VERSION ("v" STR(MAKEGEN_VERSION_MAJOR) "." STR(MAKEGEN_VERSION_RELEASE) "." STR(MAKEGEN_VERSION_MINOR))
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -20,7 +20,7 @@ void Makefile::Save(ConfigFile& conf, unsigned int flags)
|
|||||||
outputFile << "# This Makefile was generated using MakeGen " << MAKEGEN_VERSION << " made by Tim Håkansson"
|
outputFile << "# This Makefile was generated using MakeGen " << MAKEGEN_VERSION << " made by Tim Håkansson"
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
outputFile << "# and is licensed under MIT. Full source of the project can be found at" << std::endl;
|
outputFile << "# and is licensed under MIT. Full source of the project can be found at" << std::endl;
|
||||||
outputFile << "# https://github.com/Thraix/MakeGen" << std::endl;
|
outputFile << "# https://gitea.timha.se/Thraix/MakeGen" << std::endl;
|
||||||
outputFile << "CC=@g++" << std::endl;
|
outputFile << "CC=@g++" << std::endl;
|
||||||
std::string outputtype = conf.GetSettingString(ConfigSetting::OutputType);
|
std::string outputtype = conf.GetSettingString(ConfigSetting::OutputType);
|
||||||
if (outputtype != "executable")
|
if (outputtype != "executable")
|
||||||
|
|||||||
Reference in New Issue
Block a user