File: Makefile.am

package info (click to toggle)
gcompris 8.2.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 112,176 kB
  • ctags: 5,509
  • sloc: ansic: 48,377; python: 13,367; sh: 8,871; xml: 3,880; makefile: 949; perl: 30
file content (44 lines) | stat: -rw-r--r-- 913 bytes parent folder | download | duplicates (2)
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
34
35
36
37
38
39
40
41
42
43
44
## Process this file with automake to produce Makefile.in.

doc = gcompris.html

man_MANS = gcompris.6

EXTRA_DIST = overview.jpg \
	     overview.txt \
	     topic.dat \
	     overview.dia \
	     $(man_MANS)

gcompris_helpdir = $(datadir)/gnome/help/$(PACKAGE)/C

all: $(doc)

info_TEXINFOS = gcompris.texi

# No more install the documentation, it's not accurate enough
#install-data-local:
#	$(mkinstalldirs) $(DESTDIR)$(gcompris_helpdir)
#	$(INSTALL_DATA)  gcompris.html $(DESTDIR)$(gcompris_helpdir)
#	$(INSTALL_DATA)  $(srcdir)/overview.jpg $(DESTDIR)$(gcompris_helpdir)
#	$(INSTALL_DATA)  $(srcdir)/topic.dat $(DESTDIR)$(gcompris_helpdir)

%.html: %.texi
	texi2html -monolithic $<

%.eps: %.dia
	dia $< -e $@

%.ps: %.dvi
	dvips -o $@ $<

%.dvi: %.texi
	texi2dvi $<

%.pdf: %.ps
	ps2pdf $<

gcompris.pdf gcompris.dvi: overview.eps

clean-local:
	rm -f overview.eps gcompris.pdf gcompris.html gcompris.info