# GNU Make solution makefile autogenerated by Premake
# Type "make help" for usage help

ifndef config
  config=release
endif
export config

PROJECTS := CluE BICO_Experiments BICO_Quickstart

.PHONY: all clean help $(PROJECTS)

all: $(PROJECTS)

CluE: 
	@echo "==== Building CluE ($(config)) ===="
	@${MAKE} --no-print-directory -C . -f CluE.make

BICO_Experiments: CluE
	@echo "==== Building BICO_Experiments ($(config)) ===="
	@${MAKE} --no-print-directory -C . -f BICO_Experiments.make

BICO_Quickstart: CluE
	@echo "==== Building BICO_Quickstart ($(config)) ===="
	@${MAKE} --no-print-directory -C . -f BICO_Quickstart.make

clean:
	@${MAKE} --no-print-directory -C . -f CluE.make clean
	@${MAKE} --no-print-directory -C . -f BICO_Experiments.make clean
	@${MAKE} --no-print-directory -C . -f BICO_Quickstart.make clean

help:
	@echo "Usage: make [config=name] [target]"
	@echo ""
	@echo "CONFIGURATIONS:"
	@echo "   release"
	@echo ""
	@echo "TARGETS:"
	@echo "   all (default)"
	@echo "   clean"
	@echo "   CluE"
	@echo "   BICO_Experiments"
	@echo "   BICO_Quickstart"
	@echo ""
	@echo "For more information, see http://industriousone.com/premake/quick-start"
