mirror of
https://github.com/openssl/openssl.git
synced 2024-12-27 19:03:41 +08:00
e84193e43d
As part of this, change util/mkdef.pl to stop adding libraries to depend on in its output. mkdef.pl should ONLY output a symbol vector. Because symbol names can't be longer than 31 characters, we use the compiler to shorten those that are longer down to 23 characters plus an 8 character CRC. To make sure users of our header files will pick up on that automatically, add the DEC C supported extra headers files __decc_include_prologue.h and __decc_include_epilogue.h. Furthermore, we add a config.com, so VMS people can configure just as comfortably as any Unix folks, thusly: @config Reviewed-by: Rich Salz <rsalz@openssl.org>
53 lines
2.3 KiB
Plaintext
53 lines
2.3 KiB
Plaintext
{- use File::Spec::Functions qw/catdir catfile/; -}
|
|
LIBS=../libcrypto
|
|
SOURCE[../libcrypto]=\
|
|
cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c cpt_err.c \
|
|
ebcdic.c uid.c o_time.c o_str.c o_dir.c thr_id.c lock.c \
|
|
o_init.c o_fips.c mem_sec.c init.c {- $target{cpuid_asm_src} -}
|
|
EXTRA= ../ms/uplink-x86.pl ../ms/uplink.c ../ms/applink.c \
|
|
x86cpuid.pl x86_64cpuid.pl ia64cpuid.S \
|
|
ppccpuid.pl pariscid.pl alphacpuid.pl arm64cpuid.pl armv4cpuid.pl
|
|
|
|
DEPEND[cversion.o]=buildinf.h
|
|
|
|
BEGINRAW[descrip.mms]
|
|
[.crypto]buildinf.h : descrip.mms
|
|
$(PERL) {- catfile(catdir($sourcedir, "[-]"), "util", "mkbuildinf.pl") -} "$(CC) $(CFLAGS)" "$(PLATFORM)" > [.crypto]buildinf.h
|
|
ENDRAW[descrip.mms]
|
|
|
|
BEGINRAW[Makefile]
|
|
crypto/buildinf.h : Makefile
|
|
$(PERL) $(SRCDIR)/util/mkbuildinf.pl "$(CC) $(CFLAGS)" "$(PLATFORM)" > crypto/buildinf.h
|
|
|
|
##### APPLINK, UPLINK and CPUID assembler implementations
|
|
|
|
{- $builddir -}/applink.o: $(SRCDIR)/ms/applink.c
|
|
$(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/applink.c
|
|
|
|
{- $builddir -}/uplink.o: $(SRCDIR)/ms/uplink.c {- $builddir -}/applink.o
|
|
$(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/uplink.c
|
|
|
|
{- $builddir -}/uplink-x86.s: $(SRCDIR)/ms/uplink-x86.pl
|
|
$(PERL) $(TOP)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@
|
|
|
|
{- $builddir -}/x86cpuid.s: {- $sourcedir -}/x86cpuid.pl {- $sourcedir -}/perlasm/x86asm.pl
|
|
$(PERL) {- $sourcedir -}/x86cpuid.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
|
|
|
{- $builddir -}/x86_64cpuid.s: {- $sourcedir -}/x86_64cpuid.pl
|
|
$(PERL) {- $sourcedir -}/x86_64cpuid.pl $(PERLASM_SCHEME) > $@
|
|
{- $builddir -}/ia64cpuid.s: {- $sourcedir -}/ia64cpuid.S
|
|
$(CC) $(CFLAGS) -E {- $sourcedir -}/ia64cpuid.S > $@
|
|
{- $builddir -}/ppccpuid.s: {- $sourcedir -}/ppccpuid.pl
|
|
$(PERL) {- $sourcedir -}/ppccpuid.pl $(PERLASM_SCHEME) $@
|
|
{- $builddir -}/pariscid.s: {- $sourcedir -}/pariscid.pl
|
|
$(PERL) {- $sourcedir -}/pariscid.pl $(PERLASM_SCHEME) $@
|
|
{- $builddir -}/alphacpuid.s: {- $sourcedir -}/alphacpuid.pl
|
|
(preproc=$$$$.$@.S; trap "rm $$preproc" INT; \
|
|
$(PERL) {- $sourcedir -}/alphacpuid.pl > $$preproc && \
|
|
$(CC) -E -P $$preproc > $@ && rm $$preproc)
|
|
{- $builddir -}/arm64cpuid.S: {- $sourcedir -}/arm64cpuid.pl
|
|
$(PERL) {- $sourcedir -}/arm64cpuid.pl $(PERLASM_SCHEME) > $@
|
|
{- $builddir -}/armv4cpuid.S: {- $sourcedir -}/armv4cpuid.pl
|
|
$(PERL) {- $sourcedir -}/armv4cpuid.pl $(PERLASM_SCHEME) > $@
|
|
ENDRAW[Makefile]
|