"SfR Fresh" - the SfR Freeware/Shareware Archive 
Member "pango-1.20.5/examples/Makefile.am" of archive pango-1.20.5.tar.gz:
As a special service "SfR Fresh" has tried to format the requested source page into HTML format using source code syntax highlighting with prefixed line numbers.
Alternatively you can here view or download the uninterpreted source code file.
That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
1 ## Process this file with automake to create Makefile.in.
2
3 EXTRA_DIST = \
4 pangowin32tobmp.c
5
6 INCLUDES = \
7 -I$(top_srcdir) \
8 $(PANGO_DEBUG_FLAGS) \
9 $(GLIB_CFLAGS) \
10 $(XFT_CFLAGS) \
11 $(CAIRO_CFLAGS) \
12 $(FREETYPE_CFLAGS) \
13 $(X_CFLAGS)
14
15 noinst_PROGRAMS =
16
17 if HAVE_CAIRO_PNG
18 noinst_PROGRAMS += cairosimple cairotwisted cairoshape
19
20 cairosimple_LDADD = \
21 ../pango/libpango-$(PANGO_API_VERSION).la \
22 ../pango/libpangocairo-$(PANGO_API_VERSION).la \
23 $(GLIB_LIBS) \
24 $(CAIRO_LIBS)
25 if HAVE_FREETYPE
26 cairosimple_LDADD += \
27 ../pango/libpangoft2-$(PANGO_API_VERSION).la
28 endif
29 cairotwisted_LDADD = $(cairosimple_LDADD)
30 cairoshape_LDADD = $(cairosimple_LDADD)
31 endif