2020-10-07 12:37:43 +03:00
|
|
|
PROJECT_ROOT = $(abspath $(dir $(abspath $(firstword $(MAKEFILE_LIST))))..)
|
2020-10-01 02:05:04 +03:00
|
|
|
PROJECT = bootloader
|
|
|
|
|
2020-10-07 12:37:43 +03:00
|
|
|
include $(PROJECT_ROOT)/make/base.mk
|
2020-10-01 02:05:04 +03:00
|
|
|
|
2021-08-08 21:03:25 +03:00
|
|
|
CFLAGS += -I$(PROJECT_ROOT) -Itargets/furi-hal-include
|
2020-10-07 12:37:43 +03:00
|
|
|
ASM_SOURCES += $(wildcard src/*.s)
|
|
|
|
C_SOURCES += $(wildcard src/*.c)
|
|
|
|
CPP_SOURCES += $(wildcard src/*.cpp)
|
2020-10-01 02:05:04 +03:00
|
|
|
|
2021-06-23 17:58:44 +03:00
|
|
|
TARGET ?= f6
|
2020-10-01 02:05:04 +03:00
|
|
|
TARGET_DIR = targets/$(TARGET)
|
|
|
|
include $(TARGET_DIR)/target.mk
|
|
|
|
|
2021-08-12 11:48:05 +03:00
|
|
|
LIB_DIR = $(PROJECT_ROOT)/lib
|
|
|
|
|
|
|
|
# U8G2 display library
|
|
|
|
U8G2_DIR = $(LIB_DIR)/u8g2
|
|
|
|
CFLAGS += -I$(U8G2_DIR)
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8x8_d_st7565.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_d_setup.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_intersection.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_setup.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_d_memory.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8x8_cad.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8x8_byte.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8x8_gpio.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8x8_display.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8x8_setup.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_hvline.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_line.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_ll_hvline.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_circle.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_box.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_buffer.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_font.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_fonts.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8x8_8x8.c
|
|
|
|
C_SOURCES += $(U8G2_DIR)/u8g2_bitmap.c
|
|
|
|
|
|
|
|
|
2020-11-06 12:31:06 +03:00
|
|
|
include $(PROJECT_ROOT)/make/git.mk
|
2020-10-07 12:37:43 +03:00
|
|
|
include $(PROJECT_ROOT)/make/toolchain.mk
|
|
|
|
include $(PROJECT_ROOT)/make/rules.mk
|