Commit fcc0c002 authored by Eric Clark's avatar Eric Clark Committed by Russ Cox

Make.cmd: remove $(OFILES)

The linker doesn't support multiple object files (maybe it did in the past?)

R=rsc
CC=golang-dev
https://golang.org/cl/2444041
parent e6ecf976
...@@ -12,8 +12,8 @@ include $(QUOTED_GOROOT)/src/Make.common ...@@ -12,8 +12,8 @@ include $(QUOTED_GOROOT)/src/Make.common
PREREQ+=$(patsubst %,%.make,$(DEPS)) PREREQ+=$(patsubst %,%.make,$(DEPS))
$(TARG): _go_.$O $(OFILES) $(TARG): _go_.$O
$(LD) -o $@ _go_.$O $(OFILES) $(LD) -o $@ _go_.$O
_go_.$O: $(GOFILES) $(PREREQ) _go_.$O: $(GOFILES) $(PREREQ)
$(GC) -o $@ $(GOFILES) $(GC) -o $@ $(GOFILES)
......
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