From 67fb6abccd237cebaefa3d62a34d465b62c30f15 Mon Sep 17 00:00:00 2001 From: Moritz Poldrack Date: Wed, 8 Feb 2023 14:22:19 +0100 Subject: [PATCH] add Makefile for generating assembler --- testdata/benchmarks/Makefile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 testdata/benchmarks/Makefile diff --git a/testdata/benchmarks/Makefile b/testdata/benchmarks/Makefile new file mode 100644 index 0000000..981a3be --- /dev/null +++ b/testdata/benchmarks/Makefile @@ -0,0 +1,3 @@ +.PHONY: asm-%.go +asm-%.go: asm-%_gen.go Makefile + go run $< -pkg yenc -stubs $@ -out $(patsubst asm-%.go,asm-%.s,$@) -- 2.45.2