mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-25 01:55:19 +01:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
19 lines
359 B
Makefile
19 lines
359 B
Makefile
|
|
.include <bsd.init.mk>
|
|
|
|
LIB= ofw
|
|
|
|
SRCS= devicename.c ofw_console.c ofw_copy.c ofw_disk.c \
|
|
ofw_memory.c ofw_module.c ofw_net.c ofw_reboot.c \
|
|
ofw_time.c openfirm.c
|
|
|
|
# Pick up the bootstrap header for some interface items
|
|
CFLAGS+= -I${LDRSRC}
|
|
|
|
.ifdef(BOOT_DISK_DEBUG)
|
|
# Make the disk code more talkative
|
|
CFLAGS+= -DDISK_DEBUG
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|