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

20 lines
409 B
Makefile
Raw Normal View History

SRCS := usbus.c
SRCS += usbus_hdrs.c
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
ifneq (,$(filter usbus_dfu,$(USEMODULE)))
DIRS += dfu/
endif
2020-06-01 18:01:32 +02:00
ifneq (,$(filter usbus_hid,$(USEMODULE)))
DIRS += hid
endif
ifneq (,$(filter usbus_msc,$(USEMODULE)))
DIRS += msc
endif
include $(RIOTBASE)/Makefile.base