Replace alphacpuid.s with alphacpuid.pl to ensure it makes to release tar-balls [from HEAD].

PR: 2309
This commit is contained in:
Andy Polyakov 2010-07-26 22:09:59 +00:00
parent 982d68a0c0
commit f6f2f68a05
2 changed files with 6 additions and 1 deletions

View File

@ -75,6 +75,8 @@ x86_64cpuid.s: x86_64cpuid.pl
ia64cpuid.s: ia64cpuid.S ia64cpuid.s: ia64cpuid.S
$(CC) $(CFLAGS) -E ia64cpuid.S > $@ $(CC) $(CFLAGS) -E ia64cpuid.S > $@
ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@ ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@
alphacpuid.s: alphacpuid.pl
$(PERL) $< | $(CC) -E - | tee $@ > /dev/null
testapps: testapps:
[ -z "$(THIS)" ] || ( if echo $(SDIRS) | fgrep ' des '; \ [ -z "$(THIS)" ] || ( if echo $(SDIRS) | fgrep ' des '; \

View File

@ -1,3 +1,5 @@
#!/usr/bin/env perl
print <<___;
.text .text
.set noat .set noat
@ -123,3 +125,4 @@ OPENSSL_cleanse:
br .Little br .Little
.Ldone: ret ($26) .Ldone: ret ($26)
.end OPENSSL_cleanse .end OPENSSL_cleanse
___