]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/blob - psdk_cust/pdk_k2g_1_0_1_2_eng/packages/ti/board/diag/icss_emac/makefile
Modified messaging code after code review.
[processor-sdk/performance-audio-sr.git] / psdk_cust / pdk_k2g_1_0_1_2_eng / packages / ti / board / diag / icss_emac / 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 # Common Macros used in make
64 ifndef RM
65 export RM = rm -f
66 endif
68 ifndef CP
69 export CP = cp -p
70 endif
72 export MKDIR = mkdir -p
74 ifndef RMDIR
75 export RMDIR = rm -rf
76 endif
78 ifndef SED
79 export SED = sed
80 endif
82 ifndef MAKE
83 export MAKE = make
84 endif
86 # PHONY Targets
87 .PHONY: all build_example clean
89 # all rule
90 all: build_example
92 # Check for board variable to exist
93 check-board:
94 ifndef BOARD
95         @echo BOARD NOT DEFINED, exiting...
96         @exit 1
97 else
98         @if [ ! -d "./build/$(BOARD)" ]; then echo $(DIAGTEST) not supported for $(BOARD); exit 1; fi
99 endif
100         
101 # Check for target variable to exist
102 check-target:
103 ifndef TARGET
104         @echo TARGET NOT DEFINED, exiting...
105         @exit 1
106 else
107         @if [ ! -d "./build/$(BOARD)/$(TARGET)" ]; then echo $(DIAGTEST) not supported for target $(TARGET) using board $(BOARD); exit 1; fi
108 endif
110 build_example: check-board check-target
111         $(MAKE) -f ./build/$(BOARD)/$(TARGET)/makefile 
113 clean: check-board check-target
114         $(MAKE) -f ./build/$(BOARD)/$(TARGET)/makefile clean