-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
32 lines (31 loc) · 1.57 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
# Copyright (c) 2012-2014 The Khronos Group Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and/or associated documentation files (the
# "Materials"), to deal in the Materials without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Materials, and to
# permit persons to whom the Materials are furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Materials.
#
# THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
CONCERTO_ROOT ?= concerto
DIRECTORIES := examples helper debug libraries kernels sample tools
OPENVX_SRC := sample
BUILD_TARGET ?= $(CONCERTO_ROOT)/target.mak
# By not setting target combos it will automatically generate them.
#TARGET_COMBOS:=PC:LINUX:x86_64:0:debug:GCC
#TARGET_COMBOS+=PC:LINUX:x86_64:0:release:GCC
#TARGET_COMBOS+=PC:Windows_NT:X64:0:release:CL
#TARGET_COMBOS+=PC:Windows_NT:X64:0:debug:CL
#TARGET_COMBOS+=PC:LINUX:ARM:0:debug:RVCT
include $(CONCERTO_ROOT)/rules.mak