altos/test: Adjust CRC error rate after FEC fix
[fw/altos] / src / cortexelf-v1 / Makefile
index c74b0cceaa03f89d2adaa4ead056e3791bd43785..63619b7a9e55532b5e22cdf19ff8ec11117da255 100644 (file)
@@ -4,6 +4,8 @@
 #
 
 include ../stm/Makefile.defs
+include ../scheme/Makefile-inc
+
 
 INC = \
        ao.h \
@@ -18,15 +20,15 @@ INC = \
        math.h \
        ao_mpu.h \
        stm32l.h \
-       math.h \
        ao_vga.h \
        ao_draw.h \
        ao_draw_int.h \
        ao_font.h \
        ao_ps2.h \
+       $(SCHEME_HDRS) \
+       ao_flip_bits.h \
        Makefile
 
-
 #PROFILE=ao_profile.c
 #PROFILE_DEF=-DAO_PROFILE=1
 
@@ -42,6 +44,7 @@ ALTOS_SRC = \
        ao_cmd.c \
        ao_config.c \
        ao_task.c \
+       ao_errno.c \
        ao_stdio.c \
        ao_panic.c \
        ao_timer.c \
@@ -52,6 +55,8 @@ ALTOS_SRC = \
        ao_usb_stm.c \
        ao_exti_stm.c \
        ao_i2c_stm.c \
+       ao_as1107.c \
+       ao_matrix.c \
        ao_vga.c \
        ao_blt.c \
        ao_copy.c \
@@ -61,6 +66,15 @@ ALTOS_SRC = \
        ao_ps2.c \
        ao_console.c \
        ao_sdcard.c \
+       ao_bufio.c \
+       ao_fat.c \
+       ao_flash_stm.c \
+       ao_button.c \
+       ao_event.c \
+       ao_1802.c \
+       ao_hex.c \
+       $(SCHEME_SRCS) \
+       ao_scheme_os_save.c \
        $(PROFILE) \
        $(SAMPLE_PROFILE) \
        $(STACK_GUARD)
@@ -69,18 +83,27 @@ PRODUCT=CortexELF-v1
 PRODUCT_DEF=-DCORTEXELF
 IDPRODUCT=0x000a
 
-CFLAGS = $(PRODUCT_DEF) $(STM_CFLAGS) $(PROFILE_DEF) $(SAMPLE_PROFILE_DEF) $(STACK_GUARD_DEF) -Os -g
-
 PROGNAME=cortexelf-v1
 PROG=$(PROGNAME)-$(VERSION).elf
 HEX=$(PROGNAME)-$(VERSION).ihx
 
+MAP=$(PROG).map
+
+MAPFILE=-Wl,-M=$(MAP)
+
+LDFLAGS=-L../stm -L/local/newlib-mini/arm-none-eabi/lib/thumb/v7-m/ -Wl,-Tcortexelf.ld $(MAPFILE) -nostartfiles
+AO_CFLAGS=-I. -I../stm -I../kernel -I../drivers -I../draw -I../scheme -I.. -I/local/newlib-mini/arm-none-eabi/include
+LIBS=-lc -lm -lgcc
+
+CFLAGS = $(PRODUCT_DEF) $(STM_CFLAGS) $(PROFILE_DEF) $(SAMPLE_PROFILE_DEF) $(STACK_GUARD_DEF)
+
+
 SRC=$(ALTOS_SRC) ao_cortexelf.c
 OBJ=$(SRC:.c=.o)
 
-all: $(PROG) $(HEX)
+all:: $(PROG) $(HEX)
 
-$(PROG): Makefile $(OBJ) altos.ld
+$(PROG): Makefile $(OBJ) cortexelf.ld
        $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(OBJ) $(LIBS)
 
 ../altitude-pa.h: make-altitude-pa
@@ -93,9 +116,14 @@ ao_product.h: ao-make-product.5c ../Version
 
 distclean:     clean
 
-clean:
+clean::
        rm -f *.o $(PROGNAME)-*.elf $(PROGNAME)-*.ihx
-       rm -f ao_product.h
+       rm -f ao_product.h ao_flip_bits.h
+
+ao_flip_bits.h: ao_flip_bits.5c
+       nickle ao_flip_bits.5c > $@
+
+include ../scheme/Makefile-scheme
 
 install: