File: Jamfile

package info (click to toggle)
argyll 3.3.0%2Brepack-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,012 kB
  • sloc: ansic: 402,916; javascript: 36,570; xml: 1,551; sh: 520; makefile: 428
file content (46 lines) | stat: -rwxr-xr-x 2,056 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46


#PREF_CCFLAGS 	+= $(CCOPTFLAG) ;		# Turn optimisation on
PREF_CCFLAGS	+= $(CCDEBUGFLAG) ;		# Debugging flags
PREF_LINKFLAGS	+= $(LINKDEBUGFLAG) ;

#Products
Libraries = libscanrd ;
Executables = scanin ;
Headers = scanrd.h ;
Samples = it8.cht it8Wolf.cht ColorChecker.cht ColorChecker.cie ColorCheckerDC.cht
          Hutchcolor.cht i1_RGB_Scan_1.4.cht
          ColorCheckerDC.ti2 ColorCheckerSG.cht ColorCheckerSG.ti2
          ColorCheckerPassport.cht ColorCheckerPassport.cie ColorCheckerPassport.ti2
          ColorCheckerHalfPassport.cht ColorCheckerHalfPassport.cie ColorCheckerHalfPassport.ti2
          QPcard_201.cht QPcard_201.cie QPcard_202.cht QPcard_202.cie CMP_DT_003.cht
          CMP_Digital_Target-4.cht CMP_Digital_Target-4.ti2 CMP_Digital_Target-4.cie
          CMP_Digital_Target-7.cht CMP_Digital_Target-2019.cht CMP_Digital_Target_Studio.cht
          CMP_DT_mini.cht
          LaserSoftDCPro.cht ISO12641_2_1.cht ISO12641_2_3_1.cht ISO12641_2_3_2.cht
          ISO12641_2_3_3.cht SpyderChecker.cht SpyderChecker.cie SpyderChecker24.cht
          SpyderChecker24.cie ;

#Install
InstallBin  $(DESTDIR)$(PREFIX)/bin : $(Executables) ;
InstallFile $(DESTDIR)$(PREFIX)/$(REFSUBDIR) : $(Samples) ;
#InstallFile $(DESTDIR)$(PREFIX)/h : $(Headers) ;
#InstallLib  $(DESTDIR)$(PREFIX)/lib : $(Libraries) ;

# Chart recognition library
Library libscanrd : scanrd.c : : : ../numlib ;

LINKFLAGS += $(GUILINKFLAGS) ;

# IT8 chart reader - sucks in tiff file and spits out cgats file
Main scanin : scanin.c ;
# ObjectHdrs scanin : ../h ../cgats ../numlib ../icc ../rspl ../gamut ../xicc $(TIFFINC) ;
ObjectHdrs scanin : ../h ../numlib ../icc ../cgats ../rspl ../xicc ../gamut ../spectro $(TIFFINC) ;
LinkLibraries scanin : libscanrd ../xicc/libxicc ../spectro/libinsttypes 
                       ../gamut/libgamut ../rspl/librspl ../cgats/libcgats
                       ../icc/libicc ../plot/libplot ../plot/libvrml
                       ../spectro/libconv ../numlib/libnum ../numlib/libui
                       $(TIFFLIB) $(JPEGLIB) ;