From af1a57e63a453f4da937bd08a100849f1b5b66a9 Mon Sep 17 00:00:00 2001 From: KoroLion Date: Thu, 18 Jun 2020 15:43:13 +0300 Subject: [PATCH] Build update --- build.bat | 20 ++++++++++--------- build/.gitignore | 1 + .../function_images}/.gitignore | 0 .../multibrot_images}/.gitignore | 0 ...brot_imaging.pas => multibrot_imaging.pas} | 0 5 files changed, 12 insertions(+), 9 deletions(-) create mode 100644 build/.gitignore rename {function_images => build/function_images}/.gitignore (100%) rename {multibrot_images => build/multibrot_images}/.gitignore (100%) rename src/{mandelbrot_imaging.pas => multibrot_imaging.pas} (100%) diff --git a/build.bat b/build.bat index 0ba3890..25ab6ba 100644 --- a/build.bat +++ b/build.bat @@ -1,17 +1,19 @@ -rm multibrot_imaging.exe -rm function_imaging.exe -rm gui.exe +rm ./build/multibrot_imaging.exe +rm ./build/function_imaging.exe +rm ./build/gui.exe cd src - -fpc mandelbrot_imaging.pas -mv mandelbrot_imaging.exe ../multibrot_imaging.exe - +fpc multibrot_imaging.pas +mv multibrot_imaging.exe ../build/multibrot_imaging.exe fpc function_imaging.pas -mv function_imaging.exe ../function_imaging.exe +mv function_imaging.exe ../build/function_imaging.exe +rm *.o +rm *.ppu cd gui fpc gui.pas -mv gui.exe ../../gui.exe +mv gui.exe ../../build/gui.exe +rm *.o +rm *.ppu pause \ No newline at end of file diff --git a/build/.gitignore b/build/.gitignore new file mode 100644 index 0000000..adb36c8 --- /dev/null +++ b/build/.gitignore @@ -0,0 +1 @@ +*.exe \ No newline at end of file diff --git a/function_images/.gitignore b/build/function_images/.gitignore similarity index 100% rename from function_images/.gitignore rename to build/function_images/.gitignore diff --git a/multibrot_images/.gitignore b/build/multibrot_images/.gitignore similarity index 100% rename from multibrot_images/.gitignore rename to build/multibrot_images/.gitignore diff --git a/src/mandelbrot_imaging.pas b/src/multibrot_imaging.pas similarity index 100% rename from src/mandelbrot_imaging.pas rename to src/multibrot_imaging.pas