2023-11-23 20:19:14 +07:00
|
|
|
include ../../build_system/make/make.mk
|
2022-02-22 18:10:09 -08:00
|
|
|
|
|
|
|
INC += \
|
|
|
|
src \
|
|
|
|
$(TOP)/hw \
|
|
|
|
|
|
|
|
# Example source
|
|
|
|
EXAMPLE_SOURCE += $(wildcard src/*.c)
|
|
|
|
SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
|
|
|
|
|
2024-11-06 22:13:05 +07:00
|
|
|
CFLAGS_GCC += -Wno-error=cast-align -Wno-error=null-dereference
|
2022-02-22 18:10:09 -08:00
|
|
|
|
|
|
|
SRC_C += \
|
|
|
|
src/class/hid/hid_host.c \
|
|
|
|
src/host/hub.c \
|
2022-03-11 09:57:35 +07:00
|
|
|
src/host/usbh.c
|
2022-02-22 18:10:09 -08:00
|
|
|
|
2023-11-23 20:19:14 +07:00
|
|
|
include ../../build_system/make/rules.mk
|