Disable menu timeout.
[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 demo application.
7 #
8 # Author: Bernardo Innocenti <bernie@develer.com>
9 #
10 # $Log$
11 # Revision 1.1  2006/05/18 00:41:47  bernie
12 # New triface devlib application.
13 #
14 #
15
16
17 # Set to 1 for debug builds
18 demo_DEBUG = 1
19
20 # Our target application
21 TRG += triface
22
23 triface_CSRC = \
24         app/triface/triface.c \
25         drv/timer.c \
26         drv/ser.c \
27         drv/ser_avr.c \
28         mware/formatwr.c \
29         mware/hex.c \
30
31 #       drv/buzzer.c
32
33 triface_CFLAGS = -Os -D'ARCH=0' -Iapp/triface/hw -Iapp/triface
34 triface_MCU = atmega128
35
36 # Debug stuff
37 ifeq ($(triface_DEBUG),1)
38         triface_CFLAGS += -D_DEBUG
39 #       triface_PCSRC += drv/kdebug.c
40 endif
41