summaryrefslogtreecommitdiffstats
path: root/crypto/pkcs7
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-03-26 21:44:59 +0100
committerRichard Levitte <levitte@openssl.org>2015-03-31 20:16:01 +0200
commita80e33b991e29988309964439fa8dba30af7ea5c (patch)
treecd48fffdbd5be833907101af04f677f2ad8cee11 /crypto/pkcs7
parentdee502be89e78e2979e3bd1d7724cf79daa6ef61 (diff)
Remove EXHEADER, TEST, APPS, links:, install: and uninstall: where relevant
With no more symlinks, there's no need for those variables, or the links target. This also goes for all install: and uninstall: targets that do nothing but copy $(EXHEADER) files, since that's now taken care of by the top Makefile. Also, removed METHTEST from test/Makefile. It looks like an old test that's forgotten... Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/pkcs7')
-rw-r--r--crypto/pkcs7/Makefile20
1 files changed, 2 insertions, 18 deletions
diff --git a/crypto/pkcs7/Makefile b/crypto/pkcs7/Makefile
index 987bddf797..4f218e8227 100644
--- a/crypto/pkcs7/Makefile
+++ b/crypto/pkcs7/Makefile
@@ -12,12 +12,10 @@ AR= ar r
PEX_LIBS=
EX_LIBS=
-
+
CFLAGS= $(INCLUDES) $(CFLAG)
GENERAL=Makefile README
-TEST=
-APPS=
LIB=$(TOP)/libcrypto.a
LIBSRC= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c \
@@ -27,8 +25,7 @@ LIBOBJ= pk7_asn1.o pk7_lib.o pkcs7err.o pk7_doit.o pk7_smime.o pk7_attr.o \
SRC= $(LIBSRC)
-EXHEADER= pkcs7.h
-HEADER= $(EXHEADER)
+HEADER=
ALL= $(GENERAL) $(SRC) $(HEADER)
@@ -47,19 +44,6 @@ lib: $(LIBOBJ)
files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
-links:
- @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
- @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
- @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
-
-install:
- @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
- @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
- do \
- (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
- chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
- done;
-
tags:
ctags $(SRC)