From 892960c7125ac3de5de49800b735cbd7f9c65076 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 25 Aug 2012 22:16:46 -0400 Subject: [PATCH] Making the compiler report its subcommands --- gotime/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gotime/Makefile b/gotime/Makefile index a803d1d..1517eda 100644 --- a/gotime/Makefile +++ b/gotime/Makefile @@ -2,7 +2,7 @@ SOURCES := $(shell find src -name '*.go') TARGETS := $(patsubst src/%.go,bin/%,$(SOURCES)) bin/%: src/%.go - go build -o $@ $^ + go build -x -o $@ $^ all: $(TARGETS)