This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: help | |
##@ General | |
# The help target prints out all targets with their descriptions organized | |
# beneath their categories. The categories are represented by '##@' and the | |
# target descriptions by '##'. The awk commands is responsible for reading the | |
# entire set of makefiles included in this invocation, looking for lines of the | |
# file as xyz: ## something, and then pretty-format the target and help. Then, | |
# if there's a line with ##@ something, that gets pretty-printed as a category. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"code.google.com/p/go.crypto/openpgp" | |
"code.google.com/p/go.crypto/openpgp/armor" | |
"fmt" | |
"io/ioutil" | |
"log" | |
) |