summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorblsaws <blsaws@hotmail.com>2015-11-10 14:36:26 -0800
committerblsaws <blsaws@hotmail.com>2015-11-11 09:30:36 -0800
commit9186f91fdd23b59404e90988ca9ee2172797e8e2 (patch)
tree4eb7f87f05a34ddf691ca80103436efd534d98af /Makefile
parent9a772dc98c27f74ce64171289fe75ffb18e12213 (diff)
Move design_docs into docs/design
Change HTML theme for sphinx Fix makefile reference to old design_docs dir Change-Id: I848115c5901db8dc33aa4157bdbc8af430695f31 Signed-off-by: blsaws <blsaws@hotmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 8b2eba7..8a2612d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
BUILDDIR := build
-DESIGN_DOCS = $(wildcard design_docs/*.rst)
+DESIGN_DOCS = $(wildcard docs/design/*.rst)
.PHONY: clean html pdf bps all
@@ -9,11 +9,11 @@ clean:
rm -rf $(BUILDDIR)/*
bps: $(DESIGN_DOCS) | $(BUILDDIR)
- mkdir -p $(BUILDDIR)/design_docs
+ mkdir -p $(BUILDDIR)/docs/design
$(foreach f,$(DESIGN_DOCS),rst2html.py $(f) $(BUILDDIR)/$(f:.rst=.html);)
bps: $(DESIGN_DOCS) | $(BUILDDIR)
- mkdir -p $(BUILDDIR)/design_docs
+ mkdir -p $(BUILDDIR)/docs/design
$(foreach f,$(DESIGN_DOCS),rst2html.py $(f) $(BUILDDIR)/$(f:.rst=.pdf);)
$(BUILDDIR):