Makefileの修正
[YACASL2.git] / doc / Makefile
1 DOCS := install manual
2 CSS := style.css
3
4 prefix ?= ~
5 infodir ?= $(prefix)/share/info
6
7 .PHONY: base all info html htmls pdf distclean clean
8
9 base: install.txt info html
10
11 all: base htmls pdf
12
13 info: yacasl2.info
14
15 html: $(addsuffix .html,$(DOCS))
16
17 htmls: $(addsuffix _html,$(DOCS))
18
19 pdf: $(addsuffix .pdf,$(DOCS))
20
21 yacasl2.info: manual.texi
22         $(MAKEINFO) $(MAKEINFO_FLAGS) $<
23
24 distclean: texinfo-distclean
25
26 clean: texinfo-clean
27
28 include texinfo.mk
29
30 include install-info.mk