Project is published.

This commit is contained in:
Schmidt Peter
2026-05-21 14:27:40 +02:00
committed by GitHub
commit 65e7c86424
24 changed files with 1793 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef MAKE_OPS_H
#define MAKE_OPS_H
#include "logger.h"
#define MAX_TARGETS 256
#define TARGET_NAME 128
typedef struct {
char names[MAX_TARGETS][TARGET_NAME];
int count;
} MakeTargets;
int make_parse_targets(const char *repo_path, MakeTargets *out);
int make_build(const char *repo_path, const char *target, Logger *log);
#endif /* MAKE_OPS_H */