Makefile revision 67204
1# $FreeBSD: head/sys/boot/ofw/libofw/Makefile 67204 2000-10-16 10:46:22Z obrien $
2
3LIB=		ofw
4NOPIC=		true
5NOPROFILE=	true
6INTERNALLIB=	true
7INTERNALSTATICLIB=	true
8
9SRCS=	devicename.c main.c ofw_copy.c ofw_module.c ofw_disk.c ofw_console.c \
10	ofw_time.c ofw_devsearch.c ofw_reboot.c openfirm.c
11
12CFLAGS+=	-I${.CURDIR}/../../../../lib/libstand/
13
14# Pick up the bootstrap header for some interface items
15CFLAGS+=	-I${.CURDIR}/../../common -msoft-float \
16		-I${.CURDIR}/../../.. -I.
17
18.ifdef(BOOT_BIOSDISK_DEBUG)
19# Make the disk code more talkative
20CFLAGS+= -DDISK_DEBUG
21.endif
22
23.include <bsd.lib.mk>
24