summaryrefslogtreecommitdiff
path: root/boot/arch/amd64/biosboot/Makefile
blob: c78224015fa522ae10e0a46b0b75832c60ee5401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CC = clang
CFLAGS =				\
	-ffreestanding		\
	-nostdlib			\
	-nostdinc			\
	-mno-red-zone		\
	-mno-sse			\
	-mno-sse2			\
	-target i386-unknown-elf

.PHONY: all
all: biosboot

.PHONY: biosboot
biosboot:
	clang -T../mbr/link.ld $(CFLAGS) biosboot.S -o biosboot.bin