X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fmktemplates%2Ftemplate.mk;h=fc81e51cab88b90f681281751a0372e58709706a;hb=c92af4f13513bdf431f51420660ca5d176fb10bc;hp=acb72c0228648b2161e1d9429cc01a9021d1841e;hpb=3c597885aaf7e09392e1fca01df467552d4474c1;p=bertos.git diff --git a/wizard/mktemplates/template.mk b/wizard/mktemplates/template.mk index acb72c02..fc81e51c 100644 --- a/wizard/mktemplates/template.mk +++ b/wizard/mktemplates/template.mk @@ -8,27 +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) + +# Files included by the user. +$pname_USER_PCSRC = \ + # -$pname_SUFFIX = $suffix +# Automatically generated by the wizard. PLEASE DO NOT EDIT! +$pname_PCSRC = $($pname_WIZARD_PCSRC) $($pname_USER_PCSRC) -$pname_CROSS = $cross +# Files included by the user. +$pname_USER_CPPASRC = \ + # -$pname_MCU = $cpuname +# Automatically generated by the wizard. PLEASE DO NOT EDIT! +$pname_CPPASRC = $($pname_WIZARD_CPPASRC) $($pname_USER_CPPASRC) -$pname_CSRC = \ - $csrc - $main \ +# 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