2019-01-31 22:44:12 +01:00
|
|
|
SRCS := usbus.c
|
|
|
|
SRCS += usbus_hdrs.c
|
|
|
|
|
2019-02-27 22:19:12 +01:00
|
|
|
ifneq (,$(filter usbus_cdc_ecm,$(USEMODULE)))
|
|
|
|
DIRS += cdc/ecm
|
|
|
|
endif
|
2019-02-28 21:37:01 +01:00
|
|
|
ifneq (,$(filter usbus_cdc_acm,$(USEMODULE)))
|
|
|
|
DIRS += cdc/acm
|
|
|
|
endif
|
2020-12-15 17:11:31 +01:00
|
|
|
ifneq (,$(filter usbus_dfu,$(USEMODULE)))
|
|
|
|
DIRS += dfu/
|
|
|
|
endif
|
2020-06-01 18:01:32 +02:00
|
|
|
ifneq (,$(filter usbus_hid,$(USEMODULE)))
|
|
|
|
DIRS += hid
|
|
|
|
endif
|
2022-11-25 21:15:51 +01:00
|
|
|
ifneq (,$(filter usbus_msc,$(USEMODULE)))
|
|
|
|
DIRS += msc
|
|
|
|
endif
|
2019-01-31 22:44:12 +01:00
|
|
|
include $(RIOTBASE)/Makefile.base
|