expanded guide coverage
Change-Id: I7b7aae5a554561f2f714e7443b0f5ae1ca653e3f
diff --git a/docs/Makefile b/docs/Makefile
index cc12bb6..befefd6 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -1,17 +1,22 @@
default: book
-book:
+build:
ln -s ../platform-install/docs platform-install; \
ln -s ../../test/cord-tester/docs test; \
ln -s ../../orchestration/xos/docs xos; \
+ ln -s ../../orchestration/xos-gui/docs xos-gui; \
ln -s ../../orchestration/profiles profiles; \
- gitbook init; gitbook serve &
+ gitbook init; gitbook install; gitbook build
+book: build
+ gitbook serve &
clean:
rm -rf _book; \
+ rm -rf node_modules; \
rm platform-install; \
rm test; \
rm profiles; \
- rm xos
+ rm xos; \
+ rm xos-gui