summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Peterson <mkp@src.gnome.org>1999-08-26 19:37:55 +0000
committerMartin Peterson <mkp@src.gnome.org>1999-08-26 19:37:55 +0000
commitbb4cf82e16e5dde6659489903adc40e37070329b (patch)
tree728db39aa540b7a4381f0f2fef4109b70601dd66
parentca02ecaf09a04794c7f6ac7f100444e91c024c44 (diff)
downloadgdm-bb4cf82e16e5dde6659489903adc40e37070329b.tar.gz
Missing file.
Missing file.
-rw-r--r--docs/C/Makefile.am38
1 files changed, 38 insertions, 0 deletions
diff --git a/docs/C/Makefile.am b/docs/C/Makefile.am
new file mode 100644
index 00000000..21276286
--- /dev/null
+++ b/docs/C/Makefile.am
@@ -0,0 +1,38 @@
+gdm_helpdir = $(datadir)/gnome/help/gdm/C
+
+gdm_help_DATA = \
+ gdm.html
+
+SGML_FILES = gdm.sgml
+
+EXTRA_DIST = \
+ $(SGML_FILES)
+
+all:
+
+gdm.html: gdm/gdm.html
+ -cd $(srcdir) && cp gdm/gdm.html .
+
+gdm/gdm.html: $(SGML_FILES)
+ -cd $(srcdir) && db2html gdm.sgml
+
+dist-hook:
+ mkdir $(distdir)/gdm
+ -cp $(srcdir)/gdm/*.html gdm/*.css $(distdir)/gdm
+ -cp $(srcdir)/gdm.html $(distdir)
+ mkdir $(distdir)/images
+ -cp $(srcdir)/images/*.gif $(srcdir)/images/*.jpg $(distdir)/images
+
+install-data-local: gdm.html
+ $(mkinstalldirs) $(gdm_helpdir)/images
+ -for file in $(srcdir)/gdm/*.html $(srcdir)/gdm/*.css; do \
+ basefile=`basename $$file`; \
+ $(INSTALL_DATA) $$file $(gdm_helpdir)/$$basefile; \
+ done
+
+gdm.ps: $(SGML_FILES)
+ db2ps $<
+
+gdm.rtf: $(SGML_FILES)
+ -db2rtf $<
+