mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 19:30:10 +00:00
dfe5724765
Sat Mar 2 14:32:50 2002 Owen Taylor <otaylor@redhat.com> * configure.in: Default to --disable-gtk-doc (avoid Jade breakage) and --disable-static (static linking causes problems with Xft changes.) * autogen.sh: Add --enable-gtk-doc by default. * Makefile.am: Add a 'mydistcheck' rule that passes --enable-gtk-doc to the configure since that is needed for 'make dist'. * docs/tutorial/Makefile.am (dist-hook): Don't distribute the PDF file. (Rule doesn't work on my system, plus it's big.) * gtk/Makefile.am: 'make dist' fixes.
68 lines
1.3 KiB
Makefile
68 lines
1.3 KiB
Makefile
.PHONY: html pdf
|
|
|
|
EXTRA_DIST = \
|
|
gtk-tut.sgml \
|
|
images/arrow.png \
|
|
images/aspectframe.png \
|
|
images/base.png \
|
|
images/buttonbox.png \
|
|
images/buttons.png \
|
|
images/calendar.png \
|
|
images/colorsel.png \
|
|
images/entry.png \
|
|
images/eventbox.png \
|
|
images/filesel.png \
|
|
images/fixed.png \
|
|
images/frame.png \
|
|
images/gtkdial.png \
|
|
images/helloworld.png \
|
|
images/helloworld2.png \
|
|
images/label.png \
|
|
images/menu.png \
|
|
images/notebook.png \
|
|
images/packbox1.png \
|
|
images/packbox2.png \
|
|
images/paned.png \
|
|
images/progressbar.png \
|
|
images/radiobuttons.png \
|
|
images/rangewidgets.png \
|
|
images/rulers.png \
|
|
images/scribble.png \
|
|
images/scrolledwin.png \
|
|
images/spinbutton.png \
|
|
images/statusbar.png \
|
|
images/table.png \
|
|
images/tictactoe.png
|
|
|
|
if HAVE_DOCBOOK
|
|
html:
|
|
(cd $(srcdir); \
|
|
db2html gtk-tut.sgml; \
|
|
mv gtk-tut html; \
|
|
mkdir html/images; \
|
|
cp images/*.png html/images)
|
|
|
|
pdf:
|
|
(cd $(srcdir); db2pdf gtk-tut.sgml)
|
|
|
|
dist-hook: html
|
|
cp -Rp $(srcdir)/html $(distdir)
|
|
else
|
|
html:
|
|
echo "***"
|
|
echo "*** Warning: Tutorial not built"
|
|
echo "***"
|
|
|
|
pdf:
|
|
echo "***"
|
|
echo "*** Warning: Tutorial not built"
|
|
echo "***"
|
|
|
|
dist-hook:
|
|
echo "***"
|
|
echo "*** Warning: Tutorial not built"
|
|
echo "*** DISTRIBUTION IS INCOMPLETE"
|
|
echo "***"
|
|
endif
|
|
|