1# $FreeBSD: releng/10.3/share/mk/Makefile 289040 2015-10-08 17:45:03Z bdrewery $
2#	@(#)Makefile	8.1 (Berkeley) 6/8/93
3
4# Only parse this if executing make in this directory, not in other places
5# in src that lack a Makefile, such as sys/dev/*.  Otherwise the MAKESYSPATH
6# will read this Makefile since it auto includes it into -I.
7# Note that this guard only works for bmake.
8.if !defined(.PARSEDIR) || ${.CURDIR} == ${.PARSEDIR}
9
10.include <bsd.own.mk>
11
12FILES=	\
13	bsd.README \
14	bsd.arch.inc.mk \
15	bsd.compiler.mk \
16	bsd.cpu.mk \
17	bsd.crunchgen.mk \
18	bsd.dep.mk \
19	bsd.doc.mk \
20	bsd.dtb.mk \
21	bsd.endian.mk \
22	bsd.files.mk \
23	bsd.incs.mk \
24	bsd.info.mk \
25	bsd.init.mk \
26	bsd.kmod.mk \
27	bsd.lib.mk \
28	bsd.libnames.mk \
29	bsd.links.mk \
30	bsd.man.mk \
31	bsd.nls.mk \
32	bsd.obj.mk \
33	bsd.own.mk \
34	bsd.port.mk \
35	bsd.port.options.mk \
36	bsd.port.post.mk \
37	bsd.port.pre.mk \
38	bsd.port.subdir.mk \
39	bsd.prog.mk \
40	bsd.progs.mk \
41	bsd.snmpmod.mk \
42	bsd.subdir.mk \
43	bsd.symver.mk \
44	bsd.sys.mk \
45	bsd.test.mk \
46	sys.mk \
47	version_gen.awk
48
49NO_OBJ=
50FILESDIR=	${BINDIR}/mk
51
52.if ${MK_TESTS} != "no"
53FILES+=	atf.test.mk
54FILES+=	plain.test.mk
55FILES+=	suite.test.mk
56FILES+=	tap.test.mk
57.endif
58
59.include <bsd.prog.mk>
60.endif	# CURDIR == PARSEDIR
61