summaryrefslogtreecommitdiff
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
parent0adc32d0798b479dc17e286460ba04570fd8cdb0 (diff)
downloadrockbox-b4a0968667c346780e3097136267570c5616a2db.tar.gz
rockbox-b4a0968667c346780e3097136267570c5616a2db.zip
Manual: make sure output folder exists to fix -j.
Change-Id: Ic8a36f8e4e39bf03cb88204d90e89c822e51034e
-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:
44 44
45$(OBJDIR)/CREDITS.tex: $(DOCSDIR)/CREDITS 45$(OBJDIR)/CREDITS.tex: $(DOCSDIR)/CREDITS
46 @echo "processing $(notdir $^)" 46 @echo "processing $(notdir $^)"
47 $(SILENT)mkdir -p $(OBJDIR)
47 $(SILENT)perl credits.pl < $(DOCSDIR)/CREDITS > $@ 48 $(SILENT)perl credits.pl < $(DOCSDIR)/CREDITS > $@
48 49
49$(OBJDIR)/version.tex: 50$(OBJDIR)/version.tex:
50 @echo "creating $(notdir $@)" 51 @echo "creating $(notdir $@)"
52 $(SILENT)mkdir -p $(OBJDIR)
51 $(SILENT)printf "%s%%" $(VERSION) > $@ 53 $(SILENT)printf "%s%%" $(VERSION) > $@
52 54
53$(OBJDIR)/features.tex: $(ROOTDIR)/apps/features.txt 55$(OBJDIR)/features.tex: $(ROOTDIR)/apps/features.txt
54 @echo "processing $(notdir $^)" 56 @echo "processing $(notdir $^)"
57 $(SILENT)mkdir -p $(OBJDIR)
55 $(SILENT)mkdir -p `dirname $@` 58 $(SILENT)mkdir -p `dirname $@`
56 $(SILENT) for f in \ 59 $(SILENT) for f in \
57 $$(cat $< | $(HOSTCC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \ 60 $$(cat $< | $(HOSTCC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \