~ubuntu-branches/ubuntu/hardy/ghostscript/hardy

« back to all changes in this revision

Viewing changes to libpng/scripts/makefile.freebsd

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2007-11-22 12:17:43 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071122121743-cd70s3ypq0r243mp
Tags: 8.61.dfsg.1-0ubtuntu1
* New upstream release
  o Final 8.61 release
* debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes.
* debian/rules: Updated CUPS-related variables for "make install" calls.
* debian/rules: Remove /usr/include/ghostscript from the ghostscript
  package, they go into lings-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
LDADD+=         -lm -lz
25
25
DPADD+=         ${LIBM} ${LIBZ}
26
26
 
27
 
CFLAGS+= -I. -DPNG_USE_PNGGCCRD
 
27
CFLAGS+= -I.
28
28
.if (${MACHINE_ARCH} != "i386")
29
29
CFLAGS+= -DPNG_NO_MMX_CODE
30
30
.endif
31
31
 
32
32
SRCS=   png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \
33
33
        pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \
34
 
        pngwtran.c pngmem.c pngerror.c pngpread.c pnggccrd.c
 
34
        pngwtran.c pngmem.c pngerror.c pngpread.c
35
35
 
36
36
pngtest: pngtest.o libpng.a
37
37
        ${CC} ${CFLAGS} -L. -static -o pngtest pngtest.o -lpng -lz -lm