1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/usb/usbus/Makefile
Dylan Laduranty d49ed218ab usbus/msc: add initial support for Mass Storage Class
Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
2023-03-01 21:50:13 +01:00

20 lines
409 B
Makefile

SRCS := usbus.c
SRCS += usbus_hdrs.c
ifneq (,$(filter usbus_cdc_ecm,$(USEMODULE)))
DIRS += cdc/ecm
endif
ifneq (,$(filter usbus_cdc_acm,$(USEMODULE)))
DIRS += cdc/acm
endif
ifneq (,$(filter usbus_dfu,$(USEMODULE)))
DIRS += dfu/
endif
ifneq (,$(filter usbus_hid,$(USEMODULE)))
DIRS += hid
endif
ifneq (,$(filter usbus_msc,$(USEMODULE)))
DIRS += msc
endif
include $(RIOTBASE)/Makefile.base