1
0
mirror of https://github.com/golang/go synced 2024-10-02 18:08:33 -06:00

windows: append executable extension (done as per Russ' suggestion)

R=rsc
CC=brainman, golang-dev
https://golang.org/cl/1690053
This commit is contained in:
Joe Poirier 2010-07-14 17:21:13 -07:00 committed by Russ Cox
parent 0432f289f7
commit 9028d6bf7c

View File

@ -11,6 +11,10 @@ QUOTED_GOROOT:=$(subst $(space),\ ,$(GOROOT))
include $(QUOTED_GOROOT)/src/Make.common
ifeq ($(GOOS),windows)
TARG:=$(TARG).exe
endif
PREREQ+=$(patsubst %,%.make,$(DEPS))
$(TARG): _go_.$O $(OFILES)