cake
/
p7utils
Archived
1
0
Fork 0

Filtered out p7os from default binaries

This commit is contained in:
Thomas Touhey 2017-01-04 23:53:35 +01:00
parent 543910561e
commit 3882740cc9
2 changed files with 2 additions and 1 deletions

View File

@ -114,7 +114,7 @@ endif
# Binaries-specific targets #
#******************************************************************************#
# Make the binaries.
all-bins: $(CHECKCFG) $(BINARIES:%=all-%)
all-bins: $(CHECKCFG) $(DEFAULT_BINARIES:%=all-%)
# Make a binary object directory.
$(BINARIES:%=$(OBJDIR)/%):

View File

@ -97,6 +97,7 @@
# Look for binaries
BINARIES := $(notdir $(shell find $(SRCDIR) -mindepth 1 -maxdepth 1 \
-type d | sort))
DEFAULT_BINARIES := $(filter-out p7os,$(BINARIES))
# Look for their sources
define get-binary-sources