]>
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 | ||
1c79356b A |
13 | export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd |
14 | export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def | |
15 | export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule | |
16 | export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir | |
17 | ||
18 | include $(MakeInc_cmd) | |
19 | include $(MakeInc_def) | |
20 | ||
21 | # | |
22 | # XXX: CFLAGS | |
23 | # | |
9bccf70c A |
24 | CFLAGS+= -imacros meta_features.h -DARCH_PRIVATE -DKERNEL -DDRIVER_PRIVATE \ |
25 | -D_KERNEL_BUILD -DKERNEL_BUILD -DMACH_KERNEL -DBSD_BUILD \ | |
26 | -DBSD_KERNEL_PRIVATE -DNCPUS=1 -Wno-four-char-constants -fpascal-strings \ | |
27 | -D__APPLE__ -I. | |
1c79356b | 28 | |
0b4e3aa0 A |
29 | # XXX: ld flags for bsd.o |
30 | export LDFLAGS_COMPONENT += -keep_private_externs | |
31 | ||
1c79356b A |
32 | # |
33 | # Directories for mig generated files | |
34 | # | |
35 | COMP_SUBDIRS = | |
36 | ||
37 | # | |
38 | # Make sure we don't remove this by accident if interrupted at the wrong | |
39 | # time. | |
40 | # | |
41 | .PRECIOUS: Makefile | |
42 | ||
43 | VERSION_FILES= \ | |
44 | $(SOURCE_DIR)/$(COMPONENT)/conf/version.major \ | |
45 | $(SOURCE_DIR)/$(COMPONENT)/conf/version.minor \ | |
46 | $(SOURCE_DIR)/$(COMPONENT)/conf/version.variant | |
47 | ||
48 | COPYRIGHT_FILES = \ | |
49 | $(SOURCE_DIR)/$(COMPONENT)/conf/copyright | |
50 | ||
51 | # | |
52 | # Theses macros are filled in by the config program depending on the | |
53 | # current configuration. The MACHDEP macro is replaced by the | |
54 | # contents of the machine dependent makefile template and the others | |
55 | # are replaced by the corresponding symbol definitions for the | |
56 | # configuration. | |
57 | # | |
58 | ||
59 | %OBJS | |
60 | ||
61 | %CFILES | |
62 | ||
63 | %MFILES | |
64 | ||
65 | %SFILES | |
66 | ||
67 | %BFILES | |
68 | ||
69 | %ORDERED | |
70 | %MACHDEP | |
71 | ||
72 | # | |
73 | # OBJSDEPS is the set of files (defined in the machine dependent | |
74 | # template if necessary) which all objects depend on (such as an | |
75 | # in-line assembler expansion filter) | |
76 | # | |
77 | ${OBJS}: ${OBJSDEPS} | |
78 | ||
79 | ||
80 | %LOAD | |
81 | ||
82 | LDOBJS = $(OBJS) | |
83 | ||
84 | $(COMPONENT).o: $(LDOBJS) | |
85 | @echo "[ creating $(COMPONENT).o ]" | |
86 | $(RM) $(RMFLAGS) vers.c | |
87 | $(OBJROOT)/$(KERNEL_CONFIG)_$(ARCH_CONFIG)/$(COMPONENT)/newvers \ | |
88 | `$(CAT) ${VERSION_FILES}` ${COPYRIGHT_FILES} | |
89 | ${KCC} $(CFLAGS) $(INCLUDES) -c vers.c | |
90 | @echo [ updating $(COMPONENT).o ${BSD_KERNEL_CONFIG} ] | |
91 | $(LD) $(LDFLAGS_COMPONENT) -o $(COMPONENT).o ${LDOBJS} vers.o | |
92 | ||
93 | do_depend: do_all | |
94 | ${MD} -u Makedep -f -d `ls *.d`; | |
95 | ||
96 | do_all: $(COMPONENT).o | |
97 | ||
98 | do_build_all: do_depend | |
99 | ||
100 | %RULES | |
101 | ||
1c79356b A |
102 | include $(MakeInc_rule) |
103 | include $(MakeInc_dir) | |
104 |