X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fmktemplates%2Ftemplate.mk;h=fc81e51cab88b90f681281751a0372e58709706a;hb=c92af4f13513bdf431f51420660ca5d176fb10bc;hp=4c3b886c3a7a17698e8aab61ac6cc773e4e60498;hpb=661f04451a42280343524725622a0675ea6ee9ab;p=bertos.git diff --git a/wizard/mktemplates/template.mk b/wizard/mktemplates/template.mk index 4c3b886c..fc81e51c 100644 --- a/wizard/mktemplates/template.mk +++ b/wizard/mktemplates/template.mk @@ -8,29 +8,42 @@ # # -# Constants automatically defined by the selected modules -$constants +# Include the mk file generated by the wizard +include $pname/$pname_wiz.mk -# Our target application -TRG += $pname +# Files included by the user. +$pname_USER_CSRC = \ + $main \ + # -$pname_PREFIX = $prefix +# Automatically generated by the wizard. PLEASE DO NOT EDIT! +$pname_CSRC = $($pname_WIZARD_CSRC) $($pname_USER_CSRC) -$pname_SUFFIX = $suffix +# Files included by the user. +$pname_USER_PCSRC = \ + # -$pname_CROSS = $cross +# Automatically generated by the wizard. PLEASE DO NOT EDIT! +$pname_PCSRC = $($pname_WIZARD_PCSRC) $($pname_USER_PCSRC) -$pname_MCU = $cpuname +# Files included by the user. +$pname_USER_CPPASRC = \ + # -$pname_CSRC = \ - $csrc - $main \ +# Automatically generated by the wizard. PLEASE DO NOT EDIT! +$pname_CPPASRC = $($pname_WIZARD_CPPASRC) $($pname_USER_CPPASRC) + +# Files included by the user. +$pname_USER_CXXSRC = \ # -$pname_PCSRC += \ - $pcsrc +# Automatically generated by the wizard. PLEASE DO NOT EDIT! +$pname_CXXSRC = $($pname_WIZARD_CXXSRC) $($pname_USER_CXXSRC) + +# Files included by the user. +$pname_USER_ASRC = \ # +# Automatically generated by the wizard. PLEASE DO NOT EDIT! +$pname_ASRC = $($pname_WIZARD_ASRC) $($pname_USER_ASRC) -$pname_CFLAGS = $cflags -$pname_LDFLAGS = $ldflags