]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/modes/Makefile
Remove fipscanister build functionality from makefiles.
[thirdparty/openssl.git] / crypto / modes / Makefile
CommitLineData
85b2c0ce
AP
1#
2# OpenSSL/crypto/modes/Makefile
3#
4
5DIR= modes
6TOP= ../..
7CC= cc
8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g
10MAKEFILE= Makefile
11AR= ar r
12
8a1c92ce
AP
13MODES_ASM_OBJ=
14
85b2c0ce 15CFLAGS= $(INCLUDES) $(CFLAG)
8a1c92ce
AP
16ASFLAGS= $(INCLUDES) $(ASFLAG)
17AFLAGS= $(ASFLAGS)
85b2c0ce
AP
18
19GENERAL=Makefile
20TEST=
21APPS=
22
23LIB=$(TOP)/libcrypto.a
6386b1b3 24LIBSRC= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c \
c857a80c 25 ccm128.c xts128.c wrap128.c ocb128.c
8a1c92ce 26LIBOBJ= cbc128.o ctr128.o cts128.o cfb128.o ofb128.o gcm128.o \
c857a80c 27 ccm128.o xts128.o wrap128.o ocb128.o $(MODES_ASM_OBJ)
85b2c0ce
AP
28
29SRC= $(LIBSRC)
30
31#EXHEADER= store.h str_compat.h
32EXHEADER= modes.h
324abf1d 33HEADER= modes_lcl.h $(EXHEADER)
85b2c0ce
AP
34
35ALL= $(GENERAL) $(SRC) $(HEADER)
36
37top:
38 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
39
40all: lib
41
42lib: $(LIBOBJ)
f072785e 43 $(AR) $(LIB) $(LIBOBJ)
85b2c0ce
AP
44 $(RANLIB) $(LIB) || echo Never mind.
45 @touch lib
46
a3b0c44b 47ghash-ia64.s: asm/ghash-ia64.pl
8a1c92ce
AP
48 $(PERL) asm/ghash-ia64.pl $@ $(CFLAGS)
49ghash-x86.s: asm/ghash-x86.pl
50 $(PERL) asm/ghash-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
51ghash-x86_64.s: asm/ghash-x86_64.pl
52 $(PERL) asm/ghash-x86_64.pl $(PERLASM_SCHEME) > $@
4e049c52
AP
53aesni-gcm-x86_64.s: asm/aesni-gcm-x86_64.pl
54 $(PERL) asm/aesni-gcm-x86_64.pl $(PERLASM_SCHEME) > $@
8a1c92ce 55ghash-sparcv9.s: asm/ghash-sparcv9.pl
b2875087 56 $(PERL) asm/ghash-sparcv9.pl $@ $(CFLAGS)
8a1c92ce 57ghash-alpha.s: asm/ghash-alpha.pl
d475b2a3 58 (preproc=$$$$.$@.S; trap "rm $$preproc" INT; \
d1cf23ac 59 $(PERL) asm/ghash-alpha.pl > $$preproc && \
d475b2a3 60 $(CC) -E -P $$preproc > $@ && rm $$preproc)
5e19ee96 61ghash-parisc.s: asm/ghash-parisc.pl
3fdd168f 62 $(PERL) asm/ghash-parisc.pl $(PERLASM_SCHEME) $@
82741e9c
AP
63ghashv8-armx.S: asm/ghashv8-armx.pl
64 $(PERL) asm/ghashv8-armx.pl $(PERLASM_SCHEME) $@
0e716d92
AP
65ghashp8-ppc.s: asm/ghashp8-ppc.pl
66 $(PERL) asm/ghashp8-ppc.pl $(PERLASM_SCHEME) $@
396df731 67
8a1c92ce 68# GNU make "catch all"
1e863180
AP
69ghash-%.S: asm/ghash-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
70
71ghash-armv4.o: ghash-armv4.S
82741e9c 72ghashv8-armx.o: ghashv8-armx.S
8a1c92ce 73
85b2c0ce
AP
74files:
75 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
76
77links:
78 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
79 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
80 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
81
82install:
83 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
84 @headerlist="$(EXHEADER)"; for i in $$headerlist; \
85 do \
86 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
87 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
88 done;
89
90tags:
91 ctags $(SRC)
92
93tests:
94
95lint:
96 lint -DLINT $(INCLUDES) $(SRC)>fluff
97
98depend:
99 @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
100 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
101
102dclean:
103 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
104 mv -f Makefile.new $(MAKEFILE)
105
106clean:
6559b40d 107 rm -f *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
85b2c0ce
AP
108
109# DO NOT DELETE THIS LINE -- make depend depends on it.
110
b7056b64
DSH
111cbc128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
112cbc128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
113cbc128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
114cbc128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
975dfb1c 115cbc128.o: ../../include/openssl/symhacks.h cbc128.c modes_lcl.h
ae53b299
BM
116ccm128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
117ccm128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
118ccm128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
119ccm128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
975dfb1c 120ccm128.o: ../../include/openssl/symhacks.h ccm128.c modes_lcl.h
b7056b64
DSH
121cfb128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
122cfb128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
123cfb128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
124cfb128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
975dfb1c 125cfb128.o: ../../include/openssl/symhacks.h cfb128.c modes_lcl.h
b7056b64
DSH
126ctr128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
127ctr128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
128ctr128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
129ctr128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
975dfb1c 130ctr128.o: ../../include/openssl/symhacks.h ctr128.c modes_lcl.h
b7056b64
DSH
131cts128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
132cts128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
133cts128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
134cts128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
975dfb1c 135cts128.o: ../../include/openssl/symhacks.h cts128.c modes_lcl.h
9d0397e9 136gcm128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
ae53b299
BM
137gcm128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
138gcm128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
139gcm128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
975dfb1c 140gcm128.o: ../../include/openssl/symhacks.h gcm128.c modes_lcl.h
c857a80c
MC
141ocb128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
142ocb128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
143ocb128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
144ocb128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
145ocb128.o: ../../include/openssl/symhacks.h modes_lcl.h ocb128.c
b7056b64
DSH
146ofb128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
147ofb128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
148ofb128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
149ofb128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
975dfb1c 150ofb128.o: ../../include/openssl/symhacks.h modes_lcl.h ofb128.c
4cfeb00b
DSH
151wrap128.o: ../../e_os.h ../../include/openssl/bio.h
152wrap128.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
153wrap128.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
154wrap128.o: ../../include/openssl/lhash.h ../../include/openssl/modes.h
155wrap128.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
156wrap128.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
157wrap128.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
158wrap128.o: ../cryptlib.h wrap128.c
ae53b299
BM
159xts128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
160xts128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
161xts128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
162xts128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
975dfb1c 163xts128.o: ../../include/openssl/symhacks.h modes_lcl.h xts128.c