diff --git a/README.md b/README.md
index 87d3dcccc2d70726a81d9eb0c39432c89ee8787e..6c5f546109ffca543578617b752a92ec46408ea8 100644
--- a/README.md
+++ b/README.md
@@ -4,16 +4,21 @@ A WIP golang port of https://httpbin.org/.
 
 [![Build Status](https://travis-ci.org/mccutchen/go-httpbin.svg?branch=master)](http://travis-ci.org/mccutchen/go-httpbin)
 
+## Building
+
+```
+make
+```
+
 ## Testing
 
 ```
-go test
-go test -cover
-go test -coverprofile=cover.out && go tool cover -html=cover.out
+make test
+make testcover
 ```
 
 ## Running
 
 ```
-go build && ./go-httpbin
+make run
 ```