Makefile revision 344377
1# $FreeBSD: stable/11/stand/ofw/libofw/Makefile 344377 2019-02-20 19:13:09Z kevans $
2
3.include <bsd.init.mk>
4
5LIB=		ofw
6
7SRCS=	devicename.c ofw_console.c ofw_copy.c ofw_disk.c \
8	ofw_memory.c ofw_module.c ofw_net.c ofw_reboot.c \
9	ofw_time.c openfirm.c
10.PATH:	${ZFSSRC}
11SRCS+=  devicename_stubs.c
12CFLAGS+=	-I${ZFSSRC}
13
14# Pick up the bootstrap header for some interface items
15CFLAGS+=	-I${LDRSRC}
16
17.ifdef(BOOT_DISK_DEBUG)
18# Make the disk code more talkative
19CFLAGS+= -DDISK_DEBUG
20.endif
21
22.include <bsd.lib.mk>
23