lib.mk 870 B

12345678910111213141516171819202122232425
  1. LIB_DIR = $(PROJECT_ROOT)/lib
  2. CFLAGS += -I$(LIB_DIR)
  3. U8G2_DIR = $(LIB_DIR)/u8g2
  4. CFLAGS += -I$(U8G2_DIR)
  5. C_SOURCES += $(U8G2_DIR)/u8x8_d_st7565.c
  6. C_SOURCES += $(U8G2_DIR)/u8g2_d_setup.c
  7. C_SOURCES += $(U8G2_DIR)/u8g2_intersection.c
  8. C_SOURCES += $(U8G2_DIR)/u8g2_setup.c
  9. C_SOURCES += $(U8G2_DIR)/u8g2_d_memory.c
  10. C_SOURCES += $(U8G2_DIR)/u8x8_cad.c
  11. C_SOURCES += $(U8G2_DIR)/u8x8_byte.c
  12. C_SOURCES += $(U8G2_DIR)/u8x8_gpio.c
  13. C_SOURCES += $(U8G2_DIR)/u8x8_display.c
  14. C_SOURCES += $(U8G2_DIR)/u8x8_setup.c
  15. C_SOURCES += $(U8G2_DIR)/u8g2_hvline.c
  16. C_SOURCES += $(U8G2_DIR)/u8g2_ll_hvline.c
  17. C_SOURCES += $(U8G2_DIR)/u8g2_circle.c
  18. C_SOURCES += $(U8G2_DIR)/u8g2_box.c
  19. C_SOURCES += $(U8G2_DIR)/u8g2_buffer.c
  20. C_SOURCES += $(U8G2_DIR)/u8g2_font.c
  21. C_SOURCES += $(U8G2_DIR)/u8g2_fonts.c
  22. C_SOURCES += $(U8G2_DIR)/u8x8_8x8.c
  23. C_SOURCES += $(U8G2_DIR)/u8g2_bitmap.c