##################################################################
# Pablo System: Pablo/FuzzyLibrary/Makefile
#
#   - ALL CONFIGURATION PARAMETERS are defined in Makefile.defines,
#   - BE SURE you tailor Makefile.defines to your installation's 
#     filenames and requirements before running this Makefile.
#   - use gnumake instead of make

# Change TOP to your installation directory.  
# Default is your current directory
TOP := .

.PHONY : Makefile $(TOP)/Makefile.defines   # explicitly mark PHONY to save time
include $(TOP)/Makefile.defines		    # common configuration parms


# ################################################################
# Default target: all 
#	Composed of subgoals for FuzzyLibrary
#
.PHONY : all FUZZYlib 

all:    FUZZYlib  
FUZZYlib:
	$(MAKE) -C Library/Build

# ###############
# Targets install  
#
.PHONY : install all

install:  all
	$(MAKE) -C Library/Build install

# #############
# Targets clean
#
.PHONY : cleanLib  cleanAll

cleanLib: 
	(cd Library/Build; ./makeClean)

clean: cleanLib 
