###################################################################################
# mmWave Demo Level makefile
###################################################################################
include ../../../common/mmwave_sdk.mak
include ./dss_mmw.mak

###################################################################################
# Standard Targets which need to be implemented by each mmWave SDK module. This
# plugs into the release scripts.
###################################################################################
.PHONY: all clean

# Clean: This cleans all the objects
clean: mmwDemoClean

# This builds all the supported demos
all: mmwDemo

# Help: This displays the MAKEFILE Usage.
help:
	@echo '****************************************************************************************'
	@echo '* Makefile Targets for the DEMO '
	@echo 'mmwDemo         -> Builds the mmw Demo'
	@echo 'mmwDemoClean    -> Cleans the mmw Demo'
	@echo '****************************************************************************************'

