-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakefile
36 lines (29 loc) · 1.26 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
###################################################################################
# mmWave Demo Level makefile
###################################################################################
ifeq ($(CCS_MAKEFILE_BASED_BUILD), 1)
ifeq ($(OS),Windows_NT)
include $(MMWAVE_SDK_INSTALL_PATH)/scripts/windows/setenv.mak
else
include $(MMWAVE_SDK_INSTALL_PATH)/scripts/unix/setenv.mak
endif
endif
include $(MMWAVE_SDK_INSTALL_PATH)/ti/common/mmwave_sdk.mak
include ./mmw.mak
###################################################################################
# Standard Targets which need to be implemented by each mmWave SDK module. This
# plugs into the release scripts.
###################################################################################
.PHONY: all clean
.NOTPARALLEL:
# 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 '****************************************************************************************'