Commit 766d042e authored by Russ Cox's avatar Russ Cox

fix garbage benchmark Makefile.

apparently some versions of GNU make cannot
handle the %: %.$O rule.  i don't understand why
and don't care enough to find out.

R=agl1
CC=golang-dev
https://golang.org/cl/206055
parent c5287ecb
...@@ -32,9 +32,7 @@ src/pkg/runtime/runtime.acid.* ...@@ -32,9 +32,7 @@ src/pkg/runtime/runtime.acid.*
test/pass.out test/pass.out
test/run.out test/run.out
test/times.out test/times.out
test/garbage/parser test/garbage/*.out
test/garbage/peano
test/garbage/tree
syntax:regexp syntax:regexp
^pkg/ ^pkg/
......
...@@ -9,16 +9,16 @@ ALL=\ ...@@ -9,16 +9,16 @@ ALL=\
peano\ peano\
tree\ tree\
all: $(ALL) all: $(addsuffix .out, $(ALL))
%.$O: %.go %.$O: %.go
$(GC) $*.go $(GC) $*.go
%: %.$O %.out: %.$O
$(LD) -o $@ $*.$O $(LD) -o $@ $*.$O
%.bench: % %.bench: %.out
./$* ./$*.out
bench: $(addsuffix .bench, $(ALL)) bench: $(addsuffix .bench, $(ALL))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment