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/src/runtime/makefile
2025-08-18 21:25:03 +02:00

15 lines
296 B
Makefile

CC ?= x86_64-linux-gnu-gcc
TARGET ?= x64
CFLAGS = -Wall -Werror -Wextra -g
libruntime: build/runtime.o
$(CC) $(CFLAGS) -c targets/$(TARGET).s -o build/$(TARGET).o
build/runtime.o: runtime/runtime.c
mkdir -p build
$(CC) $(CFLAGS) -c runtime/runtime.c -o build/runtime.o
clean:
rm -r build