]> git.saurik.com Git - apple/xnu.git/blame - iokit/conf/Makefile.template
xnu-517.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
55e303ae
A
34CFLAGS_RELEASE += -DIOASSERT=0
35CFLAGS_DEBUG += -DIOASSERT=1
36
1c79356b
A
37SFLAGS+= -DKERNEL
38
39#
40# Directories for mig generated files
41#
42COMP_SUBDIRS =
43
44#
45# Make sure we don't remove this by accident if interrupted at the wrong
46# time.
47#
48.PRECIOUS: Makefile
49
50VERSION_FILES= \
51 $(SOURCE_DIR)/$(COMPONENT)/conf/version.major \
52 $(SOURCE_DIR)/$(COMPONENT)/conf/version.minor \
53 $(SOURCE_DIR)/$(COMPONENT)/conf/version.variant
54
55COPYRIGHT_FILES = \
56 $(SOURCE_DIR)/$(COMPONENT)/conf/copyright
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
89LDOBJS = $(OBJS)
90
91$(COMPONENT).o: $(LDOBJS)
92 @echo "creating $(COMPONENT).o"
93 $(RM) $(RMFLAGS) vers.c
55e303ae 94 $(COMPOBJROOT)/newvers \
1c79356b
A
95 `$(CAT) ${VERSION_FILES}` ${COPYRIGHT_FILES}
96 ${KCC} $(CFLAGS) $(INCLUDES) -c vers.c
97 @echo [ updating $(COMPONENT).o ${IOKIT_KERNEL_CONFIG} ]
98 $(LD) $(LDFLAGS_COMPONENT) -o $(COMPONENT).o ${LDOBJS} vers.o
99
100do_depend: do_all
101 ${MD} -u Makedep -f -d `ls *.d`
102
103
104do_all: $(COMPONENT).o
105
106do_build_all: do_depend
107
108%RULES
109
1c79356b 110include $(MakeInc_rule)
1c79356b
A
111include $(MakeInc_dir)
112