]>
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 | ||
8 | # | |
9 | # Export IDENT for sub-makefiles | |
10 | # | |
11 | export IDENT | |
12 | ||
13 | # | |
14 | # XXX: INCFLAGS | |
15 | # | |
16 | INCFLAGS_MAKEFILE= $(INCFLAGS_POSIX) -I$(SOURCE) -I$(SOURCE)include | |
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 | # XXX: CFLAGS | |
28 | # | |
29 | CFLAGS+= -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 |
34 | CWARNFLAGS += -Wno-unused-parameter -Wno-redundant-decls -Wno-nested-externs -Wno-write-strings |
35 | MWARNFLAGS += -Wno-unused-parameter -Wno-redundant-decls -Wno-nested-externs -Wno-write-strings | |
36 | CXXWARNFLAGS += -Wno-unused-parameter -Wno-redundant-decls -Wno-write-strings -Wno-cast-qual -Wno-shadow | |
37 | ||
55e303ae A |
38 | CFLAGS_RELEASE += -DIOASSERT=0 |
39 | CFLAGS_DEBUG += -DIOASSERT=1 | |
40 | ||
1c79356b A |
41 | SFLAGS+= -DKERNEL |
42 | ||
43 | # | |
44 | # Directories for mig generated files | |
45 | # | |
46 | COMP_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 | ||
85 | LDOBJS = $(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 | |
98 | do_depend: do_all | |
99 | ${MD} -u Makedep -f -d `ls *.d` | |
100 | ||
101 | ||
102 | do_all: $(COMPONENT).o | |
103 | ||
104 | do_build_all: do_depend | |
105 | ||
106 | %RULES | |
107 | ||
1c79356b | 108 | include $(MakeInc_rule) |
1c79356b A |
109 | include $(MakeInc_dir) |
110 |