From 116ebe5af827e5df7cd64f308b62c8aa94ee7bd5 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 21 Mar 2014 13:37:09 -0700 Subject: [PATCH] mk: Add docs to dist prep For integrating doc upload into the dist-snap process --- mk/dist.mk | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/mk/dist.mk b/mk/dist.mk index 60662c2a3d5b..1954e325a5af 100644 --- a/mk/dist.mk +++ b/mk/dist.mk @@ -20,6 +20,7 @@ # * dist-win - Windows exe installers # * dist-osx - OS X .pkg installers # * dist-tar-bins - Ad-hoc Unix binary installers +# * dist-docs - Stage docs for upload PKG_NAME = $(CFG_PACKAGE_NAME) @@ -185,6 +186,17 @@ $(foreach host,$(CFG_HOST),\ $(eval $(call DEF_INSTALLER,$(host)))) +###################################################################### +# Docs +###################################################################### + +# Just copy the docs to a folder under dist with the appropriate name +# for uploading to S3 +dist-docs: docs compiler-docs + $(Q) mkdir -p dist/doc/ + $(Q) cp -r doc dist/doc/$(CFG_PACKAGE_VERS) + + ###################################################################### # Primary targets (dist, distcheck) ######################################################################