summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9f3c9a59d62e177257ad58e8c3835ce1064b8db5 (plain)
1
2
3
4
5
6
7
8
9
10
.PHONY: fmt

write-elf: main.c write_elf.c registers.h instructions.h
	gcc -static-pie main.c -o write-elf

tiny: tiny.s
	nasm -f elf64 tiny.s

fmt: main.c write_elf.c registers.h instructions.h
	clang-format -i $^