From 3882740cc912c58030e9dadee348edc653e0551d Mon Sep 17 00:00:00 2001 From: "Thomas \"Cakeisalie5\" Touhey" Date: Wed, 4 Jan 2017 23:53:35 +0100 Subject: [PATCH] Filtered out p7os from default binaries --- Makefile | 2 +- Makefile.vars | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 48f34d2..3fe5d56 100755 --- a/Makefile +++ b/Makefile @@ -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)/%): diff --git a/Makefile.vars b/Makefile.vars index a54d32d..ce058fa 100755 --- a/Makefile.vars +++ b/Makefile.vars @@ -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