summaryrefslogtreecommitdiff
path: root/boot/arch/amd64/mbr/Makefile
blob: f41e5cce771f812c0980d1db750a97b812542be9 (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: mbr

.PHONY: mbr
mbr:
	clang -Tlink.ld $(CFLAGS) mbr.S -o $(GLOBAL_PROJECT_ROOT)/artifacts/mbr.bin