summaryrefslogtreecommitdiff
path: root/Makefile
blob: 35738aebe8602e3b7e575645cc89990272deba7e (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 -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 $^