mirror of
https://github.com/hathach/tinyusb.git
synced 2026-03-18 05:25:08 +00:00
19 lines
355 B
Makefile
19 lines
355 B
Makefile
include ../../../hw/bsp/family_support.mk
|
|
|
|
INC += \
|
|
src \
|
|
|
|
|
|
# Example source
|
|
EXAMPLE_SOURCE += $(wildcard src/*.c)
|
|
SRC_C += $(addprefix $(EXAMPLE_PATH)/, $(EXAMPLE_SOURCE))
|
|
|
|
CFLAGS_GCC += -Wno-error=cast-align -Wno-error=null-dereference
|
|
|
|
SRC_C += \
|
|
src/class/hid/hid_host.c \
|
|
src/host/hub.c \
|
|
src/host/usbh.c
|
|
|
|
include ../../../hw/bsp/family_rules.mk
|