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