From 5b61fb0a923d90807cf3e117b6a344edf73b71fb Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Wed, 5 Jul 2000 14:13:05 +0000 Subject: [PATCH] Added option to install all include files first. --- config/RULES_DIRS | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config/RULES_DIRS b/config/RULES_DIRS index 0a0edac51..14f649f63 100644 --- a/config/RULES_DIRS +++ b/config/RULES_DIRS @@ -23,8 +23,13 @@ dirActionTargets += $(foreach dir, $(DIRS), \ actionArchTargets = $(foreach action, $(ACTIONS),\ $(foreach arch, $(ARCHS), \ $(action)$(DIVIDER)$(arch))) - +ifeq ($(MAKE_INC_TARGET_FIRST),YES) +all install :: inc buildInstall +$(ARCHS) $(installArchTargets) :: inc +else all install :: buildInstall +endif + rebuild:: clean all