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