1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1998-09-09 10:17:34 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/8/93
|
1994-05-30 19:09:18 +00:00
|
|
|
|
2015-09-24 17:36:18 +00:00
|
|
|
# Only parse this if executing make in this directory, not in other places
|
|
|
|
# in src that lack a Makefile, such as sys/dev/*. Otherwise the MAKESYSPATH
|
|
|
|
# will read this Makefile since it auto includes it into -I.
|
|
|
|
.if ${.CURDIR} == ${.PARSEDIR}
|
|
|
|
|
2015-12-04 03:17:10 +00:00
|
|
|
# Avoid creating a Makefile.depend here as it would get included anywhere
|
|
|
|
# in the build, similar to the problem above. It would cause dirdeps.mk
|
|
|
|
# to be included more times than desired.
|
|
|
|
UPDATE_DEPENDFILE= no
|
|
|
|
|
2014-05-06 04:22:01 +00:00
|
|
|
.include <src.opts.mk>
|
2012-11-07 22:02:53 +00:00
|
|
|
|
|
|
|
FILES= \
|
2015-05-24 02:16:00 +00:00
|
|
|
auto.obj.mk \
|
2012-11-07 22:02:53 +00:00
|
|
|
bsd.README \
|
|
|
|
bsd.arch.inc.mk \
|
2016-02-26 22:14:00 +00:00
|
|
|
bsd.clang-analyze.mk \
|
2012-11-07 22:02:53 +00:00
|
|
|
bsd.compiler.mk \
|
2015-10-10 10:48:09 +00:00
|
|
|
bsd.confs.mk \
|
2012-11-07 22:02:53 +00:00
|
|
|
bsd.cpu.mk \
|
|
|
|
bsd.crunchgen.mk \
|
|
|
|
bsd.dep.mk \
|
|
|
|
bsd.doc.mk \
|
2015-01-08 18:28:06 +00:00
|
|
|
bsd.dtb.mk \
|
2012-11-07 22:02:53 +00:00
|
|
|
bsd.endian.mk \
|
|
|
|
bsd.files.mk \
|
|
|
|
bsd.incs.mk \
|
|
|
|
bsd.info.mk \
|
|
|
|
bsd.init.mk \
|
|
|
|
bsd.kmod.mk \
|
|
|
|
bsd.lib.mk \
|
|
|
|
bsd.libnames.mk \
|
2017-06-22 21:03:20 +00:00
|
|
|
bsd.linker.mk \
|
2012-11-07 22:02:53 +00:00
|
|
|
bsd.links.mk \
|
|
|
|
bsd.man.mk \
|
2014-04-19 04:59:56 +00:00
|
|
|
bsd.mkopt.mk \
|
2012-11-07 22:02:53 +00:00
|
|
|
bsd.nls.mk \
|
|
|
|
bsd.obj.mk \
|
2014-04-18 17:04:09 +00:00
|
|
|
bsd.opts.mk \
|
2014-05-08 02:24:30 +00:00
|
|
|
bsd.own.mk \
|
2012-11-07 22:02:53 +00:00
|
|
|
bsd.port.mk \
|
|
|
|
bsd.port.options.mk \
|
|
|
|
bsd.port.post.mk \
|
|
|
|
bsd.port.pre.mk \
|
|
|
|
bsd.port.subdir.mk \
|
|
|
|
bsd.prog.mk \
|
2012-11-17 00:07:28 +00:00
|
|
|
bsd.progs.mk \
|
2012-11-07 22:02:53 +00:00
|
|
|
bsd.snmpmod.mk \
|
|
|
|
bsd.subdir.mk \
|
2016-10-12 00:42:46 +00:00
|
|
|
bsd.suffixes-posix.mk \
|
|
|
|
bsd.suffixes.mk \
|
2012-11-07 22:02:53 +00:00
|
|
|
bsd.symver.mk \
|
|
|
|
bsd.sys.mk \
|
|
|
|
bsd.test.mk \
|
2015-05-24 02:16:00 +00:00
|
|
|
dirdeps.mk \
|
|
|
|
gendirdeps.mk \
|
2015-06-13 19:20:56 +00:00
|
|
|
install-new.mk \
|
2015-05-24 02:16:00 +00:00
|
|
|
meta.autodep.mk \
|
|
|
|
meta.stage.mk \
|
|
|
|
meta.subdir.mk \
|
|
|
|
meta.sys.mk \
|
2015-06-13 19:20:56 +00:00
|
|
|
stage-install.sh \
|
2012-11-07 22:02:53 +00:00
|
|
|
sys.mk \
|
2015-06-13 19:20:56 +00:00
|
|
|
sys.dependfile.mk \
|
2012-11-07 22:02:53 +00:00
|
|
|
version_gen.awk
|
|
|
|
|
2001-12-17 13:59:35 +00:00
|
|
|
FILESDIR= ${BINDIR}/mk
|
1994-05-30 19:09:18 +00:00
|
|
|
|
2013-11-08 14:24:47 +00:00
|
|
|
.if ${MK_TESTS} != "no"
|
2012-11-07 22:02:53 +00:00
|
|
|
FILES+= atf.test.mk
|
2013-11-25 13:28:40 +00:00
|
|
|
FILES+= plain.test.mk
|
2014-03-14 12:52:55 +00:00
|
|
|
FILES+= suite.test.mk
|
2013-12-11 03:39:50 +00:00
|
|
|
FILES+= tap.test.mk
|
2012-11-07 22:02:53 +00:00
|
|
|
.endif
|
|
|
|
|
1994-05-30 19:09:18 +00:00
|
|
|
.include <bsd.prog.mk>
|
2015-09-24 17:36:18 +00:00
|
|
|
.endif # CURDIR == PARSEDIR
|