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.
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
13 include $(MakeInc_cmd)
14 include $(MakeInc_def)
19 CFLAGS+= -include meta_features.h -DBSD_KERNEL_PRIVATE
20 SFLAGS+= -include meta_features.h
23 # INCFLAGS to include security prototypes
25 INCFLAGS_MAKEFILE= -I$(SOURCE)/..
28 # Directories for mig generated files
33 # Make sure we don't remove this by accident if interrupted at the wrong
39 # Theses macros are filled in by the config program depending on the
40 # current configuration. The MACHDEP macro is replaced by the
41 # contents of the machine dependent makefile template and the others
42 # are replaced by the corresponding symbol definitions for the
59 # Diagnostic opt-outs. We need to make this list empty.
61 # DO NOT ADD MORE HERE.
64 mac_base.o_CFLAGS_ADD += -Wno-cast-align
65 # -Wno-shorten-64-to-32
66 mac_audit.o_CFLAGS_ADD += -Wno-shorten-64-to-32
67 mac_base.o_CFLAGS_ADD += -Wno-shorten-64-to-32
68 mac_process.o_CFLAGS_ADD += -Wno-shorten-64-to-32
69 # -Wno-sign-conversion
70 mac_base.o_CFLAGS_ADD += -Wno-sign-conversion
71 mac_mach.o_CFLAGS_ADD += -Wno-sign-conversion
72 mac_vfs.o_CFLAGS_ADD += -Wno-sign-conversion
73 mac_vfs_subr.o_CFLAGS_ADD += -Wno-sign-conversion
75 # Rebuild if per-file overrides change
76 ${OBJS}: $(firstword $(MAKEFILE_LIST))
78 # Rebuild if global compile flags change
81 $(_v)$(REPLACECONTENTS) $@ $(KCC) $(CFLAGS) $(INCFLAGS)
84 $(_v)$(REPLACECONTENTS) $@ $(KC++) $(CXXFLAGS) $(INCFLAGS)
87 $(_v)$(REPLACECONTENTS) $@ $(S_KCC) $(SFLAGS) $(INCFLAGS)
89 $(COMPONENT).filelist: $(OBJS)
90 @$(LOG_LDFILELIST) "$(COMPONENT)"
91 $(_v)for obj in ${OBJS}; do \
92 $(ECHO) $(TARGET)/$(CURRENT_KERNEL_CONFIG)/$${obj}; \
93 done > $(COMPONENT).filelist
95 $(COMPONENT).libfilelist: $(LIBOBJS)
96 @$(LOG_LDFILELIST) "lib$(COMPONENT)"
97 $(_v)for obj in ${LIBOBJS}; do \
98 $(ECHO) $(TARGET)/$(CURRENT_KERNEL_CONFIG)/$${obj}; \
99 done > $(COMPONENT).libfilelist
101 ifeq ($(RC_ProjectName),xnu_libraries)
102 do_all: $(COMPONENT).libfilelist
104 do_all: $(COMPONENT).filelist
107 do_build_all:: do_all
111 include $(MakeInc_rule)
112 include $(MakeInc_dir)