xref: /illumos-gate/usr/src/boot/i386/pmbr/Makefile (revision 311330e6823a3a919ff127757c2f0cf9eb17aa0e)
1#
2# This file and its contents are supplied under the terms of the
3# Common Development and Distribution License ("CDDL"), version 1.0.
4# You may only use this file in accordance with the terms of version
5# 1.0 of the CDDL.
6#
7# A full copy of the text of the CDDL should have accompanied this
8# source.  A copy of the CDDL is also available via the Internet at
9# http://www.illumos.org/license/CDDL.
10#
11
12#
13# Copyright 2015 Toomas Soome <tsoome@me.com>
14# Copyright 2019 OmniOS Community Edition (OmniOSce) Association.
15#
16
17#
18# x86 EFI pmbr build rules
19#
20include $(SRC)/Makefile.master
21include $(SRC)/boot/Makefile.inc
22include ../Makefile.inc
23
24PROG=	pmbr
25
26FILEMODE=0444
27OBJS=	pmbr.o
28SRCS=	$(OBJS:%.o=%.s)
29
30ORG=	0x600
31
32LDFLAGS=-e start -Ttext ${ORG} -N -S --oformat binary $(GLDTARGET)
33
34all: $(PROG)
35
36install: $(PROG:%=$(ROOT_BOOT)/%)
37
38$(PROG): $(OBJS)
39	$(GLD) $(LDFLAGS) -o $(PROG) $(OBJS)
40
41clobber: clean
42
43clean:
44	$(RM) $(PROG) $(OBJS)
45
46$(ROOT_BOOT)/%: %
47	$(INS.file)
48