Add the cpu flag name in the template
[bertos.git] / wizard / const.py
1 #!/usr/bin/env python
2 # encoding: utf-8
3 #
4 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
5 # All rights reserved.
6 #
7 # $Id:$
8 #
9 # Author: Lorenzo Berni <duplo@develer.com>
10 #
11
12 CPU_DEF = {
13     "CPU_NAME": "",
14     "CPU_DIR": "",
15     "DEFINITION_PATH": "",
16     "TOOLCHAIN": "",
17     "CPU_TAGS": [],
18     "CPU_FLAG_NAME": "",
19     "CORE_CPU": "",
20     "SCRIPT_DIR": "",
21     "HW_DIR": "",
22     "DRV_DIR": "",
23     "C_FLAGS": [],
24     "CPPA_FLAGS" : [],
25     "CPP_FLAGS" : [],
26     "LD_FLAGS" : [],
27     "CPPA_SRC" : [],
28     "SUPPORTED_DRV" : [],
29     "PC_SRC" : [],
30     "CPU_DESC" : []
31 }
32
33 TOOLCHAIN_ITEMS = ("ld", "as")
34
35 CPU_DEFINITION = "*.cdef"
36
37 GCC_NAME = "*gcc*"
38
39 MODULE_CONFIGURATION = "cfg_*.h"
40
41 UI_LOCATION = "ui"
42
43 EXTENSION_FILTER = (
44     ".c",
45     ".cpp",
46     ".cxx",
47     ".h",
48     ".c++",
49     ".mk",
50     "Makefile",
51 )
52
53 MODULE_DEFINITION = {
54     "module_name": "module_name",
55     "module_configuration": "module_configuration",
56     "module_depends": "module_depends",
57     "module_harvard": "module_harvard",
58 }