source: trunk/third/pango/Makefile.am @ 18248

Revision 18248, 1.5 KB checked in by ghudson, 21 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18247, which included commits to RCS files with non-trunk default branches.
Line 
1## Process this file with automake to create Makefile.in.
2
3SUBDIRS= pango modules examples docs tools tests
4
5EXTRA_DIST =            \
6        pango.spec.in   \
7        pango.pc.in     \
8        pangox.pc.in    \
9        pangoxft.pc.in  \
10        pangoft2.pc.in  \
11        pangowin32.pc.in        \
12        pango-uninstalled.pc.in         \
13        pangox-uninstalled.pc.in        \
14        pangoxft-uninstalled.pc.in      \
15        pangoft2-uninstalled.pc.in      \
16        pangowin32-uninstalled.pc.in    \
17        TODO.xml        \
18        README.win32    \
19        pango-zip.sh    \
20        sanitize-la.sh
21
22if HAVE_X
23X_PC=pangox.pc
24endif
25
26if HAVE_XFT
27XFT_PC=pangoxft.pc
28endif
29
30if HAVE_FREETYPE
31FT2_PC=pangoft2.pc
32endif
33
34if HAVE_WIN32
35WIN32_PC=pangowin32.pc
36endif
37
38pkgconfigdir = $(libdir)/pkgconfig
39pkgconfig_DATA = pango.pc $(X_PC) $(XFT_PC) $(FT2_PC) $(WIN32_PC)
40
41dist-hook: pango.spec
42        cp pango.spec $(distdir)
43
44# This is a version of the automake-1.4 distcheck rule modified
45# to pass --enable-gtk-doc to ./configure
46#
47mydistcheck: dist
48        -rm -rf $(distdir)
49        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
50        mkdir $(distdir)/=build
51        mkdir $(distdir)/=inst
52        dc_install_base=`cd $(distdir)/=inst && pwd`; \
53        cd $(distdir)/=build \
54          && ../configure --srcdir=.. --prefix=$$dc_install_base --enable-gtk-doc \
55          && $(MAKE) $(AM_MAKEFLAGS) \
56          && $(MAKE) $(AM_MAKEFLAGS) dvi \
57          && $(MAKE) $(AM_MAKEFLAGS) check \
58          && $(MAKE) $(AM_MAKEFLAGS) install \
59          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
60          && $(MAKE) $(AM_MAKEFLAGS) dist
61        -rm -rf $(distdir)
62        @banner="$(distdir).tar.gz is ready for distribution"; \
63        dashes=`echo "$$banner" | sed s/./=/g`; \
64        echo "$$dashes"; \
65        echo "$$banner"; \
66        echo "$$dashes"
Note: See TracBrowser for help on using the repository browser.