1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/congure/Makefile

21 lines
445 B
Makefile

ifneq (,$(filter congure_abe,$(USEMODULE)))
DIRS += abe
endif
ifneq (,$(filter congure_quic,$(USEMODULE)))
DIRS += quic
endif
ifneq (,$(filter congure_mock,$(USEMODULE)))
DIRS += mock
endif
ifneq (,$(filter congure_reno,$(USEMODULE)))
DIRS += reno
endif
ifneq (,$(filter congure_reno_methods,$(USEMODULE)))
DIRS += reno/methods
endif
ifneq (,$(filter congure_test,$(USEMODULE)))
DIRS += test
endif
include $(RIOTBASE)/Makefile.base