4f9139397e
Need to add stub data and gfx functions to make linking happy.
32 lines
615 B
Makefile
32 lines
615 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LDRSRC}
|
|
|
|
LIB= uboot
|
|
WARNS?= 2
|
|
|
|
SRCS= console.c copy.c devicename.c elf_freebsd.c glue.c
|
|
SRCS+= module.c net.c reboot.c time.c gfx_fb.c
|
|
|
|
CFLAGS.gfx_fb.c += -I${SRCTOP}/contrib/pnglite
|
|
CFLAGS.gfx_fb.c += -I${SRCTOP}/sys/teken
|
|
CFLAGS.glue.c+= -DHAVE_MEMCPY -I${SRCTOP}/sys/contrib/zlib
|
|
|
|
.if ${LOADER_DISK_SUPPORT:Uyes} == "yes"
|
|
SRCS+= disk.c
|
|
.endif
|
|
|
|
.include "${BOOTSRC}/fdt.mk"
|
|
|
|
# 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>
|