summaryrefslogtreecommitdiff
path: root/Makefile
blob: 0c4ad45b34a832b7cd37175371d39777a5b0b22b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: fmt

all: fmt test.out

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

test.out: write-elf
	./write-elf

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

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