From d5807c20a467a066d90d7bce5807660925c772a1 Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Fri, 19 Jun 2015 08:48:14 -0700 Subject: [PATCH] Add back top-level "make docs" Just to make life easier on devs so they don't need to 'cd' into the docs dir just to test their docs edits. This doesn't do anything more than "cd docs && make docs" so that all of the smarts are still in the docs's Makefile and not in docker's. Signed-off-by: Doug Davis Upstream-commit: 2bc0d2bf511fdea831817ab9aaff1b5aab7c86a2 Component: engine --- components/engine/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/engine/Makefile b/components/engine/Makefile index 22b700cd89..0b6844d8cc 100644 --- a/components/engine/Makefile +++ b/components/engine/Makefile @@ -70,3 +70,6 @@ build: bundles bundles: mkdir bundles + +docs: + $(MAKE) -C docs docs