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 70
|
# This file gets included by the applets' Makefile.am
# they should set $(applet) to their name, and $(figs)
# to the images they reference
#
# Sample:
#
# applet = modemlights
# lang = C
# figs = modemlights-advpref.png modemlights-prefs.png modemlights.png
# include $(top_srcdir)/applet-docs.make
docdir = $(datadir)/gnome/help/$(applet)_applet/$(lang)
doc_DATA = \
index.html \
topic.dat \
$(figs)
sgml_files = \
$(sgml_ents) \
$(applet)-applet.sgml
# automake does not know anything about .sgml files yet -> EXTRA_DIST
EXTRA_DIST = $(sgml_files) $(doc_DATA)
all: index.html
index.html: $(applet)-applet/index.html
-cp $(applet)-applet/index.html .
$(applet)-applet.sgml: $(sgml_ents)
-ourdir=`pwd`; \
cd $(srcdir); \
cp $(sgml_ents) $$ourdir
$(applet)-applet/index.html: $(applet)-applet.sgml
-srcdir=`cd $(srcdir) && pwd`; \
db2html $$srcdir/$(applet)-applet.sgml
applet-dist-hook: index.html
-$(mkinstalldirs) $(distdir)/$(applet)-applet/stylesheet-images
-cp $(srcdir)/$(applet)-applet/*.html $(distdir)/$(applet)-applet
-cp $(srcdir)/$(applet)-applet/*.css $(distdir)/$(applet)-applet
-cp $(srcdir)/$(applet)-applet/*.png $(distdir)/$(applet)-applet
-cp $(srcdir)/$(applet)-applet/stylesheet-images/*.gif \
$(distdir)/$(applet)-applet/stylesheet-images
install-data-am: index.html
-$(mkinstalldirs) $(DESTDIR)$(docdir)/stylesheet-images
-cp $(srcdir)/topic.dat $(DESTDIR)$(docdir)
-for file in \
$(applet)-applet/*.html \
$(applet)-applet/*.css \
$(srcdir)/*.png; do\
basefile=`echo $$file | sed -e 's,^.*/,,'`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(docdir)/$$basefile; \
done
-for file in \
$(applet)-applet/stylesheet-images/*.gif; do \
basefile=`echo $$file | sed -e 's,^.*/,,'`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(docdir)/stylesheet-images/$$basefile; \
done
$(applet)-applet.ps: $(srcdir)/$(applet)-applet.sgml $(srcdir)/$(applet).sgml
-srcdir=`cd $(srcdir) && pwd`; \
db2ps $$srcdir/$(applet)-applet.sgml
$(applet)-applet.rtf: $(srcdir)/$(applet)-applet.sgml $(srcdir)/$(applet).sgml
-srcdir=`cd $(srcdir) && pwd`; \
db2ps $$srcdir/$(applet)-applet.sgml
|