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