mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
15 lines
248 B
Makefile
15 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>
|