~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to gd/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
AUTOMAKE_OPTIONS = 1.4
 
4
 
 
5
LIBS=${FT_LIBS} ${PNG_LIBS} ${JPEG_LIBS} ${XPM_LIBS} ${Z_LIBS} ${ICONV_LIBS} @LIBS@
 
6
 
 
7
noinst_HEADERS = gd.h gd_io.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h \
 
8
         gdfontg.h jisx0208.h gdcache.h wbmp.h
 
9
noinst_LTLIBRARIES = libgd.la
 
10
 
 
11
noinst_PROGRAMS = fontwheeltest fontsizetest gdtestft
 
12
 
 
13
fontwheeltest_SOURCES = fontwheeltest.c
 
14
 
 
15
fontsizetest_SOURCES = fontsizetest.c
 
16
 
 
17
gdtestft_SOURCES = gdtestft.c
 
18
 
 
19
libgd_la_SOURCES = gd.c gd_gd.c gd_gd2.c gd_io.c gd_io_dp.c gd_io_file.c \
 
20
        gd_ss.c gd_io_ss.c gd_gif.c gd_jpeg.c gd_png.c gdcache.c \
 
21
        gdfontg.c gdfontl.c gdfontmb.c gdfonts.c gdfontt.c gdhelpers.c \
 
22
        gdkanji.c gdtables.c gdft.c gdttf.c gdxpm.c wbmp.c gd_wbmp.c \
 
23
        gd_topal.c \
 
24
        gd.h gd_io.h gdcache.h gdfontg.h gdfontl.h gdfontmb.h \
 
25
        gdfonts.h gdfontt.h jisx0208.h wbmp.h gdhelpers.h
 
26
 
 
27
fontwheeltest_LDADD = libgd.la ${LIBS}
 
28
 
 
29
fontsizetest_LDADD = libgd.la ${LIBS}
 
30
 
 
31
gdtestft_LDADD = libgd.la ${LIBS}
 
32
 
 
33
# keep the contents of the original gd-2.0.1 distribution
 
34
EXTRA_DIST = Makefile.nt Makefile.orig bdftogd \
 
35
        gd2copypal.c gd2time.c gd2topng.c gddemo.c testac.c \
 
36
        gdparttopng.c gdtest.c gdtopng.c gd_arc_f_buggy.c \
 
37
        giftogd.c mathmake.c pngtogd.c pngtogd2.c webpng.c \
 
38
        install-item index.html arc \
 
39
        readme.txt readme.jpn README-JPEG.TXT alphachanneltest.html \
 
40
        demoin.png antialiased.png arc bresenham_ellipse \
 
41
        test/gdtest.gd2 test/gdtest.png test/gdtest_200_300_150_100.png \
 
42
        test/gdtest_merge.png test/gdtest_wbmp_to_png.png \
 
43
        nmakefile Makefile.IN
 
44
 
 
45
INCLUDES=@EXTRA_INCLUDES@ \
 
46
        ${FT_INCLUDES} \
 
47
        ${TTF_INCLUDES} \
 
48
        ${Z_INCLUDES} \
 
49
        ${PNG_INCLUDES} \
 
50
        ${JPEG_INCLUDES} \
 
51
        ${XPM_INCLUDES}