From 22f703cab05b7cd368f4de9e03991b7664dc5022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 1 Sep 2014 13:56:46 +0200 Subject: Initial import of argyll version 1.5.1-8 --- Jamfile | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 Jamfile (limited to 'Jamfile') diff --git a/Jamfile b/Jamfile new file mode 100644 index 0000000..1e38a48 --- /dev/null +++ b/Jamfile @@ -0,0 +1,67 @@ + +# Top level Argyll Jamfile. + +# Overall optization state and configuration. Overrides sub-Jamfiles +# See Jamtop and Jambase for other details. + +PREF_CCFLAGS = $(CCOPTFLAG) ; # Turn optimisation on +#PREF_CCFLAGS = $(CCDEBUGFLAG) ; # Debugging flags +#PREF_CCFLAGS = $(CCHEAPDEBUG) ; # Heap Debugging flags +#PREF_LINKFLAGS = $(LINKOPTFLAG) ; # Link optimization flags +PREF_LINKFLAGS = $(LINKDEBUGFLAG) ; # Link debugging flags +#PREF_CCFLAGS = $(CCPROFFLAG) ; # Profile flags +#PREF_LINKFLAGS = $(LINKPROFFLAG) ; # Profile flags + +# Include all the sub-directory Jamfiles + +SubInclude numlib ; +SubInclude plot ; +SubInclude icc ; +#SubInclude icc4 ; +SubInclude cgats ; +SubInclude rspl ; +SubInclude gamut ; +SubInclude xicc ; +SubInclude imdi ; +SubInclude spectro ; +SubInclude target ; +SubInclude scanin ; +SubInclude profile ; +SubInclude link ; +SubInclude tweak ; +SubInclude render ; + +if ! $(HAVE_TIFF) { + SubInclude tiff ; +} + +if ! $(HAVE_JPEG) { + SubInclude jpg ; +} + +if ! $(USE_NATIVE_USB) { + + if $(USE_LIBUSB1) = true { + SubInclude libusb1 ; + } else { + if $(NT) { + SubInclude libusbw ; + } + if $(UNIX) { + SubInclude libusb ; + } + } +} else { + if $(NT) { + SubInclude usb ; + } +} + +if $(UNIX) && $(OS) != MACOSX { + SubInclude jcnf ; + SubInclude ucmm ; +} + +if $(OS) = FREEBSD || $(OS) = OPENBSD { + SubInclude libusb ; +} -- cgit v1.2.3