From 412480eb85028ab032f70e62a3c43b4959882f6a Mon Sep 17 00:00:00 2001 From: Mikkel Krautz Date: Mon, 16 May 2011 23:50:52 +0200 Subject: [PATCH] .exe suffix for binary on Windows. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 3dcd2c1..8b4d3fe 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,9 @@ include $(GOROOT)/src/Make.inc TARG = grumble +ifeq ($(GOOS),windows) +TARG:=$(TARG).exe +endif PACKAGES = \ pkg/packetdatastream \