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))
|
SRC := $(filter-out $(SRC_NOLTO), $(wildcard *.c))
|
||||||
endif
|
endif
|
||||||
ifeq ($(strip $(SRCXX))$(NO_AUTO_SRC),)
|
ifeq ($(strip $(SRCXX))$(NO_AUTO_SRC),)
|
||||||
SRCXX := $(wildcard *.$(SRCXXEXT))
|
SRCXX := $(filter-out $(SRCXXEXCLUDE),$(wildcard *.$(SRCXXEXT)))
|
||||||
endif
|
endif
|
||||||
ifeq ($(strip $(ASMSRC))$(NO_AUTO_SRC),)
|
ifeq ($(strip $(ASMSRC))$(NO_AUTO_SRC),)
|
||||||
ASMSRC := $(wildcard *.s)
|
ASMSRC := $(wildcard *.s)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user