aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/uboot/lib/Makefile
diff options
context:
space:
mode:
authorMarius Strobl <marius@FreeBSD.org>2012-03-21 20:53:47 +0000
committerMarius Strobl <marius@FreeBSD.org>2012-03-21 20:53:47 +0000
commit3e18d022e41eb185cd146be35a9351d180a1e79a (patch)
tree1c84cf02332c403ef868419e225d00a2c3c9df96 /sys/boot/uboot/lib/Makefile
parent74ebfba7ca2a20a60c87bb1d37c3936b039e18d5 (diff)
downloadsrc-3e18d022e41eb185cd146be35a9351d180a1e79a.tar.gz
src-3e18d022e41eb185cd146be35a9351d180a1e79a.zip
Use the common/shared CRC-32 implementation instead of duplicating it.
MFC after: 1 week
Notes
Notes: svn path=/head/; revision=233287
Diffstat (limited to 'sys/boot/uboot/lib/Makefile')
-rw-r--r--sys/boot/uboot/lib/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/boot/uboot/lib/Makefile b/sys/boot/uboot/lib/Makefile
index 039a282553ce..75bc973d1ab9 100644
--- a/sys/boot/uboot/lib/Makefile
+++ b/sys/boot/uboot/lib/Makefile
@@ -1,11 +1,13 @@
# $FreeBSD$
+.PATH: ${.CURDIR}/../../common
+
LIB= uboot
INTERNALLIB=
WARNS?= 2
-SRCS= devicename.c elf_freebsd.c console.c copy.c disk.c \
- module.c net.c reboot.c time.c glue.c
+SRCS= crc32.c console.c copy.c devicename.c disk.c elf_freebsd.c glue.c
+SRCS+= module.c net.c reboot.c time.c
CFLAGS+= -ffreestanding -msoft-float