aboutsummaryrefslogtreecommitdiff
path: root/src/target.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/target.c')
-rw-r--r--src/target.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/target.c b/src/target.c
new file mode 100644
index 0000000..7a96f1e
--- /dev/null
+++ b/src/target.c
@@ -0,0 +1,32 @@
+// Copyright (c) 2024, Marvin Borner <dev@marvinborner.de>
+// SPDX-License-Identifier: MIT
+
+#include <string.h>
+
+#include <log.h>
+#include <target.h>
+
+extern struct target_spec target_unblc;
+extern struct target_spec target_unbblc;
+
+static struct target_spec *targets[] = {
+ &target_unblc,
+ &target_unbblc,
+};
+
+void exec_target(char *name, struct bloc_parsed *bloc, FILE *file)
+{
+ int count = sizeof(targets) / sizeof(struct target_spec *);
+ for (int i = 0; i < count; i++) {
+ if (!strcmp(targets[i]->name, name)) {
+ targets[i]->exec(bloc, file);
+ return;
+ }
+ }
+
+ printf("available targets:\n");
+ for (int i = 0; i < count; i++)
+ printf(" %s\n", targets[i]->name);
+
+ fatal("unknown target %s\n", name);
+}