From 4714e389116dbac12ca273cbb2f53efcdebf5518 Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Wed, 6 Jan 2021 20:46:56 +0100 Subject: [PATCH] cpu/atmega_common: drop unused module The module cpu_atmega_common_cxx seems to be non-existing and not used. It is unclear whether this slipped in by accident or if this was actually useful at some point in time. In any case, the module is not present (anymore) and cannot be used, so let's clean up the Makefile. --- cpu/atmega_common/Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cpu/atmega_common/Makefile b/cpu/atmega_common/Makefile index d945090d16..41d51c7b31 100644 --- a/cpu/atmega_common/Makefile +++ b/cpu/atmega_common/Makefile @@ -4,8 +4,4 @@ MODULE = atmega_common # add a list of subdirectories, that should also be build DIRS = periph avr_libc_extra -ifneq (,$(filter cpu_atmega_common_cxx,$(USEMODULE))) - DIRS += cxx -endif - include $(RIOTBASE)/Makefile.base