move the makefile down

This commit is contained in:
Miek Gieben 2012-02-13 22:34:27 +01:00
parent 483911d566
commit e1b6c642ab
1 changed files with 2 additions and 6 deletions

View File

@ -1,5 +1,4 @@
.PHONY: ex clean .PHONY: ex
EXAMPLES=mx \ EXAMPLES=mx \
chaos \ chaos \
key2ds \ key2ds \
@ -9,7 +8,4 @@ EXAMPLES=mx \
q \ q \
ex: ex:
for i in $(EXAMPLES); do echo $$i; go build dns/ex/$$i; done for i in $(EXAMPLES); do echo $$i; (cd $$i && go build); done
clean:
rm -f $(EXAMPLES)