]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/pdk.git/blob - packages/ti/board/diag/automation_header/build/makefile
[OSAL]: Added testcase for task sub module
[processor-sdk/pdk.git] / packages / ti / board / diag / automation_header / build / makefile
1 # Copyright (C) 2019-2021 Texas Instruments Incorporated - http://www.ti.com/\r
2 #\r
3 #\r
4 #  Redistribution and use in source and binary forms, with or without\r
5 #  modification, are permitted provided that the following conditions\r
6 #  are met:\r
7 #\r
8 #    Redistributions of source code must retain the above copyright\r
9 #    notice, this list of conditions and the following disclaimer.\r
10 #\r
11 #    Redistributions in binary form must reproduce the above copyright\r
12 #    notice, this list of conditions and the following disclaimer in the\r
13 #    documentation and/or other materials provided with the\r
14 #    distribution.\r
15 #\r
16 #    Neither the name of Texas Instruments Incorporated nor the names of\r
17 #    its contributors may be used to endorse or promote products derived\r
18 #    from this software without specific prior written permission.\r
19 #\r
20 #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r
21 #  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r
22 #  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r
23 #  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r
24 #  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
25 #  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
26 #  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
27 #  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
28 #  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
29 #  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r
30 #  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
31 \r
32 #\r
33 # Macro definitions referenced below\r
34 #\r
35 \r
36 #\r
37 # This file is the makefile for building CSL uart app.\r
38 #\r
39 include $(PDK_INSTALL_PATH)/ti/build/Rules.make\r
40 \r
41 # Board diag parameters which can be controlled outside this makefile\r
42 DIAGNAME ?= automationHeader\r
43 PROFILE ?= release\r
44 TESTMODE ?= FUNCTIONAL_TEST\r
45 MODENAME ?=\r
46 BOARD_DIAG_CFLAGS ?=\r
47 APP_NAME ?= board_diag_$(DIAGNAME)\r
48 \r
49 BUILD_PROFILE_$(CORE) = $(PROFILE)\r
50 \r
51 BUILD_OS_TYPE = baremetal\r
52 LNKFLAGS_LOCAL_mpu1_0  += --entry Entry\r
53 EXTERNAL_INTERFACES =\r
54 XDC_CFG_FILE_mpu1_0 =\r
55 XDC_CFG_FILE_mcu1_0 =\r
56 \r
57 ifeq ($(MODENAME), )\r
58 ifeq ($(TESTMODE), STRESS_TEST)\r
59 MODENAME = Stress\r
60 endif\r
61 endif\r
62 \r
63 SRCDIR = ../src ../../common/$(SOC) ./$(BOARD)\r
64 INCDIR = ../../../../board ../src ../../../src/$(BOARD)/include ../../../src/$(BOARD) ../../../src/flash ../../common/$(SOC) ../../../../csl\r
65 \r
66 # List all the external components/interfaces, whose interface header files\r
67 # need to be included for this component\r
68 INCLUDE_EXTERNAL_INTERFACES = pdk\r
69 \r
70 # List all the components required by the application\r
71 COMP_LIST_COMMON = $(PDK_COMMON_BAREMETAL_COMP)\r
72 \r
73 # Common source files and CFLAGS across all platforms and cores\r
74 PACKAGE_SRCS_COMMON = ../src makefile\r
75 PACKAGE_SRCS_COMMON += ../../common/$(SOC)\r
76 PACKAGE_SRCS_COMMON += ../../board_diag_component.mk\r
77 PACKAGE_SRCS_COMMON += ../../create_sd.bat ../../create_sd.sh\r
78 \r
79 SRCS_COMMON += automation_header_test.c diag_common_cfg.c\r
80 \r
81 ifeq ($(BOARD), $(filter $(BOARD), j721e_evm j7200_evm j721s2_evm))\r
82 SRCS_COMMON += automation_header_config.c\r
83 PACKAGE_SRCS_COMMON += $(BOARD)\r
84 endif\r
85 \r
86 ifeq ($(CORE),$(filter $(CORE), mcu1_0))\r
87 SRCS_ASM_COMMON += diag_entry_r5.asm\r
88 EXTERNAL_LNKCMD_FILE_LOCAL = ../../common/$(SOC)/linker_$(CORE).lds\r
89 endif\r
90 \r
91 ifeq ($(CORE),$(filter $(CORE), mpu1_0))\r
92 SRCS_ASM_COMMON += diag_entry.asm\r
93 EXTERNAL_LNKCMD_FILE_LOCAL = ../../common/$(SOC)/linker_$(CORE).lds\r
94 endif\r
95 \r
96 CFLAGS_LOCAL_COMMON = $(PDK_CFLAGS) -DDIAG_$(TESTMODE) $(BOARD_DIAG_CFLAGS)\r
97 \r
98 # Include common make files\r
99 ifeq ($(MAKERULEDIR), )\r
100 #Makerule path not defined, define this and assume relative path from ROOTDIR\r
101   MAKERULEDIR := $(ROOTDIR)/ti/build/makerules\r
102   export MAKERULEDIR\r
103 endif\r
104 include $(MAKERULEDIR)/common.mk\r
105 \r
106 # OBJs and libraries are built by using rule defined in rules_<target>.mk\r
107 #     and need not be explicitly specified here\r
108 \r
109 # Nothing beyond this point\r