NOTES
VSCode Makefile handling
It’s a little fiddly to get it to properly handle Makefiles for tabs/spaces if you normally use spaces for indentation in your projects. The following should be aded into the settings.json.
"[makefile]": {
"editor.tabSize": 2,
"editor.insertSpaces": false,
"editor.detectIndentation": false
},