aboutsummaryrefslogtreecommitdiff
path: root/crypto/chacha
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-04-02 18:36:52 +0200
committerRichard Levitte <levitte@openssl.org>2016-04-20 16:04:56 +0200
commit45c6e23c978da0b23df5e5a9a3c2e631b79ba497 (patch)
tree886bf62d10c214c2ea08d62f7cf04dbc8348fbdf /crypto/chacha
parentf863ad0c59374ee8cc91dcae71ef60ceabc969f1 (diff)
downloadopenssl-45c6e23c978da0b23df5e5a9a3c2e631b79ba497.zip
openssl-45c6e23c978da0b23df5e5a9a3c2e631b79ba497.tar.gz
openssl-45c6e23c978da0b23df5e5a9a3c2e631b79ba497.tar.bz2
Remove --classic build entirely
The Unix build was the last to retain the classic build scheme. The new unified scheme has matured enough, even though some details may need polishing. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/chacha')
-rw-r--r--crypto/chacha/Makefile.in57
1 files changed, 0 insertions, 57 deletions
diff --git a/crypto/chacha/Makefile.in b/crypto/chacha/Makefile.in
deleted file mode 100644
index 067fbed..0000000
--- a/crypto/chacha/Makefile.in
+++ /dev/null
@@ -1,57 +0,0 @@
-#
-# OpenSSL/crypto/chacha/Makefile
-#
-
-DIR= chacha
-TOP= ../..
-CC= cc
-CPP= $(CC) -E
-INCLUDES=
-CFLAG=-g
-AR= ar r
-
-CHACHA_ENC=chacha_enc.o
-
-CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG)
-ASFLAGS= $(INCLUDES) $(ASFLAG) $(SHARED_CFLAG)
-AFLAGS= $(ASFLAGS)
-
-GENERAL=Makefile
-
-LIB=$(TOP)/libcrypto.a
-LIBSRC=chacha_enc.c
-LIBOBJ=$(CHACHA_ENC)
-
-SRC= $(LIBSRC)
-
-ALL= $(GENERAL) $(SRC) $(HEADER)
-
-top:
- (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
-
-all: lib
-
-lib: $(LIBOBJ)
- $(AR) $(LIB) $(LIBOBJ)
- $(RANLIB) $(LIB) || echo Never mind.
- @touch lib
-
-chacha-x86.s: asm/chacha-x86.pl
- $(PERL) asm/chacha-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) $@
-chacha-x86_64.s: asm/chacha-x86_64.pl
- $(PERL) asm/chacha-x86_64.pl $(PERLASM_SCHEME) $@
-chacha-ppc.s: asm/chacha-ppc.pl
- $(PERL) asm/chacha-ppc.pl $(PERLASM_SCHEME) $@
-
-chacha-%.S: asm/chacha-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
-
-chacha-armv4.o: chacha-armv4.S
-chacha-armv8.o: chacha-armv8.S
-
-depend:
- $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
-
-clean:
- rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
-
-# DO NOT DELETE THIS LINE -- make depend depends on it.