diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-08 12:22:45 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-08 12:22:45 +0100 |
commit | 028adf5cefe3344317a39dcde5d73cc530007a12 (patch) | |
tree | bd2264194de60485c3d80bbdf24befe87f02c2fe /Makefile | |
parent | touch .po files when update, incase .pot is newer but without updates (diff) | |
download | scrotty-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-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |