xref: /illumos-gate/usr/src/boot/efi/loader/i386/Makefile (revision 83b4671e)
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 2016 Toomas Soome <tsoome@me.com>
14# Copyright 2016 RackTop Systems.
15#
16
17MACHINE=	$(MACH)
18ASFLAGS=	-m32
19EFIPROG=	loader32.efi
20
21all:		$(EFIPROG)
22
23include ../Makefile.com
24
25EFI_TARGET=	pei-i386
26LDFLAGS +=	-znocombreloc
27
28efi_main.o := CPPFLAGS += -DLOADER_EFI=L\"loader32.efi\"
29CFLAGS +=	-m32
30
31CLEANFILES +=	machine x86 $(EFIPROG)
32
33$(OBJS):	machine x86
34