This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/example/makefile
nub31 2b40612f1b ...
2025-06-29 17:12:26 +02:00

14 lines
275 B
Makefile

CFLAGS = -g
bin/out: src/main.nub src/c.nub
dotnet build ../src/compiler/CLI/CLI.csproj -c Release
../src/compiler/CLI/bin/Debug/net9.0/nubc src/main.nub src/c.nub
mkdir -p bin
gcc $(CFLAGS) -o bin/out bin-int/out/out.a
run: bin/out
bin/out
clean:
rm -r bin-int bin