]> git.saurik.com Git - apple/xnu.git/blob - libkern/conf/Makefile.template
xnu-2050.18.24.tar.gz
[apple/xnu.git] / libkern / conf / Makefile.template
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
8 #
9 # Export IDENT for sub-makefiles
10 #
11 export IDENT
12
13 #
14 # INCFLAGS
15 #
16 INCFLAGS_MAKEFILE=
17
18 export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
19 export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
20 export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
21 export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
22
23 include $(MakeInc_cmd)
24 include $(MakeInc_def)
25
26 #
27 # CFLAGS
28 #
29 CFLAGS+= -include meta_features.h -DLIBKERN_KERNEL_PRIVATE -DOSALLOCDEBUG=1 \
30 $(CFLAGS_INLINE_CONFIG)
31
32 # zlib is 3rd party source
33 compress.o_CWARNFLAGS_ADD = -Wno-cast-qual
34 deflate.o_CWARNFLAGS_ADD = -Wno-cast-qual
35 infback.o_CWARNFLAGS_ADD = -Wno-cast-qual
36 inffast.o_CWARNFLAGS_ADD = -Wno-cast-qual
37 inflate.o_CWARNFLAGS_ADD = -Wno-cast-qual
38 trees.o_CWARNFLAGS_ADD = -Wno-cast-qual
39 uncompr.o_CWARNFLAGS_ADD = -Wno-cast-qual
40
41 # warnings in bison-generated code
42 OSUnserializeXML.cpo_CXXWARNFLAGS_ADD = -Wno-uninitialized
43
44 # Runtime support functions don't interact well with LTO (9294679)
45 stack_protector.o_CFLAGS_ADD += $(CFLAGS_NOLTO_FLAG)
46
47 #
48 # Directories for mig generated files
49 #
50 COMP_SUBDIRS =
51
52 #
53 # Make sure we don't remove this by accident if interrupted at the wrong
54 # time.
55 #
56 .PRECIOUS: Makefile
57
58 #
59 # Theses macros are filled in by the config program depending on the
60 # current configuration. The MACHDEP macro is replaced by the
61 # contents of the machine dependent makefile template and the others
62 # are replaced by the corresponding symbol definitions for the
63 # configuration.
64 #
65
66 %OBJS
67
68 %CFILES
69
70 %MFILES
71
72 %SFILES
73
74 %BFILES
75
76 %ORDERED
77 %MACHDEP
78
79 #
80 # OBJSDEPS is the set of files (defined in the machine dependent
81 # template if necessary) which all objects depend on (such as an
82 # in-line assembler expansion filter)
83 #
84 ${OBJS}: ${OBJSDEPS}
85
86
87 %LOAD
88
89 LDOBJS = $(OBJS)
90
91 $(COMPONENT).filelist: $(LDOBJS)
92 $(_v)if [ $(BUILD_MACHO_OBJ) -eq 1 ]; then \
93 for hib_file in ${HIB_FILES}; \
94 do \
95 $(SEG_HACK) __HIB $${hib_file} -o $${hib_file}__; \
96 mv $${hib_file}__ $${hib_file} ; \
97 done; \
98 fi
99 @echo LDFILELIST $(COMPONENT)
100 $(_v)( for obj in ${LDOBJS}; do \
101 echo $(TARGET)$(COMP_OBJ_DIR)/$(KERNEL_CONFIG)/$${obj}; \
102 done; ) > $(COMPONENT).filelist
103
104 do_all: $(COMPONENT).filelist
105
106 do_depend: do_all
107 $(_v)${MD} -u Makedep -f -d `ls *.d`
108
109 do_build_all: do_depend
110
111 %RULES
112
113 include $(MakeInc_rule)
114 include $(MakeInc_dir)