summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Clark <zerohp@gmail.com>2010-10-11 22:39:37 -0400
committerEric Clark <zerohp@gmail.com>2010-10-11 22:39:37 -0400
commit1c6e81df40661eaa7156528e99e32e442e8860aa (patch)
tree6cc8b8dda1b6c7856e215000fa7aed89f7e08a84
parente4ab7f44e71a40d908efe34ebab0c0acb5e608f9 (diff)
downloadgo-1c6e81df40661eaa7156528e99e32e442e8860aa.tar.gz
Make.cmd: remove $(OFILES)
The linker doesn't support multiple object files (maybe it did in the past?) R=rsc CC=golang-dev http://codereview.appspot.com/2444041 Committer: Russ Cox <rsc@golang.org>
-rw-r--r--src/Make.cmd4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Make.cmd b/src/Make.cmd
index 73622f5a5..34f5663bc 100644
--- a/src/Make.cmd
+++ b/src/Make.cmd
@@ -12,8 +12,8 @@ include $(QUOTED_GOROOT)/src/Make.common
PREREQ+=$(patsubst %,%.make,$(DEPS))
-$(TARG): _go_.$O $(OFILES)
- $(LD) -o $@ _go_.$O $(OFILES)
+$(TARG): _go_.$O
+ $(LD) -o $@ _go_.$O
_go_.$O: $(GOFILES) $(PREREQ)
$(GC) -o $@ $(GOFILES)