1 | # $Id: Makefile.kmk 94320 2022-03-22 10:38:12Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # OpenSSL Sub-Makefile.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2019-2022 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.alldomusa.eu.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | SUB_DEPTH = ../../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 | LIBRARIES += crypto_bio
|
---|
22 | crypto_bio_TEMPLATE = SUBLIBCRYPTO
|
---|
23 | crypto_bio_DEFS = OPENSSL_NO_DEPRECATED
|
---|
24 | crypto_bio_SOURCES = \
|
---|
25 | bf_buff.c \
|
---|
26 | bf_lbuf.c \
|
---|
27 | bf_nbio.c \
|
---|
28 | bf_null.c \
|
---|
29 | bf_prefix.c \
|
---|
30 | bf_readbuff.c \
|
---|
31 | bio_addr.c \
|
---|
32 | bio_cb.c \
|
---|
33 | bio_dump.c \
|
---|
34 | bio_err.c \
|
---|
35 | bio_lib.c \
|
---|
36 | bio_meth.c \
|
---|
37 | bio_print.c \
|
---|
38 | bio_sock.c \
|
---|
39 | bio_sock2.c \
|
---|
40 | bss_acpt.c \
|
---|
41 | bss_bio.c \
|
---|
42 | bss_conn.c \
|
---|
43 | bss_core.c \
|
---|
44 | bss_dgram.c \
|
---|
45 | bss_fd.c \
|
---|
46 | bss_file.c \
|
---|
47 | bss_log.c \
|
---|
48 | bss_mem.c \
|
---|
49 | bss_null.c \
|
---|
50 | bss_sock.c \
|
---|
51 | ossl_core_bio.c
|
---|
52 | $(evalcall VBOX_OPENSSL_X86,crypto_bio)
|
---|
53 |
|
---|
54 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|