Fix typos.
[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     "CPPA_FLAGS": [],
27     "CXX_FLAGS": [],
28     "AS_FLAGS": [],
29     "AR_FLAGS": [],
30     "LD_FLAGS" : [],
31     "CPPA_SRC" : [],
32     "SUPPORTED_DRV" : [],
33     "PC_SRC" : [],
34     "CPU_DESC" : []
35 }
36
37 TOOLCHAIN_ITEMS = ("ld", "as")
38
39 CPU_DEFINITION = "*.cdef"
40
41 GCC_NAME = "*gcc*"
42
43 MODULE_CONFIGURATION = "cfg_*.h"
44
45 UI_LOCATION = "ui"
46
47 EXTENSION_FILTER = (
48     ".c",
49     ".cpp",
50     ".cxx",
51     ".h",
52     ".c++",
53     ".mk",
54     "Makefile",
55 )
56
57 MODULE_DEFINITION = {
58     "module_name": "module_name",
59     "module_configuration": "module_configuration",
60     "module_depends": "module_depends",
61     "module_harvard": "module_harvard",
62 }