59 lines
2.2 KiB
Plaintext
59 lines
2.2 KiB
Plaintext
#*************************************************************************
|
|
# Copyright (c) 2006 UChicago Argonne LLC, as Operator of Argonne
|
|
# National Laboratory.
|
|
# Copyright (c) 2002 The Regents of the University of California, as
|
|
# Operator of Los Alamos National Laboratory.
|
|
# EPICS BASE is distributed subject to a Software License Agreement found
|
|
# in the file LICENSE that is included with this distribution.
|
|
#*************************************************************************
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
|
|
ARCHS += $(BUILD_ARCHS)
|
|
ACTIONS += inc build install buildInstall clean realclean archclean runtests
|
|
|
|
dirPart = $(word 1, $(subst $(DIVIDER), ,$@))
|
|
actionArchPart = $(join $(word 2, $(subst $(DIVIDER), ,$@)), \
|
|
$(addprefix $(DIVIDER),$(word 3, $(subst $(DIVIDER), ,$@))))
|
|
|
|
dirActionArchTargets = $(foreach dir, $(DIRS), \
|
|
$(foreach action, $(ACTIONS),\
|
|
$(foreach arch, $(ARCHS), \
|
|
$(dir)$(DIVIDER)$(action)$(DIVIDER)$(arch))))
|
|
dirArchTargets += $(foreach dir, $(DIRS), \
|
|
$(foreach arch, $(ARCHS),\
|
|
$(dir)$(DIVIDER)$(arch)))
|
|
dirActionTargets += $(foreach dir, $(DIRS), \
|
|
$(foreach action, $(ACTIONS),\
|
|
$(dir)$(DIVIDER)$(action)))
|
|
actionArchTargets = $(foreach action, $(ACTIONS),\
|
|
$(foreach arch, $(ARCHS), \
|
|
$(action)$(DIVIDER)$(arch)))
|
|
|
|
all : install
|
|
|
|
rebuild : clean install
|
|
|
|
# Create directory dependancies lines for GNU make -j option
|
|
# Only works with GNU make 3.80 or later (uses eval function)
|
|
define DEP_template
|
|
$(1): $$($(1)_DEPEND_DIRS)
|
|
$(1)$$(DIVIDER)$(2) : $$(foreach ddir, $$($(1)_DEPEND_DIRS),$$(addsuffix $$(DIVIDER)$(2),$$(ddir)))
|
|
endef
|
|
$(foreach action, $(ACTIONS), $(foreach dir, $(DIRS),$(eval $(call DEP_template,$(dir),$(action)))))
|
|
|
|
$(DIRS) $(dirActionTargets) $(dirArchTargets) $(dirActionArchTargets) :
|
|
$(MAKE) -C $(dirPart) $(actionArchPart)
|
|
|
|
$(ARCHS) $(ACTIONS) $(actionArchTargets) :%: \
|
|
$(foreach dir, $(DIRS), $(dir)$(DIVIDER)%)
|
|
|
|
.PHONY : $(DIRS) all rebuild
|
|
.PHONY : $(ARCHS) $(ACTIONS)
|
|
.PHONY : $(dirActionTargets) $(dirArchTargets)
|
|
.PHONY : $(dirActionArchTargets)
|
|
.PHONY : $(actionArchTargets)
|
|
|