 
# JAM style makefile for yajl

#PREF_CCFLAGS 	= $(CCOPTFLAG) ;		# Turn optimisation on
PREF_CCFLAGS    = $(CCDEBUGFLAG) ;		# Debugging flags
#PREF_CCFLAGS	= $(CCHEAPDEBUG) ;		# Heap Debugging flags
PREF_LINKFLAGS	= $(LINKDEBUGFLAG) ;	# Link debugging flags

SubInclude yajl ;

#Products
Libraries = libjcnf ;
Executables = ;
Headers = jcnf.h ;

#Install
#InstallBin ../bin : $(Executables) ;
#InstallFile ./h : $(Headers) ;
#InstallLib ./lib : $(Libraries) ;

# config parser based on yajl 
Library libjcnf : jcnf.c ;

# Link all utilities here with libicc
LINKLIBS = libjcnf yajl/libyajl ../numlib/libnum ;

# All utils are made from a single source file 
MainsFromSources test.c ;




