Deleted Added
full compact
Makefile (243933) Makefile (261037)
1#
2# OpenSSL/crypto/Makefile
3#
4
5DIR= crypto
6TOP= ..
7CC= cc
8INCLUDE= -I. -I$(TOP) -I../include $(ZLIB_INCLUDE)

--- 64 unchanged lines hidden (view full) ---

73uplink-x86.s: $(TOP)/ms/uplink-x86.pl
74 $(PERL) $(TOP)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@
75
76x86_64cpuid.s: x86_64cpuid.pl; $(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@
77ia64cpuid.s: ia64cpuid.S; $(CC) $(CFLAGS) -E ia64cpuid.S > $@
78ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@
79pariscid.s: pariscid.pl; $(PERL) pariscid.pl $(PERLASM_SCHEME) $@
80alphacpuid.s: alphacpuid.pl
1#
2# OpenSSL/crypto/Makefile
3#
4
5DIR= crypto
6TOP= ..
7CC= cc
8INCLUDE= -I. -I$(TOP) -I../include $(ZLIB_INCLUDE)

--- 64 unchanged lines hidden (view full) ---

73uplink-x86.s: $(TOP)/ms/uplink-x86.pl
74 $(PERL) $(TOP)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@
75
76x86_64cpuid.s: x86_64cpuid.pl; $(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@
77ia64cpuid.s: ia64cpuid.S; $(CC) $(CFLAGS) -E ia64cpuid.S > $@
78ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@
79pariscid.s: pariscid.pl; $(PERL) pariscid.pl $(PERLASM_SCHEME) $@
80alphacpuid.s: alphacpuid.pl
81 $(PERL) $< | $(CC) -E - | tee $@ > /dev/null
81 (preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
82 $(PERL) alphacpuid.pl > $$preproc && \
83 $(CC) -E $$preproc > $@ && rm $$preproc)
82
83testapps:
84 [ -z "$(THIS)" ] || ( if echo $(SDIRS) | fgrep ' des '; \
85 then cd des && $(MAKE) -e des; fi )
86 [ -z "$(THIS)" ] || ( cd pkcs7 && $(MAKE) -e testapps );
87 @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
88
89subdirs:

--- 129 unchanged lines hidden ---
84
85testapps:
86 [ -z "$(THIS)" ] || ( if echo $(SDIRS) | fgrep ' des '; \
87 then cd des && $(MAKE) -e des; fi )
88 [ -z "$(THIS)" ] || ( cd pkcs7 && $(MAKE) -e testapps );
89 @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
90
91subdirs:

--- 129 unchanged lines hidden ---