Restructure and refactor makefiles

- Allow rebuilds without rebuilding everything
 By detecting changes everywhere that matters (flags, objects and headers).
- Add progress bar
- Fully clean everything when clean goal is used
This commit is contained in:
CTCaer
2025-12-31 14:19:56 +02:00
parent 800bec2ec2
commit 1de3206e79
7 changed files with 192 additions and 150 deletions

View File

@@ -6,7 +6,7 @@
#include <module.h>
#include <gfx_utils.h>
void _modInit(void *moduleConfig, bdkParams_t bp)
void mod_entry(void *moduleConfig, bdkParams_t bp)
{
memcpy(&gfx_con, bp->gfxCon, sizeof(gfx_con_t));
memcpy(&gfx_ctxt, bp->gfxCtx, sizeof(gfx_ctxt_t));