summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2012-07-03 22:53:01 +0200
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2012-07-03 22:53:36 +0200
commitb4a0968667c346780e3097136267570c5616a2db (patch)
tree13722a8b0be53f694fb9ca59351a03c4b7ac1edf /manual
parent0adc32d0798b479dc17e286460ba04570fd8cdb0 (diff)
Manual: make sure output folder exists to fix -j.
Change-Id: Ic8a36f8e4e39bf03cb88204d90e89c822e51034e
Diffstat (limited to 'manual')
-rw-r--r--manual/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/manual/Makefile b/manual/Makefile
index de4e2cdece..410d5a68f5 100644
--- a/manual/Makefile
+++ b/manual/Makefile
@@ -44,14 +44,17 @@ $(OBJDIR)/$(MANFILE).tex:
$(OBJDIR)/CREDITS.tex: $(DOCSDIR)/CREDITS
@echo "processing $(notdir $^)"
+ $(SILENT)mkdir -p $(OBJDIR)
$(SILENT)perl credits.pl < $(DOCSDIR)/CREDITS > $@
$(OBJDIR)/version.tex:
@echo "creating $(notdir $@)"
+ $(SILENT)mkdir -p $(OBJDIR)
$(SILENT)printf "%s%%" $(VERSION) > $@
$(OBJDIR)/features.tex: $(ROOTDIR)/apps/features.txt
@echo "processing $(notdir $^)"
+ $(SILENT)mkdir -p $(OBJDIR)
$(SILENT)mkdir -p `dirname $@`
$(SILENT) for f in \
$$(cat $< | $(HOSTCC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \