8c3bc594e0
C preprocessor flags get separated from C flags, which has the advantage that we don't get loads of macro definitions and inclusion directory specs when linking shared libraries, DSOs and programs. This is a step to add support for "make variables" when configuring. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5177)
19 lines
797 B
Text
19 lines
797 B
Text
LIBS=../../libcrypto
|
|
SOURCE[../../libcrypto]=\
|
|
set_key.c ecb_enc.c cbc_enc.c \
|
|
ecb3_enc.c cfb64enc.c cfb64ede.c cfb_enc.c \
|
|
ofb64ede.c ofb64enc.c ofb_enc.c \
|
|
str2key.c pcbc_enc.c qud_cksm.c rand_key.c \
|
|
{- $target{des_asm_src} -} \
|
|
fcrypt.c xcbc_enc.c cbc_cksm.c
|
|
|
|
GENERATE[des_enc-sparc.S]=asm/des_enc.m4
|
|
GENERATE[dest4-sparcv9.S]=asm/dest4-sparcv9.pl $(PERLASM_SCHEME)
|
|
INCLUDE[dest4-sparcv9.o]=..
|
|
|
|
GENERATE[des-586.s]=asm/des-586.pl \
|
|
$(PERLASM_SCHEME) $(CFLAGS) $(LIB_CFLAGS) $(CPPFLAGS) $(LIB_CPPFLAGS)
|
|
DEPEND[des-586.s]=../perlasm/x86asm.pl ../perlasm/cbc.pl
|
|
GENERATE[crypt586.s]=asm/crypt586.pl \
|
|
$(PERLASM_SCHEME) $(CFLAGS) $(LIB_CFLAGS) $(CPPFLAGS) $(LIB_CPPFLAGS)
|
|
DEPEND[crypt586.s]=../perlasm/x86asm.pl ../perlasm/cbc.pl
|