199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# This file and its contents are supplied under the terms of the
199767f8919635c4928607450d9e0abb932109ceToomas Soome# Common Development and Distribution License ("CDDL"), version 1.0.
199767f8919635c4928607450d9e0abb932109ceToomas Soome# You may only use this file in accordance with the terms of version
199767f8919635c4928607450d9e0abb932109ceToomas Soome# 1.0 of the CDDL.
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# A full copy of the text of the CDDL should have accompanied this
199767f8919635c4928607450d9e0abb932109ceToomas Soome# source. A copy of the CDDL is also available via the Internet at
199767f8919635c4928607450d9e0abb932109ceToomas Soome# http://www.illumos.org/license/CDDL.
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# Copyright 2015 Toomas Soome <tsoome@me.com>
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome# Common defines for all of /sys/boot/i386/
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas SoomeROOT_BOOT= $(ROOT)/boot
199767f8919635c4928607450d9e0abb932109ceToomas SoomeROOTBOOTPROG=$(PROG:%=$(ROOT_BOOT)/%)
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas SoomeLOADER_ADDRESS=0x200000
199767f8919635c4928607450d9e0abb932109ceToomas SoomeCFLAGS += -march=i386 -ffreestanding
199767f8919635c4928607450d9e0abb932109ceToomas SoomeCFLAGS += -mpreferred-stack-boundary=2
199767f8919635c4928607450d9e0abb932109ceToomas SoomeCFLAGS += -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float
199767f8919635c4928607450d9e0abb932109ceToomas SoomeCFLAGS += -std=gnu99 -fno-reorder-functions
199767f8919635c4928607450d9e0abb932109ceToomas SoomeLDFLAGS += -nostdlib
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas SoomeCFLAGS += -m32
199767f8919635c4928607450d9e0abb932109ceToomas SoomeACFLAGS += -m32
199767f8919635c4928607450d9e0abb932109ceToomas SoomeAFLAGS += --32
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome# BTX components
199767f8919635c4928607450d9e0abb932109ceToomas SoomeBTXDIR= $(SRC)/boot/sys/boot/i386/btx
199767f8919635c4928607450d9e0abb932109ceToomas SoomeBTXLDR= ${BTXDIR}/btxldr/btxldr
199767f8919635c4928607450d9e0abb932109ceToomas SoomeBTXKERN= ${BTXDIR}/btx/btx
199767f8919635c4928607450d9e0abb932109ceToomas SoomeBTXCRT= ${BTXDIR}/lib/crt0.o
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome$(ROOT_BOOT)/%: %
199767f8919635c4928607450d9e0abb932109ceToomas Soome $(INS.file)