diff options
author | tb <> | 2021-12-04 16:29:25 +0000 |
---|---|---|
committer | tb <> | 2021-12-04 16:29:25 +0000 |
commit | adb17cb8d995d037600723b40eb46194437ab401 (patch) | |
tree | 9e0c7ed6938806e5466c73574a6396790560eb14 /src | |
parent | 4ee15155fb4728d6a86ea60dfaf1739558d87da6 (diff) | |
download | openbsd-adb17cb8d995d037600723b40eb46194437ab401.tar.gz openbsd-adb17cb8d995d037600723b40eb46194437ab401.tar.bz2 openbsd-adb17cb8d995d037600723b40eb46194437ab401.zip |
List subdirectories as a simple list. Avoids a source of many merge
conflicts in my work on making much of libcrypto opaque.
discussed with jsing
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index e4269272f8..fbeb625c75 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.52 2021/12/04 15:38:10 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.53 2021/12/04 16:29:25 tb Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | LIBREBUILD=y |
@@ -28,13 +28,15 @@ CFLAGS+= -DDSO_DLFCN -DHAVE_DLFCN_H -DHAVE_FUNOPEN | |||
28 | CFLAGS+= -DOPENSSL_NO_HW_PADLOCK # XXX enable this? | 28 | CFLAGS+= -DOPENSSL_NO_HW_PADLOCK # XXX enable this? |
29 | 29 | ||
30 | CFLAGS+= -I${LCRYPTO_SRC} | 30 | CFLAGS+= -I${LCRYPTO_SRC} |
31 | CFLAGS+= -I${LCRYPTO_SRC}/asn1 -I${LCRYPTO_SRC}/bn -I${LCRYPTO_SRC}/bytestring | 31 | CFLAGS+= -I${LCRYPTO_SRC}/asn1 |
32 | CFLAGS+= -I${LCRYPTO_SRC}/evp -I${LCRYPTO_SRC}/modes -I${LCRYPTO_SRC}/x509 | 32 | CFLAGS+= -I${LCRYPTO_SRC}/bn |
33 | 33 | CFLAGS+= -I${LCRYPTO_SRC}/bytestring | |
34 | # XXX FIXME ecdsa and ec should be merged | 34 | CFLAGS+= -I${LCRYPTO_SRC}/evp |
35 | CFLAGS+= -I${LCRYPTO_SRC}/ecdsa | ||
36 | CFLAGS+= -I${LCRYPTO_SRC}/ec | 35 | CFLAGS+= -I${LCRYPTO_SRC}/ec |
37 | CFLAGS+= -I${LCRYPTO_SRC}/ecdh | 36 | CFLAGS+= -I${LCRYPTO_SRC}/ecdh |
37 | CFLAGS+= -I${LCRYPTO_SRC}/ecdsa | ||
38 | CFLAGS+= -I${LCRYPTO_SRC}/modes | ||
39 | CFLAGS+= -I${LCRYPTO_SRC}/x509 | ||
38 | 40 | ||
39 | VERSION_SCRIPT= Symbols.map | 41 | VERSION_SCRIPT= Symbols.map |
40 | SYMBOL_LIST= ${.CURDIR}/Symbols.list | 42 | SYMBOL_LIST= ${.CURDIR}/Symbols.list |