summaryrefslogtreecommitdiff
path: root/src/lib/libssl/src/crypto/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/src/crypto/Makefile')
-rw-r--r--src/lib/libssl/src/crypto/Makefile146
1 files changed, 0 insertions, 146 deletions
diff --git a/src/lib/libssl/src/crypto/Makefile b/src/lib/libssl/src/crypto/Makefile
deleted file mode 100644
index 5c02ba2844..0000000000
--- a/src/lib/libssl/src/crypto/Makefile
+++ /dev/null
@@ -1,146 +0,0 @@
1#
2# OpenSSL/crypto/Makefile
3#
4
5DIR= crypto
6TOP= ..
7CC= cc
8INCLUDE= -I. -I$(TOP) -I../include $(ZLIB_INCLUDE)
9# INCLUDES targets sudbirs!
10INCLUDES= -I.. -I../.. -I../modes -I../asn1 -I../evp -I../../include $(ZLIB_INCLUDE)
11CFLAG= -g
12MAKEDEPPROG= makedepend
13MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
14MAKEFILE= Makefile
15RM= rm -f
16AR= ar r
17
18RECURSIVE_MAKE= [ -n "$(SDIRS)" ] && for i in $(SDIRS) ; do \
19 (cd $$i && echo "making $$target in $(DIR)/$$i..." && \
20 $(MAKE) -e TOP=../.. DIR=$$i INCLUDES='$(INCLUDES)' $$target ) || exit 1; \
21 done;
22
23PEX_LIBS=
24EX_LIBS=
25
26CFLAGS= $(INCLUDE) $(CFLAG)
27ASFLAGS= $(INCLUDE) $(ASFLAG)
28AFLAGS=$(ASFLAGS)
29CPUID_OBJ=mem_clr.o
30
31LIBS=
32
33GENERAL=Makefile README crypto-lib.com install.com
34
35LIB= $(TOP)/libcrypto.a
36SHARED_LIB= libcrypto$(SHLIB_EXT)
37LIBSRC= cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c cpt_err.c \
38 uid.c o_time.c o_str.c o_dir.c o_fips.c o_init.c
39LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o cpt_err.o \
40 uid.o o_time.o o_str.o o_dir.o o_fips.o o_init.o $(CPUID_OBJ)
41
42SRC= $(LIBSRC)
43
44EXHEADER= crypto.h opensslv.h opensslconf.h symhacks.h \
45 ossl_typ.h
46HEADER= cryptlib.h buildinf.h md32_common.h o_time.h o_str.h o_dir.h $(EXHEADER)
47
48ALL= $(GENERAL) $(SRC) $(HEADER)
49
50top:
51 @(cd ..; $(MAKE) DIRS=$(DIR) all)
52
53all: shared
54
55buildinf.h: ../Makefile
56 ( echo "#ifndef MK1MF_BUILD"; \
57 echo ' /* auto-generated by crypto/Makefile for crypto/cversion.c */'; \
58 echo ' #define CFLAGS "$(CC) $(CFLAG)"'; \
59 echo ' #define PLATFORM "$(PLATFORM)"'; \
60 echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \
61 echo '#endif' ) >buildinf.h
62
63x86cpuid.s: x86cpuid.pl perlasm/x86asm.pl
64 $(PERL) x86cpuid.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
65
66applink.o: $(TOP)/ms/applink.c
67 $(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/applink.c
68
69uplink.o: $(TOP)/ms/uplink.c applink.o
70 $(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/uplink.c
71
72uplink-x86.s: $(TOP)/ms/uplink-x86.pl
73 $(PERL) $(TOP)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@
74
75x86_64cpuid.s: x86_64cpuid.pl; $(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@
76ia64cpuid.s: ia64cpuid.S; $(CC) $(CFLAGS) -E ia64cpuid.S > $@
77ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@
78pariscid.s: pariscid.pl; $(PERL) pariscid.pl $(PERLASM_SCHEME) $@
79alphacpuid.s: alphacpuid.pl
80 $(PERL) $< | $(CC) -E - | tee $@ > /dev/null
81
82testapps:
83 [ -z "$(THIS)" ] || ( if echo $(SDIRS) | fgrep ' des '; \
84 then cd des && $(MAKE) -e des; fi )
85 [ -z "$(THIS)" ] || ( cd pkcs7 && $(MAKE) -e testapps );
86 @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
87
88subdirs:
89 @target=all; $(RECURSIVE_MAKE)
90
91files:
92 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
93 @target=files; $(RECURSIVE_MAKE)
94
95links:
96 @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
97 @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
98 @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
99 @target=links; $(RECURSIVE_MAKE)
100
101# lib: $(LIB): are splitted to avoid end-less loop
102lib: $(LIB)
103 @touch lib
104$(LIB): $(LIBOBJ)
105 $(AR) $(LIB) $(LIBOBJ)
106 [ -z "$(FIPSLIBDIR)" ] || $(AR) $(LIB) $(FIPSLIBDIR)fipscanister.o
107 $(RANLIB) $(LIB) || echo Never mind.
108
109shared: buildinf.h lib subdirs
110 if [ -n "$(SHARED_LIBS)" ]; then \
111 (cd ..; $(MAKE) $(SHARED_LIB)); \
112 fi
113
114libs:
115 @target=lib; $(RECURSIVE_MAKE)
116
117install:
118 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
119 @headerlist="$(EXHEADER)"; for i in $$headerlist ;\
120 do \
121 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
122 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
123 done;
124 @target=install; $(RECURSIVE_MAKE)
125
126lint:
127 @target=lint; $(RECURSIVE_MAKE)
128
129depend:
130 @[ -z "$(THIS)" -o -f buildinf.h ] || touch buildinf.h # fake buildinf.h if it does not exist
131 @[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDE) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
132 @[ -z "$(THIS)" -o -s buildinf.h ] || rm buildinf.h
133 @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
134 @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
135
136clean:
137 rm -f buildinf.h *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
138 @target=clean; $(RECURSIVE_MAKE)
139
140dclean:
141 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
142 mv -f Makefile.new $(MAKEFILE)
143 rm -f opensslconf.h
144 @target=dclean; $(RECURSIVE_MAKE)
145
146# DO NOT DELETE THIS LINE -- make depend depends on it.