libefi: use one-line-per-file pattern in Makefile
[unleashed.git] / usr / src / boot / sys / boot / efi / libefi / Makefile
blobb8b4c5e6d653c967218421b0743aa28c139a63a9
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.
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.
13 # Copyright 2015 Toomas Soome <tsoome@me.com>
14 # Copyright 2016 RackTop Systems.
17 include $(SRC)/Makefile.master
19 CC= $(GCC_ROOT)/bin/gcc
21 LIB= efi
23 all: lib$(LIB).a
25 install:
27 SRCS= delay.c \
28 devicename.c \
29 devpath.c \
30 efi_console.c \
31 efi_driver_utils.c \
32 efichar.c \
33 efinet.c \
34 efipart.c \
35 efizfs.c \
36 env.c \
37 errno.c \
38 handles.c \
39 libefi.c \
40 time.c \
41 wchar.c
43 #.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
44 #SRCS += time.c
45 #.elif ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "arm"
46 #SRCS+= time_event.c
47 #.endif
49 OBJS= $(SRCS:%.c=%.o)
51 CPPFLAGS= -D_STANDALONE
52 CFLAGS = -O2
54 #.if ${MACHINE_CPUARCH} == "aarch64"
55 #CFLAGS+= -msoft-float -mgeneral-regs-only
56 #.endif
57 #.if ${MACHINE_ARCH} == "amd64"
58 CFLAGS += -fPIC
59 #.endif
61 CFLAGS += -nostdinc -I. -I../../../../include -I../../..
62 CFLAGS += -I$(SRC)/common/ficl -I../../ficl
63 CFLAGS += -I../include
64 CFLAGS += -I../include/${MACH64}
65 CFLAGS += -I../../../../lib/libstand
66 CFLAGS += -I./../../zfs
67 CFLAGS += -I./../../../cddl/boot/zfs
69 # Pick up the bootstrap header for some interface items
70 CFLAGS += -I../../common
72 # Handle FreeBSD specific %b and %D printf format specifiers
73 # CFLAGS+= ${FORMAT_EXTENSIONS}
74 # CFLAGS += -D__printf__=__freebsd_kprintf__
75 CFLAGS += -DTERM_EMU
77 include ../Makefile.inc
79 lib$(LIB).a: $(SRCS) $(OBJS)
80 $(AR) $(ARFLAGS) $@ $(OBJS)
82 clean: clobber
83 clobber:
84 $(RM) $(CLEANFILES) $(OBJS) machine x86 lib$(LIB).a
86 machine:
87 $(RM) machine
88 $(SYMLINK) ../../../amd64/include machine
90 x86:
91 $(RM) x86
92 $(SYMLINK) ../../../x86/include x86
94 $(OBJS): machine x86