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)