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 30b5c1702a ...
2025-06-29 16:08:03 +02:00

10 lines
222 B
Makefile

CFLAGS = -Wall -Werror -Wextra -g
example:
dotnet run --project ../src/compiler/CLI/CLI.csproj src/main.nub src/c.nub
mkdir -p bin
gcc $(CFLAGS) -o bin/out lib/libruntime_x64.a bin-int/out.a
clean:
rm -r bin-int bin