From 0bd5940a47e377149fa87ec3ab79056e94794e9b Mon Sep 17 00:00:00 2001 From: Richard Thier Date: Sat, 14 Sep 2024 12:54:22 +0200 Subject: [PATCH] added main.c and makefile --- main.c | 10 ++++++++++ makefile | 4 ++++ 2 files changed, 14 insertions(+) create mode 100644 main.c create mode 100644 makefile diff --git a/main.c b/main.c new file mode 100644 index 0000000..627f18c --- /dev/null +++ b/main.c @@ -0,0 +1,10 @@ +#include +#include "hamt.h" +#include "turbolist/turbolist.h" +#include "engine/slc.h" + +int main(int argc, const char **argv) { + // TODO: Implement CLI frontend... + puts("TODO: Implement CLI frontend..."); + return 0; +} diff --git a/makefile b/makefile new file mode 100644 index 0000000..469932c --- /dev/null +++ b/makefile @@ -0,0 +1,4 @@ +debug: + gcc -g hamt.c main.c -o main +release: + gcc -O2 hamt.c main.c -o main