diff options
author | pommicket <leonardomtenenbaum@gmail.com> | 2016-01-31 17:16:19 -0500 |
---|---|---|
committer | pommicket <leonardomtenenbaum@gmail.com> | 2016-01-31 17:16:19 -0500 |
commit | a4df9c8862ab218c4a098c4c7f0a39ef8335d35a (patch) | |
tree | eaf880224df63f084e5df8d1b289d3a68e374d77 | |
parent | 37c08f8b54918d0f562e09cba96ec418a983d12b (diff) |
Updated NameGeneratorEvolve
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r--[-rwxr-xr-x] | build/GNULinux/NameGeneratorEvolve (renamed from build/GNULinux/NameLearn) | bin | 9744 -> 9744 bytes | |||
-rw-r--r-- | build/Windows/NameGeneratorEvolve.exe (renamed from build/Windows/NameLearn.exe) | bin | 33974 -> 33974 bytes | |||
-rw-r--r-- | src/Makefile | 6 |
4 files changed, 5 insertions, 5 deletions
@@ -10,13 +10,13 @@ Executables can be found in the build directory, but if you want to compile the **Windows** ```bash cd build/Windows -NameLearn +NameGeneratorEvolve ``` **GNU/Linux** ```bash cd build/GNULinux -./NameLearn +./NameGeneratorEvolve ``` Mac OS X is not supported. diff --git a/build/GNULinux/NameLearn b/build/GNULinux/NameGeneratorEvolve Binary files differindex 2b104bf..2b104bf 100755..100644 --- a/build/GNULinux/NameLearn +++ b/build/GNULinux/NameGeneratorEvolve diff --git a/build/Windows/NameLearn.exe b/build/Windows/NameGeneratorEvolve.exe Binary files differindex 82c222e..f4d2ace 100644 --- a/build/Windows/NameLearn.exe +++ b/build/Windows/NameGeneratorEvolve.exe diff --git a/src/Makefile b/src/Makefile index 12989ee..ad38697 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,6 +1,6 @@ CC=gcc -default: NameLearn +default: NameGeneratorEvolve -NameLearn: main.c - $(CC) -o NameLearn main.c +NameGeneratorEvolve: main.c + $(CC) -o NameGeneratorEvolve main.c |