# Alternative GNU Make workspace makefile autogenerated by Premake

#******************************************************************************
#                        ETSI TS 103 634 V1.4.5                               *
#              Low Complexity Communication Codec Plus (LC3plus)              *
#                                                                             *
# Copyright licence is solely granted through ETSI Intellectual Property      *
# Rights Policy, 3rd April 2019. No patent licence is granted by implication, *
# estoppel or otherwise.                                                      *
#*****************************************************************************/

ifndef config
  config=debug
endif

ifndef verbose
  SILENT = @
endif

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

PROJECTS := mld

.PHONY: all clean help $(PROJECTS) 

all: $(PROJECTS)

mld:
ifneq (,$(mld_config))
	@echo "==== Building mld ($(mld_config)) ===="
	@${MAKE} --no-print-directory -C . -f mld.make config=$(mld_config)
endif

clean:
	@${MAKE} --no-print-directory -C . -f mld.make clean

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