cortexelf-v1: Add buttons
[fw/altos] / src / cortexelf-v1 / Makefile
index a645d222fe5e477bd8ce20679974c689c5898161..f7c892bcfd7a9e1ac2dcd174fa770588a885ad69 100644 (file)
@@ -4,6 +4,7 @@
 #
 
 include ../stm/Makefile.defs
+LDFLAGS=-L../stm -Wl,-Tcortexelf.ld
 
 INC = \
        ao.h \
@@ -15,18 +16,20 @@ INC = \
        ao_product.h \
        ao_profile.h \
        ao_task.h \
-       ao_whiten.h \
-       ao_quaternion.h \
        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 \
+       ao_lisp.h \
+       ao_lisp_const.h \
+       ao_lisp_os.h \
        Makefile
 
-#
-# Common AltOS sources
-#
-#      ao_hmc5883.c
 
 #PROFILE=ao_profile.c
 #PROFILE_DEF=-DAO_PROFILE=1
@@ -34,20 +37,6 @@ INC = \
 #STACK_GUARD=ao_mpu_stm.c
 #STACK_GUARD_DEF=-DHAS_STACK_GUARD=1
 
-MATH_SRC=\
-       ef_acos.c \
-       ef_sqrt.c \
-       ef_rem_pio2.c \
-       kf_cos.c \
-       kf_sin.c \
-       kf_rem_pio2.c \
-       sf_copysign.c \
-       sf_cos.c \
-       sf_fabs.c \
-       sf_floor.c \
-       sf_scalbn.c \
-       sf_sin.c \
-       ef_log.c
 
 ALTOS_SRC = \
        ao_boot_chain.c \
@@ -57,23 +46,47 @@ ALTOS_SRC = \
        ao_cmd.c \
        ao_config.c \
        ao_task.c \
-       ao_led.c \
        ao_stdio.c \
        ao_panic.c \
        ao_timer.c \
        ao_mutex.c \
        ao_serial_stm.c \
-       ao_ignite.c \
-       ao_freq.c \
        ao_dma_stm.c \
        ao_spi_stm.c \
-       ao_storage.c \
-       ao_m25.c \
        ao_usb_stm.c \
        ao_exti_stm.c \
        ao_i2c_stm.c \
-       ao_convert_volt.c \
-       $(MATH_SRC) \
+       ao_vga.c \
+       ao_blt.c \
+       ao_copy.c \
+       ao_rect.c \
+       ao_text.c \
+       ao_line.c \
+       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_lisp_lex.c \
+       ao_lisp_mem.c \
+       ao_lisp_cons.c \
+       ao_lisp_eval.c \
+       ao_lisp_string.c \
+       ao_lisp_atom.c \
+       ao_lisp_int.c \
+       ao_lisp_poly.c \
+       ao_lisp_builtin.c \
+       ao_lisp_read.c \
+       ao_lisp_rep.c \
+       ao_lisp_frame.c \
+       ao_lisp_error.c \
+       ao_lisp_lambda.c \
+       ao_lisp_save.c \
+       ao_lisp_stack.c \
+       ao_lisp_os_save.c \
        $(PROFILE) \
        $(SAMPLE_PROFILE) \
        $(STACK_GUARD)
@@ -91,9 +104,9 @@ HEX=$(PROGNAME)-$(VERSION).ihx
 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
@@ -106,10 +119,12 @@ ao_product.h: ao-make-product.5c ../Version
 
 distclean:     clean
 
-clean:
+clean::
        rm -f *.o $(PROGNAME)-*.elf $(PROGNAME)-*.ihx
        rm -f ao_product.h
 
+include ../lisp/Makefile-lisp
+
 install:
 
 uninstall: