forked from ciaa/firmware_v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.config
82 lines (80 loc) · 3.99 KB
/
Makefile.config
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
###############################################################################
#
# Copyright 2014, ACSE & CADIEEL
# ACSE : http://www.sase.com.ar/asociacion-civil-sistemas-embebidos/ciaa/
# CADIEEL: http://www.cadieel.org.ar
#
# This file is part of CIAA Firmware.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from this
# software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
###############################################################################
# Copy this file to Makefile.mine and set the variables.
#
# Makefile.mine will be included by the root make file but ignored by
# .gitignore.
#
# You can also remove this commentas lines.
#
# Please take into account to check and compare your Makefile.mine every time
# that Makefile.config is updated to be sure that you dont need to define new
# variables.
#
###############################################################################
# ARCH, CPUTYPE and CPU following are supported
# +--------------+---------------+----------------+--------------+
# | ARCH | CPUTYPE | CPU | COMPILER |
# +--------------+---------------+----------------+--------------+
# | x86 | ia32 | | gcc |
# | | ia64 | | |
# +--------------+---------------+----------------+--------------+
# | cortexM4 | lpc43xx | lpc4337 | gcc |
# | | k60_120 | mk60fx512vlq15 | gcc |
# +--------------+---------------+----------------+--------------+
#
ARCH = x86
CPUTYPE = ia64
CPU = none
COMPILER = gcc
###############################################################################
# rtostests options
#
# RTOSTESTS_DEBUG_CTESTS ?= 1 , set debug flag in ctest.pl
# RTOSTESTS_CLEAN_GENERATE ?= 1 , skips make clean and generate (use it only if you are running a single sub test case, but after generating RTOS at least one time!)
# RTOSTESTS_CTEST ?= 'ctest_tm_01:Test Sequence 1' , test case name, based on ctestcases.cfg (use it for single ctest)
# RTOSTESTS_SUBTEST ?= 'full-preemptive' , sub test case name, based on ctestcases.cfg or empty to start running from this test to the end
# Project
#
# Available projects are:
# examples/blinking (example with rtos and posix)
# examples/blinking_base (example without rtos and without posix)
# examples/blinking_wo_rtos (example with posix without rtos)
# examples/blinking_wo_posix (example with rtos without rtos)
# examples/blinking_modbus (example with rtos, posix and using modbus)
# examples/bootloader (example with remote update services)
#
PROJECT ?= examples$(DS)blinking