]> git.saurik.com Git - apple/xnu.git/blame - iokit/conf/Makefile.template
xnu-792.25.20.tar.gz
[apple/xnu.git] / iokit / conf / Makefile.template
CommitLineData
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
8#
9# Export IDENT for sub-makefiles
10#
11export IDENT
12
13#
14# XXX: INCFLAGS
15#
16INCFLAGS_MAKEFILE= $(INCFLAGS_POSIX) -I$(SOURCE) -I$(SOURCE)include
17
18export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
19export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
20export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
21export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
22
23include $(MakeInc_cmd)
24include $(MakeInc_def)
25
26#
27# XXX: CFLAGS
28#
29CFLAGS+= -DKERNEL -DDRIVER_PRIVATE \
30 -Wall -Wno-four-char-constants -fno-common \
55e303ae 31 -DIOMATCHDEBUG=1 -DIOALLOCDEBUG=1 \
1c79356b
A
32#-DIOKITDEBUG=-1
33
91447636
A
34CWARNFLAGS += -Wno-unused-parameter -Wno-redundant-decls -Wno-nested-externs -Wno-write-strings
35MWARNFLAGS += -Wno-unused-parameter -Wno-redundant-decls -Wno-nested-externs -Wno-write-strings
36CXXWARNFLAGS += -Wno-unused-parameter -Wno-redundant-decls -Wno-write-strings -Wno-cast-qual -Wno-shadow
37
55e303ae
A
38CFLAGS_RELEASE += -DIOASSERT=0
39CFLAGS_DEBUG += -DIOASSERT=1
40
1c79356b
A
41SFLAGS+= -DKERNEL
42
43#
44# Directories for mig generated files
45#
46COMP_SUBDIRS =
47
48#
49# Make sure we don't remove this by accident if interrupted at the wrong
50# time.
51#
52.PRECIOUS: Makefile
53
1c79356b
A
54#
55# Theses macros are filled in by the config program depending on the
56# current configuration. The MACHDEP macro is replaced by the
57# contents of the machine dependent makefile template and the others
58# are replaced by the corresponding symbol definitions for the
59# configuration.
60#
61
62%OBJS
63
64%CFILES
65
66%MFILES
67
68%SFILES
69
70%BFILES
71
72%ORDERED
73%MACHDEP
74
75#
76# OBJSDEPS is the set of files (defined in the machine dependent
77# template if necessary) which all objects depend on (such as an
78# in-line assembler expansion filter)
79#
80${OBJS}: ${OBJSDEPS}
81
82
83%LOAD
84
85LDOBJS = $(OBJS)
86
87$(COMPONENT).o: $(LDOBJS)
88 @echo "creating $(COMPONENT).o"
91447636 89
3a60a9f5
A
90 $(SEG_HACK) __HIB IOHibernateRestoreKernel.o -o _IOHibernateRestoreKernel.o
91 mv _IOHibernateRestoreKernel.o IOHibernateRestoreKernel.o
92 $(SEG_HACK) __HIB WKdmDecompress.o -o _WKdmDecompress.o
93 mv _WKdmDecompress.o WKdmDecompress.o
94
1c79356b 95 @echo [ updating $(COMPONENT).o ${IOKIT_KERNEL_CONFIG} ]
91447636 96 $(LD) $(LDFLAGS_COMPONENT) -o $(COMPONENT).o ${LDOBJS}
1c79356b
A
97
98do_depend: do_all
99 ${MD} -u Makedep -f -d `ls *.d`
100
101
102do_all: $(COMPONENT).o
103
104do_build_all: do_depend
105
106%RULES
107
1c79356b 108include $(MakeInc_rule)
1c79356b
A
109include $(MakeInc_dir)
110