freebsd-dev/sys/modules/rdrand_rng/Makefile
Warner Losh 031beb4e23 sys: Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-16 11:54:58 -06:00

16 lines
248 B
Makefile

.PATH: ${SRCTOP}/sys/dev/random
KMOD= rdrand_rng
SRCS= ivy.c
SRCS+= bus_if.h device_if.h
CFLAGS+= -I${SRCTOP}/sys
# ld.bfd doesn't support ifuncs invoked non-PIC
.if ${MACHINE_CPUARCH} == "i386"
CFLAGS.gcc= -fPIC
.endif
.include <bsd.kmod.mk>