From e1b6c642ab4a64bc75ee1c6f2ab8c0256a06eb21 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Mon, 13 Feb 2012 22:34:27 +0100 Subject: [PATCH] move the makefile down --- ex/Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ex/Makefile b/ex/Makefile index ca3365b5..8eedcdcb 100644 --- a/ex/Makefile +++ b/ex/Makefile @@ -1,5 +1,4 @@ -.PHONY: ex clean - +.PHONY: ex EXAMPLES=mx \ chaos \ key2ds \ @@ -9,7 +8,4 @@ EXAMPLES=mx \ q \ ex: - for i in $(EXAMPLES); do echo $$i; go build dns/ex/$$i; done - -clean: - rm -f $(EXAMPLES) + for i in $(EXAMPLES); do echo $$i; (cd $$i && go build); done