aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2015-12-08 12:22:45 +0100
committerMattias Andrée <maandree@member.fsf.org>2015-12-08 12:22:45 +0100
commit028adf5cefe3344317a39dcde5d73cc530007a12 (patch)
treebd2264194de60485c3d80bbdf24befe87f02c2fe /Makefile
parenttouch .po files when update, incase .pot is newer but without updates (diff)
downloadscrotty-028adf5cefe3344317a39dcde5d73cc530007a12.tar.gz
scrotty-028adf5cefe3344317a39dcde5d73cc530007a12.tar.bz2
scrotty-028adf5cefe3344317a39dcde5d73cc530007a12.tar.xz
structural improvements to the texinfo manual
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to '')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 961f96d..30f7daf 100644
--- a/Makefile
+++ b/Makefile
@@ -131,35 +131,35 @@ doc: info pdf dvi ps html
.PHONY: info
info: bin/scrotty.info
-bin/%.info: doc/info/%.texinfo doc/info/*.texinfo
+bin/%.info: doc/info/%.texinfo doc/info/*.texinfo doc/info/*/*.texinfo
@$(MKDIR) -p bin
$(MAKEINFO) $<
$(MV) $*.info $@
.PHONY: pdf
pdf: bin/scrotty.pdf
-bin/%.pdf: doc/info/%.texinfo doc/info/*.texinfo
+bin/%.pdf: doc/info/%.texinfo doc/info/*.texinfo doc/info/*/*.texinfo
@$(MKDIR) -p obj/pdf bin
cd obj/pdf && $(TEXI2PDF) ../../$< $(TEXINFO_FLAGS) < /dev/null
$(MV) obj/pdf/$*.pdf $@
.PHONY: dvi
dvi: bin/scrotty.dvi
-bin/%.dvi: doc/info/%.texinfo doc/info/*.texinfo
+bin/%.dvi: doc/info/%.texinfo doc/info/*.texinfo doc/info/*/*.texinfo
@$(MKDIR) -p obj/dvi bin
cd obj/dvi && $(TEXI2DVI) ../../$< $(TEXINFO_FLAGS) < /dev/null
$(MV) obj/dvi/$*.dvi $@
.PHONY: ps
ps: bin/scrotty.ps
-bin/%.ps: doc/info/%.texinfo doc/info/*.texinfo
+bin/%.ps: doc/info/%.texinfo doc/info/*.texinfo doc/info/*/*.texinfo
@$(MKDIR) -p obj/ps bin
cd obj/ps && $(TEXI2PS) ../../$< $(TEXINFO_FLAGS) < /dev/null
$(MV) obj/ps/$*.ps $@
.PHONY: html
html: bin/html/scrotty/index.html
-bin/html/scrotty/index.html: doc/info/scrotty.texinfo doc/info/*.texinfo
+bin/html/scrotty/index.html: doc/info/scrotty.texinfo doc/info/*.texinfo doc/info/*/*.texinfo
@$(MKDIR) -p bin/html
cd bin/html && $(MAKEINFO_HTML) ../../$< < /dev/null