mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Makefile.base: add variable to exclude cpp files from build
This commit is contained in:
parent
44974ac106
commit
72bed868db
@ -55,7 +55,7 @@ ifeq ($(strip $(SRC))$(NO_AUTO_SRC),)
|
||||
SRC := $(filter-out $(SRC_NOLTO), $(wildcard *.c))
|
||||
endif
|
||||
ifeq ($(strip $(SRCXX))$(NO_AUTO_SRC),)
|
||||
SRCXX := $(wildcard *.$(SRCXXEXT))
|
||||
SRCXX := $(filter-out $(SRCXXEXCLUDE),$(wildcard *.$(SRCXXEXT)))
|
||||
endif
|
||||
ifeq ($(strip $(ASMSRC))$(NO_AUTO_SRC),)
|
||||
ASMSRC := $(wildcard *.s)
|
||||
|
Loading…
Reference in New Issue
Block a user