xref: /freebsd/cddl/lib/libicp_rescue/Makefile (revision 5aa839c9e2c373275091b8bf529c1311d0b84d76)
1# $FreeBSD$
2
3.PATH: ${SRCTOP}/sys/contrib/openzfs/module/icp
4
5PACKAGE=	utilities
6LIB=	icp_rescue
7LIBADD=
8
9
10.if ${MACHINE_ARCH} == "amd64"
11ASM_SOURCES_C = asm-x86_64/aes/aeskey.c
12ASM_SOURCES_AS = \
13        asm-x86_64/aes/aes_amd64.S \
14        asm-x86_64/aes/aes_aesni.S \
15        asm-x86_64/modes/gcm_pclmulqdq.S \
16        asm-x86_64/modes/aesni-gcm-x86_64.S \
17        asm-x86_64/sha2/sha256_impl.S \
18        asm-x86_64/sha2/sha512_impl.S
19
20CFLAGS+= -D__amd64 -D_SYS_STACK_H
21.else
22ASM_SOURCES_C =
23ASM_SOURCES_AS =
24.endif
25
26
27KERNEL_C = \
28        spi/kcf_spi.c \
29        api/kcf_ctxops.c \
30        api/kcf_digest.c \
31        api/kcf_cipher.c \
32        api/kcf_miscapi.c \
33        api/kcf_mac.c \
34        algs/aes/aes_impl_aesni.c \
35        algs/aes/aes_impl_generic.c \
36        algs/aes/aes_impl_x86-64.c \
37        algs/aes/aes_impl.c \
38        algs/aes/aes_modes.c \
39        algs/edonr/edonr.c \
40        algs/modes/modes.c \
41        algs/modes/cbc.c \
42        algs/modes/gcm_generic.c \
43        algs/modes/gcm_pclmulqdq.c \
44        algs/modes/gcm.c \
45        algs/modes/ctr.c \
46        algs/modes/ccm.c \
47        algs/modes/ecb.c \
48        algs/sha2/sha2.c \
49        algs/skein/skein_block.c \
50        illumos-crypto.c \
51        io/aes.c \
52        io/sha2_mod.c \
53        io/skein_mod.c \
54        os/modhash.c \
55        core/kcf_sched.c \
56        core/kcf_prov_lib.c \
57        core/kcf_callprov.c \
58        core/kcf_mech_tabs.c \
59        core/kcf_prov_tabs.c \
60        $(ASM_SOURCES_C)
61
62SRCS= $(ASM_SOURCES_AS) $(KERNEL_C)
63
64WARNS?=	2
65SHLIB_MAJOR= 3
66CSTD=	c99
67CFLAGS+= -DIN_BASE
68CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/include
69CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include/
70CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include/os/freebsd
71CFLAGS+= -I${SRCTOP}/sys
72CFLAGS+= -I${SRCTOP}/cddl/compat/opensolaris/include
73CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/module/icp/include
74CFLAGS+= -include ${SRCTOP}/sys/contrib/openzfs/include/os/freebsd/spl/sys/ccompile.h
75CFLAGS+= -DHAVE_ISSETUGID -UHAVE_AVX -DRESCUE
76CFLAGS+= -include ${SRCTOP}/sys/modules/zfs/zfs_config.h
77
78
79CFLAGS.aes_amd64.S+= -DLOCORE
80CFLAGS.aes_aesni.S+= -DLOCORE
81CFLAGS.gcm_pclmulqdq.S+= -DLOCORE
82CFLAGS.aesni-gcm-x86_64.S+= -DLOCORE
83CFLAGS.ghash-x86_64.S+= -DLOCORE
84CFLAGS.sha256_impl.S+= -DLOCORE
85CFLAGS.sha512_impl.S+= -DLOCORE
86CFLAGS.gcm.c+= -UCAN_USE_GCM_ASM
87
88.include <bsd.lib.mk>
89