Deleted Added
full compact
Makefile (67204) Makefile (68548)
1# $FreeBSD: head/sys/boot/ofw/libofw/Makefile 67204 2000-10-16 10:46:22Z obrien $
1# $FreeBSD: head/sys/boot/ofw/libofw/Makefile 68548 2000-11-10 06:39:58Z benno $
2
3LIB= ofw
4NOPIC= true
5NOPROFILE= true
6INTERNALLIB= true
7INTERNALSTATICLIB= true
8
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
9SRCS= devicename.c ofw_copy.c ofw_module.c ofw_disk.c ofw_net.c \
10 ofw_console.c 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
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.
15CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../../.. -I.
17
16
18.ifdef(BOOT_BIOSDISK_DEBUG)
17.if ${MACHINE_ARCH} == "powerpc"
18CFLAGS+= -msoft-float
19.endif
20
21.ifdef(BOOT_DISK_DEBUG)
19# Make the disk code more talkative
20CFLAGS+= -DDISK_DEBUG
21.endif
22
22# Make the disk code more talkative
23CFLAGS+= -DDISK_DEBUG
24.endif
25
26machine:
27 ln -sf ${.CURDIR}/../../../${MACHINE_ARCH}/include machine
28
29CLEANFILES+= machine
30
23.include <bsd.lib.mk>
31.include <bsd.lib.mk>
32
33beforedepend ${OBJS}: machine