]> git.saurik.com Git - apple/xnu.git/blame_incremental - security/conf/Makefile
xnu-1456.1.26.tar.gz
[apple/xnu.git] / security / conf / Makefile
... / ...
CommitLineData
1export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
2export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
3export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
4export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
5
6
7include $(MakeInc_cmd)
8include $(MakeInc_def)
9
10SETUP_SUBDIRS = \
11 tools
12
13COMP_SUBDIRS =
14
15INST_SUBDIRS =
16
17ifndef SECURITY_KERNEL_CONFIG
18export SECURITY_KERNEL_CONFIG = $(KERNEL_CONFIG)
19endif
20
21ifneq ($(MACHINE_CONFIG), DEFAULT)
22export COMPOBJROOT=$(OBJROOT)/$(KERNEL_CONFIG)_$(ARCH_CONFIG)_$(MACHINE_CONFIG)/$(COMPONENT)
23else
24export COMPOBJROOT=$(OBJROOT)/$(KERNEL_CONFIG)_$(ARCH_CONFIG)/$(COMPONENT)
25endif
26
27$(COMPOBJROOT)/doconf:
28 @make build_setup
29
30$(COMPOBJROOT)/$(SECURITY_KERNEL_CONFIG)/Makefile : $(SOURCE)/MASTER \
31 $(SOURCE)/MASTER.$(ARCH_CONFIG_LC) \
32 $(SOURCE)/Makefile.template \
33 $(SOURCE)/Makefile.$(ARCH_CONFIG_LC) \
34 $(SOURCE)/files \
35 $(SOURCE)/files.$(ARCH_CONFIG_LC) \
36 $(COMPOBJROOT)/doconf
37 $(_v)(doconf_target=$(addsuffix /conf, $(TARGET)); \
38 $(MKDIR) $${doconf_target}; \
39 cd $${doconf_target}; \
40 rm -f $(notdir $?); \
41 cp $? $${doconf_target}; \
42 $(COMPOBJROOT)/doconf -c -cpu $(ARCH_CONFIG_LC) -d $(TARGET)/$(SECURITY_KERNEL_CONFIG) $(SECURITY_KERNEL_CONFIG); \
43 );
44
45.ORDER: $(COMPOBJROOT)/$(SECURITY_KERNEL_CONFIG)/Makefile
46
47do_setup_conf: $(COMPOBJROOT)/doconf \
48 $(COMPOBJROOT)/$(SECURITY_KERNEL_CONFIG)/Makefile
49
50do_all: do_setup_conf
51 $(_v)next_source=$(subst conf/,,$(SOURCE)); \
52 ${MAKE} -C $(COMPOBJROOT)/$(SECURITY_KERNEL_CONFIG) \
53 MAKEFILES=$(TARGET)/$(SECURITY_KERNEL_CONFIG)/Makefile \
54 SOURCE=$${next_source} \
55 TARGET=$(TARGET) \
56 INCL_MAKEDEP=FALSE \
57 KERNEL_CONFIG=$(SECURITY_KERNEL_CONFIG) \
58 build_all;
59
60do_build_all: do_all
61
62include $(MakeInc_rule)
63include $(MakeInc_dir)