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
2025-06-29 15:50:06 +02:00

11 lines
239 B
Makefile

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