ctool/lang/Makefile
2025-04-08 01:15:51 +02:00

10 lines
139 B
Makefile

SRC := asem.s
OBJDIR := obj
OBJ := $(OBJDIR)/$(SRC:.s=.o)
all:
nasm -felf64 -g $(SRC) -o $(OBJ)
ld -o debug $(OBJ) -nostdlib -static