]> git.saurik.com Git - apple/xnu.git/blame - osfmk/mach_debug/template.mk
xnu-792.tar.gz
[apple/xnu.git] / osfmk / mach_debug / template.mk
CommitLineData
1c79356b
A
1#
2# @OSF_COPYRIGHT@
3#
4#
5# HISTORY
6#
7# Revision 1.1.1.1 1998/09/22 21:05:45 wsanchez
8# Import of Mac OS X kernel (~semeria)
9#
10# Revision 1.1.1.1 1998/03/07 02:26:17 wsanchez
11# Import of OSF Mach kernel (~mburg)
12#
13# Revision 1.1.8.2 1994/09/23 02:46:03 ezf
14# change marker to not FREE
15# [1994/09/22 21:44:25 ezf]
16#
17# Revision 1.1.8.1 1994/06/13 19:58:36 dlb
18# Merge MK6 and NMK17
19# [1994/06/13 16:22:58 dlb]
20#
21# Revision 1.1.6.1 1994/03/07 16:41:51 paire
22# Added MIGKSARGS and MIGKSENV variables to MIGKSFLAGS definition.
23# [94/02/28 paire]
24#
25# Revision 1.1.2.2 1993/08/04 19:32:37 gm
26# CR9605: Add SUBDIRS to mach_kernel build process.
27# [1993/08/03 13:30:22 gm]
28#
29# $EndLog$
30
31VPATH = ..:../..
32
33MIGFLAGS = -MD ${IDENT}
34MIGKSFLAGS = -DKERNEL_SERVER ${MIGKSARGS} ${MIGKSENV}
35
36MACH_DEBUG_FILES = mach_debug_server.h mach_debug_server.c
37
38OTHERS = ${MACH_DEBUG_FILES}
39
40INCFLAGS = -I.. -I../..
41MDINCFLAGS = -I.. -I../..
42
43DEPENDENCIES =
44
45.include <${RULES_MK}>
46
47.ORDER: ${MACH_DEBUG_FILES}
48
49${MACH_DEBUG_FILES}: mach_debug/mach_debug.defs
50 ${_MIG_} ${_MIGFLAGS_} ${MIGKSFLAGS} \
51 -header /dev/null \
52 -user /dev/null \
53 -sheader mach_debug_server.h \
54 -server mach_debug_server.c \
55 ${mach_debug/mach_debug.defs:P}
56
57.if exists(depend.mk)
58.include "depend.mk"
59.endif