From cc8f8210b56207d0615863bb2f42276d6cd0607e Mon Sep 17 00:00:00 2001 From: nub31 Date: Wed, 13 Aug 2025 00:41:41 +0200 Subject: [PATCH] Fix makefile --- example/makefile | 4 ++-- example/src/c.nub | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 example/src/c.nub diff --git a/example/makefile b/example/makefile index a6d80b4..e9f1434 100644 --- a/example/makefile +++ b/example/makefile @@ -1,8 +1,8 @@ CFLAGS = -g -bin/out: src/main.nub src/c.nub +bin/out: src/main.nub dotnet build ../src/compiler/NubLang.CLI/NubLang.CLI.csproj -c Release - ../src/compiler/NubLang.CLI/bin/Release/net9.0/nubc src/main.nub src/c.nub + ../src/compiler/NubLang.CLI/bin/Release/net9.0/nubc src/main.nub run: bin/out bin/out diff --git a/example/src/c.nub b/example/src/c.nub deleted file mode 100644 index 67309ca..0000000 --- a/example/src/c.nub +++ /dev/null @@ -1,2 +0,0 @@ -extern func printf(fmt: cstring, arg: i64): void -extern func puts(fmt: cstring)