Revision 19072,
1.5 KB
checked in by ghudson, 22 years ago
(diff) |
Don't build examples; the KDE one is problematic.
|
Line | |
---|
1 | ## Process this file with automake to create Makefile.in. |
---|
2 | |
---|
3 | SUBDIRS= pango modules docs tools tests |
---|
4 | |
---|
5 | EXTRA_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 | |
---|
22 | if HAVE_X |
---|
23 | X_PC=pangox.pc |
---|
24 | endif |
---|
25 | |
---|
26 | if HAVE_XFT |
---|
27 | XFT_PC=pangoxft.pc |
---|
28 | endif |
---|
29 | |
---|
30 | if HAVE_FREETYPE |
---|
31 | FT2_PC=pangoft2.pc |
---|
32 | endif |
---|
33 | |
---|
34 | if HAVE_WIN32 |
---|
35 | WIN32_PC=pangowin32.pc |
---|
36 | endif |
---|
37 | |
---|
38 | pkgconfigdir = $(libdir)/pkgconfig |
---|
39 | pkgconfig_DATA = pango.pc $(X_PC) $(XFT_PC) $(FT2_PC) $(WIN32_PC) |
---|
40 | |
---|
41 | dist-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 | # |
---|
47 | mydistcheck: 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.