This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
checkerboard/Makefile
2025-12-11 02:56:15 +09:00

11 lines
109 B
Makefile

all: build run
build:
nasm -f elf64 main.s -o main.o
ld main.o -o gen
run:
./gen
.PHONY: all build run