Use kfile interface.
[bertos.git] / app / triface / triface.mk
old mode 100755 (executable)
new mode 100644 (file)
index 990a68e..887acc8
@@ -3,39 +3,52 @@
 # Copyright 2006 Develer S.r.l. (http://www.develer.com/)
 # All rights reserved.
 #
-# Makefile fragment for DevLib demo application.
+# Makefile fragment for DevLib triface application.
 #
 # Author: Bernardo Innocenti <bernie@develer.com>
 #
-# $Log$
-# Revision 1.1  2006/05/18 00:41:47  bernie
-# New triface devlib application.
-#
 #
 
 
 # Set to 1 for debug builds
-demo_DEBUG = 1
+triface_DEBUG = 1
 
 # Our target application
 TRG += triface
 
+triface_hfuse = 0x88
+triface_lfuse = 0xff
+triface_efuse = 0xff
+triface_lock = 0x2f
 triface_CSRC = \
        app/triface/triface.c \
+       app/triface/protocol.c \
        drv/timer.c \
        drv/ser.c \
-       drv/ser_avr.c \
+       cpu/avr/drv/ser_avr.c \
+       cpu/avr/drv/sipo.c \
        mware/formatwr.c \
        mware/hex.c \
+       mware/hashtable.c \
+       mware/readline.c \
+       mware/parser.c \
+       mware/event.c \
+       net/keytag.c \
+       hw/hw_adc.c \
+       drv/buzzer.c \
+
+triface_PCSRC += mware/formatwr.c
+
 
-#      drv/buzzer.c
+triface_CFLAGS = -O2 -D'ARCH=0' -fno-strict-aliasing -Iapp/triface/hw -Iapp/triface -Icpu/avr
+triface_LDFLAGS = -Wl
 
-triface_CFLAGS = -Os -D'ARCH=0' -Iapp/triface/hw -Iapp/triface
-triface_MCU = atmega128
+triface_MCU = atmega64
+triface_CROSS = avr-
 
 # Debug stuff
 ifeq ($(triface_DEBUG),1)
        triface_CFLAGS += -D_DEBUG
-#      triface_PCSRC += drv/kdebug.c
+       triface_PCSRC += drv/kdebug.c
 endif