From c0e35b5a79c55660f10362a5af6298f94fffef56 Mon Sep 17 00:00:00 2001 From: duplo Date: Fri, 30 Jan 2009 15:08:27 +0000 Subject: [PATCH] Add a template of the project .mk file, with keywords instead of values, ready to be replaced by the values git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2242 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/template.mk | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 wizard/template.mk diff --git a/wizard/template.mk b/wizard/template.mk new file mode 100644 index 00000000..281b772a --- /dev/null +++ b/wizard/template.mk @@ -0,0 +1,33 @@ +# +# Copyright 2009 Develer S.r.l. (http://www.develer.com/) +# All rights reserved. +# +# Makefile template for BeRTOS wizard. +# +# Author: Lorenzo Berni +# +# + +# Set to 1 for debug builds +pname_DEBUG = 1 + +# Our target application +TRG += pname +CPU = cpuname +BOOT_ADDR_START = 0x1E000 + +pname_PREFIX = prefix + +pname_SUFFIX = suffix + +pname_MCU = $(CPU) + +pname_CSRC = \ + csrc + # + +pname_PCSRC += pcsrc + + +pname_CFLAGS = cflags +pname_LDFLAGS = ldflags -- 2.25.1