altos/cortexelf-v1: Make lisp compile again
[fw/altos] / src / cortexelf-v1 / Makefile
index 66f18045a7118929869fb5e4abc7d7d3bfd2dba1..be225e5797510e55f5bf7e14b8d2bb5aa7c5df45 100644 (file)
@@ -28,9 +28,9 @@ INC = \
        ao_lisp.h \
        ao_lisp_const.h \
        ao_lisp_os.h \
+       ao_flip_bits.h \
        Makefile
 
-
 #PROFILE=ao_profile.c
 #PROFILE_DEF=-DAO_PROFILE=1
 
@@ -56,6 +56,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 \
@@ -68,6 +70,10 @@ ALTOS_SRC = \
        ao_bufio.c \
        ao_fat.c \
        ao_flash_stm.c \
+       ao_button.c \
+       ao_event.c \
+       ao_1802.c \
+       ao_hex.c \
        ao_lisp_lex.c \
        ao_lisp_mem.c \
        ao_lisp_cons.c \
@@ -76,6 +82,7 @@ ALTOS_SRC = \
        ao_lisp_atom.c \
        ao_lisp_int.c \
        ao_lisp_poly.c \
+       ao_lisp_bool.c \
        ao_lisp_builtin.c \
        ao_lisp_read.c \
        ao_lisp_rep.c \
@@ -102,7 +109,7 @@ HEX=$(PROGNAME)-$(VERSION).ihx
 SRC=$(ALTOS_SRC) ao_cortexelf.c
 OBJ=$(SRC:.c=.o)
 
-all: $(PROG) $(HEX)
+all:: $(PROG) $(HEX)
 
 $(PROG): Makefile $(OBJ) cortexelf.ld
        $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(OBJ) $(LIBS)
@@ -117,9 +124,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 ../lisp/Makefile-lisp
 
 install: