
# 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 $(NT) {
	SubInclude libusbw ;
}
if $(UNIX) && $(OS) != MACOSX {
	SubInclude jcnf ;
	SubInclude ucmm ;
}
if $(UNIX) {
	SubInclude libusb ;
}

