diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2012-07-03 22:53:01 +0200 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2012-07-03 22:53:36 +0200 |
| commit | b4a0968667c346780e3097136267570c5616a2db (patch) | |
| tree | 13722a8b0be53f694fb9ca59351a03c4b7ac1edf | |
| parent | 0adc32d0798b479dc17e286460ba04570fd8cdb0 (diff) | |
| download | rockbox-b4a0968667c346780e3097136267570c5616a2db.zip rockbox-b4a0968667c346780e3097136267570c5616a2db.tar.gz rockbox-b4a0968667c346780e3097136267570c5616a2db.tar.bz2 rockbox-b4a0968667c346780e3097136267570c5616a2db.tar.xz | |
Manual: make sure output folder exists to fix -j.
Change-Id: Ic8a36f8e4e39bf03cb88204d90e89c822e51034e
| -rw-r--r-- | manual/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/manual/Makefile b/manual/Makefile index de4e2cd..410d5a6 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) \ |