Start to merge old triface project in bertos, not working actually
[bertos.git] / app / triface / triface.mk
index b7c19cc41968a156bff22fe71fa5f5f104645e6d..a30697f89a309577045d122b3ad167bff6a66ed5 100644 (file)
@@ -9,6 +9,8 @@
 #
 #
 
+# This is an embedded project
+triface_EMBEDDED_TGT = 1
 
 # Set to 1 for debug builds
 triface_DEBUG = 1
@@ -23,31 +25,66 @@ triface_lock = 0x2f
 triface_CSRC = \
        app/triface/triface.c \
        app/triface/protocol.c \
-       drv/timer.c \
-       drv/ser.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
-
-
-triface_CFLAGS = -O2 -D'ARCH=0' -Iapp/triface/hw -Iapp/triface -Icpu/avr
+       app/triface/hw/hw_adc.c \
+       bertos/drv/timer.c \
+       bertos/drv/ser.c \
+       bertos/drv/buzzer.c \
+       bertos/cpu/avr/drv/ser_avr.c \
+       bertos/cpu/avr/drv/sipo.c \
+       bertos/mware/formatwr.c \
+       bertos/mware/hex.c \
+       bertos/mware/hashtable.c \
+       bertos/mware/readline.c \
+       bertos/mware/parser.c \
+       bertos/mware/event.c \
+       bertos/kern/kfile.c \
+       bertos/net/keytag.c \
+       #
+
+triface_PCSRC += bertos/mware/formatwr.c
+
+
+triface_CFLAGS = -O2 -D'ARCH=(ARCH_TRIFACE)' -fno-strict-aliasing -Iapp/triface -Ibertos/cpu/avr
 triface_LDFLAGS = -Wl
 
 triface_MCU = atmega64
+triface_CROSS = avr-
 
 # Debug stuff
 ifeq ($(triface_DEBUG),1)
        triface_CFLAGS += -D_DEBUG
-       triface_PCSRC += drv/kdebug.c
+       triface_PCSRC += bertos/drv/kdebug.c
+endif
+
+
+boot_EMBEDDED_TGT = 1
+# Set to 1 for debug builds
+boot_DEBUG = 1
+
+# Our target application
+TRG += boot
+
+boot_MCU = atmega64
+boot_CSRC = \
+       app/triface/boot/main.c \
+       bertos/net/xmodem.c \
+       bertos/drv/ser.c \
+       bertos/cpu/avr/drv/ser_avr.c \
+       bertos/cpu/avr/drv/flash_avr.c \
+       bertos/drv/timer.c \
+       bertos/algo/crc.c \
+       bertos/mware/hex.c \
+    bertos/kern/kfile.c \
+    #
+boot_CROSS = avr-
+boot_CPPFLAGS = -D'ARCH=(ARCH_TRIFACE|ARCH_BOOT)' -Iapp/triface/boot -Ibertos/cpu/avr
+boot_CFLAGS = -Os -mcall-prologues
+boot_LDSCRIPT = app/triface/boot/boot.ld
+boot_LDFLAGS = -Wl,--relax
+
+# Debug stuff
+ifeq ($(boot_DEBUG),1)
+       boot_CFLAGS += -D_DEBUG
+       boot_PCSRC += bertos/drv/kdebug.c bertos/mware/formatwr.c
 endif