lib.mk 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. LIB_DIR = $(PROJECT_ROOT)/lib
  2. CFLAGS += -I$(LIB_DIR)
  3. # Mlib containers
  4. CFLAGS += -I$(LIB_DIR)/mlib
  5. # U8G2 display library
  6. U8G2_DIR = $(LIB_DIR)/u8g2
  7. CFLAGS += -I$(U8G2_DIR)
  8. C_SOURCES += $(U8G2_DIR)/u8x8_d_st7565.c
  9. C_SOURCES += $(U8G2_DIR)/u8g2_d_setup.c
  10. C_SOURCES += $(U8G2_DIR)/u8g2_intersection.c
  11. C_SOURCES += $(U8G2_DIR)/u8g2_setup.c
  12. C_SOURCES += $(U8G2_DIR)/u8g2_d_memory.c
  13. C_SOURCES += $(U8G2_DIR)/u8x8_cad.c
  14. C_SOURCES += $(U8G2_DIR)/u8x8_byte.c
  15. C_SOURCES += $(U8G2_DIR)/u8x8_gpio.c
  16. C_SOURCES += $(U8G2_DIR)/u8x8_display.c
  17. C_SOURCES += $(U8G2_DIR)/u8x8_setup.c
  18. C_SOURCES += $(U8G2_DIR)/u8g2_hvline.c
  19. C_SOURCES += $(U8G2_DIR)/u8g2_ll_hvline.c
  20. C_SOURCES += $(U8G2_DIR)/u8g2_circle.c
  21. C_SOURCES += $(U8G2_DIR)/u8g2_box.c
  22. C_SOURCES += $(U8G2_DIR)/u8g2_buffer.c
  23. C_SOURCES += $(U8G2_DIR)/u8g2_font.c
  24. C_SOURCES += $(U8G2_DIR)/u8g2_fonts.c
  25. C_SOURCES += $(U8G2_DIR)/u8x8_8x8.c
  26. C_SOURCES += $(U8G2_DIR)/u8g2_bitmap.c
  27. FATFS_DIR = $(LIB_DIR)/fatfs
  28. C_SOURCES += $(FATFS_DIR)/ff.c
  29. C_SOURCES += $(FATFS_DIR)/ff_gen_drv.c
  30. C_SOURCES += $(FATFS_DIR)/diskio.c
  31. C_SOURCES += $(FATFS_DIR)/option/unicode.c