#************************************************
#*  BCL: Makefile                               *
#*  =============                               *
#*                                              *
#*  file makefile                               *
#*  `````````````                               *
#*  Makefile to build all BCL examples          *
#*                                              *
#*  (c) 2008 Fair Isaac Corporation             *
#*      author: S.Heipcke, 2004                 *
#************************************************

all:
	cd C/IntrExpl; $(MAKE)
	cd C/AdvExpl; $(MAKE)
	cd C/UGExpl; $(MAKE)
	cd Cxx/IntrExpl; $(MAKE)
	cd Cxx/AdvExpl; $(MAKE)
	cd Cxx/UGExpl; $(MAKE)
	cd Java/IntrExpl; $(MAKE)
	cd Java/AdvExpl; $(MAKE)
	cd Java/UGExpl; $(MAKE)
	


