~ubuntu-branches/ubuntu/lucid/ghostscript/lucid

« back to all changes in this revision

Viewing changes to libpng/contrib/pngminim/decoder/makefile.std

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2010-02-11 11:31:23 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20100211113123-adqlyx3balu9rbwb
Tags: 8.71.dfsg.1-0ubuntu1
* New upstream release
   o libtiff-based tiff file output
   o New "tiffsep1" output device produces halftoned separations at 1 bit
     per pixel
   o Improved FreeType-based font rasterizing (not yet used as default)
   o Improved graphics library for vector graphics conversions
   o Many bug fixes on the PCL-XL printer drivers ("pxlmono", "pxlcolor")
   o Fixes on back side handling for duplex printing in the CUPS Raster
     output device ("cups").
* debian/patches/gs-cups-rgb-gamma.dpatch,
  debian/patches/cljet5-mediasize-fix.dpatch,
  debian/patches/pxl-driver-fixes.dpatch,
  debian/patches/gs-cups-fix-backside-on-duplex-jobs.dpatch: Removed patches
  backported from upstream.
* debian/patches/fix-build-of-executables.dpatch: Fix build of the "gs"
  executable, it was built as a shared library and not as an executable.
  This lead to an immediate segfault even before "main()" got called.
  Thanks to Robin Watts from Ghostscript for the quick fix.
* debian/control: Added build dependency on libtiff-dev.
* debian/ghostscript.links: s/8.70/8.71/

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile for PngMinus (pngm2pnm)
2
 
# Linux / Unix
3
 
 
4
 
#CC=cc
5
 
CC=gcc
6
 
LD=$(CC)
7
 
 
8
 
RM=rm -f
9
 
 
10
 
CFLAGS=-DPNG_USER_CONFIG -DNO_GZCOMPRESS -DNO_GZIP \
11
 
       -DdeflateParams\(a,b,c\)=Z_OK -I. -O1
12
 
 
13
 
C=.c
14
 
O=.o
15
 
L=.a
16
 
E=
17
 
 
18
 
ZOBJS  = adler32$(O) crc32$(O) gzio$(O) \
19
 
         infback$(O) inffast$(O) inflate$(O) inftrees$(O) \
20
 
         trees$(O) uncompr$(O) zutil$(O)
21
 
 
22
 
OBJS  = pngm2pnm$(O) png$(O) pngerror$(O) pngget$(O) pngmem$(O) \
23
 
        pngread$(O) pngrio$(O) pngrtran$(O) pngrutil$(O) \
24
 
        pngset$(O) pngtrans$(O)  $(ZOBJS)
25
 
 
26
 
# implicit make rules -------------------------------------------------------
27
 
 
28
 
.c$(O): png.h pngconf.h pngusr.h zlib.h
29
 
        $(CC) -c $(CFLAGS) $<
30
 
 
31
 
# dependencies
32
 
 
33
 
all: pngm2pnm$(E)
34
 
 
35
 
pngm2pnm$(E): $(OBJS)
36
 
        $(LD) -o pngm2pnm$(E) $(OBJS)
37
 
        strip pngm2pnm$(E)
38
 
 
39
 
clean:
40
 
        $(RM) pngm2pnm$(O)
41
 
        $(RM) pngm2pnm$(E)
42
 
        $(RM) $(OBJS)
43
 
 
44
 
# End of makefile for pngm2pnm