update makefile to include colour printing, correctly dispose of all files and use the basename for the project name

This commit is contained in:
2025-02-12 17:18:16 +01:00
parent 61abc20ed7
commit 7bbff87bfd
3 changed files with 35 additions and 27 deletions

15
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "(dbg) compile linux-x86_64",
"type": "shell",
"command": "DEBUG=1 make linux-x86_64",
},
{
"label": "(dbg) compile win-x86_64",
"type": "shell",
"command": "DEBUG=1 make win-x86_64",
}
]
}