~ubuntu-branches/ubuntu/saucy/argyll/saucy

« back to all changes in this revision

Viewing changes to xicc/Jamfile

  • Committer: Package Import Robot
  • Author(s): Christian Marillat
  • Date: 2012-04-25 07:46:07 UTC
  • mfrom: (1.2.2) (13.1.15 sid)
  • Revision ID: package-import@ubuntu.com-20120425074607-yjqadetw8kum9skc
Tags: 1.4.0-4
Should Build-Depends on libusb-dev (Closes: #670329).

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#InstallLib  $(DESTDIR)$(PREFIX)/lib : $(Libraries) ;
18
18
 
19
19
HDRS = ../h ../icc ../rspl ../cgats ../numlib ../gamut ../spectro ../profile
20
 
       ../plot $(TIFFINC) $(LibWinH) ;
 
20
       ../plot $(TIFFINC) $(JPEGINC) $(LibWinH) ;
21
21
 
22
22
# XICC library
23
 
Library libxicc :  xicc.c xlutfix.c xspect.c xsep.c xcolorants.c xutils.c xdevlin.c
24
 
        xcam.c cam97s3.c cam02.c mpp.c ccmx.c xfit.c xdgb.c moncurve.c xcal.c ;
 
23
Library libxicc :  xicc.c xlutfix.c xspect.c xsep.c xcolorants.c xutils.c iccjpeg.c xdevlin.c
 
24
        xcam.c cam97s3.c cam02.c mpp.c ccmx.c ccss.c xfit.c xdgb.c moncurve.c xcal.c ;
25
25
 
26
26
# colorant library. Use instead of libxicc
27
27
Object xcolorants2 : xcolorants.c ;
29
29
 
30
30
# standalone utilities library. Use instead of libxicc
31
31
Object xutils2 : xutils.c ;
32
 
LibraryFromObjects libxutils : xutils2 ;
 
32
Object iccjpeg2 : iccjpeg.c ;
 
33
LibraryFromObjects libxutils : xutils2 iccjpeg2 ;
33
34
 
34
35
# Utilities / test programs
35
36
 
49
50
Main iccgamut : iccgamut.c ;
50
51
 
51
52
# tiff file gamut utility
52
 
Main tiffgamut : tiffgamut.c : : : $(TIFFINC) : : $(TIFFLIB) ;
 
53
Main tiffgamut : tiffgamut.c : : : $(TIFFINC) $(JPEGINC) : : $(TIFFLIB) $(JPEGLIB) ;
53
54
 
54
55
# diagnostic utility
55
56
if [ GLOB . : tiffgmts.c ]  {
56
 
        Main tiffgmts : tiffgmts.c : : : $(TIFFINC) : : $(TIFFLIB) ../plot/libvrml ;
 
57
        Main tiffgmts : tiffgmts.c : : : $(TIFFINC) $(JPEGINC) : : $(TIFFLIB) $(JPEGLIB) ../plot/libvrml ;
57
58
}
58
59
 
59
60
# Reverse profile fixer
63
64
Main mpplu : mpplu.c ;
64
65
 
65
66
# Embedded ICC profile extractor
66
 
Main extracticc : extracticc.c : : : $(TIFFINC) : : $(TIFFLIB) ;
 
67
Main extracticc : extracticc.c : : : $(TIFFINC) $(JPEGINC) : : $(TIFFLIB) $(JPEGLIB) ;
67
68
 
68
69
# Text tag from ICC profile extracto
69
 
Main extractttag : extractttag.c : : : $(TIFFINC) : : $(TIFFLIB) ;
 
70
Main extractttag : extractttag.c : : : $(TIFFINC) $(JPEGINC) : : $(TIFFLIB) $(JPEGLIB) ;
70
71
 
71
72
# xcolorant lookup test
72
73
Main xcolorantslu : xcolorantslu.c ;
123
124
#Home = ' d:\usr\graeme ' and PWD = ' /src/argyll/xicc '
124
125
if $(HOME) = "d:\\usr\\graeme" && $(PWD) = "/src/argyll/xicc" {
125
126
        #Create test TIFF file for cam02 conversion
126
 
        Main cam02plot : cam02plot.c : : : $(TIFFINC) : : $(TIFFLIB) ;
127
 
        Main cam02logplot : cam02logplot.c : : : $(TIFFINC) : : $(TIFFLIB) ;
128
 
        Main cam02delplot : cam02delplot.c : : : $(TIFFINC) : : $(TIFFLIB) ;
 
127
        Main cam02plot : cam02plot.c : : : $(TIFFINC) $(JPEGINC) : : $(TIFFLIB) $(JPEGLIB) ;
 
128
        Main cam02logplot : cam02logplot.c : : : $(TIFFINC) $(JPEGINC) : : $(TIFFLIB) $(JPEGLIB) ;
 
129
        Main cam02delplot : cam02delplot.c : : : $(TIFFINC) $(JPEGINC) : : $(TIFFLIB) $(JPEGLIB) ;
129
130
        Main cam02vecplot : cam02vecplot.c : : : : : ../plot/libvrml ;
130
131
}
131
132