summaryrefslogtreecommitdiff
path: root/docs/tutorial
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2000-11-14 16:38:04 +0000
committerOwen Taylor <otaylor@src.gnome.org>2000-11-14 16:38:04 +0000
commitc879883dc650f7fbec9ccdfc5c047bce1bb08b6f (patch)
tree883259278c6470ba384ec68ad68cd61a24cbd901 /docs/tutorial
parent5dd656fa8d7da168ef2c11e0238f77a8e406db17 (diff)
downloadgtk+-c879883dc650f7fbec9ccdfc5c047bce1bb08b6f.tar.gz
Fix srcdir != builddir
Mon Nov 13 14:43:48 2000 Owen Taylor <otaylor@redhat.com> * demos/Makefile.am (test-inline-pixbufs.h): Fix srcdir != builddir * gtk/Makefile.am (INCLUDES): Add -I$(builddir)/gtk * gtk/stock-icons/Makefile.am (gtkstockpixbufs.h): Handles srcdir != builddir * modules/input/Makefile.am (INCLUDES): add $(top_srcdir)/gdk * configure.in (GTK_VERSION): Up to 1.3.2 * modules/input/Makefile.am (im_xim_la_SOURCES): Add gtkimcontextxim.h * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): Add missing doc comment.
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/Makefile.am8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/tutorial/Makefile.am b/docs/tutorial/Makefile.am
index d395c9a300..100e03f0ad 100644
--- a/docs/tutorial/Makefile.am
+++ b/docs/tutorial/Makefile.am
@@ -85,6 +85,8 @@ TUTORIAL_IT_FILES= html/gtk_tut_it.html \
html/gtk_tut_it-24.html \
text/gtk_tut_it.txt
+GTKDOCS_FIX=$(top_srcdir)/docs/gtkdocs_fix
+
.PHONY: htmldir textdir tutorial tutorial_it tutorial_fr
htmldir:
@@ -101,21 +103,21 @@ $(TUTORIAL_IT_FILES): tutorial_it
tutorial: htmldir textdir
(cd $(srcdir); sgml2html gtk_tut.sgml; \
- perl gtkdocs_fix gtk_tut*html; \
+ perl $(GTKDOCS_FIX) gtk_tut*html; \
mv gtk_tut*html html/; \
sgml2txt gtk_tut.sgml; \
mv gtk_tut.txt text/)
tutorial_it: htmldir textdir
(cd $(srcdir); sgml2html --language=it gtk_tut_it.sgml; \
- perl gtkdocs_fix gtk_tut_it*html; \
+ perl $(GTKDOCS_FIX) gtk_tut_it*html; \
mv gtk_tut_it*html html/; \
sgml2txt --language=it gtk_tut_it.sgml; \
mv gtk_tut_it.txt text/)
tutorial_fr: htmldir textdir
(cd $(srcdir); sgml2html --language=fr gtk_tut_fr.sgml; \
- perl gtkdocs_fix gtk_tut_fr*html; \
+ perl $(GTKDOCS_FIX) gtk_tut_fr*html; \
mv gtk_tut_fr*html html/; \
sgml2txt --language=fr gtk_tut_fr.sgml; \
mv gtk_tut_fr.txt text/)