]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/blob - pdk_k2g_1_0_1/packages/ti/board/diag/dcan/makefile
Add alpha files for car
[processor-sdk/performance-audio-sr.git] / pdk_k2g_1_0_1 / packages / ti / board / diag / dcan / makefile
1 # Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/
2 #
3 #
4 #  Redistribution and use in source and binary forms, with or without
5 #  modification, are permitted provided that the following conditions
6 #  are met:
7 #
8 #    Redistributions of source code must retain the above copyright
9 #    notice, this list of conditions and the following disclaimer.
10 #
11 #    Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the
14 #    distribution.
15 #
16 #    Neither the name of Texas Instruments Incorporated nor the names of
17 #    its contributors may be used to endorse or promote products derived
18 #    from this software without specific prior written permission.
19 #
20 #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 #  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 #  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 #  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 #  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 #  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 #  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 #  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 #  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 #  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 #  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 export USEDYNAMIC_LIB ?= "no"
34 # ROOT Directory
35 ifndef PDK_INSTALL_PATH
36 export ROOTDIR := ../..
37 else
38 export ROOTDIR = $(PDK_INSTALL_PATH)
39 endif
41 # PDK Board Library
42 ifndef PDK_DIAG_DIR
43 export PDK_DIAG_DIR = $(ROOTDIR)/ti/board
44 endif
46 # Device based on board
47 ifeq ($(BOARD), idkAM571x)
48 export DEVICE=AM571x
49 endif
51 ifeq ($(BOARD), idkAM572x)
52 export DEVICE=AM572x
53 endif
55 ifeq ($(BOARD), evmAM571x)
56 export DEVICE=AM571x
57 endif
59 ifeq ($(BOARD), evmAM572x)
60 export DEVICE=AM572x
61 endif
63 ifeq ($(BOARD), evmK2G)
64 export DEVICE=K2G
65 endif
67 # Common Macros used in make
68 ifndef RM
69 export RM = rm -f
70 endif
72 ifndef CP
73 export CP = cp -p
74 endif
76 export MKDIR = mkdir -p
78 ifndef RMDIR
79 export RMDIR = rm -rf
80 endif
82 ifndef SED
83 export SED = sed
84 endif
86 ifndef MAKE
87 export MAKE = make
88 endif
90 # PHONY Targets
91 .PHONY: all build_example clean
93 # all rule
94 all: build_example
96 # Check for board variable to exist
97 check-board:
98 ifndef BOARD
99         @echo BOARD NOT DEFINED, exiting...
100         @exit 1
101 else
102         @if [ ! -d "./build/$(BOARD)" ]; then echo $(DIAGTEST) not supported for $(BOARD); exit 1; fi
103 endif
104         
105 # Check for target variable to exist
106 check-target:
107 ifndef TARGET
108         @echo TARGET NOT DEFINED, exiting...
109         @exit 1
110 else
111         @if [ ! -d "./build/$(BOARD)/$(TARGET)" ]; then echo $(DIAGTEST) not supported for target $(TARGET) using board $(BOARD); exit 1; fi
112 endif
114 build_example: check-board check-target
115         $(MAKE) -f ./build/$(BOARD)/$(TARGET)/makefile 
117 clean: check-board check-target
118         $(MAKE) -f ./build/$(BOARD)/$(TARGET)/makefile clean