mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 06:42:56 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
26 lines
763 B
Makefile
26 lines
763 B
Makefile
.PATH: ${.CURDIR:H}
|
|
|
|
SRCS= zfs_defs.c
|
|
OBJS= zfs_defs.o
|
|
WARNS?= 1
|
|
|
|
FORTIFY_SOURCE= 0
|
|
|
|
CFLAGS+= -DIN_BASE -D__KERNEL__ -D_KERNEL -I. -I${.CURDIR}
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/include
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/include/os/freebsd/spl
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/include/os/freebsd/
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/include/os/freebsd/zfs
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/ck/include
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys -I. -I..
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/module/icp/include
|
|
CFLAGS+= -include ${SRCTOP}/sys/contrib/openzfs/include/os/freebsd/spl/sys/ccompile.h
|
|
CFLAGS+= -DHAVE_ISSETUGID -D_SYS_VMEM_H_ -UKLD_TIED -DKLD_MODULE
|
|
|
|
CFLAGS+= -fno-builtin -nostdlib
|
|
|
|
all: ${OBJS}
|
|
CLEANFILES= ${OBJS}
|
|
|
|
.include <bsd.lib.mk>
|