1# $FreeBSD$ 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.if ${.CURDIR} == ${.PARSEDIR} 8 9# Avoid creating a Makefile.depend here as it would get included anywhere 10# in the build, similar to the problem above. It would cause dirdeps.mk 11# to be included more times than desired. 12UPDATE_DEPENDFILE= no 13 14.include <src.opts.mk> 15 16FILES= \ 17 auto.obj.mk \ 18 bsd.README \ 19 bsd.arch.inc.mk \ 20 bsd.clang-analyze.mk \ 21 bsd.compiler.mk \ 22 bsd.confs.mk \ 23 bsd.cpu.mk \ 24 bsd.crunchgen.mk \ 25 bsd.dep.mk \ 26 bsd.doc.mk \ 27 bsd.dtb.mk \ 28 bsd.endian.mk \ 29 bsd.files.mk \ 30 bsd.incs.mk \ 31 bsd.info.mk \ 32 bsd.init.mk \ 33 bsd.kmod.mk \ 34 bsd.lib.mk \ 35 bsd.libnames.mk \ 36 bsd.links.mk \ 37 bsd.man.mk \ 38 bsd.mkopt.mk \ 39 bsd.nls.mk \ 40 bsd.obj.mk \ 41 bsd.opts.mk \ 42 bsd.own.mk \ 43 bsd.port.mk \ 44 bsd.port.options.mk \ 45 bsd.port.post.mk \ 46 bsd.port.pre.mk \ 47 bsd.port.subdir.mk \ 48 bsd.prog.mk \ 49 bsd.progs.mk \ 50 bsd.snmpmod.mk \ 51 bsd.subdir.mk \ 52 bsd.suffixes-posix.mk \ 53 bsd.suffixes.mk \ 54 bsd.symver.mk \ 55 bsd.sys.mk \ 56 bsd.test.mk \ 57 dirdeps.mk \ 58 gendirdeps.mk \ 59 install-new.mk \ 60 meta.autodep.mk \ 61 meta.stage.mk \ 62 meta.subdir.mk \ 63 meta.sys.mk \ 64 stage-install.sh \ 65 sys.mk \ 66 sys.dependfile.mk \ 67 version_gen.awk 68 69FILESDIR= ${BINDIR}/mk 70 71.if ${MK_TESTS} != "no" 72FILES+= atf.test.mk 73FILES+= plain.test.mk 74FILES+= suite.test.mk 75FILES+= tap.test.mk 76.endif 77 78.include <bsd.prog.mk> 79.endif # CURDIR == PARSEDIR 80