~ubuntu-branches/ubuntu/saucy/libjpeg6b/saucy

« back to all changes in this revision

Viewing changes to debian/extra/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Bill Allombert
  • Date: 2006-05-05 19:14:25 UTC
  • mfrom: (2.1.2 dapper)
  • Revision ID: james.westby@ubuntu.com-20060505191425-pzcv55yz97684z9c
Tags: 6b-13
* The "If at first you don't succeed..." release. 
* Change --enable-maxmem to 1024, following Guido advice.
  This should fix the slowdowns with large files (for large < 1Gb):
  closes: #356556, #365025, Thanks Nicolas.
  If you hit performance problems, please set the JPEGMEM variable to
  about half your available RAM, see jpegtran(1).
* Update libjpeg-progs README.Debian to reflect the new patch set and
  the JPEGMEM feature.
* Bump standard version to 3.7.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CFLAGS = -O2 -Wall -g
 
2
CC = cc
 
3
INSTALL = install -m755 -o root -g root
 
4
DESTDIR =
 
5
prefix  = /usr/local
 
6
bindir  = $(prefix)/bin
 
7
mandir  = $(prefix)/share/man/man1
 
8
 
 
9
all: jpegexiforient
 
10
 
 
11
jpegexiforient: jpegexiforient.c
 
12
        $(CC) $(CFLAGS) -o jpegexiforient jpegexiforient.c
 
13
clean:
 
14
        -rm -f jpegexiforient
 
15
install:
 
16
        $(INSTALL) jpegexiforient    $(DESTDIR)$(bindir)
 
17
        $(INSTALL) jpegexiforient.1  $(DESTDIR)$(mandir)
 
18
        $(INSTALL) exifautotran      $(DESTDIR)$(bindir)
 
19
        $(INSTALL) exifautotran.1    $(DESTDIR)$(mandir)