]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd |
2 | export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def | |
3 | export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule | |
4 | export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir | |
5 | ||
1c79356b A |
6 | include $(MakeInc_cmd) |
7 | include $(MakeInc_def) | |
8 | ||
6d2010ae | 9 | SETUP_SUBDIRS = |
1c79356b A |
10 | |
11 | COMP_SUBDIRS = | |
12 | ||
13 | INST_SUBDIRS = | |
14 | ||
15 | ifndef BSD_KERNEL_CONFIG | |
16 | export BSD_KERNEL_CONFIG = $(KERNEL_CONFIG) | |
17 | endif | |
18 | ||
2d21ac55 A |
19 | ifneq ($(MACHINE_CONFIG), DEFAULT) |
20 | export COMPOBJROOT=$(OBJROOT)/$(KERNEL_CONFIG)_$(ARCH_CONFIG)_$(MACHINE_CONFIG)/$(COMPONENT) | |
21 | else | |
55e303ae | 22 | export COMPOBJROOT=$(OBJROOT)/$(KERNEL_CONFIG)_$(ARCH_CONFIG)/$(COMPONENT) |
2d21ac55 | 23 | endif |
1c79356b | 24 | |
6d2010ae | 25 | MASTER_CPU_PER_SOC = $(SOURCE)/MASTER.$(ARCH_CONFIG_LC).$(MACHINE_CONFIG_LC) |
1c79356b A |
26 | |
27 | $(COMPOBJROOT)/$(BSD_KERNEL_CONFIG)/Makefile : $(SOURCE)/MASTER \ | |
0b4e3aa0 | 28 | $(SOURCE)/MASTER.$(ARCH_CONFIG_LC) \ |
1c79356b | 29 | $(SOURCE)/Makefile.template \ |
0b4e3aa0 | 30 | $(SOURCE)/Makefile.$(ARCH_CONFIG_LC) \ |
1c79356b | 31 | $(SOURCE)/files \ |
6d2010ae | 32 | $(SOURCE)/files.$(ARCH_CONFIG_LC) |
2d21ac55 | 33 | $(_v)(doconf_target=$(addsuffix /conf, $(TARGET)); \ |
1c79356b A |
34 | $(MKDIR) $${doconf_target}; \ |
35 | cd $${doconf_target}; \ | |
36 | rm -f $(notdir $?); \ | |
37 | cp $? $${doconf_target}; \ | |
6d2010ae A |
38 | if [ -f $(MASTER_CPU_PER_SOC) ]; then cp $(MASTER_CPU_PER_SOC) $${doconf_target}; fi; \ |
39 | $(SRCROOT)/SETUP/config/doconf -c -cpu $(ARCH_CONFIG_LC) -soc $(MACHINE_CONFIG_LC) -d $(TARGET)/$(BSD_KERNEL_CONFIG) $(BSD_KERNEL_CONFIG); \ | |
1c79356b A |
40 | ); |
41 | ||
6d2010ae | 42 | do_all: $(COMPOBJROOT)/$(BSD_KERNEL_CONFIG)/Makefile |
2d21ac55 | 43 | $(_v)next_source=$(subst conf/,,$(SOURCE)); \ |
9bccf70c A |
44 | ${MAKE} -C $(COMPOBJROOT)/$(BSD_KERNEL_CONFIG) \ |
45 | MAKEFILES=$(TARGET)/$(BSD_KERNEL_CONFIG)/Makefile \ | |
1c79356b A |
46 | SOURCE=$${next_source} \ |
47 | TARGET=$(TARGET) \ | |
0b4e3aa0 | 48 | INCL_MAKEDEP=FALSE \ |
55e303ae | 49 | KERNEL_CONFIG=$(BSD_KERNEL_CONFIG) \ |
2d21ac55 | 50 | build_all; |
1c79356b A |
51 | |
52 | do_build_all: do_all | |
53 | ||
54 | include $(MakeInc_rule) | |
55 | include $(MakeInc_dir) |