aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ec/Makefile
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/ec/Makefile
parentdee502be89e78e2979e3bd1d7724cf79daa6ef61 (diff)
downloadopenssl-a80e33b991e29988309964439fa8dba30af7ea5c.tar.gz
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/ec/Makefile')
-rw-r--r--crypto/ec/Makefile18
1 files changed, 1 insertions, 17 deletions
diff --git a/crypto/ec/Makefile b/crypto/ec/Makefile
index b6d50c7c9d..542596795e 100644
--- a/crypto/ec/Makefile
+++ b/crypto/ec/Makefile
@@ -15,8 +15,6 @@ ASFLAGS= $(INCLUDES) $(ASFLAG)
AFLAGS= $(ASFLAGS)
GENERAL=Makefile
-TEST=ectest.c
-APPS=
LIB=$(TOP)/libcrypto.a
LIBSRC= ec_lib.c ecp_smpl.c ecp_mont.c ecp_nist.c ec_cvt.c ec_mult.c\
@@ -33,8 +31,7 @@ LIBOBJ= ec_lib.o ecp_smpl.o ecp_mont.o ecp_nist.o ec_cvt.o ec_mult.o\
SRC= $(LIBSRC)
-EXHEADER= ec.h
-HEADER= ec_lcl.h $(EXHEADER)
+HEADER= ec_lcl.h
ALL= $(GENERAL) $(SRC) $(HEADER)
@@ -63,19 +60,6 @@ ecp_nistz256-armv4.o: ecp_nistz256-armv4.S
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)