aboutsummaryrefslogtreecommitdiffhomepage
path: root/guest/Makefile
blob: e3f1e1bbe6d2120ee29e5c67b025541fb011b312 (plain) (blame)
1
2
3
4
5
6
7
8
guest16: guest.ld guest16.S
	$(CC) $(CFLAGS) -m16 -o $@ -nostdlib -ffreestanding -Wpedantic -Wall -Wextra -Werror -T guest.ld guest16.S

disasm: guest16
	objdump -D -b binary -m i8086 -M intel $^

clean:
	$(RM) guest16