aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/hptnr
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2021-04-12 19:40:43 +0000
committerWarner Losh <imp@FreeBSD.org>2021-04-12 19:47:55 +0000
commit5b20c5e1f8d59f14901f0c0e4b6b577eaa3f9569 (patch)
tree5b63bffffc69dffc86293a529d260c7e0252505b /sys/modules/hptnr
parenteacc27affeff17beb3791793ba54458444df7135 (diff)
downloadsrc-5b20c5e1f8d59f14901f0c0e4b6b577eaa3f9569.tar.gz
src-5b20c5e1f8d59f14901f0c0e4b6b577eaa3f9569.zip
hptnr: Store the .o files directly in the repo
We no longer need to use uuencode to uuencode files in our tree. Store the .o file directly instead. Adjust the build to cope with the new arrangement. Suggestions by: emaste, bz, donner Reviewed by: markm Sposnored by: Netflix, Inc Differential Revision: https://reviews.freebsd.org/D29632
Diffstat (limited to 'sys/modules/hptnr')
-rw-r--r--sys/modules/hptnr/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/modules/hptnr/Makefile b/sys/modules/hptnr/Makefile
index 84f29ac2cc8d..c37bb182f49a 100644
--- a/sys/modules/hptnr/Makefile
+++ b/sys/modules/hptnr/Makefile
@@ -6,9 +6,6 @@ KMOD= hptnr
SRCS= bus_if.h device_if.h pci_if.h
SRCS+= opt_cam.h opt_scsi.h
SRCS+= os_bsd.h hptnr_os_bsd.c hptnr_osm_bsd.c hptnr_config.c
-OBJS+= hptnr_lib.o
-
-hptnr_lib.o:
- uudecode -p < ${HPTNR}/${MACHINE_ARCH}-elf.hptnr_lib.o.uu > ${.TARGET}
+OBJS+= ${HPTNR}/${MACHINE_ARCH}-elf.hptnr_lib.o
.include <bsd.kmod.mk>