summaryrefslogtreecommitdiff
path: root/scanin/Jamfile
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2014-09-01 13:56:46 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2014-09-01 13:56:46 +0200
commit22f703cab05b7cd368f4de9e03991b7664dc5022 (patch)
tree6f4d50beaa42328e24b1c6b56b6ec059e4ef21a5 /scanin/Jamfile
Initial import of argyll version 1.5.1-8debian/1.5.1-8
Diffstat (limited to 'scanin/Jamfile')
-rw-r--r--scanin/Jamfile33
1 files changed, 33 insertions, 0 deletions
diff --git a/scanin/Jamfile b/scanin/Jamfile
new file mode 100644
index 0000000..b6e58f1
--- /dev/null
+++ b/scanin/Jamfile
@@ -0,0 +1,33 @@
+
+
+#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 ColorChecker.cht ColorChecker.cie ColorCheckerDC.cht
+ ColorCheckerSG.cht Hutchcolor.cht i1_RGB_Scan_1.4.cht
+ ColorCheckerPassport.cht ColorCheckerPassport.cie
+ QPcard_201.cht QPcard_201.cie QPcard_202.cht QPcard_202.cie CMP_DT_003.cht
+ CMP_Digital_Target-3.cht CMP_Digital_Target-3.ti2 CMP_Digital_Target-3.cie
+ LaserSoftDCPro.cht SpyderChecker.cht SpyderChecker.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 ;
+
+# 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 ../numlib/libnum ../plot/libplot ../plot/libvrml $(TIFFLIB) $(JPEGLIB) ;