summaryrefslogtreecommitdiffstats
path: root/crypto/pem/Makefile.ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2001-07-26 22:34:45 +0000
committerDr. Stephen Henson <steve@openssl.org>2001-07-26 22:34:45 +0000
commit19da1300536be2ffddd5edef039e34b09a0c8440 (patch)
tree8d40b3149727d27b5a2f4aad7d55a654c08bf5c1 /crypto/pem/Makefile.ssl
parenta75b191502e5b47b489695174f2a2b71837f3830 (diff)
First of several reorganisations to
reduce linker bloat. For example the single line: PEM_read_X509() results in a binary of around 400K in Linux! This first step separates some of the PEM functions and avoids linking in some PKCS#7 and PKCS#12 code.
Diffstat (limited to 'crypto/pem/Makefile.ssl')
-rw-r--r--crypto/pem/Makefile.ssl6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/pem/Makefile.ssl b/crypto/pem/Makefile.ssl
index d8bccd4541..eb2a10844a 100644
--- a/crypto/pem/Makefile.ssl
+++ b/crypto/pem/Makefile.ssl
@@ -23,9 +23,11 @@ TEST=
APPS=
LIB=$(TOP)/libcrypto.a
-LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c
+LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c \
+ pem_x509.c pem_xaux.c
-LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o
+LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o \
+ pem_x509.o pem_xaux.o
SRC= $(LIBSRC)