]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | # |
2 | # Mach Operating System | |
3 | # Copyright (c) 1986 Carnegie-Mellon University | |
4 | # All rights reserved. The CMU software License Agreement specifies | |
5 | # the terms and conditions for use and redistribution. | |
6 | # | |
7 | ||
1c79356b A |
8 | export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd |
9 | export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def | |
10 | export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule | |
11 | export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir | |
12 | ||
13 | include $(MakeInc_cmd) | |
14 | include $(MakeInc_def) | |
15 | ||
16 | # | |
17 | # XXX: CFLAGS | |
18 | # | |
fe8ab488 | 19 | CFLAGS+= -include meta_features.h -DMACH_KERNEL_PRIVATE -DMACH_KERNEL |
5ba3f43e | 20 | SFLAGS+= -include meta_features.h |
39236c6e A |
21 | |
22 | # Objects that don't want -Wcast-align warning (8474835) | |
23 | OBJS_NO_CAST_ALIGN = \ | |
fe8ab488 | 24 | atm_notification_user.o \ |
39236c6e | 25 | model_dep.o \ |
39236c6e | 26 | video_console.o \ |
39236c6e A |
27 | kdp_udp.o \ |
28 | kdp_machdep.o \ | |
29 | host.o \ | |
30 | processor.o \ | |
31 | sched_prim.o \ | |
32 | task.o \ | |
33 | thread.o \ | |
34 | threadinfo.o \ | |
35 | gssd_mach.o \ | |
36 | UNDRequest.o \ | |
37 | panic_dialog.o \ | |
38 | bsd_i386.o \ | |
39 | commpage.o \ | |
40 | cpu_threads.o \ | |
41 | cpuid.o \ | |
42 | locks_i386.o \ | |
d9a64523 | 43 | locks_i386_opt.o \ |
39236c6e A |
44 | machine_task.o \ |
45 | mp_desc.o \ | |
46 | pcb.o \ | |
47 | pcb_native.o \ | |
48 | kdp_x86_common.o \ | |
39236c6e A |
49 | startup64.o \ |
50 | affinity.o \ | |
51 | sched_grrr.o \ | |
fe8ab488 | 52 | sched_proto.o \ |
39236c6e A |
53 | stack.o \ |
54 | task_policy.o \ | |
55 | wait_queue.o \ | |
56 | bsd_kern.o \ | |
57 | pmc.o \ | |
39236c6e A |
58 | status.o \ |
59 | machine_routines.o \ | |
60 | loose_ends.o \ | |
fe8ab488 A |
61 | sleh.o \ |
62 | ccdigest_final_64be.o \ | |
63 | ccdigest_init.o \ | |
64 | ccdigest_update.o \ | |
65 | cchmac_final.o \ | |
66 | cchmac_init.o \ | |
67 | ccsha1.o \ | |
3e170ce0 A |
68 | ipc_object.o \ |
69 | ipc_kmsg.o \ | |
d9a64523 | 70 | ipc_right.o |
fe8ab488 A |
71 | |
72 | # Objects that don't want -Wsign-compare warning (15294427) | |
39037602 | 73 | OBJS_NO_SIGN_COMPARE = \ |
fe8ab488 | 74 | atm_notification_user.o |
39236c6e A |
75 | |
76 | $(foreach file,$(OBJS_NO_CAST_ALIGN),$(eval $(call add_perfile_cflags,$(file),-Wno-cast-align))) | |
fe8ab488 | 77 | $(foreach file,$(OBJS_NO_SIGN_COMPARE),$(eval $(call add_perfile_cflags,$(file),-Wno-sign-compare))) |
39236c6e | 78 | |
cb323159 A |
79 | ifeq ($(KSANCOV),1) |
80 | # Don't instrument functions called by the ksancov runtime. SanitizeCoverage does | |
81 | # not support blacklists, so exclude the whole file. | |
82 | machine_routines.o_CFLAGS_RM = $(KSANCOV_CFLAGS) | |
83 | machine_routines_common.o_CFLAGS_RM = $(KSANCOV_CFLAGS) | |
84 | pcb_native.o_CFLAGS_RM = $(KSANCOV_CFLAGS) | |
85 | endif | |
86 | ||
39236c6e A |
87 | # |
88 | # XXX: INCFLAGS to include libsa prototypes | |
89 | # | |
90 | INCFLAGS_MAKEFILE= -I$(SOURCE)libsa | |
1c79356b A |
91 | |
92 | # | |
93 | # Directories for mig generated files | |
94 | # | |
95 | COMP_SUBDIRS = \ | |
fe8ab488 | 96 | atm \ |
1c79356b A |
97 | default_pager \ |
98 | device \ | |
1c79356b | 99 | mach \ |
2d21ac55 A |
100 | UserNotification \ |
101 | gssd \ | |
b0d623f7 | 102 | kextd \ |
2d21ac55 | 103 | lockd |
1c79356b | 104 | |
1c79356b A |
105 | # |
106 | # Make sure we don't remove this by accident if interrupted at the wrong | |
107 | # time. | |
108 | # | |
109 | .PRECIOUS: Makefile | |
110 | ||
1c79356b A |
111 | # |
112 | # Theses macros are filled in by the config program depending on the | |
113 | # current configuration. The MACHDEP macro is replaced by the | |
114 | # contents of the machine dependent makefile template and the others | |
115 | # are replaced by the corresponding symbol definitions for the | |
116 | # configuration. | |
117 | # | |
118 | ||
119 | %OBJS | |
120 | ||
121 | %CFILES | |
122 | ||
fe8ab488 A |
123 | %CXXFILES |
124 | ||
1c79356b A |
125 | %SFILES |
126 | ||
1c79356b A |
127 | %MACHDEP |
128 | ||
fe8ab488 A |
129 | # Rebuild if per-file overrides change |
130 | ${OBJS}: $(firstword $(MAKEFILE_LIST)) | |
131 | ||
132 | # Rebuild if global compile flags change | |
133 | $(COBJS): .CFLAGS | |
134 | .CFLAGS: ALWAYS | |
135 | $(_v)$(REPLACECONTENTS) $@ $(KCC) $(CFLAGS) $(INCFLAGS) | |
136 | $(CXXOBJS): .CXXFLAGS | |
137 | .CXXFLAGS: ALWAYS | |
138 | $(_v)$(REPLACECONTENTS) $@ $(KC++) $(CXXFLAGS) $(INCFLAGS) | |
139 | $(SOBJS): .SFLAGS | |
140 | .SFLAGS: ALWAYS | |
141 | $(_v)$(REPLACECONTENTS) $@ $(S_KCC) $(SFLAGS) $(INCFLAGS) | |
142 | ||
143 | $(COMPONENT).filelist: $(OBJS) | |
39236c6e | 144 | $(_v)for hib_file in ${HIB_FILES}; \ |
91447636 | 145 | do \ |
3e170ce0 A |
146 | $(SEG_HACK) -n __HIB -o $${hib_file}__ $${hib_file} || exit 1; \ |
147 | mv $${hib_file}__ $${hib_file} || exit 1; \ | |
39236c6e | 148 | done |
cb323159 | 149 | $(call makelog,$(ColorL)LDFILELIST$(Color0) $(ColorLF)$(COMPONENT)$(Color0)) |
3e170ce0 | 150 | $(_v)for obj in ${OBJS}; do \ |
cb323159 | 151 | $(ECHO) $(TARGET)/$(CURRENT_KERNEL_CONFIG)/$${obj}; \ |
3e170ce0 | 152 | done > $(COMPONENT).filelist |
1c79356b | 153 | |
6d2010ae | 154 | do_all: $(COMPONENT).filelist |
1c79356b | 155 | |
39236c6e | 156 | do_build_all:: do_all |
1c79356b A |
157 | |
158 | # genassym.o actually is an assembly file, | |
159 | # we name it genassym.o to help with the automatic | |
160 | # dependency generation | |
161 | ||
39236c6e | 162 | GENASSYM_LOCATION = $(CURRENT_ARCH_CONFIG_LC) |
6d2010ae | 163 | |
39236c6e | 164 | ifeq ($(CURRENT_ARCH_CONFIG_LC),x86_64) |
6d2010ae | 165 | GENASSYM_LOCATION = i386 |
fe8ab488 A |
166 | else ifeq ($(CURRENT_ARCH_CONFIG_LC),x86_64h) |
167 | GENASSYM_LOCATION = i386 | |
6d2010ae A |
168 | endif |
169 | ||
fe8ab488 A |
170 | -include genassym.d |
171 | genassym.o: .CFLAGS $(firstword $(MAKEFILE_LIST)) | |
6d2010ae | 172 | genassym.o: $(SOURCE_DIR)/$(COMPONENT)/$(GENASSYM_LOCATION)/genassym.c |
cb323159 | 173 | $(call makelog,[$(CMD_MC)] $(ColorH)GENASSYM$(Color0) $(ColorLF)$<$(Color0)) |
3e170ce0 | 174 | $(_v)${GENASSYM_KCC} ${CFLAGS} ${CFLAGS_NOLTO_FLAG} -MD -S -o ${@} ${INCFLAGS} $< |
1c79356b A |
175 | |
176 | assym.s: genassym.o | |
3e170ce0 | 177 | $(_v)sed -e '/^[[:space:]]*DEFINITION__define__/!d;{N;s/\n//;}' -e 's/^[[:space:]]*DEFINITION__define__\([^:]*\):.*ascii.*\"[\$$]*\([-0-9\#]*\)\".*$$/#define \1 \2/' -e 'p' -e 's/#//2' -e 's/^[[:space:]]*#define \([A-Za-z0-9_]*\)[[:space:]]*[\$$#]*\([-0-9]*\).*$$/#define \1_NUM \2/' genassym.o > $@ |
1c79356b A |
178 | |
179 | ${SOBJS}: assym.s | |
180 | ||
1c79356b A |
181 | %RULES |
182 | ||
1c79356b A |
183 | include $(MakeInc_rule) |
184 | include $(MakeInc_dir) |