Remove old placeholder.
[bertos.git] / wizard / mktemplates / template_wiz.mk
1 #
2 # Copyright 2009 Develer S.r.l. (http://www.develer.com/)
3 # All rights reserved.
4 #
5 # Makefile template for BeRTOS wizard.
6 #
7 # Author: Lorenzo Berni <duplo@develer.com>
8 #
9 #
10
11 # Constants automatically defined by the selected modules
12 $constants
13
14 # Our target application
15 TRG += $pname
16
17 $pname_PREFIX = "$prefix"
18
19 $pname_SUFFIX = "$suffix"
20
21 # Files automatically generated by the wizard. DO NOT EDIT, USE $pname_USER_CSRC INSTEAD!
22 $pname_WIZARD_CSRC = \
23         $csrc
24         #
25
26 # Files automatically generated by the wizard. DO NOT EDIT, USE $pname_USER_PCSRC INSTEAD!
27 $pname_WIZARD_PCSRC = \
28         $pcsrc
29         #
30
31 # Files automatically generated by the wizard. DO NOT EDIT, USE $pname_USER_CPPASRC INSTEAD!
32 $pname_WIZARD_CPPASRC = \
33         $cppasrc
34         #
35
36 # Files automatically generated by the wizard. DO NOT EDIT, USE $pname_USER_CXXSRC INSTEAD!
37 $pname_WIZARD_CXXSRC = \
38         $cxxsrc
39         #
40
41 # Files automatically generated by the wizard. DO NOT EDIT, USE $pname_USER_ASRC INSTEAD!
42 $pname_WIZARD_ASRC = \
43         $asrc
44         #
45
46 $pname_CPPFLAGS = -D'CPU_FREQ=($cpuclockfreqUL)' -D'ARCH=(ARCH_DEFAULT)' -D'WIZ_AUTOGEN' -I$pname/ $($pname_CPU_CPPFLAGS)
47
48 # Automatically generated by the wizard. PLEASE DO NOT EDIT!
49 $pname_CSRC = $($pname_WIZARD_CSRC) $($pname_USER_CSRC)
50
51 # Automatically generated by the wizard. PLEASE DO NOT EDIT!
52 $pname_PCSRC = $($pname_WIZARD_PCSRC) $($pname_USER_PCSRC)
53
54 # Automatically generated by the wizard. PLEASE DO NOT EDIT!
55 $pname_CPPASRC = $($pname_WIZARD_CPPASRC) $($pname_USER_CPPASRC)
56
57 # Automatically generated by the wizard. PLEASE DO NOT EDIT!
58 $pname_CXXSRC = $($pname_WIZARD_CXXSRC) $($pname_USER_CXXSRC)
59
60 # Automatically generated by the wizard. PLEASE DO NOT EDIT!
61 $pname_ASRC = $($pname_WIZARD_ASRC) $($pname_USER_ASRC)