summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
inline | side by side (from parent 1:
a2a37ad)
This hasn’t been officially supported for some time, but the variable
was still being referenced and could have been supplied on the command
line.
# (overridable) Collect all of the applicable includes from the
# includes directory.
# (overridable) Collect all of the applicable includes from the
# includes directory.
-sourceincludes := $(shell $(FIND) $(FINDOPTS) $(foreach dir,$(INCLUDEDIR),$(call quote,$(dir))) -type f '(' $(FINDRULES) ')')
+sourceincludes := $(shell $(FIND) $(foreach dir,$(INCLUDEDIR),$(call quote,$(dir))) -type f '(' $(FINDRULES) ')')
# (overridable) Collect all of the applicable source files from the
# source directory, removing any which are also includes.
# (overridable) Collect all of the applicable source files from the
# source directory, removing any which are also includes.
-sourcefiles := $(filter-out $(sourceincludes),$(shell $(FIND) $(FINDOPTS) $(foreach dir,$(SRCDIR),$(call quote,$(dir))) -type f '(' $(FINDRULES) ')'))
+sourcefiles := $(filter-out $(sourceincludes),$(shell $(FIND) $(foreach dir,$(SRCDIR),$(call quote,$(dir))) -type f '(' $(FINDRULES) ')'))
ifdef GIT
ifneq ($(wildcard $(THISDIR)/.git),)
ifdef GIT
ifneq ($(wildcard $(THISDIR)/.git),)