From a9b95c7dcbe19349c28494472be8e2872b021d3e Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Thu, 3 Sep 2020 09:32:48 -0500 Subject: [PATCH] Ignore "makefile", which can be used to customize the build e.g., I put content in ports/portname/makefile like ``` BOARD=boardname DEBUG=1 include Makefile ``` so that when I `make` it picks up these flags automatically. This change means that these files won't be picked up by `git status` or removed by `git clean`. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 03cd38f35d309..87dafe8cc3729 100644 --- a/.gitignore +++ b/.gitignore @@ -85,3 +85,7 @@ TAGS #################### .venv .env + +# Local customizations to the build +#################### +**/makefile