# GNU Make workspace makefile autogenerated by Premake

ifndef config
  config=debug
endif

ifndef verbose
  SILENT = @
endif

ifeq ($(config),debug)
  llae_config = debug
endif
ifeq ($(config),release)
  llae_config = release
endif

PROJECTS := llae

.PHONY: all clean help $(PROJECTS) 

all: $(PROJECTS)

llae:
ifneq (,$(llae_config))
	@echo "==== Building llae ($(llae_config)) ===="
	@${MAKE} --no-print-directory -C build -f Makefile config=$(llae_config)
endif

clean:
	@${MAKE} --no-print-directory -C build -f Makefile clean

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