Remove cvs logs.
[bertos.git] / app / triface / triface.mk
1 #
2 # $Id$
3 # Copyright 2006 Develer S.r.l. (http://www.develer.com/)
4 # All rights reserved.
5 #
6 # Makefile fragment for DevLib triface application.
7 #
8 # Author: Bernardo Innocenti <bernie@develer.com>
9 #
10
11 # Set to 1 for debug builds
12 triface_DEBUG = 1
13
14 # Our target application
15 TRG += triface
16
17 triface_CSRC = \
18         app/triface/triface.c \
19         app/triface/protocol.c \
20         drv/timer.c \
21         drv/ser.c \
22         cpu/avr/drv/ser_avr.c \
23         mware/formatwr.c \
24         mware/hex.c \
25         mware/hashtable.c \
26         mware/readline.c \
27         mware/parser.c \
28
29 #       drv/buzzer.c
30
31 triface_PCSRC += mware/formatwr.c
32
33 #triface_CFLAGS = -O3 -D'ARCH=0' -Iapp/triface/hw -Iapp/triface
34 triface_CFLAGS = -O0 -D'ARCH=0' -Iapp/triface/hw -Iapp/triface -Icpu/avr
35 triface_MCU = atmega128
36
37 # Debug stuff
38 ifeq ($(triface_DEBUG),1)
39         triface_CFLAGS += -D_DEBUG
40         triface_PCSRC += drv/kdebug.c
41 endif
42