summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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):