Files
nub-lang/example/makefile
nub31 63d2c15202 ...
2025-06-29 17:40:17 +02:00

12 lines
219 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/Release/net9.0/nubc src/main.nub src/c.nub
run: bin/out
bin/out
clean:
rm -r bin-int bin