File: Makefile.am

package info (click to toggle)
ipadic 2.4.4-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 20,636 kB
  • ctags: 5
  • sloc: sh: 330; makefile: 102
file content (33 lines) | stat: -rw-r--r-- 654 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
TEXINFO_TEX = texinfo.tex
info_TEXINFOS = ipadic-ja.texi
ipadic_ja_TEXINFOS = ipadic-v.texi
EXTRA_DIST    = ipadic-ja.pdf
HTMLS = $(patsubst %.texinfo,%_toc.html,$(info_TEXINFOS))

CLEANFILES = *.info*

# SUFFIXES = .texi  .info .dvi _toc.html
SUFFIXES = .texi .pdf

.texi.info:
	$(MAKEINFO) $< 

.texi.dvi:
	TEX=$(TEX) TEXINPUTS=.:$$TEXINPUTS \
	  MAKEINFO='$(MAKEINFO) -I $(srcdir)' \
	  $(TEXI2DVI) $<

# %_toc.html: %.texi
# 	$(TEXI2HTML) -I $(srcdir) -split_chapter $<

# %_toc.html: %.texinfo
# 	$(TEXI2HTML) -I $(srcdir) -split_chapter $<

# # Automake does not have HTML support.
# .PHONY: html

# html: $(HTMLS)

# clean-local:
# 	rm -f *.html