]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/bn/build.info
Pass $(CC) to perlasm scripts via the environment
[thirdparty/openssl.git] / crypto / bn / build.info
CommitLineData
5caef3b5 1{- use File::Spec::Functions qw/catdir rel2abs/; -}
777a2882
RL
2LIBS=../../libcrypto
3SOURCE[../../libcrypto]=\
4 bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
5 bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
6 bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c \
7 {- $target{bn_asm_src} -} \
8 bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \
9 bn_depr.c bn_const.c bn_x931p.c bn_intern.c bn_dh.c bn_srp.c
5caef3b5 10INCLUDE[../../libcrypto]={- rel2abs(catdir($builddir,"..","..","crypto","include")) -}
567a9e6f
RL
11
12BEGINRAW[Makefile]
13##### BN assembler implementations
14
15{- $builddir -}/bn-586.s: {- $sourcedir -}/asm/bn-586.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl
de72be2e 16 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/bn-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
567a9e6f 17{- $builddir -}/co-586.s: {- $sourcedir -}/asm/co-586.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl
de72be2e 18 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/co-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
567a9e6f 19{- $builddir -}/x86-mont.s: {- $sourcedir -}/asm/x86-mont.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl
de72be2e 20 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/x86-mont.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
567a9e6f 21{- $builddir -}/x86-gf2m.s: {- $sourcedir -}/asm/x86-gf2m.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl
de72be2e 22 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/x86-gf2m.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
567a9e6f
RL
23
24{- $builddir -}/sparcv8.o: {- $sourcedir -}/asm/sparcv8.S
25 $(CC) $(CFLAGS) -c {- $sourcedir -}/asm/sparcv8.S
26{- $builddir -}/bn-sparcv9.o: {- $sourcedir -}/asm/sparcv8plus.S
27 $(CC) $(CFLAGS) -c -o $@ {- $sourcedir -}/asm/sparcv8plus.S
28{- $builddir -}/sparcv9a-mont.s: {- $sourcedir -}/asm/sparcv9a-mont.pl
de72be2e 29 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/sparcv9a-mont.pl $(CFLAGS) > $@
567a9e6f 30{- $builddir -}/sparcv9-mont.s: {- $sourcedir -}/asm/sparcv9-mont.pl
de72be2e 31 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/sparcv9-mont.pl $(CFLAGS) > $@
567a9e6f 32{- $builddir -}/vis3-mont.s: {- $sourcedir -}/asm/vis3-mont.pl
de72be2e 33 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/vis3-mont.pl $(CFLAGS) > $@
567a9e6f 34{- $builddir -}/sparct4-mont.S: {- $sourcedir -}/asm/sparct4-mont.pl
de72be2e 35 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/sparct4-mont.pl $(CFLAGS) > $@
567a9e6f 36{- $builddir -}/sparcv9-gf2m.S: {- $sourcedir -}/asm/sparcv9-gf2m.pl
de72be2e 37 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/sparcv9-gf2m.pl $(CFLAGS) > $@
567a9e6f
RL
38
39{- $builddir -}/bn-mips3.o: {- $sourcedir -}/asm/mips3.s
40 @if [ "$(CC)" = "gcc" ]; then \
41 ABI=`expr "$(CFLAGS)" : ".*-mabi=\([n3264]*\)"` && \
42 as -$$ABI -O -o $@ {- $sourcedir -}/asm/mips3.s; \
43 else $(CC) -c $(CFLAGS) -o $@ {- $sourcedir -}/asm/mips3.s; fi
44
45{- $builddir -}/bn-mips.s: {- $sourcedir -}/asm/mips.pl
de72be2e 46 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/mips.pl $(PERLASM_SCHEME) $@
567a9e6f 47{- $builddir -}/mips-mont.s: {- $sourcedir -}/asm/mips-mont.pl
de72be2e 48 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/mips-mont.pl $(PERLASM_SCHEME) $@
567a9e6f
RL
49
50{- $builddir -}/bn-s390x.o: {- $sourcedir -}/asm/s390x.S
51 $(CC) $(CFLAGS) -c -o $@ {- $sourcedir -}/asm/s390x.S
52{- $builddir -}/s390x-gf2m.s: {- $sourcedir -}/asm/s390x-gf2m.pl
de72be2e 53 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/s390x-gf2m.pl $(PERLASM_SCHEME) $@
567a9e6f
RL
54
55{- $builddir -}/x86_64-mont.s: {- $sourcedir -}/asm/x86_64-mont.pl
de72be2e 56 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/x86_64-mont.pl $(PERLASM_SCHEME) > $@
567a9e6f 57{- $builddir -}/x86_64-mont5.s: {- $sourcedir -}/asm/x86_64-mont5.pl
de72be2e 58 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/x86_64-mont5.pl $(PERLASM_SCHEME) > $@
567a9e6f 59{- $builddir -}/x86_64-gf2m.s: {- $sourcedir -}/asm/x86_64-gf2m.pl
de72be2e 60 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/x86_64-gf2m.pl $(PERLASM_SCHEME) > $@
567a9e6f 61{- $builddir -}/rsaz-x86_64.s: {- $sourcedir -}/asm/rsaz-x86_64.pl
de72be2e 62 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/rsaz-x86_64.pl $(PERLASM_SCHEME) > $@
567a9e6f 63{- $builddir -}/rsaz-avx2.s: {- $sourcedir -}/asm/rsaz-avx2.pl
de72be2e 64 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/rsaz-avx2.pl $(PERLASM_SCHEME) > $@
567a9e6f
RL
65
66{- $builddir -}/bn-ia64.s: {- $sourcedir -}/asm/ia64.S
67 $(CC) $(CFLAGS) -E {- $sourcedir -}/asm/ia64.S > $@
68{- $builddir -}/ia64-mont.s: {- $sourcedir -}/asm/ia64-mont.pl
de72be2e 69 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/ia64-mont.pl $@ $(CFLAGS)
567a9e6f
RL
70
71# GNU assembler fails to compile PA-RISC2 modules, insist on calling
72# vendor assembler...
73{- $builddir -}/pa-risc2W.o: {- $sourcedir -}/asm/pa-risc2W.s
de72be2e 74 CC="$(CC)" $(PERL) $(TOP)/util/fipsas.pl $(TOP) $< /usr/ccs/bin/as -o pa-risc2W.o {- $sourcedir -}/asm/pa-risc2W.s
567a9e6f 75{- $builddir -}/pa-risc2.o: {- $sourcedir -}/asm/pa-risc2.s
de72be2e 76 CC="$(CC)" $(PERL) $(TOP)/util/fipsas.pl $(TOP) $< /usr/ccs/bin/as -o pa-risc2.o {- $sourcedir -}/asm/pa-risc2.s
567a9e6f
RL
77
78{- $builddir -}/parisc-mont.s: {- $sourcedir -}/asm/parisc-mont.pl
de72be2e 79 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/parisc-mont.pl $(PERLASM_SCHEME) $@
567a9e6f
RL
80
81# ppc - AIX, Linux, MacOS X...
de72be2e
RL
82{- $builddir -}/bn-ppc.s: {- $sourcedir -}/asm/ppc.pl; CC="$(CC)" $(PERL) {- $sourcedir -}/asm/ppc.pl $(PERLASM_SCHEME) $@
83{- $builddir -}/ppc-mont.s: {- $sourcedir -}/asm/ppc-mont.pl;CC="$(CC)" $(PERL) {- $sourcedir -}/asm/ppc-mont.pl $(PERLASM_SCHEME) $@
84{- $builddir -}/ppc64-mont.s: {- $sourcedir -}/asm/ppc64-mont.pl;CC="$(CC)" $(PERL) {- $sourcedir -}/asm/ppc64-mont.pl $(PERLASM_SCHEME) $@
567a9e6f
RL
85
86{- $builddir -}/alpha-mont.s: {- $sourcedir -}/asm/alpha-mont.pl
87 (preproc=$$$$.$@.S; trap "rm $$preproc" INT; \
de72be2e 88 CC="$(CC)" $(PERL) {- $sourcedir -}/asm/alpha-mont.pl > $$preproc && \
567a9e6f
RL
89 $(CC) -E -P $$preproc > $@ && rm $$preproc)
90
91# GNU make "catch all"
92{- $builddir -}/%-mont.S: {- $sourcedir -}/asm/%-mont.pl
de72be2e 93 CC="$(CC)" $(PERL) $< $(PERLASM_SCHEME) $@
567a9e6f 94{- $builddir -}/%-gf2m.S: {- $sourcedir -}/asm/%-gf2m.pl
de72be2e 95 CC="$(CC)" $(PERL) $< $(PERLASM_SCHEME) $@
567a9e6f
RL
96
97{- $builddir -}/armv4-mont.o: {- $builddir -}/armv4-mont.S
98{- $builddir -}/armv4-gf2m.o: {- $builddir -}/armv4-gf2m.S
99{- $builddir -}/armv8-mont.o: {- $builddir -}/armv8-mont.S
100ENDRAW[Makefile]