~ubuntu-branches/ubuntu/karmic/photoprint/karmic

« back to all changes in this revision

Viewing changes to imagesource/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Milan Zamazal
  • Date: 2007-05-01 16:32:13 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20070501163213-k0gaendx7grjlmk5
Tags: upstream-0.3.5
ImportĀ upstreamĀ versionĀ 0.3.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
noinst_LTLIBRARIES = libimagesource.la
4
4
 
5
5
libimagesource_la_SOURCES =     \
 
6
        imagesource.cpp         \
6
7
        imagesource.h           \
7
8
        imagesource_types.h     \
8
9
        imagesource_bilinear.cpp        \
12
13
        imagesource_cms.cpp     \
13
14
        imagesource_cms.h       \
14
15
        imagesource_crop.cpp    \
15
 
        imagesource_crop.h      \
 
16
        imagesource_crop.h      \
 
17
        imagesource_dither.cpp  \
 
18
        imagesource_dither.h    \
 
19
        imagesource_desaturate.cpp      \
 
20
        imagesource_desaturate.h        \
 
21
        imagesource_downsample.cpp      \
 
22
        imagesource_downsample.h        \
16
23
        imagesource_flatten.cpp \
17
24
        imagesource_flatten.h   \
18
25
        imagesource_gdkpixbuf.cpp       \
34
41
        imagesource_scale.cpp   \
35
42
        imagesource_scale.h     \
36
43
        imagesource_segmentmask.cpp \
37
 
        imagesource_segmentmask.h \
 
44
        imagesource_segmentmask.h \
 
45
        imagesource_solid.cpp   \
 
46
        imagesource_solid.h     \
38
47
        imagesource_tiff.cpp    \
39
48
        imagesource_tiff.h      \
40
49
        imagesource_util.cpp    \
41
50
        imagesource_util.h      \
42
51
        pixbuf_from_imagesource.cpp     \
43
 
        pixbuf_from_imagesource.h
 
52
        pixbuf_from_imagesource.h       \
 
53
        iccjpeg.cpp     \
 
54
        iccjpeg.h
44
55
 
45
56
libimagesource_la_LDFLAGS = -static
 
57
 
 
58
check_PROGRAMS=test
 
59
 
 
60
test_DEPENDENCIES=libimagesource.la
 
61
test_SOURCES=test.cpp
 
62
test_LDADD= -L. -limagesource -L../support/ -lsupport -L../profilemanager/ -lprofilemanager $(TIFF_LIBS) $(JPEG_LIBS) $(LCMS_LIBS) $(GTK2_LIBS)
 
63