From 850f324c7b0b21a31c309df9dd30043b52b5a950 Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Thu, 29 May 2025 22:57:21 +0200 Subject: [PATCH] init --- test/Makefile | 4 ++++ test/hello.c | 1 + 2 files changed, 5 insertions(+) create mode 100644 test/Makefile create mode 100644 test/hello.c diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..b436e3c --- /dev/null +++ b/test/Makefile @@ -0,0 +1,4 @@ +all: hello.o + +hello.o: hello.c + clang hello.c -target x86_64-pc-windows-gnu -c diff --git a/test/hello.c b/test/hello.c new file mode 100644 index 0000000..398ffda --- /dev/null +++ b/test/hello.c @@ -0,0 +1 @@ +void mainCRTStartup() {}