From dd033a78961ad9662d1a83068604c6ec39dcb3f4 Mon Sep 17 00:00:00 2001 From: Santiago Lema Date: Sun, 28 Sep 2025 20:22:12 -0300 Subject: [PATCH] gitignore keeps empty _build folder --- .gitignore | 2 ++ Makefile | 4 +++- _build/.gitkeep | 0 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 _build/.gitkeep diff --git a/.gitignore b/.gitignore index 96586cd..47c82b7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ +_build/* +!_build/.gitkeep objects*/ diff --git a/Makefile b/Makefile index 795d992..9ee3af6 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,9 @@ # The name of the binary. NAME = DumBer -TARGET_DIR = . +TARGET_DIR = "./_build" + + # The type of binary, must be one of: # APP: Application diff --git a/_build/.gitkeep b/_build/.gitkeep new file mode 100644 index 0000000..e69de29