Convert to new Doxygen comments.
[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 # $Log$
11 # Revision 1.2  2006/06/01 12:29:21  marco
12 # Add first simple protocol command (version request).
13 #
14 # Revision 1.1  2006/05/18 00:41:47  bernie
15 # New triface devlib application.
16 #
17 #
18
19
20 # Set to 1 for debug builds
21 triface_DEBUG = 1
22
23 # Our target application
24 TRG += triface
25
26 triface_CSRC = \
27         app/triface/triface.c \
28         app/triface/protocol.c \
29         drv/timer.c \
30         drv/ser.c \
31         drv/ser_avr.c \
32         mware/formatwr.c \
33         mware/hex.c \
34         mware/hashtable.c \
35         mware/readline.c \
36         mware/parser.c \
37
38 #       drv/buzzer.c
39
40 triface_PCSRC += mware/formatwr.c
41
42 triface_CFLAGS = -Os -D'ARCH=0' -Iapp/triface/hw -Iapp/triface
43 triface_MCU = atmega128
44
45 # Debug stuff
46 ifeq ($(triface_DEBUG),1)
47         triface_CFLAGS += -D_DEBUG
48         triface_PCSRC += drv/kdebug.c
49 endif
50