Adding back the zip download option
diff --git a/CHANGELOG.md b/CHANGELOG.md
index df549d0..50acf7d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,8 @@
 - Fixed #163: Was detecting std lib packages when the GOROOT was different at
   runtime than compile time.
 - Fixed #165: glide update panics with --no-recursive option.
+- Added back zip build option to build scripts. This is useful for some
+  environments.
 
 # Release 0.8.0 (2015-12-10)
 
diff --git a/Makefile b/Makefile
index a340dae..5d31ee0 100644
--- a/Makefile
+++ b/Makefile
@@ -39,6 +39,7 @@
 	$(DIST_DIRS) cp ../LICENSE {} \; && \
 	$(DIST_DIRS) cp ../README.md {} \; && \
 	$(DIST_DIRS) tar -zcf glide-${VERSION}-{}.tar.gz {} \; && \
+	$(DIST_DIRS) zip -r glide-${VERSION}-{}.zip {} \; && \
 	cd ..