Commit 149b1807 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

Replace alphacpuid.s with alphacpuid.pl to ensure it makes to release tar-balls.

PR: 2309
parent 39438ff6
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -74,6 +74,8 @@ x86_64cpuid.s: x86_64cpuid.pl; $(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@
ia64cpuid.s:	ia64cpuid.S;	$(CC) $(CFLAGS) -E ia64cpuid.S > $@
ppccpuid.s:	ppccpuid.pl;	$(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@
pariscid.s:	pariscid.pl;	$(PERL) pariscid.pl $(PERLASM_SCHEME) $@
alphacpuid.s:	alphacpuid.pl
	$(PERL) $< | $(CC) -E - | tee $@ > /dev/null

testapps:
	[ -z "$(THIS)" ] || (	if expr " $(SDIRS) " : ".* des " >/dev/null; \
+3 −0
Original line number Diff line number Diff line
#!/usr/bin/env perl
print <<___;
.text

.set	noat
@@ -123,3 +125,4 @@ OPENSSL_cleanse:
	br	.Little
.Ldone: ret	($26)
.end	OPENSSL_cleanse
___