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 058853ef02 ...
2025-06-27 16:32:40 +02:00

9 lines
173 B
Makefile

OBJECTS := $(shell dotnet run --project ../src/compiler/CLI/CLI.csproj src/main.nub src/c.nub)
example:
mkdir -p bin
gcc -o bin/out $(OBJECTS)
clean:
rm -r bin bin-int