]>
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= | |
17 | ||
18 | ||
19 | export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd | |
20 | export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def | |
21 | export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule | |
22 | export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir | |
23 | ||
24 | include $(MakeInc_cmd) | |
25 | include $(MakeInc_def) | |
26 | ||
27 | # | |
28 | # XXX: CFLAGS | |
29 | # | |
2d21ac55 A |
30 | CFLAGS+= -imacros meta_features.h -DKERNEL -DLIBSA_KERNEL_PRIVATE \ |
31 | -Wall -Wno-four-char-constants -fno-common $(CFLAGS_INLINE_CONFIG) | |
1c79356b A |
32 | |
33 | SFLAGS+= -DKERNEL | |
34 | ||
35 | # | |
36 | # Directories for mig generated files | |
37 | # | |
38 | COMP_SUBDIRS = | |
39 | ||
40 | # | |
41 | # Make sure we don't remove this by accident if interrupted at the wrong | |
42 | # time. | |
43 | # | |
44 | .PRECIOUS: Makefile | |
45 | ||
1c79356b A |
46 | # |
47 | # Theses macros are filled in by the config program depending on the | |
48 | # current configuration. The MACHDEP macro is replaced by the | |
49 | # contents of the machine dependent makefile template and the others | |
50 | # are replaced by the corresponding symbol definitions for the | |
51 | # configuration. | |
52 | # | |
53 | ||
54 | %OBJS | |
55 | ||
56 | %CFILES | |
57 | ||
58 | %MFILES | |
59 | ||
60 | %SFILES | |
61 | ||
62 | %BFILES | |
63 | ||
64 | %ORDERED | |
65 | %MACHDEP | |
66 | ||
67 | # | |
68 | # OBJSDEPS is the set of files (defined in the machine dependent | |
69 | # template if necessary) which all objects depend on (such as an | |
70 | # in-line assembler expansion filter) | |
71 | # | |
72 | ${OBJS}: ${OBJSDEPS} | |
73 | ||
74 | ||
75 | %LOAD | |
76 | ||
77 | LDOBJS = $(OBJS) | |
78 | ||
79 | $(COMPONENT).o: $(LDOBJS) | |
2d21ac55 A |
80 | @echo LD $(COMPONENT) |
81 | $(_v)$(LD) $(LDFLAGS_COMPONENT) -o $(COMPONENT).o ${LDOBJS} $(LIBKLD) | |
82 | $(_v)$(SEG_HACK) __KLD $(COMPONENT).o -o $(COMPONENT)_kld.o | |
83 | $(_v)$(LD) $(LDFLAGS_COMPONENT) $(COMPONENT)_kld.o -o $(COMPONENT).o | |
1c79356b A |
84 | |
85 | do_all: $(COMPONENT).o | |
86 | ||
87 | do_depend: do_all | |
2d21ac55 | 88 | $(_v)${MD} -u Makedep -f -d `ls *.d` |
1c79356b A |
89 | |
90 | do_build_all: do_depend | |
91 | ||
92 | %RULES | |
93 | ||
1c79356b | 94 | include $(MakeInc_rule) |
1c79356b A |
95 | include $(MakeInc_dir) |
96 |