blob: d63f00851a1af4453ab4d388fb8a8400ab32efe4 (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
helpdir = $(datadir)/gnome/help/$(app)/$(lang)
help_DATA = \
index.html \
topic.dat \
$(figs)
#Scrollkeeper related stuff
omf_dir=$(top_srcdir)/omf-install
EXTRA_DIST = $(app).sgml $(help_DATA) $(omffiles)
all: index.html omf
omf: $(omffiles)
-for omffile in $(omffiles); do \
which scrollkeeper-preinstall >/dev/null 2>&1 && scrollkeeper-preinstall $(DESTDIR)$(helpdir)/$(app).sgml $$omffile $(omf_dir)/$$omffile; \
done
index.html: $(app)/index.html
-cp $(app)/index.html .
# the wierd srcdir trick is because the db2html from the Cygnus RPMs
# cannot handle relative filenames
$(app)/index.html: $(srcdir)/$(app).sgml
-srcdir=`cd $(srcdir) && pwd`; \
db2html $$srcdir/$(app).sgml
app-dist-hook: index.html
-$(mkinstalldirs) $(distdir)/$(app)/stylesheet-images
-$(mkinstalldirs) $(distdir)/figures
-cp $(srcdir)/$(app)/*.html $(distdir)/$(app)
-cp $(srcdir)/$(app)/*.css $(distdir)/$(app)
-cp $(srcdir)/$(app)/stylesheet-images/*.png \
$(distdir)/$(app)/stylesheet-images
-cp $(srcdir)/$(app)/stylesheet-images/*.gif \
$(distdir)/$(app)/stylesheet-images
-cp $(srcdir)/figures/*.png \
$(distdir)/figures
install-data-am: index.html
-$(mkinstalldirs) $(DESTDIR)$(helpdir)/stylesheet-images
-$(mkinstalldirs) $(DESTDIR)$(helpdir)/figures
-cp $(srcdir)/$(app).sgml $(DESTDIR)$(helpdir)
-cp $(srcdir)/topic.dat $(DESTDIR)$(helpdir)
-for file in $(srcdir)/$(app)/*.html $(srcdir)/$(app)/*.css $(srcdir)/*.png; do \
basefile=`echo $$file | sed -e 's,^.*/,,'`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(helpdir)/$$basefile; \
done
-for file in $(srcdir)/figures/*.png; do \
basefile=`echo $$file | sed -e 's,^.*/,,'`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(helpdir)/figures/$$basefile; \
done
-for file in $(srcdir)/$(app)/stylesheet-images/*.png; do \
basefile=`echo $$file | sed -e 's,^.*/,,'`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(helpdir)/stylesheet-images/$$basefile; \
done
-for file in $(srcdir)/$(app)/stylesheet-images/*.gif; do \
basefile=`echo $$file | sed -e 's,^.*/,,'`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(helpdir)/stylesheet-images/$$basefile; \
done
$(app).ps: $(srcdir)/$(app).sgml
-srcdir=`cd $(srcdir) && pwd`; \
db2ps $$srcdir/$(app).sgml
$(app).rtf: $(srcdir)/$(app).sgml
-srcdir=`cd $(srcdir) && pwd`; \
db2ps $$srcdir/$(app).sgml
|