From 11619e0293f793e9748da20b3778060fce59243a Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Mon, 25 Jun 2012 23:22:43 +0000 Subject: [PATCH 001/228] Add Makefiles for building bmake. Submitted by: Simon Gerraty --- external/Makefile | 5 + external/bsd/Makefile | 5 + external/bsd/bmake/Makefile | 5 + external/bsd/bmake/usr.bin/Makefile | 207 ++++++++++++ external/bsd/bmake/usr.bin/config.h | 315 ++++++++++++++++++ .../bsd/bmake/usr.bin/unit-tests/Makefile | 98 ++++++ 6 files changed, 635 insertions(+) create mode 100644 external/Makefile create mode 100644 external/bsd/Makefile create mode 100644 external/bsd/bmake/Makefile create mode 100644 external/bsd/bmake/usr.bin/Makefile create mode 100644 external/bsd/bmake/usr.bin/config.h create mode 100644 external/bsd/bmake/usr.bin/unit-tests/Makefile diff --git a/external/Makefile b/external/Makefile new file mode 100644 index 000000000000..ce4238986d0d --- /dev/null +++ b/external/Makefile @@ -0,0 +1,5 @@ +# $FreeBSD$ + +SUBDIR= bsd + +.include diff --git a/external/bsd/Makefile b/external/bsd/Makefile new file mode 100644 index 000000000000..5148309fefb8 --- /dev/null +++ b/external/bsd/Makefile @@ -0,0 +1,5 @@ +# $FreeBSD$ + +SUBDIR= bmake + +.include diff --git a/external/bsd/bmake/Makefile b/external/bsd/bmake/Makefile new file mode 100644 index 000000000000..ce166ab903b4 --- /dev/null +++ b/external/bsd/bmake/Makefile @@ -0,0 +1,5 @@ +# $FreeBSD$ + +SUBDIR= usr.bin + +.include diff --git a/external/bsd/bmake/usr.bin/Makefile b/external/bsd/bmake/usr.bin/Makefile new file mode 100644 index 000000000000..c6e1c73e3025 --- /dev/null +++ b/external/bsd/bmake/usr.bin/Makefile @@ -0,0 +1,207 @@ +# This is a generated file, do NOT edit! +# See contrib/bmake/bsd.after-import.mk + +# look here first for config.h +CFLAGS+= -I${.CURDIR} + +# $NetBSD: Makefile,v 1.56 2012/05/30 21:54:23 sjg Exp $ +# @(#)Makefile 5.2 (Berkeley) 12/28/90 + +# $Id: Makefile.in,v 1.164 2012/06/20 22:44:26 sjg Exp $ + +# $FreeBSD$ + +PROG= bmake +SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \ + make.c parse.c str.c suff.c targ.c trace.c var.c util.c +SRCS+= strlist.c +SRCS+= make_malloc.c +SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \ + lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \ + lstFind.c lstFindFrom.c lstFirst.c lstForEach.c lstForEachFrom.c \ + lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \ + lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c +SRCS += lstPrev.c + +# you can use this Makefile if you have an earlier version of bmake. +prefix= /usr +srcdir= ${.CURDIR}/../dist + +# Base version on src date +MAKE_VERSION= 20120620 +DEFAULT_SYS_PATH = .../share/mk:/usr/share/mk + +CFLAGS+= -D_PATH_DEFSYSPATH=\"${DEFAULT_SYS_PATH}\" +CFLAGS+= -I. -I${srcdir} -DHAVE_CONFIG_H ${XDEFS} -DMAKE_NATIVE +CFLAGS+= ${CFLAGS_${.TARGET:T}} +CFLAGS+= ${COPTS.${.ALLSRC:M*.c:T:u}} +COPTS.main.c+= "-DMAKE_VERSION=\"${MAKE_VERSION}\"" +LDFLAGS= +LIBOBJS= ${LIBOBJDIR}stresep$U.o +LDADD= + +.if !empty(LIBOBJS) +SRCS+= ${LIBOBJS:T:.o=.c} +.endif + +USE_META ?= yes +.if ${USE_META:tl} != "no" +SRCS+= meta.c +CPPFLAGS+= -DUSE_META +COPTS.meta.c += -DHAVE_FILEMON_H +.endif + +.PATH: ${srcdir} +.PATH: ${srcdir}/lst.lib + +OS!= uname -s +ARCH!= uname -p 2>/dev/null || uname -m +MAKEVER!= ${MAKE} -f /dev/null -V MAKE_VERSION +.if ${MAKEVER} < 1197001010 +# Bmake vs. FreeBSD's traditional make ('MAKE_VERSION' format: RYYYYMMDDX) +IS_BMAKE= yes +.endif + +# list of OS's which are derrived from BSD4.4 +isBSD44= NetBSD FreeBSD OpenBSD DragonFly + +.if ${OS} == "NetBSD" +# Don't set these for anyone else since we don't know what the effect may be. +# On FreeBSD WARNS=2 sets a bunch of -W flags that make does not handle. +WFORMAT= 1 +WARNS=4 +.NOPATH: bmake.cat1 +.if make(install) && exists(${DESTDIR}/usr/share/doc) +SUBDIR= PSD.doc +.endif +.endif +.if ${OS} == "FreeBSD" +WARNS?= 6 +.endif + +.if empty(isBSD44:M${OS}) +# XXX not sure if we still want this given that configure +# lets us force or not the definition of MACHINE. +CFLAGS_main.o+= "-DFORCE_MACHINE=\"${MACHINE}\"" +MANTARGET=cat +INSTALL?=${srcdir}/install-sh +.if (${MACHINE} == "sun386") +# even I don't have one of these anymore :-) +CFLAGS+= -DPORTAR +.elif (${MACHINE} != "sunos") +SRCS+= sigcompat.c +CFLAGS+= -DSIGNAL_FLAGS=SA_RESTART +.endif +.endif +.if make(obj) || make(clean) +.if defined(IS_BMAKE) +SUBDIR+= unit-tests +.endif +.endif + +# many systems use gcc these days +CC_IS_GCC=yes +.if ${CC_IS_GCC} == "yes" +# problem with gcc3 +CFLAGS_var.o+= -Wno-cast-qual +.endif + +CFLAGS_main.o+= "-DMACHINE=\"${MACHINE}\"" "-DMACHINE_ARCH=\"${MACHINE_ARCH}\"" + +EXTRACT_MAN=no + +MAN=${PROG}.1 +.if (${PROG} != "make") +${MAN}: make.1 + @echo making ${PROG}.1 + @sed -e 's/^.Nx/NetBSD/' -e '/^.Nm/s/make/${PROG}/' -e '/^.Sh HISTORY/,$$d' ${srcdir}/make.1 > $@ + @(echo ".Sh HISTORY"; \ + echo ".Nm"; \ + echo "is derived from NetBSD"; \ + echo ".Xr make 1 ."; \ + echo It uses autoconf to facilitate portability to other platforms.) >> $@ + +.endif + +.if !empty(isBSD44:M${OS}) +.if "${OS}" != "NetBSD" +MAN1=${MAN} +.endif +MANTARGET?=man +.endif + +MANTARGET?= cat +MANDEST?= ${MANDIR}/${MANTARGET}1 + +.if ${MANTARGET} == "cat" +_mfromdir=${srcdir} +.endif + +.if exists(${srcdir}/../Makefile.inc) +.include "${srcdir}/../Makefile.inc" +.endif +.sinclude +# sigh, FreeBSD at least includes bsd.subdir.mk via bsd.obj.mk +# so the inclusion below, results in complaints about re-defined +# targets. For NetBSD though we need to explicitly include it. +#.if defined(SUBDIR) && !target(${SUBDIR:[1]}) +#.-include +#.endif + +CPPFLAGS+= -DMAKE_NATIVE +COPTS.var.c += -Wno-cast-qual +COPTS.job.c += -Wno-format-nonliteral +COPTS.parse.c += -Wno-format-nonliteral +COPTS.var.c += -Wno-format-nonliteral + +# Force these +BINDIR= ${prefix}/bin +MANDIR= ${prefix}/share/man + +arch.o: config.h +# make sure that MAKE_VERSION gets updated. +main.o: ${SRCS} ${MAKEFILE} + +MK?=${prefix}/share/mk +MKSRC?=mk +INSTALL?=${srcdir}/install-sh + +beforeinstall: + test -d ${DESTDIR}${BINDIR} || ${INSTALL} -m 775 -d ${DESTDIR}${BINDIR} + test -d ${DESTDIR}${MANDEST} || ${INSTALL} -m 775 -d ${DESTDIR}${MANDEST} + +# latest version of *.mk includes an installer. +# you should not need to set USE_OS +install-mk: +.if exists(${MKSRC}/install-mk) + test -d ${DESTDIR}${MK} || ${INSTALL} -m 775 -d ${DESTDIR}${MK} + ${MKSRC}/install-mk -v -m 644 ${DESTDIR}${MK} ${USE_OS} +.else + @echo need to unpack mk.tar.gz under ${srcdir} or set MKSRC; false +.endif + +.ifdef TOOLDIR +# this is a native netbsd build, +# use libutil rather than the local emalloc etc. +CPPFLAGS+= -DUSE_EMALLOC +LDADD+=-lutil +DPADD+=${LIBUTIL} +.endif + +# A simple unit-test driver to help catch regressions +accept test: + cd ${.CURDIR}/unit-tests && MAKEFLAGS= ${.MAKE} -r -m / TEST_MAKE=${TEST_MAKE:U${.OBJDIR}/${PROG:T}} ${.TARGET} + +# override some simple things +BINDIR= /usr/bin +MANDIR= /usr/share/man + +# make sure we get this +CFLAGS+= ${COPTS.${.IMPSRC:T}} +CLEANFILES+= bootstrap + +after-import: ${.CURDIR}/../dist/bsd.after-import.mk + cd ${.CURDIR} && ${.MAKE} -f ${.CURDIR}/../dist/bsd.after-import.mk + +.sinclude "Makefile.inc" + diff --git a/external/bsd/bmake/usr.bin/config.h b/external/bsd/bmake/usr.bin/config.h new file mode 100644 index 000000000000..12e9c7dd9f19 --- /dev/null +++ b/external/bsd/bmake/usr.bin/config.h @@ -0,0 +1,315 @@ +/* config.h. Generated from config.h.in by configure. */ +/* config.h.in. Generated from configure.in by autoheader. */ + +/* Define if building universal (internal helper macro) */ +/* #undef AC_APPLE_UNIVERSAL_BUILD */ + +/* Path of default shell */ +/* #undef DEFSHELL_CUSTOM */ + +/* Shell spec to use by default */ +/* #undef DEFSHELL_INDEX */ + +/* Define to 1 if you have the header file. */ +#define HAVE_AR_H 1 + +/* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you + don't. */ +#define HAVE_DECL_SYS_SIGLIST 1 + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +#define HAVE_DIRENT_H 1 + +/* Define to 1 if you have the `dirname' function. */ +#define HAVE_DIRNAME 1 + +/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */ +/* #undef HAVE_DOPRNT */ + +/* Define to 1 if you have the `err' function. */ +#define HAVE_ERR 1 + +/* Define to 1 if you have the `errx' function. */ +#define HAVE_ERRX 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_ERR_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_FCNTL_H 1 + +/* Define to 1 if you have the `fork' function. */ +#define HAVE_FORK 1 + +/* Define to 1 if you have the `getcwd' function. */ +#define HAVE_GETCWD 1 + +/* Define to 1 if you have the `getenv' function. */ +#define HAVE_GETENV 1 + +/* Define to 1 if you have the `getopt' function. */ +#define HAVE_GETOPT 1 + +/* Define to 1 if you have the `getwd' function. */ +#define HAVE_GETWD 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the `killpg' function. */ +#define HAVE_KILLPG 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the `mmap' function. */ +#define HAVE_MMAP 1 + +/* Define to 1 if you have the header file, and it defines `DIR'. */ +/* #undef HAVE_NDIR_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_PATHS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_POLL_H 1 + +/* Define to 1 if you have the `putenv' function. */ +#define HAVE_PUTENV 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_RANLIB_H 1 + +/* Define to 1 if you have the `realpath' function. */ +#define HAVE_REALPATH 1 + +/* Define to 1 if you have the `select' function. */ +#define HAVE_SELECT 1 + +/* Define to 1 if you have the `setenv' function. */ +#define HAVE_SETENV 1 + +/* Define to 1 if you have the `setpgid' function. */ +#define HAVE_SETPGID 1 + +/* Define to 1 if you have the `setsid' function. */ +#define HAVE_SETSID 1 + +/* Define to 1 if you have the `sigaction' function. */ +#define HAVE_SIGACTION 1 + +/* Define to 1 if you have the `sigvec' function. */ +#define HAVE_SIGVEC 1 + +/* Define to 1 if you have the `snprintf' function. */ +#define HAVE_SNPRINTF 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the `strerror' function. */ +#define HAVE_STRERROR 1 + +/* Define to 1 if you have the `stresep' function. */ +/* #undef HAVE_STRESEP */ + +/* Define to 1 if you have the `strftime' function. */ +#define HAVE_STRFTIME 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the `strlcpy' function. */ +#define HAVE_STRLCPY 1 + +/* Define to 1 if you have the `strsep' function. */ +#define HAVE_STRSEP 1 + +/* Define to 1 if you have the `strtod' function. */ +#define HAVE_STRTOD 1 + +/* Define to 1 if you have the `strtol' function. */ +#define HAVE_STRTOL 1 + +/* Define to 1 if `struct stat' is a member of `st_rdev'. */ +#define HAVE_STRUCT_STAT_ST_RDEV 1 + +/* Define to 1 if your `struct stat' has `st_rdev'. Deprecated, use + `HAVE_STRUCT_STAT_ST_RDEV' instead. */ +#define HAVE_ST_RDEV 1 + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +/* #undef HAVE_SYS_DIR_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_MMAN_H 1 + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +/* #undef HAVE_SYS_NDIR_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_SELECT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_SOCKET_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TIME_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_UIO_H 1 + +/* Define to 1 if you have that is POSIX.1 compatible. */ +#define HAVE_SYS_WAIT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to 1 if you have the `unsetenv' function. */ +#define HAVE_UNSETENV 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_UTIME_H 1 + +/* Define to 1 if you have the `vfork' function. */ +#define HAVE_VFORK 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_VFORK_H */ + +/* Define to 1 if you have the `vprintf' function. */ +#define HAVE_VPRINTF 1 + +/* Define to 1 if you have the `vsnprintf' function. */ +#define HAVE_VSNPRINTF 1 + +/* Define to 1 if you have the `wait3' function. */ +#define HAVE_WAIT3 1 + +/* Define to 1 if you have the `wait4' function. */ +#define HAVE_WAIT4 1 + +/* Define to 1 if you have the `waitpid' function. */ +#define HAVE_WAITPID 1 + +/* Define to 1 if you have the `warn' function. */ +#define HAVE_WARN 1 + +/* Define to 1 if you have the `warnx' function. */ +#define HAVE_WARNX 1 + +/* Define to 1 if `fork' works. */ +#define HAVE_WORKING_FORK 1 + +/* Define to 1 if `vfork' works. */ +#define HAVE_WORKING_VFORK 1 + +/* define if your compiler has __attribute__ */ +/* #undef HAVE___ATTRIBUTE__ */ + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "sjg@NetBSD.org" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "bmake" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "bmake 20120606" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "bmake" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "20120606" + +/* Define as the return type of signal handlers (`int' or `void'). */ +#define RETSIGTYPE void + +/* Define to 1 if the `S_IS*' macros in do not work properly. */ +/* #undef STAT_MACROS_BROKEN */ + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Define to 1 if you can safely include both and . */ +#define TIME_WITH_SYS_TIME 1 + +/* Define to 1 if your declares `struct tm'. */ +/* #undef TM_IN_SYS_TIME */ + +/* Enable extensions on AIX 3, Interix. */ +#ifndef _ALL_SOURCE +# define _ALL_SOURCE 1 +#endif +/* Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +# define _GNU_SOURCE 1 +#endif +/* Enable threading extensions on Solaris. */ +#ifndef _POSIX_PTHREAD_SEMANTICS +# define _POSIX_PTHREAD_SEMANTICS 1 +#endif +/* Enable extensions on HP NonStop. */ +#ifndef _TANDEM_SOURCE +# define _TANDEM_SOURCE 1 +#endif +/* Enable general extensions on Solaris. */ +#ifndef __EXTENSIONS__ +# define __EXTENSIONS__ 1 +#endif + + +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +/* # undef WORDS_BIGENDIAN */ +# endif +#endif + +/* Define to 1 if on MINIX. */ +/* #undef _MINIX */ + +/* Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +/* #undef _POSIX_1_SOURCE */ + +/* Define to 1 if you need to in order for `stat' and other things to work. */ +/* #undef _POSIX_SOURCE */ + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* Define to `long int' if does not define. */ +/* #undef off_t */ + +/* Define to `int' if does not define. */ +/* #undef pid_t */ + +/* Define to `unsigned int' if does not define. */ +/* #undef size_t */ + +/* Define as `fork' if `vfork' does not work. */ +/* #undef vfork */ diff --git a/external/bsd/bmake/usr.bin/unit-tests/Makefile b/external/bsd/bmake/usr.bin/unit-tests/Makefile new file mode 100644 index 000000000000..bae70ac37f1b --- /dev/null +++ b/external/bsd/bmake/usr.bin/unit-tests/Makefile @@ -0,0 +1,98 @@ +# $Id: Makefile.in,v 1.38 2012/06/19 23:38:48 sjg Exp $ +# +# $NetBSD: Makefile,v 1.34 2012/06/19 23:25:53 sjg Exp $ +# +# $FreeBSD$ +# +# Unit tests for make(1) +# The main targets are: +# +# all: run all the tests +# test: run 'all', capture output and compare to expected results +# accept: move generated output to expected results +# +# Adding a test case. +# Each feature should get its own set of tests in its own suitably +# named makefile which should be added to SUBFILES to hook it in. +# + +srcdir= ${.CURDIR}/../../dist/unit-tests + +.MAIN: all + +UNIT_TESTS:= ${srcdir} + +# Simple sub-makefiles - we run them as a black box +# keep the list sorted. +SUBFILES= \ + comment \ + cond1 \ + error \ + export \ + export-all \ + doterror \ + dotwait \ + forloop \ + forsubst \ + hash \ + misc \ + moderrs \ + modmatch \ + modmisc \ + modorder \ + modts \ + modword \ + phony-end \ + posix \ + qequals \ + sysv \ + ternary \ + unexport \ + unexport-env \ + varcmd + +all: ${SUBFILES} + +flags.doterror= + +# the tests are actually done with sub-makes. +.PHONY: ${SUBFILES} +.PRECIOUS: ${SUBFILES} +${SUBFILES}: + -@${.MAKE} ${flags.$@:U-k} -f ${UNIT_TESTS}/$@ + +clean: + rm -f *.out *.fail *.core + +.-include + +TEST_MAKE?= ${.MAKE} +TOOL_SED?= sed +TOOL_TR?= tr +TOOL_DIFF?= diff +DIFF_FLAGS?= -u + +# ensure consistent results from sort(1) +LC_ALL= C +LANG= C +.export LANG LC_ALL + +# The driver. +# We always pretend .MAKE was called 'make' +# and strip ${.CURDIR}/ from the output +# and replace anything after 'stopped in' with unit-tests +# so the results can be compared. +test: + @echo "${TEST_MAKE} -f ${MAKEFILE} > ${.TARGET}.out 2>&1" + @cd ${.OBJDIR} && ${TEST_MAKE} -f ${MAKEFILE} 2>&1 | \ + ${TOOL_TR} -d '\015' | \ + ${TOOL_SED} -e 's,^${TEST_MAKE:T:C/\./\\\./g}:,make:,' \ + -e '/stopped/s, /.*, unit-tests,' \ + -e 's,${.CURDIR:C/\./\\\./g}/,,g' \ + -e 's,${UNIT_TESTS:C/\./\\\./g}/,,g' > ${.TARGET}.out || { \ + tail ${.TARGET}.out; mv ${.TARGET}.out ${.TARGET}.fail; exit 1; } + ${TOOL_DIFF} ${DIFF_FLAGS} ${UNIT_TESTS}/${.TARGET}.exp ${.TARGET}.out + +accept: + mv test.out ${srcdir}/test.exp + From 18a6b67da52c74075f2a346c4f8566d1601dddeb Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Fri, 6 Jul 2012 16:54:25 +0000 Subject: [PATCH 002/228] I accidently svn added these in the wrong place. --- external/bsd/bmake/usr.bin/{ => bmake}/Makefile | 2 +- external/bsd/bmake/usr.bin/{ => bmake}/config.h | 0 external/bsd/bmake/usr.bin/{ => bmake}/unit-tests/Makefile | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename external/bsd/bmake/usr.bin/{ => bmake}/Makefile (99%) rename external/bsd/bmake/usr.bin/{ => bmake}/config.h (100%) rename external/bsd/bmake/usr.bin/{ => bmake}/unit-tests/Makefile (97%) diff --git a/external/bsd/bmake/usr.bin/Makefile b/external/bsd/bmake/usr.bin/bmake/Makefile similarity index 99% rename from external/bsd/bmake/usr.bin/Makefile rename to external/bsd/bmake/usr.bin/bmake/Makefile index c6e1c73e3025..398bb4c71071 100644 --- a/external/bsd/bmake/usr.bin/Makefile +++ b/external/bsd/bmake/usr.bin/bmake/Makefile @@ -25,7 +25,7 @@ SRCS += lstPrev.c # you can use this Makefile if you have an earlier version of bmake. prefix= /usr -srcdir= ${.CURDIR}/../dist +srcdir= ${.CURDIR}/../../dist # Base version on src date MAKE_VERSION= 20120620 diff --git a/external/bsd/bmake/usr.bin/config.h b/external/bsd/bmake/usr.bin/bmake/config.h similarity index 100% rename from external/bsd/bmake/usr.bin/config.h rename to external/bsd/bmake/usr.bin/bmake/config.h diff --git a/external/bsd/bmake/usr.bin/unit-tests/Makefile b/external/bsd/bmake/usr.bin/bmake/unit-tests/Makefile similarity index 97% rename from external/bsd/bmake/usr.bin/unit-tests/Makefile rename to external/bsd/bmake/usr.bin/bmake/unit-tests/Makefile index bae70ac37f1b..4f6fef54fe50 100644 --- a/external/bsd/bmake/usr.bin/unit-tests/Makefile +++ b/external/bsd/bmake/usr.bin/bmake/unit-tests/Makefile @@ -16,7 +16,7 @@ # named makefile which should be added to SUBFILES to hook it in. # -srcdir= ${.CURDIR}/../../dist/unit-tests +srcdir= ${.CURDIR}/../../../dist/unit-tests .MAIN: all From e43b47e8f430b87d4bb6a2c798216568483ab8c2 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Fri, 6 Jul 2012 17:07:50 +0000 Subject: [PATCH 003/228] Add proper mid-level Makefile. Submitted by: Simon Gerraty --- external/bsd/bmake/usr.bin/Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 external/bsd/bmake/usr.bin/Makefile diff --git a/external/bsd/bmake/usr.bin/Makefile b/external/bsd/bmake/usr.bin/Makefile new file mode 100644 index 000000000000..dac316ecedf5 --- /dev/null +++ b/external/bsd/bmake/usr.bin/Makefile @@ -0,0 +1,5 @@ +# $FreeBSD$ + +SUBDIR= bmake + +.include From 7750ad47a9a7dbc83f87158464170c8640723293 Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Wed, 22 Aug 2012 19:25:57 +0000 Subject: [PATCH 004/228] Sync FreeBSD's bmake branch with Juniper's internal bmake branch. Requested by: Simon Gerraty --- Makefile | 23 +- Makefile.inc1 | 7 + bin/cat/Makefile.depend | 19 + bin/chflags/Makefile.depend | 19 + bin/chio/Makefile.depend | 19 + bin/chmod/Makefile.depend | 19 + bin/cp/Makefile.depend | 19 + bin/csh/Makefile.depend | 348 +++ bin/date/Makefile.depend | 20 + bin/dd/Makefile.depend | 19 + bin/df/Makefile.depend | 20 + bin/domainname/Makefile.depend | 19 + bin/echo/Makefile.depend | 19 + bin/ed/Makefile.depend | 20 + bin/expr/Makefile.depend | 21 + bin/getfacl/Makefile.depend | 19 + bin/hostname/Makefile.depend | 19 + bin/kenv/Makefile.depend | 19 + bin/kill/Makefile.depend | 19 + bin/ln/Makefile.depend | 19 + bin/ls/Makefile.depend | 21 + bin/mkdir/Makefile.depend | 19 + bin/mv/Makefile.depend | 19 + bin/pax/Makefile.depend | 19 + bin/pkill/Makefile.depend | 20 + bin/ps/Makefile.depend | 21 + bin/pwait/Makefile.depend | 19 + bin/pwd/Makefile.depend | 19 + bin/rcp/Makefile.depend | 19 + bin/realpath/Makefile.depend | 18 + bin/rm/Makefile.depend | 19 + bin/rmail/Makefile.depend | 23 + bin/rmdir/Makefile.depend | 19 + bin/setfacl/Makefile.depend | 19 + bin/sh/Makefile.depend | 115 + bin/sleep/Makefile.depend | 19 + bin/stty/Makefile.depend | 19 + bin/sync/Makefile.depend | 18 + bin/test/Makefile.depend | 19 + bin/uuidgen/Makefile.depend | 18 + cddl/lib/drti/Makefile.depend | 17 + cddl/lib/libavl/Makefile.depend | 17 + cddl/lib/libctf/Makefile.depend | 19 + cddl/lib/libdtrace/Makefile.depend | 47 + cddl/lib/libnvpair/Makefile.depend | 18 + cddl/lib/libumem/Makefile.depend | 17 + cddl/lib/libuutil/Makefile.depend | 18 + cddl/lib/libzfs/Makefile.depend | 22 + cddl/lib/libzpool/Makefile.depend | 19 + cddl/sbin/zfs/Makefile.depend | 25 + cddl/sbin/zpool/Makefile.depend | 26 + cddl/usr.bin/ctfconvert/Makefile.depend | 21 + cddl/usr.bin/ctfdump/Makefile.depend | 19 + cddl/usr.bin/ctfmerge/Makefile.depend | 21 + cddl/usr.bin/sgsmsg/Makefile.depend | 19 + cddl/usr.bin/zinject/Makefile.depend | 25 + external/bsd/bmake/usr.bin/bmake/Makefile | 63 +- .../bsd/bmake/usr.bin/bmake/Makefile.depend | 19 + external/bsd/bmake/usr.bin/bmake/Makefile.inc | 6 + external/bsd/bmake/usr.bin/bmake/config.h | 4 +- .../bmake/usr.bin/bmake/unit-tests/Makefile | 6 +- games/bcd/Makefile.depend | 19 + games/caesar/Makefile.depend | 20 + games/factor/Makefile.depend | 20 + games/fortune/datfiles/Makefile.depend | 14 + games/fortune/fortune/Makefile.depend | 19 + games/fortune/strfile/Makefile.depend | 19 + games/fortune/unstr/Makefile.depend | 19 + games/grdc/Makefile.depend | 20 + games/morse/Makefile.depend | 19 + games/number/Makefile.depend | 19 + games/pom/Makefile.depend | 20 + games/ppt/Makefile.depend | 18 + games/primes/Makefile.depend | 20 + games/random/Makefile.depend | 19 + gnu/lib/csu/Makefile.depend | 46 + gnu/lib/libdialog/Makefile.depend | 17 + gnu/lib/libgcc/Makefile.depend | 281 +++ gnu/lib/libgcov/Makefile.depend | 128 ++ gnu/lib/libgomp/Makefile.depend | 79 + gnu/lib/libreadline/history/Makefile.depend | 16 + gnu/lib/libreadline/readline/Makefile.depend | 16 + gnu/lib/libregex/Makefile.depend | 19 + gnu/lib/libssp/Makefile.depend | 16 + .../libssp/libssp_nonshared/Makefile.depend | 14 + gnu/lib/libstdc++/Makefile.depend | 65 + gnu/lib/libsupc++/Makefile.depend | 61 + .../binutils/addr2line/Makefile.depend | 22 + gnu/usr.bin/binutils/ar/Makefile.depend | 21 + gnu/usr.bin/binutils/as/Makefile.depend | 21 + gnu/usr.bin/binutils/ld/Makefile.depend | 50 + gnu/usr.bin/binutils/libbfd/Makefile.depend | 104 + .../binutils/libbinutils/Makefile.depend | 23 + .../binutils/libiberty/Makefile.depend | 17 + .../binutils/libopcodes/Makefile.depend | 16 + gnu/usr.bin/binutils/nm/Makefile.depend | 22 + gnu/usr.bin/binutils/objcopy/Makefile.depend | 22 + gnu/usr.bin/binutils/objdump/Makefile.depend | 23 + gnu/usr.bin/binutils/ranlib/Makefile.depend | 21 + gnu/usr.bin/binutils/readelf/Makefile.depend | 22 + gnu/usr.bin/binutils/size/Makefile.depend | 22 + gnu/usr.bin/binutils/strings/Makefile.depend | 22 + gnu/usr.bin/binutils/strip/Makefile.depend | 22 + gnu/usr.bin/cc/c++/Makefile.depend | 22 + gnu/usr.bin/cc/c++filt/Makefile.depend | 21 + gnu/usr.bin/cc/cc/Makefile.depend | 21 + gnu/usr.bin/cc/cc1/Makefile.depend | 25 + gnu/usr.bin/cc/cc1plus/Makefile.depend | 27 + gnu/usr.bin/cc/cc_int/Makefile | 2 + gnu/usr.bin/cc/cc_int/Makefile.depend | 17 + gnu/usr.bin/cc/cc_tools/Makefile.depend | 247 ++ gnu/usr.bin/cc/cpp/Makefile.depend | 22 + gnu/usr.bin/cc/gcov/Makefile.depend | 21 + gnu/usr.bin/cc/include/Makefile | 4 +- gnu/usr.bin/cc/include/Makefile.depend | 14 + gnu/usr.bin/cc/libcpp/Makefile.depend | 18 + gnu/usr.bin/cc/libdecnumber/Makefile.depend | 17 + gnu/usr.bin/cc/libiberty/Makefile.depend | 16 + gnu/usr.bin/cvs/cvs/Makefile.depend | 34 + gnu/usr.bin/cvs/cvsbug/Makefile.depend | 14 + gnu/usr.bin/cvs/lib/Makefile.depend | 38 + gnu/usr.bin/cvs/libdiff/Makefile.depend | 18 + gnu/usr.bin/dialog/Makefile.depend | 22 + gnu/usr.bin/diff/Makefile.depend | 24 + gnu/usr.bin/diff3/Makefile.depend | 21 + gnu/usr.bin/dtc/Makefile.depend | 27 + gnu/usr.bin/gdb/gdb/Makefile.depend | 33 + gnu/usr.bin/gdb/gdbserver/Makefile.depend | 20 + gnu/usr.bin/gdb/gdbtui/Makefile.depend | 33 + gnu/usr.bin/gdb/kgdb/Makefile.depend | 58 + gnu/usr.bin/gdb/libgdb/Makefile.depend | 1201 ++++++++++ gnu/usr.bin/gperf/Makefile.depend | 21 + gnu/usr.bin/grep/Makefile.depend | 22 + .../groff/font/devX100-12/Makefile.depend | 14 + .../groff/font/devX100/Makefile.depend | 14 + .../groff/font/devX75-12/Makefile.depend | 14 + gnu/usr.bin/groff/font/devX75/Makefile.depend | 14 + .../groff/font/devascii/Makefile.depend | 14 + .../groff/font/devcp1047/Makefile.depend | 14 + gnu/usr.bin/groff/font/devdvi/Makefile.depend | 14 + .../groff/font/devhtml/Makefile.depend | 14 + .../groff/font/devkoi8-r/Makefile.depend | 14 + .../groff/font/devlatin1/Makefile.depend | 14 + gnu/usr.bin/groff/font/devlbp/Makefile.depend | 14 + gnu/usr.bin/groff/font/devlj4/Makefile.depend | 14 + gnu/usr.bin/groff/font/devps/Makefile.depend | 14 + .../groff/font/devutf8/Makefile.depend | 14 + gnu/usr.bin/groff/man/Makefile.depend | 14 + .../groff/src/devices/grodvi/Makefile.depend | 23 + .../groff/src/devices/grohtml/Makefile.depend | 23 + .../groff/src/devices/grolbp/Makefile.depend | 23 + .../groff/src/devices/grolj4/Makefile.depend | 23 + .../groff/src/devices/grops/Makefile.depend | 23 + .../groff/src/devices/grotty/Makefile.depend | 23 + .../groff/src/libs/libbib/Makefile.depend | 16 + .../groff/src/libs/libdriver/Makefile.depend | 17 + .../groff/src/libs/libgroff/Makefile.depend | 19 + .../groff/src/preproc/eqn/Makefile.depend | 26 + .../groff/src/preproc/grn/Makefile.depend | 22 + .../groff/src/preproc/html/Makefile.depend | 22 + .../groff/src/preproc/pic/Makefile.depend | 26 + .../groff/src/preproc/refer/Makefile.depend | 25 + .../groff/src/preproc/soelim/Makefile.depend | 22 + .../groff/src/preproc/tbl/Makefile.depend | 22 + .../groff/src/roff/groff/Makefile.depend | 22 + .../groff/src/roff/grog/Makefile.depend | 14 + .../groff/src/roff/nroff/Makefile.depend | 14 + .../groff/src/roff/psroff/Makefile.depend | 14 + .../groff/src/roff/troff/Makefile.depend | 24 + .../groff/src/utils/addftinfo/Makefile.depend | 22 + .../groff/src/utils/afmtodit/Makefile.depend | 14 + .../groff/src/utils/hpftodit/Makefile.depend | 22 + .../groff/src/utils/indxbib/Makefile.depend | 23 + .../groff/src/utils/lkbib/Makefile.depend | 23 + .../groff/src/utils/lookbib/Makefile.depend | 23 + .../groff/src/utils/pfbtops/Makefile.depend | 19 + .../groff/src/utils/tfmtodit/Makefile.depend | 22 + gnu/usr.bin/groff/tmac/Makefile.depend | 14 + gnu/usr.bin/patch/Makefile.depend | 16 + gnu/usr.bin/rcs/ci/Makefile.depend | 20 + gnu/usr.bin/rcs/co/Makefile.depend | 20 + gnu/usr.bin/rcs/ident/Makefile.depend | 20 + gnu/usr.bin/rcs/lib/Makefile.depend | 16 + gnu/usr.bin/rcs/merge/Makefile.depend | 20 + gnu/usr.bin/rcs/rcs/Makefile.depend | 20 + gnu/usr.bin/rcs/rcsclean/Makefile.depend | 20 + gnu/usr.bin/rcs/rcsdiff/Makefile.depend | 20 + gnu/usr.bin/rcs/rcsfreeze/Makefile.depend | 14 + gnu/usr.bin/rcs/rcsmerge/Makefile.depend | 20 + gnu/usr.bin/rcs/rlog/Makefile.depend | 20 + gnu/usr.bin/sdiff/Makefile.depend | 21 + gnu/usr.bin/send-pr/Makefile.depend | 14 + gnu/usr.bin/sort/Makefile.depend | 19 + gnu/usr.bin/texinfo/info/Makefile.depend | 22 + gnu/usr.bin/texinfo/infokey/Makefile.depend | 20 + .../texinfo/install-info/Makefile.depend | 20 + gnu/usr.bin/texinfo/libtxi/Makefile.depend | 16 + gnu/usr.bin/texinfo/makeinfo/Makefile.depend | 20 + gnu/usr.bin/texinfo/texindex/Makefile.depend | 20 + include/Makefile | 34 +- include/Makefile.depend | 14 + include/arpa/Makefile | 1 - include/arpa/Makefile.depend | 14 + include/gssapi/Makefile | 1 - include/gssapi/Makefile.depend | 14 + include/protocols/Makefile | 1 - include/protocols/Makefile.depend | 14 + include/rpc/Makefile.depend | 14 + include/rpcsvc/Makefile.depend | 14 + include/xlocale/Makefile | 1 - include/xlocale/Makefile.depend | 14 + kerberos5/Makefile | 2 +- kerberos5/lib/libasn1/Makefile.depend | 189 ++ kerberos5/lib/libgssapi_krb5/Makefile.depend | 181 ++ kerberos5/lib/libgssapi_ntlm/Makefile.depend | 18 + .../lib/libgssapi_spnego/Makefile.depend | 117 + kerberos5/lib/libhdb/Makefile.depend | 268 +++ kerberos5/lib/libheimbase/Makefile.depend | 16 + kerberos5/lib/libheimipcc/Makefile.depend | 18 + kerberos5/lib/libheimipcs/Makefile.depend | 18 + kerberos5/lib/libheimntlm/Makefile.depend | 25 + kerberos5/lib/libheimsqlite/Makefile.depend | 15 + kerberos5/lib/libhx509/Makefile.depend | 439 ++++ kerberos5/lib/libkadm5clnt/Makefile.depend | 80 + kerberos5/lib/libkadm5srv/Makefile.depend | 104 + kerberos5/lib/libkafs5/Makefile.depend | 18 + kerberos5/lib/libkdc/Makefile.depend | 25 + kerberos5/lib/libkrb5/Makefile.depend | 1094 +++++++++ kerberos5/lib/libroken/Makefile.depend | 173 ++ kerberos5/lib/libsl/Makefile.depend | 17 + kerberos5/lib/libvers/Makefile.depend | 19 + kerberos5/lib/libwind/Makefile.depend | 57 + .../libexec/digest-service/Makefile.depend | 35 + kerberos5/libexec/hprop/Makefile.depend | 34 + kerberos5/libexec/hpropd/Makefile.depend | 33 + .../libexec/ipropd-master/Makefile.depend | 34 + .../libexec/ipropd-slave/Makefile.depend | 34 + kerberos5/libexec/kadmind/Makefile.depend | 36 + kerberos5/libexec/kcm/Makefile.depend | 30 + kerberos5/libexec/kdc/Makefile.depend | 34 + kerberos5/libexec/kdigest/Makefile.depend | 36 + kerberos5/libexec/kfd/Makefile.depend | 26 + .../libexec/kimpersonate/Makefile.depend | 28 + kerberos5/libexec/kpasswdd/Makefile.depend | 32 + kerberos5/tools/asn1_compile/Makefile | 2 +- kerberos5/tools/asn1_compile/Makefile.depend | 56 + kerberos5/tools/make-roken/Makefile.depend | 20 + kerberos5/tools/slc/Makefile | 2 +- kerberos5/tools/slc/Makefile.depend | 30 + kerberos5/usr.bin/hxtool/Makefile.depend | 35 + kerberos5/usr.bin/kadmin/Makefile.depend | 73 + kerberos5/usr.bin/kcc/Makefile.depend | 42 + kerberos5/usr.bin/kdestroy/Makefile.depend | 28 + kerberos5/usr.bin/kf/Makefile.depend | 26 + kerberos5/usr.bin/kgetcred/Makefile.depend | 27 + kerberos5/usr.bin/kinit/Makefile.depend | 29 + kerberos5/usr.bin/kpasswd/Makefile.depend | 29 + kerberos5/usr.bin/krb5-config/Makefile.depend | 14 + kerberos5/usr.bin/ksu/Makefile.depend | 29 + kerberos5/usr.bin/string2key/Makefile.depend | 33 + .../usr.bin/verify_krb5_conf/Makefile.depend | 31 + kerberos5/usr.sbin/iprop-log/Makefile.depend | 38 + kerberos5/usr.sbin/kstash/Makefile.depend | 33 + kerberos5/usr.sbin/ktutil/Makefile.depend | 53 + lib/bind/bind9/Makefile.depend | 17 + lib/bind/dns/Makefile.depend | 17 + lib/bind/isc/Makefile.depend | 17 + lib/bind/isccc/Makefile.depend | 17 + lib/bind/isccfg/Makefile.depend | 17 + lib/bind/lwres/Makefile.depend | 17 + lib/clang/include/Makefile | 4 +- lib/clang/include/Makefile.depend | 14 + lib/clang/libclanganalysis/Makefile.depend | 179 ++ lib/clang/libclangarcmigrate/Makefile.depend | 209 ++ lib/clang/libclangast/Makefile.depend | 489 ++++ lib/clang/libclangbasic/Makefile.depend | 45 + lib/clang/libclangcodegen/Makefile.depend | 431 ++++ lib/clang/libclangdriver/Makefile.depend | 61 + lib/clang/libclangedit/Makefile.depend | 29 + lib/clang/libclangfrontend/Makefile.depend | 189 ++ .../libclangfrontendtool/Makefile.depend | 23 + lib/clang/libclanglex/Makefile.depend | 83 + lib/clang/libclangparse/Makefile.depend | 199 ++ lib/clang/libclangrewrite/Makefile.depend | 79 + lib/clang/libclangsema/Makefile.depend | 563 +++++ .../libclangserialization/Makefile.depend | 111 + .../Makefile.depend | 749 ++++++ .../Makefile.depend | 365 +++ .../Makefile.depend | 41 + lib/clang/libllvmanalysis/Makefile.depend | 47 + lib/clang/libllvmarchive/Makefile.depend | 17 + lib/clang/libllvmarmasmparser/Makefile.depend | 31 + lib/clang/libllvmarmcodegen/Makefile.depend | 209 ++ lib/clang/libllvmarmdesc/Makefile.depend | 49 + .../libllvmarmdisassembler/Makefile.depend | 27 + lib/clang/libllvmarminfo/Makefile.depend | 23 + .../libllvmarminstprinter/Makefile.depend | 25 + lib/clang/libllvmasmparser/Makefile.depend | 17 + lib/clang/libllvmasmprinter/Makefile.depend | 17 + lib/clang/libllvmbitreader/Makefile.depend | 19 + lib/clang/libllvmbitwriter/Makefile.depend | 17 + lib/clang/libllvmcodegen/Makefile.depend | 33 + lib/clang/libllvmcore/Makefile.depend | 33 + lib/clang/libllvmdebuginfo/Makefile.depend | 17 + .../libllvmexecutionengine/Makefile.depend | 17 + lib/clang/libllvminstcombine/Makefile.depend | 43 + .../libllvminstrumentation/Makefile.depend | 21 + lib/clang/libllvminterpreter/Makefile.depend | 21 + lib/clang/libllvmipa/Makefile.depend | 23 + lib/clang/libllvmipo/Makefile.depend | 31 + lib/clang/libllvmjit/Makefile.depend | 17 + lib/clang/libllvmlinker/Makefile.depend | 17 + lib/clang/libllvmmc/Makefile.depend | 17 + .../libllvmmcdisassembler/Makefile.depend | 17 + lib/clang/libllvmmcjit/Makefile.depend | 17 + lib/clang/libllvmmcparser/Makefile.depend | 17 + .../libllvmmipsasmparser/Makefile.depend | 23 + lib/clang/libllvmmipscodegen/Makefile.depend | 131 ++ lib/clang/libllvmmipsdesc/Makefile.depend | 43 + lib/clang/libllvmmipsinfo/Makefile.depend | 23 + .../libllvmmipsinstprinter/Makefile.depend | 19 + lib/clang/libllvmobject/Makefile.depend | 17 + .../libllvmpowerpccodegen/Makefile.depend | 111 + lib/clang/libllvmpowerpcdesc/Makefile.depend | 43 + lib/clang/libllvmpowerpcinfo/Makefile.depend | 23 + .../libllvmpowerpcinstprinter/Makefile.depend | 25 + lib/clang/libllvmruntimedyld/Makefile.depend | 17 + lib/clang/libllvmscalaropts/Makefile.depend | 59 + lib/clang/libllvmselectiondag/Makefile.depend | 29 + lib/clang/libllvmsupport/Makefile.depend | 17 + lib/clang/libllvmtablegen/Makefile.depend | 17 + lib/clang/libllvmtarget/Makefile.depend | 17 + .../libllvmtransformutils/Makefile.depend | 41 + lib/clang/libllvmvectorize/Makefile.depend | 19 + lib/clang/libllvmx86asmparser/Makefile.depend | 33 + lib/clang/libllvmx86codegen/Makefile.depend | 127 + lib/clang/libllvmx86desc/Makefile.depend | 53 + .../libllvmx86disassembler/Makefile.depend | 23 + lib/clang/libllvmx86info/Makefile.depend | 23 + .../libllvmx86instprinter/Makefile.depend | 39 + lib/clang/libllvmx86utils/Makefile.depend | 17 + lib/csu/i386-elf/Makefile | 6 +- lib/csu/i386-elf/Makefile.depend | 15 + lib/libalias/libalias/Makefile.depend | 17 + lib/libalias/modules/cuseeme/Makefile.depend | 16 + lib/libalias/modules/dummy/Makefile.depend | 16 + lib/libalias/modules/ftp/Makefile.depend | 16 + lib/libalias/modules/irc/Makefile.depend | 16 + lib/libalias/modules/nbt/Makefile.depend | 16 + lib/libalias/modules/pptp/Makefile.depend | 16 + lib/libalias/modules/skinny/Makefile.depend | 16 + lib/libalias/modules/smedia/Makefile.depend | 16 + lib/libarchive/Makefile.depend | 16 + lib/libauditd/Makefile.depend | 16 + lib/libbegemot/Makefile.depend | 16 + lib/libblocksruntime/Makefile.depend | 16 + lib/libbluetooth/Makefile.depend | 16 + lib/libbsm/Makefile.depend | 17 + lib/libbsnmp/libbsnmp/Makefile.depend | 16 + lib/libbz2/Makefile.depend | 16 + lib/libc/Makefile | 10 + lib/libc/Makefile.depend | 168 ++ lib/libcalendar/Makefile.depend | 15 + lib/libcam/Makefile.depend | 16 + lib/libcom_err/Makefile.depend | 16 + lib/libcompat/Makefile.depend | 16 + lib/libcompiler_rt/Makefile.depend | 15 + lib/libcrypt/Makefile.depend | 17 + lib/libdevinfo/Makefile.depend | 16 + lib/libdevstat/Makefile.depend | 16 + lib/libdisk/Makefile.depend | 16 + lib/libdwarf/Makefile.depend | 16 + lib/libedit/Makefile.depend | 55 + lib/libedit/edit/readline/Makefile.depend | 14 + lib/libelf/Makefile.depend | 25 + lib/libexpat/Makefile.depend | 16 + lib/libfetch/Makefile.depend | 22 + lib/libgeom/Makefile.depend | 17 + lib/libgpib/Makefile.depend | 15 + lib/libgssapi/Makefile.depend | 17 + lib/libipsec/Makefile.depend | 26 + lib/libipx/Makefile.depend | 17 + lib/libjail/Makefile.depend | 17 + lib/libkiconv/Makefile.depend | 16 + lib/libkvm/Makefile.depend | 19 + lib/liblzma/Makefile.depend | 16 + lib/libmagic/Makefile.depend | 16 + lib/libmd/Makefile.depend | 37 + lib/libmemstat/Makefile.depend | 17 + lib/libmilter/Makefile.depend | 54 + lib/libmp/Makefile.depend | 16 + lib/libncp/Makefile.depend | 14 + lib/libnetgraph/Makefile.depend | 16 + lib/libngatm/Makefile.depend | 17 + lib/libopie/Makefile.depend | 18 + lib/libpam/libpam/Makefile.depend | 40 + lib/libpam/modules/pam_chroot/Makefile.depend | 16 + lib/libpam/modules/pam_deny/Makefile.depend | 15 + lib/libpam/modules/pam_echo/Makefile.depend | 16 + lib/libpam/modules/pam_exec/Makefile.depend | 16 + .../modules/pam_ftpusers/Makefile.depend | 16 + lib/libpam/modules/pam_group/Makefile.depend | 16 + lib/libpam/modules/pam_guest/Makefile.depend | 16 + lib/libpam/modules/pam_krb5/Makefile.depend | 19 + lib/libpam/modules/pam_ksu/Makefile.depend | 18 + .../modules/pam_lastlog/Makefile.depend | 16 + .../modules/pam_login_access/Makefile.depend | 16 + .../modules/pam_nologin/Makefile.depend | 17 + lib/libpam/modules/pam_opie/Makefile.depend | 16 + .../modules/pam_opieaccess/Makefile.depend | 15 + .../modules/pam_passwdqc/Makefile.depend | 16 + lib/libpam/modules/pam_permit/Makefile.depend | 15 + lib/libpam/modules/pam_radius/Makefile.depend | 16 + lib/libpam/modules/pam_rhosts/Makefile.depend | 16 + lib/libpam/modules/pam_rootok/Makefile.depend | 15 + .../modules/pam_securetty/Makefile.depend | 16 + lib/libpam/modules/pam_self/Makefile.depend | 15 + lib/libpam/modules/pam_ssh/Makefile.depend | 18 + .../modules/pam_tacplus/Makefile.depend | 16 + lib/libpam/modules/pam_unix/Makefile.depend | 18 + lib/libpcap/Makefile.depend | 32 + lib/libpmc/Makefile.depend | 16 + lib/libproc/Makefile.depend | 14 + lib/libprocstat/Makefile.depend | 19 + lib/libprocstat/zfs/Makefile.depend | 18 + lib/libradius/Makefile.depend | 17 + lib/librpcsec_gss/Makefile.depend | 16 + lib/librpcsvc/Makefile.depend | 60 + lib/librt/Makefile.depend | 16 + lib/librtld_db/Makefile.depend | 14 + lib/libsbuf/Makefile.depend | 16 + lib/libsdp/Makefile.depend | 18 + lib/libsm/Makefile.depend | 155 ++ lib/libsmb/Makefile.depend | 14 + lib/libsmdb/Makefile.depend | 25 + lib/libsmutil/Makefile.depend | 30 + lib/libstand/Makefile.depend | 58 + lib/libstdbuf/Makefile.depend | 16 + lib/libstdthreads/Makefile.depend | 16 + lib/libtacplus/Makefile.depend | 18 + lib/libtelnet/Makefile.depend | 20 + lib/libthr/Makefile.depend | 15 + lib/libthread_db/Makefile.depend | 16 + lib/libufs/Makefile.depend | 16 + lib/libugidfw/Makefile.depend | 16 + lib/libulog/Makefile.depend | 17 + lib/libusb/Makefile.depend | 16 + lib/libusbhid/Makefile.depend | 16 + lib/libutil/Makefile.depend | 17 + lib/libvgl/Makefile.depend | 14 + lib/libwrap/Makefile.depend | 17 + lib/liby/Makefile.depend | 15 + lib/libypclnt/Makefile.depend | 51 + lib/libz/Makefile.depend | 16 + lib/msun/Makefile | 2 + lib/msun/Makefile.depend | 19 + lib/ncurses/form/Makefile.depend | 134 ++ lib/ncurses/formw/Makefile.depend | 134 ++ lib/ncurses/menu/Makefile.depend | 95 + lib/ncurses/menuw/Makefile.depend | 95 + lib/ncurses/ncurses/Makefile.depend | 1807 +++++++++++++++ lib/ncurses/ncursesw/Makefile.depend | 2047 +++++++++++++++++ lib/ncurses/panel/Makefile.depend | 62 + lib/ncurses/panelw/Makefile.depend | 62 + libexec/atrun/Makefile.depend | 21 + libexec/bootpd/Makefile.depend | 20 + libexec/bootpd/bootpgw/Makefile.depend | 20 + libexec/bootpd/tools/bootpef/Makefile.depend | 20 + .../bootpd/tools/bootptest/Makefile.depend | 20 + libexec/comsat/Makefile.depend | 19 + libexec/fingerd/Makefile.depend | 21 + libexec/ftpd/Makefile.depend | 29 + libexec/getty/Makefile.depend | 20 + libexec/mail.local/Makefile.depend | 24 + libexec/mknetid/Makefile.depend | 21 + libexec/pppoed/Makefile.depend | 21 + libexec/rbootd/Makefile.depend | 19 + libexec/revnetgroup/Makefile.depend | 19 + libexec/rlogind/Makefile.depend | 21 + libexec/rpc.rquotad/Makefile.depend | 24 + libexec/rpc.rstatd/Makefile.depend | 25 + libexec/rpc.rusersd/Makefile.depend | 23 + libexec/rpc.rwalld/Makefile.depend | 23 + libexec/rpc.sprayd/Makefile.depend | 22 + libexec/rshd/Makefile.depend | 22 + libexec/rtld-elf/Makefile.depend | 17 + libexec/smrsh/Makefile.depend | 23 + libexec/talkd/Makefile.depend | 21 + libexec/tcpd/Makefile.depend | 20 + libexec/telnetd/Makefile.depend | 33 + libexec/tftp-proxy/Makefile.depend | 20 + libexec/tftpd/Makefile.depend | 21 + libexec/ulog-helper/Makefile.depend | 20 + libexec/ypxfr/Makefile.depend | 31 + sbin/adjkerntz/Makefile.depend | 19 + sbin/atacontrol/Makefile.depend | 19 + sbin/atm/atmconfig/Makefile.depend | 24 + sbin/badsect/Makefile.depend | 20 + sbin/bsdlabel/Makefile.depend | 22 + sbin/camcontrol/Makefile.depend | 22 + sbin/ccdconfig/Makefile.depend | 20 + sbin/clri/Makefile.depend | 19 + sbin/comcontrol/Makefile.depend | 19 + sbin/conscontrol/Makefile.depend | 19 + sbin/ddb/Makefile.depend | 20 + sbin/devd/Makefile.depend | 27 + sbin/devfs/Makefile.depend | 19 + sbin/dhclient/Makefile.depend | 21 + sbin/dmesg/Makefile.depend | 20 + sbin/dump/Makefile.depend | 20 + sbin/dumpfs/Makefile.depend | 20 + sbin/dumpon/Makefile.depend | 19 + sbin/etherswitchcfg/Makefile.depend | 19 + sbin/fdisk/Makefile.depend | 22 + sbin/fdisk_pc98/Makefile.depend | 20 + sbin/ffsinfo/Makefile.depend | 20 + sbin/fsck/Makefile.depend | 19 + sbin/fsck_ffs/Makefile.depend | 20 + sbin/fsck_msdosfs/Makefile.depend | 19 + sbin/fsdb/Makefile.depend | 22 + sbin/fsirand/Makefile.depend | 20 + sbin/gbde/Makefile.depend | 24 + sbin/geom/class/cache/Makefile.depend | 17 + sbin/geom/class/concat/Makefile.depend | 17 + sbin/geom/class/eli/Makefile.depend | 18 + sbin/geom/class/journal/Makefile.depend | 18 + sbin/geom/class/label/Makefile.depend | 17 + sbin/geom/class/mirror/Makefile.depend | 17 + sbin/geom/class/mountver/Makefile.depend | 17 + sbin/geom/class/multipath/Makefile.depend | 17 + sbin/geom/class/nop/Makefile.depend | 17 + sbin/geom/class/part/Makefile.depend | 18 + sbin/geom/class/raid/Makefile.depend | 17 + sbin/geom/class/raid3/Makefile.depend | 17 + sbin/geom/class/sched/Makefile.depend | 17 + sbin/geom/class/shsec/Makefile.depend | 17 + sbin/geom/class/stripe/Makefile.depend | 17 + sbin/geom/class/virstor/Makefile.depend | 17 + sbin/geom/core/Makefile.depend | 23 + sbin/ggate/ggatec/Makefile.depend | 25 + sbin/ggate/ggated/Makefile.depend | 23 + sbin/ggate/ggatel/Makefile.depend | 24 + sbin/growfs/Makefile.depend | 20 + sbin/gvinum/Makefile.depend | 25 + sbin/hastctl/Makefile.depend | 28 + sbin/hastd/Makefile.depend | 32 + sbin/ifconfig/Makefile.depend | 24 + sbin/init/Makefile.depend | 20 + sbin/ipf/ipf/Makefile.depend | 33 + sbin/ipf/ipfs/Makefile.depend | 22 + sbin/ipf/ipfstat/Makefile.depend | 24 + sbin/ipf/ipftest/Makefile.depend | 52 + sbin/ipf/ipmon/Makefile.depend | 32 + sbin/ipf/ipnat/Makefile.depend | 32 + sbin/ipf/ippool/Makefile.depend | 32 + sbin/ipf/ipresend/Makefile.depend | 23 + sbin/ipf/libipf/Makefile.depend | 18 + sbin/ipfw/Makefile.depend | 22 + sbin/iscontrol/Makefile.depend | 22 + sbin/kldconfig/Makefile.depend | 19 + sbin/kldload/Makefile.depend | 19 + sbin/kldstat/Makefile.depend | 18 + sbin/kldunload/Makefile.depend | 18 + sbin/ldconfig/Makefile.depend | 19 + sbin/mca/Makefile.depend | 19 + sbin/md5/Makefile.depend | 20 + sbin/mdconfig/Makefile.depend | 25 + sbin/mdmfs/Makefile.depend | 19 + sbin/mknod/Makefile.depend | 19 + sbin/mksnap_ffs/Makefile.depend | 19 + sbin/mount/Makefile.depend | 20 + sbin/mount_cd9660/Makefile.depend | 21 + sbin/mount_ext2fs/Makefile.depend | 19 + sbin/mount_msdosfs/Makefile.depend | 21 + sbin/mount_nfs/Makefile.depend | 22 + sbin/mount_ntfs/Makefile.depend | 21 + sbin/mount_nullfs/Makefile.depend | 19 + sbin/mount_reiserfs/Makefile.depend | 19 + sbin/mount_std/Makefile.depend | 19 + sbin/mount_udf/Makefile.depend | 20 + sbin/mount_unionfs/Makefile.depend | 19 + sbin/natd/Makefile.depend | 21 + sbin/newfs/Makefile.depend | 21 + sbin/newfs_msdos/Makefile.depend | 19 + sbin/nfsiod/Makefile.depend | 18 + sbin/nos-tun/Makefile.depend | 20 + sbin/pfctl/Makefile.depend | 24 + sbin/pflogd/Makefile.depend | 20 + sbin/ping/Makefile.depend | 22 + sbin/ping6/Makefile.depend | 23 + sbin/quotacheck/Makefile.depend | 20 + sbin/rcorder/Makefile.depend | 22 + sbin/reboot/Makefile.depend | 19 + sbin/recoverdisk/Makefile.depend | 19 + sbin/resolvconf/Makefile.depend | 14 + sbin/restore/Makefile.depend | 20 + sbin/route/Makefile.depend | 22 + sbin/routed/Makefile.depend | 22 + sbin/routed/rtquery/Makefile.depend | 22 + sbin/rtsol/Makefile.depend | 20 + sbin/savecore/Makefile.depend | 20 + sbin/sconfig/Makefile.depend | 19 + sbin/setkey/Makefile.depend | 28 + sbin/shutdown/Makefile.depend | 19 + sbin/spppcontrol/Makefile.depend | 19 + sbin/sunlabel/Makefile.depend | 20 + sbin/swapon/Makefile.depend | 20 + sbin/sysctl/Makefile.depend | 19 + sbin/tunefs/Makefile.depend | 20 + sbin/umount/Makefile.depend | 21 + secure/lib/libcrypto/Makefile.depend | 22 + .../engines/lib4758cca/Makefile.depend | 16 + .../libcrypto/engines/libaep/Makefile.depend | 16 + .../engines/libatalla/Makefile.depend | 16 + .../libcrypto/engines/libchil/Makefile.depend | 16 + .../engines/libcswift/Makefile.depend | 16 + .../engines/libnuron/Makefile.depend | 16 + .../engines/libsureware/Makefile.depend | 16 + .../engines/libubsec/Makefile.depend | 16 + secure/lib/libssh/Makefile.depend | 22 + secure/lib/libssl/Makefile.depend | 17 + secure/libexec/sftp-server/Makefile.depend | 26 + secure/libexec/ssh-keysign/Makefile.depend | 26 + .../libexec/ssh-pkcs11-helper/Makefile.depend | 26 + secure/usr.bin/bdes/Makefile.depend | 20 + secure/usr.bin/openssl/Makefile.depend | 23 + secure/usr.bin/scp/Makefile.depend | 26 + secure/usr.bin/sftp/Makefile.depend | 28 + secure/usr.bin/ssh-add/Makefile.depend | 26 + secure/usr.bin/ssh-agent/Makefile.depend | 26 + secure/usr.bin/ssh-keygen/Makefile.depend | 26 + secure/usr.bin/ssh-keyscan/Makefile.depend | 26 + secure/usr.bin/ssh/Makefile.depend | 30 + secure/usr.sbin/sshd/Makefile.depend | 33 + share/colldef/Makefile.depend | 14 + share/dict/Makefile.depend | 14 + share/doc/IPv6/Makefile.depend | 14 + share/doc/bind9/Makefile.depend | 14 + share/doc/legal/intel_ipw/Makefile.depend | 14 + share/doc/legal/intel_iwi/Makefile.depend | 14 + share/doc/legal/intel_iwn/Makefile.depend | 14 + share/doc/legal/intel_wpi/Makefile.depend | 14 + share/doc/llvm/Makefile.depend | 14 + share/doc/llvm/clang/Makefile.depend | 14 + share/examples/libvgl/Makefile.depend | 19 + share/i18n/csmapper/APPLE/Makefile.depend | 15 + share/i18n/csmapper/AST/Makefile.depend | 15 + share/i18n/csmapper/BIG5/Makefile.depend | 15 + share/i18n/csmapper/CNS/Makefile.depend | 15 + share/i18n/csmapper/CP/Makefile.depend | 15 + share/i18n/csmapper/EBCDIC/Makefile.depend | 15 + share/i18n/csmapper/GB/Makefile.depend | 15 + share/i18n/csmapper/GEORGIAN/Makefile.depend | 15 + share/i18n/csmapper/ISO-8859/Makefile.depend | 15 + share/i18n/csmapper/ISO646/Makefile.depend | 14 + share/i18n/csmapper/JIS/Makefile.depend | 15 + share/i18n/csmapper/KAZAKH/Makefile.depend | 15 + share/i18n/csmapper/KOI/Makefile.depend | 15 + share/i18n/csmapper/KS/Makefile.depend | 15 + share/i18n/csmapper/MISC/Makefile.depend | 15 + share/i18n/csmapper/TCVN/Makefile.depend | 15 + share/man/man1/Makefile.depend | 14 + share/man/man3/Makefile.depend | 14 + share/man/man4/Makefile.depend | 14 + share/man/man4/man4.arm/Makefile.depend | 14 + share/man/man4/man4.i386/Makefile.depend | 14 + share/man/man4/man4.powerpc/Makefile.depend | 14 + share/man/man4/man4.sparc64/Makefile.depend | 14 + share/man/man5/Makefile.depend | 14 + share/man/man6/Makefile.depend | 14 + share/man/man7/Makefile.depend | 14 + share/man/man8/Makefile.depend | 14 + share/man/man9/Makefile.depend | 14 + share/me/Makefile.depend | 14 + share/misc/Makefile.depend | 14 + share/mk/Makefile.depend | 14 + share/mk/auto.obj.mk | 57 + share/mk/bsd.crunchgen.mk | 2 + share/mk/bsd.dep.mk | 18 +- share/mk/bsd.files.mk | 21 + share/mk/bsd.incs.mk | 19 + share/mk/bsd.init.mk | 9 + share/mk/bsd.lib.mk | 18 + share/mk/bsd.obj.mk | 16 + share/mk/bsd.own.mk | 28 +- share/mk/bsd.prog.mk | 26 + share/mk/bsd.subdir.mk | 15 +- share/mk/bsd.sys.mk | 15 + share/mk/dirdeps.mk | 368 +++ share/mk/gendirdeps.mk | 301 +++ share/mk/host-target.mk | 31 + share/mk/install-new.mk | 53 + share/mk/local.autodep.mk | 21 + share/mk/local.dirdeps.mk | 15 + share/mk/local.gendirdeps.mk | 10 + share/mk/local.init.mk | 18 + share/mk/local.sys.mk | 196 ++ share/mk/meta.autodep.mk | 259 +++ share/mk/meta.stage.mk | 166 ++ share/mk/meta.subdir.mk | 79 + share/mk/meta.sys.mk | 139 ++ share/mk/meta2deps.py | 606 +++++ share/mk/meta2deps.sh | 306 +++ share/mk/sys.dependfile.mk | 38 + share/mk/sys.mk | 12 + share/mklocale/Makefile.depend | 14 + share/monetdef/Makefile.depend | 14 + share/msgdef/Makefile.depend | 14 + share/numericdef/Makefile.depend | 14 + share/security/Makefile.depend | 14 + share/skel/Makefile.depend | 14 + share/snmp/mibs/Makefile.depend | 14 + share/syscons/fonts/Makefile.depend | 14 + share/syscons/keymaps/Makefile.depend | 14 + share/syscons/scrnmaps/Makefile.depend | 15 + share/tabset/Makefile.depend | 14 + share/termcap/Makefile.depend | 14 + share/timedef/Makefile.depend | 14 + share/zoneinfo/Makefile.depend | 14 + sys/boot/ficl/Makefile.depend | 14 + sys/boot/i386/boot2/Makefile.depend | 14 + sys/boot/i386/loader/Makefile.depend | 14 + sys/boot/i386/zfsloader/Makefile.depend | 14 + sys/conf/kern.post.mk | 10 +- sys/conf/kmod.mk | 2 + tools/build/make_check/Makefile | 15 +- tools/build/mk/Makefile.boot | 3 + usr.bin/apply/Makefile.depend | 20 + usr.bin/ar/Makefile.depend | 26 + usr.bin/asa/Makefile.depend | 18 + usr.bin/at/Makefile.depend | 19 + usr.bin/atm/sscop/Makefile.depend | 22 + usr.bin/awk/Makefile.depend | 40 + usr.bin/banner/Makefile.depend | 19 + usr.bin/basename/Makefile.depend | 19 + usr.bin/bc/Makefile.depend | 27 + usr.bin/biff/Makefile.depend | 19 + usr.bin/bluetooth/bthost/Makefile.depend | 20 + usr.bin/bluetooth/btsockstat/Makefile.depend | 21 + usr.bin/bluetooth/rfcomm_sppd/Makefile.depend | 21 + usr.bin/brandelf/Makefile.depend | 19 + usr.bin/bsdiff/bsdiff/Makefile.depend | 20 + usr.bin/bsdiff/bspatch/Makefile.depend | 20 + usr.bin/bzip2/Makefile.depend | 21 + usr.bin/bzip2recover/Makefile.depend | 19 + usr.bin/c89/Makefile.depend | 19 + usr.bin/c99/Makefile.depend | 19 + usr.bin/calendar/Makefile.depend | 20 + usr.bin/cap_mkdb/Makefile.depend | 19 + usr.bin/catman/Makefile.depend | 19 + usr.bin/chat/Makefile.depend | 19 + usr.bin/checknr/Makefile.depend | 19 + usr.bin/chkey/Makefile.depend | 24 + usr.bin/chpass/Makefile.depend | 22 + usr.bin/cksum/Makefile.depend | 19 + usr.bin/clang/clang-tblgen/Makefile.depend | 23 + usr.bin/clang/clang/Makefile.depend | 104 + usr.bin/clang/tblgen/Makefile.depend | 23 + usr.bin/cmp/Makefile.depend | 19 + usr.bin/col/Makefile.depend | 19 + usr.bin/colcrt/Makefile.depend | 19 + usr.bin/colldef/Makefile.depend | 26 + usr.bin/colrm/Makefile.depend | 19 + usr.bin/column/Makefile.depend | 19 + usr.bin/comm/Makefile.depend | 19 + usr.bin/compile_et/Makefile.depend | 30 + usr.bin/compress/Makefile.depend | 19 + usr.bin/cpio/Makefile.depend | 25 + usr.bin/cpuset/Makefile.depend | 19 + usr.bin/csplit/Makefile.depend | 19 + usr.bin/csup/Makefile.depend | 31 + usr.bin/ctags/Makefile.depend | 19 + usr.bin/ctlstat/Makefile.depend | 19 + usr.bin/cut/Makefile.depend | 19 + usr.bin/dc/Makefile.depend | 21 + usr.bin/dig/Makefile.depend | 28 + usr.bin/dirname/Makefile.depend | 18 + usr.bin/du/Makefile.depend | 20 + usr.bin/ee/Makefile.depend | 21 + usr.bin/elf2aout/Makefile.depend | 19 + usr.bin/elfdump/Makefile.depend | 19 + usr.bin/enigma/Makefile.depend | 20 + usr.bin/env/Makefile.depend | 19 + usr.bin/expand/Makefile.depend | 19 + usr.bin/false/Makefile.depend | 18 + usr.bin/fetch/Makefile.depend | 17 + usr.bin/file/Makefile.depend | 21 + usr.bin/file2c/Makefile.depend | 18 + usr.bin/find/Makefile.depend | 21 + usr.bin/finger/Makefile.depend | 19 + usr.bin/fmt/Makefile.depend | 19 + usr.bin/fold/Makefile.depend | 19 + usr.bin/from/Makefile.depend | 19 + usr.bin/fstat/Makefile.depend | 22 + usr.bin/fsync/Makefile.depend | 18 + usr.bin/ftp/Makefile.depend | 25 + usr.bin/gcore/Makefile.depend | 20 + usr.bin/gencat/Makefile.depend | 20 + usr.bin/getconf/Makefile.depend | 29 + usr.bin/getent/Makefile.depend | 21 + usr.bin/getopt/Makefile.depend | 18 + usr.bin/gprof/Makefile.depend | 19 + usr.bin/grep/Makefile.depend | 23 + usr.bin/gzip/Makefile.depend | 22 + usr.bin/head/Makefile.depend | 19 + usr.bin/hexdump/Makefile.depend | 19 + usr.bin/host/Makefile.depend | 28 + usr.bin/id/Makefile.depend | 20 + usr.bin/indent/Makefile.depend | 19 + usr.bin/ipcrm/Makefile.depend | 20 + usr.bin/ipcs/Makefile.depend | 20 + usr.bin/join/Makefile.depend | 19 + usr.bin/jot/Makefile.depend | 19 + usr.bin/kdump/Makefile.depend | 31 + usr.bin/keylogin/Makefile.depend | 22 + usr.bin/keylogout/Makefile.depend | 21 + usr.bin/killall/Makefile.depend | 20 + usr.bin/ktrace/Makefile.depend | 19 + usr.bin/ktrdump/Makefile.depend | 20 + usr.bin/lam/Makefile.depend | 19 + usr.bin/last/Makefile.depend | 19 + usr.bin/lastcomm/Makefile.depend | 19 + usr.bin/ldd/Makefile.depend | 20 + usr.bin/leave/Makefile.depend | 19 + usr.bin/less/Makefile.depend | 21 + usr.bin/lessecho/Makefile.depend | 19 + usr.bin/lesskey/Makefile.depend | 19 + usr.bin/lex/Makefile.depend | 29 + usr.bin/lex/lib/Makefile.depend | 14 + usr.bin/limits/Makefile.depend | 20 + usr.bin/locale/Makefile.depend | 19 + usr.bin/locate/bigram/Makefile.depend | 18 + usr.bin/locate/code/Makefile.depend | 19 + usr.bin/locate/locate/Makefile.depend | 20 + usr.bin/lock/Makefile.depend | 20 + usr.bin/lockf/Makefile.depend | 18 + usr.bin/logger/Makefile.depend | 19 + usr.bin/login/Makefile.depend | 22 + usr.bin/logins/Makefile.depend | 19 + usr.bin/logname/Makefile.depend | 18 + usr.bin/look/Makefile.depend | 19 + usr.bin/lorder/Makefile.depend | 14 + usr.bin/lsvfs/Makefile.depend | 19 + usr.bin/lzmainfo/Makefile.depend | 20 + usr.bin/m4/Makefile.depend | 27 + usr.bin/mail/Makefile.depend | 19 + usr.bin/make/Makefile.depend | 18 + usr.bin/makewhatis/Makefile.depend | 20 + usr.bin/man/Makefile.depend | 14 + usr.bin/mesg/Makefile.depend | 19 + usr.bin/minigzip/Makefile.depend | 20 + usr.bin/ministat/Makefile.depend | 20 + usr.bin/mkcsmapper_static/Makefile.depend | 25 + usr.bin/mkdep/Makefile.depend | 14 + usr.bin/mkfifo/Makefile.depend | 19 + usr.bin/mklocale/Makefile.depend | 26 + usr.bin/mkstr/Makefile.depend | 19 + usr.bin/mktemp/Makefile.depend | 19 + usr.bin/mkulzma/Makefile.depend | 20 + usr.bin/mkuzip/Makefile.depend | 20 + usr.bin/msgs/Makefile.depend | 21 + usr.bin/mt/Makefile.depend | 19 + usr.bin/nc/Makefile.depend | 22 + usr.bin/ncal/Makefile.depend | 22 + usr.bin/ncplist/Makefile.depend | 20 + usr.bin/ncplogin/Makefile.depend | 20 + usr.bin/netstat/Makefile.depend | 25 + usr.bin/newgrp/Makefile.depend | 21 + usr.bin/newkey/Makefile.depend | 24 + usr.bin/nfsstat/Makefile.depend | 20 + usr.bin/nice/Makefile.depend | 19 + usr.bin/nl/Makefile.depend | 19 + usr.bin/nohup/Makefile.depend | 19 + usr.bin/nslookup/Makefile.depend | 28 + usr.bin/nsupdate/Makefile.depend | 28 + usr.bin/opieinfo/Makefile.depend | 21 + usr.bin/opiekey/Makefile.depend | 21 + usr.bin/opiepasswd/Makefile.depend | 21 + usr.bin/pagesize/Makefile.depend | 14 + usr.bin/pamtest/Makefile.depend | 20 + usr.bin/passwd/Makefile.depend | 19 + usr.bin/paste/Makefile.depend | 19 + usr.bin/pathchk/Makefile.depend | 19 + usr.bin/perror/Makefile.depend | 19 + usr.bin/pr/Makefile.depend | 19 + usr.bin/printenv/Makefile.depend | 19 + usr.bin/printf/Makefile.depend | 19 + usr.bin/procstat/Makefile.depend | 23 + usr.bin/quota/Makefile.depend | 23 + usr.bin/rctl/Makefile.depend | 20 + usr.bin/renice/Makefile.depend | 19 + usr.bin/rev/Makefile.depend | 19 + usr.bin/revoke/Makefile.depend | 18 + usr.bin/rlogin/Makefile.depend | 19 + usr.bin/rpcgen/Makefile.depend | 19 + usr.bin/rpcinfo/Makefile.depend | 21 + usr.bin/rs/Makefile.depend | 19 + usr.bin/rsh/Makefile.depend | 20 + usr.bin/rup/Makefile.depend | 23 + usr.bin/ruptime/Makefile.depend | 20 + usr.bin/rusers/Makefile.depend | 23 + usr.bin/rwall/Makefile.depend | 21 + usr.bin/rwho/Makefile.depend | 20 + usr.bin/script/Makefile.depend | 20 + usr.bin/sed/Makefile.depend | 19 + usr.bin/seq/Makefile.depend | 20 + usr.bin/setchannel/Makefile.depend | 19 + usr.bin/shar/Makefile.depend | 14 + usr.bin/showmount/Makefile.depend | 21 + usr.bin/smbutil/Makefile.depend | 21 + usr.bin/sockstat/Makefile.depend | 20 + usr.bin/sort/Makefile.depend | 22 + usr.bin/split/Makefile.depend | 19 + usr.bin/stat/Makefile.depend | 19 + usr.bin/stdbuf/Makefile.depend | 18 + usr.bin/su/Makefile.depend | 22 + usr.bin/systat/Makefile.depend | 24 + usr.bin/tabs/Makefile.depend | 21 + usr.bin/tail/Makefile.depend | 19 + usr.bin/talk/Makefile.depend | 23 + usr.bin/tar/Makefile.depend | 25 + usr.bin/tcopy/Makefile.depend | 19 + usr.bin/tee/Makefile.depend | 19 + usr.bin/telnet/Makefile.depend | 33 + usr.bin/tftp/Makefile.depend | 22 + usr.bin/time/Makefile.depend | 19 + usr.bin/tip/tip/Makefile.depend | 19 + usr.bin/top/Makefile.depend | 30 + usr.bin/touch/Makefile.depend | 19 + usr.bin/tput/Makefile.depend | 21 + usr.bin/tr/Makefile.depend | 19 + usr.bin/true/Makefile.depend | 17 + usr.bin/truncate/Makefile.depend | 20 + usr.bin/truss/Makefile.depend | 27 + usr.bin/tset/Makefile.depend | 21 + usr.bin/tsort/Makefile.depend | 19 + usr.bin/tty/Makefile.depend | 18 + usr.bin/ul/Makefile.depend | 21 + usr.bin/uname/Makefile.depend | 18 + usr.bin/unexpand/Makefile.depend | 19 + usr.bin/unifdef/Makefile.depend | 19 + usr.bin/uniq/Makefile.depend | 19 + usr.bin/units/Makefile.depend | 19 + usr.bin/unvis/Makefile.depend | 18 + usr.bin/unzip/Makefile.depend | 21 + usr.bin/usbhidaction/Makefile.depend | 20 + usr.bin/usbhidctl/Makefile.depend | 20 + usr.bin/users/Makefile.depend | 19 + usr.bin/uudecode/Makefile.depend | 20 + usr.bin/uuencode/Makefile.depend | 20 + usr.bin/vacation/Makefile.depend | 25 + usr.bin/vgrind/Makefile.depend | 19 + usr.bin/vgrind/RETEST/Makefile.depend | 19 + usr.bin/vi/Makefile.depend | 21 + usr.bin/vis/Makefile.depend | 19 + usr.bin/vmstat/Makefile.depend | 23 + usr.bin/w/Makefile.depend | 22 + usr.bin/wall/Makefile.depend | 19 + usr.bin/wc/Makefile.depend | 19 + usr.bin/what/Makefile.depend | 18 + usr.bin/whereis/Makefile.depend | 19 + usr.bin/which/Makefile.depend | 19 + usr.bin/who/Makefile.depend | 19 + usr.bin/whois/Makefile.depend | 20 + usr.bin/write/Makefile.depend | 19 + usr.bin/xargs/Makefile.depend | 19 + usr.bin/xinstall/Makefile.depend | 19 + usr.bin/xlint/lint1/Makefile.depend | 30 + usr.bin/xlint/lint2/Makefile.depend | 19 + usr.bin/xlint/llib/Makefile.depend | 14 + usr.bin/xlint/xlint/Makefile.depend | 19 + usr.bin/xstr/Makefile.depend | 19 + usr.bin/xz/Makefile.depend | 20 + usr.bin/xzdec/Makefile.depend | 20 + usr.bin/yacc/Makefile.depend | 19 + usr.bin/yes/Makefile.depend | 18 + usr.bin/ypcat/Makefile.depend | 21 + usr.bin/ypmatch/Makefile.depend | 21 + usr.bin/ypwhich/Makefile.depend | 22 + usr.sbin/IPXrouted/Makefile.depend | 20 + usr.sbin/ac/Makefile.depend | 19 + usr.sbin/accton/Makefile.depend | 19 + usr.sbin/acpi/acpiconf/Makefile.depend | 19 + usr.sbin/acpi/acpidb/Makefile.depend | 20 + usr.sbin/acpi/acpidump/Makefile.depend | 19 + usr.sbin/acpi/iasl/Makefile.depend | 87 + usr.sbin/adduser/Makefile.depend | 14 + usr.sbin/amd/amd/Makefile.depend | 33 + usr.sbin/amd/amq/Makefile.depend | 25 + usr.sbin/amd/fixmount/Makefile.depend | 26 + usr.sbin/amd/fsinfo/Makefile.depend | 33 + usr.sbin/amd/hlfsd/Makefile.depend | 25 + usr.sbin/amd/include/Makefile.depend | 14 + usr.sbin/amd/libamu/Makefile.depend | 25 + usr.sbin/amd/mk-amd-map/Makefile.depend | 25 + usr.sbin/amd/pawd/Makefile.depend | 25 + usr.sbin/amd/scripts/Makefile.depend | 14 + usr.sbin/amd/wire-test/Makefile.depend | 25 + usr.sbin/ancontrol/Makefile.depend | 21 + usr.sbin/apm/Makefile.depend | 19 + usr.sbin/apmd/Makefile.depend | 25 + usr.sbin/arp/Makefile.depend | 20 + usr.sbin/arpaname/Makefile.depend | 28 + usr.sbin/asf/Makefile.depend | 20 + usr.sbin/audit/Makefile.depend | 20 + usr.sbin/auditd/Makefile.depend | 21 + usr.sbin/auditreduce/Makefile.depend | 20 + usr.sbin/authpf/Makefile.depend | 23 + usr.sbin/bluetooth/ath3kfw/Makefile.depend | 20 + usr.sbin/bluetooth/bcmfw/Makefile.depend | 20 + usr.sbin/bluetooth/bt3cfw/Makefile.depend | 20 + .../bluetooth/bthidcontrol/Makefile.depend | 28 + usr.sbin/bluetooth/bthidd/Makefile.depend | 27 + usr.sbin/bluetooth/btpand/Makefile.depend | 22 + usr.sbin/bluetooth/hccontrol/Makefile.depend | 20 + usr.sbin/bluetooth/hcsecd/Makefile.depend | 26 + usr.sbin/bluetooth/hcseriald/Makefile.depend | 20 + usr.sbin/bluetooth/l2control/Makefile.depend | 20 + usr.sbin/bluetooth/l2ping/Makefile.depend | 21 + .../bluetooth/rfcomm_pppd/Makefile.depend | 21 + usr.sbin/bluetooth/sdpcontrol/Makefile.depend | 21 + usr.sbin/bluetooth/sdpd/Makefile.depend | 22 + usr.sbin/boot0cfg/Makefile.depend | 22 + usr.sbin/boot98cfg/Makefile.depend | 20 + .../bootparamd/bootparamd/Makefile.depend | 34 + usr.sbin/bootparamd/callbootd/Makefile.depend | 31 + usr.sbin/bsdinstall/Makefile.depend | 14 + .../bsdinstall/distextract/Makefile.depend | 23 + usr.sbin/bsdinstall/distfetch/Makefile.depend | 23 + usr.sbin/bsdinstall/partedit/Makefile.depend | 24 + usr.sbin/bsnmpd/bsnmpd/Makefile.depend | 51 + usr.sbin/bsnmpd/gensnmptree/Makefile.depend | 19 + usr.sbin/bsnmpd/modules/Makefile.depend | 14 + .../bsnmpd/modules/snmp_atm/Makefile.depend | 30 + .../modules/snmp_bridge/Makefile.depend | 38 + .../modules/snmp_hostres/Makefile.depend | 79 + .../bsnmpd/modules/snmp_mibII/Makefile.depend | 68 + .../modules/snmp_netgraph/Makefile.depend | 27 + .../bsnmpd/modules/snmp_pf/Makefile.depend | 26 + .../modules/snmp_target/Makefile.depend | 25 + .../bsnmpd/modules/snmp_usm/Makefile.depend | 25 + .../bsnmpd/modules/snmp_vacm/Makefile.depend | 25 + .../bsnmpd/modules/snmp_wlan/Makefile.depend | 29 + .../bsnmpd/tools/bsnmptools/Makefile.depend | 22 + .../tools/libbsnmptools/Makefile.depend | 18 + usr.sbin/btxld/Makefile.depend | 19 + usr.sbin/burncd/Makefile.depend | 20 + usr.sbin/cdcontrol/Makefile.depend | 22 + usr.sbin/chkgrp/Makefile.depend | 19 + usr.sbin/chown/Makefile.depend | 19 + usr.sbin/chroot/Makefile.depend | 19 + usr.sbin/ckdist/Makefile.depend | 20 + usr.sbin/clear_locks/Makefile.depend | 22 + usr.sbin/config/Makefile.depend | 36 + usr.sbin/cpucontrol/Makefile.depend | 19 + usr.sbin/crashinfo/Makefile.depend | 14 + usr.sbin/cron/cron/Makefile.depend | 22 + usr.sbin/cron/crontab/Makefile.depend | 22 + usr.sbin/cron/lib/Makefile.depend | 17 + usr.sbin/crunch/crunchgen/Makefile.depend | 21 + usr.sbin/crunch/crunchide/Makefile.depend | 19 + usr.sbin/crunch/examples/Makefile | 6 +- usr.sbin/ctladm/Makefile.depend | 23 + usr.sbin/ctm/ctm/Makefile.depend | 20 + usr.sbin/ctm/ctm_dequeue/Makefile.depend | 19 + usr.sbin/ctm/ctm_rmail/Makefile.depend | 19 + usr.sbin/ctm/ctm_smail/Makefile.depend | 19 + usr.sbin/daemon/Makefile.depend | 19 + usr.sbin/dconschat/Makefile.depend | 21 + usr.sbin/ddns-confgen/Makefile.depend | 28 + usr.sbin/devinfo/Makefile.depend | 19 + usr.sbin/digictl/Makefile.depend | 19 + usr.sbin/diskinfo/Makefile.depend | 20 + usr.sbin/dnssec-dsfromkey/Makefile.depend | 28 + usr.sbin/dnssec-keyfromlabel/Makefile.depend | 28 + usr.sbin/dnssec-keygen/Makefile.depend | 28 + usr.sbin/dnssec-revoke/Makefile.depend | 28 + usr.sbin/dnssec-settime/Makefile.depend | 28 + usr.sbin/dnssec-signzone/Makefile.depend | 28 + usr.sbin/dumpcis/Makefile.depend | 19 + usr.sbin/editmap/Makefile.depend | 25 + usr.sbin/edquota/Makefile.depend | 20 + usr.sbin/eeprom/Makefile.depend | 19 + usr.sbin/extattr/Makefile.depend | 20 + usr.sbin/extattrctl/Makefile.depend | 20 + usr.sbin/faithd/Makefile.depend | 21 + usr.sbin/fdcontrol/Makefile.depend | 19 + usr.sbin/fdformat/Makefile.depend | 19 + usr.sbin/fdread/Makefile.depend | 19 + usr.sbin/fdwrite/Makefile.depend | 19 + .../fifolog/fifolog_create/Makefile.depend | 20 + .../fifolog/fifolog_reader/Makefile.depend | 22 + .../fifolog/fifolog_writer/Makefile.depend | 22 + usr.sbin/fifolog/lib/Makefile.depend | 19 + usr.sbin/flowctl/Makefile.depend | 21 + usr.sbin/freebsd-update/Makefile.depend | 14 + usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend | 21 + usr.sbin/ftp-proxy/libevent/Makefile.depend | 16 + usr.sbin/fwcontrol/Makefile.depend | 20 + usr.sbin/genrandom/Makefile.depend | 27 + usr.sbin/getfmac/Makefile.depend | 19 + usr.sbin/getpmac/Makefile.depend | 19 + usr.sbin/gpioctl/Makefile.depend | 19 + usr.sbin/gssd/Makefile.depend | 34 + usr.sbin/gstat/Makefile.depend | 27 + usr.sbin/i2c/Makefile.depend | 19 + usr.sbin/ifmcstat/Makefile.depend | 21 + usr.sbin/inetd/Makefile.depend | 24 + usr.sbin/iostat/Makefile.depend | 22 + usr.sbin/ip6addrctl/Makefile.depend | 19 + usr.sbin/ipfwpcap/Makefile.depend | 20 + usr.sbin/isc-hmac-fixup/Makefile.depend | 27 + usr.sbin/jail/Makefile.depend | 29 + usr.sbin/jexec/Makefile.depend | 22 + usr.sbin/jls/Makefile.depend | 21 + usr.sbin/kbdcontrol/Makefile.depend | 21 + usr.sbin/kbdmap/Makefile.depend | 19 + usr.sbin/keyserv/Makefile.depend | 30 + usr.sbin/kgmon/Makefile.depend | 20 + usr.sbin/kgzip/Makefile.depend | 19 + usr.sbin/kldxref/Makefile.depend | 19 + usr.sbin/lastlogin/Makefile.depend | 19 + usr.sbin/lmcconfig/Makefile.depend | 20 + usr.sbin/lpr/chkprintcap/Makefile.depend | 20 + usr.sbin/lpr/common_source/Makefile.depend | 17 + usr.sbin/lpr/filters.ru/Makefile.depend | 14 + .../lpr/filters.ru/koi2855/Makefile.depend | 18 + .../lpr/filters.ru/koi2alt/Makefile.depend | 18 + usr.sbin/lpr/filters/Makefile.depend | 19 + usr.sbin/lpr/lp/Makefile.depend | 14 + usr.sbin/lpr/lpc/Makefile.depend | 22 + usr.sbin/lpr/lpd/Makefile.depend | 21 + usr.sbin/lpr/lpq/Makefile.depend | 20 + usr.sbin/lpr/lpr/Makefile.depend | 20 + usr.sbin/lpr/lprm/Makefile.depend | 20 + usr.sbin/lpr/lptest/Makefile.depend | 18 + usr.sbin/lpr/pac/Makefile.depend | 20 + usr.sbin/lptcontrol/Makefile.depend | 18 + usr.sbin/mailstats/Makefile.depend | 24 + usr.sbin/mailwrapper/Makefile.depend | 20 + usr.sbin/makefs/Makefile.depend | 20 + usr.sbin/makemap/Makefile.depend | 25 + usr.sbin/manctl/Makefile.depend | 14 + usr.sbin/memcontrol/Makefile.depend | 19 + usr.sbin/mergemaster/Makefile.depend | 14 + usr.sbin/mfiutil/Makefile.depend | 20 + usr.sbin/mixer/Makefile.depend | 19 + usr.sbin/mld6query/Makefile.depend | 20 + usr.sbin/mlxcontrol/Makefile.depend | 19 + usr.sbin/mount_nwfs/Makefile.depend | 20 + usr.sbin/mount_portalfs/Makefile.depend | 20 + usr.sbin/mount_smbfs/Makefile.depend | 20 + usr.sbin/mountd/Makefile.depend | 23 + usr.sbin/moused/Makefile.depend | 21 + usr.sbin/mptable/Makefile.depend | 19 + usr.sbin/mptutil/Makefile.depend | 22 + usr.sbin/mtest/Makefile.depend | 20 + usr.sbin/mtree/Makefile.depend | 20 + usr.sbin/named-checkconf/Makefile.depend | 28 + usr.sbin/named-checkzone/Makefile.depend | 28 + usr.sbin/named-journalprint/Makefile.depend | 27 + usr.sbin/named/Makefile.depend | 28 + usr.sbin/ndiscvt/Makefile.depend | 25 + usr.sbin/ndp/Makefile.depend | 20 + usr.sbin/newsyslog/Makefile.depend | 19 + usr.sbin/nfscbd/Makefile.depend | 20 + usr.sbin/nfsd/Makefile.depend | 22 + usr.sbin/nfsdumpstate/Makefile.depend | 20 + usr.sbin/nfsrevoke/Makefile.depend | 19 + usr.sbin/nfsuserd/Makefile.depend | 20 + usr.sbin/ngctl/Makefile.depend | 23 + usr.sbin/nghook/Makefile.depend | 20 + usr.sbin/nologin/Makefile.depend | 17 + usr.sbin/nscd/Makefile.depend | 22 + usr.sbin/nsec3hash/Makefile.depend | 28 + usr.sbin/ntp/libntp/Makefile.depend | 20 + usr.sbin/ntp/libopts/Makefile.depend | 16 + usr.sbin/ntp/libparse/Makefile.depend | 18 + usr.sbin/ntp/ntp-keygen/Makefile.depend | 23 + usr.sbin/ntp/ntpd/Makefile.depend | 29 + usr.sbin/ntp/ntpdate/Makefile.depend | 27 + usr.sbin/ntp/ntpdc/Makefile.depend | 30 + usr.sbin/ntp/ntpq/Makefile.depend | 30 + usr.sbin/ntp/ntptime/Makefile.depend | 20 + usr.sbin/ntp/sntp/Makefile.depend | 22 + usr.sbin/ofwdump/Makefile.depend | 19 + .../backend-partmanager/Makefile.depend | 14 + .../backend-query/Makefile.depend | 14 + .../pc-sysinstall/backend/Makefile.depend | 14 + usr.sbin/pc-sysinstall/conf/Makefile.depend | 14 + .../pc-sysinstall/Makefile.depend | 14 + usr.sbin/pciconf/Makefile.depend | 19 + usr.sbin/periodic/Makefile.depend | 14 + usr.sbin/pkg/Makefile.depend | 22 + usr.sbin/pkg_install/add/Makefile.depend | 25 + usr.sbin/pkg_install/create/Makefile.depend | 22 + usr.sbin/pkg_install/delete/Makefile.depend | 22 + usr.sbin/pkg_install/info/Makefile.depend | 25 + usr.sbin/pkg_install/lib/Makefile.depend | 19 + usr.sbin/pkg_install/updating/Makefile.depend | 25 + usr.sbin/pkg_install/version/Makefile.depend | 25 + usr.sbin/pmcannotate/Makefile.depend | 19 + usr.sbin/pmccontrol/Makefile.depend | 20 + usr.sbin/pmcstat/Makefile.depend | 25 + usr.sbin/pnpinfo/Makefile.depend | 19 + usr.sbin/portsnap/make_index/Makefile.depend | 19 + usr.sbin/portsnap/phttpget/Makefile.depend | 19 + usr.sbin/portsnap/portsnap/Makefile.depend | 14 + usr.sbin/powerd/Makefile.depend | 20 + usr.sbin/ppp/Makefile.depend | 29 + usr.sbin/pppctl/Makefile.depend | 23 + usr.sbin/praliases/Makefile.depend | 25 + usr.sbin/praudit/Makefile.depend | 20 + usr.sbin/procctl/Makefile.depend | 19 + usr.sbin/pstat/Makefile.depend | 21 + usr.sbin/pw/Makefile.depend | 21 + usr.sbin/pwd_mkdb/Makefile.depend | 20 + usr.sbin/quot/Makefile.depend | 19 + usr.sbin/quotaon/Makefile.depend | 20 + usr.sbin/rarpd/Makefile.depend | 20 + usr.sbin/repquota/Makefile.depend | 20 + usr.sbin/rip6query/Makefile.depend | 20 + usr.sbin/rmt/Makefile.depend | 19 + usr.sbin/rndc-confgen/Makefile.depend | 28 + usr.sbin/rndc/Makefile.depend | 28 + usr.sbin/route6d/Makefile.depend | 20 + usr.sbin/rpc.lockd/Makefile.depend | 26 + usr.sbin/rpc.statd/Makefile.depend | 32 + usr.sbin/rpc.umntall/Makefile.depend | 21 + usr.sbin/rpc.yppasswdd/Makefile.depend | 49 + usr.sbin/rpc.ypupdated/Makefile.depend | 30 + usr.sbin/rpc.ypxfrd/Makefile.depend | 31 + usr.sbin/rpcbind/Makefile.depend | 24 + usr.sbin/rrenumd/Makefile.depend | 28 + usr.sbin/rtadvctl/Makefile.depend | 20 + usr.sbin/rtadvd/Makefile.depend | 21 + usr.sbin/rtprio/Makefile.depend | 19 + usr.sbin/rtsold/Makefile.depend | 21 + usr.sbin/rwhod/Makefile.depend | 21 + usr.sbin/sa/Makefile.depend | 19 + usr.sbin/sade/Makefile.depend | 24 + usr.sbin/sendmail/Makefile.depend | 107 + usr.sbin/service/Makefile.depend | 14 + usr.sbin/services_mkdb/Makefile.depend | 20 + usr.sbin/setfib/Makefile.depend | 19 + usr.sbin/setfmac/Makefile.depend | 19 + usr.sbin/setpmac/Makefile.depend | 19 + usr.sbin/sicontrol/Makefile.depend | 19 + usr.sbin/smbmsg/Makefile.depend | 19 + usr.sbin/snapinfo/Makefile.depend | 20 + usr.sbin/spkrtest/Makefile.depend | 14 + usr.sbin/spray/Makefile.depend | 22 + usr.sbin/syslogd/Makefile.depend | 21 + usr.sbin/tcpdchk/Makefile.depend | 21 + usr.sbin/tcpdmatch/Makefile.depend | 21 + usr.sbin/tcpdrop/Makefile.depend | 19 + usr.sbin/tcpdump/tcpdump/Makefile.depend | 25 + usr.sbin/timed/timed/Makefile.depend | 23 + usr.sbin/timed/timedc/Makefile.depend | 21 + usr.sbin/traceroute/Makefile.depend | 23 + usr.sbin/traceroute6/Makefile.depend | 21 + usr.sbin/trpt/Makefile.depend | 20 + usr.sbin/tzsetup/Makefile.depend | 22 + usr.sbin/uathload/Makefile.depend | 19 + usr.sbin/ugidfw/Makefile.depend | 20 + usr.sbin/uhsoctl/Makefile.depend | 21 + usr.sbin/usbconfig/Makefile.depend | 20 + usr.sbin/usbdump/Makefile.depend | 19 + usr.sbin/utx/Makefile.depend | 19 + usr.sbin/vidcontrol/Makefile.depend | 19 + usr.sbin/vipw/Makefile.depend | 20 + usr.sbin/wake/Makefile.depend | 19 + usr.sbin/watch/Makefile.depend | 21 + usr.sbin/watchdogd/Makefile.depend | 21 + usr.sbin/wlandebug/Makefile.depend | 19 + usr.sbin/wlconfig/Makefile.depend | 19 + usr.sbin/wpa/hostapd/Makefile.depend | 23 + usr.sbin/wpa/hostapd_cli/Makefile.depend | 20 + usr.sbin/wpa/ndis_events/Makefile.depend | 20 + usr.sbin/wpa/wpa_cli/Makefile.depend | 23 + usr.sbin/wpa/wpa_passphrase/Makefile.depend | 20 + usr.sbin/wpa/wpa_supplicant/Makefile.depend | 23 + usr.sbin/yp_mkdb/Makefile.depend | 21 + usr.sbin/ypbind/Makefile.depend | 22 + usr.sbin/yppoll/Makefile.depend | 21 + usr.sbin/yppush/Makefile.depend | 29 + usr.sbin/ypserv/Makefile.depend | 35 + usr.sbin/ypset/Makefile.depend | 22 + usr.sbin/zic/zdump/Makefile.depend | 19 + usr.sbin/zic/zic/Makefile.depend | 19 + usr.sbin/zzz/Makefile.depend | 14 + 1291 files changed, 42661 insertions(+), 74 deletions(-) create mode 100644 bin/cat/Makefile.depend create mode 100644 bin/chflags/Makefile.depend create mode 100644 bin/chio/Makefile.depend create mode 100644 bin/chmod/Makefile.depend create mode 100644 bin/cp/Makefile.depend create mode 100644 bin/csh/Makefile.depend create mode 100644 bin/date/Makefile.depend create mode 100644 bin/dd/Makefile.depend create mode 100644 bin/df/Makefile.depend create mode 100644 bin/domainname/Makefile.depend create mode 100644 bin/echo/Makefile.depend create mode 100644 bin/ed/Makefile.depend create mode 100644 bin/expr/Makefile.depend create mode 100644 bin/getfacl/Makefile.depend create mode 100644 bin/hostname/Makefile.depend create mode 100644 bin/kenv/Makefile.depend create mode 100644 bin/kill/Makefile.depend create mode 100644 bin/ln/Makefile.depend create mode 100644 bin/ls/Makefile.depend create mode 100644 bin/mkdir/Makefile.depend create mode 100644 bin/mv/Makefile.depend create mode 100644 bin/pax/Makefile.depend create mode 100644 bin/pkill/Makefile.depend create mode 100644 bin/ps/Makefile.depend create mode 100644 bin/pwait/Makefile.depend create mode 100644 bin/pwd/Makefile.depend create mode 100644 bin/rcp/Makefile.depend create mode 100644 bin/realpath/Makefile.depend create mode 100644 bin/rm/Makefile.depend create mode 100644 bin/rmail/Makefile.depend create mode 100644 bin/rmdir/Makefile.depend create mode 100644 bin/setfacl/Makefile.depend create mode 100644 bin/sh/Makefile.depend create mode 100644 bin/sleep/Makefile.depend create mode 100644 bin/stty/Makefile.depend create mode 100644 bin/sync/Makefile.depend create mode 100644 bin/test/Makefile.depend create mode 100644 bin/uuidgen/Makefile.depend create mode 100644 cddl/lib/drti/Makefile.depend create mode 100644 cddl/lib/libavl/Makefile.depend create mode 100644 cddl/lib/libctf/Makefile.depend create mode 100644 cddl/lib/libdtrace/Makefile.depend create mode 100644 cddl/lib/libnvpair/Makefile.depend create mode 100644 cddl/lib/libumem/Makefile.depend create mode 100644 cddl/lib/libuutil/Makefile.depend create mode 100644 cddl/lib/libzfs/Makefile.depend create mode 100644 cddl/lib/libzpool/Makefile.depend create mode 100644 cddl/sbin/zfs/Makefile.depend create mode 100644 cddl/sbin/zpool/Makefile.depend create mode 100644 cddl/usr.bin/ctfconvert/Makefile.depend create mode 100644 cddl/usr.bin/ctfdump/Makefile.depend create mode 100644 cddl/usr.bin/ctfmerge/Makefile.depend create mode 100644 cddl/usr.bin/sgsmsg/Makefile.depend create mode 100644 cddl/usr.bin/zinject/Makefile.depend create mode 100644 external/bsd/bmake/usr.bin/bmake/Makefile.depend create mode 100644 external/bsd/bmake/usr.bin/bmake/Makefile.inc create mode 100644 games/bcd/Makefile.depend create mode 100644 games/caesar/Makefile.depend create mode 100644 games/factor/Makefile.depend create mode 100644 games/fortune/datfiles/Makefile.depend create mode 100644 games/fortune/fortune/Makefile.depend create mode 100644 games/fortune/strfile/Makefile.depend create mode 100644 games/fortune/unstr/Makefile.depend create mode 100644 games/grdc/Makefile.depend create mode 100644 games/morse/Makefile.depend create mode 100644 games/number/Makefile.depend create mode 100644 games/pom/Makefile.depend create mode 100644 games/ppt/Makefile.depend create mode 100644 games/primes/Makefile.depend create mode 100644 games/random/Makefile.depend create mode 100644 gnu/lib/csu/Makefile.depend create mode 100644 gnu/lib/libdialog/Makefile.depend create mode 100644 gnu/lib/libgcc/Makefile.depend create mode 100644 gnu/lib/libgcov/Makefile.depend create mode 100644 gnu/lib/libgomp/Makefile.depend create mode 100644 gnu/lib/libreadline/history/Makefile.depend create mode 100644 gnu/lib/libreadline/readline/Makefile.depend create mode 100644 gnu/lib/libregex/Makefile.depend create mode 100644 gnu/lib/libssp/Makefile.depend create mode 100644 gnu/lib/libssp/libssp_nonshared/Makefile.depend create mode 100644 gnu/lib/libstdc++/Makefile.depend create mode 100644 gnu/lib/libsupc++/Makefile.depend create mode 100644 gnu/usr.bin/binutils/addr2line/Makefile.depend create mode 100644 gnu/usr.bin/binutils/ar/Makefile.depend create mode 100644 gnu/usr.bin/binutils/as/Makefile.depend create mode 100644 gnu/usr.bin/binutils/ld/Makefile.depend create mode 100644 gnu/usr.bin/binutils/libbfd/Makefile.depend create mode 100644 gnu/usr.bin/binutils/libbinutils/Makefile.depend create mode 100644 gnu/usr.bin/binutils/libiberty/Makefile.depend create mode 100644 gnu/usr.bin/binutils/libopcodes/Makefile.depend create mode 100644 gnu/usr.bin/binutils/nm/Makefile.depend create mode 100644 gnu/usr.bin/binutils/objcopy/Makefile.depend create mode 100644 gnu/usr.bin/binutils/objdump/Makefile.depend create mode 100644 gnu/usr.bin/binutils/ranlib/Makefile.depend create mode 100644 gnu/usr.bin/binutils/readelf/Makefile.depend create mode 100644 gnu/usr.bin/binutils/size/Makefile.depend create mode 100644 gnu/usr.bin/binutils/strings/Makefile.depend create mode 100644 gnu/usr.bin/binutils/strip/Makefile.depend create mode 100644 gnu/usr.bin/cc/c++/Makefile.depend create mode 100644 gnu/usr.bin/cc/c++filt/Makefile.depend create mode 100644 gnu/usr.bin/cc/cc/Makefile.depend create mode 100644 gnu/usr.bin/cc/cc1/Makefile.depend create mode 100644 gnu/usr.bin/cc/cc1plus/Makefile.depend create mode 100644 gnu/usr.bin/cc/cc_int/Makefile.depend create mode 100644 gnu/usr.bin/cc/cc_tools/Makefile.depend create mode 100644 gnu/usr.bin/cc/cpp/Makefile.depend create mode 100644 gnu/usr.bin/cc/gcov/Makefile.depend create mode 100644 gnu/usr.bin/cc/include/Makefile.depend create mode 100644 gnu/usr.bin/cc/libcpp/Makefile.depend create mode 100644 gnu/usr.bin/cc/libdecnumber/Makefile.depend create mode 100644 gnu/usr.bin/cc/libiberty/Makefile.depend create mode 100644 gnu/usr.bin/cvs/cvs/Makefile.depend create mode 100644 gnu/usr.bin/cvs/cvsbug/Makefile.depend create mode 100644 gnu/usr.bin/cvs/lib/Makefile.depend create mode 100644 gnu/usr.bin/cvs/libdiff/Makefile.depend create mode 100644 gnu/usr.bin/dialog/Makefile.depend create mode 100644 gnu/usr.bin/diff/Makefile.depend create mode 100644 gnu/usr.bin/diff3/Makefile.depend create mode 100644 gnu/usr.bin/dtc/Makefile.depend create mode 100644 gnu/usr.bin/gdb/gdb/Makefile.depend create mode 100644 gnu/usr.bin/gdb/gdbserver/Makefile.depend create mode 100644 gnu/usr.bin/gdb/gdbtui/Makefile.depend create mode 100644 gnu/usr.bin/gdb/kgdb/Makefile.depend create mode 100644 gnu/usr.bin/gdb/libgdb/Makefile.depend create mode 100644 gnu/usr.bin/gperf/Makefile.depend create mode 100644 gnu/usr.bin/grep/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devX100-12/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devX100/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devX75-12/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devX75/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devascii/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devcp1047/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devdvi/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devhtml/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devlatin1/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devlbp/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devlj4/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devps/Makefile.depend create mode 100644 gnu/usr.bin/groff/font/devutf8/Makefile.depend create mode 100644 gnu/usr.bin/groff/man/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/devices/grops/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/devices/grotty/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/libs/libbib/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/preproc/grn/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/preproc/html/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/preproc/pic/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/preproc/refer/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/roff/groff/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/roff/grog/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/roff/nroff/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/roff/psroff/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/roff/troff/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend create mode 100644 gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend create mode 100644 gnu/usr.bin/groff/tmac/Makefile.depend create mode 100644 gnu/usr.bin/patch/Makefile.depend create mode 100644 gnu/usr.bin/rcs/ci/Makefile.depend create mode 100644 gnu/usr.bin/rcs/co/Makefile.depend create mode 100644 gnu/usr.bin/rcs/ident/Makefile.depend create mode 100644 gnu/usr.bin/rcs/lib/Makefile.depend create mode 100644 gnu/usr.bin/rcs/merge/Makefile.depend create mode 100644 gnu/usr.bin/rcs/rcs/Makefile.depend create mode 100644 gnu/usr.bin/rcs/rcsclean/Makefile.depend create mode 100644 gnu/usr.bin/rcs/rcsdiff/Makefile.depend create mode 100644 gnu/usr.bin/rcs/rcsfreeze/Makefile.depend create mode 100644 gnu/usr.bin/rcs/rcsmerge/Makefile.depend create mode 100644 gnu/usr.bin/rcs/rlog/Makefile.depend create mode 100644 gnu/usr.bin/sdiff/Makefile.depend create mode 100644 gnu/usr.bin/send-pr/Makefile.depend create mode 100644 gnu/usr.bin/sort/Makefile.depend create mode 100644 gnu/usr.bin/texinfo/info/Makefile.depend create mode 100644 gnu/usr.bin/texinfo/infokey/Makefile.depend create mode 100644 gnu/usr.bin/texinfo/install-info/Makefile.depend create mode 100644 gnu/usr.bin/texinfo/libtxi/Makefile.depend create mode 100644 gnu/usr.bin/texinfo/makeinfo/Makefile.depend create mode 100644 gnu/usr.bin/texinfo/texindex/Makefile.depend create mode 100644 include/Makefile.depend create mode 100644 include/arpa/Makefile.depend create mode 100644 include/gssapi/Makefile.depend create mode 100644 include/protocols/Makefile.depend create mode 100644 include/rpc/Makefile.depend create mode 100644 include/rpcsvc/Makefile.depend create mode 100644 include/xlocale/Makefile.depend create mode 100644 kerberos5/lib/libasn1/Makefile.depend create mode 100644 kerberos5/lib/libgssapi_krb5/Makefile.depend create mode 100644 kerberos5/lib/libgssapi_ntlm/Makefile.depend create mode 100644 kerberos5/lib/libgssapi_spnego/Makefile.depend create mode 100644 kerberos5/lib/libhdb/Makefile.depend create mode 100644 kerberos5/lib/libheimbase/Makefile.depend create mode 100644 kerberos5/lib/libheimipcc/Makefile.depend create mode 100644 kerberos5/lib/libheimipcs/Makefile.depend create mode 100644 kerberos5/lib/libheimntlm/Makefile.depend create mode 100644 kerberos5/lib/libheimsqlite/Makefile.depend create mode 100644 kerberos5/lib/libhx509/Makefile.depend create mode 100644 kerberos5/lib/libkadm5clnt/Makefile.depend create mode 100644 kerberos5/lib/libkadm5srv/Makefile.depend create mode 100644 kerberos5/lib/libkafs5/Makefile.depend create mode 100644 kerberos5/lib/libkdc/Makefile.depend create mode 100644 kerberos5/lib/libkrb5/Makefile.depend create mode 100644 kerberos5/lib/libroken/Makefile.depend create mode 100644 kerberos5/lib/libsl/Makefile.depend create mode 100644 kerberos5/lib/libvers/Makefile.depend create mode 100644 kerberos5/lib/libwind/Makefile.depend create mode 100644 kerberos5/libexec/digest-service/Makefile.depend create mode 100644 kerberos5/libexec/hprop/Makefile.depend create mode 100644 kerberos5/libexec/hpropd/Makefile.depend create mode 100644 kerberos5/libexec/ipropd-master/Makefile.depend create mode 100644 kerberos5/libexec/ipropd-slave/Makefile.depend create mode 100644 kerberos5/libexec/kadmind/Makefile.depend create mode 100644 kerberos5/libexec/kcm/Makefile.depend create mode 100644 kerberos5/libexec/kdc/Makefile.depend create mode 100644 kerberos5/libexec/kdigest/Makefile.depend create mode 100644 kerberos5/libexec/kfd/Makefile.depend create mode 100644 kerberos5/libexec/kimpersonate/Makefile.depend create mode 100644 kerberos5/libexec/kpasswdd/Makefile.depend create mode 100644 kerberos5/tools/asn1_compile/Makefile.depend create mode 100644 kerberos5/tools/make-roken/Makefile.depend create mode 100644 kerberos5/tools/slc/Makefile.depend create mode 100644 kerberos5/usr.bin/hxtool/Makefile.depend create mode 100644 kerberos5/usr.bin/kadmin/Makefile.depend create mode 100644 kerberos5/usr.bin/kcc/Makefile.depend create mode 100644 kerberos5/usr.bin/kdestroy/Makefile.depend create mode 100644 kerberos5/usr.bin/kf/Makefile.depend create mode 100644 kerberos5/usr.bin/kgetcred/Makefile.depend create mode 100644 kerberos5/usr.bin/kinit/Makefile.depend create mode 100644 kerberos5/usr.bin/kpasswd/Makefile.depend create mode 100644 kerberos5/usr.bin/krb5-config/Makefile.depend create mode 100644 kerberos5/usr.bin/ksu/Makefile.depend create mode 100644 kerberos5/usr.bin/string2key/Makefile.depend create mode 100644 kerberos5/usr.bin/verify_krb5_conf/Makefile.depend create mode 100644 kerberos5/usr.sbin/iprop-log/Makefile.depend create mode 100644 kerberos5/usr.sbin/kstash/Makefile.depend create mode 100644 kerberos5/usr.sbin/ktutil/Makefile.depend create mode 100644 lib/bind/bind9/Makefile.depend create mode 100644 lib/bind/dns/Makefile.depend create mode 100644 lib/bind/isc/Makefile.depend create mode 100644 lib/bind/isccc/Makefile.depend create mode 100644 lib/bind/isccfg/Makefile.depend create mode 100644 lib/bind/lwres/Makefile.depend create mode 100644 lib/clang/include/Makefile.depend create mode 100644 lib/clang/libclanganalysis/Makefile.depend create mode 100644 lib/clang/libclangarcmigrate/Makefile.depend create mode 100644 lib/clang/libclangast/Makefile.depend create mode 100644 lib/clang/libclangbasic/Makefile.depend create mode 100644 lib/clang/libclangcodegen/Makefile.depend create mode 100644 lib/clang/libclangdriver/Makefile.depend create mode 100644 lib/clang/libclangedit/Makefile.depend create mode 100644 lib/clang/libclangfrontend/Makefile.depend create mode 100644 lib/clang/libclangfrontendtool/Makefile.depend create mode 100644 lib/clang/libclanglex/Makefile.depend create mode 100644 lib/clang/libclangparse/Makefile.depend create mode 100644 lib/clang/libclangrewrite/Makefile.depend create mode 100644 lib/clang/libclangsema/Makefile.depend create mode 100644 lib/clang/libclangserialization/Makefile.depend create mode 100644 lib/clang/libclangstaticanalyzercheckers/Makefile.depend create mode 100644 lib/clang/libclangstaticanalyzercore/Makefile.depend create mode 100644 lib/clang/libclangstaticanalyzerfrontend/Makefile.depend create mode 100644 lib/clang/libllvmanalysis/Makefile.depend create mode 100644 lib/clang/libllvmarchive/Makefile.depend create mode 100644 lib/clang/libllvmarmasmparser/Makefile.depend create mode 100644 lib/clang/libllvmarmcodegen/Makefile.depend create mode 100644 lib/clang/libllvmarmdesc/Makefile.depend create mode 100644 lib/clang/libllvmarmdisassembler/Makefile.depend create mode 100644 lib/clang/libllvmarminfo/Makefile.depend create mode 100644 lib/clang/libllvmarminstprinter/Makefile.depend create mode 100644 lib/clang/libllvmasmparser/Makefile.depend create mode 100644 lib/clang/libllvmasmprinter/Makefile.depend create mode 100644 lib/clang/libllvmbitreader/Makefile.depend create mode 100644 lib/clang/libllvmbitwriter/Makefile.depend create mode 100644 lib/clang/libllvmcodegen/Makefile.depend create mode 100644 lib/clang/libllvmcore/Makefile.depend create mode 100644 lib/clang/libllvmdebuginfo/Makefile.depend create mode 100644 lib/clang/libllvmexecutionengine/Makefile.depend create mode 100644 lib/clang/libllvminstcombine/Makefile.depend create mode 100644 lib/clang/libllvminstrumentation/Makefile.depend create mode 100644 lib/clang/libllvminterpreter/Makefile.depend create mode 100644 lib/clang/libllvmipa/Makefile.depend create mode 100644 lib/clang/libllvmipo/Makefile.depend create mode 100644 lib/clang/libllvmjit/Makefile.depend create mode 100644 lib/clang/libllvmlinker/Makefile.depend create mode 100644 lib/clang/libllvmmc/Makefile.depend create mode 100644 lib/clang/libllvmmcdisassembler/Makefile.depend create mode 100644 lib/clang/libllvmmcjit/Makefile.depend create mode 100644 lib/clang/libllvmmcparser/Makefile.depend create mode 100644 lib/clang/libllvmmipsasmparser/Makefile.depend create mode 100644 lib/clang/libllvmmipscodegen/Makefile.depend create mode 100644 lib/clang/libllvmmipsdesc/Makefile.depend create mode 100644 lib/clang/libllvmmipsinfo/Makefile.depend create mode 100644 lib/clang/libllvmmipsinstprinter/Makefile.depend create mode 100644 lib/clang/libllvmobject/Makefile.depend create mode 100644 lib/clang/libllvmpowerpccodegen/Makefile.depend create mode 100644 lib/clang/libllvmpowerpcdesc/Makefile.depend create mode 100644 lib/clang/libllvmpowerpcinfo/Makefile.depend create mode 100644 lib/clang/libllvmpowerpcinstprinter/Makefile.depend create mode 100644 lib/clang/libllvmruntimedyld/Makefile.depend create mode 100644 lib/clang/libllvmscalaropts/Makefile.depend create mode 100644 lib/clang/libllvmselectiondag/Makefile.depend create mode 100644 lib/clang/libllvmsupport/Makefile.depend create mode 100644 lib/clang/libllvmtablegen/Makefile.depend create mode 100644 lib/clang/libllvmtarget/Makefile.depend create mode 100644 lib/clang/libllvmtransformutils/Makefile.depend create mode 100644 lib/clang/libllvmvectorize/Makefile.depend create mode 100644 lib/clang/libllvmx86asmparser/Makefile.depend create mode 100644 lib/clang/libllvmx86codegen/Makefile.depend create mode 100644 lib/clang/libllvmx86desc/Makefile.depend create mode 100644 lib/clang/libllvmx86disassembler/Makefile.depend create mode 100644 lib/clang/libllvmx86info/Makefile.depend create mode 100644 lib/clang/libllvmx86instprinter/Makefile.depend create mode 100644 lib/clang/libllvmx86utils/Makefile.depend create mode 100644 lib/csu/i386-elf/Makefile.depend create mode 100644 lib/libalias/libalias/Makefile.depend create mode 100644 lib/libalias/modules/cuseeme/Makefile.depend create mode 100644 lib/libalias/modules/dummy/Makefile.depend create mode 100644 lib/libalias/modules/ftp/Makefile.depend create mode 100644 lib/libalias/modules/irc/Makefile.depend create mode 100644 lib/libalias/modules/nbt/Makefile.depend create mode 100644 lib/libalias/modules/pptp/Makefile.depend create mode 100644 lib/libalias/modules/skinny/Makefile.depend create mode 100644 lib/libalias/modules/smedia/Makefile.depend create mode 100644 lib/libarchive/Makefile.depend create mode 100644 lib/libauditd/Makefile.depend create mode 100644 lib/libbegemot/Makefile.depend create mode 100644 lib/libblocksruntime/Makefile.depend create mode 100644 lib/libbluetooth/Makefile.depend create mode 100644 lib/libbsm/Makefile.depend create mode 100644 lib/libbsnmp/libbsnmp/Makefile.depend create mode 100644 lib/libbz2/Makefile.depend create mode 100644 lib/libc/Makefile.depend create mode 100644 lib/libcalendar/Makefile.depend create mode 100644 lib/libcam/Makefile.depend create mode 100644 lib/libcom_err/Makefile.depend create mode 100644 lib/libcompat/Makefile.depend create mode 100644 lib/libcompiler_rt/Makefile.depend create mode 100644 lib/libcrypt/Makefile.depend create mode 100644 lib/libdevinfo/Makefile.depend create mode 100644 lib/libdevstat/Makefile.depend create mode 100644 lib/libdisk/Makefile.depend create mode 100644 lib/libdwarf/Makefile.depend create mode 100644 lib/libedit/Makefile.depend create mode 100644 lib/libedit/edit/readline/Makefile.depend create mode 100644 lib/libelf/Makefile.depend create mode 100644 lib/libexpat/Makefile.depend create mode 100644 lib/libfetch/Makefile.depend create mode 100644 lib/libgeom/Makefile.depend create mode 100644 lib/libgpib/Makefile.depend create mode 100644 lib/libgssapi/Makefile.depend create mode 100644 lib/libipsec/Makefile.depend create mode 100644 lib/libipx/Makefile.depend create mode 100644 lib/libjail/Makefile.depend create mode 100644 lib/libkiconv/Makefile.depend create mode 100644 lib/libkvm/Makefile.depend create mode 100644 lib/liblzma/Makefile.depend create mode 100644 lib/libmagic/Makefile.depend create mode 100644 lib/libmd/Makefile.depend create mode 100644 lib/libmemstat/Makefile.depend create mode 100644 lib/libmilter/Makefile.depend create mode 100644 lib/libmp/Makefile.depend create mode 100644 lib/libncp/Makefile.depend create mode 100644 lib/libnetgraph/Makefile.depend create mode 100644 lib/libngatm/Makefile.depend create mode 100644 lib/libopie/Makefile.depend create mode 100644 lib/libpam/libpam/Makefile.depend create mode 100644 lib/libpam/modules/pam_chroot/Makefile.depend create mode 100644 lib/libpam/modules/pam_deny/Makefile.depend create mode 100644 lib/libpam/modules/pam_echo/Makefile.depend create mode 100644 lib/libpam/modules/pam_exec/Makefile.depend create mode 100644 lib/libpam/modules/pam_ftpusers/Makefile.depend create mode 100644 lib/libpam/modules/pam_group/Makefile.depend create mode 100644 lib/libpam/modules/pam_guest/Makefile.depend create mode 100644 lib/libpam/modules/pam_krb5/Makefile.depend create mode 100644 lib/libpam/modules/pam_ksu/Makefile.depend create mode 100644 lib/libpam/modules/pam_lastlog/Makefile.depend create mode 100644 lib/libpam/modules/pam_login_access/Makefile.depend create mode 100644 lib/libpam/modules/pam_nologin/Makefile.depend create mode 100644 lib/libpam/modules/pam_opie/Makefile.depend create mode 100644 lib/libpam/modules/pam_opieaccess/Makefile.depend create mode 100644 lib/libpam/modules/pam_passwdqc/Makefile.depend create mode 100644 lib/libpam/modules/pam_permit/Makefile.depend create mode 100644 lib/libpam/modules/pam_radius/Makefile.depend create mode 100644 lib/libpam/modules/pam_rhosts/Makefile.depend create mode 100644 lib/libpam/modules/pam_rootok/Makefile.depend create mode 100644 lib/libpam/modules/pam_securetty/Makefile.depend create mode 100644 lib/libpam/modules/pam_self/Makefile.depend create mode 100644 lib/libpam/modules/pam_ssh/Makefile.depend create mode 100644 lib/libpam/modules/pam_tacplus/Makefile.depend create mode 100644 lib/libpam/modules/pam_unix/Makefile.depend create mode 100644 lib/libpcap/Makefile.depend create mode 100644 lib/libpmc/Makefile.depend create mode 100644 lib/libproc/Makefile.depend create mode 100644 lib/libprocstat/Makefile.depend create mode 100644 lib/libprocstat/zfs/Makefile.depend create mode 100644 lib/libradius/Makefile.depend create mode 100644 lib/librpcsec_gss/Makefile.depend create mode 100644 lib/librpcsvc/Makefile.depend create mode 100644 lib/librt/Makefile.depend create mode 100644 lib/librtld_db/Makefile.depend create mode 100644 lib/libsbuf/Makefile.depend create mode 100644 lib/libsdp/Makefile.depend create mode 100644 lib/libsm/Makefile.depend create mode 100644 lib/libsmb/Makefile.depend create mode 100644 lib/libsmdb/Makefile.depend create mode 100644 lib/libsmutil/Makefile.depend create mode 100644 lib/libstand/Makefile.depend create mode 100644 lib/libstdbuf/Makefile.depend create mode 100644 lib/libstdthreads/Makefile.depend create mode 100644 lib/libtacplus/Makefile.depend create mode 100644 lib/libtelnet/Makefile.depend create mode 100644 lib/libthr/Makefile.depend create mode 100644 lib/libthread_db/Makefile.depend create mode 100644 lib/libufs/Makefile.depend create mode 100644 lib/libugidfw/Makefile.depend create mode 100644 lib/libulog/Makefile.depend create mode 100644 lib/libusb/Makefile.depend create mode 100644 lib/libusbhid/Makefile.depend create mode 100644 lib/libutil/Makefile.depend create mode 100644 lib/libvgl/Makefile.depend create mode 100644 lib/libwrap/Makefile.depend create mode 100644 lib/liby/Makefile.depend create mode 100644 lib/libypclnt/Makefile.depend create mode 100644 lib/libz/Makefile.depend create mode 100644 lib/msun/Makefile.depend create mode 100644 lib/ncurses/form/Makefile.depend create mode 100644 lib/ncurses/formw/Makefile.depend create mode 100644 lib/ncurses/menu/Makefile.depend create mode 100644 lib/ncurses/menuw/Makefile.depend create mode 100644 lib/ncurses/ncurses/Makefile.depend create mode 100644 lib/ncurses/ncursesw/Makefile.depend create mode 100644 lib/ncurses/panel/Makefile.depend create mode 100644 lib/ncurses/panelw/Makefile.depend create mode 100644 libexec/atrun/Makefile.depend create mode 100644 libexec/bootpd/Makefile.depend create mode 100644 libexec/bootpd/bootpgw/Makefile.depend create mode 100644 libexec/bootpd/tools/bootpef/Makefile.depend create mode 100644 libexec/bootpd/tools/bootptest/Makefile.depend create mode 100644 libexec/comsat/Makefile.depend create mode 100644 libexec/fingerd/Makefile.depend create mode 100644 libexec/ftpd/Makefile.depend create mode 100644 libexec/getty/Makefile.depend create mode 100644 libexec/mail.local/Makefile.depend create mode 100644 libexec/mknetid/Makefile.depend create mode 100644 libexec/pppoed/Makefile.depend create mode 100644 libexec/rbootd/Makefile.depend create mode 100644 libexec/revnetgroup/Makefile.depend create mode 100644 libexec/rlogind/Makefile.depend create mode 100644 libexec/rpc.rquotad/Makefile.depend create mode 100644 libexec/rpc.rstatd/Makefile.depend create mode 100644 libexec/rpc.rusersd/Makefile.depend create mode 100644 libexec/rpc.rwalld/Makefile.depend create mode 100644 libexec/rpc.sprayd/Makefile.depend create mode 100644 libexec/rshd/Makefile.depend create mode 100644 libexec/rtld-elf/Makefile.depend create mode 100644 libexec/smrsh/Makefile.depend create mode 100644 libexec/talkd/Makefile.depend create mode 100644 libexec/tcpd/Makefile.depend create mode 100644 libexec/telnetd/Makefile.depend create mode 100644 libexec/tftp-proxy/Makefile.depend create mode 100644 libexec/tftpd/Makefile.depend create mode 100644 libexec/ulog-helper/Makefile.depend create mode 100644 libexec/ypxfr/Makefile.depend create mode 100644 sbin/adjkerntz/Makefile.depend create mode 100644 sbin/atacontrol/Makefile.depend create mode 100644 sbin/atm/atmconfig/Makefile.depend create mode 100644 sbin/badsect/Makefile.depend create mode 100644 sbin/bsdlabel/Makefile.depend create mode 100644 sbin/camcontrol/Makefile.depend create mode 100644 sbin/ccdconfig/Makefile.depend create mode 100644 sbin/clri/Makefile.depend create mode 100644 sbin/comcontrol/Makefile.depend create mode 100644 sbin/conscontrol/Makefile.depend create mode 100644 sbin/ddb/Makefile.depend create mode 100644 sbin/devd/Makefile.depend create mode 100644 sbin/devfs/Makefile.depend create mode 100644 sbin/dhclient/Makefile.depend create mode 100644 sbin/dmesg/Makefile.depend create mode 100644 sbin/dump/Makefile.depend create mode 100644 sbin/dumpfs/Makefile.depend create mode 100644 sbin/dumpon/Makefile.depend create mode 100644 sbin/etherswitchcfg/Makefile.depend create mode 100644 sbin/fdisk/Makefile.depend create mode 100644 sbin/fdisk_pc98/Makefile.depend create mode 100644 sbin/ffsinfo/Makefile.depend create mode 100644 sbin/fsck/Makefile.depend create mode 100644 sbin/fsck_ffs/Makefile.depend create mode 100644 sbin/fsck_msdosfs/Makefile.depend create mode 100644 sbin/fsdb/Makefile.depend create mode 100644 sbin/fsirand/Makefile.depend create mode 100644 sbin/gbde/Makefile.depend create mode 100644 sbin/geom/class/cache/Makefile.depend create mode 100644 sbin/geom/class/concat/Makefile.depend create mode 100644 sbin/geom/class/eli/Makefile.depend create mode 100644 sbin/geom/class/journal/Makefile.depend create mode 100644 sbin/geom/class/label/Makefile.depend create mode 100644 sbin/geom/class/mirror/Makefile.depend create mode 100644 sbin/geom/class/mountver/Makefile.depend create mode 100644 sbin/geom/class/multipath/Makefile.depend create mode 100644 sbin/geom/class/nop/Makefile.depend create mode 100644 sbin/geom/class/part/Makefile.depend create mode 100644 sbin/geom/class/raid/Makefile.depend create mode 100644 sbin/geom/class/raid3/Makefile.depend create mode 100644 sbin/geom/class/sched/Makefile.depend create mode 100644 sbin/geom/class/shsec/Makefile.depend create mode 100644 sbin/geom/class/stripe/Makefile.depend create mode 100644 sbin/geom/class/virstor/Makefile.depend create mode 100644 sbin/geom/core/Makefile.depend create mode 100644 sbin/ggate/ggatec/Makefile.depend create mode 100644 sbin/ggate/ggated/Makefile.depend create mode 100644 sbin/ggate/ggatel/Makefile.depend create mode 100644 sbin/growfs/Makefile.depend create mode 100644 sbin/gvinum/Makefile.depend create mode 100644 sbin/hastctl/Makefile.depend create mode 100644 sbin/hastd/Makefile.depend create mode 100644 sbin/ifconfig/Makefile.depend create mode 100644 sbin/init/Makefile.depend create mode 100644 sbin/ipf/ipf/Makefile.depend create mode 100644 sbin/ipf/ipfs/Makefile.depend create mode 100644 sbin/ipf/ipfstat/Makefile.depend create mode 100644 sbin/ipf/ipftest/Makefile.depend create mode 100644 sbin/ipf/ipmon/Makefile.depend create mode 100644 sbin/ipf/ipnat/Makefile.depend create mode 100644 sbin/ipf/ippool/Makefile.depend create mode 100644 sbin/ipf/ipresend/Makefile.depend create mode 100644 sbin/ipf/libipf/Makefile.depend create mode 100644 sbin/ipfw/Makefile.depend create mode 100644 sbin/iscontrol/Makefile.depend create mode 100644 sbin/kldconfig/Makefile.depend create mode 100644 sbin/kldload/Makefile.depend create mode 100644 sbin/kldstat/Makefile.depend create mode 100644 sbin/kldunload/Makefile.depend create mode 100644 sbin/ldconfig/Makefile.depend create mode 100644 sbin/mca/Makefile.depend create mode 100644 sbin/md5/Makefile.depend create mode 100644 sbin/mdconfig/Makefile.depend create mode 100644 sbin/mdmfs/Makefile.depend create mode 100644 sbin/mknod/Makefile.depend create mode 100644 sbin/mksnap_ffs/Makefile.depend create mode 100644 sbin/mount/Makefile.depend create mode 100644 sbin/mount_cd9660/Makefile.depend create mode 100644 sbin/mount_ext2fs/Makefile.depend create mode 100644 sbin/mount_msdosfs/Makefile.depend create mode 100644 sbin/mount_nfs/Makefile.depend create mode 100644 sbin/mount_ntfs/Makefile.depend create mode 100644 sbin/mount_nullfs/Makefile.depend create mode 100644 sbin/mount_reiserfs/Makefile.depend create mode 100644 sbin/mount_std/Makefile.depend create mode 100644 sbin/mount_udf/Makefile.depend create mode 100644 sbin/mount_unionfs/Makefile.depend create mode 100644 sbin/natd/Makefile.depend create mode 100644 sbin/newfs/Makefile.depend create mode 100644 sbin/newfs_msdos/Makefile.depend create mode 100644 sbin/nfsiod/Makefile.depend create mode 100644 sbin/nos-tun/Makefile.depend create mode 100644 sbin/pfctl/Makefile.depend create mode 100644 sbin/pflogd/Makefile.depend create mode 100644 sbin/ping/Makefile.depend create mode 100644 sbin/ping6/Makefile.depend create mode 100644 sbin/quotacheck/Makefile.depend create mode 100644 sbin/rcorder/Makefile.depend create mode 100644 sbin/reboot/Makefile.depend create mode 100644 sbin/recoverdisk/Makefile.depend create mode 100644 sbin/resolvconf/Makefile.depend create mode 100644 sbin/restore/Makefile.depend create mode 100644 sbin/route/Makefile.depend create mode 100644 sbin/routed/Makefile.depend create mode 100644 sbin/routed/rtquery/Makefile.depend create mode 100644 sbin/rtsol/Makefile.depend create mode 100644 sbin/savecore/Makefile.depend create mode 100644 sbin/sconfig/Makefile.depend create mode 100644 sbin/setkey/Makefile.depend create mode 100644 sbin/shutdown/Makefile.depend create mode 100644 sbin/spppcontrol/Makefile.depend create mode 100644 sbin/sunlabel/Makefile.depend create mode 100644 sbin/swapon/Makefile.depend create mode 100644 sbin/sysctl/Makefile.depend create mode 100644 sbin/tunefs/Makefile.depend create mode 100644 sbin/umount/Makefile.depend create mode 100644 secure/lib/libcrypto/Makefile.depend create mode 100644 secure/lib/libcrypto/engines/lib4758cca/Makefile.depend create mode 100644 secure/lib/libcrypto/engines/libaep/Makefile.depend create mode 100644 secure/lib/libcrypto/engines/libatalla/Makefile.depend create mode 100644 secure/lib/libcrypto/engines/libchil/Makefile.depend create mode 100644 secure/lib/libcrypto/engines/libcswift/Makefile.depend create mode 100644 secure/lib/libcrypto/engines/libnuron/Makefile.depend create mode 100644 secure/lib/libcrypto/engines/libsureware/Makefile.depend create mode 100644 secure/lib/libcrypto/engines/libubsec/Makefile.depend create mode 100644 secure/lib/libssh/Makefile.depend create mode 100644 secure/lib/libssl/Makefile.depend create mode 100644 secure/libexec/sftp-server/Makefile.depend create mode 100644 secure/libexec/ssh-keysign/Makefile.depend create mode 100644 secure/libexec/ssh-pkcs11-helper/Makefile.depend create mode 100644 secure/usr.bin/bdes/Makefile.depend create mode 100644 secure/usr.bin/openssl/Makefile.depend create mode 100644 secure/usr.bin/scp/Makefile.depend create mode 100644 secure/usr.bin/sftp/Makefile.depend create mode 100644 secure/usr.bin/ssh-add/Makefile.depend create mode 100644 secure/usr.bin/ssh-agent/Makefile.depend create mode 100644 secure/usr.bin/ssh-keygen/Makefile.depend create mode 100644 secure/usr.bin/ssh-keyscan/Makefile.depend create mode 100644 secure/usr.bin/ssh/Makefile.depend create mode 100644 secure/usr.sbin/sshd/Makefile.depend create mode 100644 share/colldef/Makefile.depend create mode 100644 share/dict/Makefile.depend create mode 100644 share/doc/IPv6/Makefile.depend create mode 100644 share/doc/bind9/Makefile.depend create mode 100644 share/doc/legal/intel_ipw/Makefile.depend create mode 100644 share/doc/legal/intel_iwi/Makefile.depend create mode 100644 share/doc/legal/intel_iwn/Makefile.depend create mode 100644 share/doc/legal/intel_wpi/Makefile.depend create mode 100644 share/doc/llvm/Makefile.depend create mode 100644 share/doc/llvm/clang/Makefile.depend create mode 100644 share/examples/libvgl/Makefile.depend create mode 100644 share/i18n/csmapper/APPLE/Makefile.depend create mode 100644 share/i18n/csmapper/AST/Makefile.depend create mode 100644 share/i18n/csmapper/BIG5/Makefile.depend create mode 100644 share/i18n/csmapper/CNS/Makefile.depend create mode 100644 share/i18n/csmapper/CP/Makefile.depend create mode 100644 share/i18n/csmapper/EBCDIC/Makefile.depend create mode 100644 share/i18n/csmapper/GB/Makefile.depend create mode 100644 share/i18n/csmapper/GEORGIAN/Makefile.depend create mode 100644 share/i18n/csmapper/ISO-8859/Makefile.depend create mode 100644 share/i18n/csmapper/ISO646/Makefile.depend create mode 100644 share/i18n/csmapper/JIS/Makefile.depend create mode 100644 share/i18n/csmapper/KAZAKH/Makefile.depend create mode 100644 share/i18n/csmapper/KOI/Makefile.depend create mode 100644 share/i18n/csmapper/KS/Makefile.depend create mode 100644 share/i18n/csmapper/MISC/Makefile.depend create mode 100644 share/i18n/csmapper/TCVN/Makefile.depend create mode 100644 share/man/man1/Makefile.depend create mode 100644 share/man/man3/Makefile.depend create mode 100644 share/man/man4/Makefile.depend create mode 100644 share/man/man4/man4.arm/Makefile.depend create mode 100644 share/man/man4/man4.i386/Makefile.depend create mode 100644 share/man/man4/man4.powerpc/Makefile.depend create mode 100644 share/man/man4/man4.sparc64/Makefile.depend create mode 100644 share/man/man5/Makefile.depend create mode 100644 share/man/man6/Makefile.depend create mode 100644 share/man/man7/Makefile.depend create mode 100644 share/man/man8/Makefile.depend create mode 100644 share/man/man9/Makefile.depend create mode 100644 share/me/Makefile.depend create mode 100644 share/misc/Makefile.depend create mode 100644 share/mk/Makefile.depend create mode 100644 share/mk/auto.obj.mk create mode 100644 share/mk/dirdeps.mk create mode 100644 share/mk/gendirdeps.mk create mode 100644 share/mk/host-target.mk create mode 100644 share/mk/install-new.mk create mode 100644 share/mk/local.autodep.mk create mode 100644 share/mk/local.dirdeps.mk create mode 100644 share/mk/local.gendirdeps.mk create mode 100644 share/mk/local.init.mk create mode 100644 share/mk/local.sys.mk create mode 100644 share/mk/meta.autodep.mk create mode 100644 share/mk/meta.stage.mk create mode 100644 share/mk/meta.subdir.mk create mode 100644 share/mk/meta.sys.mk create mode 100755 share/mk/meta2deps.py create mode 100755 share/mk/meta2deps.sh create mode 100644 share/mk/sys.dependfile.mk create mode 100644 share/mklocale/Makefile.depend create mode 100644 share/monetdef/Makefile.depend create mode 100644 share/msgdef/Makefile.depend create mode 100644 share/numericdef/Makefile.depend create mode 100644 share/security/Makefile.depend create mode 100644 share/skel/Makefile.depend create mode 100644 share/snmp/mibs/Makefile.depend create mode 100644 share/syscons/fonts/Makefile.depend create mode 100644 share/syscons/keymaps/Makefile.depend create mode 100644 share/syscons/scrnmaps/Makefile.depend create mode 100644 share/tabset/Makefile.depend create mode 100644 share/termcap/Makefile.depend create mode 100644 share/timedef/Makefile.depend create mode 100644 share/zoneinfo/Makefile.depend create mode 100644 sys/boot/ficl/Makefile.depend create mode 100644 sys/boot/i386/boot2/Makefile.depend create mode 100644 sys/boot/i386/loader/Makefile.depend create mode 100644 sys/boot/i386/zfsloader/Makefile.depend create mode 100644 usr.bin/apply/Makefile.depend create mode 100644 usr.bin/ar/Makefile.depend create mode 100644 usr.bin/asa/Makefile.depend create mode 100644 usr.bin/at/Makefile.depend create mode 100644 usr.bin/atm/sscop/Makefile.depend create mode 100644 usr.bin/awk/Makefile.depend create mode 100644 usr.bin/banner/Makefile.depend create mode 100644 usr.bin/basename/Makefile.depend create mode 100644 usr.bin/bc/Makefile.depend create mode 100644 usr.bin/biff/Makefile.depend create mode 100644 usr.bin/bluetooth/bthost/Makefile.depend create mode 100644 usr.bin/bluetooth/btsockstat/Makefile.depend create mode 100644 usr.bin/bluetooth/rfcomm_sppd/Makefile.depend create mode 100644 usr.bin/brandelf/Makefile.depend create mode 100644 usr.bin/bsdiff/bsdiff/Makefile.depend create mode 100644 usr.bin/bsdiff/bspatch/Makefile.depend create mode 100644 usr.bin/bzip2/Makefile.depend create mode 100644 usr.bin/bzip2recover/Makefile.depend create mode 100644 usr.bin/c89/Makefile.depend create mode 100644 usr.bin/c99/Makefile.depend create mode 100644 usr.bin/calendar/Makefile.depend create mode 100644 usr.bin/cap_mkdb/Makefile.depend create mode 100644 usr.bin/catman/Makefile.depend create mode 100644 usr.bin/chat/Makefile.depend create mode 100644 usr.bin/checknr/Makefile.depend create mode 100644 usr.bin/chkey/Makefile.depend create mode 100644 usr.bin/chpass/Makefile.depend create mode 100644 usr.bin/cksum/Makefile.depend create mode 100644 usr.bin/clang/clang-tblgen/Makefile.depend create mode 100644 usr.bin/clang/clang/Makefile.depend create mode 100644 usr.bin/clang/tblgen/Makefile.depend create mode 100644 usr.bin/cmp/Makefile.depend create mode 100644 usr.bin/col/Makefile.depend create mode 100644 usr.bin/colcrt/Makefile.depend create mode 100644 usr.bin/colldef/Makefile.depend create mode 100644 usr.bin/colrm/Makefile.depend create mode 100644 usr.bin/column/Makefile.depend create mode 100644 usr.bin/comm/Makefile.depend create mode 100644 usr.bin/compile_et/Makefile.depend create mode 100644 usr.bin/compress/Makefile.depend create mode 100644 usr.bin/cpio/Makefile.depend create mode 100644 usr.bin/cpuset/Makefile.depend create mode 100644 usr.bin/csplit/Makefile.depend create mode 100644 usr.bin/csup/Makefile.depend create mode 100644 usr.bin/ctags/Makefile.depend create mode 100644 usr.bin/ctlstat/Makefile.depend create mode 100644 usr.bin/cut/Makefile.depend create mode 100644 usr.bin/dc/Makefile.depend create mode 100644 usr.bin/dig/Makefile.depend create mode 100644 usr.bin/dirname/Makefile.depend create mode 100644 usr.bin/du/Makefile.depend create mode 100644 usr.bin/ee/Makefile.depend create mode 100644 usr.bin/elf2aout/Makefile.depend create mode 100644 usr.bin/elfdump/Makefile.depend create mode 100644 usr.bin/enigma/Makefile.depend create mode 100644 usr.bin/env/Makefile.depend create mode 100644 usr.bin/expand/Makefile.depend create mode 100644 usr.bin/false/Makefile.depend create mode 100644 usr.bin/fetch/Makefile.depend create mode 100644 usr.bin/file/Makefile.depend create mode 100644 usr.bin/file2c/Makefile.depend create mode 100644 usr.bin/find/Makefile.depend create mode 100644 usr.bin/finger/Makefile.depend create mode 100644 usr.bin/fmt/Makefile.depend create mode 100644 usr.bin/fold/Makefile.depend create mode 100644 usr.bin/from/Makefile.depend create mode 100644 usr.bin/fstat/Makefile.depend create mode 100644 usr.bin/fsync/Makefile.depend create mode 100644 usr.bin/ftp/Makefile.depend create mode 100644 usr.bin/gcore/Makefile.depend create mode 100644 usr.bin/gencat/Makefile.depend create mode 100644 usr.bin/getconf/Makefile.depend create mode 100644 usr.bin/getent/Makefile.depend create mode 100644 usr.bin/getopt/Makefile.depend create mode 100644 usr.bin/gprof/Makefile.depend create mode 100644 usr.bin/grep/Makefile.depend create mode 100644 usr.bin/gzip/Makefile.depend create mode 100644 usr.bin/head/Makefile.depend create mode 100644 usr.bin/hexdump/Makefile.depend create mode 100644 usr.bin/host/Makefile.depend create mode 100644 usr.bin/id/Makefile.depend create mode 100644 usr.bin/indent/Makefile.depend create mode 100644 usr.bin/ipcrm/Makefile.depend create mode 100644 usr.bin/ipcs/Makefile.depend create mode 100644 usr.bin/join/Makefile.depend create mode 100644 usr.bin/jot/Makefile.depend create mode 100644 usr.bin/kdump/Makefile.depend create mode 100644 usr.bin/keylogin/Makefile.depend create mode 100644 usr.bin/keylogout/Makefile.depend create mode 100644 usr.bin/killall/Makefile.depend create mode 100644 usr.bin/ktrace/Makefile.depend create mode 100644 usr.bin/ktrdump/Makefile.depend create mode 100644 usr.bin/lam/Makefile.depend create mode 100644 usr.bin/last/Makefile.depend create mode 100644 usr.bin/lastcomm/Makefile.depend create mode 100644 usr.bin/ldd/Makefile.depend create mode 100644 usr.bin/leave/Makefile.depend create mode 100644 usr.bin/less/Makefile.depend create mode 100644 usr.bin/lessecho/Makefile.depend create mode 100644 usr.bin/lesskey/Makefile.depend create mode 100644 usr.bin/lex/Makefile.depend create mode 100644 usr.bin/lex/lib/Makefile.depend create mode 100644 usr.bin/limits/Makefile.depend create mode 100644 usr.bin/locale/Makefile.depend create mode 100644 usr.bin/locate/bigram/Makefile.depend create mode 100644 usr.bin/locate/code/Makefile.depend create mode 100644 usr.bin/locate/locate/Makefile.depend create mode 100644 usr.bin/lock/Makefile.depend create mode 100644 usr.bin/lockf/Makefile.depend create mode 100644 usr.bin/logger/Makefile.depend create mode 100644 usr.bin/login/Makefile.depend create mode 100644 usr.bin/logins/Makefile.depend create mode 100644 usr.bin/logname/Makefile.depend create mode 100644 usr.bin/look/Makefile.depend create mode 100644 usr.bin/lorder/Makefile.depend create mode 100644 usr.bin/lsvfs/Makefile.depend create mode 100644 usr.bin/lzmainfo/Makefile.depend create mode 100644 usr.bin/m4/Makefile.depend create mode 100644 usr.bin/mail/Makefile.depend create mode 100644 usr.bin/make/Makefile.depend create mode 100644 usr.bin/makewhatis/Makefile.depend create mode 100644 usr.bin/man/Makefile.depend create mode 100644 usr.bin/mesg/Makefile.depend create mode 100644 usr.bin/minigzip/Makefile.depend create mode 100644 usr.bin/ministat/Makefile.depend create mode 100644 usr.bin/mkcsmapper_static/Makefile.depend create mode 100644 usr.bin/mkdep/Makefile.depend create mode 100644 usr.bin/mkfifo/Makefile.depend create mode 100644 usr.bin/mklocale/Makefile.depend create mode 100644 usr.bin/mkstr/Makefile.depend create mode 100644 usr.bin/mktemp/Makefile.depend create mode 100644 usr.bin/mkulzma/Makefile.depend create mode 100644 usr.bin/mkuzip/Makefile.depend create mode 100644 usr.bin/msgs/Makefile.depend create mode 100644 usr.bin/mt/Makefile.depend create mode 100644 usr.bin/nc/Makefile.depend create mode 100644 usr.bin/ncal/Makefile.depend create mode 100644 usr.bin/ncplist/Makefile.depend create mode 100644 usr.bin/ncplogin/Makefile.depend create mode 100644 usr.bin/netstat/Makefile.depend create mode 100644 usr.bin/newgrp/Makefile.depend create mode 100644 usr.bin/newkey/Makefile.depend create mode 100644 usr.bin/nfsstat/Makefile.depend create mode 100644 usr.bin/nice/Makefile.depend create mode 100644 usr.bin/nl/Makefile.depend create mode 100644 usr.bin/nohup/Makefile.depend create mode 100644 usr.bin/nslookup/Makefile.depend create mode 100644 usr.bin/nsupdate/Makefile.depend create mode 100644 usr.bin/opieinfo/Makefile.depend create mode 100644 usr.bin/opiekey/Makefile.depend create mode 100644 usr.bin/opiepasswd/Makefile.depend create mode 100644 usr.bin/pagesize/Makefile.depend create mode 100644 usr.bin/pamtest/Makefile.depend create mode 100644 usr.bin/passwd/Makefile.depend create mode 100644 usr.bin/paste/Makefile.depend create mode 100644 usr.bin/pathchk/Makefile.depend create mode 100644 usr.bin/perror/Makefile.depend create mode 100644 usr.bin/pr/Makefile.depend create mode 100644 usr.bin/printenv/Makefile.depend create mode 100644 usr.bin/printf/Makefile.depend create mode 100644 usr.bin/procstat/Makefile.depend create mode 100644 usr.bin/quota/Makefile.depend create mode 100644 usr.bin/rctl/Makefile.depend create mode 100644 usr.bin/renice/Makefile.depend create mode 100644 usr.bin/rev/Makefile.depend create mode 100644 usr.bin/revoke/Makefile.depend create mode 100644 usr.bin/rlogin/Makefile.depend create mode 100644 usr.bin/rpcgen/Makefile.depend create mode 100644 usr.bin/rpcinfo/Makefile.depend create mode 100644 usr.bin/rs/Makefile.depend create mode 100644 usr.bin/rsh/Makefile.depend create mode 100644 usr.bin/rup/Makefile.depend create mode 100644 usr.bin/ruptime/Makefile.depend create mode 100644 usr.bin/rusers/Makefile.depend create mode 100644 usr.bin/rwall/Makefile.depend create mode 100644 usr.bin/rwho/Makefile.depend create mode 100644 usr.bin/script/Makefile.depend create mode 100644 usr.bin/sed/Makefile.depend create mode 100644 usr.bin/seq/Makefile.depend create mode 100644 usr.bin/setchannel/Makefile.depend create mode 100644 usr.bin/shar/Makefile.depend create mode 100644 usr.bin/showmount/Makefile.depend create mode 100644 usr.bin/smbutil/Makefile.depend create mode 100644 usr.bin/sockstat/Makefile.depend create mode 100644 usr.bin/sort/Makefile.depend create mode 100644 usr.bin/split/Makefile.depend create mode 100644 usr.bin/stat/Makefile.depend create mode 100644 usr.bin/stdbuf/Makefile.depend create mode 100644 usr.bin/su/Makefile.depend create mode 100644 usr.bin/systat/Makefile.depend create mode 100644 usr.bin/tabs/Makefile.depend create mode 100644 usr.bin/tail/Makefile.depend create mode 100644 usr.bin/talk/Makefile.depend create mode 100644 usr.bin/tar/Makefile.depend create mode 100644 usr.bin/tcopy/Makefile.depend create mode 100644 usr.bin/tee/Makefile.depend create mode 100644 usr.bin/telnet/Makefile.depend create mode 100644 usr.bin/tftp/Makefile.depend create mode 100644 usr.bin/time/Makefile.depend create mode 100644 usr.bin/tip/tip/Makefile.depend create mode 100644 usr.bin/top/Makefile.depend create mode 100644 usr.bin/touch/Makefile.depend create mode 100644 usr.bin/tput/Makefile.depend create mode 100644 usr.bin/tr/Makefile.depend create mode 100644 usr.bin/true/Makefile.depend create mode 100644 usr.bin/truncate/Makefile.depend create mode 100644 usr.bin/truss/Makefile.depend create mode 100644 usr.bin/tset/Makefile.depend create mode 100644 usr.bin/tsort/Makefile.depend create mode 100644 usr.bin/tty/Makefile.depend create mode 100644 usr.bin/ul/Makefile.depend create mode 100644 usr.bin/uname/Makefile.depend create mode 100644 usr.bin/unexpand/Makefile.depend create mode 100644 usr.bin/unifdef/Makefile.depend create mode 100644 usr.bin/uniq/Makefile.depend create mode 100644 usr.bin/units/Makefile.depend create mode 100644 usr.bin/unvis/Makefile.depend create mode 100644 usr.bin/unzip/Makefile.depend create mode 100644 usr.bin/usbhidaction/Makefile.depend create mode 100644 usr.bin/usbhidctl/Makefile.depend create mode 100644 usr.bin/users/Makefile.depend create mode 100644 usr.bin/uudecode/Makefile.depend create mode 100644 usr.bin/uuencode/Makefile.depend create mode 100644 usr.bin/vacation/Makefile.depend create mode 100644 usr.bin/vgrind/Makefile.depend create mode 100644 usr.bin/vgrind/RETEST/Makefile.depend create mode 100644 usr.bin/vi/Makefile.depend create mode 100644 usr.bin/vis/Makefile.depend create mode 100644 usr.bin/vmstat/Makefile.depend create mode 100644 usr.bin/w/Makefile.depend create mode 100644 usr.bin/wall/Makefile.depend create mode 100644 usr.bin/wc/Makefile.depend create mode 100644 usr.bin/what/Makefile.depend create mode 100644 usr.bin/whereis/Makefile.depend create mode 100644 usr.bin/which/Makefile.depend create mode 100644 usr.bin/who/Makefile.depend create mode 100644 usr.bin/whois/Makefile.depend create mode 100644 usr.bin/write/Makefile.depend create mode 100644 usr.bin/xargs/Makefile.depend create mode 100644 usr.bin/xinstall/Makefile.depend create mode 100644 usr.bin/xlint/lint1/Makefile.depend create mode 100644 usr.bin/xlint/lint2/Makefile.depend create mode 100644 usr.bin/xlint/llib/Makefile.depend create mode 100644 usr.bin/xlint/xlint/Makefile.depend create mode 100644 usr.bin/xstr/Makefile.depend create mode 100644 usr.bin/xz/Makefile.depend create mode 100644 usr.bin/xzdec/Makefile.depend create mode 100644 usr.bin/yacc/Makefile.depend create mode 100644 usr.bin/yes/Makefile.depend create mode 100644 usr.bin/ypcat/Makefile.depend create mode 100644 usr.bin/ypmatch/Makefile.depend create mode 100644 usr.bin/ypwhich/Makefile.depend create mode 100644 usr.sbin/IPXrouted/Makefile.depend create mode 100644 usr.sbin/ac/Makefile.depend create mode 100644 usr.sbin/accton/Makefile.depend create mode 100644 usr.sbin/acpi/acpiconf/Makefile.depend create mode 100644 usr.sbin/acpi/acpidb/Makefile.depend create mode 100644 usr.sbin/acpi/acpidump/Makefile.depend create mode 100644 usr.sbin/acpi/iasl/Makefile.depend create mode 100644 usr.sbin/adduser/Makefile.depend create mode 100644 usr.sbin/amd/amd/Makefile.depend create mode 100644 usr.sbin/amd/amq/Makefile.depend create mode 100644 usr.sbin/amd/fixmount/Makefile.depend create mode 100644 usr.sbin/amd/fsinfo/Makefile.depend create mode 100644 usr.sbin/amd/hlfsd/Makefile.depend create mode 100644 usr.sbin/amd/include/Makefile.depend create mode 100644 usr.sbin/amd/libamu/Makefile.depend create mode 100644 usr.sbin/amd/mk-amd-map/Makefile.depend create mode 100644 usr.sbin/amd/pawd/Makefile.depend create mode 100644 usr.sbin/amd/scripts/Makefile.depend create mode 100644 usr.sbin/amd/wire-test/Makefile.depend create mode 100644 usr.sbin/ancontrol/Makefile.depend create mode 100644 usr.sbin/apm/Makefile.depend create mode 100644 usr.sbin/apmd/Makefile.depend create mode 100644 usr.sbin/arp/Makefile.depend create mode 100644 usr.sbin/arpaname/Makefile.depend create mode 100644 usr.sbin/asf/Makefile.depend create mode 100644 usr.sbin/audit/Makefile.depend create mode 100644 usr.sbin/auditd/Makefile.depend create mode 100644 usr.sbin/auditreduce/Makefile.depend create mode 100644 usr.sbin/authpf/Makefile.depend create mode 100644 usr.sbin/bluetooth/ath3kfw/Makefile.depend create mode 100644 usr.sbin/bluetooth/bcmfw/Makefile.depend create mode 100644 usr.sbin/bluetooth/bt3cfw/Makefile.depend create mode 100644 usr.sbin/bluetooth/bthidcontrol/Makefile.depend create mode 100644 usr.sbin/bluetooth/bthidd/Makefile.depend create mode 100644 usr.sbin/bluetooth/btpand/Makefile.depend create mode 100644 usr.sbin/bluetooth/hccontrol/Makefile.depend create mode 100644 usr.sbin/bluetooth/hcsecd/Makefile.depend create mode 100644 usr.sbin/bluetooth/hcseriald/Makefile.depend create mode 100644 usr.sbin/bluetooth/l2control/Makefile.depend create mode 100644 usr.sbin/bluetooth/l2ping/Makefile.depend create mode 100644 usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend create mode 100644 usr.sbin/bluetooth/sdpcontrol/Makefile.depend create mode 100644 usr.sbin/bluetooth/sdpd/Makefile.depend create mode 100644 usr.sbin/boot0cfg/Makefile.depend create mode 100644 usr.sbin/boot98cfg/Makefile.depend create mode 100644 usr.sbin/bootparamd/bootparamd/Makefile.depend create mode 100644 usr.sbin/bootparamd/callbootd/Makefile.depend create mode 100644 usr.sbin/bsdinstall/Makefile.depend create mode 100644 usr.sbin/bsdinstall/distextract/Makefile.depend create mode 100644 usr.sbin/bsdinstall/distfetch/Makefile.depend create mode 100644 usr.sbin/bsdinstall/partedit/Makefile.depend create mode 100644 usr.sbin/bsnmpd/bsnmpd/Makefile.depend create mode 100644 usr.sbin/bsnmpd/gensnmptree/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend create mode 100644 usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend create mode 100644 usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend create mode 100644 usr.sbin/btxld/Makefile.depend create mode 100644 usr.sbin/burncd/Makefile.depend create mode 100644 usr.sbin/cdcontrol/Makefile.depend create mode 100644 usr.sbin/chkgrp/Makefile.depend create mode 100644 usr.sbin/chown/Makefile.depend create mode 100644 usr.sbin/chroot/Makefile.depend create mode 100644 usr.sbin/ckdist/Makefile.depend create mode 100644 usr.sbin/clear_locks/Makefile.depend create mode 100644 usr.sbin/config/Makefile.depend create mode 100644 usr.sbin/cpucontrol/Makefile.depend create mode 100644 usr.sbin/crashinfo/Makefile.depend create mode 100644 usr.sbin/cron/cron/Makefile.depend create mode 100644 usr.sbin/cron/crontab/Makefile.depend create mode 100644 usr.sbin/cron/lib/Makefile.depend create mode 100644 usr.sbin/crunch/crunchgen/Makefile.depend create mode 100644 usr.sbin/crunch/crunchide/Makefile.depend create mode 100644 usr.sbin/ctladm/Makefile.depend create mode 100644 usr.sbin/ctm/ctm/Makefile.depend create mode 100644 usr.sbin/ctm/ctm_dequeue/Makefile.depend create mode 100644 usr.sbin/ctm/ctm_rmail/Makefile.depend create mode 100644 usr.sbin/ctm/ctm_smail/Makefile.depend create mode 100644 usr.sbin/daemon/Makefile.depend create mode 100644 usr.sbin/dconschat/Makefile.depend create mode 100644 usr.sbin/ddns-confgen/Makefile.depend create mode 100644 usr.sbin/devinfo/Makefile.depend create mode 100644 usr.sbin/digictl/Makefile.depend create mode 100644 usr.sbin/diskinfo/Makefile.depend create mode 100644 usr.sbin/dnssec-dsfromkey/Makefile.depend create mode 100644 usr.sbin/dnssec-keyfromlabel/Makefile.depend create mode 100644 usr.sbin/dnssec-keygen/Makefile.depend create mode 100644 usr.sbin/dnssec-revoke/Makefile.depend create mode 100644 usr.sbin/dnssec-settime/Makefile.depend create mode 100644 usr.sbin/dnssec-signzone/Makefile.depend create mode 100644 usr.sbin/dumpcis/Makefile.depend create mode 100644 usr.sbin/editmap/Makefile.depend create mode 100644 usr.sbin/edquota/Makefile.depend create mode 100644 usr.sbin/eeprom/Makefile.depend create mode 100644 usr.sbin/extattr/Makefile.depend create mode 100644 usr.sbin/extattrctl/Makefile.depend create mode 100644 usr.sbin/faithd/Makefile.depend create mode 100644 usr.sbin/fdcontrol/Makefile.depend create mode 100644 usr.sbin/fdformat/Makefile.depend create mode 100644 usr.sbin/fdread/Makefile.depend create mode 100644 usr.sbin/fdwrite/Makefile.depend create mode 100644 usr.sbin/fifolog/fifolog_create/Makefile.depend create mode 100644 usr.sbin/fifolog/fifolog_reader/Makefile.depend create mode 100644 usr.sbin/fifolog/fifolog_writer/Makefile.depend create mode 100644 usr.sbin/fifolog/lib/Makefile.depend create mode 100644 usr.sbin/flowctl/Makefile.depend create mode 100644 usr.sbin/freebsd-update/Makefile.depend create mode 100644 usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend create mode 100644 usr.sbin/ftp-proxy/libevent/Makefile.depend create mode 100644 usr.sbin/fwcontrol/Makefile.depend create mode 100644 usr.sbin/genrandom/Makefile.depend create mode 100644 usr.sbin/getfmac/Makefile.depend create mode 100644 usr.sbin/getpmac/Makefile.depend create mode 100644 usr.sbin/gpioctl/Makefile.depend create mode 100644 usr.sbin/gssd/Makefile.depend create mode 100644 usr.sbin/gstat/Makefile.depend create mode 100644 usr.sbin/i2c/Makefile.depend create mode 100644 usr.sbin/ifmcstat/Makefile.depend create mode 100644 usr.sbin/inetd/Makefile.depend create mode 100644 usr.sbin/iostat/Makefile.depend create mode 100644 usr.sbin/ip6addrctl/Makefile.depend create mode 100644 usr.sbin/ipfwpcap/Makefile.depend create mode 100644 usr.sbin/isc-hmac-fixup/Makefile.depend create mode 100644 usr.sbin/jail/Makefile.depend create mode 100644 usr.sbin/jexec/Makefile.depend create mode 100644 usr.sbin/jls/Makefile.depend create mode 100644 usr.sbin/kbdcontrol/Makefile.depend create mode 100644 usr.sbin/kbdmap/Makefile.depend create mode 100644 usr.sbin/keyserv/Makefile.depend create mode 100644 usr.sbin/kgmon/Makefile.depend create mode 100644 usr.sbin/kgzip/Makefile.depend create mode 100644 usr.sbin/kldxref/Makefile.depend create mode 100644 usr.sbin/lastlogin/Makefile.depend create mode 100644 usr.sbin/lmcconfig/Makefile.depend create mode 100644 usr.sbin/lpr/chkprintcap/Makefile.depend create mode 100644 usr.sbin/lpr/common_source/Makefile.depend create mode 100644 usr.sbin/lpr/filters.ru/Makefile.depend create mode 100644 usr.sbin/lpr/filters.ru/koi2855/Makefile.depend create mode 100644 usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend create mode 100644 usr.sbin/lpr/filters/Makefile.depend create mode 100644 usr.sbin/lpr/lp/Makefile.depend create mode 100644 usr.sbin/lpr/lpc/Makefile.depend create mode 100644 usr.sbin/lpr/lpd/Makefile.depend create mode 100644 usr.sbin/lpr/lpq/Makefile.depend create mode 100644 usr.sbin/lpr/lpr/Makefile.depend create mode 100644 usr.sbin/lpr/lprm/Makefile.depend create mode 100644 usr.sbin/lpr/lptest/Makefile.depend create mode 100644 usr.sbin/lpr/pac/Makefile.depend create mode 100644 usr.sbin/lptcontrol/Makefile.depend create mode 100644 usr.sbin/mailstats/Makefile.depend create mode 100644 usr.sbin/mailwrapper/Makefile.depend create mode 100644 usr.sbin/makefs/Makefile.depend create mode 100644 usr.sbin/makemap/Makefile.depend create mode 100644 usr.sbin/manctl/Makefile.depend create mode 100644 usr.sbin/memcontrol/Makefile.depend create mode 100644 usr.sbin/mergemaster/Makefile.depend create mode 100644 usr.sbin/mfiutil/Makefile.depend create mode 100644 usr.sbin/mixer/Makefile.depend create mode 100644 usr.sbin/mld6query/Makefile.depend create mode 100644 usr.sbin/mlxcontrol/Makefile.depend create mode 100644 usr.sbin/mount_nwfs/Makefile.depend create mode 100644 usr.sbin/mount_portalfs/Makefile.depend create mode 100644 usr.sbin/mount_smbfs/Makefile.depend create mode 100644 usr.sbin/mountd/Makefile.depend create mode 100644 usr.sbin/moused/Makefile.depend create mode 100644 usr.sbin/mptable/Makefile.depend create mode 100644 usr.sbin/mptutil/Makefile.depend create mode 100644 usr.sbin/mtest/Makefile.depend create mode 100644 usr.sbin/mtree/Makefile.depend create mode 100644 usr.sbin/named-checkconf/Makefile.depend create mode 100644 usr.sbin/named-checkzone/Makefile.depend create mode 100644 usr.sbin/named-journalprint/Makefile.depend create mode 100644 usr.sbin/named/Makefile.depend create mode 100644 usr.sbin/ndiscvt/Makefile.depend create mode 100644 usr.sbin/ndp/Makefile.depend create mode 100644 usr.sbin/newsyslog/Makefile.depend create mode 100644 usr.sbin/nfscbd/Makefile.depend create mode 100644 usr.sbin/nfsd/Makefile.depend create mode 100644 usr.sbin/nfsdumpstate/Makefile.depend create mode 100644 usr.sbin/nfsrevoke/Makefile.depend create mode 100644 usr.sbin/nfsuserd/Makefile.depend create mode 100644 usr.sbin/ngctl/Makefile.depend create mode 100644 usr.sbin/nghook/Makefile.depend create mode 100644 usr.sbin/nologin/Makefile.depend create mode 100644 usr.sbin/nscd/Makefile.depend create mode 100644 usr.sbin/nsec3hash/Makefile.depend create mode 100644 usr.sbin/ntp/libntp/Makefile.depend create mode 100644 usr.sbin/ntp/libopts/Makefile.depend create mode 100644 usr.sbin/ntp/libparse/Makefile.depend create mode 100644 usr.sbin/ntp/ntp-keygen/Makefile.depend create mode 100644 usr.sbin/ntp/ntpd/Makefile.depend create mode 100644 usr.sbin/ntp/ntpdate/Makefile.depend create mode 100644 usr.sbin/ntp/ntpdc/Makefile.depend create mode 100644 usr.sbin/ntp/ntpq/Makefile.depend create mode 100644 usr.sbin/ntp/ntptime/Makefile.depend create mode 100644 usr.sbin/ntp/sntp/Makefile.depend create mode 100644 usr.sbin/ofwdump/Makefile.depend create mode 100644 usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend create mode 100644 usr.sbin/pc-sysinstall/backend-query/Makefile.depend create mode 100644 usr.sbin/pc-sysinstall/backend/Makefile.depend create mode 100644 usr.sbin/pc-sysinstall/conf/Makefile.depend create mode 100644 usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend create mode 100644 usr.sbin/pciconf/Makefile.depend create mode 100644 usr.sbin/periodic/Makefile.depend create mode 100644 usr.sbin/pkg/Makefile.depend create mode 100644 usr.sbin/pkg_install/add/Makefile.depend create mode 100644 usr.sbin/pkg_install/create/Makefile.depend create mode 100644 usr.sbin/pkg_install/delete/Makefile.depend create mode 100644 usr.sbin/pkg_install/info/Makefile.depend create mode 100644 usr.sbin/pkg_install/lib/Makefile.depend create mode 100644 usr.sbin/pkg_install/updating/Makefile.depend create mode 100644 usr.sbin/pkg_install/version/Makefile.depend create mode 100644 usr.sbin/pmcannotate/Makefile.depend create mode 100644 usr.sbin/pmccontrol/Makefile.depend create mode 100644 usr.sbin/pmcstat/Makefile.depend create mode 100644 usr.sbin/pnpinfo/Makefile.depend create mode 100644 usr.sbin/portsnap/make_index/Makefile.depend create mode 100644 usr.sbin/portsnap/phttpget/Makefile.depend create mode 100644 usr.sbin/portsnap/portsnap/Makefile.depend create mode 100644 usr.sbin/powerd/Makefile.depend create mode 100644 usr.sbin/ppp/Makefile.depend create mode 100644 usr.sbin/pppctl/Makefile.depend create mode 100644 usr.sbin/praliases/Makefile.depend create mode 100644 usr.sbin/praudit/Makefile.depend create mode 100644 usr.sbin/procctl/Makefile.depend create mode 100644 usr.sbin/pstat/Makefile.depend create mode 100644 usr.sbin/pw/Makefile.depend create mode 100644 usr.sbin/pwd_mkdb/Makefile.depend create mode 100644 usr.sbin/quot/Makefile.depend create mode 100644 usr.sbin/quotaon/Makefile.depend create mode 100644 usr.sbin/rarpd/Makefile.depend create mode 100644 usr.sbin/repquota/Makefile.depend create mode 100644 usr.sbin/rip6query/Makefile.depend create mode 100644 usr.sbin/rmt/Makefile.depend create mode 100644 usr.sbin/rndc-confgen/Makefile.depend create mode 100644 usr.sbin/rndc/Makefile.depend create mode 100644 usr.sbin/route6d/Makefile.depend create mode 100644 usr.sbin/rpc.lockd/Makefile.depend create mode 100644 usr.sbin/rpc.statd/Makefile.depend create mode 100644 usr.sbin/rpc.umntall/Makefile.depend create mode 100644 usr.sbin/rpc.yppasswdd/Makefile.depend create mode 100644 usr.sbin/rpc.ypupdated/Makefile.depend create mode 100644 usr.sbin/rpc.ypxfrd/Makefile.depend create mode 100644 usr.sbin/rpcbind/Makefile.depend create mode 100644 usr.sbin/rrenumd/Makefile.depend create mode 100644 usr.sbin/rtadvctl/Makefile.depend create mode 100644 usr.sbin/rtadvd/Makefile.depend create mode 100644 usr.sbin/rtprio/Makefile.depend create mode 100644 usr.sbin/rtsold/Makefile.depend create mode 100644 usr.sbin/rwhod/Makefile.depend create mode 100644 usr.sbin/sa/Makefile.depend create mode 100644 usr.sbin/sade/Makefile.depend create mode 100644 usr.sbin/sendmail/Makefile.depend create mode 100644 usr.sbin/service/Makefile.depend create mode 100644 usr.sbin/services_mkdb/Makefile.depend create mode 100644 usr.sbin/setfib/Makefile.depend create mode 100644 usr.sbin/setfmac/Makefile.depend create mode 100644 usr.sbin/setpmac/Makefile.depend create mode 100644 usr.sbin/sicontrol/Makefile.depend create mode 100644 usr.sbin/smbmsg/Makefile.depend create mode 100644 usr.sbin/snapinfo/Makefile.depend create mode 100644 usr.sbin/spkrtest/Makefile.depend create mode 100644 usr.sbin/spray/Makefile.depend create mode 100644 usr.sbin/syslogd/Makefile.depend create mode 100644 usr.sbin/tcpdchk/Makefile.depend create mode 100644 usr.sbin/tcpdmatch/Makefile.depend create mode 100644 usr.sbin/tcpdrop/Makefile.depend create mode 100644 usr.sbin/tcpdump/tcpdump/Makefile.depend create mode 100644 usr.sbin/timed/timed/Makefile.depend create mode 100644 usr.sbin/timed/timedc/Makefile.depend create mode 100644 usr.sbin/traceroute/Makefile.depend create mode 100644 usr.sbin/traceroute6/Makefile.depend create mode 100644 usr.sbin/trpt/Makefile.depend create mode 100644 usr.sbin/tzsetup/Makefile.depend create mode 100644 usr.sbin/uathload/Makefile.depend create mode 100644 usr.sbin/ugidfw/Makefile.depend create mode 100644 usr.sbin/uhsoctl/Makefile.depend create mode 100644 usr.sbin/usbconfig/Makefile.depend create mode 100644 usr.sbin/usbdump/Makefile.depend create mode 100644 usr.sbin/utx/Makefile.depend create mode 100644 usr.sbin/vidcontrol/Makefile.depend create mode 100644 usr.sbin/vipw/Makefile.depend create mode 100644 usr.sbin/wake/Makefile.depend create mode 100644 usr.sbin/watch/Makefile.depend create mode 100644 usr.sbin/watchdogd/Makefile.depend create mode 100644 usr.sbin/wlandebug/Makefile.depend create mode 100644 usr.sbin/wlconfig/Makefile.depend create mode 100644 usr.sbin/wpa/hostapd/Makefile.depend create mode 100644 usr.sbin/wpa/hostapd_cli/Makefile.depend create mode 100644 usr.sbin/wpa/ndis_events/Makefile.depend create mode 100644 usr.sbin/wpa/wpa_cli/Makefile.depend create mode 100644 usr.sbin/wpa/wpa_passphrase/Makefile.depend create mode 100644 usr.sbin/wpa/wpa_supplicant/Makefile.depend create mode 100644 usr.sbin/yp_mkdb/Makefile.depend create mode 100644 usr.sbin/ypbind/Makefile.depend create mode 100644 usr.sbin/yppoll/Makefile.depend create mode 100644 usr.sbin/yppush/Makefile.depend create mode 100644 usr.sbin/ypserv/Makefile.depend create mode 100644 usr.sbin/ypset/Makefile.depend create mode 100644 usr.sbin/zic/zdump/Makefile.depend create mode 100644 usr.sbin/zic/zic/Makefile.depend create mode 100644 usr.sbin/zzz/Makefile.depend diff --git a/Makefile b/Makefile index 11483d08d0de..ea80a3b0af5f 100644 --- a/Makefile +++ b/Makefile @@ -124,9 +124,9 @@ _MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \ .error MAKEOBJDIRPREFIX can only be set in environment, not as a global\ (in make.conf(5)) or command-line variable. .endif -MAKEPATH= ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE} +MAKEPATH= ${MAKEOBJDIRPREFIX}${.CURDIR}/${MAKE:T}.${MACHINE} BINMAKE= \ - `if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \ + `if [ -x ${MAKEPATH}/${MAKE:T} ]; then echo ${MAKEPATH}/${MAKE:T}; else echo ${MAKE}; fi` \ -m ${.CURDIR}/share/mk _MAKE= PATH=${PATH} ${BINMAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH} @@ -216,7 +216,7 @@ ${TGTS}: .MAIN: all STARTTIME!= LC_ALL=C date -CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s +CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s; echo .if !empty(CHECK_TIME) .error check your date/time: ${STARTTIME} .endif @@ -284,7 +284,7 @@ upgrade_checks: PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \ PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \ then \ - (cd ${.CURDIR} && ${MAKE} make); \ + (cd ${.CURDIR} && ${MAKE} ${MAKE:T}); \ fi # @@ -303,9 +303,20 @@ MMAKE= ${MMAKEENV} ${MAKE} \ make: .PHONY @echo @echo "--------------------------------------------------------------" - @echo ">>> Building an up-to-date make(1)" + @echo ">>> Building an up-to-date ${MAKE:T}(1)" @echo "--------------------------------------------------------------" - ${_+_}@cd ${.CURDIR}/usr.bin/make; \ + ${_+_}@cd ${.CURDIR}/usr.bin/${MAKE:T}; \ + ${MMAKE} obj && \ + ${MMAKE} depend && \ + ${MMAKE} all && \ + ${MMAKE} install DESTDIR=${MAKEPATH} BINDIR= + +bmake: .PHONY + @echo + @echo "--------------------------------------------------------------" + @echo ">>> Building an up-to-date bmake(1)" + @echo "--------------------------------------------------------------" + ${_+_}@cd ${.CURDIR}/external/bsd/bmake/usr.bin/bmake; \ ${MMAKE} obj && \ ${MMAKE} depend && \ ${MMAKE} all && \ diff --git a/Makefile.inc1 b/Makefile.inc1 index 3cfebc2d7a91..028594831ab6 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -81,6 +81,8 @@ SUBDIR+=sys usr.bin usr.sbin .if ${MK_OFED} != "no" SUBDIR+=contrib/ofed .endif +SUBDIR+=external/bsd + # # We must do etc/ last for install/distribute to work. # @@ -240,6 +242,7 @@ BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ DESTDIR= \ BOOTSTRAPPING=${OSRELDATE} \ SSP_CFLAGS= \ + -DWITHOUT_META_MODE \ -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \ -DNO_PIC -DNO_PROFILE -DNO_SHARED \ -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF @@ -251,12 +254,14 @@ TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ DESTDIR= \ BOOTSTRAPPING=${OSRELDATE} \ SSP_CFLAGS= \ + -DWITHOUT_META_MODE \ -DNO_LINT \ -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF # cross-tools stage XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \ TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ + -DWITHOUT_META_MODE \ -DWITHOUT_GDB # world stage @@ -1678,3 +1683,5 @@ _xi-links: xdev xdev-buil xdev-install: @echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target" .endif + +.MAKE.MODE= normal diff --git a/bin/cat/Makefile.depend b/bin/cat/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/cat/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/chflags/Makefile.depend b/bin/chflags/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/chflags/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/chio/Makefile.depend b/bin/chio/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/chio/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/chmod/Makefile.depend b/bin/chmod/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/chmod/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/cp/Makefile.depend b/bin/cp/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/cp/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/csh/Makefile.depend b/bin/csh/Makefile.depend new file mode 100644 index 000000000000..ee77884a02ab --- /dev/null +++ b/bin/csh/Makefile.depend @@ -0,0 +1,348 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ed.chared.o: ed.defns.h +ed.chared.o: iconv.h +ed.chared.o: sh.err.h +ed.chared.o: tc.const.h +ed.chared.po: ed.defns.h +ed.chared.po: iconv.h +ed.chared.po: sh.err.h +ed.chared.po: tc.const.h +ed.defns.o: iconv.h +ed.defns.o: sh.err.h +ed.defns.o: tc.const.h +ed.defns.po: iconv.h +ed.defns.po: sh.err.h +ed.defns.po: tc.const.h +ed.init.o: ed.defns.h +ed.init.o: iconv.h +ed.init.o: sh.err.h +ed.init.o: tc.const.h +ed.init.po: ed.defns.h +ed.init.po: iconv.h +ed.init.po: sh.err.h +ed.init.po: tc.const.h +ed.inputl.o: ed.defns.h +ed.inputl.o: iconv.h +ed.inputl.o: sh.err.h +ed.inputl.o: tc.const.h +ed.inputl.po: ed.defns.h +ed.inputl.po: iconv.h +ed.inputl.po: sh.err.h +ed.inputl.po: tc.const.h +ed.refresh.o: iconv.h +ed.refresh.o: sh.err.h +ed.refresh.o: tc.const.h +ed.refresh.po: iconv.h +ed.refresh.po: sh.err.h +ed.refresh.po: tc.const.h +ed.screen.o: ed.defns.h +ed.screen.o: iconv.h +ed.screen.o: sh.err.h +ed.screen.o: tc.const.h +ed.screen.po: ed.defns.h +ed.screen.po: iconv.h +ed.screen.po: sh.err.h +ed.screen.po: tc.const.h +ed.term.o: iconv.h +ed.term.o: sh.err.h +ed.term.o: tc.const.h +ed.term.po: iconv.h +ed.term.po: sh.err.h +ed.term.po: tc.const.h +ed.xmap.o: ed.defns.h +ed.xmap.o: iconv.h +ed.xmap.o: sh.err.h +ed.xmap.o: tc.const.h +ed.xmap.po: ed.defns.h +ed.xmap.po: iconv.h +ed.xmap.po: sh.err.h +ed.xmap.po: tc.const.h +glob.o: iconv.h +glob.o: sh.err.h +glob.o: tc.const.h +glob.po: iconv.h +glob.po: sh.err.h +glob.po: tc.const.h +iconv_stub.o: iconv.h +iconv_stub.po: iconv.h +mi.termios.o: iconv.h +mi.termios.o: sh.err.h +mi.termios.o: tc.const.h +mi.termios.po: iconv.h +mi.termios.po: sh.err.h +mi.termios.po: tc.const.h +sh.char.o: iconv.h +sh.char.o: sh.err.h +sh.char.o: tc.const.h +sh.char.po: iconv.h +sh.char.po: sh.err.h +sh.char.po: tc.const.h +sh.dir.o: iconv.h +sh.dir.o: sh.err.h +sh.dir.o: tc.const.h +sh.dir.po: iconv.h +sh.dir.po: sh.err.h +sh.dir.po: tc.const.h +sh.dol.o: iconv.h +sh.dol.o: sh.err.h +sh.dol.o: tc.const.h +sh.dol.po: iconv.h +sh.dol.po: sh.err.h +sh.dol.po: tc.const.h +sh.err.o: iconv.h +sh.err.o: sh.err.h +sh.err.o: tc.const.h +sh.err.po: iconv.h +sh.err.po: sh.err.h +sh.err.po: tc.const.h +sh.exec.o: iconv.h +sh.exec.o: sh.err.h +sh.exec.o: tc.const.h +sh.exec.po: iconv.h +sh.exec.po: sh.err.h +sh.exec.po: tc.const.h +sh.exp.o: iconv.h +sh.exp.o: sh.err.h +sh.exp.o: tc.const.h +sh.exp.po: iconv.h +sh.exp.po: sh.err.h +sh.exp.po: tc.const.h +sh.file.o: iconv.h +sh.file.o: sh.err.h +sh.file.o: tc.const.h +sh.file.po: iconv.h +sh.file.po: sh.err.h +sh.file.po: tc.const.h +sh.func.o: iconv.h +sh.func.o: sh.err.h +sh.func.o: tc.const.h +sh.func.po: iconv.h +sh.func.po: sh.err.h +sh.func.po: tc.const.h +sh.glob.o: iconv.h +sh.glob.o: sh.err.h +sh.glob.o: tc.const.h +sh.glob.po: iconv.h +sh.glob.po: sh.err.h +sh.glob.po: tc.const.h +sh.hist.o: iconv.h +sh.hist.o: sh.err.h +sh.hist.o: tc.const.h +sh.hist.po: iconv.h +sh.hist.po: sh.err.h +sh.hist.po: tc.const.h +sh.init.o: iconv.h +sh.init.o: sh.err.h +sh.init.o: tc.const.h +sh.init.po: iconv.h +sh.init.po: sh.err.h +sh.init.po: tc.const.h +sh.lex.o: iconv.h +sh.lex.o: sh.err.h +sh.lex.o: tc.const.h +sh.lex.po: iconv.h +sh.lex.po: sh.err.h +sh.lex.po: tc.const.h +sh.misc.o: iconv.h +sh.misc.o: sh.err.h +sh.misc.o: tc.const.h +sh.misc.po: iconv.h +sh.misc.po: sh.err.h +sh.misc.po: tc.const.h +sh.o: iconv.h +sh.o: sh.err.h +sh.o: tc.const.h +sh.parse.o: iconv.h +sh.parse.o: sh.err.h +sh.parse.o: tc.const.h +sh.parse.po: iconv.h +sh.parse.po: sh.err.h +sh.parse.po: tc.const.h +sh.po: iconv.h +sh.po: sh.err.h +sh.po: tc.const.h +sh.print.o: iconv.h +sh.print.o: sh.err.h +sh.print.o: tc.const.h +sh.print.po: iconv.h +sh.print.po: sh.err.h +sh.print.po: tc.const.h +sh.proc.o: iconv.h +sh.proc.o: sh.err.h +sh.proc.o: tc.const.h +sh.proc.po: iconv.h +sh.proc.po: sh.err.h +sh.proc.po: tc.const.h +sh.sem.o: iconv.h +sh.sem.o: sh.err.h +sh.sem.o: tc.const.h +sh.sem.po: iconv.h +sh.sem.po: sh.err.h +sh.sem.po: tc.const.h +sh.set.o: iconv.h +sh.set.o: sh.err.h +sh.set.o: tc.const.h +sh.set.po: iconv.h +sh.set.po: sh.err.h +sh.set.po: tc.const.h +sh.time.o: iconv.h +sh.time.o: sh.err.h +sh.time.o: tc.const.h +sh.time.po: iconv.h +sh.time.po: sh.err.h +sh.time.po: tc.const.h +tc.alloc.o: iconv.h +tc.alloc.o: sh.err.h +tc.alloc.o: tc.const.h +tc.alloc.po: iconv.h +tc.alloc.po: sh.err.h +tc.alloc.po: tc.const.h +tc.bind.o: ed.defns.h +tc.bind.o: iconv.h +tc.bind.o: sh.err.h +tc.bind.o: tc.const.h +tc.bind.po: ed.defns.h +tc.bind.po: iconv.h +tc.bind.po: sh.err.h +tc.bind.po: tc.const.h +tc.const.o: iconv.h +tc.const.o: sh.err.h +tc.const.o: tc.const.h +tc.const.po: iconv.h +tc.const.po: sh.err.h +tc.const.po: tc.const.h +tc.defs.o: iconv.h +tc.defs.o: sh.err.h +tc.defs.o: tc.const.h +tc.defs.o: tc.defs.c +tc.defs.po: iconv.h +tc.defs.po: sh.err.h +tc.defs.po: tc.const.h +tc.defs.po: tc.defs.c +tc.disc.o: iconv.h +tc.disc.o: sh.err.h +tc.disc.o: tc.const.h +tc.disc.po: iconv.h +tc.disc.po: sh.err.h +tc.disc.po: tc.const.h +tc.func.o: ed.defns.h +tc.func.o: iconv.h +tc.func.o: sh.err.h +tc.func.o: tc.const.h +tc.func.po: ed.defns.h +tc.func.po: iconv.h +tc.func.po: sh.err.h +tc.func.po: tc.const.h +tc.nls.o: iconv.h +tc.nls.o: sh.err.h +tc.nls.o: tc.const.h +tc.nls.po: iconv.h +tc.nls.po: sh.err.h +tc.nls.po: tc.const.h +tc.os.o: ed.defns.h +tc.os.o: iconv.h +tc.os.o: sh.err.h +tc.os.o: tc.const.h +tc.os.po: ed.defns.h +tc.os.po: iconv.h +tc.os.po: sh.err.h +tc.os.po: tc.const.h +tc.printf.o: iconv.h +tc.printf.o: sh.err.h +tc.printf.o: tc.const.h +tc.printf.po: iconv.h +tc.printf.po: sh.err.h +tc.printf.po: tc.const.h +tc.prompt.o: iconv.h +tc.prompt.o: sh.err.h +tc.prompt.o: tc.const.h +tc.prompt.po: iconv.h +tc.prompt.po: sh.err.h +tc.prompt.po: tc.const.h +tc.sched.o: iconv.h +tc.sched.o: sh.err.h +tc.sched.o: tc.const.h +tc.sched.po: iconv.h +tc.sched.po: sh.err.h +tc.sched.po: tc.const.h +tc.sig.o: iconv.h +tc.sig.o: sh.err.h +tc.sig.o: tc.const.h +tc.sig.po: iconv.h +tc.sig.po: sh.err.h +tc.sig.po: tc.const.h +tc.str.o: iconv.h +tc.str.o: sh.err.h +tc.str.o: tc.const.h +tc.str.po: iconv.h +tc.str.po: sh.err.h +tc.str.po: tc.const.h +tc.vers.o: iconv.h +tc.vers.o: sh.err.h +tc.vers.o: tc.const.h +tc.vers.po: iconv.h +tc.vers.po: sh.err.h +tc.vers.po: tc.const.h +tc.who.o: iconv.h +tc.who.o: sh.err.h +tc.who.o: tc.const.h +tc.who.po: iconv.h +tc.who.po: sh.err.h +tc.who.po: tc.const.h +tw.color.o: iconv.h +tw.color.o: sh.err.h +tw.color.o: tc.const.h +tw.color.po: iconv.h +tw.color.po: sh.err.h +tw.color.po: tc.const.h +tw.comp.o: iconv.h +tw.comp.o: sh.err.h +tw.comp.o: tc.const.h +tw.comp.po: iconv.h +tw.comp.po: sh.err.h +tw.comp.po: tc.const.h +tw.help.o: iconv.h +tw.help.o: sh.err.h +tw.help.o: tc.const.h +tw.help.po: iconv.h +tw.help.po: sh.err.h +tw.help.po: tc.const.h +tw.init.o: iconv.h +tw.init.o: sh.err.h +tw.init.o: tc.const.h +tw.init.po: iconv.h +tw.init.po: sh.err.h +tw.init.po: tc.const.h +tw.parse.o: iconv.h +tw.parse.o: sh.err.h +tw.parse.o: tc.const.h +tw.parse.po: iconv.h +tw.parse.po: sh.err.h +tw.parse.po: tc.const.h +tw.spell.o: iconv.h +tw.spell.o: sh.err.h +tw.spell.o: tc.const.h +tw.spell.po: iconv.h +tw.spell.po: sh.err.h +tw.spell.po: tc.const.h +.endif diff --git a/bin/date/Makefile.depend b/bin/date/Makefile.depend new file mode 100644 index 000000000000..25ca34444ce3 --- /dev/null +++ b/bin/date/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/dd/Makefile.depend b/bin/dd/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/dd/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/df/Makefile.depend b/bin/df/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/bin/df/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/domainname/Makefile.depend b/bin/domainname/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/domainname/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/echo/Makefile.depend b/bin/echo/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/echo/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/ed/Makefile.depend b/bin/ed/Makefile.depend new file mode 100644 index 000000000000..1ae71d98e8f9 --- /dev/null +++ b/bin/ed/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/expr/Makefile.depend b/bin/expr/Makefile.depend new file mode 100644 index 000000000000..c4a7277a5cb1 --- /dev/null +++ b/bin/expr/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +expr.o: expr.c +expr.po: expr.c +.endif diff --git a/bin/getfacl/Makefile.depend b/bin/getfacl/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/getfacl/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/hostname/Makefile.depend b/bin/hostname/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/hostname/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/kenv/Makefile.depend b/bin/kenv/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/kenv/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/kill/Makefile.depend b/bin/kill/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/kill/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/ln/Makefile.depend b/bin/ln/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/ln/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/ls/Makefile.depend b/bin/ls/Makefile.depend new file mode 100644 index 000000000000..3bf190da5af9 --- /dev/null +++ b/bin/ls/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/mkdir/Makefile.depend b/bin/mkdir/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/mkdir/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/mv/Makefile.depend b/bin/mv/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/mv/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/pax/Makefile.depend b/bin/pax/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/pax/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/pkill/Makefile.depend b/bin/pkill/Makefile.depend new file mode 100644 index 000000000000..553674c09429 --- /dev/null +++ b/bin/pkill/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/ps/Makefile.depend b/bin/ps/Makefile.depend new file mode 100644 index 000000000000..863fe357cfae --- /dev/null +++ b/bin/ps/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/pwait/Makefile.depend b/bin/pwait/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/pwait/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/pwd/Makefile.depend b/bin/pwd/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/pwd/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/rcp/Makefile.depend b/bin/rcp/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/rcp/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/realpath/Makefile.depend b/bin/realpath/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/bin/realpath/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/rm/Makefile.depend b/bin/rm/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/rm/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/rmail/Makefile.depend b/bin/rmail/Makefile.depend new file mode 100644 index 000000000000..7ffe408b22f0 --- /dev/null +++ b/bin/rmail/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsm \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +rmail.o: sm_os.h +rmail.po: sm_os.h +.endif diff --git a/bin/rmdir/Makefile.depend b/bin/rmdir/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/rmdir/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/setfacl/Makefile.depend b/bin/setfacl/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/setfacl/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/sh/Makefile.depend b/bin/sh/Makefile.depend new file mode 100644 index 000000000000..4c22a9796091 --- /dev/null +++ b/bin/sh/Makefile.depend @@ -0,0 +1,115 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +alias.o: builtins.h +alias.po: builtins.h +arith_yylex.o: syntax.h +arith_yylex.po: syntax.h +builtins.o: builtins.c +builtins.o: builtins.h +builtins.po: builtins.c +builtins.po: builtins.h +cd.o: builtins.h +cd.o: nodes.h +cd.po: builtins.h +cd.po: nodes.h +echo.o: builtins.h +echo.po: builtins.h +error.o: nodes.h +error.po: nodes.h +eval.o: builtins.h +eval.o: nodes.h +eval.o: syntax.h +eval.po: builtins.h +eval.po: nodes.h +eval.po: syntax.h +exec.o: builtins.h +exec.o: nodes.h +exec.o: syntax.h +exec.po: builtins.h +exec.po: nodes.h +exec.po: syntax.h +expand.o: builtins.h +expand.o: nodes.h +expand.o: syntax.h +expand.po: builtins.h +expand.po: nodes.h +expand.po: syntax.h +histedit.o: builtins.h +histedit.po: builtins.h +init.o: init.c +init.po: init.c +input.o: syntax.h +input.po: syntax.h +jobs.o: builtins.h +jobs.o: nodes.h +jobs.o: syntax.h +jobs.po: builtins.h +jobs.po: nodes.h +jobs.po: syntax.h +kill.o: builtins.h +kill.po: builtins.h +main.o: builtins.h +main.o: nodes.h +main.po: builtins.h +main.po: nodes.h +mystring.o: syntax.h +mystring.po: syntax.h +nodes.o: nodes.c +nodes.o: nodes.h +nodes.po: nodes.c +nodes.po: nodes.h +options.o: builtins.h +options.o: nodes.h +options.po: builtins.h +options.po: nodes.h +output.o: syntax.h +output.po: syntax.h +parser.o: nodes.h +parser.o: syntax.h +parser.o: token.h +parser.po: nodes.h +parser.po: syntax.h +parser.po: token.h +printf.o: builtins.h +printf.po: builtins.h +redir.o: nodes.h +redir.po: nodes.h +show.o: nodes.h +show.po: nodes.h +syntax.o: syntax.c +syntax.o: syntax.h +syntax.po: syntax.c +syntax.po: syntax.h +test.o: builtins.h +test.po: builtins.h +trap.o: builtins.h +trap.o: nodes.h +trap.o: syntax.h +trap.po: builtins.h +trap.po: nodes.h +trap.po: syntax.h +var.o: builtins.h +var.o: nodes.h +var.o: syntax.h +var.po: builtins.h +var.po: nodes.h +var.po: syntax.h +.endif diff --git a/bin/sleep/Makefile.depend b/bin/sleep/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/sleep/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/stty/Makefile.depend b/bin/stty/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/stty/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/sync/Makefile.depend b/bin/sync/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/bin/sync/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/test/Makefile.depend b/bin/test/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/bin/test/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/bin/uuidgen/Makefile.depend b/bin/uuidgen/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/bin/uuidgen/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/lib/drti/Makefile.depend b/cddl/lib/drti/Makefile.depend new file mode 100644 index 000000000000..dc1878f7930b --- /dev/null +++ b/cddl/lib/drti/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libelf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/lib/libavl/Makefile.depend b/cddl/lib/libavl/Makefile.depend new file mode 100644 index 000000000000..f5418c0fbe7a --- /dev/null +++ b/cddl/lib/libavl/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/lib/libctf/Makefile.depend b/cddl/lib/libctf/Makefile.depend new file mode 100644 index 000000000000..fea4fa089d94 --- /dev/null +++ b/cddl/lib/libctf/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libelf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/lib/libdtrace/Makefile.depend b/cddl/lib/libdtrace/Makefile.depend new file mode 100644 index 000000000000..50cff6232a46 --- /dev/null +++ b/cddl/lib/libdtrace/Makefile.depend @@ -0,0 +1,47 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libelf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +dt_cc.So: dt_grammar.h +dt_cc.o: dt_grammar.h +dt_cc.po: dt_grammar.h +dt_cg.So: dt_grammar.h +dt_cg.o: dt_grammar.h +dt_cg.po: dt_grammar.h +dt_errtags.So: dt_errtags.c +dt_errtags.o: dt_errtags.c +dt_errtags.po: dt_errtags.c +dt_grammar.So: dt_grammar.c +dt_grammar.o: dt_grammar.c +dt_grammar.po: dt_grammar.c +dt_lex.So: dt_grammar.h +dt_lex.So: dt_lex.c +dt_lex.o: dt_grammar.h +dt_lex.o: dt_lex.c +dt_lex.po: dt_grammar.h +dt_lex.po: dt_lex.c +dt_names.So: dt_names.c +dt_names.o: dt_names.c +dt_names.po: dt_names.c +dt_parser.So: dt_grammar.h +dt_parser.o: dt_grammar.h +dt_parser.po: dt_grammar.h +dt_xlator.So: dt_grammar.h +dt_xlator.o: dt_grammar.h +dt_xlator.po: dt_grammar.h +.endif diff --git a/cddl/lib/libnvpair/Makefile.depend b/cddl/lib/libnvpair/Makefile.depend new file mode 100644 index 000000000000..eba5cd5875b4 --- /dev/null +++ b/cddl/lib/libnvpair/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/lib/libumem/Makefile.depend b/cddl/lib/libumem/Makefile.depend new file mode 100644 index 000000000000..f5418c0fbe7a --- /dev/null +++ b/cddl/lib/libumem/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/lib/libuutil/Makefile.depend b/cddl/lib/libuutil/Makefile.depend new file mode 100644 index 000000000000..eba5cd5875b4 --- /dev/null +++ b/cddl/lib/libuutil/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/lib/libzfs/Makefile.depend b/cddl/lib/libzfs/Makefile.depend new file mode 100644 index 000000000000..95d46624ef2b --- /dev/null +++ b/cddl/lib/libzfs/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libumem \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + lib/libutil \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/lib/libzpool/Makefile.depend b/cddl/lib/libzpool/Makefile.depend new file mode 100644 index 000000000000..420d91b52f55 --- /dev/null +++ b/cddl/lib/libzpool/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/sbin/zfs/Makefile.depend b/cddl/sbin/zfs/Makefile.depend new file mode 100644 index 000000000000..ac256a59c374 --- /dev/null +++ b/cddl/sbin/zfs/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libnvpair \ + cddl/lib/libumem \ + cddl/lib/libuutil \ + cddl/lib/libzfs \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + lib/libutil \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/sbin/zpool/Makefile.depend b/cddl/sbin/zpool/Makefile.depend new file mode 100644 index 000000000000..33d5e34a3a72 --- /dev/null +++ b/cddl/sbin/zpool/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libavl \ + cddl/lib/libnvpair \ + cddl/lib/libumem \ + cddl/lib/libuutil \ + cddl/lib/libzfs \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + lib/libutil \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/usr.bin/ctfconvert/Makefile.depend b/cddl/usr.bin/ctfconvert/Makefile.depend new file mode 100644 index 000000000000..75e8094cf961 --- /dev/null +++ b/cddl/usr.bin/ctfconvert/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libctf \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libdwarf \ + lib/libelf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/usr.bin/ctfdump/Makefile.depend b/cddl/usr.bin/ctfdump/Makefile.depend new file mode 100644 index 000000000000..fea4fa089d94 --- /dev/null +++ b/cddl/usr.bin/ctfdump/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libelf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/usr.bin/ctfmerge/Makefile.depend b/cddl/usr.bin/ctfmerge/Makefile.depend new file mode 100644 index 000000000000..75e8094cf961 --- /dev/null +++ b/cddl/usr.bin/ctfmerge/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libctf \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libdwarf \ + lib/libelf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/usr.bin/sgsmsg/Makefile.depend b/cddl/usr.bin/sgsmsg/Makefile.depend new file mode 100644 index 000000000000..fea4fa089d94 --- /dev/null +++ b/cddl/usr.bin/sgsmsg/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libelf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/usr.bin/zinject/Makefile.depend b/cddl/usr.bin/zinject/Makefile.depend new file mode 100644 index 000000000000..695f032fbe47 --- /dev/null +++ b/cddl/usr.bin/zinject/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libnvpair \ + cddl/lib/libumem \ + cddl/lib/libuutil \ + cddl/lib/libzfs \ + cddl/lib/libzpool \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/external/bsd/bmake/usr.bin/bmake/Makefile b/external/bsd/bmake/usr.bin/bmake/Makefile index 398bb4c71071..8be2bfa7775e 100644 --- a/external/bsd/bmake/usr.bin/bmake/Makefile +++ b/external/bsd/bmake/usr.bin/bmake/Makefile @@ -1,5 +1,10 @@ # This is a generated file, do NOT edit! -# See contrib/bmake/bsd.after-import.mk +# See external/bsd/bmake/dist/bsd.after-import.mk +# +# $FreeBSD$ + +SRCTOP?= ${.CURDIR:H:H:H:H:H} + # look here first for config.h CFLAGS+= -I${.CURDIR} @@ -7,13 +12,11 @@ CFLAGS+= -I${.CURDIR} # $NetBSD: Makefile,v 1.56 2012/05/30 21:54:23 sjg Exp $ # @(#)Makefile 5.2 (Berkeley) 12/28/90 -# $Id: Makefile.in,v 1.164 2012/06/20 22:44:26 sjg Exp $ - -# $FreeBSD$ +# $Id: Makefile.in,v 1.168 2012/07/05 04:10:23 sjg Exp $ PROG= bmake SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \ - make.c parse.c str.c suff.c targ.c trace.c var.c util.c + make.c parse.c str.c suff.c targ.c trace.c var.c util.c SRCS+= strlist.c SRCS+= make_malloc.c SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \ @@ -25,30 +28,36 @@ SRCS += lstPrev.c # you can use this Makefile if you have an earlier version of bmake. prefix= /usr -srcdir= ${.CURDIR}/../../dist +srcdir= ${SRCTOP}/external/bsd/bmake/dist +CC?= gcc # Base version on src date -MAKE_VERSION= 20120620 +MAKE_VERSION= 20120704 DEFAULT_SYS_PATH = .../share/mk:/usr/share/mk +CPPFLAGS+= +CFLAGS+= ${CPPFLAGS} CFLAGS+= -D_PATH_DEFSYSPATH=\"${DEFAULT_SYS_PATH}\" -CFLAGS+= -I. -I${srcdir} -DHAVE_CONFIG_H ${XDEFS} -DMAKE_NATIVE -CFLAGS+= ${CFLAGS_${.TARGET:T}} +CFLAGS+= -I. -I${srcdir} -DHAVE_CONFIG_H ${XDEFS} -DMAKE_NATIVE +CFLAGS+= ${CFLAGS_${.TARGET:T}} CFLAGS+= ${COPTS.${.ALLSRC:M*.c:T:u}} COPTS.main.c+= "-DMAKE_VERSION=\"${MAKE_VERSION}\"" -LDFLAGS= -LIBOBJS= ${LIBOBJDIR}stresep$U.o -LDADD= +LDFLAGS= +LIBOBJS= ${LIBOBJDIR}stresep$U.o +LDADD= .if !empty(LIBOBJS) SRCS+= ${LIBOBJS:T:.o=.c} .endif -USE_META ?= yes -.if ${USE_META:tl} != "no" +USE_META = yes +.if ${USE_META} != "no" SRCS+= meta.c CPPFLAGS+= -DUSE_META -COPTS.meta.c += -DHAVE_FILEMON_H +FILEMON_H ?= /usr/include/dev/filemon/filemon.h +.if exists(${FILEMON_H}) && ${FILEMON_H:T} == "filemon.h" +COPTS.meta.c += -DHAVE_FILEMON_H -I${FILEMON_H:H} +.endif .endif .PATH: ${srcdir} @@ -56,11 +65,6 @@ COPTS.meta.c += -DHAVE_FILEMON_H OS!= uname -s ARCH!= uname -p 2>/dev/null || uname -m -MAKEVER!= ${MAKE} -f /dev/null -V MAKE_VERSION -.if ${MAKEVER} < 1197001010 -# Bmake vs. FreeBSD's traditional make ('MAKE_VERSION' format: RYYYYMMDDX) -IS_BMAKE= yes -.endif # list of OS's which are derrived from BSD4.4 isBSD44= NetBSD FreeBSD OpenBSD DragonFly @@ -75,9 +79,6 @@ WARNS=4 SUBDIR= PSD.doc .endif .endif -.if ${OS} == "FreeBSD" -WARNS?= 6 -.endif .if empty(isBSD44:M${OS}) # XXX not sure if we still want this given that configure @@ -93,8 +94,8 @@ SRCS+= sigcompat.c CFLAGS+= -DSIGNAL_FLAGS=SA_RESTART .endif .endif +.if defined(.PARSEDIR) .if make(obj) || make(clean) -.if defined(IS_BMAKE) SUBDIR+= unit-tests .endif .endif @@ -144,9 +145,11 @@ _mfromdir=${srcdir} # sigh, FreeBSD at least includes bsd.subdir.mk via bsd.obj.mk # so the inclusion below, results in complaints about re-defined # targets. For NetBSD though we need to explicitly include it. -#.if defined(SUBDIR) && !target(${SUBDIR:[1]}) -#.-include -#.endif +.if defined(.PARSEDIR) +.if defined(SUBDIR) && !target(${SUBDIR:[1]}) +.sinclude +.endif +.endif CPPFLAGS+= -DMAKE_NATIVE COPTS.var.c += -Wno-cast-qual @@ -156,7 +159,7 @@ COPTS.var.c += -Wno-format-nonliteral # Force these BINDIR= ${prefix}/bin -MANDIR= ${prefix}/share/man +MANDIR= ${prefix}/man arch.o: config.h # make sure that MAKE_VERSION gets updated. @@ -200,8 +203,8 @@ MANDIR= /usr/share/man CFLAGS+= ${COPTS.${.IMPSRC:T}} CLEANFILES+= bootstrap -after-import: ${.CURDIR}/../dist/bsd.after-import.mk - cd ${.CURDIR} && ${.MAKE} -f ${.CURDIR}/../dist/bsd.after-import.mk +after-import: ${SRCTOP}/external/bsd/bmake/dist/bsd.after-import.mk + cd ${.CURDIR} && ${.MAKE} -f ${SRCTOP}/external/bsd/bmake/dist/bsd.after-import.mk .sinclude "Makefile.inc" diff --git a/external/bsd/bmake/usr.bin/bmake/Makefile.depend b/external/bsd/bmake/usr.bin/bmake/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/external/bsd/bmake/usr.bin/bmake/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/external/bsd/bmake/usr.bin/bmake/Makefile.inc b/external/bsd/bmake/usr.bin/bmake/Makefile.inc new file mode 100644 index 000000000000..090deb713b5d --- /dev/null +++ b/external/bsd/bmake/usr.bin/bmake/Makefile.inc @@ -0,0 +1,6 @@ +# $FreeBSD$ + +.if defined(.PARSEDIR) +# make sure this is available to unit-tests/Makefile +.export SRCTOP +.endif diff --git a/external/bsd/bmake/usr.bin/bmake/config.h b/external/bsd/bmake/usr.bin/bmake/config.h index 12e9c7dd9f19..9cf8c8a5da6b 100644 --- a/external/bsd/bmake/usr.bin/bmake/config.h +++ b/external/bsd/bmake/usr.bin/bmake/config.h @@ -229,7 +229,7 @@ #define PACKAGE_NAME "bmake" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "bmake 20120606" +#define PACKAGE_STRING "bmake 20120620" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "bmake" @@ -238,7 +238,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "20120606" +#define PACKAGE_VERSION "20120620" /* Define as the return type of signal handlers (`int' or `void'). */ #define RETSIGTYPE void diff --git a/external/bsd/bmake/usr.bin/bmake/unit-tests/Makefile b/external/bsd/bmake/usr.bin/bmake/unit-tests/Makefile index 4f6fef54fe50..72259f478cad 100644 --- a/external/bsd/bmake/usr.bin/bmake/unit-tests/Makefile +++ b/external/bsd/bmake/usr.bin/bmake/unit-tests/Makefile @@ -2,8 +2,6 @@ # # $NetBSD: Makefile,v 1.34 2012/06/19 23:25:53 sjg Exp $ # -# $FreeBSD$ -# # Unit tests for make(1) # The main targets are: # @@ -16,7 +14,7 @@ # named makefile which should be added to SUBFILES to hook it in. # -srcdir= ${.CURDIR}/../../../dist/unit-tests +srcdir= ${SRCTOP}/external/bsd/bmake/dist/unit-tests .MAIN: all @@ -64,7 +62,7 @@ ${SUBFILES}: clean: rm -f *.out *.fail *.core -.-include +.sinclude TEST_MAKE?= ${.MAKE} TOOL_SED?= sed diff --git a/games/bcd/Makefile.depend b/games/bcd/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/games/bcd/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/caesar/Makefile.depend b/games/caesar/Makefile.depend new file mode 100644 index 000000000000..d78f7b72e2c0 --- /dev/null +++ b/games/caesar/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/factor/Makefile.depend b/games/factor/Makefile.depend new file mode 100644 index 000000000000..1ae71d98e8f9 --- /dev/null +++ b/games/factor/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/fortune/datfiles/Makefile.depend b/games/fortune/datfiles/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/games/fortune/datfiles/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/fortune/fortune/Makefile.depend b/games/fortune/fortune/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/games/fortune/fortune/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/fortune/strfile/Makefile.depend b/games/fortune/strfile/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/games/fortune/strfile/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/fortune/unstr/Makefile.depend b/games/fortune/unstr/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/games/fortune/unstr/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/grdc/Makefile.depend b/games/grdc/Makefile.depend new file mode 100644 index 000000000000..18bcf60ef813 --- /dev/null +++ b/games/grdc/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/morse/Makefile.depend b/games/morse/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/games/morse/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/number/Makefile.depend b/games/number/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/games/number/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/pom/Makefile.depend b/games/pom/Makefile.depend new file mode 100644 index 000000000000..d78f7b72e2c0 --- /dev/null +++ b/games/pom/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/ppt/Makefile.depend b/games/ppt/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/games/ppt/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/primes/Makefile.depend b/games/primes/Makefile.depend new file mode 100644 index 000000000000..d78f7b72e2c0 --- /dev/null +++ b/games/primes/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/random/Makefile.depend b/games/random/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/games/random/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/lib/csu/Makefile.depend b/gnu/lib/csu/Makefile.depend new file mode 100644 index 000000000000..04f30e7487f1 --- /dev/null +++ b/gnu/lib/csu/Makefile.depend @@ -0,0 +1,46 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +crtbegin.o: options.h +crtbegin.o: tconfig.h +crtbegin.o: tm.h +crtbegin.po: options.h +crtbegin.po: tconfig.h +crtbegin.po: tm.h +crtbeginS.o: options.h +crtbeginS.o: tconfig.h +crtbeginS.o: tm.h +crtbeginS.po: options.h +crtbeginS.po: tconfig.h +crtbeginS.po: tm.h +crtbeginT.o: options.h +crtbeginT.o: tconfig.h +crtbeginT.o: tm.h +crtbeginT.po: options.h +crtbeginT.po: tconfig.h +crtbeginT.po: tm.h +crtend.o: options.h +crtend.o: tconfig.h +crtend.o: tm.h +crtend.po: options.h +crtend.po: tconfig.h +crtend.po: tm.h +crtendS.o: options.h +crtendS.o: tconfig.h +crtendS.o: tm.h +crtendS.po: options.h +crtendS.po: tconfig.h +crtendS.po: tm.h +.endif diff --git a/gnu/lib/libdialog/Makefile.depend b/gnu/lib/libdialog/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/gnu/lib/libdialog/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/lib/libgcc/Makefile.depend b/gnu/lib/libgcc/Makefile.depend new file mode 100644 index 000000000000..32bc8db38a1a --- /dev/null +++ b/gnu/lib/libgcc/Makefile.depend @@ -0,0 +1,281 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +__main.So: options.h +__main.So: tconfig.h +__main.So: tm.h +_absvdi2.So: options.h +_absvdi2.So: tconfig.h +_absvdi2.So: tm.h +_absvsi2.So: options.h +_absvsi2.So: tconfig.h +_absvsi2.So: tm.h +_addvdi3.So: options.h +_addvdi3.So: tconfig.h +_addvdi3.So: tm.h +_addvsi3.So: options.h +_addvsi3.So: tconfig.h +_addvsi3.So: tm.h +_ashldi3.So: options.h +_ashldi3.So: tconfig.h +_ashldi3.So: tm.h +_ashrdi3.So: options.h +_ashrdi3.So: tconfig.h +_ashrdi3.So: tm.h +_clear_cache.So: options.h +_clear_cache.So: tconfig.h +_clear_cache.So: tm.h +_clz.So: options.h +_clz.So: tconfig.h +_clz.So: tm.h +_clzdi2.So: options.h +_clzdi2.So: tconfig.h +_clzdi2.So: tm.h +_clzsi2.So: options.h +_clzsi2.So: tconfig.h +_clzsi2.So: tm.h +_cmpdi2.So: options.h +_cmpdi2.So: tconfig.h +_cmpdi2.So: tm.h +_ctors.So: options.h +_ctors.So: tconfig.h +_ctors.So: tm.h +_ctzdi2.So: options.h +_ctzdi2.So: tconfig.h +_ctzdi2.So: tm.h +_ctzsi2.So: options.h +_ctzsi2.So: tconfig.h +_ctzsi2.So: tm.h +_divdc3.So: options.h +_divdc3.So: tconfig.h +_divdc3.So: tm.h +_divdi3.So: options.h +_divdi3.So: tconfig.h +_divdi3.So: tm.h +_divsc3.So: options.h +_divsc3.So: tconfig.h +_divsc3.So: tm.h +_divtc3.So: options.h +_divtc3.So: tconfig.h +_divtc3.So: tm.h +_divxc3.So: options.h +_divxc3.So: tconfig.h +_divxc3.So: tm.h +_enable_execute_stack.So: options.h +_enable_execute_stack.So: tconfig.h +_enable_execute_stack.So: tm.h +_ffsdi2.So: options.h +_ffsdi2.So: tconfig.h +_ffsdi2.So: tm.h +_ffssi2.So: options.h +_ffssi2.So: tconfig.h +_ffssi2.So: tm.h +_fixdfdi.So: options.h +_fixdfdi.So: tconfig.h +_fixdfdi.So: tm.h +_fixsfdi.So: options.h +_fixsfdi.So: tconfig.h +_fixsfdi.So: tm.h +_fixtfdi.So: options.h +_fixtfdi.So: tconfig.h +_fixtfdi.So: tm.h +_fixunsdfdi.So: options.h +_fixunsdfdi.So: tconfig.h +_fixunsdfdi.So: tm.h +_fixunsdfsi.So: options.h +_fixunsdfsi.So: tconfig.h +_fixunsdfsi.So: tm.h +_fixunssfdi.So: options.h +_fixunssfdi.So: tconfig.h +_fixunssfdi.So: tm.h +_fixunssfsi.So: options.h +_fixunssfsi.So: tconfig.h +_fixunssfsi.So: tm.h +_fixunstfdi.So: options.h +_fixunstfdi.So: tconfig.h +_fixunstfdi.So: tm.h +_fixunsxfdi.So: options.h +_fixunsxfdi.So: tconfig.h +_fixunsxfdi.So: tm.h +_fixunsxfsi.So: options.h +_fixunsxfsi.So: tconfig.h +_fixunsxfsi.So: tm.h +_fixxfdi.So: options.h +_fixxfdi.So: tconfig.h +_fixxfdi.So: tm.h +_floatdidf.So: options.h +_floatdidf.So: tconfig.h +_floatdidf.So: tm.h +_floatdisf.So: options.h +_floatdisf.So: tconfig.h +_floatdisf.So: tm.h +_floatditf.So: options.h +_floatditf.So: tconfig.h +_floatditf.So: tm.h +_floatdixf.So: options.h +_floatdixf.So: tconfig.h +_floatdixf.So: tm.h +_floatundidf.So: options.h +_floatundidf.So: tconfig.h +_floatundidf.So: tm.h +_floatundisf.So: options.h +_floatundisf.So: tconfig.h +_floatundisf.So: tm.h +_floatunditf.So: options.h +_floatunditf.So: tconfig.h +_floatunditf.So: tm.h +_floatundixf.So: options.h +_floatundixf.So: tconfig.h +_floatundixf.So: tm.h +_lshrdi3.So: options.h +_lshrdi3.So: tconfig.h +_lshrdi3.So: tm.h +_moddi3.So: options.h +_moddi3.So: tconfig.h +_moddi3.So: tm.h +_muldc3.So: options.h +_muldc3.So: tconfig.h +_muldc3.So: tm.h +_muldi3.So: options.h +_muldi3.So: tconfig.h +_muldi3.So: tm.h +_mulsc3.So: options.h +_mulsc3.So: tconfig.h +_mulsc3.So: tm.h +_multc3.So: options.h +_multc3.So: tconfig.h +_multc3.So: tm.h +_mulvdi3.So: options.h +_mulvdi3.So: tconfig.h +_mulvdi3.So: tm.h +_mulvsi3.So: options.h +_mulvsi3.So: tconfig.h +_mulvsi3.So: tm.h +_mulxc3.So: options.h +_mulxc3.So: tconfig.h +_mulxc3.So: tm.h +_negdi2.So: options.h +_negdi2.So: tconfig.h +_negdi2.So: tm.h +_negvdi2.So: options.h +_negvdi2.So: tconfig.h +_negvdi2.So: tm.h +_negvsi2.So: options.h +_negvsi2.So: tconfig.h +_negvsi2.So: tm.h +_paritydi2.So: options.h +_paritydi2.So: tconfig.h +_paritydi2.So: tm.h +_paritysi2.So: options.h +_paritysi2.So: tconfig.h +_paritysi2.So: tm.h +_popcount_tab.So: options.h +_popcount_tab.So: tconfig.h +_popcount_tab.So: tm.h +_popcountdi2.So: options.h +_popcountdi2.So: tconfig.h +_popcountdi2.So: tm.h +_popcountsi2.So: options.h +_popcountsi2.So: tconfig.h +_popcountsi2.So: tm.h +_powidf2.So: options.h +_powidf2.So: tconfig.h +_powidf2.So: tm.h +_powisf2.So: options.h +_powisf2.So: tconfig.h +_powisf2.So: tm.h +_powitf2.So: options.h +_powitf2.So: tconfig.h +_powitf2.So: tm.h +_powixf2.So: options.h +_powixf2.So: tconfig.h +_powixf2.So: tm.h +_subvdi3.So: options.h +_subvdi3.So: tconfig.h +_subvdi3.So: tm.h +_subvsi3.So: options.h +_subvsi3.So: tconfig.h +_subvsi3.So: tm.h +_trampoline.So: options.h +_trampoline.So: tconfig.h +_trampoline.So: tm.h +_ucmpdi2.So: options.h +_ucmpdi2.So: tconfig.h +_ucmpdi2.So: tm.h +_udiv_w_sdiv.So: options.h +_udiv_w_sdiv.So: tconfig.h +_udiv_w_sdiv.So: tm.h +_udivdi3.So: options.h +_udivdi3.So: tconfig.h +_udivdi3.So: tm.h +_udivmoddi4.So: options.h +_udivmoddi4.So: tconfig.h +_udivmoddi4.So: tm.h +_umoddi3.So: options.h +_umoddi3.So: tconfig.h +_umoddi3.So: tm.h +unwind-c.So: tconfig.h +unwind-c.So: unwind.h +unwind-c.o: tconfig.h +unwind-c.o: unwind.h +unwind-c.po: tconfig.h +unwind-c.po: unwind.h +unwind-dw2-fde-glibc.So: gthr-default.h +unwind-dw2-fde-glibc.So: options.h +unwind-dw2-fde-glibc.So: tconfig.h +unwind-dw2-fde-glibc.So: tm.h +unwind-dw2-fde-glibc.So: unwind.h +unwind-dw2-fde-glibc.o: gthr-default.h +unwind-dw2-fde-glibc.o: options.h +unwind-dw2-fde-glibc.o: tconfig.h +unwind-dw2-fde-glibc.o: tm.h +unwind-dw2-fde-glibc.o: unwind.h +unwind-dw2-fde-glibc.po: gthr-default.h +unwind-dw2-fde-glibc.po: options.h +unwind-dw2-fde-glibc.po: tconfig.h +unwind-dw2-fde-glibc.po: tm.h +unwind-dw2-fde-glibc.po: unwind.h +unwind-dw2.So: gthr-default.h +unwind-dw2.So: options.h +unwind-dw2.So: tconfig.h +unwind-dw2.So: tm.h +unwind-dw2.So: unwind.h +unwind-dw2.o: gthr-default.h +unwind-dw2.o: options.h +unwind-dw2.o: tconfig.h +unwind-dw2.o: tm.h +unwind-dw2.o: unwind.h +unwind-dw2.po: gthr-default.h +unwind-dw2.po: options.h +unwind-dw2.po: tconfig.h +unwind-dw2.po: tm.h +unwind-dw2.po: unwind.h +unwind-sjlj.So: gthr-default.h +unwind-sjlj.So: options.h +unwind-sjlj.So: tconfig.h +unwind-sjlj.So: tm.h +unwind-sjlj.So: unwind.h +unwind-sjlj.o: gthr-default.h +unwind-sjlj.o: options.h +unwind-sjlj.o: tconfig.h +unwind-sjlj.o: tm.h +unwind-sjlj.o: unwind.h +unwind-sjlj.po: gthr-default.h +unwind-sjlj.po: options.h +unwind-sjlj.po: tconfig.h +unwind-sjlj.po: tm.h +unwind-sjlj.po: unwind.h +.endif diff --git a/gnu/lib/libgcov/Makefile.depend b/gnu/lib/libgcov/Makefile.depend new file mode 100644 index 000000000000..23b931f4d058 --- /dev/null +++ b/gnu/lib/libgcov/Makefile.depend @@ -0,0 +1,128 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +_gcov.o: gcov-iov.h +_gcov.o: options.h +_gcov.o: tconfig.h +_gcov.o: tm.h +_gcov.po: gcov-iov.h +_gcov.po: options.h +_gcov.po: tconfig.h +_gcov.po: tm.h +_gcov_execl.o: gcov-iov.h +_gcov_execl.o: options.h +_gcov_execl.o: tconfig.h +_gcov_execl.o: tm.h +_gcov_execl.po: gcov-iov.h +_gcov_execl.po: options.h +_gcov_execl.po: tconfig.h +_gcov_execl.po: tm.h +_gcov_execle.o: gcov-iov.h +_gcov_execle.o: options.h +_gcov_execle.o: tconfig.h +_gcov_execle.o: tm.h +_gcov_execle.po: gcov-iov.h +_gcov_execle.po: options.h +_gcov_execle.po: tconfig.h +_gcov_execle.po: tm.h +_gcov_execlp.o: gcov-iov.h +_gcov_execlp.o: options.h +_gcov_execlp.o: tconfig.h +_gcov_execlp.o: tm.h +_gcov_execlp.po: gcov-iov.h +_gcov_execlp.po: options.h +_gcov_execlp.po: tconfig.h +_gcov_execlp.po: tm.h +_gcov_execv.o: gcov-iov.h +_gcov_execv.o: options.h +_gcov_execv.o: tconfig.h +_gcov_execv.o: tm.h +_gcov_execv.po: gcov-iov.h +_gcov_execv.po: options.h +_gcov_execv.po: tconfig.h +_gcov_execv.po: tm.h +_gcov_execve.o: gcov-iov.h +_gcov_execve.o: options.h +_gcov_execve.o: tconfig.h +_gcov_execve.o: tm.h +_gcov_execve.po: gcov-iov.h +_gcov_execve.po: options.h +_gcov_execve.po: tconfig.h +_gcov_execve.po: tm.h +_gcov_execvp.o: gcov-iov.h +_gcov_execvp.o: options.h +_gcov_execvp.o: tconfig.h +_gcov_execvp.o: tm.h +_gcov_execvp.po: gcov-iov.h +_gcov_execvp.po: options.h +_gcov_execvp.po: tconfig.h +_gcov_execvp.po: tm.h +_gcov_fork.o: gcov-iov.h +_gcov_fork.o: options.h +_gcov_fork.o: tconfig.h +_gcov_fork.o: tm.h +_gcov_fork.po: gcov-iov.h +_gcov_fork.po: options.h +_gcov_fork.po: tconfig.h +_gcov_fork.po: tm.h +_gcov_interval_profiler.o: gcov-iov.h +_gcov_interval_profiler.o: options.h +_gcov_interval_profiler.o: tconfig.h +_gcov_interval_profiler.o: tm.h +_gcov_interval_profiler.po: gcov-iov.h +_gcov_interval_profiler.po: options.h +_gcov_interval_profiler.po: tconfig.h +_gcov_interval_profiler.po: tm.h +_gcov_merge_add.o: gcov-iov.h +_gcov_merge_add.o: options.h +_gcov_merge_add.o: tconfig.h +_gcov_merge_add.o: tm.h +_gcov_merge_add.po: gcov-iov.h +_gcov_merge_add.po: options.h +_gcov_merge_add.po: tconfig.h +_gcov_merge_add.po: tm.h +_gcov_merge_delta.o: gcov-iov.h +_gcov_merge_delta.o: options.h +_gcov_merge_delta.o: tconfig.h +_gcov_merge_delta.o: tm.h +_gcov_merge_delta.po: gcov-iov.h +_gcov_merge_delta.po: options.h +_gcov_merge_delta.po: tconfig.h +_gcov_merge_delta.po: tm.h +_gcov_merge_single.o: gcov-iov.h +_gcov_merge_single.o: options.h +_gcov_merge_single.o: tconfig.h +_gcov_merge_single.o: tm.h +_gcov_merge_single.po: gcov-iov.h +_gcov_merge_single.po: options.h +_gcov_merge_single.po: tconfig.h +_gcov_merge_single.po: tm.h +_gcov_one_value_profiler.o: gcov-iov.h +_gcov_one_value_profiler.o: options.h +_gcov_one_value_profiler.o: tconfig.h +_gcov_one_value_profiler.o: tm.h +_gcov_one_value_profiler.po: gcov-iov.h +_gcov_one_value_profiler.po: options.h +_gcov_one_value_profiler.po: tconfig.h +_gcov_one_value_profiler.po: tm.h +_gcov_pow2_profiler.o: gcov-iov.h +_gcov_pow2_profiler.o: options.h +_gcov_pow2_profiler.o: tconfig.h +_gcov_pow2_profiler.o: tm.h +_gcov_pow2_profiler.po: gcov-iov.h +_gcov_pow2_profiler.po: options.h +_gcov_pow2_profiler.po: tconfig.h +_gcov_pow2_profiler.po: tm.h +.endif diff --git a/gnu/lib/libgomp/Makefile.depend b/gnu/lib/libgomp/Makefile.depend new file mode 100644 index 000000000000..b7fcf38c6a5b --- /dev/null +++ b/gnu/lib/libgomp/Makefile.depend @@ -0,0 +1,79 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +alloc.So: gstdint.h +alloc.o: gstdint.h +alloc.po: gstdint.h +bar.So: gstdint.h +bar.o: gstdint.h +bar.po: gstdint.h +barrier.So: gstdint.h +barrier.o: gstdint.h +barrier.po: gstdint.h +critical.So: gstdint.h +critical.o: gstdint.h +critical.po: gstdint.h +env.So: gstdint.h +env.So: libgomp_f.h +env.o: gstdint.h +env.o: libgomp_f.h +env.po: gstdint.h +env.po: libgomp_f.h +error.So: gstdint.h +error.o: gstdint.h +error.po: gstdint.h +fortran.So: gstdint.h +fortran.So: libgomp_f.h +fortran.o: gstdint.h +fortran.o: libgomp_f.h +fortran.po: gstdint.h +fortran.po: libgomp_f.h +iter.So: gstdint.h +iter.o: gstdint.h +iter.po: gstdint.h +lock.So: gstdint.h +lock.o: gstdint.h +lock.po: gstdint.h +loop.So: gstdint.h +loop.o: gstdint.h +loop.po: gstdint.h +ordered.So: gstdint.h +ordered.o: gstdint.h +ordered.po: gstdint.h +parallel.So: gstdint.h +parallel.o: gstdint.h +parallel.po: gstdint.h +proc.So: gstdint.h +proc.o: gstdint.h +proc.po: gstdint.h +sections.So: gstdint.h +sections.o: gstdint.h +sections.po: gstdint.h +sem.So: gstdint.h +sem.o: gstdint.h +sem.po: gstdint.h +single.So: gstdint.h +single.o: gstdint.h +single.po: gstdint.h +team.So: gstdint.h +team.o: gstdint.h +team.po: gstdint.h +time.So: gstdint.h +time.o: gstdint.h +time.po: gstdint.h +work.So: gstdint.h +work.o: gstdint.h +work.po: gstdint.h +.endif diff --git a/gnu/lib/libreadline/history/Makefile.depend b/gnu/lib/libreadline/history/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/gnu/lib/libreadline/history/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/lib/libreadline/readline/Makefile.depend b/gnu/lib/libreadline/readline/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/gnu/lib/libreadline/readline/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/lib/libregex/Makefile.depend b/gnu/lib/libregex/Makefile.depend new file mode 100644 index 000000000000..9ac344fab963 --- /dev/null +++ b/gnu/lib/libregex/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +gnuregex.So: gnuregex.c +gnuregex.o: gnuregex.c +gnuregex.po: gnuregex.c +.endif diff --git a/gnu/lib/libssp/Makefile.depend b/gnu/lib/libssp/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/gnu/lib/libssp/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/lib/libssp/libssp_nonshared/Makefile.depend b/gnu/lib/libssp/libssp_nonshared/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/lib/libssp/libssp_nonshared/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/lib/libstdc++/Makefile.depend b/gnu/lib/libstdc++/Makefile.depend new file mode 100644 index 000000000000..547329604d3f --- /dev/null +++ b/gnu/lib/libstdc++/Makefile.depend @@ -0,0 +1,65 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +atomicity.So: atomicity.cc +atomicity.o: atomicity.cc +atomicity.po: atomicity.cc +eh_alloc.So: unwind.h +eh_alloc.o: unwind.h +eh_alloc.po: unwind.h +eh_arm.So: unwind.h +eh_arm.o: unwind.h +eh_arm.po: unwind.h +eh_aux_runtime.So: unwind.h +eh_aux_runtime.o: unwind.h +eh_aux_runtime.po: unwind.h +eh_call.So: unwind.h +eh_call.o: unwind.h +eh_call.po: unwind.h +eh_catch.So: unwind.h +eh_catch.o: unwind.h +eh_catch.po: unwind.h +eh_exception.So: unwind.h +eh_exception.o: unwind.h +eh_exception.po: unwind.h +eh_globals.So: unwind.h +eh_globals.o: unwind.h +eh_globals.po: unwind.h +eh_personality.So: unwind.h +eh_personality.o: unwind.h +eh_personality.po: unwind.h +eh_term_handler.So: unwind.h +eh_term_handler.o: unwind.h +eh_term_handler.po: unwind.h +eh_terminate.So: unwind.h +eh_terminate.o: unwind.h +eh_terminate.po: unwind.h +eh_throw.So: unwind.h +eh_throw.o: unwind.h +eh_throw.po: unwind.h +eh_type.So: unwind.h +eh_type.o: unwind.h +eh_type.po: unwind.h +eh_unex_handler.So: unwind.h +eh_unex_handler.o: unwind.h +eh_unex_handler.po: unwind.h +pure.So: unwind.h +pure.o: unwind.h +pure.po: unwind.h +vec.So: unwind.h +vec.o: unwind.h +vec.po: unwind.h +.endif diff --git a/gnu/lib/libsupc++/Makefile.depend b/gnu/lib/libsupc++/Makefile.depend new file mode 100644 index 000000000000..ff261471e3a7 --- /dev/null +++ b/gnu/lib/libsupc++/Makefile.depend @@ -0,0 +1,61 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +eh_alloc.So: unwind.h +eh_alloc.o: unwind.h +eh_alloc.po: unwind.h +eh_arm.So: unwind.h +eh_arm.o: unwind.h +eh_arm.po: unwind.h +eh_aux_runtime.So: unwind.h +eh_aux_runtime.o: unwind.h +eh_aux_runtime.po: unwind.h +eh_call.So: unwind.h +eh_call.o: unwind.h +eh_call.po: unwind.h +eh_catch.So: unwind.h +eh_catch.o: unwind.h +eh_catch.po: unwind.h +eh_exception.So: unwind.h +eh_exception.o: unwind.h +eh_exception.po: unwind.h +eh_globals.So: unwind.h +eh_globals.o: unwind.h +eh_globals.po: unwind.h +eh_personality.So: unwind.h +eh_personality.o: unwind.h +eh_personality.po: unwind.h +eh_term_handler.So: unwind.h +eh_term_handler.o: unwind.h +eh_term_handler.po: unwind.h +eh_terminate.So: unwind.h +eh_terminate.o: unwind.h +eh_terminate.po: unwind.h +eh_throw.So: unwind.h +eh_throw.o: unwind.h +eh_throw.po: unwind.h +eh_type.So: unwind.h +eh_type.o: unwind.h +eh_type.po: unwind.h +eh_unex_handler.So: unwind.h +eh_unex_handler.o: unwind.h +eh_unex_handler.po: unwind.h +pure.So: unwind.h +pure.o: unwind.h +pure.po: unwind.h +vec.So: unwind.h +vec.o: unwind.h +vec.po: unwind.h +.endif diff --git a/gnu/usr.bin/binutils/addr2line/Makefile.depend b/gnu/usr.bin/binutils/addr2line/Makefile.depend new file mode 100644 index 000000000000..18e83881148f --- /dev/null +++ b/gnu/usr.bin/binutils/addr2line/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/ar/Makefile.depend b/gnu/usr.bin/binutils/ar/Makefile.depend new file mode 100644 index 000000000000..c4f26d419958 --- /dev/null +++ b/gnu/usr.bin/binutils/ar/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/as/Makefile.depend b/gnu/usr.bin/binutils/as/Makefile.depend new file mode 100644 index 000000000000..ee36db7f6a7b --- /dev/null +++ b/gnu/usr.bin/binutils/as/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libiberty \ + gnu/usr.bin/binutils/libopcodes \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/ld/Makefile.depend b/gnu/usr.bin/binutils/ld/Makefile.depend new file mode 100644 index 000000000000..24e5a8b34b91 --- /dev/null +++ b/gnu/usr.bin/binutils/ld/Makefile.depend @@ -0,0 +1,50 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +eelf_i386_fbsd.o: eelf_i386_fbsd.c +eelf_i386_fbsd.o: ldgram.h +eelf_i386_fbsd.po: eelf_i386_fbsd.c +eelf_i386_fbsd.po: ldgram.h +ldctor.o: ldgram.h +ldctor.po: ldgram.h +ldemul.o: ldemul-list.h +ldemul.po: ldemul-list.h +ldexp.o: ldgram.h +ldexp.po: ldgram.h +ldfile.o: ldgram.h +ldfile.po: ldgram.h +ldgram.o: ldgram.c +ldgram.po: ldgram.c +ldlang.o: ldgram.h +ldlang.po: ldgram.h +ldlex.o: ldgram.h +ldlex.o: ldlex.c +ldlex.po: ldgram.h +ldlex.po: ldlex.c +ldmain.o: ldgram.h +ldmain.po: ldgram.h +ldmisc.o: ldgram.h +ldmisc.po: ldgram.h +ldwrite.o: ldgram.h +ldwrite.po: ldgram.h +lexsup.o: ldgram.h +lexsup.po: ldgram.h +mri.o: ldgram.h +mri.po: ldgram.h +.endif diff --git a/gnu/usr.bin/binutils/libbfd/Makefile.depend b/gnu/usr.bin/binutils/libbfd/Makefile.depend new file mode 100644 index 000000000000..be067afcd8db --- /dev/null +++ b/gnu/usr.bin/binutils/libbfd/Makefile.depend @@ -0,0 +1,104 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +archive.o: config.h +archive.po: config.h +archive64.o: config.h +archive64.po: config.h +archures.o: config.h +archures.po: config.h +bfd.o: bfdver.h +bfd.o: config.h +bfd.po: bfdver.h +bfd.po: config.h +bfdio.o: config.h +bfdio.po: config.h +bfdwin.o: config.h +bfdwin.po: config.h +binary.o: config.h +binary.po: config.h +cache.o: config.h +cache.po: config.h +coffgen.o: config.h +coffgen.po: config.h +cofflink.o: config.h +cofflink.po: config.h +corefile.o: config.h +corefile.po: config.h +cpu-i386.o: config.h +cpu-i386.po: config.h +dwarf1.o: config.h +dwarf1.po: config.h +dwarf2.o: config.h +dwarf2.po: config.h +efi-app-ia32.o: config.h +efi-app-ia32.po: config.h +elf-attrs.o: config.h +elf-attrs.po: config.h +elf-eh-frame.o: config.h +elf-eh-frame.po: config.h +elf-strtab.o: config.h +elf-strtab.po: config.h +elf-vxworks.o: config.h +elf-vxworks.po: config.h +elf.o: config.h +elf.po: config.h +elf32-i386.o: config.h +elf32-i386.o: elf32-target.h +elf32-i386.po: config.h +elf32-i386.po: elf32-target.h +elf32.o: config.h +elf32.po: config.h +elflink.o: config.h +elflink.po: config.h +format.o: config.h +format.po: config.h +hash.o: config.h +hash.po: config.h +ihex.o: config.h +ihex.po: config.h +init.o: config.h +init.po: config.h +libbfd.o: config.h +libbfd.po: config.h +linker.o: config.h +linker.po: config.h +merge.o: config.h +merge.po: config.h +opncls.o: config.h +opncls.po: config.h +peigen.o: config.h +peigen.o: peigen.c +peigen.po: config.h +peigen.po: peigen.c +reloc.o: config.h +reloc.po: config.h +section.o: config.h +section.po: config.h +simple.o: config.h +simple.po: config.h +srec.o: config.h +srec.po: config.h +stabs.o: config.h +stabs.po: config.h +syms.o: config.h +syms.po: config.h +targets.o: config.h +targets.o: targmatch.h +targets.po: config.h +targets.po: targmatch.h +tekhex.o: config.h +tekhex.po: config.h +.endif diff --git a/gnu/usr.bin/binutils/libbinutils/Makefile.depend b/gnu/usr.bin/binutils/libbinutils/Makefile.depend new file mode 100644 index 000000000000..c3c47561d383 --- /dev/null +++ b/gnu/usr.bin/binutils/libbinutils/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/usr.bin/binutils/libbfd \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +arlex.o: arlex.c +arlex.o: arparse.h +arlex.po: arlex.c +arlex.po: arparse.h +arparse.o: arparse.c +arparse.po: arparse.c +.endif diff --git a/gnu/usr.bin/binutils/libiberty/Makefile.depend b/gnu/usr.bin/binutils/libiberty/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/gnu/usr.bin/binutils/libiberty/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/libopcodes/Makefile.depend b/gnu/usr.bin/binutils/libopcodes/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/gnu/usr.bin/binutils/libopcodes/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/nm/Makefile.depend b/gnu/usr.bin/binutils/nm/Makefile.depend new file mode 100644 index 000000000000..18e83881148f --- /dev/null +++ b/gnu/usr.bin/binutils/nm/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/objcopy/Makefile.depend b/gnu/usr.bin/binutils/objcopy/Makefile.depend new file mode 100644 index 000000000000..18e83881148f --- /dev/null +++ b/gnu/usr.bin/binutils/objcopy/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/objdump/Makefile.depend b/gnu/usr.bin/binutils/objdump/Makefile.depend new file mode 100644 index 000000000000..ba1a3be8ed85 --- /dev/null +++ b/gnu/usr.bin/binutils/objdump/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/libiberty \ + gnu/usr.bin/binutils/libopcodes \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/ranlib/Makefile.depend b/gnu/usr.bin/binutils/ranlib/Makefile.depend new file mode 100644 index 000000000000..c4f26d419958 --- /dev/null +++ b/gnu/usr.bin/binutils/ranlib/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/readelf/Makefile.depend b/gnu/usr.bin/binutils/readelf/Makefile.depend new file mode 100644 index 000000000000..18e83881148f --- /dev/null +++ b/gnu/usr.bin/binutils/readelf/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/size/Makefile.depend b/gnu/usr.bin/binutils/size/Makefile.depend new file mode 100644 index 000000000000..18e83881148f --- /dev/null +++ b/gnu/usr.bin/binutils/size/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/strings/Makefile.depend b/gnu/usr.bin/binutils/strings/Makefile.depend new file mode 100644 index 000000000000..18e83881148f --- /dev/null +++ b/gnu/usr.bin/binutils/strings/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/binutils/strip/Makefile.depend b/gnu/usr.bin/binutils/strip/Makefile.depend new file mode 100644 index 000000000000..18e83881148f --- /dev/null +++ b/gnu/usr.bin/binutils/strip/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cc/c++/Makefile.depend b/gnu/usr.bin/cc/c++/Makefile.depend new file mode 100644 index 000000000000..e0c846e62e61 --- /dev/null +++ b/gnu/usr.bin/cc/c++/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/cc/cc_tools \ + gnu/usr.bin/cc/libcpp \ + gnu/usr.bin/cc/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cc/c++filt/Makefile.depend b/gnu/usr.bin/cc/c++filt/Makefile.depend new file mode 100644 index 000000000000..763be51c55b7 --- /dev/null +++ b/gnu/usr.bin/cc/c++filt/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/cc/cc_tools \ + gnu/usr.bin/cc/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cc/cc/Makefile.depend b/gnu/usr.bin/cc/cc/Makefile.depend new file mode 100644 index 000000000000..ce7738d1ce5f --- /dev/null +++ b/gnu/usr.bin/cc/cc/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/usr.bin/cc/cc_tools \ + gnu/usr.bin/cc/libcpp \ + gnu/usr.bin/cc/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cc/cc1/Makefile.depend b/gnu/usr.bin/cc/cc1/Makefile.depend new file mode 100644 index 000000000000..2e76ab713a5a --- /dev/null +++ b/gnu/usr.bin/cc/cc1/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/usr.bin/cc/cc_int \ + gnu/usr.bin/cc/cc_tools \ + gnu/usr.bin/cc/libcpp \ + gnu/usr.bin/cc/libdecnumber \ + gnu/usr.bin/cc/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +cc1-checksum.o: cc1-checksum.c +cc1-checksum.po: cc1-checksum.c +.endif diff --git a/gnu/usr.bin/cc/cc1plus/Makefile.depend b/gnu/usr.bin/cc/cc1plus/Makefile.depend new file mode 100644 index 000000000000..4d8689895e58 --- /dev/null +++ b/gnu/usr.bin/cc/cc1plus/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/usr.bin/cc/cc_int \ + gnu/usr.bin/cc/cc_tools \ + gnu/usr.bin/cc/libcpp \ + gnu/usr.bin/cc/libdecnumber \ + gnu/usr.bin/cc/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +cc1plus-checksum.o: cc1plus-checksum.c +cc1plus-checksum.po: cc1plus-checksum.c +except.o: cfns.h +except.po: cfns.h +.endif diff --git a/gnu/usr.bin/cc/cc_int/Makefile b/gnu/usr.bin/cc/cc_int/Makefile index 7082c3ea4238..e623107d08a6 100644 --- a/gnu/usr.bin/cc/cc_int/Makefile +++ b/gnu/usr.bin/cc/cc_int/Makefile @@ -98,4 +98,6 @@ SRCS+= ${OBJS-all:R:S/$/.c/g} toplev.o: toplev.c ${CC} ${CFLAGS} -DTARGET_NAME=\"${GCC_TARGET}\" -c ${.IMPSRC} +CLEANFILES+= ${OBJS-all} + .include diff --git a/gnu/usr.bin/cc/cc_int/Makefile.depend b/gnu/usr.bin/cc/cc_int/Makefile.depend new file mode 100644 index 000000000000..e722b3998782 --- /dev/null +++ b/gnu/usr.bin/cc/cc_int/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/usr.bin/cc/cc_tools \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cc/cc_tools/Makefile.depend b/gnu/usr.bin/cc/cc_tools/Makefile.depend new file mode 100644 index 000000000000..4e41c5bf1d61 --- /dev/null +++ b/gnu/usr.bin/cc/cc_tools/Makefile.depend @@ -0,0 +1,247 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +errors.o: bconfig.h +errors.po: bconfig.h +genattr.o: bconfig.h +genattr.o: insn-modes.h +genattr.o: options.h +genattr.o: tm.h +genattr.po: bconfig.h +genattr.po: insn-modes.h +genattr.po: options.h +genattr.po: tm.h +genattrtab.o: bconfig.h +genattrtab.o: insn-modes.h +genattrtab.o: options.h +genattrtab.o: tm.h +genattrtab.po: bconfig.h +genattrtab.po: insn-modes.h +genattrtab.po: options.h +genattrtab.po: tm.h +genautomata.o: bconfig.h +genautomata.o: insn-modes.h +genautomata.o: options.h +genautomata.o: tm.h +genautomata.po: bconfig.h +genautomata.po: insn-modes.h +genautomata.po: options.h +genautomata.po: tm.h +gencheck.o: bconfig.h +gencheck.o: gencheck.h +gencheck.o: options.h +gencheck.o: tm.h +gencheck.po: bconfig.h +gencheck.po: gencheck.h +gencheck.po: options.h +gencheck.po: tm.h +genchecksum.o: bconfig.h +genchecksum.po: bconfig.h +gencodes.o: bconfig.h +gencodes.o: insn-modes.h +gencodes.o: options.h +gencodes.o: tm.h +gencodes.po: bconfig.h +gencodes.po: insn-modes.h +gencodes.po: options.h +gencodes.po: tm.h +genconditions.o: bconfig.h +genconditions.o: insn-modes.h +genconditions.o: options.h +genconditions.o: tm.h +genconditions.po: bconfig.h +genconditions.po: insn-modes.h +genconditions.po: options.h +genconditions.po: tm.h +gencondmd.o: bconfig.h +gencondmd.o: gencondmd.c +gencondmd.o: insn-constants.h +gencondmd.o: insn-modes.h +gencondmd.o: options.h +gencondmd.o: tm-constrs.h +gencondmd.o: tm-preds.h +gencondmd.o: tm.h +gencondmd.o: tm_p.h +gencondmd.o: tree-check.h +gencondmd.po: bconfig.h +gencondmd.po: gencondmd.c +gencondmd.po: insn-constants.h +gencondmd.po: insn-modes.h +gencondmd.po: options.h +gencondmd.po: tm-constrs.h +gencondmd.po: tm-preds.h +gencondmd.po: tm.h +gencondmd.po: tm_p.h +gencondmd.po: tree-check.h +genconfig.o: bconfig.h +genconfig.o: insn-modes.h +genconfig.o: options.h +genconfig.o: tm.h +genconfig.po: bconfig.h +genconfig.po: insn-modes.h +genconfig.po: options.h +genconfig.po: tm.h +genconstants.o: bconfig.h +genconstants.o: insn-modes.h +genconstants.o: options.h +genconstants.o: tm.h +genconstants.po: bconfig.h +genconstants.po: insn-modes.h +genconstants.po: options.h +genconstants.po: tm.h +genemit.o: bconfig.h +genemit.o: insn-modes.h +genemit.o: options.h +genemit.o: tm.h +genemit.po: bconfig.h +genemit.po: insn-modes.h +genemit.po: options.h +genemit.po: tm.h +genextract.o: bconfig.h +genextract.o: insn-modes.h +genextract.o: options.h +genextract.o: tm.h +genextract.po: bconfig.h +genextract.po: insn-modes.h +genextract.po: options.h +genextract.po: tm.h +genflags.o: bconfig.h +genflags.o: insn-modes.h +genflags.o: options.h +genflags.o: tm.h +genflags.po: bconfig.h +genflags.po: insn-modes.h +genflags.po: options.h +genflags.po: tm.h +gengenrtl.o: bconfig.h +gengenrtl.po: bconfig.h +gengtype-lex.o: bconfig.h +gengtype-lex.o: gengtype-lex.c +gengtype-lex.o: gengtype-yacc.h +gengtype-lex.po: bconfig.h +gengtype-lex.po: gengtype-lex.c +gengtype-lex.po: gengtype-yacc.h +gengtype-yacc+%DIKED.o: bconfig.h +gengtype-yacc+%DIKED.o: gengtype-yacc+%DIKED.c +gengtype-yacc+%DIKED.o: options.h +gengtype-yacc+%DIKED.o: tm.h +gengtype-yacc+%DIKED.po: bconfig.h +gengtype-yacc+%DIKED.po: gengtype-yacc+%DIKED.c +gengtype-yacc+%DIKED.po: options.h +gengtype-yacc+%DIKED.po: tm.h +gengtype.o: bconfig.h +gengtype.o: gtyp-gen.h +gengtype.o: options.h +gengtype.o: tm.h +gengtype.po: bconfig.h +gengtype.po: gtyp-gen.h +gengtype.po: options.h +gengtype.po: tm.h +genmodes.o: bconfig.h +genmodes.po: bconfig.h +genopinit.o: bconfig.h +genopinit.o: insn-modes.h +genopinit.o: options.h +genopinit.o: tm.h +genopinit.po: bconfig.h +genopinit.po: insn-modes.h +genopinit.po: options.h +genopinit.po: tm.h +genoutput.o: bconfig.h +genoutput.o: insn-modes.h +genoutput.o: options.h +genoutput.o: tm.h +genoutput.po: bconfig.h +genoutput.po: insn-modes.h +genoutput.po: options.h +genoutput.po: tm.h +genpeep.o: bconfig.h +genpeep.o: insn-modes.h +genpeep.o: options.h +genpeep.o: tm.h +genpeep.po: bconfig.h +genpeep.po: insn-modes.h +genpeep.po: options.h +genpeep.po: tm.h +genpreds.o: bconfig.h +genpreds.o: insn-modes.h +genpreds.o: options.h +genpreds.o: tm.h +genpreds.po: bconfig.h +genpreds.po: insn-modes.h +genpreds.po: options.h +genpreds.po: tm.h +genrecog.o: bconfig.h +genrecog.o: insn-modes.h +genrecog.o: options.h +genrecog.o: tm.h +genrecog.po: bconfig.h +genrecog.po: insn-modes.h +genrecog.po: options.h +genrecog.po: tm.h +gensupport.o: bconfig.h +gensupport.o: insn-modes.h +gensupport.o: options.h +gensupport.o: tm.h +gensupport.po: bconfig.h +gensupport.po: insn-modes.h +gensupport.po: options.h +gensupport.po: tm.h +ggc-none.o: bconfig.h +ggc-none.o: gtype-desc.h +ggc-none.po: bconfig.h +ggc-none.po: gtype-desc.h +min-insn-modes.o: bconfig.h +min-insn-modes.o: insn-modes.h +min-insn-modes.o: min-insn-modes.c +min-insn-modes.po: bconfig.h +min-insn-modes.po: insn-modes.h +min-insn-modes.po: min-insn-modes.c +print-rtl.o: bconfig.h +print-rtl.o: insn-modes.h +print-rtl.o: options.h +print-rtl.o: tm.h +print-rtl.po: bconfig.h +print-rtl.po: insn-modes.h +print-rtl.po: options.h +print-rtl.po: tm.h +read-rtl.o: bconfig.h +read-rtl.o: insn-modes.h +read-rtl.o: options.h +read-rtl.o: tm.h +read-rtl.po: bconfig.h +read-rtl.po: insn-modes.h +read-rtl.po: options.h +read-rtl.po: tm.h +rtl.o: bconfig.h +rtl.o: gtype-desc.h +rtl.o: insn-modes.h +rtl.o: options.h +rtl.o: tm.h +rtl.po: bconfig.h +rtl.po: gtype-desc.h +rtl.po: insn-modes.h +rtl.po: options.h +rtl.po: tm.h +vec.o: bconfig.h +vec.o: gtype-desc.h +vec.o: insn-modes.h +vec.o: tree-check.h +vec.po: bconfig.h +vec.po: gtype-desc.h +vec.po: insn-modes.h +vec.po: tree-check.h +.endif diff --git a/gnu/usr.bin/cc/cpp/Makefile.depend b/gnu/usr.bin/cc/cpp/Makefile.depend new file mode 100644 index 000000000000..e0c846e62e61 --- /dev/null +++ b/gnu/usr.bin/cc/cpp/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/cc/cc_tools \ + gnu/usr.bin/cc/libcpp \ + gnu/usr.bin/cc/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cc/gcov/Makefile.depend b/gnu/usr.bin/cc/gcov/Makefile.depend new file mode 100644 index 000000000000..763be51c55b7 --- /dev/null +++ b/gnu/usr.bin/cc/gcov/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/cc/cc_tools \ + gnu/usr.bin/cc/libiberty \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cc/include/Makefile b/gnu/usr.bin/cc/include/Makefile index 1807a4836b32..169826246bb0 100644 --- a/gnu/usr.bin/cc/include/Makefile +++ b/gnu/usr.bin/cc/include/Makefile @@ -21,6 +21,4 @@ mm_malloc.h: pmm_malloc.h @cp ${.ALLSRC} ${.TARGET} CLEANFILES+= mm_malloc.h -.include -.include -.include +.include diff --git a/gnu/usr.bin/cc/include/Makefile.depend b/gnu/usr.bin/cc/include/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/cc/include/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cc/libcpp/Makefile.depend b/gnu/usr.bin/cc/libcpp/Makefile.depend new file mode 100644 index 000000000000..85a412b5bba9 --- /dev/null +++ b/gnu/usr.bin/cc/libcpp/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +init.o: localedir.h +init.po: localedir.h +.endif diff --git a/gnu/usr.bin/cc/libdecnumber/Makefile.depend b/gnu/usr.bin/cc/libdecnumber/Makefile.depend new file mode 100644 index 000000000000..e722b3998782 --- /dev/null +++ b/gnu/usr.bin/cc/libdecnumber/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/usr.bin/cc/cc_tools \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cc/libiberty/Makefile.depend b/gnu/usr.bin/cc/libiberty/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/gnu/usr.bin/cc/libiberty/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cvs/cvs/Makefile.depend b/gnu/usr.bin/cvs/cvs/Makefile.depend new file mode 100644 index 000000000000..710302cda5fe --- /dev/null +++ b/gnu/usr.bin/cvs/cvs/Makefile.depend @@ -0,0 +1,34 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libregex \ + gnu/usr.bin/cvs/lib \ + gnu/usr.bin/cvs/libdiff \ + include \ + include/arpa \ + include/gssapi \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libgssapi \ + lib/libmd \ + lib/libz \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cvs/cvsbug/Makefile.depend b/gnu/usr.bin/cvs/cvsbug/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/cvs/cvsbug/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/cvs/lib/Makefile.depend b/gnu/usr.bin/cvs/lib/Makefile.depend new file mode 100644 index 000000000000..0840c69a0436 --- /dev/null +++ b/gnu/usr.bin/cvs/lib/Makefile.depend @@ -0,0 +1,38 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +argmatch.o: config.h +argmatch.po: config.h +getdate.o: config.h +getdate.o: getdate.c +getdate.po: config.h +getdate.po: getdate.c +getline.o: config.h +getline.po: config.h +getopt.o: config.h +getopt.po: config.h +getopt1.o: config.h +getopt1.po: config.h +savecwd.o: config.h +savecwd.po: config.h +sighandle.o: config.h +sighandle.po: config.h +stripslash.o: config.h +stripslash.po: config.h +xgetwd.o: config.h +xgetwd.po: config.h +yesno.o: config.h +yesno.po: config.h +.endif diff --git a/gnu/usr.bin/cvs/libdiff/Makefile.depend b/gnu/usr.bin/cvs/libdiff/Makefile.depend new file mode 100644 index 000000000000..393ce879db82 --- /dev/null +++ b/gnu/usr.bin/cvs/libdiff/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libregex \ + gnu/usr.bin/cvs/lib \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/dialog/Makefile.depend b/gnu/usr.bin/dialog/Makefile.depend new file mode 100644 index 000000000000..3f1092bbda13 --- /dev/null +++ b/gnu/usr.bin/dialog/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libdialog \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/diff/Makefile.depend b/gnu/usr.bin/diff/Makefile.depend new file mode 100644 index 000000000000..361b8e1dfa6a --- /dev/null +++ b/gnu/usr.bin/diff/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libregex \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +context.o: context.c +context.po: context.c +diff.o: diff.c +diff.po: diff.c +.endif diff --git a/gnu/usr.bin/diff3/Makefile.depend b/gnu/usr.bin/diff3/Makefile.depend new file mode 100644 index 000000000000..8f3703470bbf --- /dev/null +++ b/gnu/usr.bin/diff3/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +diff3.o: diff3.c +diff3.po: diff3.c +.endif diff --git a/gnu/usr.bin/dtc/Makefile.depend b/gnu/usr.bin/dtc/Makefile.depend new file mode 100644 index 000000000000..ce49d2214540 --- /dev/null +++ b/gnu/usr.bin/dtc/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +dtc-lexer.lex.o: dtc-lexer.lex.c +dtc-lexer.lex.o: dtc-parser.tab.h +dtc-lexer.lex.po: dtc-lexer.lex.c +dtc-lexer.lex.po: dtc-parser.tab.h +dtc-parser.tab.o: dtc-parser.tab.c +dtc-parser.tab.po: dtc-parser.tab.c +dtc.o: version_gen.h +dtc.po: version_gen.h +.endif diff --git a/gnu/usr.bin/gdb/gdb/Makefile.depend b/gnu/usr.bin/gdb/gdb/Makefile.depend new file mode 100644 index 000000000000..f4044c218e19 --- /dev/null +++ b/gnu/usr.bin/gdb/gdb/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libreadline/readline \ + gnu/lib/libregex \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libiberty \ + gnu/usr.bin/binutils/libopcodes \ + gnu/usr.bin/gdb/libgdb \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +gdb.o: nm.h +gdb.o: tm.h +gdb.o: xm.h +gdb.po: nm.h +gdb.po: tm.h +gdb.po: xm.h +.endif diff --git a/gnu/usr.bin/gdb/gdbserver/Makefile.depend b/gnu/usr.bin/gdb/gdbserver/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/gnu/usr.bin/gdb/gdbserver/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/gdb/gdbtui/Makefile.depend b/gnu/usr.bin/gdb/gdbtui/Makefile.depend new file mode 100644 index 000000000000..1ced4733fc9e --- /dev/null +++ b/gnu/usr.bin/gdb/gdbtui/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libreadline/readline \ + gnu/lib/libregex \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libiberty \ + gnu/usr.bin/binutils/libopcodes \ + gnu/usr.bin/gdb/libgdb \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +tui-main.o: nm.h +tui-main.o: tm.h +tui-main.o: xm.h +tui-main.po: nm.h +tui-main.po: tm.h +tui-main.po: xm.h +.endif diff --git a/gnu/usr.bin/gdb/kgdb/Makefile.depend b/gnu/usr.bin/gdb/kgdb/Makefile.depend new file mode 100644 index 000000000000..1658b2d29b0c --- /dev/null +++ b/gnu/usr.bin/gdb/kgdb/Makefile.depend @@ -0,0 +1,58 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libreadline/readline \ + gnu/lib/libregex \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libiberty \ + gnu/usr.bin/binutils/libopcodes \ + gnu/usr.bin/gdb/libgdb \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + lib/msun \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +kld.o: nm.h +kld.o: tm.h +kld.o: xm.h +kld.po: nm.h +kld.po: tm.h +kld.po: xm.h +kthr.o: nm.h +kthr.o: tm.h +kthr.o: xm.h +kthr.po: nm.h +kthr.po: tm.h +kthr.po: xm.h +main.o: nm.h +main.o: tm.h +main.o: xm.h +main.po: nm.h +main.po: tm.h +main.po: xm.h +trgt.o: nm.h +trgt.o: tm.h +trgt.o: xm.h +trgt.po: nm.h +trgt.po: tm.h +trgt.po: xm.h +trgt_i386.o: nm.h +trgt_i386.o: tm.h +trgt_i386.o: xm.h +trgt_i386.po: nm.h +trgt_i386.po: tm.h +trgt_i386.po: xm.h +.endif diff --git a/gnu/usr.bin/gdb/libgdb/Makefile.depend b/gnu/usr.bin/gdb/libgdb/Makefile.depend new file mode 100644 index 000000000000..182e7b411ef9 --- /dev/null +++ b/gnu/usr.bin/gdb/libgdb/Makefile.depend @@ -0,0 +1,1201 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libreadline/readline \ + include \ + include/arpa \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +annotate.o: nm.h +annotate.o: tm.h +annotate.o: xm.h +annotate.po: nm.h +annotate.po: tm.h +annotate.po: xm.h +arch-utils.o: nm.h +arch-utils.o: tm.h +arch-utils.o: xm.h +arch-utils.po: nm.h +arch-utils.po: tm.h +arch-utils.po: xm.h +auxv.o: nm.h +auxv.o: tm.h +auxv.o: xm.h +auxv.po: nm.h +auxv.po: tm.h +auxv.po: xm.h +ax-gdb.o: nm.h +ax-gdb.o: tm.h +ax-gdb.o: xm.h +ax-gdb.po: nm.h +ax-gdb.po: tm.h +ax-gdb.po: xm.h +ax-general.o: nm.h +ax-general.o: tm.h +ax-general.o: xm.h +ax-general.po: nm.h +ax-general.po: tm.h +ax-general.po: xm.h +bcache.o: nm.h +bcache.o: tm.h +bcache.o: xm.h +bcache.po: nm.h +bcache.po: tm.h +bcache.po: xm.h +bfd-target.o: nm.h +bfd-target.o: tm.h +bfd-target.o: xm.h +bfd-target.po: nm.h +bfd-target.po: tm.h +bfd-target.po: xm.h +block.o: nm.h +block.o: tm.h +block.o: xm.h +block.po: nm.h +block.po: tm.h +block.po: xm.h +blockframe.o: nm.h +blockframe.o: tm.h +blockframe.o: xm.h +blockframe.po: nm.h +blockframe.po: tm.h +blockframe.po: xm.h +breakpoint.o: nm.h +breakpoint.o: tm.h +breakpoint.o: xm.h +breakpoint.po: nm.h +breakpoint.po: tm.h +breakpoint.po: xm.h +buildsym.o: nm.h +buildsym.o: tm.h +buildsym.o: xm.h +buildsym.po: nm.h +buildsym.po: tm.h +buildsym.po: xm.h +c-exp.o: c-exp.c +c-exp.o: nm.h +c-exp.o: tm.h +c-exp.o: xm.h +c-exp.po: c-exp.c +c-exp.po: nm.h +c-exp.po: tm.h +c-exp.po: xm.h +c-lang.o: nm.h +c-lang.o: tm.h +c-lang.o: xm.h +c-lang.po: nm.h +c-lang.po: tm.h +c-lang.po: xm.h +c-typeprint.o: nm.h +c-typeprint.o: tm.h +c-typeprint.o: xm.h +c-typeprint.po: nm.h +c-typeprint.po: tm.h +c-typeprint.po: xm.h +c-valprint.o: nm.h +c-valprint.o: tm.h +c-valprint.o: xm.h +c-valprint.po: nm.h +c-valprint.po: tm.h +c-valprint.po: xm.h +charset.o: nm.h +charset.o: tm.h +charset.o: xm.h +charset.po: nm.h +charset.po: tm.h +charset.po: xm.h +cli-cmds.o: nm.h +cli-cmds.o: tm.h +cli-cmds.o: xm.h +cli-cmds.po: nm.h +cli-cmds.po: tm.h +cli-cmds.po: xm.h +cli-decode.o: nm.h +cli-decode.o: tm.h +cli-decode.o: xm.h +cli-decode.po: nm.h +cli-decode.po: tm.h +cli-decode.po: xm.h +cli-dump.o: nm.h +cli-dump.o: tm.h +cli-dump.o: xm.h +cli-dump.po: nm.h +cli-dump.po: tm.h +cli-dump.po: xm.h +cli-interp.o: nm.h +cli-interp.o: tm.h +cli-interp.o: xm.h +cli-interp.po: nm.h +cli-interp.po: tm.h +cli-interp.po: xm.h +cli-logging.o: nm.h +cli-logging.o: tm.h +cli-logging.o: xm.h +cli-logging.po: nm.h +cli-logging.po: tm.h +cli-logging.po: xm.h +cli-out.o: nm.h +cli-out.o: tm.h +cli-out.o: xm.h +cli-out.po: nm.h +cli-out.po: tm.h +cli-out.po: xm.h +cli-script.o: nm.h +cli-script.o: tm.h +cli-script.o: xm.h +cli-script.po: nm.h +cli-script.po: tm.h +cli-script.po: xm.h +cli-setshow.o: nm.h +cli-setshow.o: tm.h +cli-setshow.o: xm.h +cli-setshow.po: nm.h +cli-setshow.po: tm.h +cli-setshow.po: xm.h +cli-utils.o: nm.h +cli-utils.o: tm.h +cli-utils.o: xm.h +cli-utils.po: nm.h +cli-utils.po: tm.h +cli-utils.po: xm.h +coff-pe-read.o: nm.h +coff-pe-read.o: tm.h +coff-pe-read.o: xm.h +coff-pe-read.po: nm.h +coff-pe-read.po: tm.h +coff-pe-read.po: xm.h +coffread.o: nm.h +coffread.o: tm.h +coffread.o: xm.h +coffread.po: nm.h +coffread.po: tm.h +coffread.po: xm.h +complaints.o: nm.h +complaints.o: tm.h +complaints.o: xm.h +complaints.po: nm.h +complaints.po: tm.h +complaints.po: xm.h +completer.o: nm.h +completer.o: tm.h +completer.o: xm.h +completer.po: nm.h +completer.po: tm.h +completer.po: xm.h +copying.o: nm.h +copying.o: tm.h +copying.o: xm.h +copying.po: nm.h +copying.po: tm.h +copying.po: xm.h +corefile.o: nm.h +corefile.o: tm.h +corefile.o: xm.h +corefile.po: nm.h +corefile.po: tm.h +corefile.po: xm.h +corelow.o: nm.h +corelow.o: tm.h +corelow.o: xm.h +corelow.po: nm.h +corelow.po: tm.h +corelow.po: xm.h +cp-abi.o: nm.h +cp-abi.o: tm.h +cp-abi.o: xm.h +cp-abi.po: nm.h +cp-abi.po: tm.h +cp-abi.po: xm.h +cp-namespace.o: nm.h +cp-namespace.o: tm.h +cp-namespace.o: xm.h +cp-namespace.po: nm.h +cp-namespace.po: tm.h +cp-namespace.po: xm.h +cp-support.o: nm.h +cp-support.o: tm.h +cp-support.o: xm.h +cp-support.po: nm.h +cp-support.po: tm.h +cp-support.po: xm.h +cp-valprint.o: nm.h +cp-valprint.o: tm.h +cp-valprint.o: xm.h +cp-valprint.po: nm.h +cp-valprint.po: tm.h +cp-valprint.po: xm.h +dbxread.o: nm.h +dbxread.o: tm.h +dbxread.o: xm.h +dbxread.po: nm.h +dbxread.po: tm.h +dbxread.po: xm.h +dcache.o: nm.h +dcache.o: tm.h +dcache.o: xm.h +dcache.po: nm.h +dcache.po: tm.h +dcache.po: xm.h +demangle.o: nm.h +demangle.o: tm.h +demangle.o: xm.h +demangle.po: nm.h +demangle.po: tm.h +demangle.po: xm.h +dictionary.o: nm.h +dictionary.o: tm.h +dictionary.o: xm.h +dictionary.po: nm.h +dictionary.po: tm.h +dictionary.po: xm.h +disasm.o: nm.h +disasm.o: tm.h +disasm.o: xm.h +disasm.po: nm.h +disasm.po: tm.h +disasm.po: xm.h +doublest.o: nm.h +doublest.o: tm.h +doublest.o: xm.h +doublest.po: nm.h +doublest.po: tm.h +doublest.po: xm.h +dummy-frame.o: nm.h +dummy-frame.o: tm.h +dummy-frame.o: xm.h +dummy-frame.po: nm.h +dummy-frame.po: tm.h +dummy-frame.po: xm.h +dwarf2-frame.o: nm.h +dwarf2-frame.o: tm.h +dwarf2-frame.o: xm.h +dwarf2-frame.po: nm.h +dwarf2-frame.po: tm.h +dwarf2-frame.po: xm.h +dwarf2expr.o: nm.h +dwarf2expr.o: tm.h +dwarf2expr.o: xm.h +dwarf2expr.po: nm.h +dwarf2expr.po: tm.h +dwarf2expr.po: xm.h +dwarf2loc.o: nm.h +dwarf2loc.o: tm.h +dwarf2loc.o: xm.h +dwarf2loc.po: nm.h +dwarf2loc.po: tm.h +dwarf2loc.po: xm.h +dwarf2read.o: nm.h +dwarf2read.o: tm.h +dwarf2read.o: xm.h +dwarf2read.po: nm.h +dwarf2read.po: tm.h +dwarf2read.po: xm.h +dwarfread.o: nm.h +dwarfread.o: tm.h +dwarfread.o: xm.h +dwarfread.po: nm.h +dwarfread.po: tm.h +dwarfread.po: xm.h +elfread.o: nm.h +elfread.o: tm.h +elfread.o: xm.h +elfread.po: nm.h +elfread.po: tm.h +elfread.po: xm.h +environ.o: nm.h +environ.o: tm.h +environ.o: xm.h +environ.po: nm.h +environ.po: tm.h +environ.po: xm.h +eval.o: nm.h +eval.o: tm.h +eval.o: xm.h +eval.po: nm.h +eval.po: tm.h +eval.po: xm.h +event-loop.o: nm.h +event-loop.o: tm.h +event-loop.o: xm.h +event-loop.po: nm.h +event-loop.po: tm.h +event-loop.po: xm.h +event-top.o: nm.h +event-top.o: tm.h +event-top.o: xm.h +event-top.po: nm.h +event-top.po: tm.h +event-top.po: xm.h +exec.o: nm.h +exec.o: tm.h +exec.o: xm.h +exec.po: nm.h +exec.po: tm.h +exec.po: xm.h +expprint.o: nm.h +expprint.o: tm.h +expprint.o: xm.h +expprint.po: nm.h +expprint.po: tm.h +expprint.po: xm.h +f-exp.o: f-exp.c +f-exp.o: nm.h +f-exp.o: tm.h +f-exp.o: xm.h +f-exp.po: f-exp.c +f-exp.po: nm.h +f-exp.po: tm.h +f-exp.po: xm.h +f-lang.o: nm.h +f-lang.o: tm.h +f-lang.o: xm.h +f-lang.po: nm.h +f-lang.po: tm.h +f-lang.po: xm.h +f-typeprint.o: nm.h +f-typeprint.o: tm.h +f-typeprint.o: xm.h +f-typeprint.po: nm.h +f-typeprint.po: tm.h +f-typeprint.po: xm.h +f-valprint.o: nm.h +f-valprint.o: tm.h +f-valprint.o: xm.h +f-valprint.po: nm.h +f-valprint.po: tm.h +f-valprint.po: xm.h +fbsd-proc.o: nm.h +fbsd-proc.o: tm.h +fbsd-proc.o: xm.h +fbsd-proc.po: nm.h +fbsd-proc.po: tm.h +fbsd-proc.po: xm.h +fbsd-threads.o: nm.h +fbsd-threads.o: tm.h +fbsd-threads.o: xm.h +fbsd-threads.po: nm.h +fbsd-threads.po: tm.h +fbsd-threads.po: xm.h +findvar.o: nm.h +findvar.o: tm.h +findvar.o: xm.h +findvar.po: nm.h +findvar.po: tm.h +findvar.po: xm.h +fork-child.o: nm.h +fork-child.o: tm.h +fork-child.o: xm.h +fork-child.po: nm.h +fork-child.po: tm.h +fork-child.po: xm.h +frame-base.o: nm.h +frame-base.o: tm.h +frame-base.o: xm.h +frame-base.po: nm.h +frame-base.po: tm.h +frame-base.po: xm.h +frame-unwind-kluge.o: frame-unwind-kluge.c +frame-unwind-kluge.o: nm.h +frame-unwind-kluge.o: tm.h +frame-unwind-kluge.o: xm.h +frame-unwind-kluge.po: frame-unwind-kluge.c +frame-unwind-kluge.po: nm.h +frame-unwind-kluge.po: tm.h +frame-unwind-kluge.po: xm.h +frame.o: nm.h +frame.o: tm.h +frame.o: xm.h +frame.po: nm.h +frame.po: tm.h +frame.po: xm.h +gcore.o: nm.h +gcore.o: tm.h +gcore.o: xm.h +gcore.po: nm.h +gcore.po: tm.h +gcore.po: xm.h +gdb-events.o: nm.h +gdb-events.o: tm.h +gdb-events.o: xm.h +gdb-events.po: nm.h +gdb-events.po: tm.h +gdb-events.po: xm.h +gdbarch.o: nm.h +gdbarch.o: tm.h +gdbarch.o: xm.h +gdbarch.po: nm.h +gdbarch.po: tm.h +gdbarch.po: xm.h +gdbtypes.o: nm.h +gdbtypes.o: tm.h +gdbtypes.o: xm.h +gdbtypes.po: nm.h +gdbtypes.po: tm.h +gdbtypes.po: xm.h +gnu-v2-abi.o: nm.h +gnu-v2-abi.o: tm.h +gnu-v2-abi.o: xm.h +gnu-v2-abi.po: nm.h +gnu-v2-abi.po: tm.h +gnu-v2-abi.po: xm.h +gnu-v3-abi.o: nm.h +gnu-v3-abi.o: tm.h +gnu-v3-abi.o: xm.h +gnu-v3-abi.po: nm.h +gnu-v3-abi.po: tm.h +gnu-v3-abi.po: xm.h +hpacc-abi.o: nm.h +hpacc-abi.o: tm.h +hpacc-abi.o: xm.h +hpacc-abi.po: nm.h +hpacc-abi.po: tm.h +hpacc-abi.po: xm.h +i386-nat.o: nm.h +i386-nat.o: tm.h +i386-nat.o: xm.h +i386-nat.po: nm.h +i386-nat.po: tm.h +i386-nat.po: xm.h +i386-tdep.o: nm.h +i386-tdep.o: tm.h +i386-tdep.o: xm.h +i386-tdep.po: nm.h +i386-tdep.po: tm.h +i386-tdep.po: xm.h +i386bsd-nat.o: nm.h +i386bsd-nat.o: tm.h +i386bsd-nat.o: xm.h +i386bsd-nat.po: nm.h +i386bsd-nat.po: tm.h +i386bsd-nat.po: xm.h +i386bsd-tdep.o: nm.h +i386bsd-tdep.o: tm.h +i386bsd-tdep.o: xm.h +i386bsd-tdep.po: nm.h +i386bsd-tdep.po: tm.h +i386bsd-tdep.po: xm.h +i386fbsd-nat.o: nm.h +i386fbsd-nat.o: tm.h +i386fbsd-nat.o: xm.h +i386fbsd-nat.po: nm.h +i386fbsd-nat.po: tm.h +i386fbsd-nat.po: xm.h +i386fbsd-tdep-fixed.o: i386fbsd-tdep-fixed.c +i386fbsd-tdep-fixed.o: nm.h +i386fbsd-tdep-fixed.o: tm.h +i386fbsd-tdep-fixed.o: xm.h +i386fbsd-tdep-fixed.po: i386fbsd-tdep-fixed.c +i386fbsd-tdep-fixed.po: nm.h +i386fbsd-tdep-fixed.po: tm.h +i386fbsd-tdep-fixed.po: xm.h +i387-tdep.o: nm.h +i387-tdep.o: tm.h +i387-tdep.o: xm.h +i387-tdep.po: nm.h +i387-tdep.po: tm.h +i387-tdep.po: xm.h +inf-loop.o: nm.h +inf-loop.o: tm.h +inf-loop.o: xm.h +inf-loop.po: nm.h +inf-loop.po: tm.h +inf-loop.po: xm.h +infcall.o: nm.h +infcall.o: tm.h +infcall.o: xm.h +infcall.po: nm.h +infcall.po: tm.h +infcall.po: xm.h +infcmd.o: nm.h +infcmd.o: tm.h +infcmd.o: xm.h +infcmd.po: nm.h +infcmd.po: tm.h +infcmd.po: xm.h +inflow.o: nm.h +inflow.o: tm.h +inflow.o: xm.h +inflow.po: nm.h +inflow.po: tm.h +inflow.po: xm.h +infptrace.o: nm.h +infptrace.o: tm.h +infptrace.o: xm.h +infptrace.po: nm.h +infptrace.po: tm.h +infptrace.po: xm.h +infrun.o: nm.h +infrun.o: tm.h +infrun.o: xm.h +infrun.po: nm.h +infrun.po: tm.h +infrun.po: xm.h +inftarg.o: nm.h +inftarg.o: tm.h +inftarg.o: xm.h +inftarg.po: nm.h +inftarg.po: tm.h +inftarg.po: xm.h +init.o: nm.h +init.o: tm.h +init.o: xm.h +init.po: nm.h +init.po: tm.h +init.po: xm.h +interps.o: nm.h +interps.o: tm.h +interps.o: xm.h +interps.po: nm.h +interps.po: tm.h +interps.po: xm.h +jv-exp.o: jv-exp.c +jv-exp.o: nm.h +jv-exp.o: tm.h +jv-exp.o: xm.h +jv-exp.po: jv-exp.c +jv-exp.po: nm.h +jv-exp.po: tm.h +jv-exp.po: xm.h +jv-lang.o: nm.h +jv-lang.o: tm.h +jv-lang.o: xm.h +jv-lang.po: nm.h +jv-lang.po: tm.h +jv-lang.po: xm.h +jv-typeprint.o: nm.h +jv-typeprint.o: tm.h +jv-typeprint.o: xm.h +jv-typeprint.po: nm.h +jv-typeprint.po: tm.h +jv-typeprint.po: xm.h +jv-valprint.o: nm.h +jv-valprint.o: tm.h +jv-valprint.o: xm.h +jv-valprint.po: nm.h +jv-valprint.po: tm.h +jv-valprint.po: xm.h +kod-cisco.o: nm.h +kod-cisco.o: tm.h +kod-cisco.o: xm.h +kod-cisco.po: nm.h +kod-cisco.po: tm.h +kod-cisco.po: xm.h +kod.o: nm.h +kod.o: tm.h +kod.o: xm.h +kod.po: nm.h +kod.po: tm.h +kod.po: xm.h +language.o: nm.h +language.o: tm.h +language.o: xm.h +language.po: nm.h +language.po: tm.h +language.po: xm.h +linespec.o: nm.h +linespec.o: tm.h +linespec.o: xm.h +linespec.po: nm.h +linespec.po: tm.h +linespec.po: xm.h +m2-exp.o: m2-exp.c +m2-exp.o: nm.h +m2-exp.o: tm.h +m2-exp.o: xm.h +m2-exp.po: m2-exp.c +m2-exp.po: nm.h +m2-exp.po: tm.h +m2-exp.po: xm.h +m2-lang.o: nm.h +m2-lang.o: tm.h +m2-lang.o: xm.h +m2-lang.po: nm.h +m2-lang.po: tm.h +m2-lang.po: xm.h +m2-typeprint.o: nm.h +m2-typeprint.o: tm.h +m2-typeprint.o: xm.h +m2-typeprint.po: nm.h +m2-typeprint.po: tm.h +m2-typeprint.po: xm.h +m2-valprint.o: nm.h +m2-valprint.o: tm.h +m2-valprint.o: xm.h +m2-valprint.po: nm.h +m2-valprint.po: tm.h +m2-valprint.po: xm.h +macrocmd.o: nm.h +macrocmd.o: tm.h +macrocmd.o: xm.h +macrocmd.po: nm.h +macrocmd.po: tm.h +macrocmd.po: xm.h +macroexp.o: nm.h +macroexp.o: tm.h +macroexp.o: xm.h +macroexp.po: nm.h +macroexp.po: tm.h +macroexp.po: xm.h +macroscope.o: nm.h +macroscope.o: tm.h +macroscope.o: xm.h +macroscope.po: nm.h +macroscope.po: tm.h +macroscope.po: xm.h +macrotab.o: nm.h +macrotab.o: tm.h +macrotab.o: xm.h +macrotab.po: nm.h +macrotab.po: tm.h +macrotab.po: xm.h +main.o: nm.h +main.o: tm.h +main.o: xm.h +main.po: nm.h +main.po: tm.h +main.po: xm.h +maint.o: nm.h +maint.o: tm.h +maint.o: xm.h +maint.po: nm.h +maint.po: tm.h +maint.po: xm.h +mdebugread.o: nm.h +mdebugread.o: tm.h +mdebugread.o: xm.h +mdebugread.po: nm.h +mdebugread.po: tm.h +mdebugread.po: xm.h +mem-break.o: nm.h +mem-break.o: tm.h +mem-break.o: xm.h +mem-break.po: nm.h +mem-break.po: tm.h +mem-break.po: xm.h +memattr.o: nm.h +memattr.o: tm.h +memattr.o: xm.h +memattr.po: nm.h +memattr.po: tm.h +memattr.po: xm.h +mi-cmd-break.o: nm.h +mi-cmd-break.o: tm.h +mi-cmd-break.o: xm.h +mi-cmd-break.po: nm.h +mi-cmd-break.po: tm.h +mi-cmd-break.po: xm.h +mi-cmd-disas.o: nm.h +mi-cmd-disas.o: tm.h +mi-cmd-disas.o: xm.h +mi-cmd-disas.po: nm.h +mi-cmd-disas.po: tm.h +mi-cmd-disas.po: xm.h +mi-cmd-env.o: nm.h +mi-cmd-env.o: tm.h +mi-cmd-env.o: xm.h +mi-cmd-env.po: nm.h +mi-cmd-env.po: tm.h +mi-cmd-env.po: xm.h +mi-cmd-file.o: nm.h +mi-cmd-file.o: tm.h +mi-cmd-file.o: xm.h +mi-cmd-file.po: nm.h +mi-cmd-file.po: tm.h +mi-cmd-file.po: xm.h +mi-cmd-stack.o: nm.h +mi-cmd-stack.o: tm.h +mi-cmd-stack.o: xm.h +mi-cmd-stack.po: nm.h +mi-cmd-stack.po: tm.h +mi-cmd-stack.po: xm.h +mi-cmd-var.o: nm.h +mi-cmd-var.o: tm.h +mi-cmd-var.o: xm.h +mi-cmd-var.po: nm.h +mi-cmd-var.po: tm.h +mi-cmd-var.po: xm.h +mi-cmds.o: nm.h +mi-cmds.o: tm.h +mi-cmds.o: xm.h +mi-cmds.po: nm.h +mi-cmds.po: tm.h +mi-cmds.po: xm.h +mi-console.o: nm.h +mi-console.o: tm.h +mi-console.o: xm.h +mi-console.po: nm.h +mi-console.po: tm.h +mi-console.po: xm.h +mi-getopt.o: nm.h +mi-getopt.o: tm.h +mi-getopt.o: xm.h +mi-getopt.po: nm.h +mi-getopt.po: tm.h +mi-getopt.po: xm.h +mi-interp.o: nm.h +mi-interp.o: tm.h +mi-interp.o: xm.h +mi-interp.po: nm.h +mi-interp.po: tm.h +mi-interp.po: xm.h +mi-main.o: nm.h +mi-main.o: tm.h +mi-main.o: xm.h +mi-main.po: nm.h +mi-main.po: tm.h +mi-main.po: xm.h +mi-out.o: nm.h +mi-out.o: tm.h +mi-out.o: xm.h +mi-out.po: nm.h +mi-out.po: tm.h +mi-out.po: xm.h +mi-parse.o: nm.h +mi-parse.o: tm.h +mi-parse.o: xm.h +mi-parse.po: nm.h +mi-parse.po: tm.h +mi-parse.po: xm.h +mi-symbol-cmds.o: nm.h +mi-symbol-cmds.o: tm.h +mi-symbol-cmds.o: xm.h +mi-symbol-cmds.po: nm.h +mi-symbol-cmds.po: tm.h +mi-symbol-cmds.po: xm.h +minsyms.o: nm.h +minsyms.o: tm.h +minsyms.o: xm.h +minsyms.po: nm.h +minsyms.po: tm.h +minsyms.po: xm.h +mipsread.o: nm.h +mipsread.o: tm.h +mipsread.o: xm.h +mipsread.po: nm.h +mipsread.po: tm.h +mipsread.po: xm.h +nlmread.o: nm.h +nlmread.o: tm.h +nlmread.o: xm.h +nlmread.po: nm.h +nlmread.po: tm.h +nlmread.po: xm.h +objc-exp.o: nm.h +objc-exp.o: objc-exp.c +objc-exp.o: tm.h +objc-exp.o: xm.h +objc-exp.po: nm.h +objc-exp.po: objc-exp.c +objc-exp.po: tm.h +objc-exp.po: xm.h +objc-lang.o: nm.h +objc-lang.o: tm.h +objc-lang.o: xm.h +objc-lang.po: nm.h +objc-lang.po: tm.h +objc-lang.po: xm.h +objfiles.o: nm.h +objfiles.o: tm.h +objfiles.o: xm.h +objfiles.po: nm.h +objfiles.po: tm.h +objfiles.po: xm.h +observer.o: nm.h +observer.o: tm.h +observer.o: xm.h +observer.po: nm.h +observer.po: tm.h +observer.po: xm.h +osabi.o: nm.h +osabi.o: tm.h +osabi.o: xm.h +osabi.po: nm.h +osabi.po: tm.h +osabi.po: xm.h +p-exp.o: nm.h +p-exp.o: p-exp.c +p-exp.o: tm.h +p-exp.o: xm.h +p-exp.po: nm.h +p-exp.po: p-exp.c +p-exp.po: tm.h +p-exp.po: xm.h +p-lang.o: nm.h +p-lang.o: tm.h +p-lang.o: xm.h +p-lang.po: nm.h +p-lang.po: tm.h +p-lang.po: xm.h +p-typeprint.o: nm.h +p-typeprint.o: tm.h +p-typeprint.o: xm.h +p-typeprint.po: nm.h +p-typeprint.po: tm.h +p-typeprint.po: xm.h +p-valprint.o: nm.h +p-valprint.o: tm.h +p-valprint.o: xm.h +p-valprint.po: nm.h +p-valprint.po: tm.h +p-valprint.po: xm.h +parse.o: nm.h +parse.o: tm.h +parse.o: xm.h +parse.po: nm.h +parse.po: tm.h +parse.po: xm.h +printcmd.o: nm.h +printcmd.o: tm.h +printcmd.o: xm.h +printcmd.po: nm.h +printcmd.po: tm.h +printcmd.po: xm.h +regcache.o: nm.h +regcache.o: tm.h +regcache.o: xm.h +regcache.po: nm.h +regcache.po: tm.h +regcache.po: xm.h +reggroups.o: nm.h +reggroups.o: tm.h +reggroups.o: xm.h +reggroups.po: nm.h +reggroups.po: tm.h +reggroups.po: xm.h +remote-fileio.o: nm.h +remote-fileio.o: tm.h +remote-fileio.o: xm.h +remote-fileio.po: nm.h +remote-fileio.po: tm.h +remote-fileio.po: xm.h +remote-utils.o: nm.h +remote-utils.o: tm.h +remote-utils.o: xm.h +remote-utils.po: nm.h +remote-utils.po: tm.h +remote-utils.po: xm.h +remote.o: nm.h +remote.o: tm.h +remote.o: xm.h +remote.po: nm.h +remote.po: tm.h +remote.po: xm.h +scm-exp.o: nm.h +scm-exp.o: tm.h +scm-exp.o: xm.h +scm-exp.po: nm.h +scm-exp.po: tm.h +scm-exp.po: xm.h +scm-lang.o: nm.h +scm-lang.o: tm.h +scm-lang.o: xm.h +scm-lang.po: nm.h +scm-lang.po: tm.h +scm-lang.po: xm.h +scm-valprint.o: nm.h +scm-valprint.o: tm.h +scm-valprint.o: xm.h +scm-valprint.po: nm.h +scm-valprint.po: tm.h +scm-valprint.po: xm.h +sentinel-frame.o: nm.h +sentinel-frame.o: tm.h +sentinel-frame.o: xm.h +sentinel-frame.po: nm.h +sentinel-frame.po: tm.h +sentinel-frame.po: xm.h +ser-pipe.o: nm.h +ser-pipe.o: tm.h +ser-pipe.o: xm.h +ser-pipe.po: nm.h +ser-pipe.po: tm.h +ser-pipe.po: xm.h +ser-tcp.o: nm.h +ser-tcp.o: tm.h +ser-tcp.o: xm.h +ser-tcp.po: nm.h +ser-tcp.po: tm.h +ser-tcp.po: xm.h +ser-unix.o: nm.h +ser-unix.o: tm.h +ser-unix.o: xm.h +ser-unix.po: nm.h +ser-unix.po: tm.h +ser-unix.po: xm.h +serial.o: nm.h +serial.o: tm.h +serial.o: xm.h +serial.po: nm.h +serial.po: tm.h +serial.po: xm.h +signals.o: nm.h +signals.o: tm.h +signals.o: xm.h +signals.po: nm.h +signals.po: tm.h +signals.po: xm.h +solib-svr4.o: nm.h +solib-svr4.o: tm.h +solib-svr4.o: xm.h +solib-svr4.po: nm.h +solib-svr4.po: tm.h +solib-svr4.po: xm.h +solib.o: nm.h +solib.o: tm.h +solib.o: xm.h +solib.po: nm.h +solib.po: tm.h +solib.po: xm.h +source.o: nm.h +source.o: tm.h +source.o: xm.h +source.po: nm.h +source.po: tm.h +source.po: xm.h +stabsread.o: nm.h +stabsread.o: tm.h +stabsread.o: xm.h +stabsread.po: nm.h +stabsread.po: tm.h +stabsread.po: xm.h +stack.o: nm.h +stack.o: tm.h +stack.o: xm.h +stack.po: nm.h +stack.po: tm.h +stack.po: xm.h +std-regs.o: nm.h +std-regs.o: tm.h +std-regs.o: xm.h +std-regs.po: nm.h +std-regs.po: tm.h +std-regs.po: xm.h +symfile.o: nm.h +symfile.o: tm.h +symfile.o: xm.h +symfile.po: nm.h +symfile.po: tm.h +symfile.po: xm.h +symmisc.o: nm.h +symmisc.o: tm.h +symmisc.o: xm.h +symmisc.po: nm.h +symmisc.po: tm.h +symmisc.po: xm.h +symtab.o: nm.h +symtab.o: tm.h +symtab.o: xm.h +symtab.po: nm.h +symtab.po: tm.h +symtab.po: xm.h +target.o: nm.h +target.o: tm.h +target.o: xm.h +target.po: nm.h +target.po: tm.h +target.po: xm.h +thread.o: nm.h +thread.o: tm.h +thread.o: xm.h +thread.po: nm.h +thread.po: tm.h +thread.po: xm.h +top.o: nm.h +top.o: tm.h +top.o: xm.h +top.po: nm.h +top.po: tm.h +top.po: xm.h +tracepoint.o: nm.h +tracepoint.o: tm.h +tracepoint.o: xm.h +tracepoint.po: nm.h +tracepoint.po: tm.h +tracepoint.po: xm.h +trad-frame.o: nm.h +trad-frame.o: tm.h +trad-frame.o: xm.h +trad-frame.po: nm.h +trad-frame.po: tm.h +trad-frame.po: xm.h +tui-command.o: nm.h +tui-command.o: tm.h +tui-command.o: xm.h +tui-command.po: nm.h +tui-command.po: tm.h +tui-command.po: xm.h +tui-data.o: nm.h +tui-data.o: tm.h +tui-data.o: xm.h +tui-data.po: nm.h +tui-data.po: tm.h +tui-data.po: xm.h +tui-disasm.o: nm.h +tui-disasm.o: tm.h +tui-disasm.o: xm.h +tui-disasm.po: nm.h +tui-disasm.po: tm.h +tui-disasm.po: xm.h +tui-file.o: nm.h +tui-file.o: tm.h +tui-file.o: xm.h +tui-file.po: nm.h +tui-file.po: tm.h +tui-file.po: xm.h +tui-hooks.o: nm.h +tui-hooks.o: tm.h +tui-hooks.o: xm.h +tui-hooks.po: nm.h +tui-hooks.po: tm.h +tui-hooks.po: xm.h +tui-interp.o: nm.h +tui-interp.o: tm.h +tui-interp.o: xm.h +tui-interp.po: nm.h +tui-interp.po: tm.h +tui-interp.po: xm.h +tui-io.o: nm.h +tui-io.o: tm.h +tui-io.o: xm.h +tui-io.po: nm.h +tui-io.po: tm.h +tui-io.po: xm.h +tui-layout.o: nm.h +tui-layout.o: tm.h +tui-layout.o: xm.h +tui-layout.po: nm.h +tui-layout.po: tm.h +tui-layout.po: xm.h +tui-out.o: nm.h +tui-out.o: tm.h +tui-out.o: xm.h +tui-out.po: nm.h +tui-out.po: tm.h +tui-out.po: xm.h +tui-regs.o: nm.h +tui-regs.o: tm.h +tui-regs.o: xm.h +tui-regs.po: nm.h +tui-regs.po: tm.h +tui-regs.po: xm.h +tui-source.o: nm.h +tui-source.o: tm.h +tui-source.o: xm.h +tui-source.po: nm.h +tui-source.po: tm.h +tui-source.po: xm.h +tui-stack.o: nm.h +tui-stack.o: tm.h +tui-stack.o: xm.h +tui-stack.po: nm.h +tui-stack.po: tm.h +tui-stack.po: xm.h +tui-win.o: nm.h +tui-win.o: tm.h +tui-win.o: xm.h +tui-win.po: nm.h +tui-win.po: tm.h +tui-win.po: xm.h +tui-windata.o: nm.h +tui-windata.o: tm.h +tui-windata.o: xm.h +tui-windata.po: nm.h +tui-windata.po: tm.h +tui-windata.po: xm.h +tui-wingeneral.o: nm.h +tui-wingeneral.o: tm.h +tui-wingeneral.o: xm.h +tui-wingeneral.po: nm.h +tui-wingeneral.po: tm.h +tui-wingeneral.po: xm.h +tui-winsource.o: nm.h +tui-winsource.o: tm.h +tui-winsource.o: xm.h +tui-winsource.po: nm.h +tui-winsource.po: tm.h +tui-winsource.po: xm.h +tui.o: nm.h +tui.o: tm.h +tui.o: xm.h +tui.po: nm.h +tui.po: tm.h +tui.po: xm.h +typeprint.o: nm.h +typeprint.o: tm.h +typeprint.o: xm.h +typeprint.po: nm.h +typeprint.po: tm.h +typeprint.po: xm.h +ui-file.o: nm.h +ui-file.o: tm.h +ui-file.o: xm.h +ui-file.po: nm.h +ui-file.po: tm.h +ui-file.po: xm.h +ui-out.o: nm.h +ui-out.o: tm.h +ui-out.o: xm.h +ui-out.po: nm.h +ui-out.po: tm.h +ui-out.po: xm.h +user-regs.o: nm.h +user-regs.o: tm.h +user-regs.o: xm.h +user-regs.po: nm.h +user-regs.po: tm.h +user-regs.po: xm.h +utils.o: nm.h +utils.o: tm.h +utils.o: xm.h +utils.po: nm.h +utils.po: tm.h +utils.po: xm.h +valarith.o: nm.h +valarith.o: tm.h +valarith.o: xm.h +valarith.po: nm.h +valarith.po: tm.h +valarith.po: xm.h +valops.o: nm.h +valops.o: tm.h +valops.o: xm.h +valops.po: nm.h +valops.po: tm.h +valops.po: xm.h +valprint.o: nm.h +valprint.o: tm.h +valprint.o: xm.h +valprint.po: nm.h +valprint.po: tm.h +valprint.po: xm.h +values.o: nm.h +values.o: tm.h +values.o: xm.h +values.po: nm.h +values.po: tm.h +values.po: xm.h +varobj.o: nm.h +varobj.o: tm.h +varobj.o: xm.h +varobj.po: nm.h +varobj.po: tm.h +varobj.po: xm.h +version.o: version.c +version.po: version.c +wrapper.o: nm.h +wrapper.o: tm.h +wrapper.o: xm.h +wrapper.po: nm.h +wrapper.po: tm.h +wrapper.po: xm.h +.endif diff --git a/gnu/usr.bin/gperf/Makefile.depend b/gnu/usr.bin/gperf/Makefile.depend new file mode 100644 index 000000000000..14a72723ed1e --- /dev/null +++ b/gnu/usr.bin/gperf/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/grep/Makefile.depend b/gnu/usr.bin/grep/Makefile.depend new file mode 100644 index 000000000000..3f9e6767c014 --- /dev/null +++ b/gnu/usr.bin/grep/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libregex \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbz2 \ + lib/libc \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devX100-12/Makefile.depend b/gnu/usr.bin/groff/font/devX100-12/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devX100-12/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devX100/Makefile.depend b/gnu/usr.bin/groff/font/devX100/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devX100/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devX75-12/Makefile.depend b/gnu/usr.bin/groff/font/devX75-12/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devX75-12/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devX75/Makefile.depend b/gnu/usr.bin/groff/font/devX75/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devX75/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devascii/Makefile.depend b/gnu/usr.bin/groff/font/devascii/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devascii/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devcp1047/Makefile.depend b/gnu/usr.bin/groff/font/devcp1047/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devcp1047/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devdvi/Makefile.depend b/gnu/usr.bin/groff/font/devdvi/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devdvi/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devhtml/Makefile.depend b/gnu/usr.bin/groff/font/devhtml/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devhtml/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend b/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devlatin1/Makefile.depend b/gnu/usr.bin/groff/font/devlatin1/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devlatin1/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devlbp/Makefile.depend b/gnu/usr.bin/groff/font/devlbp/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devlbp/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devlj4/Makefile.depend b/gnu/usr.bin/groff/font/devlj4/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devlj4/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devps/Makefile.depend b/gnu/usr.bin/groff/font/devps/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devps/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/font/devutf8/Makefile.depend b/gnu/usr.bin/groff/font/devutf8/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/font/devutf8/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/man/Makefile.depend b/gnu/usr.bin/groff/man/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/man/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend new file mode 100644 index 000000000000..a5c44b5b3a5e --- /dev/null +++ b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libdriver \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend new file mode 100644 index 000000000000..a5c44b5b3a5e --- /dev/null +++ b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libdriver \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend new file mode 100644 index 000000000000..a5c44b5b3a5e --- /dev/null +++ b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libdriver \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend new file mode 100644 index 000000000000..a5c44b5b3a5e --- /dev/null +++ b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libdriver \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/devices/grops/Makefile.depend b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend new file mode 100644 index 000000000000..a5c44b5b3a5e --- /dev/null +++ b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libdriver \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend new file mode 100644 index 000000000000..a5c44b5b3a5e --- /dev/null +++ b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libdriver \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend b/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend b/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend b/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend new file mode 100644 index 000000000000..8ed89d7d53c1 --- /dev/null +++ b/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +version.o: version.cpp +version.po: version.cpp +.endif diff --git a/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend new file mode 100644 index 000000000000..971bd9543652 --- /dev/null +++ b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +eqn.o: eqn.cpp +eqn.po: eqn.cpp +lex.o: eqn_tab.h +lex.po: eqn_tab.h +.endif diff --git a/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend new file mode 100644 index 000000000000..65365863573a --- /dev/null +++ b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/preproc/html/Makefile.depend b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend new file mode 100644 index 000000000000..65365863573a --- /dev/null +++ b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend new file mode 100644 index 000000000000..769449ca663f --- /dev/null +++ b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +lex.o: pic_tab.h +lex.po: pic_tab.h +pic.o: pic.cpp +pic.po: pic.cpp +.endif diff --git a/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend new file mode 100644 index 000000000000..e026f846ad56 --- /dev/null +++ b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libbib \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +label.o: label.cpp +label.po: label.cpp +.endif diff --git a/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend b/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend new file mode 100644 index 000000000000..65365863573a --- /dev/null +++ b/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend new file mode 100644 index 000000000000..65365863573a --- /dev/null +++ b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/roff/groff/Makefile.depend b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend new file mode 100644 index 000000000000..65365863573a --- /dev/null +++ b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/roff/grog/Makefile.depend b/gnu/usr.bin/groff/src/roff/grog/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/src/roff/grog/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend b/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend b/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/roff/troff/Makefile.depend b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend new file mode 100644 index 000000000000..fbf42cfa30f3 --- /dev/null +++ b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +majorminor.o: majorminor.cpp +majorminor.po: majorminor.cpp +.endif diff --git a/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend new file mode 100644 index 000000000000..65365863573a --- /dev/null +++ b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend new file mode 100644 index 000000000000..65365863573a --- /dev/null +++ b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend new file mode 100644 index 000000000000..339cc48feaed --- /dev/null +++ b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libbib \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend new file mode 100644 index 000000000000..339cc48feaed --- /dev/null +++ b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libbib \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend new file mode 100644 index 000000000000..339cc48feaed --- /dev/null +++ b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libbib \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend new file mode 100644 index 000000000000..c9e6df177b83 --- /dev/null +++ b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend new file mode 100644 index 000000000000..65365863573a --- /dev/null +++ b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/usr.bin/groff/src/libs/libgroff \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/groff/tmac/Makefile.depend b/gnu/usr.bin/groff/tmac/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/tmac/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/patch/Makefile.depend b/gnu/usr.bin/patch/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/gnu/usr.bin/patch/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/rcs/ci/Makefile.depend b/gnu/usr.bin/rcs/ci/Makefile.depend new file mode 100644 index 000000000000..42c54115ed6a --- /dev/null +++ b/gnu/usr.bin/rcs/ci/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/rcs/lib \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/rcs/co/Makefile.depend b/gnu/usr.bin/rcs/co/Makefile.depend new file mode 100644 index 000000000000..42c54115ed6a --- /dev/null +++ b/gnu/usr.bin/rcs/co/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/rcs/lib \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/rcs/ident/Makefile.depend b/gnu/usr.bin/rcs/ident/Makefile.depend new file mode 100644 index 000000000000..42c54115ed6a --- /dev/null +++ b/gnu/usr.bin/rcs/ident/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/rcs/lib \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/rcs/lib/Makefile.depend b/gnu/usr.bin/rcs/lib/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/gnu/usr.bin/rcs/lib/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/rcs/merge/Makefile.depend b/gnu/usr.bin/rcs/merge/Makefile.depend new file mode 100644 index 000000000000..42c54115ed6a --- /dev/null +++ b/gnu/usr.bin/rcs/merge/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/rcs/lib \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/rcs/rcs/Makefile.depend b/gnu/usr.bin/rcs/rcs/Makefile.depend new file mode 100644 index 000000000000..42c54115ed6a --- /dev/null +++ b/gnu/usr.bin/rcs/rcs/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/rcs/lib \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/rcs/rcsclean/Makefile.depend b/gnu/usr.bin/rcs/rcsclean/Makefile.depend new file mode 100644 index 000000000000..42c54115ed6a --- /dev/null +++ b/gnu/usr.bin/rcs/rcsclean/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/rcs/lib \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/rcs/rcsdiff/Makefile.depend b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend new file mode 100644 index 000000000000..42c54115ed6a --- /dev/null +++ b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/rcs/lib \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend b/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/rcs/rcsmerge/Makefile.depend b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend new file mode 100644 index 000000000000..42c54115ed6a --- /dev/null +++ b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/rcs/lib \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/rcs/rlog/Makefile.depend b/gnu/usr.bin/rcs/rlog/Makefile.depend new file mode 100644 index 000000000000..42c54115ed6a --- /dev/null +++ b/gnu/usr.bin/rcs/rlog/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/rcs/lib \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/sdiff/Makefile.depend b/gnu/usr.bin/sdiff/Makefile.depend new file mode 100644 index 000000000000..a90cb9a9de68 --- /dev/null +++ b/gnu/usr.bin/sdiff/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +sdiff.o: sdiff.c +sdiff.po: sdiff.c +.endif diff --git a/gnu/usr.bin/send-pr/Makefile.depend b/gnu/usr.bin/send-pr/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/send-pr/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/sort/Makefile.depend b/gnu/usr.bin/sort/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/gnu/usr.bin/sort/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/texinfo/info/Makefile.depend b/gnu/usr.bin/texinfo/info/Makefile.depend new file mode 100644 index 000000000000..a9061f130d26 --- /dev/null +++ b/gnu/usr.bin/texinfo/info/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/texinfo/libtxi \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/texinfo/infokey/Makefile.depend b/gnu/usr.bin/texinfo/infokey/Makefile.depend new file mode 100644 index 000000000000..cdde7ce36dcc --- /dev/null +++ b/gnu/usr.bin/texinfo/infokey/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/texinfo/libtxi \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/texinfo/install-info/Makefile.depend b/gnu/usr.bin/texinfo/install-info/Makefile.depend new file mode 100644 index 000000000000..cdde7ce36dcc --- /dev/null +++ b/gnu/usr.bin/texinfo/install-info/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/texinfo/libtxi \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/texinfo/libtxi/Makefile.depend b/gnu/usr.bin/texinfo/libtxi/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/gnu/usr.bin/texinfo/libtxi/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/texinfo/makeinfo/Makefile.depend b/gnu/usr.bin/texinfo/makeinfo/Makefile.depend new file mode 100644 index 000000000000..cdde7ce36dcc --- /dev/null +++ b/gnu/usr.bin/texinfo/makeinfo/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/texinfo/libtxi \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/texinfo/texindex/Makefile.depend b/gnu/usr.bin/texinfo/texindex/Makefile.depend new file mode 100644 index 000000000000..cdde7ce36dcc --- /dev/null +++ b/gnu/usr.bin/texinfo/texindex/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/usr.bin/texinfo/libtxi \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/include/Makefile b/include/Makefile index d2f6d7f08853..c4ca316457d7 100644 --- a/include/Makefile +++ b/include/Makefile @@ -126,8 +126,38 @@ _MARCHS= ${MACHINE_CPUARCH} _MARCHS+= x86 .endif +.if ${MK_STAGING} != "no" +# tell bsd.incs.mk that we have it covered +stage_includes: +.endif + .include +.if ${MK_STAGING} != "no" && !defined(_SKIP_BUILD) +.if make(all) +DESTDIR= ${STAGE_OBJTOP} +# we want to keep this separate from the folk who +# do staging "normally" +INCLUDEDIR= /include + +all: stage_includes +installincludes: buildincludes +buildincludes: stage_prep + +stage_prep: + @mkdir -p ${DESTDIR}${INCLUDEDIR} + @touch $@ + +stage_includes: .dirdep installincludes + @find ${DESTDIR}${INCLUDEDIR} -type d | while read d; do \ + rm -f $$d/.dirdep; \ + { ln .dirdep $$d/.dirdep 2> /dev/null || \ + cp -p .dirdep $$d/.dirdep; }; \ + done + @touch $@ +.endif +.endif + installincludes: ${SHARED} ${SHARED}: compat @@ -140,11 +170,11 @@ compat: .endfor mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \ -f ${.CURDIR}/../etc/mtree/BSD.include.dist \ - -p ${DESTDIR}${INCLUDEDIR} + -p ${DESTDIR}${INCLUDEDIR} > /dev/null .if ${MK_BIND_LIBS} != "no" mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \ -f ${.CURDIR}/../etc/mtree/BIND.include.dist \ - -p ${DESTDIR}${INCLUDEDIR} + -p ${DESTDIR}${INCLUDEDIR} > /dev/null .endif copies: diff --git a/include/Makefile.depend b/include/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/include/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/include/arpa/Makefile b/include/arpa/Makefile index a480b31341e5..94c84e31ed08 100644 --- a/include/arpa/Makefile +++ b/include/arpa/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -NO_OBJ= INCS= ftp.h inet.h nameser.h nameser_compat.h telnet.h tftp.h INCSDIR=${INCLUDEDIR}/arpa diff --git a/include/arpa/Makefile.depend b/include/arpa/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/include/arpa/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/include/gssapi/Makefile b/include/gssapi/Makefile index 8fb643fb3b56..b8b8ddea6166 100644 --- a/include/gssapi/Makefile +++ b/include/gssapi/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -NO_OBJ= INCS= gssapi.h INCSDIR= ${INCLUDEDIR}/gssapi diff --git a/include/gssapi/Makefile.depend b/include/gssapi/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/include/gssapi/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/include/protocols/Makefile b/include/protocols/Makefile index ddd8f21dc912..a41f3540e2c1 100644 --- a/include/protocols/Makefile +++ b/include/protocols/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -NO_OBJ= INCS= dumprestore.h routed.h rwhod.h talkd.h timed.h INCSDIR=${INCLUDEDIR}/protocols diff --git a/include/protocols/Makefile.depend b/include/protocols/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/include/protocols/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/include/rpc/Makefile.depend b/include/rpc/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/include/rpc/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/include/rpcsvc/Makefile.depend b/include/rpcsvc/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/include/rpcsvc/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/include/xlocale/Makefile b/include/xlocale/Makefile index e45ddca8e84d..ed494f36b990 100644 --- a/include/xlocale/Makefile +++ b/include/xlocale/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -NO_OBJ= INCS= _ctype.h _inttypes.h _langinfo.h _locale.h _monetary.h _stdio.h\ _stdlib.h _string.h _time.h _wchar.h INCSDIR=${INCLUDEDIR}/xlocale diff --git a/include/xlocale/Makefile.depend b/include/xlocale/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/include/xlocale/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/Makefile b/kerberos5/Makefile index d87fa1682cb4..401957b32f25 100644 --- a/kerberos5/Makefile +++ b/kerberos5/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -SUBDIR= doc lib libexec usr.bin usr.sbin +SUBDIR= doc lib libexec tools usr.bin usr.sbin # These are the programs which depend on Kerberos. KPROGS= lib/libpam \ diff --git a/kerberos5/lib/libasn1/Makefile.depend b/kerberos5/lib/libasn1/Makefile.depend new file mode 100644 index 000000000000..92a41972f159 --- /dev/null +++ b/kerberos5/lib/libasn1/Makefile.depend @@ -0,0 +1,189 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libcom_err \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +asn1_cms_asn1.So: asn1_cms_asn1.c +asn1_cms_asn1.So: asn1_err.h +asn1_cms_asn1.So: cms_asn1-priv.h +asn1_cms_asn1.So: cms_asn1.h +asn1_cms_asn1.So: rfc2459_asn1.h +asn1_cms_asn1.o: asn1_cms_asn1.c +asn1_cms_asn1.o: asn1_err.h +asn1_cms_asn1.o: cms_asn1-priv.h +asn1_cms_asn1.o: cms_asn1.h +asn1_cms_asn1.o: rfc2459_asn1.h +asn1_cms_asn1.po: asn1_cms_asn1.c +asn1_cms_asn1.po: asn1_err.h +asn1_cms_asn1.po: cms_asn1-priv.h +asn1_cms_asn1.po: cms_asn1.h +asn1_cms_asn1.po: rfc2459_asn1.h +asn1_digest_asn1.So: asn1_digest_asn1.c +asn1_digest_asn1.So: asn1_err.h +asn1_digest_asn1.So: digest_asn1-priv.h +asn1_digest_asn1.So: digest_asn1.h +asn1_digest_asn1.So: krb5_asn1.h +asn1_digest_asn1.o: asn1_digest_asn1.c +asn1_digest_asn1.o: asn1_err.h +asn1_digest_asn1.o: digest_asn1-priv.h +asn1_digest_asn1.o: digest_asn1.h +asn1_digest_asn1.o: krb5_asn1.h +asn1_digest_asn1.po: asn1_digest_asn1.c +asn1_digest_asn1.po: asn1_err.h +asn1_digest_asn1.po: digest_asn1-priv.h +asn1_digest_asn1.po: digest_asn1.h +asn1_digest_asn1.po: krb5_asn1.h +asn1_err.So: asn1_err.c +asn1_err.So: asn1_err.h +asn1_err.o: asn1_err.c +asn1_err.o: asn1_err.h +asn1_err.po: asn1_err.c +asn1_err.po: asn1_err.h +asn1_krb5_asn1.So: asn1_err.h +asn1_krb5_asn1.So: asn1_krb5_asn1.c +asn1_krb5_asn1.So: krb5_asn1-priv.h +asn1_krb5_asn1.So: krb5_asn1.h +asn1_krb5_asn1.o: asn1_err.h +asn1_krb5_asn1.o: asn1_krb5_asn1.c +asn1_krb5_asn1.o: krb5_asn1-priv.h +asn1_krb5_asn1.o: krb5_asn1.h +asn1_krb5_asn1.po: asn1_err.h +asn1_krb5_asn1.po: asn1_krb5_asn1.c +asn1_krb5_asn1.po: krb5_asn1-priv.h +asn1_krb5_asn1.po: krb5_asn1.h +asn1_kx509_asn1.So: asn1_err.h +asn1_kx509_asn1.So: asn1_kx509_asn1.c +asn1_kx509_asn1.So: kx509_asn1-priv.h +asn1_kx509_asn1.So: kx509_asn1.h +asn1_kx509_asn1.o: asn1_err.h +asn1_kx509_asn1.o: asn1_kx509_asn1.c +asn1_kx509_asn1.o: kx509_asn1-priv.h +asn1_kx509_asn1.o: kx509_asn1.h +asn1_kx509_asn1.po: asn1_err.h +asn1_kx509_asn1.po: asn1_kx509_asn1.c +asn1_kx509_asn1.po: kx509_asn1-priv.h +asn1_kx509_asn1.po: kx509_asn1.h +asn1_pkcs12_asn1.So: asn1_err.h +asn1_pkcs12_asn1.So: asn1_pkcs12_asn1.c +asn1_pkcs12_asn1.So: cms_asn1.h +asn1_pkcs12_asn1.So: pkcs12_asn1-priv.h +asn1_pkcs12_asn1.So: pkcs12_asn1.h +asn1_pkcs12_asn1.So: rfc2459_asn1.h +asn1_pkcs12_asn1.o: asn1_err.h +asn1_pkcs12_asn1.o: asn1_pkcs12_asn1.c +asn1_pkcs12_asn1.o: cms_asn1.h +asn1_pkcs12_asn1.o: pkcs12_asn1-priv.h +asn1_pkcs12_asn1.o: pkcs12_asn1.h +asn1_pkcs12_asn1.o: rfc2459_asn1.h +asn1_pkcs12_asn1.po: asn1_err.h +asn1_pkcs12_asn1.po: asn1_pkcs12_asn1.c +asn1_pkcs12_asn1.po: cms_asn1.h +asn1_pkcs12_asn1.po: pkcs12_asn1-priv.h +asn1_pkcs12_asn1.po: pkcs12_asn1.h +asn1_pkcs12_asn1.po: rfc2459_asn1.h +asn1_pkcs8_asn1.So: asn1_err.h +asn1_pkcs8_asn1.So: asn1_pkcs8_asn1.c +asn1_pkcs8_asn1.So: pkcs8_asn1-priv.h +asn1_pkcs8_asn1.So: pkcs8_asn1.h +asn1_pkcs8_asn1.So: rfc2459_asn1.h +asn1_pkcs8_asn1.o: asn1_err.h +asn1_pkcs8_asn1.o: asn1_pkcs8_asn1.c +asn1_pkcs8_asn1.o: pkcs8_asn1-priv.h +asn1_pkcs8_asn1.o: pkcs8_asn1.h +asn1_pkcs8_asn1.o: rfc2459_asn1.h +asn1_pkcs8_asn1.po: asn1_err.h +asn1_pkcs8_asn1.po: asn1_pkcs8_asn1.c +asn1_pkcs8_asn1.po: pkcs8_asn1-priv.h +asn1_pkcs8_asn1.po: pkcs8_asn1.h +asn1_pkcs8_asn1.po: rfc2459_asn1.h +asn1_pkcs9_asn1.So: asn1_err.h +asn1_pkcs9_asn1.So: asn1_pkcs9_asn1.c +asn1_pkcs9_asn1.So: pkcs9_asn1-priv.h +asn1_pkcs9_asn1.So: pkcs9_asn1.h +asn1_pkcs9_asn1.o: asn1_err.h +asn1_pkcs9_asn1.o: asn1_pkcs9_asn1.c +asn1_pkcs9_asn1.o: pkcs9_asn1-priv.h +asn1_pkcs9_asn1.o: pkcs9_asn1.h +asn1_pkcs9_asn1.po: asn1_err.h +asn1_pkcs9_asn1.po: asn1_pkcs9_asn1.c +asn1_pkcs9_asn1.po: pkcs9_asn1-priv.h +asn1_pkcs9_asn1.po: pkcs9_asn1.h +asn1_pkinit_asn1.So: asn1_err.h +asn1_pkinit_asn1.So: asn1_pkinit_asn1.c +asn1_pkinit_asn1.So: cms_asn1.h +asn1_pkinit_asn1.So: krb5_asn1.h +asn1_pkinit_asn1.So: pkinit_asn1-priv.h +asn1_pkinit_asn1.So: pkinit_asn1.h +asn1_pkinit_asn1.So: rfc2459_asn1.h +asn1_pkinit_asn1.o: asn1_err.h +asn1_pkinit_asn1.o: asn1_pkinit_asn1.c +asn1_pkinit_asn1.o: cms_asn1.h +asn1_pkinit_asn1.o: krb5_asn1.h +asn1_pkinit_asn1.o: pkinit_asn1-priv.h +asn1_pkinit_asn1.o: pkinit_asn1.h +asn1_pkinit_asn1.o: rfc2459_asn1.h +asn1_pkinit_asn1.po: asn1_err.h +asn1_pkinit_asn1.po: asn1_pkinit_asn1.c +asn1_pkinit_asn1.po: cms_asn1.h +asn1_pkinit_asn1.po: krb5_asn1.h +asn1_pkinit_asn1.po: pkinit_asn1-priv.h +asn1_pkinit_asn1.po: pkinit_asn1.h +asn1_pkinit_asn1.po: rfc2459_asn1.h +asn1_rfc2459_asn1.So: asn1_err.h +asn1_rfc2459_asn1.So: asn1_rfc2459_asn1.c +asn1_rfc2459_asn1.So: rfc2459_asn1-priv.h +asn1_rfc2459_asn1.So: rfc2459_asn1.h +asn1_rfc2459_asn1.o: asn1_err.h +asn1_rfc2459_asn1.o: asn1_rfc2459_asn1.c +asn1_rfc2459_asn1.o: rfc2459_asn1-priv.h +asn1_rfc2459_asn1.o: rfc2459_asn1.h +asn1_rfc2459_asn1.po: asn1_err.h +asn1_rfc2459_asn1.po: asn1_rfc2459_asn1.c +asn1_rfc2459_asn1.po: rfc2459_asn1-priv.h +asn1_rfc2459_asn1.po: rfc2459_asn1.h +der.So: asn1_err.h +der.o: asn1_err.h +der.po: asn1_err.h +der_cmp.So: asn1_err.h +der_cmp.o: asn1_err.h +der_cmp.po: asn1_err.h +der_copy.So: asn1_err.h +der_copy.o: asn1_err.h +der_copy.po: asn1_err.h +der_format.So: asn1_err.h +der_format.o: asn1_err.h +der_format.po: asn1_err.h +der_free.So: asn1_err.h +der_free.o: asn1_err.h +der_free.po: asn1_err.h +der_get.So: asn1_err.h +der_get.o: asn1_err.h +der_get.po: asn1_err.h +der_length.So: asn1_err.h +der_length.o: asn1_err.h +der_length.po: asn1_err.h +der_put.So: asn1_err.h +der_put.o: asn1_err.h +der_put.po: asn1_err.h +extra.So: asn1_err.h +extra.o: asn1_err.h +extra.po: asn1_err.h +template.So: asn1_err.h +template.o: asn1_err.h +template.po: asn1_err.h +timegm.So: asn1_err.h +timegm.o: asn1_err.h +timegm.po: asn1_err.h +.endif diff --git a/kerberos5/lib/libgssapi_krb5/Makefile.depend b/kerberos5/lib/libgssapi_krb5/Makefile.depend new file mode 100644 index 000000000000..09b8d99f6861 --- /dev/null +++ b/kerberos5/lib/libgssapi_krb5/Makefile.depend @@ -0,0 +1,181 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + lib/libcom_err \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +8003.So: gkrb5_err.h +8003.o: gkrb5_err.h +8003.po: gkrb5_err.h +accept_sec_context.So: gkrb5_err.h +accept_sec_context.o: gkrb5_err.h +accept_sec_context.po: gkrb5_err.h +acquire_cred.So: gkrb5_err.h +acquire_cred.o: gkrb5_err.h +acquire_cred.po: gkrb5_err.h +add_cred.So: gkrb5_err.h +add_cred.o: gkrb5_err.h +add_cred.po: gkrb5_err.h +address_to_krb5addr.So: gkrb5_err.h +address_to_krb5addr.o: gkrb5_err.h +address_to_krb5addr.po: gkrb5_err.h +aeap.So: gkrb5_err.h +aeap.o: gkrb5_err.h +aeap.po: gkrb5_err.h +arcfour.So: gkrb5_err.h +arcfour.o: gkrb5_err.h +arcfour.po: gkrb5_err.h +authorize_localname.So: gkrb5_err.h +authorize_localname.o: gkrb5_err.h +authorize_localname.po: gkrb5_err.h +canonicalize_name.So: gkrb5_err.h +canonicalize_name.o: gkrb5_err.h +canonicalize_name.po: gkrb5_err.h +ccache_name.So: gkrb5_err.h +ccache_name.o: gkrb5_err.h +ccache_name.po: gkrb5_err.h +cfx.So: gkrb5_err.h +cfx.o: gkrb5_err.h +cfx.po: gkrb5_err.h +compare_name.So: gkrb5_err.h +compare_name.o: gkrb5_err.h +compare_name.po: gkrb5_err.h +compat.So: gkrb5_err.h +compat.o: gkrb5_err.h +compat.po: gkrb5_err.h +context_time.So: gkrb5_err.h +context_time.o: gkrb5_err.h +context_time.po: gkrb5_err.h +copy_ccache.So: gkrb5_err.h +copy_ccache.o: gkrb5_err.h +copy_ccache.po: gkrb5_err.h +creds.So: gkrb5_err.h +creds.o: gkrb5_err.h +creds.po: gkrb5_err.h +decapsulate.So: gkrb5_err.h +decapsulate.o: gkrb5_err.h +decapsulate.po: gkrb5_err.h +delete_sec_context.So: gkrb5_err.h +delete_sec_context.o: gkrb5_err.h +delete_sec_context.po: gkrb5_err.h +display_name.So: gkrb5_err.h +display_name.o: gkrb5_err.h +display_name.po: gkrb5_err.h +display_status.So: gkrb5_err.h +display_status.o: gkrb5_err.h +display_status.po: gkrb5_err.h +duplicate_name.So: gkrb5_err.h +duplicate_name.o: gkrb5_err.h +duplicate_name.po: gkrb5_err.h +encapsulate.So: gkrb5_err.h +encapsulate.o: gkrb5_err.h +encapsulate.po: gkrb5_err.h +export_name.So: gkrb5_err.h +export_name.o: gkrb5_err.h +export_name.po: gkrb5_err.h +export_sec_context.So: gkrb5_err.h +export_sec_context.o: gkrb5_err.h +export_sec_context.po: gkrb5_err.h +external.So: gkrb5_err.h +external.o: gkrb5_err.h +external.po: gkrb5_err.h +get_mic.So: gkrb5_err.h +get_mic.o: gkrb5_err.h +get_mic.po: gkrb5_err.h +gkrb5_err.So: gkrb5_err.c +gkrb5_err.So: gkrb5_err.h +gkrb5_err.o: gkrb5_err.c +gkrb5_err.o: gkrb5_err.h +gkrb5_err.po: gkrb5_err.c +gkrb5_err.po: gkrb5_err.h +import_name.So: gkrb5_err.h +import_name.o: gkrb5_err.h +import_name.po: gkrb5_err.h +import_sec_context.So: gkrb5_err.h +import_sec_context.o: gkrb5_err.h +import_sec_context.po: gkrb5_err.h +indicate_mechs.So: gkrb5_err.h +indicate_mechs.o: gkrb5_err.h +indicate_mechs.po: gkrb5_err.h +init.So: gkrb5_err.h +init.o: gkrb5_err.h +init.po: gkrb5_err.h +init_sec_context.So: gkrb5_err.h +init_sec_context.o: gkrb5_err.h +init_sec_context.po: gkrb5_err.h +inquire_context.So: gkrb5_err.h +inquire_context.o: gkrb5_err.h +inquire_context.po: gkrb5_err.h +inquire_cred.So: gkrb5_err.h +inquire_cred.o: gkrb5_err.h +inquire_cred.po: gkrb5_err.h +inquire_cred_by_mech.So: gkrb5_err.h +inquire_cred_by_mech.o: gkrb5_err.h +inquire_cred_by_mech.po: gkrb5_err.h +inquire_cred_by_oid.So: gkrb5_err.h +inquire_cred_by_oid.o: gkrb5_err.h +inquire_cred_by_oid.po: gkrb5_err.h +inquire_mechs_for_name.So: gkrb5_err.h +inquire_mechs_for_name.o: gkrb5_err.h +inquire_mechs_for_name.po: gkrb5_err.h +inquire_names_for_mech.So: gkrb5_err.h +inquire_names_for_mech.o: gkrb5_err.h +inquire_names_for_mech.po: gkrb5_err.h +inquire_sec_context_by_oid.So: gkrb5_err.h +inquire_sec_context_by_oid.o: gkrb5_err.h +inquire_sec_context_by_oid.po: gkrb5_err.h +pname_to_uid.So: gkrb5_err.h +pname_to_uid.o: gkrb5_err.h +pname_to_uid.po: gkrb5_err.h +prf.So: gkrb5_err.h +prf.o: gkrb5_err.h +prf.po: gkrb5_err.h +process_context_token.So: gkrb5_err.h +process_context_token.o: gkrb5_err.h +process_context_token.po: gkrb5_err.h +release_buffer.So: gkrb5_err.h +release_buffer.o: gkrb5_err.h +release_buffer.po: gkrb5_err.h +release_cred.So: gkrb5_err.h +release_cred.o: gkrb5_err.h +release_cred.po: gkrb5_err.h +release_name.So: gkrb5_err.h +release_name.o: gkrb5_err.h +release_name.po: gkrb5_err.h +sequence.So: gkrb5_err.h +sequence.o: gkrb5_err.h +sequence.po: gkrb5_err.h +set_cred_option.So: gkrb5_err.h +set_cred_option.o: gkrb5_err.h +set_cred_option.po: gkrb5_err.h +set_sec_context_option.So: gkrb5_err.h +set_sec_context_option.o: gkrb5_err.h +set_sec_context_option.po: gkrb5_err.h +store_cred.So: gkrb5_err.h +store_cred.o: gkrb5_err.h +store_cred.po: gkrb5_err.h +ticket_flags.So: gkrb5_err.h +ticket_flags.o: gkrb5_err.h +ticket_flags.po: gkrb5_err.h +unwrap.So: gkrb5_err.h +unwrap.o: gkrb5_err.h +unwrap.po: gkrb5_err.h +verify_mic.So: gkrb5_err.h +verify_mic.o: gkrb5_err.h +verify_mic.po: gkrb5_err.h +wrap.So: gkrb5_err.h +wrap.o: gkrb5_err.h +wrap.po: gkrb5_err.h +.endif diff --git a/kerberos5/lib/libgssapi_ntlm/Makefile.depend b/kerberos5/lib/libgssapi_ntlm/Makefile.depend new file mode 100644 index 000000000000..8939113ed65b --- /dev/null +++ b/kerberos5/lib/libgssapi_ntlm/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/lib/libgssapi_spnego/Makefile.depend b/kerberos5/lib/libgssapi_spnego/Makefile.depend new file mode 100644 index 000000000000..98e977dbc72e --- /dev/null +++ b/kerberos5/lib/libgssapi_spnego/Makefile.depend @@ -0,0 +1,117 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +accept_sec_context.So: spnego_asn1.h +accept_sec_context.o: spnego_asn1.h +accept_sec_context.po: spnego_asn1.h +asn1_ContextFlags.So: asn1_ContextFlags.c +asn1_ContextFlags.So: spnego_asn1-priv.h +asn1_ContextFlags.So: spnego_asn1.h +asn1_ContextFlags.o: asn1_ContextFlags.c +asn1_ContextFlags.o: spnego_asn1-priv.h +asn1_ContextFlags.o: spnego_asn1.h +asn1_ContextFlags.po: asn1_ContextFlags.c +asn1_ContextFlags.po: spnego_asn1-priv.h +asn1_ContextFlags.po: spnego_asn1.h +asn1_MechType.So: asn1_MechType.c +asn1_MechType.So: spnego_asn1-priv.h +asn1_MechType.So: spnego_asn1.h +asn1_MechType.o: asn1_MechType.c +asn1_MechType.o: spnego_asn1-priv.h +asn1_MechType.o: spnego_asn1.h +asn1_MechType.po: asn1_MechType.c +asn1_MechType.po: spnego_asn1-priv.h +asn1_MechType.po: spnego_asn1.h +asn1_MechTypeList.So: asn1_MechTypeList.c +asn1_MechTypeList.So: spnego_asn1-priv.h +asn1_MechTypeList.So: spnego_asn1.h +asn1_MechTypeList.o: asn1_MechTypeList.c +asn1_MechTypeList.o: spnego_asn1-priv.h +asn1_MechTypeList.o: spnego_asn1.h +asn1_MechTypeList.po: asn1_MechTypeList.c +asn1_MechTypeList.po: spnego_asn1-priv.h +asn1_MechTypeList.po: spnego_asn1.h +asn1_NegHints.So: asn1_NegHints.c +asn1_NegHints.So: spnego_asn1-priv.h +asn1_NegHints.So: spnego_asn1.h +asn1_NegHints.o: asn1_NegHints.c +asn1_NegHints.o: spnego_asn1-priv.h +asn1_NegHints.o: spnego_asn1.h +asn1_NegHints.po: asn1_NegHints.c +asn1_NegHints.po: spnego_asn1-priv.h +asn1_NegHints.po: spnego_asn1.h +asn1_NegTokenInit.So: asn1_NegTokenInit.c +asn1_NegTokenInit.So: spnego_asn1-priv.h +asn1_NegTokenInit.So: spnego_asn1.h +asn1_NegTokenInit.o: asn1_NegTokenInit.c +asn1_NegTokenInit.o: spnego_asn1-priv.h +asn1_NegTokenInit.o: spnego_asn1.h +asn1_NegTokenInit.po: asn1_NegTokenInit.c +asn1_NegTokenInit.po: spnego_asn1-priv.h +asn1_NegTokenInit.po: spnego_asn1.h +asn1_NegTokenInitWin.So: asn1_NegTokenInitWin.c +asn1_NegTokenInitWin.So: spnego_asn1-priv.h +asn1_NegTokenInitWin.So: spnego_asn1.h +asn1_NegTokenInitWin.o: asn1_NegTokenInitWin.c +asn1_NegTokenInitWin.o: spnego_asn1-priv.h +asn1_NegTokenInitWin.o: spnego_asn1.h +asn1_NegTokenInitWin.po: asn1_NegTokenInitWin.c +asn1_NegTokenInitWin.po: spnego_asn1-priv.h +asn1_NegTokenInitWin.po: spnego_asn1.h +asn1_NegTokenResp.So: asn1_NegTokenResp.c +asn1_NegTokenResp.So: spnego_asn1-priv.h +asn1_NegTokenResp.So: spnego_asn1.h +asn1_NegTokenResp.o: asn1_NegTokenResp.c +asn1_NegTokenResp.o: spnego_asn1-priv.h +asn1_NegTokenResp.o: spnego_asn1.h +asn1_NegTokenResp.po: asn1_NegTokenResp.c +asn1_NegTokenResp.po: spnego_asn1-priv.h +asn1_NegTokenResp.po: spnego_asn1.h +asn1_NegotiationToken.So: asn1_NegotiationToken.c +asn1_NegotiationToken.So: spnego_asn1-priv.h +asn1_NegotiationToken.So: spnego_asn1.h +asn1_NegotiationToken.o: asn1_NegotiationToken.c +asn1_NegotiationToken.o: spnego_asn1-priv.h +asn1_NegotiationToken.o: spnego_asn1.h +asn1_NegotiationToken.po: asn1_NegotiationToken.c +asn1_NegotiationToken.po: spnego_asn1-priv.h +asn1_NegotiationToken.po: spnego_asn1.h +asn1_NegotiationTokenWin.So: asn1_NegotiationTokenWin.c +asn1_NegotiationTokenWin.So: spnego_asn1-priv.h +asn1_NegotiationTokenWin.So: spnego_asn1.h +asn1_NegotiationTokenWin.o: asn1_NegotiationTokenWin.c +asn1_NegotiationTokenWin.o: spnego_asn1-priv.h +asn1_NegotiationTokenWin.o: spnego_asn1.h +asn1_NegotiationTokenWin.po: asn1_NegotiationTokenWin.c +asn1_NegotiationTokenWin.po: spnego_asn1-priv.h +asn1_NegotiationTokenWin.po: spnego_asn1.h +compat.So: spnego_asn1.h +compat.o: spnego_asn1.h +compat.po: spnego_asn1.h +context_stubs.So: spnego_asn1.h +context_stubs.o: spnego_asn1.h +context_stubs.po: spnego_asn1.h +cred_stubs.So: spnego_asn1.h +cred_stubs.o: spnego_asn1.h +cred_stubs.po: spnego_asn1.h +external.So: spnego_asn1.h +external.o: spnego_asn1.h +external.po: spnego_asn1.h +init_sec_context.So: spnego_asn1.h +init_sec_context.o: spnego_asn1.h +init_sec_context.po: spnego_asn1.h +.endif diff --git a/kerberos5/lib/libhdb/Makefile.depend b/kerberos5/lib/libhdb/Makefile.depend new file mode 100644 index 000000000000..17489584b4c7 --- /dev/null +++ b/kerberos5/lib/libhdb/Makefile.depend @@ -0,0 +1,268 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + lib/libcom_err \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +asn1_Event.So: asn1_Event.c +asn1_Event.So: hdb_asn1-priv.h +asn1_Event.So: hdb_asn1.h +asn1_Event.o: asn1_Event.c +asn1_Event.o: hdb_asn1-priv.h +asn1_Event.o: hdb_asn1.h +asn1_Event.po: asn1_Event.c +asn1_Event.po: hdb_asn1-priv.h +asn1_Event.po: hdb_asn1.h +asn1_GENERATION.So: asn1_GENERATION.c +asn1_GENERATION.So: hdb_asn1-priv.h +asn1_GENERATION.So: hdb_asn1.h +asn1_GENERATION.o: asn1_GENERATION.c +asn1_GENERATION.o: hdb_asn1-priv.h +asn1_GENERATION.o: hdb_asn1.h +asn1_GENERATION.po: asn1_GENERATION.c +asn1_GENERATION.po: hdb_asn1-priv.h +asn1_GENERATION.po: hdb_asn1.h +asn1_HDBFlags.So: asn1_HDBFlags.c +asn1_HDBFlags.So: hdb_asn1-priv.h +asn1_HDBFlags.So: hdb_asn1.h +asn1_HDBFlags.o: asn1_HDBFlags.c +asn1_HDBFlags.o: hdb_asn1-priv.h +asn1_HDBFlags.o: hdb_asn1.h +asn1_HDBFlags.po: asn1_HDBFlags.c +asn1_HDBFlags.po: hdb_asn1-priv.h +asn1_HDBFlags.po: hdb_asn1.h +asn1_HDB_Ext_Aliases.So: asn1_HDB_Ext_Aliases.c +asn1_HDB_Ext_Aliases.So: hdb_asn1-priv.h +asn1_HDB_Ext_Aliases.So: hdb_asn1.h +asn1_HDB_Ext_Aliases.o: asn1_HDB_Ext_Aliases.c +asn1_HDB_Ext_Aliases.o: hdb_asn1-priv.h +asn1_HDB_Ext_Aliases.o: hdb_asn1.h +asn1_HDB_Ext_Aliases.po: asn1_HDB_Ext_Aliases.c +asn1_HDB_Ext_Aliases.po: hdb_asn1-priv.h +asn1_HDB_Ext_Aliases.po: hdb_asn1.h +asn1_HDB_Ext_Constrained_delegation_acl.So: asn1_HDB_Ext_Constrained_delegation_acl.c +asn1_HDB_Ext_Constrained_delegation_acl.So: hdb_asn1-priv.h +asn1_HDB_Ext_Constrained_delegation_acl.So: hdb_asn1.h +asn1_HDB_Ext_Constrained_delegation_acl.o: asn1_HDB_Ext_Constrained_delegation_acl.c +asn1_HDB_Ext_Constrained_delegation_acl.o: hdb_asn1-priv.h +asn1_HDB_Ext_Constrained_delegation_acl.o: hdb_asn1.h +asn1_HDB_Ext_Constrained_delegation_acl.po: asn1_HDB_Ext_Constrained_delegation_acl.c +asn1_HDB_Ext_Constrained_delegation_acl.po: hdb_asn1-priv.h +asn1_HDB_Ext_Constrained_delegation_acl.po: hdb_asn1.h +asn1_HDB_Ext_Lan_Manager_OWF.So: asn1_HDB_Ext_Lan_Manager_OWF.c +asn1_HDB_Ext_Lan_Manager_OWF.So: hdb_asn1-priv.h +asn1_HDB_Ext_Lan_Manager_OWF.So: hdb_asn1.h +asn1_HDB_Ext_Lan_Manager_OWF.o: asn1_HDB_Ext_Lan_Manager_OWF.c +asn1_HDB_Ext_Lan_Manager_OWF.o: hdb_asn1-priv.h +asn1_HDB_Ext_Lan_Manager_OWF.o: hdb_asn1.h +asn1_HDB_Ext_Lan_Manager_OWF.po: asn1_HDB_Ext_Lan_Manager_OWF.c +asn1_HDB_Ext_Lan_Manager_OWF.po: hdb_asn1-priv.h +asn1_HDB_Ext_Lan_Manager_OWF.po: hdb_asn1.h +asn1_HDB_Ext_PKINIT_acl.So: asn1_HDB_Ext_PKINIT_acl.c +asn1_HDB_Ext_PKINIT_acl.So: hdb_asn1-priv.h +asn1_HDB_Ext_PKINIT_acl.So: hdb_asn1.h +asn1_HDB_Ext_PKINIT_acl.o: asn1_HDB_Ext_PKINIT_acl.c +asn1_HDB_Ext_PKINIT_acl.o: hdb_asn1-priv.h +asn1_HDB_Ext_PKINIT_acl.o: hdb_asn1.h +asn1_HDB_Ext_PKINIT_acl.po: asn1_HDB_Ext_PKINIT_acl.c +asn1_HDB_Ext_PKINIT_acl.po: hdb_asn1-priv.h +asn1_HDB_Ext_PKINIT_acl.po: hdb_asn1.h +asn1_HDB_Ext_PKINIT_cert.So: asn1_HDB_Ext_PKINIT_cert.c +asn1_HDB_Ext_PKINIT_cert.So: hdb_asn1-priv.h +asn1_HDB_Ext_PKINIT_cert.So: hdb_asn1.h +asn1_HDB_Ext_PKINIT_cert.o: asn1_HDB_Ext_PKINIT_cert.c +asn1_HDB_Ext_PKINIT_cert.o: hdb_asn1-priv.h +asn1_HDB_Ext_PKINIT_cert.o: hdb_asn1.h +asn1_HDB_Ext_PKINIT_cert.po: asn1_HDB_Ext_PKINIT_cert.c +asn1_HDB_Ext_PKINIT_cert.po: hdb_asn1-priv.h +asn1_HDB_Ext_PKINIT_cert.po: hdb_asn1.h +asn1_HDB_Ext_PKINIT_hash.So: asn1_HDB_Ext_PKINIT_hash.c +asn1_HDB_Ext_PKINIT_hash.So: hdb_asn1-priv.h +asn1_HDB_Ext_PKINIT_hash.So: hdb_asn1.h +asn1_HDB_Ext_PKINIT_hash.o: asn1_HDB_Ext_PKINIT_hash.c +asn1_HDB_Ext_PKINIT_hash.o: hdb_asn1-priv.h +asn1_HDB_Ext_PKINIT_hash.o: hdb_asn1.h +asn1_HDB_Ext_PKINIT_hash.po: asn1_HDB_Ext_PKINIT_hash.c +asn1_HDB_Ext_PKINIT_hash.po: hdb_asn1-priv.h +asn1_HDB_Ext_PKINIT_hash.po: hdb_asn1.h +asn1_HDB_Ext_Password.So: asn1_HDB_Ext_Password.c +asn1_HDB_Ext_Password.So: hdb_asn1-priv.h +asn1_HDB_Ext_Password.So: hdb_asn1.h +asn1_HDB_Ext_Password.o: asn1_HDB_Ext_Password.c +asn1_HDB_Ext_Password.o: hdb_asn1-priv.h +asn1_HDB_Ext_Password.o: hdb_asn1.h +asn1_HDB_Ext_Password.po: asn1_HDB_Ext_Password.c +asn1_HDB_Ext_Password.po: hdb_asn1-priv.h +asn1_HDB_Ext_Password.po: hdb_asn1.h +asn1_HDB_extension.So: asn1_HDB_extension.c +asn1_HDB_extension.So: hdb_asn1-priv.h +asn1_HDB_extension.So: hdb_asn1.h +asn1_HDB_extension.o: asn1_HDB_extension.c +asn1_HDB_extension.o: hdb_asn1-priv.h +asn1_HDB_extension.o: hdb_asn1.h +asn1_HDB_extension.po: asn1_HDB_extension.c +asn1_HDB_extension.po: hdb_asn1-priv.h +asn1_HDB_extension.po: hdb_asn1.h +asn1_HDB_extensions.So: asn1_HDB_extensions.c +asn1_HDB_extensions.So: hdb_asn1-priv.h +asn1_HDB_extensions.So: hdb_asn1.h +asn1_HDB_extensions.o: asn1_HDB_extensions.c +asn1_HDB_extensions.o: hdb_asn1-priv.h +asn1_HDB_extensions.o: hdb_asn1.h +asn1_HDB_extensions.po: asn1_HDB_extensions.c +asn1_HDB_extensions.po: hdb_asn1-priv.h +asn1_HDB_extensions.po: hdb_asn1.h +asn1_Key.So: asn1_Key.c +asn1_Key.So: hdb_asn1-priv.h +asn1_Key.So: hdb_asn1.h +asn1_Key.o: asn1_Key.c +asn1_Key.o: hdb_asn1-priv.h +asn1_Key.o: hdb_asn1.h +asn1_Key.po: asn1_Key.c +asn1_Key.po: hdb_asn1-priv.h +asn1_Key.po: hdb_asn1.h +asn1_Salt.So: asn1_Salt.c +asn1_Salt.So: hdb_asn1-priv.h +asn1_Salt.So: hdb_asn1.h +asn1_Salt.o: asn1_Salt.c +asn1_Salt.o: hdb_asn1-priv.h +asn1_Salt.o: hdb_asn1.h +asn1_Salt.po: asn1_Salt.c +asn1_Salt.po: hdb_asn1-priv.h +asn1_Salt.po: hdb_asn1.h +asn1_hdb_entry.So: asn1_hdb_entry.c +asn1_hdb_entry.So: hdb_asn1-priv.h +asn1_hdb_entry.So: hdb_asn1.h +asn1_hdb_entry.o: asn1_hdb_entry.c +asn1_hdb_entry.o: hdb_asn1-priv.h +asn1_hdb_entry.o: hdb_asn1.h +asn1_hdb_entry.po: asn1_hdb_entry.c +asn1_hdb_entry.po: hdb_asn1-priv.h +asn1_hdb_entry.po: hdb_asn1.h +asn1_hdb_entry_alias.So: asn1_hdb_entry_alias.c +asn1_hdb_entry_alias.So: hdb_asn1-priv.h +asn1_hdb_entry_alias.So: hdb_asn1.h +asn1_hdb_entry_alias.o: asn1_hdb_entry_alias.c +asn1_hdb_entry_alias.o: hdb_asn1-priv.h +asn1_hdb_entry_alias.o: hdb_asn1.h +asn1_hdb_entry_alias.po: asn1_hdb_entry_alias.c +asn1_hdb_entry_alias.po: hdb_asn1-priv.h +asn1_hdb_entry_alias.po: hdb_asn1.h +asn1_hdb_keyset.So: asn1_hdb_keyset.c +asn1_hdb_keyset.So: hdb_asn1-priv.h +asn1_hdb_keyset.So: hdb_asn1.h +asn1_hdb_keyset.o: asn1_hdb_keyset.c +asn1_hdb_keyset.o: hdb_asn1-priv.h +asn1_hdb_keyset.o: hdb_asn1.h +asn1_hdb_keyset.po: asn1_hdb_keyset.c +asn1_hdb_keyset.po: hdb_asn1-priv.h +asn1_hdb_keyset.po: hdb_asn1.h +common.So: hdb_asn1.h +common.So: hdb_err.h +common.o: hdb_asn1.h +common.o: hdb_err.h +common.po: hdb_asn1.h +common.po: hdb_err.h +db.So: hdb_asn1.h +db.So: hdb_err.h +db.o: hdb_asn1.h +db.o: hdb_err.h +db.po: hdb_asn1.h +db.po: hdb_err.h +db3.So: hdb_asn1.h +db3.So: hdb_err.h +db3.o: hdb_asn1.h +db3.o: hdb_err.h +db3.po: hdb_asn1.h +db3.po: hdb_err.h +dbinfo.So: hdb_asn1.h +dbinfo.So: hdb_err.h +dbinfo.o: hdb_asn1.h +dbinfo.o: hdb_err.h +dbinfo.po: hdb_asn1.h +dbinfo.po: hdb_err.h +ext.So: hdb_asn1.h +ext.So: hdb_err.h +ext.o: hdb_asn1.h +ext.o: hdb_err.h +ext.po: hdb_asn1.h +ext.po: hdb_err.h +hdb-keytab.So: hdb_asn1.h +hdb-keytab.So: hdb_err.h +hdb-keytab.o: hdb_asn1.h +hdb-keytab.o: hdb_err.h +hdb-keytab.po: hdb_asn1.h +hdb-keytab.po: hdb_err.h +hdb-ldap.So: hdb_asn1.h +hdb-ldap.So: hdb_err.h +hdb-ldap.o: hdb_asn1.h +hdb-ldap.o: hdb_err.h +hdb-ldap.po: hdb_asn1.h +hdb-ldap.po: hdb_err.h +hdb-mitdb.So: hdb_asn1.h +hdb-mitdb.So: hdb_err.h +hdb-mitdb.o: hdb_asn1.h +hdb-mitdb.o: hdb_err.h +hdb-mitdb.po: hdb_asn1.h +hdb-mitdb.po: hdb_err.h +hdb-sqlite.So: hdb_asn1.h +hdb-sqlite.So: hdb_err.h +hdb-sqlite.o: hdb_asn1.h +hdb-sqlite.o: hdb_err.h +hdb-sqlite.po: hdb_asn1.h +hdb-sqlite.po: hdb_err.h +hdb.So: hdb_asn1.h +hdb.So: hdb_err.h +hdb.o: hdb_asn1.h +hdb.o: hdb_err.h +hdb.po: hdb_asn1.h +hdb.po: hdb_err.h +hdb_err.So: hdb_err.c +hdb_err.So: hdb_err.h +hdb_err.o: hdb_err.c +hdb_err.o: hdb_err.h +hdb_err.po: hdb_err.c +hdb_err.po: hdb_err.h +keys.So: hdb_asn1.h +keys.So: hdb_err.h +keys.o: hdb_asn1.h +keys.o: hdb_err.h +keys.po: hdb_asn1.h +keys.po: hdb_err.h +keytab.So: hdb_asn1.h +keytab.So: hdb_err.h +keytab.o: hdb_asn1.h +keytab.o: hdb_err.h +keytab.po: hdb_asn1.h +keytab.po: hdb_err.h +mkey.So: hdb_asn1.h +mkey.So: hdb_err.h +mkey.o: hdb_asn1.h +mkey.o: hdb_err.h +mkey.po: hdb_asn1.h +mkey.po: hdb_err.h +ndbm.So: hdb_asn1.h +ndbm.So: hdb_err.h +ndbm.o: hdb_asn1.h +ndbm.o: hdb_err.h +ndbm.po: hdb_asn1.h +ndbm.po: hdb_err.h +print.So: hdb_asn1.h +print.So: hdb_err.h +print.o: hdb_asn1.h +print.o: hdb_err.h +print.po: hdb_asn1.h +print.po: hdb_err.h +.endif diff --git a/kerberos5/lib/libheimbase/Makefile.depend b/kerberos5/lib/libheimbase/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/kerberos5/lib/libheimbase/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/lib/libheimipcc/Makefile.depend b/kerberos5/lib/libheimipcc/Makefile.depend new file mode 100644 index 000000000000..8939113ed65b --- /dev/null +++ b/kerberos5/lib/libheimipcc/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/lib/libheimipcs/Makefile.depend b/kerberos5/lib/libheimipcs/Makefile.depend new file mode 100644 index 000000000000..8939113ed65b --- /dev/null +++ b/kerberos5/lib/libheimipcs/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/lib/libheimntlm/Makefile.depend b/kerberos5/lib/libheimntlm/Makefile.depend new file mode 100644 index 000000000000..a746ba0ee010 --- /dev/null +++ b/kerberos5/lib/libheimntlm/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + lib/libcom_err \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ntlm_err.So: ntlm_err.c +ntlm_err.So: ntlm_err.h +ntlm_err.o: ntlm_err.c +ntlm_err.o: ntlm_err.h +ntlm_err.po: ntlm_err.c +ntlm_err.po: ntlm_err.h +.endif diff --git a/kerberos5/lib/libheimsqlite/Makefile.depend b/kerberos5/lib/libheimsqlite/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/kerberos5/lib/libheimsqlite/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/lib/libhx509/Makefile.depend b/kerberos5/lib/libhx509/Makefile.depend new file mode 100644 index 000000000000..5270ad162a8e --- /dev/null +++ b/kerberos5/lib/libhx509/Makefile.depend @@ -0,0 +1,439 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + lib/libcom_err \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +asn1_CertificationRequest.So: asn1_CertificationRequest.c +asn1_CertificationRequest.So: pkcs10_asn1-priv.h +asn1_CertificationRequest.So: pkcs10_asn1.h +asn1_CertificationRequest.o: asn1_CertificationRequest.c +asn1_CertificationRequest.o: pkcs10_asn1-priv.h +asn1_CertificationRequest.o: pkcs10_asn1.h +asn1_CertificationRequest.po: asn1_CertificationRequest.c +asn1_CertificationRequest.po: pkcs10_asn1-priv.h +asn1_CertificationRequest.po: pkcs10_asn1.h +asn1_CertificationRequestInfo.So: asn1_CertificationRequestInfo.c +asn1_CertificationRequestInfo.So: pkcs10_asn1-priv.h +asn1_CertificationRequestInfo.So: pkcs10_asn1.h +asn1_CertificationRequestInfo.o: asn1_CertificationRequestInfo.c +asn1_CertificationRequestInfo.o: pkcs10_asn1-priv.h +asn1_CertificationRequestInfo.o: pkcs10_asn1.h +asn1_CertificationRequestInfo.po: asn1_CertificationRequestInfo.c +asn1_CertificationRequestInfo.po: pkcs10_asn1-priv.h +asn1_CertificationRequestInfo.po: pkcs10_asn1.h +asn1_OCSPBasicOCSPResponse.So: asn1_OCSPBasicOCSPResponse.c +asn1_OCSPBasicOCSPResponse.So: ocsp_asn1-priv.h +asn1_OCSPBasicOCSPResponse.So: ocsp_asn1.h +asn1_OCSPBasicOCSPResponse.o: asn1_OCSPBasicOCSPResponse.c +asn1_OCSPBasicOCSPResponse.o: ocsp_asn1-priv.h +asn1_OCSPBasicOCSPResponse.o: ocsp_asn1.h +asn1_OCSPBasicOCSPResponse.po: asn1_OCSPBasicOCSPResponse.c +asn1_OCSPBasicOCSPResponse.po: ocsp_asn1-priv.h +asn1_OCSPBasicOCSPResponse.po: ocsp_asn1.h +asn1_OCSPCertID.So: asn1_OCSPCertID.c +asn1_OCSPCertID.So: ocsp_asn1-priv.h +asn1_OCSPCertID.So: ocsp_asn1.h +asn1_OCSPCertID.o: asn1_OCSPCertID.c +asn1_OCSPCertID.o: ocsp_asn1-priv.h +asn1_OCSPCertID.o: ocsp_asn1.h +asn1_OCSPCertID.po: asn1_OCSPCertID.c +asn1_OCSPCertID.po: ocsp_asn1-priv.h +asn1_OCSPCertID.po: ocsp_asn1.h +asn1_OCSPCertStatus.So: asn1_OCSPCertStatus.c +asn1_OCSPCertStatus.So: ocsp_asn1-priv.h +asn1_OCSPCertStatus.So: ocsp_asn1.h +asn1_OCSPCertStatus.o: asn1_OCSPCertStatus.c +asn1_OCSPCertStatus.o: ocsp_asn1-priv.h +asn1_OCSPCertStatus.o: ocsp_asn1.h +asn1_OCSPCertStatus.po: asn1_OCSPCertStatus.c +asn1_OCSPCertStatus.po: ocsp_asn1-priv.h +asn1_OCSPCertStatus.po: ocsp_asn1.h +asn1_OCSPInnerRequest.So: asn1_OCSPInnerRequest.c +asn1_OCSPInnerRequest.So: ocsp_asn1-priv.h +asn1_OCSPInnerRequest.So: ocsp_asn1.h +asn1_OCSPInnerRequest.o: asn1_OCSPInnerRequest.c +asn1_OCSPInnerRequest.o: ocsp_asn1-priv.h +asn1_OCSPInnerRequest.o: ocsp_asn1.h +asn1_OCSPInnerRequest.po: asn1_OCSPInnerRequest.c +asn1_OCSPInnerRequest.po: ocsp_asn1-priv.h +asn1_OCSPInnerRequest.po: ocsp_asn1.h +asn1_OCSPKeyHash.So: asn1_OCSPKeyHash.c +asn1_OCSPKeyHash.So: ocsp_asn1-priv.h +asn1_OCSPKeyHash.So: ocsp_asn1.h +asn1_OCSPKeyHash.o: asn1_OCSPKeyHash.c +asn1_OCSPKeyHash.o: ocsp_asn1-priv.h +asn1_OCSPKeyHash.o: ocsp_asn1.h +asn1_OCSPKeyHash.po: asn1_OCSPKeyHash.c +asn1_OCSPKeyHash.po: ocsp_asn1-priv.h +asn1_OCSPKeyHash.po: ocsp_asn1.h +asn1_OCSPRequest.So: asn1_OCSPRequest.c +asn1_OCSPRequest.So: ocsp_asn1-priv.h +asn1_OCSPRequest.So: ocsp_asn1.h +asn1_OCSPRequest.o: asn1_OCSPRequest.c +asn1_OCSPRequest.o: ocsp_asn1-priv.h +asn1_OCSPRequest.o: ocsp_asn1.h +asn1_OCSPRequest.po: asn1_OCSPRequest.c +asn1_OCSPRequest.po: ocsp_asn1-priv.h +asn1_OCSPRequest.po: ocsp_asn1.h +asn1_OCSPResponderID.So: asn1_OCSPResponderID.c +asn1_OCSPResponderID.So: ocsp_asn1-priv.h +asn1_OCSPResponderID.So: ocsp_asn1.h +asn1_OCSPResponderID.o: asn1_OCSPResponderID.c +asn1_OCSPResponderID.o: ocsp_asn1-priv.h +asn1_OCSPResponderID.o: ocsp_asn1.h +asn1_OCSPResponderID.po: asn1_OCSPResponderID.c +asn1_OCSPResponderID.po: ocsp_asn1-priv.h +asn1_OCSPResponderID.po: ocsp_asn1.h +asn1_OCSPResponse.So: asn1_OCSPResponse.c +asn1_OCSPResponse.So: ocsp_asn1-priv.h +asn1_OCSPResponse.So: ocsp_asn1.h +asn1_OCSPResponse.o: asn1_OCSPResponse.c +asn1_OCSPResponse.o: ocsp_asn1-priv.h +asn1_OCSPResponse.o: ocsp_asn1.h +asn1_OCSPResponse.po: asn1_OCSPResponse.c +asn1_OCSPResponse.po: ocsp_asn1-priv.h +asn1_OCSPResponse.po: ocsp_asn1.h +asn1_OCSPResponseBytes.So: asn1_OCSPResponseBytes.c +asn1_OCSPResponseBytes.So: ocsp_asn1-priv.h +asn1_OCSPResponseBytes.So: ocsp_asn1.h +asn1_OCSPResponseBytes.o: asn1_OCSPResponseBytes.c +asn1_OCSPResponseBytes.o: ocsp_asn1-priv.h +asn1_OCSPResponseBytes.o: ocsp_asn1.h +asn1_OCSPResponseBytes.po: asn1_OCSPResponseBytes.c +asn1_OCSPResponseBytes.po: ocsp_asn1-priv.h +asn1_OCSPResponseBytes.po: ocsp_asn1.h +asn1_OCSPResponseData.So: asn1_OCSPResponseData.c +asn1_OCSPResponseData.So: ocsp_asn1-priv.h +asn1_OCSPResponseData.So: ocsp_asn1.h +asn1_OCSPResponseData.o: asn1_OCSPResponseData.c +asn1_OCSPResponseData.o: ocsp_asn1-priv.h +asn1_OCSPResponseData.o: ocsp_asn1.h +asn1_OCSPResponseData.po: asn1_OCSPResponseData.c +asn1_OCSPResponseData.po: ocsp_asn1-priv.h +asn1_OCSPResponseData.po: ocsp_asn1.h +asn1_OCSPResponseStatus.So: asn1_OCSPResponseStatus.c +asn1_OCSPResponseStatus.So: ocsp_asn1-priv.h +asn1_OCSPResponseStatus.So: ocsp_asn1.h +asn1_OCSPResponseStatus.o: asn1_OCSPResponseStatus.c +asn1_OCSPResponseStatus.o: ocsp_asn1-priv.h +asn1_OCSPResponseStatus.o: ocsp_asn1.h +asn1_OCSPResponseStatus.po: asn1_OCSPResponseStatus.c +asn1_OCSPResponseStatus.po: ocsp_asn1-priv.h +asn1_OCSPResponseStatus.po: ocsp_asn1.h +asn1_OCSPSignature.So: asn1_OCSPSignature.c +asn1_OCSPSignature.So: ocsp_asn1-priv.h +asn1_OCSPSignature.So: ocsp_asn1.h +asn1_OCSPSignature.o: asn1_OCSPSignature.c +asn1_OCSPSignature.o: ocsp_asn1-priv.h +asn1_OCSPSignature.o: ocsp_asn1.h +asn1_OCSPSignature.po: asn1_OCSPSignature.c +asn1_OCSPSignature.po: ocsp_asn1-priv.h +asn1_OCSPSignature.po: ocsp_asn1.h +asn1_OCSPSingleResponse.So: asn1_OCSPSingleResponse.c +asn1_OCSPSingleResponse.So: ocsp_asn1-priv.h +asn1_OCSPSingleResponse.So: ocsp_asn1.h +asn1_OCSPSingleResponse.o: asn1_OCSPSingleResponse.c +asn1_OCSPSingleResponse.o: ocsp_asn1-priv.h +asn1_OCSPSingleResponse.o: ocsp_asn1.h +asn1_OCSPSingleResponse.po: asn1_OCSPSingleResponse.c +asn1_OCSPSingleResponse.po: ocsp_asn1-priv.h +asn1_OCSPSingleResponse.po: ocsp_asn1.h +asn1_OCSPTBSRequest.So: asn1_OCSPTBSRequest.c +asn1_OCSPTBSRequest.So: ocsp_asn1-priv.h +asn1_OCSPTBSRequest.So: ocsp_asn1.h +asn1_OCSPTBSRequest.o: asn1_OCSPTBSRequest.c +asn1_OCSPTBSRequest.o: ocsp_asn1-priv.h +asn1_OCSPTBSRequest.o: ocsp_asn1.h +asn1_OCSPTBSRequest.po: asn1_OCSPTBSRequest.c +asn1_OCSPTBSRequest.po: ocsp_asn1-priv.h +asn1_OCSPTBSRequest.po: ocsp_asn1.h +asn1_OCSPVersion.So: asn1_OCSPVersion.c +asn1_OCSPVersion.So: ocsp_asn1-priv.h +asn1_OCSPVersion.So: ocsp_asn1.h +asn1_OCSPVersion.o: asn1_OCSPVersion.c +asn1_OCSPVersion.o: ocsp_asn1-priv.h +asn1_OCSPVersion.o: ocsp_asn1.h +asn1_OCSPVersion.po: asn1_OCSPVersion.c +asn1_OCSPVersion.po: ocsp_asn1-priv.h +asn1_OCSPVersion.po: ocsp_asn1.h +asn1_id_pkix_ocsp.So: asn1_id_pkix_ocsp.c +asn1_id_pkix_ocsp.So: ocsp_asn1-priv.h +asn1_id_pkix_ocsp.So: ocsp_asn1.h +asn1_id_pkix_ocsp.o: asn1_id_pkix_ocsp.c +asn1_id_pkix_ocsp.o: ocsp_asn1-priv.h +asn1_id_pkix_ocsp.o: ocsp_asn1.h +asn1_id_pkix_ocsp.po: asn1_id_pkix_ocsp.c +asn1_id_pkix_ocsp.po: ocsp_asn1-priv.h +asn1_id_pkix_ocsp.po: ocsp_asn1.h +asn1_id_pkix_ocsp_basic.So: asn1_id_pkix_ocsp_basic.c +asn1_id_pkix_ocsp_basic.So: ocsp_asn1-priv.h +asn1_id_pkix_ocsp_basic.So: ocsp_asn1.h +asn1_id_pkix_ocsp_basic.o: asn1_id_pkix_ocsp_basic.c +asn1_id_pkix_ocsp_basic.o: ocsp_asn1-priv.h +asn1_id_pkix_ocsp_basic.o: ocsp_asn1.h +asn1_id_pkix_ocsp_basic.po: asn1_id_pkix_ocsp_basic.c +asn1_id_pkix_ocsp_basic.po: ocsp_asn1-priv.h +asn1_id_pkix_ocsp_basic.po: ocsp_asn1.h +asn1_id_pkix_ocsp_nonce.So: asn1_id_pkix_ocsp_nonce.c +asn1_id_pkix_ocsp_nonce.So: ocsp_asn1-priv.h +asn1_id_pkix_ocsp_nonce.So: ocsp_asn1.h +asn1_id_pkix_ocsp_nonce.o: asn1_id_pkix_ocsp_nonce.c +asn1_id_pkix_ocsp_nonce.o: ocsp_asn1-priv.h +asn1_id_pkix_ocsp_nonce.o: ocsp_asn1.h +asn1_id_pkix_ocsp_nonce.po: asn1_id_pkix_ocsp_nonce.c +asn1_id_pkix_ocsp_nonce.po: ocsp_asn1-priv.h +asn1_id_pkix_ocsp_nonce.po: ocsp_asn1.h +ca.So: hx509_err.h +ca.So: ocsp_asn1.h +ca.So: pkcs10_asn1.h +ca.o: hx509_err.h +ca.o: ocsp_asn1.h +ca.o: pkcs10_asn1.h +ca.po: hx509_err.h +ca.po: ocsp_asn1.h +ca.po: pkcs10_asn1.h +cert.So: hx509_err.h +cert.So: ocsp_asn1.h +cert.So: pkcs10_asn1.h +cert.o: hx509_err.h +cert.o: ocsp_asn1.h +cert.o: pkcs10_asn1.h +cert.po: hx509_err.h +cert.po: ocsp_asn1.h +cert.po: pkcs10_asn1.h +cms.So: hx509_err.h +cms.So: ocsp_asn1.h +cms.So: pkcs10_asn1.h +cms.o: hx509_err.h +cms.o: ocsp_asn1.h +cms.o: pkcs10_asn1.h +cms.po: hx509_err.h +cms.po: ocsp_asn1.h +cms.po: pkcs10_asn1.h +collector.So: hx509_err.h +collector.So: ocsp_asn1.h +collector.So: pkcs10_asn1.h +collector.o: hx509_err.h +collector.o: ocsp_asn1.h +collector.o: pkcs10_asn1.h +collector.po: hx509_err.h +collector.po: ocsp_asn1.h +collector.po: pkcs10_asn1.h +crypto.So: hx509_err.h +crypto.So: ocsp_asn1.h +crypto.So: pkcs10_asn1.h +crypto.o: hx509_err.h +crypto.o: ocsp_asn1.h +crypto.o: pkcs10_asn1.h +crypto.po: hx509_err.h +crypto.po: ocsp_asn1.h +crypto.po: pkcs10_asn1.h +env.So: hx509_err.h +env.So: ocsp_asn1.h +env.So: pkcs10_asn1.h +env.o: hx509_err.h +env.o: ocsp_asn1.h +env.o: pkcs10_asn1.h +env.po: hx509_err.h +env.po: ocsp_asn1.h +env.po: pkcs10_asn1.h +error.So: hx509_err.h +error.So: ocsp_asn1.h +error.So: pkcs10_asn1.h +error.o: hx509_err.h +error.o: ocsp_asn1.h +error.o: pkcs10_asn1.h +error.po: hx509_err.h +error.po: ocsp_asn1.h +error.po: pkcs10_asn1.h +file.So: hx509_err.h +file.So: ocsp_asn1.h +file.So: pkcs10_asn1.h +file.o: hx509_err.h +file.o: ocsp_asn1.h +file.o: pkcs10_asn1.h +file.po: hx509_err.h +file.po: ocsp_asn1.h +file.po: pkcs10_asn1.h +hx509_err.So: hx509_err.c +hx509_err.So: hx509_err.h +hx509_err.o: hx509_err.c +hx509_err.o: hx509_err.h +hx509_err.po: hx509_err.c +hx509_err.po: hx509_err.h +keyset.So: hx509_err.h +keyset.So: ocsp_asn1.h +keyset.So: pkcs10_asn1.h +keyset.o: hx509_err.h +keyset.o: ocsp_asn1.h +keyset.o: pkcs10_asn1.h +keyset.po: hx509_err.h +keyset.po: ocsp_asn1.h +keyset.po: pkcs10_asn1.h +ks_dir.So: hx509_err.h +ks_dir.So: ocsp_asn1.h +ks_dir.So: pkcs10_asn1.h +ks_dir.o: hx509_err.h +ks_dir.o: ocsp_asn1.h +ks_dir.o: pkcs10_asn1.h +ks_dir.po: hx509_err.h +ks_dir.po: ocsp_asn1.h +ks_dir.po: pkcs10_asn1.h +ks_file.So: hx509_err.h +ks_file.So: ocsp_asn1.h +ks_file.So: pkcs10_asn1.h +ks_file.o: hx509_err.h +ks_file.o: ocsp_asn1.h +ks_file.o: pkcs10_asn1.h +ks_file.po: hx509_err.h +ks_file.po: ocsp_asn1.h +ks_file.po: pkcs10_asn1.h +ks_keychain.So: hx509_err.h +ks_keychain.So: ocsp_asn1.h +ks_keychain.So: pkcs10_asn1.h +ks_keychain.o: hx509_err.h +ks_keychain.o: ocsp_asn1.h +ks_keychain.o: pkcs10_asn1.h +ks_keychain.po: hx509_err.h +ks_keychain.po: ocsp_asn1.h +ks_keychain.po: pkcs10_asn1.h +ks_mem.So: hx509_err.h +ks_mem.So: ocsp_asn1.h +ks_mem.So: pkcs10_asn1.h +ks_mem.o: hx509_err.h +ks_mem.o: ocsp_asn1.h +ks_mem.o: pkcs10_asn1.h +ks_mem.po: hx509_err.h +ks_mem.po: ocsp_asn1.h +ks_mem.po: pkcs10_asn1.h +ks_null.So: hx509_err.h +ks_null.So: ocsp_asn1.h +ks_null.So: pkcs10_asn1.h +ks_null.o: hx509_err.h +ks_null.o: ocsp_asn1.h +ks_null.o: pkcs10_asn1.h +ks_null.po: hx509_err.h +ks_null.po: ocsp_asn1.h +ks_null.po: pkcs10_asn1.h +ks_p11.So: hx509_err.h +ks_p11.So: ocsp_asn1.h +ks_p11.So: pkcs10_asn1.h +ks_p11.o: hx509_err.h +ks_p11.o: ocsp_asn1.h +ks_p11.o: pkcs10_asn1.h +ks_p11.po: hx509_err.h +ks_p11.po: ocsp_asn1.h +ks_p11.po: pkcs10_asn1.h +ks_p12.So: hx509_err.h +ks_p12.So: ocsp_asn1.h +ks_p12.So: pkcs10_asn1.h +ks_p12.o: hx509_err.h +ks_p12.o: ocsp_asn1.h +ks_p12.o: pkcs10_asn1.h +ks_p12.po: hx509_err.h +ks_p12.po: ocsp_asn1.h +ks_p12.po: pkcs10_asn1.h +lock.So: hx509_err.h +lock.So: ocsp_asn1.h +lock.So: pkcs10_asn1.h +lock.o: hx509_err.h +lock.o: ocsp_asn1.h +lock.o: pkcs10_asn1.h +lock.po: hx509_err.h +lock.po: ocsp_asn1.h +lock.po: pkcs10_asn1.h +name.So: hx509_err.h +name.So: ocsp_asn1.h +name.So: pkcs10_asn1.h +name.o: hx509_err.h +name.o: ocsp_asn1.h +name.o: pkcs10_asn1.h +name.po: hx509_err.h +name.po: ocsp_asn1.h +name.po: pkcs10_asn1.h +peer.So: hx509_err.h +peer.So: ocsp_asn1.h +peer.So: pkcs10_asn1.h +peer.o: hx509_err.h +peer.o: ocsp_asn1.h +peer.o: pkcs10_asn1.h +peer.po: hx509_err.h +peer.po: ocsp_asn1.h +peer.po: pkcs10_asn1.h +print.So: hx509_err.h +print.So: ocsp_asn1.h +print.So: pkcs10_asn1.h +print.o: hx509_err.h +print.o: ocsp_asn1.h +print.o: pkcs10_asn1.h +print.po: hx509_err.h +print.po: ocsp_asn1.h +print.po: pkcs10_asn1.h +req.So: hx509_err.h +req.So: ocsp_asn1.h +req.So: pkcs10_asn1.h +req.o: hx509_err.h +req.o: ocsp_asn1.h +req.o: pkcs10_asn1.h +req.po: hx509_err.h +req.po: ocsp_asn1.h +req.po: pkcs10_asn1.h +revoke.So: hx509_err.h +revoke.So: ocsp_asn1.h +revoke.So: pkcs10_asn1.h +revoke.o: hx509_err.h +revoke.o: ocsp_asn1.h +revoke.o: pkcs10_asn1.h +revoke.po: hx509_err.h +revoke.po: ocsp_asn1.h +revoke.po: pkcs10_asn1.h +sel-gram.So: hx509_err.h +sel-gram.So: ocsp_asn1.h +sel-gram.So: pkcs10_asn1.h +sel-gram.So: sel-gram.c +sel-gram.o: hx509_err.h +sel-gram.o: ocsp_asn1.h +sel-gram.o: pkcs10_asn1.h +sel-gram.o: sel-gram.c +sel-gram.po: hx509_err.h +sel-gram.po: ocsp_asn1.h +sel-gram.po: pkcs10_asn1.h +sel-gram.po: sel-gram.c +sel-lex.So: sel-gram.h +sel-lex.So: sel-lex.c +sel-lex.o: sel-gram.h +sel-lex.o: sel-lex.c +sel-lex.po: sel-gram.h +sel-lex.po: sel-lex.c +sel.So: hx509_err.h +sel.So: ocsp_asn1.h +sel.So: pkcs10_asn1.h +sel.o: hx509_err.h +sel.o: ocsp_asn1.h +sel.o: pkcs10_asn1.h +sel.po: hx509_err.h +sel.po: ocsp_asn1.h +sel.po: pkcs10_asn1.h +softp11.So: hx509_err.h +softp11.So: ocsp_asn1.h +softp11.So: pkcs10_asn1.h +softp11.o: hx509_err.h +softp11.o: ocsp_asn1.h +softp11.o: pkcs10_asn1.h +softp11.po: hx509_err.h +softp11.po: ocsp_asn1.h +softp11.po: pkcs10_asn1.h +.endif diff --git a/kerberos5/lib/libkadm5clnt/Makefile.depend b/kerberos5/lib/libkadm5clnt/Makefile.depend new file mode 100644 index 000000000000..e95d17697b46 --- /dev/null +++ b/kerberos5/lib/libkadm5clnt/Makefile.depend @@ -0,0 +1,80 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + lib/libcom_err \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ad.So: kadm5_err.h +ad.o: kadm5_err.h +ad.po: kadm5_err.h +chpass_c.So: kadm5_err.h +chpass_c.o: kadm5_err.h +chpass_c.po: kadm5_err.h +client_glue.So: kadm5_err.h +client_glue.o: kadm5_err.h +client_glue.po: kadm5_err.h +common_glue.So: kadm5_err.h +common_glue.o: kadm5_err.h +common_glue.po: kadm5_err.h +create_c.So: kadm5_err.h +create_c.o: kadm5_err.h +create_c.po: kadm5_err.h +delete_c.So: kadm5_err.h +delete_c.o: kadm5_err.h +delete_c.po: kadm5_err.h +destroy_c.So: kadm5_err.h +destroy_c.o: kadm5_err.h +destroy_c.po: kadm5_err.h +flush_c.So: kadm5_err.h +flush_c.o: kadm5_err.h +flush_c.po: kadm5_err.h +free.So: kadm5_err.h +free.o: kadm5_err.h +free.po: kadm5_err.h +get_c.So: kadm5_err.h +get_c.o: kadm5_err.h +get_c.po: kadm5_err.h +get_princs_c.So: kadm5_err.h +get_princs_c.o: kadm5_err.h +get_princs_c.po: kadm5_err.h +init_c.So: kadm5_err.h +init_c.o: kadm5_err.h +init_c.po: kadm5_err.h +kadm5_err.So: kadm5_err.c +kadm5_err.So: kadm5_err.h +kadm5_err.o: kadm5_err.c +kadm5_err.o: kadm5_err.h +kadm5_err.po: kadm5_err.c +kadm5_err.po: kadm5_err.h +marshall.So: kadm5_err.h +marshall.o: kadm5_err.h +marshall.po: kadm5_err.h +modify_c.So: kadm5_err.h +modify_c.o: kadm5_err.h +modify_c.po: kadm5_err.h +privs_c.So: kadm5_err.h +privs_c.o: kadm5_err.h +privs_c.po: kadm5_err.h +randkey_c.So: kadm5_err.h +randkey_c.o: kadm5_err.h +randkey_c.po: kadm5_err.h +rename_c.So: kadm5_err.h +rename_c.o: kadm5_err.h +rename_c.po: kadm5_err.h +send_recv.So: kadm5_err.h +send_recv.o: kadm5_err.h +send_recv.po: kadm5_err.h +.endif diff --git a/kerberos5/lib/libkadm5srv/Makefile.depend b/kerberos5/lib/libkadm5srv/Makefile.depend new file mode 100644 index 000000000000..0db4314b7561 --- /dev/null +++ b/kerberos5/lib/libkadm5srv/Makefile.depend @@ -0,0 +1,104 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + lib/libcom_err \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +acl.So: kadm5_err.h +acl.o: kadm5_err.h +acl.po: kadm5_err.h +bump_pw_expire.So: kadm5_err.h +bump_pw_expire.o: kadm5_err.h +bump_pw_expire.po: kadm5_err.h +chpass_s.So: kadm5_err.h +chpass_s.o: kadm5_err.h +chpass_s.po: kadm5_err.h +common_glue.So: kadm5_err.h +common_glue.o: kadm5_err.h +common_glue.po: kadm5_err.h +context_s.So: kadm5_err.h +context_s.o: kadm5_err.h +context_s.po: kadm5_err.h +create_s.So: kadm5_err.h +create_s.o: kadm5_err.h +create_s.po: kadm5_err.h +delete_s.So: kadm5_err.h +delete_s.o: kadm5_err.h +delete_s.po: kadm5_err.h +destroy_s.So: kadm5_err.h +destroy_s.o: kadm5_err.h +destroy_s.po: kadm5_err.h +ent_setup.So: kadm5_err.h +ent_setup.o: kadm5_err.h +ent_setup.po: kadm5_err.h +error.So: kadm5_err.h +error.o: kadm5_err.h +error.po: kadm5_err.h +flush_s.So: kadm5_err.h +flush_s.o: kadm5_err.h +flush_s.po: kadm5_err.h +free.So: kadm5_err.h +free.o: kadm5_err.h +free.po: kadm5_err.h +get_princs_s.So: kadm5_err.h +get_princs_s.o: kadm5_err.h +get_princs_s.po: kadm5_err.h +get_s.So: kadm5_err.h +get_s.o: kadm5_err.h +get_s.po: kadm5_err.h +init_s.So: kadm5_err.h +init_s.o: kadm5_err.h +init_s.po: kadm5_err.h +kadm5_err.So: kadm5_err.c +kadm5_err.So: kadm5_err.h +kadm5_err.o: kadm5_err.c +kadm5_err.o: kadm5_err.h +kadm5_err.po: kadm5_err.c +kadm5_err.po: kadm5_err.h +keys.So: kadm5_err.h +keys.o: kadm5_err.h +keys.po: kadm5_err.h +log.So: kadm5_err.h +log.o: kadm5_err.h +log.po: kadm5_err.h +marshall.So: kadm5_err.h +marshall.o: kadm5_err.h +marshall.po: kadm5_err.h +modify_s.So: kadm5_err.h +modify_s.o: kadm5_err.h +modify_s.po: kadm5_err.h +password_quality.So: kadm5_err.h +password_quality.o: kadm5_err.h +password_quality.po: kadm5_err.h +privs_s.So: kadm5_err.h +privs_s.o: kadm5_err.h +privs_s.po: kadm5_err.h +randkey_s.So: kadm5_err.h +randkey_s.o: kadm5_err.h +randkey_s.po: kadm5_err.h +rename_s.So: kadm5_err.h +rename_s.o: kadm5_err.h +rename_s.po: kadm5_err.h +server_glue.So: kadm5_err.h +server_glue.o: kadm5_err.h +server_glue.po: kadm5_err.h +set_keys.So: kadm5_err.h +set_keys.o: kadm5_err.h +set_keys.po: kadm5_err.h +set_modifier.So: kadm5_err.h +set_modifier.o: kadm5_err.h +set_modifier.po: kadm5_err.h +.endif diff --git a/kerberos5/lib/libkafs5/Makefile.depend b/kerberos5/lib/libkafs5/Makefile.depend new file mode 100644 index 000000000000..8939113ed65b --- /dev/null +++ b/kerberos5/lib/libkafs5/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/lib/libkdc/Makefile.depend b/kerberos5/lib/libkdc/Makefile.depend new file mode 100644 index 000000000000..bbba09e8bbc6 --- /dev/null +++ b/kerberos5/lib/libkdc/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + lib/libcom_err \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/lib/libkrb5/Makefile.depend b/kerberos5/lib/libkrb5/Makefile.depend new file mode 100644 index 000000000000..6ec997bf7d61 --- /dev/null +++ b/kerberos5/lib/libkrb5/Makefile.depend @@ -0,0 +1,1094 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ + lib/libcom_err \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +acache.So: heim_err.h +acache.So: k524_err.h +acache.So: krb5_err.h +acache.o: heim_err.h +acache.o: k524_err.h +acache.o: krb5_err.h +acache.po: heim_err.h +acache.po: k524_err.h +acache.po: krb5_err.h +acl.So: heim_err.h +acl.So: k524_err.h +acl.So: krb5_err.h +acl.o: heim_err.h +acl.o: k524_err.h +acl.o: krb5_err.h +acl.po: heim_err.h +acl.po: k524_err.h +acl.po: krb5_err.h +add_et_list.So: heim_err.h +add_et_list.So: k524_err.h +add_et_list.So: krb5_err.h +add_et_list.o: heim_err.h +add_et_list.o: k524_err.h +add_et_list.o: krb5_err.h +add_et_list.po: heim_err.h +add_et_list.po: k524_err.h +add_et_list.po: krb5_err.h +addr_families.So: heim_err.h +addr_families.So: k524_err.h +addr_families.So: krb5_err.h +addr_families.o: heim_err.h +addr_families.o: k524_err.h +addr_families.o: krb5_err.h +addr_families.po: heim_err.h +addr_families.po: k524_err.h +addr_families.po: krb5_err.h +aname_to_localname.So: heim_err.h +aname_to_localname.So: k524_err.h +aname_to_localname.So: krb5_err.h +aname_to_localname.o: heim_err.h +aname_to_localname.o: k524_err.h +aname_to_localname.o: krb5_err.h +aname_to_localname.po: heim_err.h +aname_to_localname.po: k524_err.h +aname_to_localname.po: krb5_err.h +appdefault.So: heim_err.h +appdefault.So: k524_err.h +appdefault.So: krb5_err.h +appdefault.o: heim_err.h +appdefault.o: k524_err.h +appdefault.o: krb5_err.h +appdefault.po: heim_err.h +appdefault.po: k524_err.h +appdefault.po: krb5_err.h +asn1_glue.So: heim_err.h +asn1_glue.So: k524_err.h +asn1_glue.So: krb5_err.h +asn1_glue.o: heim_err.h +asn1_glue.o: k524_err.h +asn1_glue.o: krb5_err.h +asn1_glue.po: heim_err.h +asn1_glue.po: k524_err.h +asn1_glue.po: krb5_err.h +auth_context.So: heim_err.h +auth_context.So: k524_err.h +auth_context.So: krb5_err.h +auth_context.o: heim_err.h +auth_context.o: k524_err.h +auth_context.o: krb5_err.h +auth_context.po: heim_err.h +auth_context.po: k524_err.h +auth_context.po: krb5_err.h +build_ap_req.So: heim_err.h +build_ap_req.So: k524_err.h +build_ap_req.So: krb5_err.h +build_ap_req.o: heim_err.h +build_ap_req.o: k524_err.h +build_ap_req.o: krb5_err.h +build_ap_req.po: heim_err.h +build_ap_req.po: k524_err.h +build_ap_req.po: krb5_err.h +build_auth.So: heim_err.h +build_auth.So: k524_err.h +build_auth.So: krb5_err.h +build_auth.o: heim_err.h +build_auth.o: k524_err.h +build_auth.o: krb5_err.h +build_auth.po: heim_err.h +build_auth.po: k524_err.h +build_auth.po: krb5_err.h +cache.So: heim_err.h +cache.So: k524_err.h +cache.So: krb5_err.h +cache.o: heim_err.h +cache.o: k524_err.h +cache.o: krb5_err.h +cache.po: heim_err.h +cache.po: k524_err.h +cache.po: krb5_err.h +changepw.So: heim_err.h +changepw.So: k524_err.h +changepw.So: krb5_err.h +changepw.o: heim_err.h +changepw.o: k524_err.h +changepw.o: krb5_err.h +changepw.po: heim_err.h +changepw.po: k524_err.h +changepw.po: krb5_err.h +codec.So: heim_err.h +codec.So: k524_err.h +codec.So: krb5_err.h +codec.o: heim_err.h +codec.o: k524_err.h +codec.o: krb5_err.h +codec.po: heim_err.h +codec.po: k524_err.h +codec.po: krb5_err.h +config_file.So: heim_err.h +config_file.So: k524_err.h +config_file.So: krb5_err.h +config_file.o: heim_err.h +config_file.o: k524_err.h +config_file.o: krb5_err.h +config_file.po: heim_err.h +config_file.po: k524_err.h +config_file.po: krb5_err.h +constants.So: heim_err.h +constants.So: k524_err.h +constants.So: krb5_err.h +constants.o: heim_err.h +constants.o: k524_err.h +constants.o: krb5_err.h +constants.po: heim_err.h +constants.po: k524_err.h +constants.po: krb5_err.h +context.So: heim_err.h +context.So: k524_err.h +context.So: krb5_err.h +context.o: heim_err.h +context.o: k524_err.h +context.o: krb5_err.h +context.po: heim_err.h +context.po: k524_err.h +context.po: krb5_err.h +convert_creds.So: heim_err.h +convert_creds.So: k524_err.h +convert_creds.So: krb5_err.h +convert_creds.So: krb_err.h +convert_creds.o: heim_err.h +convert_creds.o: k524_err.h +convert_creds.o: krb5_err.h +convert_creds.o: krb_err.h +convert_creds.po: heim_err.h +convert_creds.po: k524_err.h +convert_creds.po: krb5_err.h +convert_creds.po: krb_err.h +copy_host_realm.So: heim_err.h +copy_host_realm.So: k524_err.h +copy_host_realm.So: krb5_err.h +copy_host_realm.o: heim_err.h +copy_host_realm.o: k524_err.h +copy_host_realm.o: krb5_err.h +copy_host_realm.po: heim_err.h +copy_host_realm.po: k524_err.h +copy_host_realm.po: krb5_err.h +crc.So: heim_err.h +crc.So: k524_err.h +crc.So: krb5_err.h +crc.o: heim_err.h +crc.o: k524_err.h +crc.o: krb5_err.h +crc.po: heim_err.h +crc.po: k524_err.h +crc.po: krb5_err.h +creds.So: heim_err.h +creds.So: k524_err.h +creds.So: krb5_err.h +creds.o: heim_err.h +creds.o: k524_err.h +creds.o: krb5_err.h +creds.po: heim_err.h +creds.po: k524_err.h +creds.po: krb5_err.h +crypto-aes.So: heim_err.h +crypto-aes.So: k524_err.h +crypto-aes.So: krb5_err.h +crypto-aes.o: heim_err.h +crypto-aes.o: k524_err.h +crypto-aes.o: krb5_err.h +crypto-aes.po: heim_err.h +crypto-aes.po: k524_err.h +crypto-aes.po: krb5_err.h +crypto-algs.So: heim_err.h +crypto-algs.So: k524_err.h +crypto-algs.So: krb5_err.h +crypto-algs.o: heim_err.h +crypto-algs.o: k524_err.h +crypto-algs.o: krb5_err.h +crypto-algs.po: heim_err.h +crypto-algs.po: k524_err.h +crypto-algs.po: krb5_err.h +crypto-arcfour.So: heim_err.h +crypto-arcfour.So: k524_err.h +crypto-arcfour.So: krb5_err.h +crypto-arcfour.o: heim_err.h +crypto-arcfour.o: k524_err.h +crypto-arcfour.o: krb5_err.h +crypto-arcfour.po: heim_err.h +crypto-arcfour.po: k524_err.h +crypto-arcfour.po: krb5_err.h +crypto-des-common.So: heim_err.h +crypto-des-common.So: k524_err.h +crypto-des-common.So: krb5_err.h +crypto-des-common.o: heim_err.h +crypto-des-common.o: k524_err.h +crypto-des-common.o: krb5_err.h +crypto-des-common.po: heim_err.h +crypto-des-common.po: k524_err.h +crypto-des-common.po: krb5_err.h +crypto-des.So: heim_err.h +crypto-des.So: k524_err.h +crypto-des.So: krb5_err.h +crypto-des.o: heim_err.h +crypto-des.o: k524_err.h +crypto-des.o: krb5_err.h +crypto-des.po: heim_err.h +crypto-des.po: k524_err.h +crypto-des.po: krb5_err.h +crypto-des3.So: heim_err.h +crypto-des3.So: k524_err.h +crypto-des3.So: krb5_err.h +crypto-des3.o: heim_err.h +crypto-des3.o: k524_err.h +crypto-des3.o: krb5_err.h +crypto-des3.po: heim_err.h +crypto-des3.po: k524_err.h +crypto-des3.po: krb5_err.h +crypto-evp.So: heim_err.h +crypto-evp.So: k524_err.h +crypto-evp.So: krb5_err.h +crypto-evp.o: heim_err.h +crypto-evp.o: k524_err.h +crypto-evp.o: krb5_err.h +crypto-evp.po: heim_err.h +crypto-evp.po: k524_err.h +crypto-evp.po: krb5_err.h +crypto-null.So: heim_err.h +crypto-null.So: k524_err.h +crypto-null.So: krb5_err.h +crypto-null.o: heim_err.h +crypto-null.o: k524_err.h +crypto-null.o: krb5_err.h +crypto-null.po: heim_err.h +crypto-null.po: k524_err.h +crypto-null.po: krb5_err.h +crypto-pk.So: heim_err.h +crypto-pk.So: k524_err.h +crypto-pk.So: krb5_err.h +crypto-pk.o: heim_err.h +crypto-pk.o: k524_err.h +crypto-pk.o: krb5_err.h +crypto-pk.po: heim_err.h +crypto-pk.po: k524_err.h +crypto-pk.po: krb5_err.h +crypto-rand.So: heim_err.h +crypto-rand.So: k524_err.h +crypto-rand.So: krb5_err.h +crypto-rand.o: heim_err.h +crypto-rand.o: k524_err.h +crypto-rand.o: krb5_err.h +crypto-rand.po: heim_err.h +crypto-rand.po: k524_err.h +crypto-rand.po: krb5_err.h +crypto.So: heim_err.h +crypto.So: k524_err.h +crypto.So: krb5_err.h +crypto.o: heim_err.h +crypto.o: k524_err.h +crypto.o: krb5_err.h +crypto.po: heim_err.h +crypto.po: k524_err.h +crypto.po: krb5_err.h +data.So: heim_err.h +data.So: k524_err.h +data.So: krb5_err.h +data.o: heim_err.h +data.o: k524_err.h +data.o: krb5_err.h +data.po: heim_err.h +data.po: k524_err.h +data.po: krb5_err.h +deprecated.So: heim_err.h +deprecated.So: k524_err.h +deprecated.So: krb5_err.h +deprecated.o: heim_err.h +deprecated.o: k524_err.h +deprecated.o: krb5_err.h +deprecated.po: heim_err.h +deprecated.po: k524_err.h +deprecated.po: krb5_err.h +digest.So: heim_err.h +digest.So: k524_err.h +digest.So: krb5_err.h +digest.o: heim_err.h +digest.o: k524_err.h +digest.o: krb5_err.h +digest.po: heim_err.h +digest.po: k524_err.h +digest.po: krb5_err.h +doxygen.So: heim_err.h +doxygen.So: k524_err.h +doxygen.So: krb5_err.h +doxygen.o: heim_err.h +doxygen.o: k524_err.h +doxygen.o: krb5_err.h +doxygen.po: heim_err.h +doxygen.po: k524_err.h +doxygen.po: krb5_err.h +eai_to_heim_errno.So: heim_err.h +eai_to_heim_errno.So: k524_err.h +eai_to_heim_errno.So: krb5_err.h +eai_to_heim_errno.o: heim_err.h +eai_to_heim_errno.o: k524_err.h +eai_to_heim_errno.o: krb5_err.h +eai_to_heim_errno.po: heim_err.h +eai_to_heim_errno.po: k524_err.h +eai_to_heim_errno.po: krb5_err.h +error_string.So: heim_err.h +error_string.So: k524_err.h +error_string.So: krb5_err.h +error_string.o: heim_err.h +error_string.o: k524_err.h +error_string.o: krb5_err.h +error_string.po: heim_err.h +error_string.po: k524_err.h +error_string.po: krb5_err.h +expand_hostname.So: heim_err.h +expand_hostname.So: k524_err.h +expand_hostname.So: krb5_err.h +expand_hostname.o: heim_err.h +expand_hostname.o: k524_err.h +expand_hostname.o: krb5_err.h +expand_hostname.po: heim_err.h +expand_hostname.po: k524_err.h +expand_hostname.po: krb5_err.h +expand_path.So: heim_err.h +expand_path.So: k524_err.h +expand_path.So: krb5_err.h +expand_path.o: heim_err.h +expand_path.o: k524_err.h +expand_path.o: krb5_err.h +expand_path.po: heim_err.h +expand_path.po: k524_err.h +expand_path.po: krb5_err.h +fcache.So: heim_err.h +fcache.So: k524_err.h +fcache.So: krb5_err.h +fcache.o: heim_err.h +fcache.o: k524_err.h +fcache.o: krb5_err.h +fcache.po: heim_err.h +fcache.po: k524_err.h +fcache.po: krb5_err.h +free.So: heim_err.h +free.So: k524_err.h +free.So: krb5_err.h +free.o: heim_err.h +free.o: k524_err.h +free.o: krb5_err.h +free.po: heim_err.h +free.po: k524_err.h +free.po: krb5_err.h +free_host_realm.So: heim_err.h +free_host_realm.So: k524_err.h +free_host_realm.So: krb5_err.h +free_host_realm.o: heim_err.h +free_host_realm.o: k524_err.h +free_host_realm.o: krb5_err.h +free_host_realm.po: heim_err.h +free_host_realm.po: k524_err.h +free_host_realm.po: krb5_err.h +generate_seq_number.So: heim_err.h +generate_seq_number.So: k524_err.h +generate_seq_number.So: krb5_err.h +generate_seq_number.o: heim_err.h +generate_seq_number.o: k524_err.h +generate_seq_number.o: krb5_err.h +generate_seq_number.po: heim_err.h +generate_seq_number.po: k524_err.h +generate_seq_number.po: krb5_err.h +generate_subkey.So: heim_err.h +generate_subkey.So: k524_err.h +generate_subkey.So: krb5_err.h +generate_subkey.o: heim_err.h +generate_subkey.o: k524_err.h +generate_subkey.o: krb5_err.h +generate_subkey.po: heim_err.h +generate_subkey.po: k524_err.h +generate_subkey.po: krb5_err.h +get_addrs.So: heim_err.h +get_addrs.So: k524_err.h +get_addrs.So: krb5_err.h +get_addrs.o: heim_err.h +get_addrs.o: k524_err.h +get_addrs.o: krb5_err.h +get_addrs.po: heim_err.h +get_addrs.po: k524_err.h +get_addrs.po: krb5_err.h +get_cred.So: heim_err.h +get_cred.So: k524_err.h +get_cred.So: krb5_err.h +get_cred.o: heim_err.h +get_cred.o: k524_err.h +get_cred.o: krb5_err.h +get_cred.po: heim_err.h +get_cred.po: k524_err.h +get_cred.po: krb5_err.h +get_default_principal.So: heim_err.h +get_default_principal.So: k524_err.h +get_default_principal.So: krb5_err.h +get_default_principal.o: heim_err.h +get_default_principal.o: k524_err.h +get_default_principal.o: krb5_err.h +get_default_principal.po: heim_err.h +get_default_principal.po: k524_err.h +get_default_principal.po: krb5_err.h +get_default_realm.So: heim_err.h +get_default_realm.So: k524_err.h +get_default_realm.So: krb5_err.h +get_default_realm.o: heim_err.h +get_default_realm.o: k524_err.h +get_default_realm.o: krb5_err.h +get_default_realm.po: heim_err.h +get_default_realm.po: k524_err.h +get_default_realm.po: krb5_err.h +get_for_creds.So: heim_err.h +get_for_creds.So: k524_err.h +get_for_creds.So: krb5_err.h +get_for_creds.o: heim_err.h +get_for_creds.o: k524_err.h +get_for_creds.o: krb5_err.h +get_for_creds.po: heim_err.h +get_for_creds.po: k524_err.h +get_for_creds.po: krb5_err.h +get_host_realm.So: heim_err.h +get_host_realm.So: k524_err.h +get_host_realm.So: krb5_err.h +get_host_realm.o: heim_err.h +get_host_realm.o: k524_err.h +get_host_realm.o: krb5_err.h +get_host_realm.po: heim_err.h +get_host_realm.po: k524_err.h +get_host_realm.po: krb5_err.h +get_in_tkt.So: heim_err.h +get_in_tkt.So: k524_err.h +get_in_tkt.So: krb5_err.h +get_in_tkt.o: heim_err.h +get_in_tkt.o: k524_err.h +get_in_tkt.o: krb5_err.h +get_in_tkt.po: heim_err.h +get_in_tkt.po: k524_err.h +get_in_tkt.po: krb5_err.h +get_port.So: heim_err.h +get_port.So: k524_err.h +get_port.So: krb5_err.h +get_port.o: heim_err.h +get_port.o: k524_err.h +get_port.o: krb5_err.h +get_port.po: heim_err.h +get_port.po: k524_err.h +get_port.po: krb5_err.h +heim_err.So: heim_err.c +heim_err.So: heim_err.h +heim_err.o: heim_err.c +heim_err.o: heim_err.h +heim_err.po: heim_err.c +heim_err.po: heim_err.h +init_creds.So: heim_err.h +init_creds.So: k524_err.h +init_creds.So: krb5_err.h +init_creds.o: heim_err.h +init_creds.o: k524_err.h +init_creds.o: krb5_err.h +init_creds.po: heim_err.h +init_creds.po: k524_err.h +init_creds.po: krb5_err.h +init_creds_pw.So: heim_err.h +init_creds_pw.So: k524_err.h +init_creds_pw.So: krb5_err.h +init_creds_pw.o: heim_err.h +init_creds_pw.o: k524_err.h +init_creds_pw.o: krb5_err.h +init_creds_pw.po: heim_err.h +init_creds_pw.po: k524_err.h +init_creds_pw.po: krb5_err.h +k524_err.So: k524_err.c +k524_err.So: k524_err.h +k524_err.o: k524_err.c +k524_err.o: k524_err.h +k524_err.po: k524_err.c +k524_err.po: k524_err.h +kcm.So: heim_err.h +kcm.So: k524_err.h +kcm.So: krb5_err.h +kcm.o: heim_err.h +kcm.o: k524_err.h +kcm.o: krb5_err.h +kcm.po: heim_err.h +kcm.po: k524_err.h +kcm.po: krb5_err.h +keyblock.So: heim_err.h +keyblock.So: k524_err.h +keyblock.So: krb5_err.h +keyblock.o: heim_err.h +keyblock.o: k524_err.h +keyblock.o: krb5_err.h +keyblock.po: heim_err.h +keyblock.po: k524_err.h +keyblock.po: krb5_err.h +keytab.So: heim_err.h +keytab.So: k524_err.h +keytab.So: krb5_err.h +keytab.o: heim_err.h +keytab.o: k524_err.h +keytab.o: krb5_err.h +keytab.po: heim_err.h +keytab.po: k524_err.h +keytab.po: krb5_err.h +keytab_any.So: heim_err.h +keytab_any.So: k524_err.h +keytab_any.So: krb5_err.h +keytab_any.o: heim_err.h +keytab_any.o: k524_err.h +keytab_any.o: krb5_err.h +keytab_any.po: heim_err.h +keytab_any.po: k524_err.h +keytab_any.po: krb5_err.h +keytab_file.So: heim_err.h +keytab_file.So: k524_err.h +keytab_file.So: krb5_err.h +keytab_file.o: heim_err.h +keytab_file.o: k524_err.h +keytab_file.o: krb5_err.h +keytab_file.po: heim_err.h +keytab_file.po: k524_err.h +keytab_file.po: krb5_err.h +keytab_keyfile.So: heim_err.h +keytab_keyfile.So: k524_err.h +keytab_keyfile.So: krb5_err.h +keytab_keyfile.o: heim_err.h +keytab_keyfile.o: k524_err.h +keytab_keyfile.o: krb5_err.h +keytab_keyfile.po: heim_err.h +keytab_keyfile.po: k524_err.h +keytab_keyfile.po: krb5_err.h +keytab_memory.So: heim_err.h +keytab_memory.So: k524_err.h +keytab_memory.So: krb5_err.h +keytab_memory.o: heim_err.h +keytab_memory.o: k524_err.h +keytab_memory.o: krb5_err.h +keytab_memory.po: heim_err.h +keytab_memory.po: k524_err.h +keytab_memory.po: krb5_err.h +krb5_err.So: krb5_err.c +krb5_err.So: krb5_err.h +krb5_err.o: krb5_err.c +krb5_err.o: krb5_err.h +krb5_err.po: krb5_err.c +krb5_err.po: krb5_err.h +krb_err.So: krb_err.c +krb_err.So: krb_err.h +krb_err.o: krb_err.c +krb_err.o: krb_err.h +krb_err.po: krb_err.c +krb_err.po: krb_err.h +krbhst.So: heim_err.h +krbhst.So: k524_err.h +krbhst.So: krb5_err.h +krbhst.o: heim_err.h +krbhst.o: k524_err.h +krbhst.o: krb5_err.h +krbhst.po: heim_err.h +krbhst.po: k524_err.h +krbhst.po: krb5_err.h +kuserok.So: heim_err.h +kuserok.So: k524_err.h +kuserok.So: krb5_err.h +kuserok.o: heim_err.h +kuserok.o: k524_err.h +kuserok.o: krb5_err.h +kuserok.po: heim_err.h +kuserok.po: k524_err.h +kuserok.po: krb5_err.h +log.So: heim_err.h +log.So: k524_err.h +log.So: krb5_err.h +log.o: heim_err.h +log.o: k524_err.h +log.o: krb5_err.h +log.po: heim_err.h +log.po: k524_err.h +log.po: krb5_err.h +mcache.So: heim_err.h +mcache.So: k524_err.h +mcache.So: krb5_err.h +mcache.o: heim_err.h +mcache.o: k524_err.h +mcache.o: krb5_err.h +mcache.po: heim_err.h +mcache.po: k524_err.h +mcache.po: krb5_err.h +misc.So: heim_err.h +misc.So: k524_err.h +misc.So: krb5_err.h +misc.o: heim_err.h +misc.o: k524_err.h +misc.o: krb5_err.h +misc.po: heim_err.h +misc.po: k524_err.h +misc.po: krb5_err.h +mit_glue.So: heim_err.h +mit_glue.So: k524_err.h +mit_glue.So: krb5_err.h +mit_glue.o: heim_err.h +mit_glue.o: k524_err.h +mit_glue.o: krb5_err.h +mit_glue.po: heim_err.h +mit_glue.po: k524_err.h +mit_glue.po: krb5_err.h +mk_error.So: heim_err.h +mk_error.So: k524_err.h +mk_error.So: krb5_err.h +mk_error.o: heim_err.h +mk_error.o: k524_err.h +mk_error.o: krb5_err.h +mk_error.po: heim_err.h +mk_error.po: k524_err.h +mk_error.po: krb5_err.h +mk_priv.So: heim_err.h +mk_priv.So: k524_err.h +mk_priv.So: krb5_err.h +mk_priv.o: heim_err.h +mk_priv.o: k524_err.h +mk_priv.o: krb5_err.h +mk_priv.po: heim_err.h +mk_priv.po: k524_err.h +mk_priv.po: krb5_err.h +mk_rep.So: heim_err.h +mk_rep.So: k524_err.h +mk_rep.So: krb5_err.h +mk_rep.o: heim_err.h +mk_rep.o: k524_err.h +mk_rep.o: krb5_err.h +mk_rep.po: heim_err.h +mk_rep.po: k524_err.h +mk_rep.po: krb5_err.h +mk_req.So: heim_err.h +mk_req.So: k524_err.h +mk_req.So: krb5_err.h +mk_req.o: heim_err.h +mk_req.o: k524_err.h +mk_req.o: krb5_err.h +mk_req.po: heim_err.h +mk_req.po: k524_err.h +mk_req.po: krb5_err.h +mk_req_ext.So: heim_err.h +mk_req_ext.So: k524_err.h +mk_req_ext.So: krb5_err.h +mk_req_ext.o: heim_err.h +mk_req_ext.o: k524_err.h +mk_req_ext.o: krb5_err.h +mk_req_ext.po: heim_err.h +mk_req_ext.po: k524_err.h +mk_req_ext.po: krb5_err.h +mk_safe.So: heim_err.h +mk_safe.So: k524_err.h +mk_safe.So: krb5_err.h +mk_safe.o: heim_err.h +mk_safe.o: k524_err.h +mk_safe.o: krb5_err.h +mk_safe.po: heim_err.h +mk_safe.po: k524_err.h +mk_safe.po: krb5_err.h +n-fold.So: heim_err.h +n-fold.So: k524_err.h +n-fold.So: krb5_err.h +n-fold.o: heim_err.h +n-fold.o: k524_err.h +n-fold.o: krb5_err.h +n-fold.po: heim_err.h +n-fold.po: k524_err.h +n-fold.po: krb5_err.h +net_read.So: heim_err.h +net_read.So: k524_err.h +net_read.So: krb5_err.h +net_read.o: heim_err.h +net_read.o: k524_err.h +net_read.o: krb5_err.h +net_read.po: heim_err.h +net_read.po: k524_err.h +net_read.po: krb5_err.h +net_write.So: heim_err.h +net_write.So: k524_err.h +net_write.So: krb5_err.h +net_write.o: heim_err.h +net_write.o: k524_err.h +net_write.o: krb5_err.h +net_write.po: heim_err.h +net_write.po: k524_err.h +net_write.po: krb5_err.h +pac.So: heim_err.h +pac.So: k524_err.h +pac.So: krb5_err.h +pac.o: heim_err.h +pac.o: k524_err.h +pac.o: krb5_err.h +pac.po: heim_err.h +pac.po: k524_err.h +pac.po: krb5_err.h +padata.So: heim_err.h +padata.So: k524_err.h +padata.So: krb5_err.h +padata.o: heim_err.h +padata.o: k524_err.h +padata.o: krb5_err.h +padata.po: heim_err.h +padata.po: k524_err.h +padata.po: krb5_err.h +pcache.So: heim_err.h +pcache.So: k524_err.h +pcache.So: krb5_err.h +pcache.o: heim_err.h +pcache.o: k524_err.h +pcache.o: krb5_err.h +pcache.po: heim_err.h +pcache.po: k524_err.h +pcache.po: krb5_err.h +pkinit.So: heim_err.h +pkinit.So: k524_err.h +pkinit.So: krb5_err.h +pkinit.o: heim_err.h +pkinit.o: k524_err.h +pkinit.o: krb5_err.h +pkinit.po: heim_err.h +pkinit.po: k524_err.h +pkinit.po: krb5_err.h +plugin.So: heim_err.h +plugin.So: k524_err.h +plugin.So: krb5_err.h +plugin.o: heim_err.h +plugin.o: k524_err.h +plugin.o: krb5_err.h +plugin.po: heim_err.h +plugin.po: k524_err.h +plugin.po: krb5_err.h +principal.So: heim_err.h +principal.So: k524_err.h +principal.So: krb5_err.h +principal.o: heim_err.h +principal.o: k524_err.h +principal.o: krb5_err.h +principal.po: heim_err.h +principal.po: k524_err.h +principal.po: krb5_err.h +prog_setup.So: heim_err.h +prog_setup.So: k524_err.h +prog_setup.So: krb5_err.h +prog_setup.o: heim_err.h +prog_setup.o: k524_err.h +prog_setup.o: krb5_err.h +prog_setup.po: heim_err.h +prog_setup.po: k524_err.h +prog_setup.po: krb5_err.h +prompter_posix.So: heim_err.h +prompter_posix.So: k524_err.h +prompter_posix.So: krb5_err.h +prompter_posix.o: heim_err.h +prompter_posix.o: k524_err.h +prompter_posix.o: krb5_err.h +prompter_posix.po: heim_err.h +prompter_posix.po: k524_err.h +prompter_posix.po: krb5_err.h +rd_cred.So: heim_err.h +rd_cred.So: k524_err.h +rd_cred.So: krb5_err.h +rd_cred.o: heim_err.h +rd_cred.o: k524_err.h +rd_cred.o: krb5_err.h +rd_cred.po: heim_err.h +rd_cred.po: k524_err.h +rd_cred.po: krb5_err.h +rd_error.So: heim_err.h +rd_error.So: k524_err.h +rd_error.So: krb5_err.h +rd_error.o: heim_err.h +rd_error.o: k524_err.h +rd_error.o: krb5_err.h +rd_error.po: heim_err.h +rd_error.po: k524_err.h +rd_error.po: krb5_err.h +rd_priv.So: heim_err.h +rd_priv.So: k524_err.h +rd_priv.So: krb5_err.h +rd_priv.o: heim_err.h +rd_priv.o: k524_err.h +rd_priv.o: krb5_err.h +rd_priv.po: heim_err.h +rd_priv.po: k524_err.h +rd_priv.po: krb5_err.h +rd_rep.So: heim_err.h +rd_rep.So: k524_err.h +rd_rep.So: krb5_err.h +rd_rep.o: heim_err.h +rd_rep.o: k524_err.h +rd_rep.o: krb5_err.h +rd_rep.po: heim_err.h +rd_rep.po: k524_err.h +rd_rep.po: krb5_err.h +rd_req.So: heim_err.h +rd_req.So: k524_err.h +rd_req.So: krb5_err.h +rd_req.o: heim_err.h +rd_req.o: k524_err.h +rd_req.o: krb5_err.h +rd_req.po: heim_err.h +rd_req.po: k524_err.h +rd_req.po: krb5_err.h +rd_safe.So: heim_err.h +rd_safe.So: k524_err.h +rd_safe.So: krb5_err.h +rd_safe.o: heim_err.h +rd_safe.o: k524_err.h +rd_safe.o: krb5_err.h +rd_safe.po: heim_err.h +rd_safe.po: k524_err.h +rd_safe.po: krb5_err.h +read_message.So: heim_err.h +read_message.So: k524_err.h +read_message.So: krb5_err.h +read_message.o: heim_err.h +read_message.o: k524_err.h +read_message.o: krb5_err.h +read_message.po: heim_err.h +read_message.po: k524_err.h +read_message.po: krb5_err.h +recvauth.So: heim_err.h +recvauth.So: k524_err.h +recvauth.So: krb5_err.h +recvauth.o: heim_err.h +recvauth.o: k524_err.h +recvauth.o: krb5_err.h +recvauth.po: heim_err.h +recvauth.po: k524_err.h +recvauth.po: krb5_err.h +replay.So: heim_err.h +replay.So: k524_err.h +replay.So: krb5_err.h +replay.o: heim_err.h +replay.o: k524_err.h +replay.o: krb5_err.h +replay.po: heim_err.h +replay.po: k524_err.h +replay.po: krb5_err.h +salt-aes.So: heim_err.h +salt-aes.So: k524_err.h +salt-aes.So: krb5_err.h +salt-aes.o: heim_err.h +salt-aes.o: k524_err.h +salt-aes.o: krb5_err.h +salt-aes.po: heim_err.h +salt-aes.po: k524_err.h +salt-aes.po: krb5_err.h +salt-arcfour.So: heim_err.h +salt-arcfour.So: k524_err.h +salt-arcfour.So: krb5_err.h +salt-arcfour.o: heim_err.h +salt-arcfour.o: k524_err.h +salt-arcfour.o: krb5_err.h +salt-arcfour.po: heim_err.h +salt-arcfour.po: k524_err.h +salt-arcfour.po: krb5_err.h +salt-des.So: heim_err.h +salt-des.So: k524_err.h +salt-des.So: krb5_err.h +salt-des.o: heim_err.h +salt-des.o: k524_err.h +salt-des.o: krb5_err.h +salt-des.po: heim_err.h +salt-des.po: k524_err.h +salt-des.po: krb5_err.h +salt-des3.So: heim_err.h +salt-des3.So: k524_err.h +salt-des3.So: krb5_err.h +salt-des3.o: heim_err.h +salt-des3.o: k524_err.h +salt-des3.o: krb5_err.h +salt-des3.po: heim_err.h +salt-des3.po: k524_err.h +salt-des3.po: krb5_err.h +salt.So: heim_err.h +salt.So: k524_err.h +salt.So: krb5_err.h +salt.o: heim_err.h +salt.o: k524_err.h +salt.o: krb5_err.h +salt.po: heim_err.h +salt.po: k524_err.h +salt.po: krb5_err.h +scache.So: heim_err.h +scache.So: k524_err.h +scache.So: krb5_err.h +scache.o: heim_err.h +scache.o: k524_err.h +scache.o: krb5_err.h +scache.po: heim_err.h +scache.po: k524_err.h +scache.po: krb5_err.h +send_to_kdc.So: heim_err.h +send_to_kdc.So: k524_err.h +send_to_kdc.So: krb5_err.h +send_to_kdc.o: heim_err.h +send_to_kdc.o: k524_err.h +send_to_kdc.o: krb5_err.h +send_to_kdc.po: heim_err.h +send_to_kdc.po: k524_err.h +send_to_kdc.po: krb5_err.h +sendauth.So: heim_err.h +sendauth.So: k524_err.h +sendauth.So: krb5_err.h +sendauth.o: heim_err.h +sendauth.o: k524_err.h +sendauth.o: krb5_err.h +sendauth.po: heim_err.h +sendauth.po: k524_err.h +sendauth.po: krb5_err.h +set_default_realm.So: heim_err.h +set_default_realm.So: k524_err.h +set_default_realm.So: krb5_err.h +set_default_realm.o: heim_err.h +set_default_realm.o: k524_err.h +set_default_realm.o: krb5_err.h +set_default_realm.po: heim_err.h +set_default_realm.po: k524_err.h +set_default_realm.po: krb5_err.h +sock_principal.So: heim_err.h +sock_principal.So: k524_err.h +sock_principal.So: krb5_err.h +sock_principal.o: heim_err.h +sock_principal.o: k524_err.h +sock_principal.o: krb5_err.h +sock_principal.po: heim_err.h +sock_principal.po: k524_err.h +sock_principal.po: krb5_err.h +store-int.So: heim_err.h +store-int.So: k524_err.h +store-int.So: krb5_err.h +store-int.o: heim_err.h +store-int.o: k524_err.h +store-int.o: krb5_err.h +store-int.po: heim_err.h +store-int.po: k524_err.h +store-int.po: krb5_err.h +store.So: heim_err.h +store.So: k524_err.h +store.So: krb5_err.h +store.o: heim_err.h +store.o: k524_err.h +store.o: krb5_err.h +store.po: heim_err.h +store.po: k524_err.h +store.po: krb5_err.h +store_emem.So: heim_err.h +store_emem.So: k524_err.h +store_emem.So: krb5_err.h +store_emem.o: heim_err.h +store_emem.o: k524_err.h +store_emem.o: krb5_err.h +store_emem.po: heim_err.h +store_emem.po: k524_err.h +store_emem.po: krb5_err.h +store_fd.So: heim_err.h +store_fd.So: k524_err.h +store_fd.So: krb5_err.h +store_fd.o: heim_err.h +store_fd.o: k524_err.h +store_fd.o: krb5_err.h +store_fd.po: heim_err.h +store_fd.po: k524_err.h +store_fd.po: krb5_err.h +store_mem.So: heim_err.h +store_mem.So: k524_err.h +store_mem.So: krb5_err.h +store_mem.o: heim_err.h +store_mem.o: k524_err.h +store_mem.o: krb5_err.h +store_mem.po: heim_err.h +store_mem.po: k524_err.h +store_mem.po: krb5_err.h +ticket.So: heim_err.h +ticket.So: k524_err.h +ticket.So: krb5_err.h +ticket.o: heim_err.h +ticket.o: k524_err.h +ticket.o: krb5_err.h +ticket.po: heim_err.h +ticket.po: k524_err.h +ticket.po: krb5_err.h +time.So: heim_err.h +time.So: k524_err.h +time.So: krb5_err.h +time.o: heim_err.h +time.o: k524_err.h +time.o: krb5_err.h +time.po: heim_err.h +time.po: k524_err.h +time.po: krb5_err.h +transited.So: heim_err.h +transited.So: k524_err.h +transited.So: krb5_err.h +transited.o: heim_err.h +transited.o: k524_err.h +transited.o: krb5_err.h +transited.po: heim_err.h +transited.po: k524_err.h +transited.po: krb5_err.h +verify_init.So: heim_err.h +verify_init.So: k524_err.h +verify_init.So: krb5_err.h +verify_init.o: heim_err.h +verify_init.o: k524_err.h +verify_init.o: krb5_err.h +verify_init.po: heim_err.h +verify_init.po: k524_err.h +verify_init.po: krb5_err.h +verify_user.So: heim_err.h +verify_user.So: k524_err.h +verify_user.So: krb5_err.h +verify_user.o: heim_err.h +verify_user.o: k524_err.h +verify_user.o: krb5_err.h +verify_user.po: heim_err.h +verify_user.po: k524_err.h +verify_user.po: krb5_err.h +version.So: heim_err.h +version.So: k524_err.h +version.So: krb5_err.h +version.o: heim_err.h +version.o: k524_err.h +version.o: krb5_err.h +version.po: heim_err.h +version.po: k524_err.h +version.po: krb5_err.h +warn.So: heim_err.h +warn.So: k524_err.h +warn.So: krb5_err.h +warn.o: heim_err.h +warn.o: k524_err.h +warn.o: krb5_err.h +warn.po: heim_err.h +warn.po: k524_err.h +warn.po: krb5_err.h +write_message.So: heim_err.h +write_message.So: k524_err.h +write_message.So: krb5_err.h +write_message.o: heim_err.h +write_message.o: k524_err.h +write_message.o: krb5_err.h +write_message.po: heim_err.h +write_message.po: k524_err.h +write_message.po: krb5_err.h +.endif diff --git a/kerberos5/lib/libroken/Makefile.depend b/kerberos5/lib/libroken/Makefile.depend new file mode 100644 index 000000000000..310aeb954255 --- /dev/null +++ b/kerberos5/lib/libroken/Makefile.depend @@ -0,0 +1,173 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +bswap.So: roken.h +bswap.o: roken.h +bswap.po: roken.h +cloexec.So: roken.h +cloexec.o: roken.h +cloexec.po: roken.h +concat.So: roken.h +concat.o: roken.h +concat.po: roken.h +copyhostent.So: roken.h +copyhostent.o: roken.h +copyhostent.po: roken.h +ct.So: roken.h +ct.o: roken.h +ct.po: roken.h +dumpdata.So: roken.h +dumpdata.o: roken.h +dumpdata.po: roken.h +ecalloc.So: roken.h +ecalloc.o: roken.h +ecalloc.po: roken.h +emalloc.So: roken.h +emalloc.o: roken.h +emalloc.po: roken.h +environment.So: roken.h +environment.o: roken.h +environment.po: roken.h +eread.So: roken.h +eread.o: roken.h +eread.po: roken.h +erealloc.So: roken.h +erealloc.o: roken.h +erealloc.po: roken.h +esetenv.So: roken.h +esetenv.o: roken.h +esetenv.po: roken.h +estrdup.So: roken.h +estrdup.o: roken.h +estrdup.po: roken.h +ewrite.So: roken.h +ewrite.o: roken.h +ewrite.po: roken.h +get_default_username.So: roken.h +get_default_username.o: roken.h +get_default_username.po: roken.h +get_window_size.So: roken.h +get_window_size.o: roken.h +get_window_size.po: roken.h +getaddrinfo_hostspec.So: roken.h +getaddrinfo_hostspec.o: roken.h +getaddrinfo_hostspec.po: roken.h +getarg.So: roken.h +getarg.o: roken.h +getarg.po: roken.h +getnameinfo_verified.So: roken.h +getnameinfo_verified.o: roken.h +getnameinfo_verified.po: roken.h +getprogname.So: roken.h +getprogname.o: roken.h +getprogname.po: roken.h +hex.So: roken.h +hex.o: roken.h +hex.po: roken.h +hostent_find_fqdn.So: roken.h +hostent_find_fqdn.o: roken.h +hostent_find_fqdn.po: roken.h +issuid.So: roken.h +issuid.o: roken.h +issuid.po: roken.h +k_getpwnam.So: roken.h +k_getpwnam.o: roken.h +k_getpwnam.po: roken.h +k_getpwuid.So: roken.h +k_getpwuid.o: roken.h +k_getpwuid.po: roken.h +mini_inetd.So: roken.h +mini_inetd.o: roken.h +mini_inetd.po: roken.h +net_read.So: roken.h +net_read.o: roken.h +net_read.po: roken.h +net_write.So: roken.h +net_write.o: roken.h +net_write.po: roken.h +parse_units.So: roken.h +parse_units.o: roken.h +parse_units.po: roken.h +rand.So: roken.h +rand.o: roken.h +rand.po: roken.h +realloc.So: roken.h +realloc.o: roken.h +realloc.po: roken.h +resolve.So: roken.h +resolve.o: roken.h +resolve.po: roken.h +roken_gethostby.So: roken.h +roken_gethostby.o: roken.h +roken_gethostby.po: roken.h +rtbl.So: roken.h +rtbl.o: roken.h +rtbl.po: roken.h +setprogname.So: roken.h +setprogname.o: roken.h +setprogname.po: roken.h +signal.So: roken.h +signal.o: roken.h +signal.po: roken.h +simple_exec.So: roken.h +simple_exec.o: roken.h +simple_exec.po: roken.h +snprintf.So: roken.h +snprintf.o: roken.h +snprintf.po: roken.h +socket.So: roken.h +socket.o: roken.h +socket.po: roken.h +strcollect.So: roken.h +strcollect.o: roken.h +strcollect.po: roken.h +strlwr.So: roken.h +strlwr.o: roken.h +strlwr.po: roken.h +strpool.So: roken.h +strpool.o: roken.h +strpool.po: roken.h +strsep_copy.So: roken.h +strsep_copy.o: roken.h +strsep_copy.po: roken.h +strupr.So: roken.h +strupr.o: roken.h +strupr.po: roken.h +timeval.So: roken.h +timeval.o: roken.h +timeval.po: roken.h +tm2time.So: roken.h +tm2time.o: roken.h +tm2time.po: roken.h +unvis.So: roken.h +unvis.o: roken.h +unvis.po: roken.h +verify.So: roken.h +verify.o: roken.h +verify.po: roken.h +vis.So: roken.h +vis.o: roken.h +vis.po: roken.h +warnerr.So: roken.h +warnerr.o: roken.h +warnerr.po: roken.h +write_pid.So: roken.h +write_pid.o: roken.h +write_pid.po: roken.h +xfree.So: roken.h +xfree.o: roken.h +xfree.po: roken.h +.endif diff --git a/kerberos5/lib/libsl/Makefile.depend b/kerberos5/lib/libsl/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/kerberos5/lib/libsl/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/lib/libvers/Makefile.depend b/kerberos5/lib/libvers/Makefile.depend new file mode 100644 index 000000000000..c42b0d7150ce --- /dev/null +++ b/kerberos5/lib/libvers/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +print_version.o: roken.h +print_version.po: roken.h +.endif diff --git a/kerberos5/lib/libwind/Makefile.depend b/kerberos5/lib/libwind/Makefile.depend new file mode 100644 index 000000000000..0c6ce77b7cf2 --- /dev/null +++ b/kerberos5/lib/libwind/Makefile.depend @@ -0,0 +1,57 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libcom_err \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +bidi.So: wind_err.h +bidi.o: wind_err.h +bidi.po: wind_err.h +combining.So: wind_err.h +combining.o: wind_err.h +combining.po: wind_err.h +errorlist.So: wind_err.h +errorlist.o: wind_err.h +errorlist.po: wind_err.h +errorlist_table.So: wind_err.h +errorlist_table.o: wind_err.h +errorlist_table.po: wind_err.h +ldap.So: wind_err.h +ldap.o: wind_err.h +ldap.po: wind_err.h +map.So: wind_err.h +map.o: wind_err.h +map.po: wind_err.h +map_table.So: wind_err.h +map_table.o: wind_err.h +map_table.po: wind_err.h +normalize.So: wind_err.h +normalize.o: wind_err.h +normalize.po: wind_err.h +punycode.So: wind_err.h +punycode.o: wind_err.h +punycode.po: wind_err.h +stringprep.So: wind_err.h +stringprep.o: wind_err.h +stringprep.po: wind_err.h +utf8.So: wind_err.h +utf8.o: wind_err.h +utf8.po: wind_err.h +wind_err.So: wind_err.c +wind_err.So: wind_err.h +wind_err.o: wind_err.c +wind_err.o: wind_err.h +wind_err.po: wind_err.c +wind_err.po: wind_err.h +.endif diff --git a/kerberos5/libexec/digest-service/Makefile.depend b/kerberos5/libexec/digest-service/Makefile.depend new file mode 100644 index 000000000000..6accfead0809 --- /dev/null +++ b/kerberos5/libexec/digest-service/Makefile.depend @@ -0,0 +1,35 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcs \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkdc \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/libexec/hprop/Makefile.depend b/kerberos5/libexec/hprop/Makefile.depend new file mode 100644 index 000000000000..c0d0cd8eb27e --- /dev/null +++ b/kerberos5/libexec/hprop/Makefile.depend @@ -0,0 +1,34 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkadm5clnt \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/libexec/hpropd/Makefile.depend b/kerberos5/libexec/hpropd/Makefile.depend new file mode 100644 index 000000000000..339a02998f30 --- /dev/null +++ b/kerberos5/libexec/hpropd/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/libexec/ipropd-master/Makefile.depend b/kerberos5/libexec/ipropd-master/Makefile.depend new file mode 100644 index 000000000000..efca2cb7d71c --- /dev/null +++ b/kerberos5/libexec/ipropd-master/Makefile.depend @@ -0,0 +1,34 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkadm5srv \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ipropd_common.o: kadm5_err.h +ipropd_common.po: kadm5_err.h +ipropd_master.o: kadm5_err.h +ipropd_master.po: kadm5_err.h +.endif diff --git a/kerberos5/libexec/ipropd-slave/Makefile.depend b/kerberos5/libexec/ipropd-slave/Makefile.depend new file mode 100644 index 000000000000..d7818494d1d2 --- /dev/null +++ b/kerberos5/libexec/ipropd-slave/Makefile.depend @@ -0,0 +1,34 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkadm5srv \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ipropd_common.o: kadm5_err.h +ipropd_common.po: kadm5_err.h +ipropd_slave.o: kadm5_err.h +ipropd_slave.po: kadm5_err.h +.endif diff --git a/kerberos5/libexec/kadmind/Makefile.depend b/kerberos5/libexec/kadmind/Makefile.depend new file mode 100644 index 000000000000..6ce5fa768361 --- /dev/null +++ b/kerberos5/libexec/kadmind/Makefile.depend @@ -0,0 +1,36 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/gssapi \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkadm5clnt \ + kerberos5/lib/libkadm5srv \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libgssapi \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/libexec/kcm/Makefile.depend b/kerberos5/libexec/kcm/Makefile.depend new file mode 100644 index 000000000000..68fb1c89d5f6 --- /dev/null +++ b/kerberos5/libexec/kcm/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libheimipcs \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/libexec/kdc/Makefile.depend b/kerberos5/libexec/kdc/Makefile.depend new file mode 100644 index 000000000000..657a9c8371c6 --- /dev/null +++ b/kerberos5/libexec/kdc/Makefile.depend @@ -0,0 +1,34 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkdc \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/libexec/kdigest/Makefile.depend b/kerberos5/libexec/kdigest/Makefile.depend new file mode 100644 index 000000000000..507b0ddf962d --- /dev/null +++ b/kerberos5/libexec/kdigest/Makefile.depend @@ -0,0 +1,36 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libkafs5 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libsl \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libedit \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +kdigest-commands.o: kdigest-commands.c +kdigest-commands.o: kdigest-commands.h +kdigest-commands.po: kdigest-commands.c +kdigest-commands.po: kdigest-commands.h +kdigest.o: kdigest-commands.h +kdigest.po: kdigest-commands.h +.endif diff --git a/kerberos5/libexec/kfd/Makefile.depend b/kerberos5/libexec/kfd/Makefile.depend new file mode 100644 index 000000000000..12d14d09b9a4 --- /dev/null +++ b/kerberos5/libexec/kfd/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/libexec/kimpersonate/Makefile.depend b/kerberos5/libexec/kimpersonate/Makefile.depend new file mode 100644 index 000000000000..d7dceac3ddde --- /dev/null +++ b/kerberos5/libexec/kimpersonate/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libkafs5 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/libexec/kpasswdd/Makefile.depend b/kerberos5/libexec/kpasswdd/Makefile.depend new file mode 100644 index 000000000000..4670d04c0ab5 --- /dev/null +++ b/kerberos5/libexec/kpasswdd/Makefile.depend @@ -0,0 +1,32 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkadm5clnt \ + kerberos5/lib/libkadm5srv \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/tools/asn1_compile/Makefile b/kerberos5/tools/asn1_compile/Makefile index 94174c4e637b..194642136a0d 100644 --- a/kerberos5/tools/asn1_compile/Makefile +++ b/kerberos5/tools/asn1_compile/Makefile @@ -25,7 +25,7 @@ SRCS= \ CFLAGS+=-I${KRB5DIR}/lib/roken -I${KRB5DIR}/lib/asn1 -I. -CLEANFILES= roken.h +CLEANFILES= roken.h lex.c parse.c roken.h: make-roken > ${.TARGET} diff --git a/kerberos5/tools/asn1_compile/Makefile.depend b/kerberos5/tools/asn1_compile/Makefile.depend new file mode 100644 index 000000000000..a7637fb533bc --- /dev/null +++ b/kerberos5/tools/asn1_compile/Makefile.depend @@ -0,0 +1,56 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +asn1parse.o: asn1parse.c +asn1parse.o: roken.h +asn1parse.po: asn1parse.c +asn1parse.po: roken.h +gen.o: roken.h +gen.po: roken.h +gen_copy.o: roken.h +gen_copy.po: roken.h +gen_decode.o: roken.h +gen_decode.po: roken.h +gen_encode.o: roken.h +gen_encode.po: roken.h +gen_free.o: roken.h +gen_free.po: roken.h +gen_glue.o: roken.h +gen_glue.po: roken.h +gen_length.o: roken.h +gen_length.po: roken.h +gen_seq.o: roken.h +gen_seq.po: roken.h +gen_template.o: roken.h +gen_template.po: roken.h +hash.o: roken.h +hash.po: roken.h +lex.o: asn1parse.h +lex.o: lex.c +lex.o: roken.h +lex.po: asn1parse.h +lex.po: lex.c +lex.po: roken.h +main.o: roken.h +main.po: roken.h +symbol.o: roken.h +symbol.po: roken.h +.endif diff --git a/kerberos5/tools/make-roken/Makefile.depend b/kerberos5/tools/make-roken/Makefile.depend new file mode 100644 index 000000000000..d0e44c19228d --- /dev/null +++ b/kerberos5/tools/make-roken/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +make-roken.o: make-roken.c +make-roken.po: make-roken.c +.endif diff --git a/kerberos5/tools/slc/Makefile b/kerberos5/tools/slc/Makefile index 6e909d97761f..d1b752f46405 100644 --- a/kerberos5/tools/slc/Makefile +++ b/kerberos5/tools/slc/Makefile @@ -12,7 +12,7 @@ SRCS= roken.h \ CFLAGS+=-I${KRB5DIR}/lib/roken -I${KRB5DIR}/lib/sl -I${KRB5DIR}/lib/vers -I. -CLEANFILES= roken.h +CLEANFILES= roken.h slc-gram.c slc-lex.c roken.h: ${MAKE_ROKEN} > ${.TARGET} diff --git a/kerberos5/tools/slc/Makefile.depend b/kerberos5/tools/slc/Makefile.depend new file mode 100644 index 000000000000..55e399c53c59 --- /dev/null +++ b/kerberos5/tools/slc/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +slc-gram.o: roken.h +slc-gram.o: slc-gram.c +slc-gram.po: roken.h +slc-gram.po: slc-gram.c +slc-lex.o: slc-gram.h +slc-lex.o: slc-lex.c +slc-lex.po: slc-gram.h +slc-lex.po: slc-lex.c +.endif diff --git a/kerberos5/usr.bin/hxtool/Makefile.depend b/kerberos5/usr.bin/hxtool/Makefile.depend new file mode 100644 index 000000000000..ba8c2c0e0984 --- /dev/null +++ b/kerberos5/usr.bin/hxtool/Makefile.depend @@ -0,0 +1,35 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libroken \ + kerberos5/lib/libsl \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libedit \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +hxtool-commands.o: hxtool-commands.c +hxtool-commands.o: hxtool-commands.h +hxtool-commands.po: hxtool-commands.c +hxtool-commands.po: hxtool-commands.h +hxtool.o: hxtool-commands.h +hxtool.po: hxtool-commands.h +.endif diff --git a/kerberos5/usr.bin/kadmin/Makefile.depend b/kerberos5/usr.bin/kadmin/Makefile.depend new file mode 100644 index 000000000000..c52f7bbf3aba --- /dev/null +++ b/kerberos5/usr.bin/kadmin/Makefile.depend @@ -0,0 +1,73 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkadm5clnt \ + kerberos5/lib/libkadm5srv \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libsl \ + kerberos5/lib/libvers \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libedit \ + lib/libutil \ + lib/ncurses/ncurses \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +add_enctype.o: kadmin-commands.h +add_enctype.po: kadmin-commands.h +ank.o: kadmin-commands.h +ank.po: kadmin-commands.h +check.o: kadmin-commands.h +check.po: kadmin-commands.h +cpw.o: kadmin-commands.h +cpw.po: kadmin-commands.h +del.o: kadmin-commands.h +del.po: kadmin-commands.h +del_enctype.o: kadmin-commands.h +del_enctype.po: kadmin-commands.h +dump.o: kadmin-commands.h +dump.po: kadmin-commands.h +ext.o: kadmin-commands.h +ext.po: kadmin-commands.h +get.o: kadmin-commands.h +get.po: kadmin-commands.h +init.o: kadmin-commands.h +init.po: kadmin-commands.h +kadmin-commands.o: kadmin-commands.c +kadmin-commands.o: kadmin-commands.h +kadmin-commands.po: kadmin-commands.c +kadmin-commands.po: kadmin-commands.h +kadmin.o: kadmin-commands.h +kadmin.po: kadmin-commands.h +load.o: kadmin-commands.h +load.po: kadmin-commands.h +mod.o: kadmin-commands.h +mod.po: kadmin-commands.h +pw_quality.o: kadmin-commands.h +pw_quality.po: kadmin-commands.h +rename.o: kadmin-commands.h +rename.po: kadmin-commands.h +stash.o: kadmin-commands.h +stash.po: kadmin-commands.h +.endif diff --git a/kerberos5/usr.bin/kcc/Makefile.depend b/kerberos5/usr.bin/kcc/Makefile.depend new file mode 100644 index 000000000000..afb519d1bc5e --- /dev/null +++ b/kerberos5/usr.bin/kcc/Makefile.depend @@ -0,0 +1,42 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libkafs5 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libsl \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libedit \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +copy_cred_cache.o: kcc-commands.h +copy_cred_cache.po: kcc-commands.h +kcc-commands.o: kcc-commands.c +kcc-commands.o: kcc-commands.h +kcc-commands.po: kcc-commands.c +kcc-commands.po: kcc-commands.h +kcc.o: kcc-commands.h +kcc.po: kcc-commands.h +klist.o: kcc-commands.h +klist.po: kcc-commands.h +kswitch.o: kcc-commands.h +kswitch.po: kcc-commands.h +.endif diff --git a/kerberos5/usr.bin/kdestroy/Makefile.depend b/kerberos5/usr.bin/kdestroy/Makefile.depend new file mode 100644 index 000000000000..d7dceac3ddde --- /dev/null +++ b/kerberos5/usr.bin/kdestroy/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libkafs5 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/usr.bin/kf/Makefile.depend b/kerberos5/usr.bin/kf/Makefile.depend new file mode 100644 index 000000000000..12d14d09b9a4 --- /dev/null +++ b/kerberos5/usr.bin/kf/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/usr.bin/kgetcred/Makefile.depend b/kerberos5/usr.bin/kgetcred/Makefile.depend new file mode 100644 index 000000000000..127ffd0ce63e --- /dev/null +++ b/kerberos5/usr.bin/kgetcred/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libkafs5 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/usr.bin/kinit/Makefile.depend b/kerberos5/usr.bin/kinit/Makefile.depend new file mode 100644 index 000000000000..103c89633442 --- /dev/null +++ b/kerberos5/usr.bin/kinit/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libkafs5 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/usr.bin/kpasswd/Makefile.depend b/kerberos5/usr.bin/kpasswd/Makefile.depend new file mode 100644 index 000000000000..8c8f335707c5 --- /dev/null +++ b/kerberos5/usr.bin/kpasswd/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/usr.bin/krb5-config/Makefile.depend b/kerberos5/usr.bin/krb5-config/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/kerberos5/usr.bin/krb5-config/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/usr.bin/ksu/Makefile.depend b/kerberos5/usr.bin/ksu/Makefile.depend new file mode 100644 index 000000000000..4bb43fa8c441 --- /dev/null +++ b/kerberos5/usr.bin/ksu/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkafs5 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/usr.bin/string2key/Makefile.depend b/kerberos5/usr.bin/string2key/Makefile.depend new file mode 100644 index 000000000000..339a02998f30 --- /dev/null +++ b/kerberos5/usr.bin/string2key/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend new file mode 100644 index 000000000000..a5015d74dd07 --- /dev/null +++ b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend @@ -0,0 +1,31 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkafs5 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/usr.sbin/iprop-log/Makefile.depend b/kerberos5/usr.sbin/iprop-log/Makefile.depend new file mode 100644 index 000000000000..85d7298e48f7 --- /dev/null +++ b/kerberos5/usr.sbin/iprop-log/Makefile.depend @@ -0,0 +1,38 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libkadm5srv \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libsl \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libedit \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +iprop-commands.o: iprop-commands.c +iprop-commands.o: iprop-commands.h +iprop-commands.po: iprop-commands.c +iprop-commands.po: iprop-commands.h +iprop-log.o: iprop-commands.h +iprop-log.o: kadm5_err.h +iprop-log.po: iprop-commands.h +iprop-log.po: kadm5_err.h +.endif diff --git a/kerberos5/usr.sbin/kstash/Makefile.depend b/kerberos5/usr.sbin/kstash/Makefile.depend new file mode 100644 index 000000000000..339a02998f30 --- /dev/null +++ b/kerberos5/usr.sbin/kstash/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/usr.sbin/ktutil/Makefile.depend b/kerberos5/usr.sbin/ktutil/Makefile.depend new file mode 100644 index 000000000000..bb8333d67865 --- /dev/null +++ b/kerberos5/usr.sbin/ktutil/Makefile.depend @@ -0,0 +1,53 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libkadm5clnt \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libsl \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libedit \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +add.o: ktutil-commands.h +add.po: ktutil-commands.h +change.o: ktutil-commands.h +change.po: ktutil-commands.h +copy.o: ktutil-commands.h +copy.po: ktutil-commands.h +destroy.o: ktutil-commands.h +destroy.po: ktutil-commands.h +get.o: ktutil-commands.h +get.po: ktutil-commands.h +ktutil-commands.o: ktutil-commands.c +ktutil-commands.o: ktutil-commands.h +ktutil-commands.po: ktutil-commands.c +ktutil-commands.po: ktutil-commands.h +ktutil.o: ktutil-commands.h +ktutil.po: ktutil-commands.h +list.o: ktutil-commands.h +list.po: ktutil-commands.h +purge.o: ktutil-commands.h +purge.po: ktutil-commands.h +remove.o: ktutil-commands.h +remove.po: ktutil-commands.h +rename.o: ktutil-commands.h +rename.po: ktutil-commands.h +.endif diff --git a/lib/bind/bind9/Makefile.depend b/lib/bind/bind9/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/bind/bind9/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/bind/dns/Makefile.depend b/lib/bind/dns/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/bind/dns/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/bind/isc/Makefile.depend b/lib/bind/isc/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/bind/isc/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/bind/isccc/Makefile.depend b/lib/bind/isccc/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/bind/isccc/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/bind/isccfg/Makefile.depend b/lib/bind/isccfg/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/bind/isccfg/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/bind/lwres/Makefile.depend b/lib/bind/lwres/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/bind/lwres/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/include/Makefile b/lib/clang/include/Makefile index 05b43cf51979..eb797ea31cfe 100644 --- a/lib/clang/include/Makefile +++ b/lib/clang/include/Makefile @@ -28,6 +28,4 @@ INCS= altivec.h \ x86intrin.h \ xmmintrin.h -.include -.include -.include +.include diff --git a/lib/clang/include/Makefile.depend b/lib/clang/include/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/lib/clang/include/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libclanganalysis/Makefile.depend b/lib/clang/libclanganalysis/Makefile.depend new file mode 100644 index 000000000000..372e3ca0b564 --- /dev/null +++ b/lib/clang/libclanganalysis/Makefile.depend @@ -0,0 +1,179 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +AnalysisDeclContext.o: AttrList.inc.h +AnalysisDeclContext.o: Attrs.inc.h +AnalysisDeclContext.o: DeclNodes.inc.h +AnalysisDeclContext.o: DiagnosticCommonKinds.inc.h +AnalysisDeclContext.o: StmtNodes.inc.h +AnalysisDeclContext.po: AttrList.inc.h +AnalysisDeclContext.po: Attrs.inc.h +AnalysisDeclContext.po: DeclNodes.inc.h +AnalysisDeclContext.po: DiagnosticCommonKinds.inc.h +AnalysisDeclContext.po: StmtNodes.inc.h +CFG.o: AttrList.inc.h +CFG.o: Attrs.inc.h +CFG.o: DeclNodes.inc.h +CFG.o: DiagnosticCommonKinds.inc.h +CFG.o: StmtNodes.inc.h +CFG.po: AttrList.inc.h +CFG.po: Attrs.inc.h +CFG.po: DeclNodes.inc.h +CFG.po: DiagnosticCommonKinds.inc.h +CFG.po: StmtNodes.inc.h +CFGReachabilityAnalysis.o: AttrList.inc.h +CFGReachabilityAnalysis.o: Attrs.inc.h +CFGReachabilityAnalysis.o: DeclNodes.inc.h +CFGReachabilityAnalysis.o: DiagnosticCommonKinds.inc.h +CFGReachabilityAnalysis.o: StmtNodes.inc.h +CFGReachabilityAnalysis.po: AttrList.inc.h +CFGReachabilityAnalysis.po: Attrs.inc.h +CFGReachabilityAnalysis.po: DeclNodes.inc.h +CFGReachabilityAnalysis.po: DiagnosticCommonKinds.inc.h +CFGReachabilityAnalysis.po: StmtNodes.inc.h +CFGStmtMap.o: AttrList.inc.h +CFGStmtMap.o: Attrs.inc.h +CFGStmtMap.o: DeclNodes.inc.h +CFGStmtMap.o: DiagnosticCommonKinds.inc.h +CFGStmtMap.o: StmtNodes.inc.h +CFGStmtMap.po: AttrList.inc.h +CFGStmtMap.po: Attrs.inc.h +CFGStmtMap.po: DeclNodes.inc.h +CFGStmtMap.po: DiagnosticCommonKinds.inc.h +CFGStmtMap.po: StmtNodes.inc.h +CallGraph.o: AttrList.inc.h +CallGraph.o: Attrs.inc.h +CallGraph.o: DeclNodes.inc.h +CallGraph.o: DiagnosticCommonKinds.inc.h +CallGraph.o: StmtNodes.inc.h +CallGraph.po: AttrList.inc.h +CallGraph.po: Attrs.inc.h +CallGraph.po: DeclNodes.inc.h +CallGraph.po: DiagnosticCommonKinds.inc.h +CallGraph.po: StmtNodes.inc.h +CocoaConventions.o: AttrList.inc.h +CocoaConventions.o: Attrs.inc.h +CocoaConventions.o: DeclNodes.inc.h +CocoaConventions.o: DiagnosticCommonKinds.inc.h +CocoaConventions.po: AttrList.inc.h +CocoaConventions.po: Attrs.inc.h +CocoaConventions.po: DeclNodes.inc.h +CocoaConventions.po: DiagnosticCommonKinds.inc.h +Dominators.o: AttrList.inc.h +Dominators.o: Attrs.inc.h +Dominators.o: DeclNodes.inc.h +Dominators.o: DiagnosticCommonKinds.inc.h +Dominators.o: StmtNodes.inc.h +Dominators.po: AttrList.inc.h +Dominators.po: Attrs.inc.h +Dominators.po: DeclNodes.inc.h +Dominators.po: DiagnosticCommonKinds.inc.h +Dominators.po: StmtNodes.inc.h +FormatString.o: AttrList.inc.h +FormatString.o: Attrs.inc.h +FormatString.o: DeclNodes.inc.h +FormatString.o: DiagnosticCommonKinds.inc.h +FormatString.po: AttrList.inc.h +FormatString.po: Attrs.inc.h +FormatString.po: DeclNodes.inc.h +FormatString.po: DiagnosticCommonKinds.inc.h +LiveVariables.o: AttrList.inc.h +LiveVariables.o: Attrs.inc.h +LiveVariables.o: DeclNodes.inc.h +LiveVariables.o: DiagnosticCommonKinds.inc.h +LiveVariables.o: StmtNodes.inc.h +LiveVariables.po: AttrList.inc.h +LiveVariables.po: Attrs.inc.h +LiveVariables.po: DeclNodes.inc.h +LiveVariables.po: DiagnosticCommonKinds.inc.h +LiveVariables.po: StmtNodes.inc.h +PostOrderCFGView.o: AttrList.inc.h +PostOrderCFGView.o: Attrs.inc.h +PostOrderCFGView.o: DeclNodes.inc.h +PostOrderCFGView.o: DiagnosticCommonKinds.inc.h +PostOrderCFGView.o: StmtNodes.inc.h +PostOrderCFGView.po: AttrList.inc.h +PostOrderCFGView.po: Attrs.inc.h +PostOrderCFGView.po: DeclNodes.inc.h +PostOrderCFGView.po: DiagnosticCommonKinds.inc.h +PostOrderCFGView.po: StmtNodes.inc.h +PrintfFormatString.o: AttrList.inc.h +PrintfFormatString.o: Attrs.inc.h +PrintfFormatString.o: DeclNodes.inc.h +PrintfFormatString.o: DiagnosticCommonKinds.inc.h +PrintfFormatString.po: AttrList.inc.h +PrintfFormatString.po: Attrs.inc.h +PrintfFormatString.po: DeclNodes.inc.h +PrintfFormatString.po: DiagnosticCommonKinds.inc.h +ProgramPoint.o: AttrList.inc.h +ProgramPoint.o: Attrs.inc.h +ProgramPoint.o: DeclNodes.inc.h +ProgramPoint.o: DiagnosticCommonKinds.inc.h +ProgramPoint.o: StmtNodes.inc.h +ProgramPoint.po: AttrList.inc.h +ProgramPoint.po: Attrs.inc.h +ProgramPoint.po: DeclNodes.inc.h +ProgramPoint.po: DiagnosticCommonKinds.inc.h +ProgramPoint.po: StmtNodes.inc.h +PseudoConstantAnalysis.o: AttrList.inc.h +PseudoConstantAnalysis.o: Attrs.inc.h +PseudoConstantAnalysis.o: DeclNodes.inc.h +PseudoConstantAnalysis.o: DiagnosticCommonKinds.inc.h +PseudoConstantAnalysis.o: StmtNodes.inc.h +PseudoConstantAnalysis.po: AttrList.inc.h +PseudoConstantAnalysis.po: Attrs.inc.h +PseudoConstantAnalysis.po: DeclNodes.inc.h +PseudoConstantAnalysis.po: DiagnosticCommonKinds.inc.h +PseudoConstantAnalysis.po: StmtNodes.inc.h +ReachableCode.o: AttrList.inc.h +ReachableCode.o: Attrs.inc.h +ReachableCode.o: DeclNodes.inc.h +ReachableCode.o: DiagnosticCommonKinds.inc.h +ReachableCode.o: StmtNodes.inc.h +ReachableCode.po: AttrList.inc.h +ReachableCode.po: Attrs.inc.h +ReachableCode.po: DeclNodes.inc.h +ReachableCode.po: DiagnosticCommonKinds.inc.h +ReachableCode.po: StmtNodes.inc.h +ScanfFormatString.o: AttrList.inc.h +ScanfFormatString.o: Attrs.inc.h +ScanfFormatString.o: DeclNodes.inc.h +ScanfFormatString.o: DiagnosticCommonKinds.inc.h +ScanfFormatString.po: AttrList.inc.h +ScanfFormatString.po: Attrs.inc.h +ScanfFormatString.po: DeclNodes.inc.h +ScanfFormatString.po: DiagnosticCommonKinds.inc.h +ThreadSafety.o: AttrList.inc.h +ThreadSafety.o: Attrs.inc.h +ThreadSafety.o: DeclNodes.inc.h +ThreadSafety.o: DiagnosticCommonKinds.inc.h +ThreadSafety.o: StmtNodes.inc.h +ThreadSafety.po: AttrList.inc.h +ThreadSafety.po: Attrs.inc.h +ThreadSafety.po: DeclNodes.inc.h +ThreadSafety.po: DiagnosticCommonKinds.inc.h +ThreadSafety.po: StmtNodes.inc.h +UninitializedValues.o: AttrList.inc.h +UninitializedValues.o: Attrs.inc.h +UninitializedValues.o: DeclNodes.inc.h +UninitializedValues.o: DiagnosticCommonKinds.inc.h +UninitializedValues.o: StmtNodes.inc.h +UninitializedValues.po: AttrList.inc.h +UninitializedValues.po: Attrs.inc.h +UninitializedValues.po: DeclNodes.inc.h +UninitializedValues.po: DiagnosticCommonKinds.inc.h +UninitializedValues.po: StmtNodes.inc.h +.endif diff --git a/lib/clang/libclangarcmigrate/Makefile.depend b/lib/clang/libclangarcmigrate/Makefile.depend new file mode 100644 index 000000000000..ba37a31c36c3 --- /dev/null +++ b/lib/clang/libclangarcmigrate/Makefile.depend @@ -0,0 +1,209 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ARCMT.o: AttrList.inc.h +ARCMT.o: AttrParsedAttrList.inc.h +ARCMT.o: Attrs.inc.h +ARCMT.o: DeclNodes.inc.h +ARCMT.o: DiagnosticCommonKinds.inc.h +ARCMT.o: DiagnosticGroups.inc.h +ARCMT.o: DiagnosticSemaKinds.inc.h +ARCMT.o: StmtNodes.inc.h +ARCMT.po: AttrList.inc.h +ARCMT.po: AttrParsedAttrList.inc.h +ARCMT.po: Attrs.inc.h +ARCMT.po: DeclNodes.inc.h +ARCMT.po: DiagnosticCommonKinds.inc.h +ARCMT.po: DiagnosticGroups.inc.h +ARCMT.po: DiagnosticSemaKinds.inc.h +ARCMT.po: StmtNodes.inc.h +ARCMTActions.o: DiagnosticCommonKinds.inc.h +ARCMTActions.po: DiagnosticCommonKinds.inc.h +FileRemapper.o: DiagnosticCommonKinds.inc.h +FileRemapper.po: DiagnosticCommonKinds.inc.h +ObjCMT.o: AttrList.inc.h +ObjCMT.o: Attrs.inc.h +ObjCMT.o: DeclNodes.inc.h +ObjCMT.o: DiagnosticCommonKinds.inc.h +ObjCMT.o: StmtNodes.inc.h +ObjCMT.po: AttrList.inc.h +ObjCMT.po: Attrs.inc.h +ObjCMT.po: DeclNodes.inc.h +ObjCMT.po: DiagnosticCommonKinds.inc.h +ObjCMT.po: StmtNodes.inc.h +PlistReporter.o: DiagnosticCommonKinds.inc.h +PlistReporter.po: DiagnosticCommonKinds.inc.h +TransAPIUses.o: AttrList.inc.h +TransAPIUses.o: Attrs.inc.h +TransAPIUses.o: DeclNodes.inc.h +TransAPIUses.o: DiagnosticCommonKinds.inc.h +TransAPIUses.o: DiagnosticSemaKinds.inc.h +TransAPIUses.o: StmtNodes.inc.h +TransAPIUses.po: AttrList.inc.h +TransAPIUses.po: Attrs.inc.h +TransAPIUses.po: DeclNodes.inc.h +TransAPIUses.po: DiagnosticCommonKinds.inc.h +TransAPIUses.po: DiagnosticSemaKinds.inc.h +TransAPIUses.po: StmtNodes.inc.h +TransARCAssign.o: AttrList.inc.h +TransARCAssign.o: Attrs.inc.h +TransARCAssign.o: DeclNodes.inc.h +TransARCAssign.o: DiagnosticCommonKinds.inc.h +TransARCAssign.o: DiagnosticSemaKinds.inc.h +TransARCAssign.o: StmtNodes.inc.h +TransARCAssign.po: AttrList.inc.h +TransARCAssign.po: Attrs.inc.h +TransARCAssign.po: DeclNodes.inc.h +TransARCAssign.po: DiagnosticCommonKinds.inc.h +TransARCAssign.po: DiagnosticSemaKinds.inc.h +TransARCAssign.po: StmtNodes.inc.h +TransAutoreleasePool.o: AttrList.inc.h +TransAutoreleasePool.o: Attrs.inc.h +TransAutoreleasePool.o: DeclNodes.inc.h +TransAutoreleasePool.o: DiagnosticCommonKinds.inc.h +TransAutoreleasePool.o: DiagnosticSemaKinds.inc.h +TransAutoreleasePool.o: StmtNodes.inc.h +TransAutoreleasePool.po: AttrList.inc.h +TransAutoreleasePool.po: Attrs.inc.h +TransAutoreleasePool.po: DeclNodes.inc.h +TransAutoreleasePool.po: DiagnosticCommonKinds.inc.h +TransAutoreleasePool.po: DiagnosticSemaKinds.inc.h +TransAutoreleasePool.po: StmtNodes.inc.h +TransBlockObjCVariable.o: AttrList.inc.h +TransBlockObjCVariable.o: Attrs.inc.h +TransBlockObjCVariable.o: DeclNodes.inc.h +TransBlockObjCVariable.o: DiagnosticCommonKinds.inc.h +TransBlockObjCVariable.o: StmtNodes.inc.h +TransBlockObjCVariable.po: AttrList.inc.h +TransBlockObjCVariable.po: Attrs.inc.h +TransBlockObjCVariable.po: DeclNodes.inc.h +TransBlockObjCVariable.po: DiagnosticCommonKinds.inc.h +TransBlockObjCVariable.po: StmtNodes.inc.h +TransEmptyStatementsAndDealloc.o: AttrList.inc.h +TransEmptyStatementsAndDealloc.o: Attrs.inc.h +TransEmptyStatementsAndDealloc.o: DeclNodes.inc.h +TransEmptyStatementsAndDealloc.o: DiagnosticCommonKinds.inc.h +TransEmptyStatementsAndDealloc.o: StmtNodes.inc.h +TransEmptyStatementsAndDealloc.po: AttrList.inc.h +TransEmptyStatementsAndDealloc.po: Attrs.inc.h +TransEmptyStatementsAndDealloc.po: DeclNodes.inc.h +TransEmptyStatementsAndDealloc.po: DiagnosticCommonKinds.inc.h +TransEmptyStatementsAndDealloc.po: StmtNodes.inc.h +TransGCAttrs.o: AttrList.inc.h +TransGCAttrs.o: Attrs.inc.h +TransGCAttrs.o: DeclNodes.inc.h +TransGCAttrs.o: DiagnosticCommonKinds.inc.h +TransGCAttrs.o: DiagnosticSemaKinds.inc.h +TransGCAttrs.o: StmtNodes.inc.h +TransGCAttrs.po: AttrList.inc.h +TransGCAttrs.po: Attrs.inc.h +TransGCAttrs.po: DeclNodes.inc.h +TransGCAttrs.po: DiagnosticCommonKinds.inc.h +TransGCAttrs.po: DiagnosticSemaKinds.inc.h +TransGCAttrs.po: StmtNodes.inc.h +TransGCCalls.o: AttrList.inc.h +TransGCCalls.o: Attrs.inc.h +TransGCCalls.o: DeclNodes.inc.h +TransGCCalls.o: DiagnosticCommonKinds.inc.h +TransGCCalls.o: DiagnosticSemaKinds.inc.h +TransGCCalls.o: StmtNodes.inc.h +TransGCCalls.po: AttrList.inc.h +TransGCCalls.po: Attrs.inc.h +TransGCCalls.po: DeclNodes.inc.h +TransGCCalls.po: DiagnosticCommonKinds.inc.h +TransGCCalls.po: DiagnosticSemaKinds.inc.h +TransGCCalls.po: StmtNodes.inc.h +TransProperties.o: AttrList.inc.h +TransProperties.o: Attrs.inc.h +TransProperties.o: DeclNodes.inc.h +TransProperties.o: DiagnosticCommonKinds.inc.h +TransProperties.o: DiagnosticSemaKinds.inc.h +TransProperties.o: StmtNodes.inc.h +TransProperties.po: AttrList.inc.h +TransProperties.po: Attrs.inc.h +TransProperties.po: DeclNodes.inc.h +TransProperties.po: DiagnosticCommonKinds.inc.h +TransProperties.po: DiagnosticSemaKinds.inc.h +TransProperties.po: StmtNodes.inc.h +TransRetainReleaseDealloc.o: AttrList.inc.h +TransRetainReleaseDealloc.o: Attrs.inc.h +TransRetainReleaseDealloc.o: DeclNodes.inc.h +TransRetainReleaseDealloc.o: DiagnosticCommonKinds.inc.h +TransRetainReleaseDealloc.o: DiagnosticSemaKinds.inc.h +TransRetainReleaseDealloc.o: StmtNodes.inc.h +TransRetainReleaseDealloc.po: AttrList.inc.h +TransRetainReleaseDealloc.po: Attrs.inc.h +TransRetainReleaseDealloc.po: DeclNodes.inc.h +TransRetainReleaseDealloc.po: DiagnosticCommonKinds.inc.h +TransRetainReleaseDealloc.po: DiagnosticSemaKinds.inc.h +TransRetainReleaseDealloc.po: StmtNodes.inc.h +TransUnbridgedCasts.o: AttrList.inc.h +TransUnbridgedCasts.o: Attrs.inc.h +TransUnbridgedCasts.o: DeclNodes.inc.h +TransUnbridgedCasts.o: DiagnosticCommonKinds.inc.h +TransUnbridgedCasts.o: DiagnosticSemaKinds.inc.h +TransUnbridgedCasts.o: StmtNodes.inc.h +TransUnbridgedCasts.po: AttrList.inc.h +TransUnbridgedCasts.po: Attrs.inc.h +TransUnbridgedCasts.po: DeclNodes.inc.h +TransUnbridgedCasts.po: DiagnosticCommonKinds.inc.h +TransUnbridgedCasts.po: DiagnosticSemaKinds.inc.h +TransUnbridgedCasts.po: StmtNodes.inc.h +TransUnusedInitDelegate.o: AttrList.inc.h +TransUnusedInitDelegate.o: Attrs.inc.h +TransUnusedInitDelegate.o: DeclNodes.inc.h +TransUnusedInitDelegate.o: DiagnosticCommonKinds.inc.h +TransUnusedInitDelegate.o: DiagnosticSemaKinds.inc.h +TransUnusedInitDelegate.o: StmtNodes.inc.h +TransUnusedInitDelegate.po: AttrList.inc.h +TransUnusedInitDelegate.po: Attrs.inc.h +TransUnusedInitDelegate.po: DeclNodes.inc.h +TransUnusedInitDelegate.po: DiagnosticCommonKinds.inc.h +TransUnusedInitDelegate.po: DiagnosticSemaKinds.inc.h +TransUnusedInitDelegate.po: StmtNodes.inc.h +TransZeroOutPropsInDealloc.o: AttrList.inc.h +TransZeroOutPropsInDealloc.o: Attrs.inc.h +TransZeroOutPropsInDealloc.o: DeclNodes.inc.h +TransZeroOutPropsInDealloc.o: DiagnosticCommonKinds.inc.h +TransZeroOutPropsInDealloc.o: StmtNodes.inc.h +TransZeroOutPropsInDealloc.po: AttrList.inc.h +TransZeroOutPropsInDealloc.po: Attrs.inc.h +TransZeroOutPropsInDealloc.po: DeclNodes.inc.h +TransZeroOutPropsInDealloc.po: DiagnosticCommonKinds.inc.h +TransZeroOutPropsInDealloc.po: StmtNodes.inc.h +TransformActions.o: AttrList.inc.h +TransformActions.o: Attrs.inc.h +TransformActions.o: DeclNodes.inc.h +TransformActions.o: DiagnosticCommonKinds.inc.h +TransformActions.o: StmtNodes.inc.h +TransformActions.po: AttrList.inc.h +TransformActions.po: Attrs.inc.h +TransformActions.po: DeclNodes.inc.h +TransformActions.po: DiagnosticCommonKinds.inc.h +TransformActions.po: StmtNodes.inc.h +Transforms.o: AttrList.inc.h +Transforms.o: Attrs.inc.h +Transforms.o: DeclNodes.inc.h +Transforms.o: DiagnosticCommonKinds.inc.h +Transforms.o: DiagnosticSemaKinds.inc.h +Transforms.o: StmtNodes.inc.h +Transforms.po: AttrList.inc.h +Transforms.po: Attrs.inc.h +Transforms.po: DeclNodes.inc.h +Transforms.po: DiagnosticCommonKinds.inc.h +Transforms.po: DiagnosticSemaKinds.inc.h +Transforms.po: StmtNodes.inc.h +.endif diff --git a/lib/clang/libclangast/Makefile.depend b/lib/clang/libclangast/Makefile.depend new file mode 100644 index 000000000000..b15ee05f4621 --- /dev/null +++ b/lib/clang/libclangast/Makefile.depend @@ -0,0 +1,489 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +APValue.o: AttrList.inc.h +APValue.o: Attrs.inc.h +APValue.o: DeclNodes.inc.h +APValue.o: DiagnosticCommonKinds.inc.h +APValue.o: StmtNodes.inc.h +APValue.po: AttrList.inc.h +APValue.po: Attrs.inc.h +APValue.po: DeclNodes.inc.h +APValue.po: DiagnosticCommonKinds.inc.h +APValue.po: StmtNodes.inc.h +ASTContext.o: AttrList.inc.h +ASTContext.o: Attrs.inc.h +ASTContext.o: DeclNodes.inc.h +ASTContext.o: DiagnosticCommonKinds.inc.h +ASTContext.o: StmtNodes.inc.h +ASTContext.po: AttrList.inc.h +ASTContext.po: Attrs.inc.h +ASTContext.po: DeclNodes.inc.h +ASTContext.po: DiagnosticCommonKinds.inc.h +ASTContext.po: StmtNodes.inc.h +ASTDiagnostic.o: AttrList.inc.h +ASTDiagnostic.o: Attrs.inc.h +ASTDiagnostic.o: DeclNodes.inc.h +ASTDiagnostic.o: DiagnosticASTKinds.inc.h +ASTDiagnostic.o: DiagnosticCommonKinds.inc.h +ASTDiagnostic.po: AttrList.inc.h +ASTDiagnostic.po: Attrs.inc.h +ASTDiagnostic.po: DeclNodes.inc.h +ASTDiagnostic.po: DiagnosticASTKinds.inc.h +ASTDiagnostic.po: DiagnosticCommonKinds.inc.h +ASTImporter.o: AttrList.inc.h +ASTImporter.o: Attrs.inc.h +ASTImporter.o: DeclNodes.inc.h +ASTImporter.o: DiagnosticASTKinds.inc.h +ASTImporter.o: DiagnosticCommonKinds.inc.h +ASTImporter.o: StmtNodes.inc.h +ASTImporter.po: AttrList.inc.h +ASTImporter.po: Attrs.inc.h +ASTImporter.po: DeclNodes.inc.h +ASTImporter.po: DiagnosticASTKinds.inc.h +ASTImporter.po: DiagnosticCommonKinds.inc.h +ASTImporter.po: StmtNodes.inc.h +AttrImpl.o: AttrImpl.inc.h +AttrImpl.o: AttrList.inc.h +AttrImpl.o: Attrs.inc.h +AttrImpl.o: DeclNodes.inc.h +AttrImpl.o: DiagnosticCommonKinds.inc.h +AttrImpl.o: StmtNodes.inc.h +AttrImpl.po: AttrImpl.inc.h +AttrImpl.po: AttrList.inc.h +AttrImpl.po: Attrs.inc.h +AttrImpl.po: DeclNodes.inc.h +AttrImpl.po: DiagnosticCommonKinds.inc.h +AttrImpl.po: StmtNodes.inc.h +CXXInheritance.o: AttrList.inc.h +CXXInheritance.o: Attrs.inc.h +CXXInheritance.o: DeclNodes.inc.h +CXXInheritance.o: DiagnosticCommonKinds.inc.h +CXXInheritance.o: StmtNodes.inc.h +CXXInheritance.po: AttrList.inc.h +CXXInheritance.po: Attrs.inc.h +CXXInheritance.po: DeclNodes.inc.h +CXXInheritance.po: DiagnosticCommonKinds.inc.h +CXXInheritance.po: StmtNodes.inc.h +Decl.o: AttrList.inc.h +Decl.o: Attrs.inc.h +Decl.o: DeclNodes.inc.h +Decl.o: DiagnosticCommonKinds.inc.h +Decl.o: StmtNodes.inc.h +Decl.po: AttrList.inc.h +Decl.po: Attrs.inc.h +Decl.po: DeclNodes.inc.h +Decl.po: DiagnosticCommonKinds.inc.h +Decl.po: StmtNodes.inc.h +DeclBase.o: AttrList.inc.h +DeclBase.o: Attrs.inc.h +DeclBase.o: DeclNodes.inc.h +DeclBase.o: DiagnosticCommonKinds.inc.h +DeclBase.o: StmtNodes.inc.h +DeclBase.po: AttrList.inc.h +DeclBase.po: Attrs.inc.h +DeclBase.po: DeclNodes.inc.h +DeclBase.po: DiagnosticCommonKinds.inc.h +DeclBase.po: StmtNodes.inc.h +DeclCXX.o: AttrList.inc.h +DeclCXX.o: Attrs.inc.h +DeclCXX.o: DeclNodes.inc.h +DeclCXX.o: DiagnosticCommonKinds.inc.h +DeclCXX.o: StmtNodes.inc.h +DeclCXX.po: AttrList.inc.h +DeclCXX.po: Attrs.inc.h +DeclCXX.po: DeclNodes.inc.h +DeclCXX.po: DiagnosticCommonKinds.inc.h +DeclCXX.po: StmtNodes.inc.h +DeclFriend.o: AttrList.inc.h +DeclFriend.o: Attrs.inc.h +DeclFriend.o: DeclNodes.inc.h +DeclFriend.o: DiagnosticCommonKinds.inc.h +DeclFriend.o: StmtNodes.inc.h +DeclFriend.po: AttrList.inc.h +DeclFriend.po: Attrs.inc.h +DeclFriend.po: DeclNodes.inc.h +DeclFriend.po: DiagnosticCommonKinds.inc.h +DeclFriend.po: StmtNodes.inc.h +DeclGroup.o: AttrList.inc.h +DeclGroup.o: Attrs.inc.h +DeclGroup.o: DeclNodes.inc.h +DeclGroup.o: DiagnosticCommonKinds.inc.h +DeclGroup.po: AttrList.inc.h +DeclGroup.po: Attrs.inc.h +DeclGroup.po: DeclNodes.inc.h +DeclGroup.po: DiagnosticCommonKinds.inc.h +DeclObjC.o: AttrList.inc.h +DeclObjC.o: Attrs.inc.h +DeclObjC.o: DeclNodes.inc.h +DeclObjC.o: DiagnosticCommonKinds.inc.h +DeclObjC.o: StmtNodes.inc.h +DeclObjC.po: AttrList.inc.h +DeclObjC.po: Attrs.inc.h +DeclObjC.po: DeclNodes.inc.h +DeclObjC.po: DiagnosticCommonKinds.inc.h +DeclObjC.po: StmtNodes.inc.h +DeclPrinter.o: AttrList.inc.h +DeclPrinter.o: Attrs.inc.h +DeclPrinter.o: DeclNodes.inc.h +DeclPrinter.o: DiagnosticCommonKinds.inc.h +DeclPrinter.o: StmtNodes.inc.h +DeclPrinter.po: AttrList.inc.h +DeclPrinter.po: Attrs.inc.h +DeclPrinter.po: DeclNodes.inc.h +DeclPrinter.po: DiagnosticCommonKinds.inc.h +DeclPrinter.po: StmtNodes.inc.h +DeclTemplate.o: AttrList.inc.h +DeclTemplate.o: Attrs.inc.h +DeclTemplate.o: DeclNodes.inc.h +DeclTemplate.o: DiagnosticCommonKinds.inc.h +DeclTemplate.o: StmtNodes.inc.h +DeclTemplate.po: AttrList.inc.h +DeclTemplate.po: Attrs.inc.h +DeclTemplate.po: DeclNodes.inc.h +DeclTemplate.po: DiagnosticCommonKinds.inc.h +DeclTemplate.po: StmtNodes.inc.h +DeclarationName.o: AttrList.inc.h +DeclarationName.o: Attrs.inc.h +DeclarationName.o: DeclNodes.inc.h +DeclarationName.o: DiagnosticCommonKinds.inc.h +DeclarationName.po: AttrList.inc.h +DeclarationName.po: Attrs.inc.h +DeclarationName.po: DeclNodes.inc.h +DeclarationName.po: DiagnosticCommonKinds.inc.h +DumpXML.o: AttrList.inc.h +DumpXML.o: Attrs.inc.h +DumpXML.o: DeclNodes.inc.h +DumpXML.o: DiagnosticCommonKinds.inc.h +DumpXML.o: StmtNodes.inc.h +DumpXML.po: AttrList.inc.h +DumpXML.po: Attrs.inc.h +DumpXML.po: DeclNodes.inc.h +DumpXML.po: DiagnosticCommonKinds.inc.h +DumpXML.po: StmtNodes.inc.h +Expr.o: AttrList.inc.h +Expr.o: Attrs.inc.h +Expr.o: DeclNodes.inc.h +Expr.o: DiagnosticCommonKinds.inc.h +Expr.o: DiagnosticSemaKinds.inc.h +Expr.o: StmtNodes.inc.h +Expr.po: AttrList.inc.h +Expr.po: Attrs.inc.h +Expr.po: DeclNodes.inc.h +Expr.po: DiagnosticCommonKinds.inc.h +Expr.po: DiagnosticSemaKinds.inc.h +Expr.po: StmtNodes.inc.h +ExprCXX.o: AttrList.inc.h +ExprCXX.o: Attrs.inc.h +ExprCXX.o: DeclNodes.inc.h +ExprCXX.o: DiagnosticCommonKinds.inc.h +ExprCXX.o: StmtNodes.inc.h +ExprCXX.po: AttrList.inc.h +ExprCXX.po: Attrs.inc.h +ExprCXX.po: DeclNodes.inc.h +ExprCXX.po: DiagnosticCommonKinds.inc.h +ExprCXX.po: StmtNodes.inc.h +ExprClassification.o: AttrList.inc.h +ExprClassification.o: Attrs.inc.h +ExprClassification.o: DeclNodes.inc.h +ExprClassification.o: DiagnosticCommonKinds.inc.h +ExprClassification.o: StmtNodes.inc.h +ExprClassification.po: AttrList.inc.h +ExprClassification.po: Attrs.inc.h +ExprClassification.po: DeclNodes.inc.h +ExprClassification.po: DiagnosticCommonKinds.inc.h +ExprClassification.po: StmtNodes.inc.h +ExprConstant.o: AttrList.inc.h +ExprConstant.o: Attrs.inc.h +ExprConstant.o: DeclNodes.inc.h +ExprConstant.o: DiagnosticASTKinds.inc.h +ExprConstant.o: DiagnosticCommonKinds.inc.h +ExprConstant.o: StmtNodes.inc.h +ExprConstant.po: AttrList.inc.h +ExprConstant.po: Attrs.inc.h +ExprConstant.po: DeclNodes.inc.h +ExprConstant.po: DiagnosticASTKinds.inc.h +ExprConstant.po: DiagnosticCommonKinds.inc.h +ExprConstant.po: StmtNodes.inc.h +ExternalASTSource.o: AttrList.inc.h +ExternalASTSource.o: Attrs.inc.h +ExternalASTSource.o: DeclNodes.inc.h +ExternalASTSource.o: DiagnosticCommonKinds.inc.h +ExternalASTSource.po: AttrList.inc.h +ExternalASTSource.po: Attrs.inc.h +ExternalASTSource.po: DeclNodes.inc.h +ExternalASTSource.po: DiagnosticCommonKinds.inc.h +InheritViz.o: AttrList.inc.h +InheritViz.o: Attrs.inc.h +InheritViz.o: DeclNodes.inc.h +InheritViz.o: DiagnosticCommonKinds.inc.h +InheritViz.o: StmtNodes.inc.h +InheritViz.po: AttrList.inc.h +InheritViz.po: Attrs.inc.h +InheritViz.po: DeclNodes.inc.h +InheritViz.po: DiagnosticCommonKinds.inc.h +InheritViz.po: StmtNodes.inc.h +ItaniumCXXABI.o: AttrList.inc.h +ItaniumCXXABI.o: Attrs.inc.h +ItaniumCXXABI.o: DeclNodes.inc.h +ItaniumCXXABI.o: DiagnosticCommonKinds.inc.h +ItaniumCXXABI.o: StmtNodes.inc.h +ItaniumCXXABI.po: AttrList.inc.h +ItaniumCXXABI.po: Attrs.inc.h +ItaniumCXXABI.po: DeclNodes.inc.h +ItaniumCXXABI.po: DiagnosticCommonKinds.inc.h +ItaniumCXXABI.po: StmtNodes.inc.h +ItaniumMangle.o: AttrList.inc.h +ItaniumMangle.o: Attrs.inc.h +ItaniumMangle.o: DeclNodes.inc.h +ItaniumMangle.o: DiagnosticCommonKinds.inc.h +ItaniumMangle.o: StmtNodes.inc.h +ItaniumMangle.po: AttrList.inc.h +ItaniumMangle.po: Attrs.inc.h +ItaniumMangle.po: DeclNodes.inc.h +ItaniumMangle.po: DiagnosticCommonKinds.inc.h +ItaniumMangle.po: StmtNodes.inc.h +LambdaMangleContext.o: AttrList.inc.h +LambdaMangleContext.o: Attrs.inc.h +LambdaMangleContext.o: DeclNodes.inc.h +LambdaMangleContext.o: DiagnosticCommonKinds.inc.h +LambdaMangleContext.o: StmtNodes.inc.h +LambdaMangleContext.po: AttrList.inc.h +LambdaMangleContext.po: Attrs.inc.h +LambdaMangleContext.po: DeclNodes.inc.h +LambdaMangleContext.po: DiagnosticCommonKinds.inc.h +LambdaMangleContext.po: StmtNodes.inc.h +Mangle.o: AttrList.inc.h +Mangle.o: Attrs.inc.h +Mangle.o: DeclNodes.inc.h +Mangle.o: DiagnosticCommonKinds.inc.h +Mangle.o: StmtNodes.inc.h +Mangle.po: AttrList.inc.h +Mangle.po: Attrs.inc.h +Mangle.po: DeclNodes.inc.h +Mangle.po: DiagnosticCommonKinds.inc.h +Mangle.po: StmtNodes.inc.h +MicrosoftCXXABI.o: AttrList.inc.h +MicrosoftCXXABI.o: Attrs.inc.h +MicrosoftCXXABI.o: DeclNodes.inc.h +MicrosoftCXXABI.o: DiagnosticCommonKinds.inc.h +MicrosoftCXXABI.o: StmtNodes.inc.h +MicrosoftCXXABI.po: AttrList.inc.h +MicrosoftCXXABI.po: Attrs.inc.h +MicrosoftCXXABI.po: DeclNodes.inc.h +MicrosoftCXXABI.po: DiagnosticCommonKinds.inc.h +MicrosoftCXXABI.po: StmtNodes.inc.h +MicrosoftMangle.o: AttrList.inc.h +MicrosoftMangle.o: Attrs.inc.h +MicrosoftMangle.o: DeclNodes.inc.h +MicrosoftMangle.o: DiagnosticCommonKinds.inc.h +MicrosoftMangle.o: StmtNodes.inc.h +MicrosoftMangle.po: AttrList.inc.h +MicrosoftMangle.po: Attrs.inc.h +MicrosoftMangle.po: DeclNodes.inc.h +MicrosoftMangle.po: DiagnosticCommonKinds.inc.h +MicrosoftMangle.po: StmtNodes.inc.h +NSAPI.o: AttrList.inc.h +NSAPI.o: Attrs.inc.h +NSAPI.o: DeclNodes.inc.h +NSAPI.o: DiagnosticCommonKinds.inc.h +NSAPI.po: AttrList.inc.h +NSAPI.po: Attrs.inc.h +NSAPI.po: DeclNodes.inc.h +NSAPI.po: DiagnosticCommonKinds.inc.h +NestedNameSpecifier.o: AttrList.inc.h +NestedNameSpecifier.o: Attrs.inc.h +NestedNameSpecifier.o: DeclNodes.inc.h +NestedNameSpecifier.o: DiagnosticCommonKinds.inc.h +NestedNameSpecifier.o: StmtNodes.inc.h +NestedNameSpecifier.po: AttrList.inc.h +NestedNameSpecifier.po: Attrs.inc.h +NestedNameSpecifier.po: DeclNodes.inc.h +NestedNameSpecifier.po: DiagnosticCommonKinds.inc.h +NestedNameSpecifier.po: StmtNodes.inc.h +ParentMap.o: AttrList.inc.h +ParentMap.o: Attrs.inc.h +ParentMap.o: DeclNodes.inc.h +ParentMap.o: DiagnosticCommonKinds.inc.h +ParentMap.o: StmtNodes.inc.h +ParentMap.po: AttrList.inc.h +ParentMap.po: Attrs.inc.h +ParentMap.po: DeclNodes.inc.h +ParentMap.po: DiagnosticCommonKinds.inc.h +ParentMap.po: StmtNodes.inc.h +RecordLayout.o: AttrList.inc.h +RecordLayout.o: Attrs.inc.h +RecordLayout.o: DeclNodes.inc.h +RecordLayout.o: DiagnosticCommonKinds.inc.h +RecordLayout.o: StmtNodes.inc.h +RecordLayout.po: AttrList.inc.h +RecordLayout.po: Attrs.inc.h +RecordLayout.po: DeclNodes.inc.h +RecordLayout.po: DiagnosticCommonKinds.inc.h +RecordLayout.po: StmtNodes.inc.h +RecordLayoutBuilder.o: AttrList.inc.h +RecordLayoutBuilder.o: Attrs.inc.h +RecordLayoutBuilder.o: DeclNodes.inc.h +RecordLayoutBuilder.o: DiagnosticCommonKinds.inc.h +RecordLayoutBuilder.o: DiagnosticSemaKinds.inc.h +RecordLayoutBuilder.o: StmtNodes.inc.h +RecordLayoutBuilder.po: AttrList.inc.h +RecordLayoutBuilder.po: Attrs.inc.h +RecordLayoutBuilder.po: DeclNodes.inc.h +RecordLayoutBuilder.po: DiagnosticCommonKinds.inc.h +RecordLayoutBuilder.po: DiagnosticSemaKinds.inc.h +RecordLayoutBuilder.po: StmtNodes.inc.h +SelectorLocationsKind.o: AttrList.inc.h +SelectorLocationsKind.o: Attrs.inc.h +SelectorLocationsKind.o: DeclNodes.inc.h +SelectorLocationsKind.o: DiagnosticCommonKinds.inc.h +SelectorLocationsKind.o: StmtNodes.inc.h +SelectorLocationsKind.po: AttrList.inc.h +SelectorLocationsKind.po: Attrs.inc.h +SelectorLocationsKind.po: DeclNodes.inc.h +SelectorLocationsKind.po: DiagnosticCommonKinds.inc.h +SelectorLocationsKind.po: StmtNodes.inc.h +Stmt.o: AttrList.inc.h +Stmt.o: Attrs.inc.h +Stmt.o: DeclNodes.inc.h +Stmt.o: DiagnosticASTKinds.inc.h +Stmt.o: DiagnosticCommonKinds.inc.h +Stmt.o: StmtNodes.inc.h +Stmt.po: AttrList.inc.h +Stmt.po: Attrs.inc.h +Stmt.po: DeclNodes.inc.h +Stmt.po: DiagnosticASTKinds.inc.h +Stmt.po: DiagnosticCommonKinds.inc.h +Stmt.po: StmtNodes.inc.h +StmtDumper.o: AttrList.inc.h +StmtDumper.o: Attrs.inc.h +StmtDumper.o: DeclNodes.inc.h +StmtDumper.o: DiagnosticCommonKinds.inc.h +StmtDumper.o: StmtNodes.inc.h +StmtDumper.po: AttrList.inc.h +StmtDumper.po: Attrs.inc.h +StmtDumper.po: DeclNodes.inc.h +StmtDumper.po: DiagnosticCommonKinds.inc.h +StmtDumper.po: StmtNodes.inc.h +StmtIterator.o: AttrList.inc.h +StmtIterator.o: Attrs.inc.h +StmtIterator.o: DeclNodes.inc.h +StmtIterator.o: DiagnosticCommonKinds.inc.h +StmtIterator.po: AttrList.inc.h +StmtIterator.po: Attrs.inc.h +StmtIterator.po: DeclNodes.inc.h +StmtIterator.po: DiagnosticCommonKinds.inc.h +StmtPrinter.o: AttrList.inc.h +StmtPrinter.o: Attrs.inc.h +StmtPrinter.o: DeclNodes.inc.h +StmtPrinter.o: DiagnosticCommonKinds.inc.h +StmtPrinter.o: StmtNodes.inc.h +StmtPrinter.po: AttrList.inc.h +StmtPrinter.po: Attrs.inc.h +StmtPrinter.po: DeclNodes.inc.h +StmtPrinter.po: DiagnosticCommonKinds.inc.h +StmtPrinter.po: StmtNodes.inc.h +StmtProfile.o: AttrList.inc.h +StmtProfile.o: Attrs.inc.h +StmtProfile.o: DeclNodes.inc.h +StmtProfile.o: DiagnosticCommonKinds.inc.h +StmtProfile.o: StmtNodes.inc.h +StmtProfile.po: AttrList.inc.h +StmtProfile.po: Attrs.inc.h +StmtProfile.po: DeclNodes.inc.h +StmtProfile.po: DiagnosticCommonKinds.inc.h +StmtProfile.po: StmtNodes.inc.h +StmtViz.o: AttrList.inc.h +StmtViz.o: Attrs.inc.h +StmtViz.o: DeclNodes.inc.h +StmtViz.o: DiagnosticCommonKinds.inc.h +StmtViz.o: StmtNodes.inc.h +StmtViz.po: AttrList.inc.h +StmtViz.po: Attrs.inc.h +StmtViz.po: DeclNodes.inc.h +StmtViz.po: DiagnosticCommonKinds.inc.h +StmtViz.po: StmtNodes.inc.h +TemplateBase.o: AttrList.inc.h +TemplateBase.o: Attrs.inc.h +TemplateBase.o: DeclNodes.inc.h +TemplateBase.o: DiagnosticCommonKinds.inc.h +TemplateBase.o: StmtNodes.inc.h +TemplateBase.po: AttrList.inc.h +TemplateBase.po: Attrs.inc.h +TemplateBase.po: DeclNodes.inc.h +TemplateBase.po: DiagnosticCommonKinds.inc.h +TemplateBase.po: StmtNodes.inc.h +TemplateName.o: AttrList.inc.h +TemplateName.o: Attrs.inc.h +TemplateName.o: DeclNodes.inc.h +TemplateName.o: DiagnosticCommonKinds.inc.h +TemplateName.o: StmtNodes.inc.h +TemplateName.po: AttrList.inc.h +TemplateName.po: Attrs.inc.h +TemplateName.po: DeclNodes.inc.h +TemplateName.po: DiagnosticCommonKinds.inc.h +TemplateName.po: StmtNodes.inc.h +Type.o: AttrList.inc.h +Type.o: Attrs.inc.h +Type.o: DeclNodes.inc.h +Type.o: DiagnosticCommonKinds.inc.h +Type.o: StmtNodes.inc.h +Type.po: AttrList.inc.h +Type.po: Attrs.inc.h +Type.po: DeclNodes.inc.h +Type.po: DiagnosticCommonKinds.inc.h +Type.po: StmtNodes.inc.h +TypeLoc.o: AttrList.inc.h +TypeLoc.o: Attrs.inc.h +TypeLoc.o: DeclNodes.inc.h +TypeLoc.o: DiagnosticCommonKinds.inc.h +TypeLoc.o: StmtNodes.inc.h +TypeLoc.po: AttrList.inc.h +TypeLoc.po: Attrs.inc.h +TypeLoc.po: DeclNodes.inc.h +TypeLoc.po: DiagnosticCommonKinds.inc.h +TypeLoc.po: StmtNodes.inc.h +TypePrinter.o: AttrList.inc.h +TypePrinter.o: Attrs.inc.h +TypePrinter.o: DeclNodes.inc.h +TypePrinter.o: DiagnosticCommonKinds.inc.h +TypePrinter.o: StmtNodes.inc.h +TypePrinter.po: AttrList.inc.h +TypePrinter.po: Attrs.inc.h +TypePrinter.po: DeclNodes.inc.h +TypePrinter.po: DiagnosticCommonKinds.inc.h +TypePrinter.po: StmtNodes.inc.h +VTTBuilder.o: AttrList.inc.h +VTTBuilder.o: Attrs.inc.h +VTTBuilder.o: DeclNodes.inc.h +VTTBuilder.o: DiagnosticCommonKinds.inc.h +VTTBuilder.o: StmtNodes.inc.h +VTTBuilder.po: AttrList.inc.h +VTTBuilder.po: Attrs.inc.h +VTTBuilder.po: DeclNodes.inc.h +VTTBuilder.po: DiagnosticCommonKinds.inc.h +VTTBuilder.po: StmtNodes.inc.h +VTableBuilder.o: AttrList.inc.h +VTableBuilder.o: Attrs.inc.h +VTableBuilder.o: DeclNodes.inc.h +VTableBuilder.o: DiagnosticCommonKinds.inc.h +VTableBuilder.o: StmtNodes.inc.h +VTableBuilder.po: AttrList.inc.h +VTableBuilder.po: Attrs.inc.h +VTableBuilder.po: DeclNodes.inc.h +VTableBuilder.po: DiagnosticCommonKinds.inc.h +VTableBuilder.po: StmtNodes.inc.h +.endif diff --git a/lib/clang/libclangbasic/Makefile.depend b/lib/clang/libclangbasic/Makefile.depend new file mode 100644 index 000000000000..2c9222657df5 --- /dev/null +++ b/lib/clang/libclangbasic/Makefile.depend @@ -0,0 +1,45 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +Diagnostic.o: DiagnosticCommonKinds.inc.h +Diagnostic.po: DiagnosticCommonKinds.inc.h +DiagnosticIDs.o: DiagnosticASTKinds.inc.h +DiagnosticIDs.o: DiagnosticAnalysisKinds.inc.h +DiagnosticIDs.o: DiagnosticCommonKinds.inc.h +DiagnosticIDs.o: DiagnosticDriverKinds.inc.h +DiagnosticIDs.o: DiagnosticFrontendKinds.inc.h +DiagnosticIDs.o: DiagnosticGroups.inc.h +DiagnosticIDs.o: DiagnosticLexKinds.inc.h +DiagnosticIDs.o: DiagnosticParseKinds.inc.h +DiagnosticIDs.o: DiagnosticSemaKinds.inc.h +DiagnosticIDs.o: DiagnosticSerializationKinds.inc.h +DiagnosticIDs.po: DiagnosticASTKinds.inc.h +DiagnosticIDs.po: DiagnosticAnalysisKinds.inc.h +DiagnosticIDs.po: DiagnosticCommonKinds.inc.h +DiagnosticIDs.po: DiagnosticDriverKinds.inc.h +DiagnosticIDs.po: DiagnosticFrontendKinds.inc.h +DiagnosticIDs.po: DiagnosticGroups.inc.h +DiagnosticIDs.po: DiagnosticLexKinds.inc.h +DiagnosticIDs.po: DiagnosticParseKinds.inc.h +DiagnosticIDs.po: DiagnosticSemaKinds.inc.h +DiagnosticIDs.po: DiagnosticSerializationKinds.inc.h +SourceManager.o: DiagnosticCommonKinds.inc.h +SourceManager.po: DiagnosticCommonKinds.inc.h +Targets.o: DiagnosticCommonKinds.inc.h +Targets.o: arm_neon.inc.h +Targets.po: DiagnosticCommonKinds.inc.h +Targets.po: arm_neon.inc.h +.endif diff --git a/lib/clang/libclangcodegen/Makefile.depend b/lib/clang/libclangcodegen/Makefile.depend new file mode 100644 index 000000000000..9ed7af295c39 --- /dev/null +++ b/lib/clang/libclangcodegen/Makefile.depend @@ -0,0 +1,431 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +BackendUtil.o: DiagnosticCommonKinds.inc.h +BackendUtil.o: DiagnosticFrontendKinds.inc.h +BackendUtil.po: DiagnosticCommonKinds.inc.h +BackendUtil.po: DiagnosticFrontendKinds.inc.h +CGBlocks.o: AttrList.inc.h +CGBlocks.o: Attrs.inc.h +CGBlocks.o: DeclNodes.inc.h +CGBlocks.o: DiagnosticCommonKinds.inc.h +CGBlocks.o: StmtNodes.inc.h +CGBlocks.po: AttrList.inc.h +CGBlocks.po: Attrs.inc.h +CGBlocks.po: DeclNodes.inc.h +CGBlocks.po: DiagnosticCommonKinds.inc.h +CGBlocks.po: StmtNodes.inc.h +CGBuiltin.o: AttrList.inc.h +CGBuiltin.o: Attrs.inc.h +CGBuiltin.o: DeclNodes.inc.h +CGBuiltin.o: DiagnosticCommonKinds.inc.h +CGBuiltin.o: Intrinsics.inc.h +CGBuiltin.o: StmtNodes.inc.h +CGBuiltin.o: arm_neon.inc.h +CGBuiltin.po: AttrList.inc.h +CGBuiltin.po: Attrs.inc.h +CGBuiltin.po: DeclNodes.inc.h +CGBuiltin.po: DiagnosticCommonKinds.inc.h +CGBuiltin.po: Intrinsics.inc.h +CGBuiltin.po: StmtNodes.inc.h +CGBuiltin.po: arm_neon.inc.h +CGCUDANV.o: AttrList.inc.h +CGCUDANV.o: Attrs.inc.h +CGCUDANV.o: DeclNodes.inc.h +CGCUDANV.o: DiagnosticCommonKinds.inc.h +CGCUDANV.o: StmtNodes.inc.h +CGCUDANV.po: AttrList.inc.h +CGCUDANV.po: Attrs.inc.h +CGCUDANV.po: DeclNodes.inc.h +CGCUDANV.po: DiagnosticCommonKinds.inc.h +CGCUDANV.po: StmtNodes.inc.h +CGCUDARuntime.o: AttrList.inc.h +CGCUDARuntime.o: Attrs.inc.h +CGCUDARuntime.o: DeclNodes.inc.h +CGCUDARuntime.o: DiagnosticCommonKinds.inc.h +CGCUDARuntime.o: StmtNodes.inc.h +CGCUDARuntime.po: AttrList.inc.h +CGCUDARuntime.po: Attrs.inc.h +CGCUDARuntime.po: DeclNodes.inc.h +CGCUDARuntime.po: DiagnosticCommonKinds.inc.h +CGCUDARuntime.po: StmtNodes.inc.h +CGCXX.o: AttrList.inc.h +CGCXX.o: Attrs.inc.h +CGCXX.o: DeclNodes.inc.h +CGCXX.o: DiagnosticCommonKinds.inc.h +CGCXX.o: StmtNodes.inc.h +CGCXX.po: AttrList.inc.h +CGCXX.po: Attrs.inc.h +CGCXX.po: DeclNodes.inc.h +CGCXX.po: DiagnosticCommonKinds.inc.h +CGCXX.po: StmtNodes.inc.h +CGCXXABI.o: AttrList.inc.h +CGCXXABI.o: Attrs.inc.h +CGCXXABI.o: DeclNodes.inc.h +CGCXXABI.o: DiagnosticCommonKinds.inc.h +CGCXXABI.o: StmtNodes.inc.h +CGCXXABI.po: AttrList.inc.h +CGCXXABI.po: Attrs.inc.h +CGCXXABI.po: DeclNodes.inc.h +CGCXXABI.po: DiagnosticCommonKinds.inc.h +CGCXXABI.po: StmtNodes.inc.h +CGCall.o: AttrList.inc.h +CGCall.o: Attrs.inc.h +CGCall.o: DeclNodes.inc.h +CGCall.o: DiagnosticCommonKinds.inc.h +CGCall.o: StmtNodes.inc.h +CGCall.po: AttrList.inc.h +CGCall.po: Attrs.inc.h +CGCall.po: DeclNodes.inc.h +CGCall.po: DiagnosticCommonKinds.inc.h +CGCall.po: StmtNodes.inc.h +CGClass.o: AttrList.inc.h +CGClass.o: Attrs.inc.h +CGClass.o: DeclNodes.inc.h +CGClass.o: DiagnosticCommonKinds.inc.h +CGClass.o: StmtNodes.inc.h +CGClass.po: AttrList.inc.h +CGClass.po: Attrs.inc.h +CGClass.po: DeclNodes.inc.h +CGClass.po: DiagnosticCommonKinds.inc.h +CGClass.po: StmtNodes.inc.h +CGCleanup.o: AttrList.inc.h +CGCleanup.o: Attrs.inc.h +CGCleanup.o: DeclNodes.inc.h +CGCleanup.o: DiagnosticCommonKinds.inc.h +CGCleanup.o: StmtNodes.inc.h +CGCleanup.po: AttrList.inc.h +CGCleanup.po: Attrs.inc.h +CGCleanup.po: DeclNodes.inc.h +CGCleanup.po: DiagnosticCommonKinds.inc.h +CGCleanup.po: StmtNodes.inc.h +CGDebugInfo.o: AttrList.inc.h +CGDebugInfo.o: Attrs.inc.h +CGDebugInfo.o: DeclNodes.inc.h +CGDebugInfo.o: DiagnosticCommonKinds.inc.h +CGDebugInfo.o: Intrinsics.inc.h +CGDebugInfo.o: StmtNodes.inc.h +CGDebugInfo.po: AttrList.inc.h +CGDebugInfo.po: Attrs.inc.h +CGDebugInfo.po: DeclNodes.inc.h +CGDebugInfo.po: DiagnosticCommonKinds.inc.h +CGDebugInfo.po: Intrinsics.inc.h +CGDebugInfo.po: StmtNodes.inc.h +CGDecl.o: AttrList.inc.h +CGDecl.o: Attrs.inc.h +CGDecl.o: DeclNodes.inc.h +CGDecl.o: DiagnosticCommonKinds.inc.h +CGDecl.o: Intrinsics.inc.h +CGDecl.o: StmtNodes.inc.h +CGDecl.po: AttrList.inc.h +CGDecl.po: Attrs.inc.h +CGDecl.po: DeclNodes.inc.h +CGDecl.po: DiagnosticCommonKinds.inc.h +CGDecl.po: Intrinsics.inc.h +CGDecl.po: StmtNodes.inc.h +CGDeclCXX.o: AttrList.inc.h +CGDeclCXX.o: Attrs.inc.h +CGDeclCXX.o: DeclNodes.inc.h +CGDeclCXX.o: DiagnosticCommonKinds.inc.h +CGDeclCXX.o: Intrinsics.inc.h +CGDeclCXX.o: StmtNodes.inc.h +CGDeclCXX.po: AttrList.inc.h +CGDeclCXX.po: Attrs.inc.h +CGDeclCXX.po: DeclNodes.inc.h +CGDeclCXX.po: DiagnosticCommonKinds.inc.h +CGDeclCXX.po: Intrinsics.inc.h +CGDeclCXX.po: StmtNodes.inc.h +CGException.o: AttrList.inc.h +CGException.o: Attrs.inc.h +CGException.o: DeclNodes.inc.h +CGException.o: DiagnosticCommonKinds.inc.h +CGException.o: Intrinsics.inc.h +CGException.o: StmtNodes.inc.h +CGException.po: AttrList.inc.h +CGException.po: Attrs.inc.h +CGException.po: DeclNodes.inc.h +CGException.po: DiagnosticCommonKinds.inc.h +CGException.po: Intrinsics.inc.h +CGException.po: StmtNodes.inc.h +CGExpr.o: AttrList.inc.h +CGExpr.o: Attrs.inc.h +CGExpr.o: DeclNodes.inc.h +CGExpr.o: DiagnosticCommonKinds.inc.h +CGExpr.o: Intrinsics.inc.h +CGExpr.o: StmtNodes.inc.h +CGExpr.po: AttrList.inc.h +CGExpr.po: Attrs.inc.h +CGExpr.po: DeclNodes.inc.h +CGExpr.po: DiagnosticCommonKinds.inc.h +CGExpr.po: Intrinsics.inc.h +CGExpr.po: StmtNodes.inc.h +CGExprAgg.o: AttrList.inc.h +CGExprAgg.o: Attrs.inc.h +CGExprAgg.o: DeclNodes.inc.h +CGExprAgg.o: DiagnosticCommonKinds.inc.h +CGExprAgg.o: Intrinsics.inc.h +CGExprAgg.o: StmtNodes.inc.h +CGExprAgg.po: AttrList.inc.h +CGExprAgg.po: Attrs.inc.h +CGExprAgg.po: DeclNodes.inc.h +CGExprAgg.po: DiagnosticCommonKinds.inc.h +CGExprAgg.po: Intrinsics.inc.h +CGExprAgg.po: StmtNodes.inc.h +CGExprCXX.o: AttrList.inc.h +CGExprCXX.o: Attrs.inc.h +CGExprCXX.o: DeclNodes.inc.h +CGExprCXX.o: DiagnosticCommonKinds.inc.h +CGExprCXX.o: Intrinsics.inc.h +CGExprCXX.o: StmtNodes.inc.h +CGExprCXX.po: AttrList.inc.h +CGExprCXX.po: Attrs.inc.h +CGExprCXX.po: DeclNodes.inc.h +CGExprCXX.po: DiagnosticCommonKinds.inc.h +CGExprCXX.po: Intrinsics.inc.h +CGExprCXX.po: StmtNodes.inc.h +CGExprComplex.o: AttrList.inc.h +CGExprComplex.o: Attrs.inc.h +CGExprComplex.o: DeclNodes.inc.h +CGExprComplex.o: DiagnosticCommonKinds.inc.h +CGExprComplex.o: StmtNodes.inc.h +CGExprComplex.po: AttrList.inc.h +CGExprComplex.po: Attrs.inc.h +CGExprComplex.po: DeclNodes.inc.h +CGExprComplex.po: DiagnosticCommonKinds.inc.h +CGExprComplex.po: StmtNodes.inc.h +CGExprConstant.o: AttrList.inc.h +CGExprConstant.o: Attrs.inc.h +CGExprConstant.o: DeclNodes.inc.h +CGExprConstant.o: DiagnosticCommonKinds.inc.h +CGExprConstant.o: StmtNodes.inc.h +CGExprConstant.po: AttrList.inc.h +CGExprConstant.po: Attrs.inc.h +CGExprConstant.po: DeclNodes.inc.h +CGExprConstant.po: DiagnosticCommonKinds.inc.h +CGExprConstant.po: StmtNodes.inc.h +CGExprScalar.o: AttrList.inc.h +CGExprScalar.o: Attrs.inc.h +CGExprScalar.o: DeclNodes.inc.h +CGExprScalar.o: DiagnosticCommonKinds.inc.h +CGExprScalar.o: Intrinsics.inc.h +CGExprScalar.o: StmtNodes.inc.h +CGExprScalar.po: AttrList.inc.h +CGExprScalar.po: Attrs.inc.h +CGExprScalar.po: DeclNodes.inc.h +CGExprScalar.po: DiagnosticCommonKinds.inc.h +CGExprScalar.po: Intrinsics.inc.h +CGExprScalar.po: StmtNodes.inc.h +CGObjC.o: AttrList.inc.h +CGObjC.o: Attrs.inc.h +CGObjC.o: DeclNodes.inc.h +CGObjC.o: DiagnosticCommonKinds.inc.h +CGObjC.o: StmtNodes.inc.h +CGObjC.po: AttrList.inc.h +CGObjC.po: Attrs.inc.h +CGObjC.po: DeclNodes.inc.h +CGObjC.po: DiagnosticCommonKinds.inc.h +CGObjC.po: StmtNodes.inc.h +CGObjCGNU.o: AttrList.inc.h +CGObjCGNU.o: Attrs.inc.h +CGObjCGNU.o: DeclNodes.inc.h +CGObjCGNU.o: DiagnosticCommonKinds.inc.h +CGObjCGNU.o: Intrinsics.inc.h +CGObjCGNU.o: StmtNodes.inc.h +CGObjCGNU.po: AttrList.inc.h +CGObjCGNU.po: Attrs.inc.h +CGObjCGNU.po: DeclNodes.inc.h +CGObjCGNU.po: DiagnosticCommonKinds.inc.h +CGObjCGNU.po: Intrinsics.inc.h +CGObjCGNU.po: StmtNodes.inc.h +CGObjCMac.o: AttrList.inc.h +CGObjCMac.o: Attrs.inc.h +CGObjCMac.o: DeclNodes.inc.h +CGObjCMac.o: DiagnosticCommonKinds.inc.h +CGObjCMac.o: Intrinsics.inc.h +CGObjCMac.o: StmtNodes.inc.h +CGObjCMac.po: AttrList.inc.h +CGObjCMac.po: Attrs.inc.h +CGObjCMac.po: DeclNodes.inc.h +CGObjCMac.po: DiagnosticCommonKinds.inc.h +CGObjCMac.po: Intrinsics.inc.h +CGObjCMac.po: StmtNodes.inc.h +CGObjCRuntime.o: AttrList.inc.h +CGObjCRuntime.o: Attrs.inc.h +CGObjCRuntime.o: DeclNodes.inc.h +CGObjCRuntime.o: DiagnosticCommonKinds.inc.h +CGObjCRuntime.o: StmtNodes.inc.h +CGObjCRuntime.po: AttrList.inc.h +CGObjCRuntime.po: Attrs.inc.h +CGObjCRuntime.po: DeclNodes.inc.h +CGObjCRuntime.po: DiagnosticCommonKinds.inc.h +CGObjCRuntime.po: StmtNodes.inc.h +CGOpenCLRuntime.o: AttrList.inc.h +CGOpenCLRuntime.o: Attrs.inc.h +CGOpenCLRuntime.o: DeclNodes.inc.h +CGOpenCLRuntime.o: DiagnosticCommonKinds.inc.h +CGOpenCLRuntime.o: StmtNodes.inc.h +CGOpenCLRuntime.po: AttrList.inc.h +CGOpenCLRuntime.po: Attrs.inc.h +CGOpenCLRuntime.po: DeclNodes.inc.h +CGOpenCLRuntime.po: DiagnosticCommonKinds.inc.h +CGOpenCLRuntime.po: StmtNodes.inc.h +CGRTTI.o: AttrList.inc.h +CGRTTI.o: Attrs.inc.h +CGRTTI.o: DeclNodes.inc.h +CGRTTI.o: DiagnosticCommonKinds.inc.h +CGRTTI.o: StmtNodes.inc.h +CGRTTI.po: AttrList.inc.h +CGRTTI.po: Attrs.inc.h +CGRTTI.po: DeclNodes.inc.h +CGRTTI.po: DiagnosticCommonKinds.inc.h +CGRTTI.po: StmtNodes.inc.h +CGRecordLayoutBuilder.o: AttrList.inc.h +CGRecordLayoutBuilder.o: Attrs.inc.h +CGRecordLayoutBuilder.o: DeclNodes.inc.h +CGRecordLayoutBuilder.o: DiagnosticCommonKinds.inc.h +CGRecordLayoutBuilder.o: StmtNodes.inc.h +CGRecordLayoutBuilder.po: AttrList.inc.h +CGRecordLayoutBuilder.po: Attrs.inc.h +CGRecordLayoutBuilder.po: DeclNodes.inc.h +CGRecordLayoutBuilder.po: DiagnosticCommonKinds.inc.h +CGRecordLayoutBuilder.po: StmtNodes.inc.h +CGStmt.o: AttrList.inc.h +CGStmt.o: Attrs.inc.h +CGStmt.o: DeclNodes.inc.h +CGStmt.o: DiagnosticCommonKinds.inc.h +CGStmt.o: Intrinsics.inc.h +CGStmt.o: StmtNodes.inc.h +CGStmt.po: AttrList.inc.h +CGStmt.po: Attrs.inc.h +CGStmt.po: DeclNodes.inc.h +CGStmt.po: DiagnosticCommonKinds.inc.h +CGStmt.po: Intrinsics.inc.h +CGStmt.po: StmtNodes.inc.h +CGVTT.o: AttrList.inc.h +CGVTT.o: Attrs.inc.h +CGVTT.o: DeclNodes.inc.h +CGVTT.o: DiagnosticCommonKinds.inc.h +CGVTT.o: StmtNodes.inc.h +CGVTT.po: AttrList.inc.h +CGVTT.po: Attrs.inc.h +CGVTT.po: DeclNodes.inc.h +CGVTT.po: DiagnosticCommonKinds.inc.h +CGVTT.po: StmtNodes.inc.h +CGVTables.o: AttrList.inc.h +CGVTables.o: Attrs.inc.h +CGVTables.o: DeclNodes.inc.h +CGVTables.o: DiagnosticCommonKinds.inc.h +CGVTables.o: StmtNodes.inc.h +CGVTables.po: AttrList.inc.h +CGVTables.po: Attrs.inc.h +CGVTables.po: DeclNodes.inc.h +CGVTables.po: DiagnosticCommonKinds.inc.h +CGVTables.po: StmtNodes.inc.h +CodeGenAction.o: AttrList.inc.h +CodeGenAction.o: Attrs.inc.h +CodeGenAction.o: DeclNodes.inc.h +CodeGenAction.o: DiagnosticCommonKinds.inc.h +CodeGenAction.o: DiagnosticFrontendKinds.inc.h +CodeGenAction.po: AttrList.inc.h +CodeGenAction.po: Attrs.inc.h +CodeGenAction.po: DeclNodes.inc.h +CodeGenAction.po: DiagnosticCommonKinds.inc.h +CodeGenAction.po: DiagnosticFrontendKinds.inc.h +CodeGenFunction.o: AttrList.inc.h +CodeGenFunction.o: Attrs.inc.h +CodeGenFunction.o: DeclNodes.inc.h +CodeGenFunction.o: DiagnosticCommonKinds.inc.h +CodeGenFunction.o: Intrinsics.inc.h +CodeGenFunction.o: StmtNodes.inc.h +CodeGenFunction.po: AttrList.inc.h +CodeGenFunction.po: Attrs.inc.h +CodeGenFunction.po: DeclNodes.inc.h +CodeGenFunction.po: DiagnosticCommonKinds.inc.h +CodeGenFunction.po: Intrinsics.inc.h +CodeGenFunction.po: StmtNodes.inc.h +CodeGenModule.o: AttrList.inc.h +CodeGenModule.o: Attrs.inc.h +CodeGenModule.o: DeclNodes.inc.h +CodeGenModule.o: DiagnosticCommonKinds.inc.h +CodeGenModule.o: Intrinsics.inc.h +CodeGenModule.o: StmtNodes.inc.h +CodeGenModule.po: AttrList.inc.h +CodeGenModule.po: Attrs.inc.h +CodeGenModule.po: DeclNodes.inc.h +CodeGenModule.po: DiagnosticCommonKinds.inc.h +CodeGenModule.po: Intrinsics.inc.h +CodeGenModule.po: StmtNodes.inc.h +CodeGenTBAA.o: AttrList.inc.h +CodeGenTBAA.o: Attrs.inc.h +CodeGenTBAA.o: DeclNodes.inc.h +CodeGenTBAA.o: DiagnosticCommonKinds.inc.h +CodeGenTBAA.po: AttrList.inc.h +CodeGenTBAA.po: Attrs.inc.h +CodeGenTBAA.po: DeclNodes.inc.h +CodeGenTBAA.po: DiagnosticCommonKinds.inc.h +CodeGenTypes.o: AttrList.inc.h +CodeGenTypes.o: Attrs.inc.h +CodeGenTypes.o: DeclNodes.inc.h +CodeGenTypes.o: DiagnosticCommonKinds.inc.h +CodeGenTypes.o: StmtNodes.inc.h +CodeGenTypes.po: AttrList.inc.h +CodeGenTypes.po: Attrs.inc.h +CodeGenTypes.po: DeclNodes.inc.h +CodeGenTypes.po: DiagnosticCommonKinds.inc.h +CodeGenTypes.po: StmtNodes.inc.h +ItaniumCXXABI.o: AttrList.inc.h +ItaniumCXXABI.o: Attrs.inc.h +ItaniumCXXABI.o: DeclNodes.inc.h +ItaniumCXXABI.o: DiagnosticCommonKinds.inc.h +ItaniumCXXABI.o: Intrinsics.inc.h +ItaniumCXXABI.o: StmtNodes.inc.h +ItaniumCXXABI.po: AttrList.inc.h +ItaniumCXXABI.po: Attrs.inc.h +ItaniumCXXABI.po: DeclNodes.inc.h +ItaniumCXXABI.po: DiagnosticCommonKinds.inc.h +ItaniumCXXABI.po: Intrinsics.inc.h +ItaniumCXXABI.po: StmtNodes.inc.h +MicrosoftCXXABI.o: AttrList.inc.h +MicrosoftCXXABI.o: Attrs.inc.h +MicrosoftCXXABI.o: DeclNodes.inc.h +MicrosoftCXXABI.o: DiagnosticCommonKinds.inc.h +MicrosoftCXXABI.o: StmtNodes.inc.h +MicrosoftCXXABI.po: AttrList.inc.h +MicrosoftCXXABI.po: Attrs.inc.h +MicrosoftCXXABI.po: DeclNodes.inc.h +MicrosoftCXXABI.po: DiagnosticCommonKinds.inc.h +MicrosoftCXXABI.po: StmtNodes.inc.h +ModuleBuilder.o: AttrList.inc.h +ModuleBuilder.o: Attrs.inc.h +ModuleBuilder.o: DeclNodes.inc.h +ModuleBuilder.o: DiagnosticCommonKinds.inc.h +ModuleBuilder.o: StmtNodes.inc.h +ModuleBuilder.po: AttrList.inc.h +ModuleBuilder.po: Attrs.inc.h +ModuleBuilder.po: DeclNodes.inc.h +ModuleBuilder.po: DiagnosticCommonKinds.inc.h +ModuleBuilder.po: StmtNodes.inc.h +TargetInfo.o: AttrList.inc.h +TargetInfo.o: Attrs.inc.h +TargetInfo.o: DeclNodes.inc.h +TargetInfo.o: DiagnosticCommonKinds.inc.h +TargetInfo.o: StmtNodes.inc.h +TargetInfo.po: AttrList.inc.h +TargetInfo.po: Attrs.inc.h +TargetInfo.po: DeclNodes.inc.h +TargetInfo.po: DiagnosticCommonKinds.inc.h +TargetInfo.po: StmtNodes.inc.h +.endif diff --git a/lib/clang/libclangdriver/Makefile.depend b/lib/clang/libclangdriver/Makefile.depend new file mode 100644 index 000000000000..dab9912fbc37 --- /dev/null +++ b/lib/clang/libclangdriver/Makefile.depend @@ -0,0 +1,61 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ArgList.o: DiagnosticCommonKinds.inc.h +ArgList.o: DiagnosticDriverKinds.inc.h +ArgList.po: DiagnosticCommonKinds.inc.h +ArgList.po: DiagnosticDriverKinds.inc.h +CC1AsOptions.o: CC1AsOptions.inc.h +CC1AsOptions.po: CC1AsOptions.inc.h +CC1Options.o: CC1Options.inc.h +CC1Options.po: CC1Options.inc.h +Compilation.o: DiagnosticCommonKinds.inc.h +Compilation.o: DiagnosticDriverKinds.inc.h +Compilation.o: Options.inc.h +Compilation.po: DiagnosticCommonKinds.inc.h +Compilation.po: DiagnosticDriverKinds.inc.h +Compilation.po: Options.inc.h +Driver.o: DiagnosticCommonKinds.inc.h +Driver.o: DiagnosticDriverKinds.inc.h +Driver.o: Options.inc.h +Driver.po: DiagnosticCommonKinds.inc.h +Driver.po: DiagnosticDriverKinds.inc.h +Driver.po: Options.inc.h +DriverOptions.o: Options.inc.h +DriverOptions.po: Options.inc.h +ToolChain.o: DiagnosticCommonKinds.inc.h +ToolChain.o: DiagnosticDriverKinds.inc.h +ToolChain.o: Options.inc.h +ToolChain.po: DiagnosticCommonKinds.inc.h +ToolChain.po: DiagnosticDriverKinds.inc.h +ToolChain.po: Options.inc.h +ToolChains.o: DiagnosticCommonKinds.inc.h +ToolChains.o: DiagnosticDriverKinds.inc.h +ToolChains.o: Options.inc.h +ToolChains.po: DiagnosticCommonKinds.inc.h +ToolChains.po: DiagnosticDriverKinds.inc.h +ToolChains.po: Options.inc.h +Tools.o: DiagnosticCommonKinds.inc.h +Tools.o: DiagnosticDriverKinds.inc.h +Tools.o: Options.inc.h +Tools.po: DiagnosticCommonKinds.inc.h +Tools.po: DiagnosticDriverKinds.inc.h +Tools.po: Options.inc.h +WindowsToolChain.o: DiagnosticCommonKinds.inc.h +WindowsToolChain.o: Options.inc.h +WindowsToolChain.po: DiagnosticCommonKinds.inc.h +WindowsToolChain.po: Options.inc.h +.endif diff --git a/lib/clang/libclangedit/Makefile.depend b/lib/clang/libclangedit/Makefile.depend new file mode 100644 index 000000000000..9c2823c5ff44 --- /dev/null +++ b/lib/clang/libclangedit/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +Commit.o: DiagnosticCommonKinds.inc.h +Commit.po: DiagnosticCommonKinds.inc.h +RewriteObjCFoundationAPI.o: AttrList.inc.h +RewriteObjCFoundationAPI.o: Attrs.inc.h +RewriteObjCFoundationAPI.o: DeclNodes.inc.h +RewriteObjCFoundationAPI.o: DiagnosticCommonKinds.inc.h +RewriteObjCFoundationAPI.o: StmtNodes.inc.h +RewriteObjCFoundationAPI.po: AttrList.inc.h +RewriteObjCFoundationAPI.po: Attrs.inc.h +RewriteObjCFoundationAPI.po: DeclNodes.inc.h +RewriteObjCFoundationAPI.po: DiagnosticCommonKinds.inc.h +RewriteObjCFoundationAPI.po: StmtNodes.inc.h +.endif diff --git a/lib/clang/libclangfrontend/Makefile.depend b/lib/clang/libclangfrontend/Makefile.depend new file mode 100644 index 000000000000..a9a8a2a81208 --- /dev/null +++ b/lib/clang/libclangfrontend/Makefile.depend @@ -0,0 +1,189 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ASTConsumers.o: AttrList.inc.h +ASTConsumers.o: Attrs.inc.h +ASTConsumers.o: DeclNodes.inc.h +ASTConsumers.o: DiagnosticCommonKinds.inc.h +ASTConsumers.o: StmtNodes.inc.h +ASTConsumers.po: AttrList.inc.h +ASTConsumers.po: Attrs.inc.h +ASTConsumers.po: DeclNodes.inc.h +ASTConsumers.po: DiagnosticCommonKinds.inc.h +ASTConsumers.po: StmtNodes.inc.h +ASTMerge.o: AttrList.inc.h +ASTMerge.o: AttrParsedAttrList.inc.h +ASTMerge.o: Attrs.inc.h +ASTMerge.o: DeclNodes.inc.h +ASTMerge.o: DiagnosticASTKinds.inc.h +ASTMerge.o: DiagnosticCommonKinds.inc.h +ASTMerge.o: StmtNodes.inc.h +ASTMerge.po: AttrList.inc.h +ASTMerge.po: AttrParsedAttrList.inc.h +ASTMerge.po: Attrs.inc.h +ASTMerge.po: DeclNodes.inc.h +ASTMerge.po: DiagnosticASTKinds.inc.h +ASTMerge.po: DiagnosticCommonKinds.inc.h +ASTMerge.po: StmtNodes.inc.h +ASTUnit.o: AttrList.inc.h +ASTUnit.o: AttrParsedAttrList.inc.h +ASTUnit.o: Attrs.inc.h +ASTUnit.o: DeclNodes.inc.h +ASTUnit.o: DiagnosticCommonKinds.inc.h +ASTUnit.o: DiagnosticFrontendKinds.inc.h +ASTUnit.o: Options.inc.h +ASTUnit.o: StmtNodes.inc.h +ASTUnit.po: AttrList.inc.h +ASTUnit.po: AttrParsedAttrList.inc.h +ASTUnit.po: Attrs.inc.h +ASTUnit.po: DeclNodes.inc.h +ASTUnit.po: DiagnosticCommonKinds.inc.h +ASTUnit.po: DiagnosticFrontendKinds.inc.h +ASTUnit.po: Options.inc.h +ASTUnit.po: StmtNodes.inc.h +CacheTokens.o: DiagnosticCommonKinds.inc.h +CacheTokens.po: DiagnosticCommonKinds.inc.h +ChainedDiagnosticConsumer.o: DiagnosticCommonKinds.inc.h +ChainedDiagnosticConsumer.po: DiagnosticCommonKinds.inc.h +ChainedIncludesSource.o: AttrList.inc.h +ChainedIncludesSource.o: AttrParsedAttrList.inc.h +ChainedIncludesSource.o: Attrs.inc.h +ChainedIncludesSource.o: DeclNodes.inc.h +ChainedIncludesSource.o: DiagnosticCommonKinds.inc.h +ChainedIncludesSource.o: StmtNodes.inc.h +ChainedIncludesSource.po: AttrList.inc.h +ChainedIncludesSource.po: AttrParsedAttrList.inc.h +ChainedIncludesSource.po: Attrs.inc.h +ChainedIncludesSource.po: DeclNodes.inc.h +ChainedIncludesSource.po: DiagnosticCommonKinds.inc.h +ChainedIncludesSource.po: StmtNodes.inc.h +CompilerInstance.o: AttrList.inc.h +CompilerInstance.o: AttrParsedAttrList.inc.h +CompilerInstance.o: Attrs.inc.h +CompilerInstance.o: DeclNodes.inc.h +CompilerInstance.o: DiagnosticCommonKinds.inc.h +CompilerInstance.o: DiagnosticFrontendKinds.inc.h +CompilerInstance.o: StmtNodes.inc.h +CompilerInstance.po: AttrList.inc.h +CompilerInstance.po: AttrParsedAttrList.inc.h +CompilerInstance.po: Attrs.inc.h +CompilerInstance.po: DeclNodes.inc.h +CompilerInstance.po: DiagnosticCommonKinds.inc.h +CompilerInstance.po: DiagnosticFrontendKinds.inc.h +CompilerInstance.po: StmtNodes.inc.h +CompilerInvocation.o: AttrList.inc.h +CompilerInvocation.o: Attrs.inc.h +CompilerInvocation.o: CC1Options.inc.h +CompilerInvocation.o: DeclNodes.inc.h +CompilerInvocation.o: DiagnosticCommonKinds.inc.h +CompilerInvocation.o: DiagnosticDriverKinds.inc.h +CompilerInvocation.po: AttrList.inc.h +CompilerInvocation.po: Attrs.inc.h +CompilerInvocation.po: CC1Options.inc.h +CompilerInvocation.po: DeclNodes.inc.h +CompilerInvocation.po: DiagnosticCommonKinds.inc.h +CompilerInvocation.po: DiagnosticDriverKinds.inc.h +CreateInvocationFromCommandLine.o: DiagnosticCommonKinds.inc.h +CreateInvocationFromCommandLine.o: DiagnosticFrontendKinds.inc.h +CreateInvocationFromCommandLine.o: Options.inc.h +CreateInvocationFromCommandLine.po: DiagnosticCommonKinds.inc.h +CreateInvocationFromCommandLine.po: DiagnosticFrontendKinds.inc.h +CreateInvocationFromCommandLine.po: Options.inc.h +DependencyFile.o: DiagnosticCommonKinds.inc.h +DependencyFile.o: DiagnosticFrontendKinds.inc.h +DependencyFile.o: DiagnosticLexKinds.inc.h +DependencyFile.po: DiagnosticCommonKinds.inc.h +DependencyFile.po: DiagnosticFrontendKinds.inc.h +DependencyFile.po: DiagnosticLexKinds.inc.h +DependencyGraph.o: DiagnosticCommonKinds.inc.h +DependencyGraph.o: DiagnosticFrontendKinds.inc.h +DependencyGraph.po: DiagnosticCommonKinds.inc.h +DependencyGraph.po: DiagnosticFrontendKinds.inc.h +DiagnosticRenderer.o: DiagnosticCommonKinds.inc.h +DiagnosticRenderer.po: DiagnosticCommonKinds.inc.h +FrontendAction.o: AttrList.inc.h +FrontendAction.o: AttrParsedAttrList.inc.h +FrontendAction.o: Attrs.inc.h +FrontendAction.o: DeclNodes.inc.h +FrontendAction.o: DiagnosticCommonKinds.inc.h +FrontendAction.o: DiagnosticFrontendKinds.inc.h +FrontendAction.o: StmtNodes.inc.h +FrontendAction.po: AttrList.inc.h +FrontendAction.po: AttrParsedAttrList.inc.h +FrontendAction.po: Attrs.inc.h +FrontendAction.po: DeclNodes.inc.h +FrontendAction.po: DiagnosticCommonKinds.inc.h +FrontendAction.po: DiagnosticFrontendKinds.inc.h +FrontendAction.po: StmtNodes.inc.h +FrontendActions.o: AttrList.inc.h +FrontendActions.o: AttrParsedAttrList.inc.h +FrontendActions.o: Attrs.inc.h +FrontendActions.o: DeclNodes.inc.h +FrontendActions.o: DiagnosticCommonKinds.inc.h +FrontendActions.o: DiagnosticFrontendKinds.inc.h +FrontendActions.o: StmtNodes.inc.h +FrontendActions.po: AttrList.inc.h +FrontendActions.po: AttrParsedAttrList.inc.h +FrontendActions.po: Attrs.inc.h +FrontendActions.po: DeclNodes.inc.h +FrontendActions.po: DiagnosticCommonKinds.inc.h +FrontendActions.po: DiagnosticFrontendKinds.inc.h +FrontendActions.po: StmtNodes.inc.h +HeaderIncludeGen.o: DiagnosticCommonKinds.inc.h +HeaderIncludeGen.o: DiagnosticFrontendKinds.inc.h +HeaderIncludeGen.po: DiagnosticCommonKinds.inc.h +HeaderIncludeGen.po: DiagnosticFrontendKinds.inc.h +InitHeaderSearch.o: DiagnosticCommonKinds.inc.h +InitHeaderSearch.po: DiagnosticCommonKinds.inc.h +InitPreprocessor.o: DiagnosticCommonKinds.inc.h +InitPreprocessor.o: DiagnosticFrontendKinds.inc.h +InitPreprocessor.po: DiagnosticCommonKinds.inc.h +InitPreprocessor.po: DiagnosticFrontendKinds.inc.h +LayoutOverrideSource.o: AttrList.inc.h +LayoutOverrideSource.o: Attrs.inc.h +LayoutOverrideSource.o: DeclNodes.inc.h +LayoutOverrideSource.o: DiagnosticCommonKinds.inc.h +LayoutOverrideSource.po: AttrList.inc.h +LayoutOverrideSource.po: Attrs.inc.h +LayoutOverrideSource.po: DeclNodes.inc.h +LayoutOverrideSource.po: DiagnosticCommonKinds.inc.h +LogDiagnosticPrinter.o: DiagnosticCommonKinds.inc.h +LogDiagnosticPrinter.po: DiagnosticCommonKinds.inc.h +MultiplexConsumer.o: DiagnosticCommonKinds.inc.h +MultiplexConsumer.po: DiagnosticCommonKinds.inc.h +PrintPreprocessedOutput.o: DiagnosticCommonKinds.inc.h +PrintPreprocessedOutput.po: DiagnosticCommonKinds.inc.h +SerializedDiagnosticPrinter.o: DiagnosticCommonKinds.inc.h +SerializedDiagnosticPrinter.po: DiagnosticCommonKinds.inc.h +TextDiagnostic.o: DiagnosticCommonKinds.inc.h +TextDiagnostic.po: DiagnosticCommonKinds.inc.h +TextDiagnosticBuffer.o: DiagnosticCommonKinds.inc.h +TextDiagnosticBuffer.po: DiagnosticCommonKinds.inc.h +TextDiagnosticPrinter.o: DiagnosticCommonKinds.inc.h +TextDiagnosticPrinter.po: DiagnosticCommonKinds.inc.h +VerifyDiagnosticConsumer.o: DiagnosticCommonKinds.inc.h +VerifyDiagnosticConsumer.o: DiagnosticFrontendKinds.inc.h +VerifyDiagnosticConsumer.po: DiagnosticCommonKinds.inc.h +VerifyDiagnosticConsumer.po: DiagnosticFrontendKinds.inc.h +Warnings.o: DiagnosticCommonKinds.inc.h +Warnings.o: DiagnosticFrontendKinds.inc.h +Warnings.o: DiagnosticLexKinds.inc.h +Warnings.o: DiagnosticSemaKinds.inc.h +Warnings.po: DiagnosticCommonKinds.inc.h +Warnings.po: DiagnosticFrontendKinds.inc.h +Warnings.po: DiagnosticLexKinds.inc.h +Warnings.po: DiagnosticSemaKinds.inc.h +.endif diff --git a/lib/clang/libclangfrontendtool/Makefile.depend b/lib/clang/libclangfrontendtool/Makefile.depend new file mode 100644 index 000000000000..0c4a02dbc66c --- /dev/null +++ b/lib/clang/libclangfrontendtool/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ExecuteCompilerInvocation.o: CC1Options.inc.h +ExecuteCompilerInvocation.o: DiagnosticCommonKinds.inc.h +ExecuteCompilerInvocation.o: DiagnosticFrontendKinds.inc.h +ExecuteCompilerInvocation.po: CC1Options.inc.h +ExecuteCompilerInvocation.po: DiagnosticCommonKinds.inc.h +ExecuteCompilerInvocation.po: DiagnosticFrontendKinds.inc.h +.endif diff --git a/lib/clang/libclanglex/Makefile.depend b/lib/clang/libclanglex/Makefile.depend new file mode 100644 index 000000000000..b0b30a1b09bf --- /dev/null +++ b/lib/clang/libclanglex/Makefile.depend @@ -0,0 +1,83 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +HeaderSearch.o: DiagnosticCommonKinds.inc.h +HeaderSearch.po: DiagnosticCommonKinds.inc.h +Lexer.o: DiagnosticCommonKinds.inc.h +Lexer.o: DiagnosticLexKinds.inc.h +Lexer.po: DiagnosticCommonKinds.inc.h +Lexer.po: DiagnosticLexKinds.inc.h +LiteralSupport.o: DiagnosticCommonKinds.inc.h +LiteralSupport.o: DiagnosticLexKinds.inc.h +LiteralSupport.po: DiagnosticCommonKinds.inc.h +LiteralSupport.po: DiagnosticLexKinds.inc.h +MacroArgs.o: DiagnosticCommonKinds.inc.h +MacroArgs.o: DiagnosticLexKinds.inc.h +MacroArgs.po: DiagnosticCommonKinds.inc.h +MacroArgs.po: DiagnosticLexKinds.inc.h +MacroInfo.o: DiagnosticCommonKinds.inc.h +MacroInfo.po: DiagnosticCommonKinds.inc.h +ModuleMap.o: DiagnosticCommonKinds.inc.h +ModuleMap.o: DiagnosticLexKinds.inc.h +ModuleMap.po: DiagnosticCommonKinds.inc.h +ModuleMap.po: DiagnosticLexKinds.inc.h +PPCaching.o: DiagnosticCommonKinds.inc.h +PPCaching.po: DiagnosticCommonKinds.inc.h +PPCallbacks.o: DiagnosticCommonKinds.inc.h +PPCallbacks.po: DiagnosticCommonKinds.inc.h +PPDirectives.o: DiagnosticCommonKinds.inc.h +PPDirectives.o: DiagnosticLexKinds.inc.h +PPDirectives.po: DiagnosticCommonKinds.inc.h +PPDirectives.po: DiagnosticLexKinds.inc.h +PPExpressions.o: DiagnosticCommonKinds.inc.h +PPExpressions.o: DiagnosticLexKinds.inc.h +PPExpressions.po: DiagnosticCommonKinds.inc.h +PPExpressions.po: DiagnosticLexKinds.inc.h +PPLexerChange.o: DiagnosticCommonKinds.inc.h +PPLexerChange.o: DiagnosticLexKinds.inc.h +PPLexerChange.po: DiagnosticCommonKinds.inc.h +PPLexerChange.po: DiagnosticLexKinds.inc.h +PPMacroExpansion.o: AttrSpellings.inc.h +PPMacroExpansion.o: DiagnosticCommonKinds.inc.h +PPMacroExpansion.o: DiagnosticLexKinds.inc.h +PPMacroExpansion.po: AttrSpellings.inc.h +PPMacroExpansion.po: DiagnosticCommonKinds.inc.h +PPMacroExpansion.po: DiagnosticLexKinds.inc.h +PTHLexer.o: DiagnosticCommonKinds.inc.h +PTHLexer.o: DiagnosticLexKinds.inc.h +PTHLexer.po: DiagnosticCommonKinds.inc.h +PTHLexer.po: DiagnosticLexKinds.inc.h +Pragma.o: DiagnosticCommonKinds.inc.h +Pragma.o: DiagnosticLexKinds.inc.h +Pragma.po: DiagnosticCommonKinds.inc.h +Pragma.po: DiagnosticLexKinds.inc.h +PreprocessingRecord.o: DiagnosticCommonKinds.inc.h +PreprocessingRecord.po: DiagnosticCommonKinds.inc.h +Preprocessor.o: DiagnosticCommonKinds.inc.h +Preprocessor.o: DiagnosticLexKinds.inc.h +Preprocessor.po: DiagnosticCommonKinds.inc.h +Preprocessor.po: DiagnosticLexKinds.inc.h +PreprocessorLexer.o: DiagnosticCommonKinds.inc.h +PreprocessorLexer.o: DiagnosticLexKinds.inc.h +PreprocessorLexer.po: DiagnosticCommonKinds.inc.h +PreprocessorLexer.po: DiagnosticLexKinds.inc.h +TokenConcatenation.o: DiagnosticCommonKinds.inc.h +TokenConcatenation.po: DiagnosticCommonKinds.inc.h +TokenLexer.o: DiagnosticCommonKinds.inc.h +TokenLexer.o: DiagnosticLexKinds.inc.h +TokenLexer.po: DiagnosticCommonKinds.inc.h +TokenLexer.po: DiagnosticLexKinds.inc.h +.endif diff --git a/lib/clang/libclangparse/Makefile.depend b/lib/clang/libclangparse/Makefile.depend new file mode 100644 index 000000000000..ebf96ff7d398 --- /dev/null +++ b/lib/clang/libclangparse/Makefile.depend @@ -0,0 +1,199 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ParseAST.o: AttrList.inc.h +ParseAST.o: AttrParsedAttrList.inc.h +ParseAST.o: Attrs.inc.h +ParseAST.o: DeclNodes.inc.h +ParseAST.o: DiagnosticCommonKinds.inc.h +ParseAST.o: StmtNodes.inc.h +ParseAST.po: AttrList.inc.h +ParseAST.po: AttrParsedAttrList.inc.h +ParseAST.po: Attrs.inc.h +ParseAST.po: DeclNodes.inc.h +ParseAST.po: DiagnosticCommonKinds.inc.h +ParseAST.po: StmtNodes.inc.h +ParseCXXInlineMethods.o: AttrList.inc.h +ParseCXXInlineMethods.o: AttrParsedAttrList.inc.h +ParseCXXInlineMethods.o: Attrs.inc.h +ParseCXXInlineMethods.o: DeclNodes.inc.h +ParseCXXInlineMethods.o: DiagnosticCommonKinds.inc.h +ParseCXXInlineMethods.o: DiagnosticParseKinds.inc.h +ParseCXXInlineMethods.o: StmtNodes.inc.h +ParseCXXInlineMethods.po: AttrList.inc.h +ParseCXXInlineMethods.po: AttrParsedAttrList.inc.h +ParseCXXInlineMethods.po: Attrs.inc.h +ParseCXXInlineMethods.po: DeclNodes.inc.h +ParseCXXInlineMethods.po: DiagnosticCommonKinds.inc.h +ParseCXXInlineMethods.po: DiagnosticParseKinds.inc.h +ParseCXXInlineMethods.po: StmtNodes.inc.h +ParseDecl.o: AttrLateParsed.inc.h +ParseDecl.o: AttrList.inc.h +ParseDecl.o: AttrParsedAttrList.inc.h +ParseDecl.o: Attrs.inc.h +ParseDecl.o: DeclNodes.inc.h +ParseDecl.o: DiagnosticCommonKinds.inc.h +ParseDecl.o: DiagnosticParseKinds.inc.h +ParseDecl.o: StmtNodes.inc.h +ParseDecl.po: AttrLateParsed.inc.h +ParseDecl.po: AttrList.inc.h +ParseDecl.po: AttrParsedAttrList.inc.h +ParseDecl.po: Attrs.inc.h +ParseDecl.po: DeclNodes.inc.h +ParseDecl.po: DiagnosticCommonKinds.inc.h +ParseDecl.po: DiagnosticParseKinds.inc.h +ParseDecl.po: StmtNodes.inc.h +ParseDeclCXX.o: AttrList.inc.h +ParseDeclCXX.o: AttrParsedAttrList.inc.h +ParseDeclCXX.o: Attrs.inc.h +ParseDeclCXX.o: DeclNodes.inc.h +ParseDeclCXX.o: DiagnosticCommonKinds.inc.h +ParseDeclCXX.o: DiagnosticParseKinds.inc.h +ParseDeclCXX.o: StmtNodes.inc.h +ParseDeclCXX.po: AttrList.inc.h +ParseDeclCXX.po: AttrParsedAttrList.inc.h +ParseDeclCXX.po: Attrs.inc.h +ParseDeclCXX.po: DeclNodes.inc.h +ParseDeclCXX.po: DiagnosticCommonKinds.inc.h +ParseDeclCXX.po: DiagnosticParseKinds.inc.h +ParseDeclCXX.po: StmtNodes.inc.h +ParseExpr.o: AttrList.inc.h +ParseExpr.o: AttrParsedAttrList.inc.h +ParseExpr.o: Attrs.inc.h +ParseExpr.o: DeclNodes.inc.h +ParseExpr.o: DiagnosticCommonKinds.inc.h +ParseExpr.o: DiagnosticParseKinds.inc.h +ParseExpr.o: StmtNodes.inc.h +ParseExpr.po: AttrList.inc.h +ParseExpr.po: AttrParsedAttrList.inc.h +ParseExpr.po: Attrs.inc.h +ParseExpr.po: DeclNodes.inc.h +ParseExpr.po: DiagnosticCommonKinds.inc.h +ParseExpr.po: DiagnosticParseKinds.inc.h +ParseExpr.po: StmtNodes.inc.h +ParseExprCXX.o: AttrList.inc.h +ParseExprCXX.o: AttrParsedAttrList.inc.h +ParseExprCXX.o: Attrs.inc.h +ParseExprCXX.o: DeclNodes.inc.h +ParseExprCXX.o: DiagnosticCommonKinds.inc.h +ParseExprCXX.o: DiagnosticParseKinds.inc.h +ParseExprCXX.o: StmtNodes.inc.h +ParseExprCXX.po: AttrList.inc.h +ParseExprCXX.po: AttrParsedAttrList.inc.h +ParseExprCXX.po: Attrs.inc.h +ParseExprCXX.po: DeclNodes.inc.h +ParseExprCXX.po: DiagnosticCommonKinds.inc.h +ParseExprCXX.po: DiagnosticParseKinds.inc.h +ParseExprCXX.po: StmtNodes.inc.h +ParseInit.o: AttrList.inc.h +ParseInit.o: AttrParsedAttrList.inc.h +ParseInit.o: Attrs.inc.h +ParseInit.o: DeclNodes.inc.h +ParseInit.o: DiagnosticCommonKinds.inc.h +ParseInit.o: DiagnosticParseKinds.inc.h +ParseInit.o: StmtNodes.inc.h +ParseInit.po: AttrList.inc.h +ParseInit.po: AttrParsedAttrList.inc.h +ParseInit.po: Attrs.inc.h +ParseInit.po: DeclNodes.inc.h +ParseInit.po: DiagnosticCommonKinds.inc.h +ParseInit.po: DiagnosticParseKinds.inc.h +ParseInit.po: StmtNodes.inc.h +ParseObjc.o: AttrList.inc.h +ParseObjc.o: AttrParsedAttrList.inc.h +ParseObjc.o: Attrs.inc.h +ParseObjc.o: DeclNodes.inc.h +ParseObjc.o: DiagnosticCommonKinds.inc.h +ParseObjc.o: DiagnosticParseKinds.inc.h +ParseObjc.o: StmtNodes.inc.h +ParseObjc.po: AttrList.inc.h +ParseObjc.po: AttrParsedAttrList.inc.h +ParseObjc.po: Attrs.inc.h +ParseObjc.po: DeclNodes.inc.h +ParseObjc.po: DiagnosticCommonKinds.inc.h +ParseObjc.po: DiagnosticParseKinds.inc.h +ParseObjc.po: StmtNodes.inc.h +ParsePragma.o: AttrList.inc.h +ParsePragma.o: AttrParsedAttrList.inc.h +ParsePragma.o: Attrs.inc.h +ParsePragma.o: DeclNodes.inc.h +ParsePragma.o: DiagnosticCommonKinds.inc.h +ParsePragma.o: DiagnosticParseKinds.inc.h +ParsePragma.o: StmtNodes.inc.h +ParsePragma.po: AttrList.inc.h +ParsePragma.po: AttrParsedAttrList.inc.h +ParsePragma.po: Attrs.inc.h +ParsePragma.po: DeclNodes.inc.h +ParsePragma.po: DiagnosticCommonKinds.inc.h +ParsePragma.po: DiagnosticParseKinds.inc.h +ParsePragma.po: StmtNodes.inc.h +ParseStmt.o: AttrList.inc.h +ParseStmt.o: AttrParsedAttrList.inc.h +ParseStmt.o: Attrs.inc.h +ParseStmt.o: DeclNodes.inc.h +ParseStmt.o: DiagnosticCommonKinds.inc.h +ParseStmt.o: DiagnosticParseKinds.inc.h +ParseStmt.o: StmtNodes.inc.h +ParseStmt.po: AttrList.inc.h +ParseStmt.po: AttrParsedAttrList.inc.h +ParseStmt.po: Attrs.inc.h +ParseStmt.po: DeclNodes.inc.h +ParseStmt.po: DiagnosticCommonKinds.inc.h +ParseStmt.po: DiagnosticParseKinds.inc.h +ParseStmt.po: StmtNodes.inc.h +ParseTemplate.o: AttrList.inc.h +ParseTemplate.o: AttrParsedAttrList.inc.h +ParseTemplate.o: Attrs.inc.h +ParseTemplate.o: DeclNodes.inc.h +ParseTemplate.o: DiagnosticCommonKinds.inc.h +ParseTemplate.o: DiagnosticParseKinds.inc.h +ParseTemplate.o: StmtNodes.inc.h +ParseTemplate.po: AttrList.inc.h +ParseTemplate.po: AttrParsedAttrList.inc.h +ParseTemplate.po: Attrs.inc.h +ParseTemplate.po: DeclNodes.inc.h +ParseTemplate.po: DiagnosticCommonKinds.inc.h +ParseTemplate.po: DiagnosticParseKinds.inc.h +ParseTemplate.po: StmtNodes.inc.h +ParseTentative.o: AttrList.inc.h +ParseTentative.o: AttrParsedAttrList.inc.h +ParseTentative.o: Attrs.inc.h +ParseTentative.o: DeclNodes.inc.h +ParseTentative.o: DiagnosticCommonKinds.inc.h +ParseTentative.o: DiagnosticParseKinds.inc.h +ParseTentative.o: StmtNodes.inc.h +ParseTentative.po: AttrList.inc.h +ParseTentative.po: AttrParsedAttrList.inc.h +ParseTentative.po: Attrs.inc.h +ParseTentative.po: DeclNodes.inc.h +ParseTentative.po: DiagnosticCommonKinds.inc.h +ParseTentative.po: DiagnosticParseKinds.inc.h +ParseTentative.po: StmtNodes.inc.h +Parser.o: AttrList.inc.h +Parser.o: AttrParsedAttrList.inc.h +Parser.o: Attrs.inc.h +Parser.o: DeclNodes.inc.h +Parser.o: DiagnosticCommonKinds.inc.h +Parser.o: DiagnosticParseKinds.inc.h +Parser.o: StmtNodes.inc.h +Parser.po: AttrList.inc.h +Parser.po: AttrParsedAttrList.inc.h +Parser.po: Attrs.inc.h +Parser.po: DeclNodes.inc.h +Parser.po: DiagnosticCommonKinds.inc.h +Parser.po: DiagnosticParseKinds.inc.h +Parser.po: StmtNodes.inc.h +.endif diff --git a/lib/clang/libclangrewrite/Makefile.depend b/lib/clang/libclangrewrite/Makefile.depend new file mode 100644 index 000000000000..ea0e4417e589 --- /dev/null +++ b/lib/clang/libclangrewrite/Makefile.depend @@ -0,0 +1,79 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +FixItRewriter.o: DiagnosticCommonKinds.inc.h +FixItRewriter.o: DiagnosticFrontendKinds.inc.h +FixItRewriter.po: DiagnosticCommonKinds.inc.h +FixItRewriter.po: DiagnosticFrontendKinds.inc.h +FrontendActions.o: AttrList.inc.h +FrontendActions.o: AttrParsedAttrList.inc.h +FrontendActions.o: Attrs.inc.h +FrontendActions.o: DeclNodes.inc.h +FrontendActions.o: DiagnosticCommonKinds.inc.h +FrontendActions.o: DiagnosticFrontendKinds.inc.h +FrontendActions.o: StmtNodes.inc.h +FrontendActions.po: AttrList.inc.h +FrontendActions.po: AttrParsedAttrList.inc.h +FrontendActions.po: Attrs.inc.h +FrontendActions.po: DeclNodes.inc.h +FrontendActions.po: DiagnosticCommonKinds.inc.h +FrontendActions.po: DiagnosticFrontendKinds.inc.h +FrontendActions.po: StmtNodes.inc.h +HTMLPrint.o: AttrList.inc.h +HTMLPrint.o: Attrs.inc.h +HTMLPrint.o: DeclNodes.inc.h +HTMLPrint.o: DiagnosticCommonKinds.inc.h +HTMLPrint.po: AttrList.inc.h +HTMLPrint.po: Attrs.inc.h +HTMLPrint.po: DeclNodes.inc.h +HTMLPrint.po: DiagnosticCommonKinds.inc.h +HTMLRewrite.o: DiagnosticCommonKinds.inc.h +HTMLRewrite.po: DiagnosticCommonKinds.inc.h +RewriteMacros.o: DiagnosticCommonKinds.inc.h +RewriteMacros.po: DiagnosticCommonKinds.inc.h +RewriteModernObjC.o: AttrList.inc.h +RewriteModernObjC.o: Attrs.inc.h +RewriteModernObjC.o: DeclNodes.inc.h +RewriteModernObjC.o: DiagnosticCommonKinds.inc.h +RewriteModernObjC.o: StmtNodes.inc.h +RewriteModernObjC.po: AttrList.inc.h +RewriteModernObjC.po: Attrs.inc.h +RewriteModernObjC.po: DeclNodes.inc.h +RewriteModernObjC.po: DiagnosticCommonKinds.inc.h +RewriteModernObjC.po: StmtNodes.inc.h +RewriteObjC.o: AttrList.inc.h +RewriteObjC.o: Attrs.inc.h +RewriteObjC.o: DeclNodes.inc.h +RewriteObjC.o: DiagnosticCommonKinds.inc.h +RewriteObjC.o: StmtNodes.inc.h +RewriteObjC.po: AttrList.inc.h +RewriteObjC.po: Attrs.inc.h +RewriteObjC.po: DeclNodes.inc.h +RewriteObjC.po: DiagnosticCommonKinds.inc.h +RewriteObjC.po: StmtNodes.inc.h +RewriteTest.o: DiagnosticCommonKinds.inc.h +RewriteTest.po: DiagnosticCommonKinds.inc.h +Rewriter.o: AttrList.inc.h +Rewriter.o: Attrs.inc.h +Rewriter.o: DeclNodes.inc.h +Rewriter.o: DiagnosticCommonKinds.inc.h +Rewriter.o: StmtNodes.inc.h +Rewriter.po: AttrList.inc.h +Rewriter.po: Attrs.inc.h +Rewriter.po: DeclNodes.inc.h +Rewriter.po: DiagnosticCommonKinds.inc.h +Rewriter.po: StmtNodes.inc.h +.endif diff --git a/lib/clang/libclangsema/Makefile.depend b/lib/clang/libclangsema/Makefile.depend new file mode 100644 index 000000000000..d33e42fa913a --- /dev/null +++ b/lib/clang/libclangsema/Makefile.depend @@ -0,0 +1,563 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +AnalysisBasedWarnings.o: AttrList.inc.h +AnalysisBasedWarnings.o: AttrParsedAttrList.inc.h +AnalysisBasedWarnings.o: Attrs.inc.h +AnalysisBasedWarnings.o: DeclNodes.inc.h +AnalysisBasedWarnings.o: DiagnosticCommonKinds.inc.h +AnalysisBasedWarnings.o: DiagnosticSemaKinds.inc.h +AnalysisBasedWarnings.o: StmtNodes.inc.h +AnalysisBasedWarnings.po: AttrList.inc.h +AnalysisBasedWarnings.po: AttrParsedAttrList.inc.h +AnalysisBasedWarnings.po: Attrs.inc.h +AnalysisBasedWarnings.po: DeclNodes.inc.h +AnalysisBasedWarnings.po: DiagnosticCommonKinds.inc.h +AnalysisBasedWarnings.po: DiagnosticSemaKinds.inc.h +AnalysisBasedWarnings.po: StmtNodes.inc.h +AttributeList.o: AttrList.inc.h +AttributeList.o: AttrParsedAttrKinds.inc.h +AttributeList.o: AttrParsedAttrList.inc.h +AttributeList.o: Attrs.inc.h +AttributeList.o: DeclNodes.inc.h +AttributeList.o: DiagnosticCommonKinds.inc.h +AttributeList.o: StmtNodes.inc.h +AttributeList.po: AttrList.inc.h +AttributeList.po: AttrParsedAttrKinds.inc.h +AttributeList.po: AttrParsedAttrList.inc.h +AttributeList.po: Attrs.inc.h +AttributeList.po: DeclNodes.inc.h +AttributeList.po: DiagnosticCommonKinds.inc.h +AttributeList.po: StmtNodes.inc.h +CodeCompleteConsumer.o: AttrList.inc.h +CodeCompleteConsumer.o: AttrParsedAttrList.inc.h +CodeCompleteConsumer.o: Attrs.inc.h +CodeCompleteConsumer.o: DeclNodes.inc.h +CodeCompleteConsumer.o: DiagnosticCommonKinds.inc.h +CodeCompleteConsumer.o: StmtNodes.inc.h +CodeCompleteConsumer.po: AttrList.inc.h +CodeCompleteConsumer.po: AttrParsedAttrList.inc.h +CodeCompleteConsumer.po: Attrs.inc.h +CodeCompleteConsumer.po: DeclNodes.inc.h +CodeCompleteConsumer.po: DiagnosticCommonKinds.inc.h +CodeCompleteConsumer.po: StmtNodes.inc.h +DeclSpec.o: AttrList.inc.h +DeclSpec.o: AttrParsedAttrList.inc.h +DeclSpec.o: Attrs.inc.h +DeclSpec.o: DeclNodes.inc.h +DeclSpec.o: DiagnosticCommonKinds.inc.h +DeclSpec.o: DiagnosticParseKinds.inc.h +DeclSpec.o: DiagnosticSemaKinds.inc.h +DeclSpec.o: StmtNodes.inc.h +DeclSpec.po: AttrList.inc.h +DeclSpec.po: AttrParsedAttrList.inc.h +DeclSpec.po: Attrs.inc.h +DeclSpec.po: DeclNodes.inc.h +DeclSpec.po: DiagnosticCommonKinds.inc.h +DeclSpec.po: DiagnosticParseKinds.inc.h +DeclSpec.po: DiagnosticSemaKinds.inc.h +DeclSpec.po: StmtNodes.inc.h +DelayedDiagnostic.o: AttrList.inc.h +DelayedDiagnostic.o: Attrs.inc.h +DelayedDiagnostic.o: DeclNodes.inc.h +DelayedDiagnostic.o: DiagnosticCommonKinds.inc.h +DelayedDiagnostic.o: StmtNodes.inc.h +DelayedDiagnostic.po: AttrList.inc.h +DelayedDiagnostic.po: Attrs.inc.h +DelayedDiagnostic.po: DeclNodes.inc.h +DelayedDiagnostic.po: DiagnosticCommonKinds.inc.h +DelayedDiagnostic.po: StmtNodes.inc.h +IdentifierResolver.o: AttrList.inc.h +IdentifierResolver.o: Attrs.inc.h +IdentifierResolver.o: DeclNodes.inc.h +IdentifierResolver.o: DiagnosticCommonKinds.inc.h +IdentifierResolver.po: AttrList.inc.h +IdentifierResolver.po: Attrs.inc.h +IdentifierResolver.po: DeclNodes.inc.h +IdentifierResolver.po: DiagnosticCommonKinds.inc.h +JumpDiagnostics.o: AttrList.inc.h +JumpDiagnostics.o: AttrParsedAttrList.inc.h +JumpDiagnostics.o: Attrs.inc.h +JumpDiagnostics.o: DeclNodes.inc.h +JumpDiagnostics.o: DiagnosticCommonKinds.inc.h +JumpDiagnostics.o: DiagnosticSemaKinds.inc.h +JumpDiagnostics.o: StmtNodes.inc.h +JumpDiagnostics.po: AttrList.inc.h +JumpDiagnostics.po: AttrParsedAttrList.inc.h +JumpDiagnostics.po: Attrs.inc.h +JumpDiagnostics.po: DeclNodes.inc.h +JumpDiagnostics.po: DiagnosticCommonKinds.inc.h +JumpDiagnostics.po: DiagnosticSemaKinds.inc.h +JumpDiagnostics.po: StmtNodes.inc.h +Scope.o: DiagnosticCommonKinds.inc.h +Scope.po: DiagnosticCommonKinds.inc.h +Sema.o: AttrList.inc.h +Sema.o: AttrParsedAttrList.inc.h +Sema.o: Attrs.inc.h +Sema.o: DeclNodes.inc.h +Sema.o: DiagnosticASTKinds.inc.h +Sema.o: DiagnosticCommonKinds.inc.h +Sema.o: DiagnosticSemaKinds.inc.h +Sema.o: StmtNodes.inc.h +Sema.po: AttrList.inc.h +Sema.po: AttrParsedAttrList.inc.h +Sema.po: Attrs.inc.h +Sema.po: DeclNodes.inc.h +Sema.po: DiagnosticASTKinds.inc.h +Sema.po: DiagnosticCommonKinds.inc.h +Sema.po: DiagnosticSemaKinds.inc.h +Sema.po: StmtNodes.inc.h +SemaAccess.o: AttrList.inc.h +SemaAccess.o: AttrParsedAttrList.inc.h +SemaAccess.o: Attrs.inc.h +SemaAccess.o: DeclNodes.inc.h +SemaAccess.o: DiagnosticCommonKinds.inc.h +SemaAccess.o: DiagnosticSemaKinds.inc.h +SemaAccess.o: StmtNodes.inc.h +SemaAccess.po: AttrList.inc.h +SemaAccess.po: AttrParsedAttrList.inc.h +SemaAccess.po: Attrs.inc.h +SemaAccess.po: DeclNodes.inc.h +SemaAccess.po: DiagnosticCommonKinds.inc.h +SemaAccess.po: DiagnosticSemaKinds.inc.h +SemaAccess.po: StmtNodes.inc.h +SemaAttr.o: AttrList.inc.h +SemaAttr.o: AttrParsedAttrList.inc.h +SemaAttr.o: Attrs.inc.h +SemaAttr.o: DeclNodes.inc.h +SemaAttr.o: DiagnosticCommonKinds.inc.h +SemaAttr.o: DiagnosticSemaKinds.inc.h +SemaAttr.o: StmtNodes.inc.h +SemaAttr.po: AttrList.inc.h +SemaAttr.po: AttrParsedAttrList.inc.h +SemaAttr.po: Attrs.inc.h +SemaAttr.po: DeclNodes.inc.h +SemaAttr.po: DiagnosticCommonKinds.inc.h +SemaAttr.po: DiagnosticSemaKinds.inc.h +SemaAttr.po: StmtNodes.inc.h +SemaCXXScopeSpec.o: AttrList.inc.h +SemaCXXScopeSpec.o: AttrParsedAttrList.inc.h +SemaCXXScopeSpec.o: Attrs.inc.h +SemaCXXScopeSpec.o: DeclNodes.inc.h +SemaCXXScopeSpec.o: DiagnosticCommonKinds.inc.h +SemaCXXScopeSpec.o: DiagnosticSemaKinds.inc.h +SemaCXXScopeSpec.o: StmtNodes.inc.h +SemaCXXScopeSpec.po: AttrList.inc.h +SemaCXXScopeSpec.po: AttrParsedAttrList.inc.h +SemaCXXScopeSpec.po: Attrs.inc.h +SemaCXXScopeSpec.po: DeclNodes.inc.h +SemaCXXScopeSpec.po: DiagnosticCommonKinds.inc.h +SemaCXXScopeSpec.po: DiagnosticSemaKinds.inc.h +SemaCXXScopeSpec.po: StmtNodes.inc.h +SemaCast.o: AttrList.inc.h +SemaCast.o: AttrParsedAttrList.inc.h +SemaCast.o: Attrs.inc.h +SemaCast.o: DeclNodes.inc.h +SemaCast.o: DiagnosticCommonKinds.inc.h +SemaCast.o: DiagnosticSemaKinds.inc.h +SemaCast.o: StmtNodes.inc.h +SemaCast.po: AttrList.inc.h +SemaCast.po: AttrParsedAttrList.inc.h +SemaCast.po: Attrs.inc.h +SemaCast.po: DeclNodes.inc.h +SemaCast.po: DiagnosticCommonKinds.inc.h +SemaCast.po: DiagnosticSemaKinds.inc.h +SemaCast.po: StmtNodes.inc.h +SemaChecking.o: AttrList.inc.h +SemaChecking.o: AttrParsedAttrList.inc.h +SemaChecking.o: Attrs.inc.h +SemaChecking.o: DeclNodes.inc.h +SemaChecking.o: DiagnosticCommonKinds.inc.h +SemaChecking.o: DiagnosticSemaKinds.inc.h +SemaChecking.o: StmtNodes.inc.h +SemaChecking.o: arm_neon.inc.h +SemaChecking.po: AttrList.inc.h +SemaChecking.po: AttrParsedAttrList.inc.h +SemaChecking.po: Attrs.inc.h +SemaChecking.po: DeclNodes.inc.h +SemaChecking.po: DiagnosticCommonKinds.inc.h +SemaChecking.po: DiagnosticSemaKinds.inc.h +SemaChecking.po: StmtNodes.inc.h +SemaChecking.po: arm_neon.inc.h +SemaCodeComplete.o: AttrList.inc.h +SemaCodeComplete.o: AttrParsedAttrList.inc.h +SemaCodeComplete.o: Attrs.inc.h +SemaCodeComplete.o: DeclNodes.inc.h +SemaCodeComplete.o: DiagnosticCommonKinds.inc.h +SemaCodeComplete.o: DiagnosticSemaKinds.inc.h +SemaCodeComplete.o: StmtNodes.inc.h +SemaCodeComplete.po: AttrList.inc.h +SemaCodeComplete.po: AttrParsedAttrList.inc.h +SemaCodeComplete.po: Attrs.inc.h +SemaCodeComplete.po: DeclNodes.inc.h +SemaCodeComplete.po: DiagnosticCommonKinds.inc.h +SemaCodeComplete.po: DiagnosticSemaKinds.inc.h +SemaCodeComplete.po: StmtNodes.inc.h +SemaDecl.o: AttrList.inc.h +SemaDecl.o: AttrParsedAttrList.inc.h +SemaDecl.o: Attrs.inc.h +SemaDecl.o: DeclNodes.inc.h +SemaDecl.o: DiagnosticCommonKinds.inc.h +SemaDecl.o: DiagnosticParseKinds.inc.h +SemaDecl.o: DiagnosticSemaKinds.inc.h +SemaDecl.o: StmtNodes.inc.h +SemaDecl.po: AttrList.inc.h +SemaDecl.po: AttrParsedAttrList.inc.h +SemaDecl.po: Attrs.inc.h +SemaDecl.po: DeclNodes.inc.h +SemaDecl.po: DiagnosticCommonKinds.inc.h +SemaDecl.po: DiagnosticParseKinds.inc.h +SemaDecl.po: DiagnosticSemaKinds.inc.h +SemaDecl.po: StmtNodes.inc.h +SemaDeclAttr.o: AttrList.inc.h +SemaDeclAttr.o: AttrParsedAttrList.inc.h +SemaDeclAttr.o: Attrs.inc.h +SemaDeclAttr.o: DeclNodes.inc.h +SemaDeclAttr.o: DiagnosticCommonKinds.inc.h +SemaDeclAttr.o: DiagnosticSemaKinds.inc.h +SemaDeclAttr.o: StmtNodes.inc.h +SemaDeclAttr.po: AttrList.inc.h +SemaDeclAttr.po: AttrParsedAttrList.inc.h +SemaDeclAttr.po: Attrs.inc.h +SemaDeclAttr.po: DeclNodes.inc.h +SemaDeclAttr.po: DiagnosticCommonKinds.inc.h +SemaDeclAttr.po: DiagnosticSemaKinds.inc.h +SemaDeclAttr.po: StmtNodes.inc.h +SemaDeclCXX.o: AttrList.inc.h +SemaDeclCXX.o: AttrParsedAttrList.inc.h +SemaDeclCXX.o: Attrs.inc.h +SemaDeclCXX.o: DeclNodes.inc.h +SemaDeclCXX.o: DiagnosticCommonKinds.inc.h +SemaDeclCXX.o: DiagnosticSemaKinds.inc.h +SemaDeclCXX.o: StmtNodes.inc.h +SemaDeclCXX.po: AttrList.inc.h +SemaDeclCXX.po: AttrParsedAttrList.inc.h +SemaDeclCXX.po: Attrs.inc.h +SemaDeclCXX.po: DeclNodes.inc.h +SemaDeclCXX.po: DiagnosticCommonKinds.inc.h +SemaDeclCXX.po: DiagnosticSemaKinds.inc.h +SemaDeclCXX.po: StmtNodes.inc.h +SemaDeclObjC.o: AttrList.inc.h +SemaDeclObjC.o: AttrParsedAttrList.inc.h +SemaDeclObjC.o: Attrs.inc.h +SemaDeclObjC.o: DeclNodes.inc.h +SemaDeclObjC.o: DiagnosticCommonKinds.inc.h +SemaDeclObjC.o: DiagnosticSemaKinds.inc.h +SemaDeclObjC.o: StmtNodes.inc.h +SemaDeclObjC.po: AttrList.inc.h +SemaDeclObjC.po: AttrParsedAttrList.inc.h +SemaDeclObjC.po: Attrs.inc.h +SemaDeclObjC.po: DeclNodes.inc.h +SemaDeclObjC.po: DiagnosticCommonKinds.inc.h +SemaDeclObjC.po: DiagnosticSemaKinds.inc.h +SemaDeclObjC.po: StmtNodes.inc.h +SemaExceptionSpec.o: AttrList.inc.h +SemaExceptionSpec.o: AttrParsedAttrList.inc.h +SemaExceptionSpec.o: Attrs.inc.h +SemaExceptionSpec.o: DeclNodes.inc.h +SemaExceptionSpec.o: DiagnosticCommonKinds.inc.h +SemaExceptionSpec.o: DiagnosticSemaKinds.inc.h +SemaExceptionSpec.o: StmtNodes.inc.h +SemaExceptionSpec.po: AttrList.inc.h +SemaExceptionSpec.po: AttrParsedAttrList.inc.h +SemaExceptionSpec.po: Attrs.inc.h +SemaExceptionSpec.po: DeclNodes.inc.h +SemaExceptionSpec.po: DiagnosticCommonKinds.inc.h +SemaExceptionSpec.po: DiagnosticSemaKinds.inc.h +SemaExceptionSpec.po: StmtNodes.inc.h +SemaExpr.o: AttrList.inc.h +SemaExpr.o: AttrParsedAttrList.inc.h +SemaExpr.o: Attrs.inc.h +SemaExpr.o: DeclNodes.inc.h +SemaExpr.o: DiagnosticCommonKinds.inc.h +SemaExpr.o: DiagnosticSemaKinds.inc.h +SemaExpr.o: StmtNodes.inc.h +SemaExpr.po: AttrList.inc.h +SemaExpr.po: AttrParsedAttrList.inc.h +SemaExpr.po: Attrs.inc.h +SemaExpr.po: DeclNodes.inc.h +SemaExpr.po: DiagnosticCommonKinds.inc.h +SemaExpr.po: DiagnosticSemaKinds.inc.h +SemaExpr.po: StmtNodes.inc.h +SemaExprCXX.o: AttrList.inc.h +SemaExprCXX.o: AttrParsedAttrList.inc.h +SemaExprCXX.o: Attrs.inc.h +SemaExprCXX.o: DeclNodes.inc.h +SemaExprCXX.o: DiagnosticCommonKinds.inc.h +SemaExprCXX.o: DiagnosticSemaKinds.inc.h +SemaExprCXX.o: StmtNodes.inc.h +SemaExprCXX.po: AttrList.inc.h +SemaExprCXX.po: AttrParsedAttrList.inc.h +SemaExprCXX.po: Attrs.inc.h +SemaExprCXX.po: DeclNodes.inc.h +SemaExprCXX.po: DiagnosticCommonKinds.inc.h +SemaExprCXX.po: DiagnosticSemaKinds.inc.h +SemaExprCXX.po: StmtNodes.inc.h +SemaExprMember.o: AttrList.inc.h +SemaExprMember.o: AttrParsedAttrList.inc.h +SemaExprMember.o: Attrs.inc.h +SemaExprMember.o: DeclNodes.inc.h +SemaExprMember.o: DiagnosticCommonKinds.inc.h +SemaExprMember.o: DiagnosticSemaKinds.inc.h +SemaExprMember.o: StmtNodes.inc.h +SemaExprMember.po: AttrList.inc.h +SemaExprMember.po: AttrParsedAttrList.inc.h +SemaExprMember.po: Attrs.inc.h +SemaExprMember.po: DeclNodes.inc.h +SemaExprMember.po: DiagnosticCommonKinds.inc.h +SemaExprMember.po: DiagnosticSemaKinds.inc.h +SemaExprMember.po: StmtNodes.inc.h +SemaExprObjC.o: AttrList.inc.h +SemaExprObjC.o: AttrParsedAttrList.inc.h +SemaExprObjC.o: Attrs.inc.h +SemaExprObjC.o: DeclNodes.inc.h +SemaExprObjC.o: DiagnosticCommonKinds.inc.h +SemaExprObjC.o: DiagnosticSemaKinds.inc.h +SemaExprObjC.o: StmtNodes.inc.h +SemaExprObjC.po: AttrList.inc.h +SemaExprObjC.po: AttrParsedAttrList.inc.h +SemaExprObjC.po: Attrs.inc.h +SemaExprObjC.po: DeclNodes.inc.h +SemaExprObjC.po: DiagnosticCommonKinds.inc.h +SemaExprObjC.po: DiagnosticSemaKinds.inc.h +SemaExprObjC.po: StmtNodes.inc.h +SemaFixItUtils.o: AttrList.inc.h +SemaFixItUtils.o: AttrParsedAttrList.inc.h +SemaFixItUtils.o: Attrs.inc.h +SemaFixItUtils.o: DeclNodes.inc.h +SemaFixItUtils.o: DiagnosticCommonKinds.inc.h +SemaFixItUtils.o: StmtNodes.inc.h +SemaFixItUtils.po: AttrList.inc.h +SemaFixItUtils.po: AttrParsedAttrList.inc.h +SemaFixItUtils.po: Attrs.inc.h +SemaFixItUtils.po: DeclNodes.inc.h +SemaFixItUtils.po: DiagnosticCommonKinds.inc.h +SemaFixItUtils.po: StmtNodes.inc.h +SemaInit.o: AttrList.inc.h +SemaInit.o: AttrParsedAttrList.inc.h +SemaInit.o: Attrs.inc.h +SemaInit.o: DeclNodes.inc.h +SemaInit.o: DiagnosticCommonKinds.inc.h +SemaInit.o: DiagnosticSemaKinds.inc.h +SemaInit.o: StmtNodes.inc.h +SemaInit.po: AttrList.inc.h +SemaInit.po: AttrParsedAttrList.inc.h +SemaInit.po: Attrs.inc.h +SemaInit.po: DeclNodes.inc.h +SemaInit.po: DiagnosticCommonKinds.inc.h +SemaInit.po: DiagnosticSemaKinds.inc.h +SemaInit.po: StmtNodes.inc.h +SemaLambda.o: AttrList.inc.h +SemaLambda.o: AttrParsedAttrList.inc.h +SemaLambda.o: Attrs.inc.h +SemaLambda.o: DeclNodes.inc.h +SemaLambda.o: DiagnosticCommonKinds.inc.h +SemaLambda.o: DiagnosticSemaKinds.inc.h +SemaLambda.o: StmtNodes.inc.h +SemaLambda.po: AttrList.inc.h +SemaLambda.po: AttrParsedAttrList.inc.h +SemaLambda.po: Attrs.inc.h +SemaLambda.po: DeclNodes.inc.h +SemaLambda.po: DiagnosticCommonKinds.inc.h +SemaLambda.po: DiagnosticSemaKinds.inc.h +SemaLambda.po: StmtNodes.inc.h +SemaLookup.o: AttrList.inc.h +SemaLookup.o: AttrParsedAttrList.inc.h +SemaLookup.o: Attrs.inc.h +SemaLookup.o: DeclNodes.inc.h +SemaLookup.o: DiagnosticCommonKinds.inc.h +SemaLookup.o: DiagnosticSemaKinds.inc.h +SemaLookup.o: StmtNodes.inc.h +SemaLookup.po: AttrList.inc.h +SemaLookup.po: AttrParsedAttrList.inc.h +SemaLookup.po: Attrs.inc.h +SemaLookup.po: DeclNodes.inc.h +SemaLookup.po: DiagnosticCommonKinds.inc.h +SemaLookup.po: DiagnosticSemaKinds.inc.h +SemaLookup.po: StmtNodes.inc.h +SemaObjCProperty.o: AttrList.inc.h +SemaObjCProperty.o: AttrParsedAttrList.inc.h +SemaObjCProperty.o: Attrs.inc.h +SemaObjCProperty.o: DeclNodes.inc.h +SemaObjCProperty.o: DiagnosticCommonKinds.inc.h +SemaObjCProperty.o: DiagnosticSemaKinds.inc.h +SemaObjCProperty.o: StmtNodes.inc.h +SemaObjCProperty.po: AttrList.inc.h +SemaObjCProperty.po: AttrParsedAttrList.inc.h +SemaObjCProperty.po: Attrs.inc.h +SemaObjCProperty.po: DeclNodes.inc.h +SemaObjCProperty.po: DiagnosticCommonKinds.inc.h +SemaObjCProperty.po: DiagnosticSemaKinds.inc.h +SemaObjCProperty.po: StmtNodes.inc.h +SemaOverload.o: AttrList.inc.h +SemaOverload.o: AttrParsedAttrList.inc.h +SemaOverload.o: Attrs.inc.h +SemaOverload.o: DeclNodes.inc.h +SemaOverload.o: DiagnosticCommonKinds.inc.h +SemaOverload.o: DiagnosticSemaKinds.inc.h +SemaOverload.o: StmtNodes.inc.h +SemaOverload.po: AttrList.inc.h +SemaOverload.po: AttrParsedAttrList.inc.h +SemaOverload.po: Attrs.inc.h +SemaOverload.po: DeclNodes.inc.h +SemaOverload.po: DiagnosticCommonKinds.inc.h +SemaOverload.po: DiagnosticSemaKinds.inc.h +SemaOverload.po: StmtNodes.inc.h +SemaPseudoObject.o: AttrList.inc.h +SemaPseudoObject.o: AttrParsedAttrList.inc.h +SemaPseudoObject.o: Attrs.inc.h +SemaPseudoObject.o: DeclNodes.inc.h +SemaPseudoObject.o: DiagnosticCommonKinds.inc.h +SemaPseudoObject.o: DiagnosticSemaKinds.inc.h +SemaPseudoObject.o: StmtNodes.inc.h +SemaPseudoObject.po: AttrList.inc.h +SemaPseudoObject.po: AttrParsedAttrList.inc.h +SemaPseudoObject.po: Attrs.inc.h +SemaPseudoObject.po: DeclNodes.inc.h +SemaPseudoObject.po: DiagnosticCommonKinds.inc.h +SemaPseudoObject.po: DiagnosticSemaKinds.inc.h +SemaPseudoObject.po: StmtNodes.inc.h +SemaStmt.o: AttrList.inc.h +SemaStmt.o: AttrParsedAttrList.inc.h +SemaStmt.o: Attrs.inc.h +SemaStmt.o: DeclNodes.inc.h +SemaStmt.o: DiagnosticCommonKinds.inc.h +SemaStmt.o: DiagnosticSemaKinds.inc.h +SemaStmt.o: StmtNodes.inc.h +SemaStmt.po: AttrList.inc.h +SemaStmt.po: AttrParsedAttrList.inc.h +SemaStmt.po: Attrs.inc.h +SemaStmt.po: DeclNodes.inc.h +SemaStmt.po: DiagnosticCommonKinds.inc.h +SemaStmt.po: DiagnosticSemaKinds.inc.h +SemaStmt.po: StmtNodes.inc.h +SemaStmtAttr.o: AttrList.inc.h +SemaStmtAttr.o: AttrParsedAttrList.inc.h +SemaStmtAttr.o: Attrs.inc.h +SemaStmtAttr.o: DeclNodes.inc.h +SemaStmtAttr.o: DiagnosticCommonKinds.inc.h +SemaStmtAttr.o: DiagnosticSemaKinds.inc.h +SemaStmtAttr.o: StmtNodes.inc.h +SemaStmtAttr.po: AttrList.inc.h +SemaStmtAttr.po: AttrParsedAttrList.inc.h +SemaStmtAttr.po: Attrs.inc.h +SemaStmtAttr.po: DeclNodes.inc.h +SemaStmtAttr.po: DiagnosticCommonKinds.inc.h +SemaStmtAttr.po: DiagnosticSemaKinds.inc.h +SemaStmtAttr.po: StmtNodes.inc.h +SemaTemplate.o: AttrList.inc.h +SemaTemplate.o: AttrParsedAttrList.inc.h +SemaTemplate.o: Attrs.inc.h +SemaTemplate.o: DeclNodes.inc.h +SemaTemplate.o: DiagnosticCommonKinds.inc.h +SemaTemplate.o: DiagnosticSemaKinds.inc.h +SemaTemplate.o: StmtNodes.inc.h +SemaTemplate.po: AttrList.inc.h +SemaTemplate.po: AttrParsedAttrList.inc.h +SemaTemplate.po: Attrs.inc.h +SemaTemplate.po: DeclNodes.inc.h +SemaTemplate.po: DiagnosticCommonKinds.inc.h +SemaTemplate.po: DiagnosticSemaKinds.inc.h +SemaTemplate.po: StmtNodes.inc.h +SemaTemplateDeduction.o: AttrList.inc.h +SemaTemplateDeduction.o: AttrParsedAttrList.inc.h +SemaTemplateDeduction.o: Attrs.inc.h +SemaTemplateDeduction.o: DeclNodes.inc.h +SemaTemplateDeduction.o: DiagnosticCommonKinds.inc.h +SemaTemplateDeduction.o: DiagnosticSemaKinds.inc.h +SemaTemplateDeduction.o: StmtNodes.inc.h +SemaTemplateDeduction.po: AttrList.inc.h +SemaTemplateDeduction.po: AttrParsedAttrList.inc.h +SemaTemplateDeduction.po: Attrs.inc.h +SemaTemplateDeduction.po: DeclNodes.inc.h +SemaTemplateDeduction.po: DiagnosticCommonKinds.inc.h +SemaTemplateDeduction.po: DiagnosticSemaKinds.inc.h +SemaTemplateDeduction.po: StmtNodes.inc.h +SemaTemplateInstantiate.o: AttrList.inc.h +SemaTemplateInstantiate.o: AttrParsedAttrList.inc.h +SemaTemplateInstantiate.o: Attrs.inc.h +SemaTemplateInstantiate.o: DeclNodes.inc.h +SemaTemplateInstantiate.o: DiagnosticCommonKinds.inc.h +SemaTemplateInstantiate.o: DiagnosticSemaKinds.inc.h +SemaTemplateInstantiate.o: StmtNodes.inc.h +SemaTemplateInstantiate.po: AttrList.inc.h +SemaTemplateInstantiate.po: AttrParsedAttrList.inc.h +SemaTemplateInstantiate.po: Attrs.inc.h +SemaTemplateInstantiate.po: DeclNodes.inc.h +SemaTemplateInstantiate.po: DiagnosticCommonKinds.inc.h +SemaTemplateInstantiate.po: DiagnosticSemaKinds.inc.h +SemaTemplateInstantiate.po: StmtNodes.inc.h +SemaTemplateInstantiateDecl.o: AttrList.inc.h +SemaTemplateInstantiateDecl.o: AttrParsedAttrList.inc.h +SemaTemplateInstantiateDecl.o: AttrTemplateInstantiate.inc.h +SemaTemplateInstantiateDecl.o: Attrs.inc.h +SemaTemplateInstantiateDecl.o: DeclNodes.inc.h +SemaTemplateInstantiateDecl.o: DiagnosticCommonKinds.inc.h +SemaTemplateInstantiateDecl.o: DiagnosticSemaKinds.inc.h +SemaTemplateInstantiateDecl.o: StmtNodes.inc.h +SemaTemplateInstantiateDecl.po: AttrList.inc.h +SemaTemplateInstantiateDecl.po: AttrParsedAttrList.inc.h +SemaTemplateInstantiateDecl.po: AttrTemplateInstantiate.inc.h +SemaTemplateInstantiateDecl.po: Attrs.inc.h +SemaTemplateInstantiateDecl.po: DeclNodes.inc.h +SemaTemplateInstantiateDecl.po: DiagnosticCommonKinds.inc.h +SemaTemplateInstantiateDecl.po: DiagnosticSemaKinds.inc.h +SemaTemplateInstantiateDecl.po: StmtNodes.inc.h +SemaTemplateVariadic.o: AttrList.inc.h +SemaTemplateVariadic.o: AttrParsedAttrList.inc.h +SemaTemplateVariadic.o: Attrs.inc.h +SemaTemplateVariadic.o: DeclNodes.inc.h +SemaTemplateVariadic.o: DiagnosticCommonKinds.inc.h +SemaTemplateVariadic.o: DiagnosticSemaKinds.inc.h +SemaTemplateVariadic.o: StmtNodes.inc.h +SemaTemplateVariadic.po: AttrList.inc.h +SemaTemplateVariadic.po: AttrParsedAttrList.inc.h +SemaTemplateVariadic.po: Attrs.inc.h +SemaTemplateVariadic.po: DeclNodes.inc.h +SemaTemplateVariadic.po: DiagnosticCommonKinds.inc.h +SemaTemplateVariadic.po: DiagnosticSemaKinds.inc.h +SemaTemplateVariadic.po: StmtNodes.inc.h +SemaType.o: AttrList.inc.h +SemaType.o: AttrParsedAttrList.inc.h +SemaType.o: Attrs.inc.h +SemaType.o: DeclNodes.inc.h +SemaType.o: DiagnosticCommonKinds.inc.h +SemaType.o: DiagnosticParseKinds.inc.h +SemaType.o: DiagnosticSemaKinds.inc.h +SemaType.o: StmtNodes.inc.h +SemaType.po: AttrList.inc.h +SemaType.po: AttrParsedAttrList.inc.h +SemaType.po: Attrs.inc.h +SemaType.po: DeclNodes.inc.h +SemaType.po: DiagnosticCommonKinds.inc.h +SemaType.po: DiagnosticParseKinds.inc.h +SemaType.po: DiagnosticSemaKinds.inc.h +SemaType.po: StmtNodes.inc.h +TargetAttributesSema.o: AttrList.inc.h +TargetAttributesSema.o: AttrParsedAttrList.inc.h +TargetAttributesSema.o: Attrs.inc.h +TargetAttributesSema.o: DeclNodes.inc.h +TargetAttributesSema.o: DiagnosticCommonKinds.inc.h +TargetAttributesSema.o: DiagnosticSemaKinds.inc.h +TargetAttributesSema.o: StmtNodes.inc.h +TargetAttributesSema.po: AttrList.inc.h +TargetAttributesSema.po: AttrParsedAttrList.inc.h +TargetAttributesSema.po: Attrs.inc.h +TargetAttributesSema.po: DeclNodes.inc.h +TargetAttributesSema.po: DiagnosticCommonKinds.inc.h +TargetAttributesSema.po: DiagnosticSemaKinds.inc.h +TargetAttributesSema.po: StmtNodes.inc.h +.endif diff --git a/lib/clang/libclangserialization/Makefile.depend b/lib/clang/libclangserialization/Makefile.depend new file mode 100644 index 000000000000..96ace8927e93 --- /dev/null +++ b/lib/clang/libclangserialization/Makefile.depend @@ -0,0 +1,111 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ASTCommon.o: AttrList.inc.h +ASTCommon.o: Attrs.inc.h +ASTCommon.o: DeclNodes.inc.h +ASTCommon.o: DiagnosticCommonKinds.inc.h +ASTCommon.po: AttrList.inc.h +ASTCommon.po: Attrs.inc.h +ASTCommon.po: DeclNodes.inc.h +ASTCommon.po: DiagnosticCommonKinds.inc.h +ASTReader.o: AttrList.inc.h +ASTReader.o: AttrParsedAttrList.inc.h +ASTReader.o: Attrs.inc.h +ASTReader.o: DeclNodes.inc.h +ASTReader.o: DiagnosticCommonKinds.inc.h +ASTReader.o: DiagnosticSerializationKinds.inc.h +ASTReader.o: StmtNodes.inc.h +ASTReader.po: AttrList.inc.h +ASTReader.po: AttrParsedAttrList.inc.h +ASTReader.po: Attrs.inc.h +ASTReader.po: DeclNodes.inc.h +ASTReader.po: DiagnosticCommonKinds.inc.h +ASTReader.po: DiagnosticSerializationKinds.inc.h +ASTReader.po: StmtNodes.inc.h +ASTReaderDecl.o: AttrList.inc.h +ASTReaderDecl.o: AttrPCHRead.inc.h +ASTReaderDecl.o: AttrParsedAttrList.inc.h +ASTReaderDecl.o: Attrs.inc.h +ASTReaderDecl.o: DeclNodes.inc.h +ASTReaderDecl.o: DiagnosticCommonKinds.inc.h +ASTReaderDecl.o: DiagnosticSemaKinds.inc.h +ASTReaderDecl.o: StmtNodes.inc.h +ASTReaderDecl.po: AttrList.inc.h +ASTReaderDecl.po: AttrPCHRead.inc.h +ASTReaderDecl.po: AttrParsedAttrList.inc.h +ASTReaderDecl.po: Attrs.inc.h +ASTReaderDecl.po: DeclNodes.inc.h +ASTReaderDecl.po: DiagnosticCommonKinds.inc.h +ASTReaderDecl.po: DiagnosticSemaKinds.inc.h +ASTReaderDecl.po: StmtNodes.inc.h +ASTReaderStmt.o: AttrList.inc.h +ASTReaderStmt.o: Attrs.inc.h +ASTReaderStmt.o: DeclNodes.inc.h +ASTReaderStmt.o: DiagnosticCommonKinds.inc.h +ASTReaderStmt.o: StmtNodes.inc.h +ASTReaderStmt.po: AttrList.inc.h +ASTReaderStmt.po: Attrs.inc.h +ASTReaderStmt.po: DeclNodes.inc.h +ASTReaderStmt.po: DiagnosticCommonKinds.inc.h +ASTReaderStmt.po: StmtNodes.inc.h +ASTWriter.o: AttrList.inc.h +ASTWriter.o: AttrPCHWrite.inc.h +ASTWriter.o: AttrParsedAttrList.inc.h +ASTWriter.o: Attrs.inc.h +ASTWriter.o: DeclNodes.inc.h +ASTWriter.o: DiagnosticCommonKinds.inc.h +ASTWriter.o: StmtNodes.inc.h +ASTWriter.po: AttrList.inc.h +ASTWriter.po: AttrPCHWrite.inc.h +ASTWriter.po: AttrParsedAttrList.inc.h +ASTWriter.po: Attrs.inc.h +ASTWriter.po: DeclNodes.inc.h +ASTWriter.po: DiagnosticCommonKinds.inc.h +ASTWriter.po: StmtNodes.inc.h +ASTWriterDecl.o: AttrList.inc.h +ASTWriterDecl.o: Attrs.inc.h +ASTWriterDecl.o: DeclNodes.inc.h +ASTWriterDecl.o: DiagnosticCommonKinds.inc.h +ASTWriterDecl.o: StmtNodes.inc.h +ASTWriterDecl.po: AttrList.inc.h +ASTWriterDecl.po: Attrs.inc.h +ASTWriterDecl.po: DeclNodes.inc.h +ASTWriterDecl.po: DiagnosticCommonKinds.inc.h +ASTWriterDecl.po: StmtNodes.inc.h +ASTWriterStmt.o: AttrList.inc.h +ASTWriterStmt.o: Attrs.inc.h +ASTWriterStmt.o: DeclNodes.inc.h +ASTWriterStmt.o: DiagnosticCommonKinds.inc.h +ASTWriterStmt.o: StmtNodes.inc.h +ASTWriterStmt.po: AttrList.inc.h +ASTWriterStmt.po: Attrs.inc.h +ASTWriterStmt.po: DeclNodes.inc.h +ASTWriterStmt.po: DiagnosticCommonKinds.inc.h +ASTWriterStmt.po: StmtNodes.inc.h +GeneratePCH.o: AttrList.inc.h +GeneratePCH.o: Attrs.inc.h +GeneratePCH.o: DeclNodes.inc.h +GeneratePCH.o: DiagnosticCommonKinds.inc.h +GeneratePCH.po: AttrList.inc.h +GeneratePCH.po: Attrs.inc.h +GeneratePCH.po: DeclNodes.inc.h +GeneratePCH.po: DiagnosticCommonKinds.inc.h +Module.o: DiagnosticCommonKinds.inc.h +Module.po: DiagnosticCommonKinds.inc.h +ModuleManager.o: DiagnosticCommonKinds.inc.h +ModuleManager.po: DiagnosticCommonKinds.inc.h +.endif diff --git a/lib/clang/libclangstaticanalyzercheckers/Makefile.depend b/lib/clang/libclangstaticanalyzercheckers/Makefile.depend new file mode 100644 index 000000000000..d287f2bc3816 --- /dev/null +++ b/lib/clang/libclangstaticanalyzercheckers/Makefile.depend @@ -0,0 +1,749 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +AdjustedReturnValueChecker.o: AttrList.inc.h +AdjustedReturnValueChecker.o: Attrs.inc.h +AdjustedReturnValueChecker.o: Checkers.inc.h +AdjustedReturnValueChecker.o: DeclNodes.inc.h +AdjustedReturnValueChecker.o: DiagnosticCommonKinds.inc.h +AdjustedReturnValueChecker.o: StmtNodes.inc.h +AdjustedReturnValueChecker.po: AttrList.inc.h +AdjustedReturnValueChecker.po: Attrs.inc.h +AdjustedReturnValueChecker.po: Checkers.inc.h +AdjustedReturnValueChecker.po: DeclNodes.inc.h +AdjustedReturnValueChecker.po: DiagnosticCommonKinds.inc.h +AdjustedReturnValueChecker.po: StmtNodes.inc.h +AnalyzerStatsChecker.o: AttrList.inc.h +AnalyzerStatsChecker.o: Attrs.inc.h +AnalyzerStatsChecker.o: Checkers.inc.h +AnalyzerStatsChecker.o: DeclNodes.inc.h +AnalyzerStatsChecker.o: DiagnosticCommonKinds.inc.h +AnalyzerStatsChecker.o: StmtNodes.inc.h +AnalyzerStatsChecker.po: AttrList.inc.h +AnalyzerStatsChecker.po: Attrs.inc.h +AnalyzerStatsChecker.po: Checkers.inc.h +AnalyzerStatsChecker.po: DeclNodes.inc.h +AnalyzerStatsChecker.po: DiagnosticCommonKinds.inc.h +AnalyzerStatsChecker.po: StmtNodes.inc.h +ArrayBoundChecker.o: AttrList.inc.h +ArrayBoundChecker.o: Attrs.inc.h +ArrayBoundChecker.o: Checkers.inc.h +ArrayBoundChecker.o: DeclNodes.inc.h +ArrayBoundChecker.o: DiagnosticCommonKinds.inc.h +ArrayBoundChecker.o: StmtNodes.inc.h +ArrayBoundChecker.po: AttrList.inc.h +ArrayBoundChecker.po: Attrs.inc.h +ArrayBoundChecker.po: Checkers.inc.h +ArrayBoundChecker.po: DeclNodes.inc.h +ArrayBoundChecker.po: DiagnosticCommonKinds.inc.h +ArrayBoundChecker.po: StmtNodes.inc.h +ArrayBoundCheckerV2.o: AttrList.inc.h +ArrayBoundCheckerV2.o: Attrs.inc.h +ArrayBoundCheckerV2.o: Checkers.inc.h +ArrayBoundCheckerV2.o: DeclNodes.inc.h +ArrayBoundCheckerV2.o: DiagnosticCommonKinds.inc.h +ArrayBoundCheckerV2.o: StmtNodes.inc.h +ArrayBoundCheckerV2.po: AttrList.inc.h +ArrayBoundCheckerV2.po: Attrs.inc.h +ArrayBoundCheckerV2.po: Checkers.inc.h +ArrayBoundCheckerV2.po: DeclNodes.inc.h +ArrayBoundCheckerV2.po: DiagnosticCommonKinds.inc.h +ArrayBoundCheckerV2.po: StmtNodes.inc.h +AttrNonNullChecker.o: AttrList.inc.h +AttrNonNullChecker.o: Attrs.inc.h +AttrNonNullChecker.o: Checkers.inc.h +AttrNonNullChecker.o: DeclNodes.inc.h +AttrNonNullChecker.o: DiagnosticCommonKinds.inc.h +AttrNonNullChecker.o: StmtNodes.inc.h +AttrNonNullChecker.po: AttrList.inc.h +AttrNonNullChecker.po: Attrs.inc.h +AttrNonNullChecker.po: Checkers.inc.h +AttrNonNullChecker.po: DeclNodes.inc.h +AttrNonNullChecker.po: DiagnosticCommonKinds.inc.h +AttrNonNullChecker.po: StmtNodes.inc.h +BasicObjCFoundationChecks.o: AttrList.inc.h +BasicObjCFoundationChecks.o: Attrs.inc.h +BasicObjCFoundationChecks.o: Checkers.inc.h +BasicObjCFoundationChecks.o: DeclNodes.inc.h +BasicObjCFoundationChecks.o: DiagnosticCommonKinds.inc.h +BasicObjCFoundationChecks.o: StmtNodes.inc.h +BasicObjCFoundationChecks.po: AttrList.inc.h +BasicObjCFoundationChecks.po: Attrs.inc.h +BasicObjCFoundationChecks.po: Checkers.inc.h +BasicObjCFoundationChecks.po: DeclNodes.inc.h +BasicObjCFoundationChecks.po: DiagnosticCommonKinds.inc.h +BasicObjCFoundationChecks.po: StmtNodes.inc.h +BoolAssignmentChecker.o: AttrList.inc.h +BoolAssignmentChecker.o: Attrs.inc.h +BoolAssignmentChecker.o: Checkers.inc.h +BoolAssignmentChecker.o: DeclNodes.inc.h +BoolAssignmentChecker.o: DiagnosticCommonKinds.inc.h +BoolAssignmentChecker.o: StmtNodes.inc.h +BoolAssignmentChecker.po: AttrList.inc.h +BoolAssignmentChecker.po: Attrs.inc.h +BoolAssignmentChecker.po: Checkers.inc.h +BoolAssignmentChecker.po: DeclNodes.inc.h +BoolAssignmentChecker.po: DiagnosticCommonKinds.inc.h +BoolAssignmentChecker.po: StmtNodes.inc.h +BuiltinFunctionChecker.o: AttrList.inc.h +BuiltinFunctionChecker.o: Attrs.inc.h +BuiltinFunctionChecker.o: Checkers.inc.h +BuiltinFunctionChecker.o: DeclNodes.inc.h +BuiltinFunctionChecker.o: DiagnosticCommonKinds.inc.h +BuiltinFunctionChecker.o: StmtNodes.inc.h +BuiltinFunctionChecker.po: AttrList.inc.h +BuiltinFunctionChecker.po: Attrs.inc.h +BuiltinFunctionChecker.po: Checkers.inc.h +BuiltinFunctionChecker.po: DeclNodes.inc.h +BuiltinFunctionChecker.po: DiagnosticCommonKinds.inc.h +BuiltinFunctionChecker.po: StmtNodes.inc.h +CStringChecker.o: AttrList.inc.h +CStringChecker.o: Attrs.inc.h +CStringChecker.o: Checkers.inc.h +CStringChecker.o: DeclNodes.inc.h +CStringChecker.o: DiagnosticCommonKinds.inc.h +CStringChecker.o: StmtNodes.inc.h +CStringChecker.po: AttrList.inc.h +CStringChecker.po: Attrs.inc.h +CStringChecker.po: Checkers.inc.h +CStringChecker.po: DeclNodes.inc.h +CStringChecker.po: DiagnosticCommonKinds.inc.h +CStringChecker.po: StmtNodes.inc.h +CStringSyntaxChecker.o: AttrList.inc.h +CStringSyntaxChecker.o: Attrs.inc.h +CStringSyntaxChecker.o: Checkers.inc.h +CStringSyntaxChecker.o: DeclNodes.inc.h +CStringSyntaxChecker.o: DiagnosticCommonKinds.inc.h +CStringSyntaxChecker.o: StmtNodes.inc.h +CStringSyntaxChecker.po: AttrList.inc.h +CStringSyntaxChecker.po: Attrs.inc.h +CStringSyntaxChecker.po: Checkers.inc.h +CStringSyntaxChecker.po: DeclNodes.inc.h +CStringSyntaxChecker.po: DiagnosticCommonKinds.inc.h +CStringSyntaxChecker.po: StmtNodes.inc.h +CallAndMessageChecker.o: AttrList.inc.h +CallAndMessageChecker.o: Attrs.inc.h +CallAndMessageChecker.o: Checkers.inc.h +CallAndMessageChecker.o: DeclNodes.inc.h +CallAndMessageChecker.o: DiagnosticCommonKinds.inc.h +CallAndMessageChecker.o: StmtNodes.inc.h +CallAndMessageChecker.po: AttrList.inc.h +CallAndMessageChecker.po: Attrs.inc.h +CallAndMessageChecker.po: Checkers.inc.h +CallAndMessageChecker.po: DeclNodes.inc.h +CallAndMessageChecker.po: DiagnosticCommonKinds.inc.h +CallAndMessageChecker.po: StmtNodes.inc.h +CastSizeChecker.o: AttrList.inc.h +CastSizeChecker.o: Attrs.inc.h +CastSizeChecker.o: Checkers.inc.h +CastSizeChecker.o: DeclNodes.inc.h +CastSizeChecker.o: DiagnosticCommonKinds.inc.h +CastSizeChecker.o: StmtNodes.inc.h +CastSizeChecker.po: AttrList.inc.h +CastSizeChecker.po: Attrs.inc.h +CastSizeChecker.po: Checkers.inc.h +CastSizeChecker.po: DeclNodes.inc.h +CastSizeChecker.po: DiagnosticCommonKinds.inc.h +CastSizeChecker.po: StmtNodes.inc.h +CastToStructChecker.o: AttrList.inc.h +CastToStructChecker.o: Attrs.inc.h +CastToStructChecker.o: Checkers.inc.h +CastToStructChecker.o: DeclNodes.inc.h +CastToStructChecker.o: DiagnosticCommonKinds.inc.h +CastToStructChecker.o: StmtNodes.inc.h +CastToStructChecker.po: AttrList.inc.h +CastToStructChecker.po: Attrs.inc.h +CastToStructChecker.po: Checkers.inc.h +CastToStructChecker.po: DeclNodes.inc.h +CastToStructChecker.po: DiagnosticCommonKinds.inc.h +CastToStructChecker.po: StmtNodes.inc.h +CheckObjCDealloc.o: AttrList.inc.h +CheckObjCDealloc.o: Attrs.inc.h +CheckObjCDealloc.o: Checkers.inc.h +CheckObjCDealloc.o: DeclNodes.inc.h +CheckObjCDealloc.o: DiagnosticCommonKinds.inc.h +CheckObjCDealloc.o: StmtNodes.inc.h +CheckObjCDealloc.po: AttrList.inc.h +CheckObjCDealloc.po: Attrs.inc.h +CheckObjCDealloc.po: Checkers.inc.h +CheckObjCDealloc.po: DeclNodes.inc.h +CheckObjCDealloc.po: DiagnosticCommonKinds.inc.h +CheckObjCDealloc.po: StmtNodes.inc.h +CheckObjCInstMethSignature.o: AttrList.inc.h +CheckObjCInstMethSignature.o: Attrs.inc.h +CheckObjCInstMethSignature.o: Checkers.inc.h +CheckObjCInstMethSignature.o: DeclNodes.inc.h +CheckObjCInstMethSignature.o: DiagnosticCommonKinds.inc.h +CheckObjCInstMethSignature.o: StmtNodes.inc.h +CheckObjCInstMethSignature.po: AttrList.inc.h +CheckObjCInstMethSignature.po: Attrs.inc.h +CheckObjCInstMethSignature.po: Checkers.inc.h +CheckObjCInstMethSignature.po: DeclNodes.inc.h +CheckObjCInstMethSignature.po: DiagnosticCommonKinds.inc.h +CheckObjCInstMethSignature.po: StmtNodes.inc.h +CheckSecuritySyntaxOnly.o: AttrList.inc.h +CheckSecuritySyntaxOnly.o: Attrs.inc.h +CheckSecuritySyntaxOnly.o: Checkers.inc.h +CheckSecuritySyntaxOnly.o: DeclNodes.inc.h +CheckSecuritySyntaxOnly.o: DiagnosticCommonKinds.inc.h +CheckSecuritySyntaxOnly.o: StmtNodes.inc.h +CheckSecuritySyntaxOnly.po: AttrList.inc.h +CheckSecuritySyntaxOnly.po: Attrs.inc.h +CheckSecuritySyntaxOnly.po: Checkers.inc.h +CheckSecuritySyntaxOnly.po: DeclNodes.inc.h +CheckSecuritySyntaxOnly.po: DiagnosticCommonKinds.inc.h +CheckSecuritySyntaxOnly.po: StmtNodes.inc.h +CheckSizeofPointer.o: AttrList.inc.h +CheckSizeofPointer.o: Attrs.inc.h +CheckSizeofPointer.o: Checkers.inc.h +CheckSizeofPointer.o: DeclNodes.inc.h +CheckSizeofPointer.o: DiagnosticCommonKinds.inc.h +CheckSizeofPointer.o: StmtNodes.inc.h +CheckSizeofPointer.po: AttrList.inc.h +CheckSizeofPointer.po: Attrs.inc.h +CheckSizeofPointer.po: Checkers.inc.h +CheckSizeofPointer.po: DeclNodes.inc.h +CheckSizeofPointer.po: DiagnosticCommonKinds.inc.h +CheckSizeofPointer.po: StmtNodes.inc.h +CheckerDocumentation.o: AttrList.inc.h +CheckerDocumentation.o: Attrs.inc.h +CheckerDocumentation.o: Checkers.inc.h +CheckerDocumentation.o: DeclNodes.inc.h +CheckerDocumentation.o: DiagnosticCommonKinds.inc.h +CheckerDocumentation.o: StmtNodes.inc.h +CheckerDocumentation.po: AttrList.inc.h +CheckerDocumentation.po: Attrs.inc.h +CheckerDocumentation.po: Checkers.inc.h +CheckerDocumentation.po: DeclNodes.inc.h +CheckerDocumentation.po: DiagnosticCommonKinds.inc.h +CheckerDocumentation.po: StmtNodes.inc.h +ChrootChecker.o: AttrList.inc.h +ChrootChecker.o: Attrs.inc.h +ChrootChecker.o: Checkers.inc.h +ChrootChecker.o: DeclNodes.inc.h +ChrootChecker.o: DiagnosticCommonKinds.inc.h +ChrootChecker.o: StmtNodes.inc.h +ChrootChecker.po: AttrList.inc.h +ChrootChecker.po: Attrs.inc.h +ChrootChecker.po: Checkers.inc.h +ChrootChecker.po: DeclNodes.inc.h +ChrootChecker.po: DiagnosticCommonKinds.inc.h +ChrootChecker.po: StmtNodes.inc.h +ClangCheckers.o: AttrList.inc.h +ClangCheckers.o: Attrs.inc.h +ClangCheckers.o: Checkers.inc.h +ClangCheckers.o: DeclNodes.inc.h +ClangCheckers.o: DiagnosticCommonKinds.inc.h +ClangCheckers.o: StmtNodes.inc.h +ClangCheckers.po: AttrList.inc.h +ClangCheckers.po: Attrs.inc.h +ClangCheckers.po: Checkers.inc.h +ClangCheckers.po: DeclNodes.inc.h +ClangCheckers.po: DiagnosticCommonKinds.inc.h +ClangCheckers.po: StmtNodes.inc.h +DeadStoresChecker.o: AttrList.inc.h +DeadStoresChecker.o: Attrs.inc.h +DeadStoresChecker.o: Checkers.inc.h +DeadStoresChecker.o: DeclNodes.inc.h +DeadStoresChecker.o: DiagnosticCommonKinds.inc.h +DeadStoresChecker.o: StmtNodes.inc.h +DeadStoresChecker.po: AttrList.inc.h +DeadStoresChecker.po: Attrs.inc.h +DeadStoresChecker.po: Checkers.inc.h +DeadStoresChecker.po: DeclNodes.inc.h +DeadStoresChecker.po: DiagnosticCommonKinds.inc.h +DeadStoresChecker.po: StmtNodes.inc.h +DebugCheckers.o: AttrList.inc.h +DebugCheckers.o: Attrs.inc.h +DebugCheckers.o: Checkers.inc.h +DebugCheckers.o: DeclNodes.inc.h +DebugCheckers.o: DiagnosticCommonKinds.inc.h +DebugCheckers.o: StmtNodes.inc.h +DebugCheckers.po: AttrList.inc.h +DebugCheckers.po: Attrs.inc.h +DebugCheckers.po: Checkers.inc.h +DebugCheckers.po: DeclNodes.inc.h +DebugCheckers.po: DiagnosticCommonKinds.inc.h +DebugCheckers.po: StmtNodes.inc.h +DereferenceChecker.o: AttrList.inc.h +DereferenceChecker.o: Attrs.inc.h +DereferenceChecker.o: Checkers.inc.h +DereferenceChecker.o: DeclNodes.inc.h +DereferenceChecker.o: DiagnosticCommonKinds.inc.h +DereferenceChecker.o: StmtNodes.inc.h +DereferenceChecker.po: AttrList.inc.h +DereferenceChecker.po: Attrs.inc.h +DereferenceChecker.po: Checkers.inc.h +DereferenceChecker.po: DeclNodes.inc.h +DereferenceChecker.po: DiagnosticCommonKinds.inc.h +DereferenceChecker.po: StmtNodes.inc.h +DivZeroChecker.o: AttrList.inc.h +DivZeroChecker.o: Attrs.inc.h +DivZeroChecker.o: Checkers.inc.h +DivZeroChecker.o: DeclNodes.inc.h +DivZeroChecker.o: DiagnosticCommonKinds.inc.h +DivZeroChecker.o: StmtNodes.inc.h +DivZeroChecker.po: AttrList.inc.h +DivZeroChecker.po: Attrs.inc.h +DivZeroChecker.po: Checkers.inc.h +DivZeroChecker.po: DeclNodes.inc.h +DivZeroChecker.po: DiagnosticCommonKinds.inc.h +DivZeroChecker.po: StmtNodes.inc.h +FixedAddressChecker.o: AttrList.inc.h +FixedAddressChecker.o: Attrs.inc.h +FixedAddressChecker.o: Checkers.inc.h +FixedAddressChecker.o: DeclNodes.inc.h +FixedAddressChecker.o: DiagnosticCommonKinds.inc.h +FixedAddressChecker.o: StmtNodes.inc.h +FixedAddressChecker.po: AttrList.inc.h +FixedAddressChecker.po: Attrs.inc.h +FixedAddressChecker.po: Checkers.inc.h +FixedAddressChecker.po: DeclNodes.inc.h +FixedAddressChecker.po: DiagnosticCommonKinds.inc.h +FixedAddressChecker.po: StmtNodes.inc.h +GenericTaintChecker.o: AttrList.inc.h +GenericTaintChecker.o: Attrs.inc.h +GenericTaintChecker.o: Checkers.inc.h +GenericTaintChecker.o: DeclNodes.inc.h +GenericTaintChecker.o: DiagnosticCommonKinds.inc.h +GenericTaintChecker.o: StmtNodes.inc.h +GenericTaintChecker.po: AttrList.inc.h +GenericTaintChecker.po: Attrs.inc.h +GenericTaintChecker.po: Checkers.inc.h +GenericTaintChecker.po: DeclNodes.inc.h +GenericTaintChecker.po: DiagnosticCommonKinds.inc.h +GenericTaintChecker.po: StmtNodes.inc.h +IdempotentOperationChecker.o: AttrList.inc.h +IdempotentOperationChecker.o: Attrs.inc.h +IdempotentOperationChecker.o: Checkers.inc.h +IdempotentOperationChecker.o: DeclNodes.inc.h +IdempotentOperationChecker.o: DiagnosticCommonKinds.inc.h +IdempotentOperationChecker.o: StmtNodes.inc.h +IdempotentOperationChecker.po: AttrList.inc.h +IdempotentOperationChecker.po: Attrs.inc.h +IdempotentOperationChecker.po: Checkers.inc.h +IdempotentOperationChecker.po: DeclNodes.inc.h +IdempotentOperationChecker.po: DiagnosticCommonKinds.inc.h +IdempotentOperationChecker.po: StmtNodes.inc.h +IteratorsChecker.o: AttrList.inc.h +IteratorsChecker.o: Attrs.inc.h +IteratorsChecker.o: Checkers.inc.h +IteratorsChecker.o: DeclNodes.inc.h +IteratorsChecker.o: DiagnosticCommonKinds.inc.h +IteratorsChecker.o: StmtNodes.inc.h +IteratorsChecker.po: AttrList.inc.h +IteratorsChecker.po: Attrs.inc.h +IteratorsChecker.po: Checkers.inc.h +IteratorsChecker.po: DeclNodes.inc.h +IteratorsChecker.po: DiagnosticCommonKinds.inc.h +IteratorsChecker.po: StmtNodes.inc.h +LLVMConventionsChecker.o: AttrList.inc.h +LLVMConventionsChecker.o: Attrs.inc.h +LLVMConventionsChecker.o: Checkers.inc.h +LLVMConventionsChecker.o: DeclNodes.inc.h +LLVMConventionsChecker.o: DiagnosticCommonKinds.inc.h +LLVMConventionsChecker.o: StmtNodes.inc.h +LLVMConventionsChecker.po: AttrList.inc.h +LLVMConventionsChecker.po: Attrs.inc.h +LLVMConventionsChecker.po: Checkers.inc.h +LLVMConventionsChecker.po: DeclNodes.inc.h +LLVMConventionsChecker.po: DiagnosticCommonKinds.inc.h +LLVMConventionsChecker.po: StmtNodes.inc.h +MacOSKeychainAPIChecker.o: AttrList.inc.h +MacOSKeychainAPIChecker.o: Attrs.inc.h +MacOSKeychainAPIChecker.o: Checkers.inc.h +MacOSKeychainAPIChecker.o: DeclNodes.inc.h +MacOSKeychainAPIChecker.o: DiagnosticCommonKinds.inc.h +MacOSKeychainAPIChecker.o: StmtNodes.inc.h +MacOSKeychainAPIChecker.po: AttrList.inc.h +MacOSKeychainAPIChecker.po: Attrs.inc.h +MacOSKeychainAPIChecker.po: Checkers.inc.h +MacOSKeychainAPIChecker.po: DeclNodes.inc.h +MacOSKeychainAPIChecker.po: DiagnosticCommonKinds.inc.h +MacOSKeychainAPIChecker.po: StmtNodes.inc.h +MacOSXAPIChecker.o: AttrList.inc.h +MacOSXAPIChecker.o: Attrs.inc.h +MacOSXAPIChecker.o: Checkers.inc.h +MacOSXAPIChecker.o: DeclNodes.inc.h +MacOSXAPIChecker.o: DiagnosticCommonKinds.inc.h +MacOSXAPIChecker.o: StmtNodes.inc.h +MacOSXAPIChecker.po: AttrList.inc.h +MacOSXAPIChecker.po: Attrs.inc.h +MacOSXAPIChecker.po: Checkers.inc.h +MacOSXAPIChecker.po: DeclNodes.inc.h +MacOSXAPIChecker.po: DiagnosticCommonKinds.inc.h +MacOSXAPIChecker.po: StmtNodes.inc.h +MallocChecker.o: AttrList.inc.h +MallocChecker.o: Attrs.inc.h +MallocChecker.o: Checkers.inc.h +MallocChecker.o: DeclNodes.inc.h +MallocChecker.o: DiagnosticCommonKinds.inc.h +MallocChecker.o: StmtNodes.inc.h +MallocChecker.po: AttrList.inc.h +MallocChecker.po: Attrs.inc.h +MallocChecker.po: Checkers.inc.h +MallocChecker.po: DeclNodes.inc.h +MallocChecker.po: DiagnosticCommonKinds.inc.h +MallocChecker.po: StmtNodes.inc.h +MallocOverflowSecurityChecker.o: AttrList.inc.h +MallocOverflowSecurityChecker.o: Attrs.inc.h +MallocOverflowSecurityChecker.o: Checkers.inc.h +MallocOverflowSecurityChecker.o: DeclNodes.inc.h +MallocOverflowSecurityChecker.o: DiagnosticCommonKinds.inc.h +MallocOverflowSecurityChecker.o: StmtNodes.inc.h +MallocOverflowSecurityChecker.po: AttrList.inc.h +MallocOverflowSecurityChecker.po: Attrs.inc.h +MallocOverflowSecurityChecker.po: Checkers.inc.h +MallocOverflowSecurityChecker.po: DeclNodes.inc.h +MallocOverflowSecurityChecker.po: DiagnosticCommonKinds.inc.h +MallocOverflowSecurityChecker.po: StmtNodes.inc.h +MallocSizeofChecker.o: AttrList.inc.h +MallocSizeofChecker.o: Attrs.inc.h +MallocSizeofChecker.o: Checkers.inc.h +MallocSizeofChecker.o: DeclNodes.inc.h +MallocSizeofChecker.o: DiagnosticCommonKinds.inc.h +MallocSizeofChecker.o: StmtNodes.inc.h +MallocSizeofChecker.po: AttrList.inc.h +MallocSizeofChecker.po: Attrs.inc.h +MallocSizeofChecker.po: Checkers.inc.h +MallocSizeofChecker.po: DeclNodes.inc.h +MallocSizeofChecker.po: DiagnosticCommonKinds.inc.h +MallocSizeofChecker.po: StmtNodes.inc.h +NSAutoreleasePoolChecker.o: AttrList.inc.h +NSAutoreleasePoolChecker.o: Attrs.inc.h +NSAutoreleasePoolChecker.o: Checkers.inc.h +NSAutoreleasePoolChecker.o: DeclNodes.inc.h +NSAutoreleasePoolChecker.o: DiagnosticCommonKinds.inc.h +NSAutoreleasePoolChecker.o: StmtNodes.inc.h +NSAutoreleasePoolChecker.po: AttrList.inc.h +NSAutoreleasePoolChecker.po: Attrs.inc.h +NSAutoreleasePoolChecker.po: Checkers.inc.h +NSAutoreleasePoolChecker.po: DeclNodes.inc.h +NSAutoreleasePoolChecker.po: DiagnosticCommonKinds.inc.h +NSAutoreleasePoolChecker.po: StmtNodes.inc.h +NSErrorChecker.o: AttrList.inc.h +NSErrorChecker.o: Attrs.inc.h +NSErrorChecker.o: Checkers.inc.h +NSErrorChecker.o: DeclNodes.inc.h +NSErrorChecker.o: DiagnosticCommonKinds.inc.h +NSErrorChecker.o: StmtNodes.inc.h +NSErrorChecker.po: AttrList.inc.h +NSErrorChecker.po: Attrs.inc.h +NSErrorChecker.po: Checkers.inc.h +NSErrorChecker.po: DeclNodes.inc.h +NSErrorChecker.po: DiagnosticCommonKinds.inc.h +NSErrorChecker.po: StmtNodes.inc.h +NoReturnFunctionChecker.o: AttrList.inc.h +NoReturnFunctionChecker.o: Attrs.inc.h +NoReturnFunctionChecker.o: Checkers.inc.h +NoReturnFunctionChecker.o: DeclNodes.inc.h +NoReturnFunctionChecker.o: DiagnosticCommonKinds.inc.h +NoReturnFunctionChecker.o: StmtNodes.inc.h +NoReturnFunctionChecker.po: AttrList.inc.h +NoReturnFunctionChecker.po: Attrs.inc.h +NoReturnFunctionChecker.po: Checkers.inc.h +NoReturnFunctionChecker.po: DeclNodes.inc.h +NoReturnFunctionChecker.po: DiagnosticCommonKinds.inc.h +NoReturnFunctionChecker.po: StmtNodes.inc.h +OSAtomicChecker.o: AttrList.inc.h +OSAtomicChecker.o: Attrs.inc.h +OSAtomicChecker.o: Checkers.inc.h +OSAtomicChecker.o: DeclNodes.inc.h +OSAtomicChecker.o: DiagnosticCommonKinds.inc.h +OSAtomicChecker.o: StmtNodes.inc.h +OSAtomicChecker.po: AttrList.inc.h +OSAtomicChecker.po: Attrs.inc.h +OSAtomicChecker.po: Checkers.inc.h +OSAtomicChecker.po: DeclNodes.inc.h +OSAtomicChecker.po: DiagnosticCommonKinds.inc.h +OSAtomicChecker.po: StmtNodes.inc.h +ObjCAtSyncChecker.o: AttrList.inc.h +ObjCAtSyncChecker.o: Attrs.inc.h +ObjCAtSyncChecker.o: Checkers.inc.h +ObjCAtSyncChecker.o: DeclNodes.inc.h +ObjCAtSyncChecker.o: DiagnosticCommonKinds.inc.h +ObjCAtSyncChecker.o: StmtNodes.inc.h +ObjCAtSyncChecker.po: AttrList.inc.h +ObjCAtSyncChecker.po: Attrs.inc.h +ObjCAtSyncChecker.po: Checkers.inc.h +ObjCAtSyncChecker.po: DeclNodes.inc.h +ObjCAtSyncChecker.po: DiagnosticCommonKinds.inc.h +ObjCAtSyncChecker.po: StmtNodes.inc.h +ObjCContainersASTChecker.o: AttrList.inc.h +ObjCContainersASTChecker.o: Attrs.inc.h +ObjCContainersASTChecker.o: Checkers.inc.h +ObjCContainersASTChecker.o: DeclNodes.inc.h +ObjCContainersASTChecker.o: DiagnosticCommonKinds.inc.h +ObjCContainersASTChecker.o: StmtNodes.inc.h +ObjCContainersASTChecker.po: AttrList.inc.h +ObjCContainersASTChecker.po: Attrs.inc.h +ObjCContainersASTChecker.po: Checkers.inc.h +ObjCContainersASTChecker.po: DeclNodes.inc.h +ObjCContainersASTChecker.po: DiagnosticCommonKinds.inc.h +ObjCContainersASTChecker.po: StmtNodes.inc.h +ObjCContainersChecker.o: AttrList.inc.h +ObjCContainersChecker.o: Attrs.inc.h +ObjCContainersChecker.o: Checkers.inc.h +ObjCContainersChecker.o: DeclNodes.inc.h +ObjCContainersChecker.o: DiagnosticCommonKinds.inc.h +ObjCContainersChecker.o: StmtNodes.inc.h +ObjCContainersChecker.po: AttrList.inc.h +ObjCContainersChecker.po: Attrs.inc.h +ObjCContainersChecker.po: Checkers.inc.h +ObjCContainersChecker.po: DeclNodes.inc.h +ObjCContainersChecker.po: DiagnosticCommonKinds.inc.h +ObjCContainersChecker.po: StmtNodes.inc.h +ObjCSelfInitChecker.o: AttrList.inc.h +ObjCSelfInitChecker.o: Attrs.inc.h +ObjCSelfInitChecker.o: Checkers.inc.h +ObjCSelfInitChecker.o: DeclNodes.inc.h +ObjCSelfInitChecker.o: DiagnosticCommonKinds.inc.h +ObjCSelfInitChecker.o: StmtNodes.inc.h +ObjCSelfInitChecker.po: AttrList.inc.h +ObjCSelfInitChecker.po: Attrs.inc.h +ObjCSelfInitChecker.po: Checkers.inc.h +ObjCSelfInitChecker.po: DeclNodes.inc.h +ObjCSelfInitChecker.po: DiagnosticCommonKinds.inc.h +ObjCSelfInitChecker.po: StmtNodes.inc.h +ObjCUnusedIVarsChecker.o: AttrList.inc.h +ObjCUnusedIVarsChecker.o: Attrs.inc.h +ObjCUnusedIVarsChecker.o: Checkers.inc.h +ObjCUnusedIVarsChecker.o: DeclNodes.inc.h +ObjCUnusedIVarsChecker.o: DiagnosticCommonKinds.inc.h +ObjCUnusedIVarsChecker.o: StmtNodes.inc.h +ObjCUnusedIVarsChecker.po: AttrList.inc.h +ObjCUnusedIVarsChecker.po: Attrs.inc.h +ObjCUnusedIVarsChecker.po: Checkers.inc.h +ObjCUnusedIVarsChecker.po: DeclNodes.inc.h +ObjCUnusedIVarsChecker.po: DiagnosticCommonKinds.inc.h +ObjCUnusedIVarsChecker.po: StmtNodes.inc.h +PointerArithChecker.o: AttrList.inc.h +PointerArithChecker.o: Attrs.inc.h +PointerArithChecker.o: Checkers.inc.h +PointerArithChecker.o: DeclNodes.inc.h +PointerArithChecker.o: DiagnosticCommonKinds.inc.h +PointerArithChecker.o: StmtNodes.inc.h +PointerArithChecker.po: AttrList.inc.h +PointerArithChecker.po: Attrs.inc.h +PointerArithChecker.po: Checkers.inc.h +PointerArithChecker.po: DeclNodes.inc.h +PointerArithChecker.po: DiagnosticCommonKinds.inc.h +PointerArithChecker.po: StmtNodes.inc.h +PointerSubChecker.o: AttrList.inc.h +PointerSubChecker.o: Attrs.inc.h +PointerSubChecker.o: Checkers.inc.h +PointerSubChecker.o: DeclNodes.inc.h +PointerSubChecker.o: DiagnosticCommonKinds.inc.h +PointerSubChecker.o: StmtNodes.inc.h +PointerSubChecker.po: AttrList.inc.h +PointerSubChecker.po: Attrs.inc.h +PointerSubChecker.po: Checkers.inc.h +PointerSubChecker.po: DeclNodes.inc.h +PointerSubChecker.po: DiagnosticCommonKinds.inc.h +PointerSubChecker.po: StmtNodes.inc.h +PthreadLockChecker.o: AttrList.inc.h +PthreadLockChecker.o: Attrs.inc.h +PthreadLockChecker.o: Checkers.inc.h +PthreadLockChecker.o: DeclNodes.inc.h +PthreadLockChecker.o: DiagnosticCommonKinds.inc.h +PthreadLockChecker.o: StmtNodes.inc.h +PthreadLockChecker.po: AttrList.inc.h +PthreadLockChecker.po: Attrs.inc.h +PthreadLockChecker.po: Checkers.inc.h +PthreadLockChecker.po: DeclNodes.inc.h +PthreadLockChecker.po: DiagnosticCommonKinds.inc.h +PthreadLockChecker.po: StmtNodes.inc.h +RetainCountChecker.o: AttrList.inc.h +RetainCountChecker.o: Attrs.inc.h +RetainCountChecker.o: Checkers.inc.h +RetainCountChecker.o: DeclNodes.inc.h +RetainCountChecker.o: DiagnosticCommonKinds.inc.h +RetainCountChecker.o: StmtNodes.inc.h +RetainCountChecker.po: AttrList.inc.h +RetainCountChecker.po: Attrs.inc.h +RetainCountChecker.po: Checkers.inc.h +RetainCountChecker.po: DeclNodes.inc.h +RetainCountChecker.po: DiagnosticCommonKinds.inc.h +RetainCountChecker.po: StmtNodes.inc.h +ReturnPointerRangeChecker.o: AttrList.inc.h +ReturnPointerRangeChecker.o: Attrs.inc.h +ReturnPointerRangeChecker.o: Checkers.inc.h +ReturnPointerRangeChecker.o: DeclNodes.inc.h +ReturnPointerRangeChecker.o: DiagnosticCommonKinds.inc.h +ReturnPointerRangeChecker.o: StmtNodes.inc.h +ReturnPointerRangeChecker.po: AttrList.inc.h +ReturnPointerRangeChecker.po: Attrs.inc.h +ReturnPointerRangeChecker.po: Checkers.inc.h +ReturnPointerRangeChecker.po: DeclNodes.inc.h +ReturnPointerRangeChecker.po: DiagnosticCommonKinds.inc.h +ReturnPointerRangeChecker.po: StmtNodes.inc.h +ReturnUndefChecker.o: AttrList.inc.h +ReturnUndefChecker.o: Attrs.inc.h +ReturnUndefChecker.o: Checkers.inc.h +ReturnUndefChecker.o: DeclNodes.inc.h +ReturnUndefChecker.o: DiagnosticCommonKinds.inc.h +ReturnUndefChecker.o: StmtNodes.inc.h +ReturnUndefChecker.po: AttrList.inc.h +ReturnUndefChecker.po: Attrs.inc.h +ReturnUndefChecker.po: Checkers.inc.h +ReturnUndefChecker.po: DeclNodes.inc.h +ReturnUndefChecker.po: DiagnosticCommonKinds.inc.h +ReturnUndefChecker.po: StmtNodes.inc.h +StackAddrEscapeChecker.o: AttrList.inc.h +StackAddrEscapeChecker.o: Attrs.inc.h +StackAddrEscapeChecker.o: Checkers.inc.h +StackAddrEscapeChecker.o: DeclNodes.inc.h +StackAddrEscapeChecker.o: DiagnosticCommonKinds.inc.h +StackAddrEscapeChecker.o: StmtNodes.inc.h +StackAddrEscapeChecker.po: AttrList.inc.h +StackAddrEscapeChecker.po: Attrs.inc.h +StackAddrEscapeChecker.po: Checkers.inc.h +StackAddrEscapeChecker.po: DeclNodes.inc.h +StackAddrEscapeChecker.po: DiagnosticCommonKinds.inc.h +StackAddrEscapeChecker.po: StmtNodes.inc.h +StreamChecker.o: AttrList.inc.h +StreamChecker.o: Attrs.inc.h +StreamChecker.o: Checkers.inc.h +StreamChecker.o: DeclNodes.inc.h +StreamChecker.o: DiagnosticCommonKinds.inc.h +StreamChecker.o: StmtNodes.inc.h +StreamChecker.po: AttrList.inc.h +StreamChecker.po: Attrs.inc.h +StreamChecker.po: Checkers.inc.h +StreamChecker.po: DeclNodes.inc.h +StreamChecker.po: DiagnosticCommonKinds.inc.h +StreamChecker.po: StmtNodes.inc.h +TaintTesterChecker.o: AttrList.inc.h +TaintTesterChecker.o: Attrs.inc.h +TaintTesterChecker.o: Checkers.inc.h +TaintTesterChecker.o: DeclNodes.inc.h +TaintTesterChecker.o: DiagnosticCommonKinds.inc.h +TaintTesterChecker.o: StmtNodes.inc.h +TaintTesterChecker.po: AttrList.inc.h +TaintTesterChecker.po: Attrs.inc.h +TaintTesterChecker.po: Checkers.inc.h +TaintTesterChecker.po: DeclNodes.inc.h +TaintTesterChecker.po: DiagnosticCommonKinds.inc.h +TaintTesterChecker.po: StmtNodes.inc.h +UndefBranchChecker.o: AttrList.inc.h +UndefBranchChecker.o: Attrs.inc.h +UndefBranchChecker.o: Checkers.inc.h +UndefBranchChecker.o: DeclNodes.inc.h +UndefBranchChecker.o: DiagnosticCommonKinds.inc.h +UndefBranchChecker.o: StmtNodes.inc.h +UndefBranchChecker.po: AttrList.inc.h +UndefBranchChecker.po: Attrs.inc.h +UndefBranchChecker.po: Checkers.inc.h +UndefBranchChecker.po: DeclNodes.inc.h +UndefBranchChecker.po: DiagnosticCommonKinds.inc.h +UndefBranchChecker.po: StmtNodes.inc.h +UndefCapturedBlockVarChecker.o: AttrList.inc.h +UndefCapturedBlockVarChecker.o: Attrs.inc.h +UndefCapturedBlockVarChecker.o: Checkers.inc.h +UndefCapturedBlockVarChecker.o: DeclNodes.inc.h +UndefCapturedBlockVarChecker.o: DiagnosticCommonKinds.inc.h +UndefCapturedBlockVarChecker.o: StmtNodes.inc.h +UndefCapturedBlockVarChecker.po: AttrList.inc.h +UndefCapturedBlockVarChecker.po: Attrs.inc.h +UndefCapturedBlockVarChecker.po: Checkers.inc.h +UndefCapturedBlockVarChecker.po: DeclNodes.inc.h +UndefCapturedBlockVarChecker.po: DiagnosticCommonKinds.inc.h +UndefCapturedBlockVarChecker.po: StmtNodes.inc.h +UndefResultChecker.o: AttrList.inc.h +UndefResultChecker.o: Attrs.inc.h +UndefResultChecker.o: Checkers.inc.h +UndefResultChecker.o: DeclNodes.inc.h +UndefResultChecker.o: DiagnosticCommonKinds.inc.h +UndefResultChecker.o: StmtNodes.inc.h +UndefResultChecker.po: AttrList.inc.h +UndefResultChecker.po: Attrs.inc.h +UndefResultChecker.po: Checkers.inc.h +UndefResultChecker.po: DeclNodes.inc.h +UndefResultChecker.po: DiagnosticCommonKinds.inc.h +UndefResultChecker.po: StmtNodes.inc.h +UndefinedArraySubscriptChecker.o: AttrList.inc.h +UndefinedArraySubscriptChecker.o: Attrs.inc.h +UndefinedArraySubscriptChecker.o: Checkers.inc.h +UndefinedArraySubscriptChecker.o: DeclNodes.inc.h +UndefinedArraySubscriptChecker.o: DiagnosticCommonKinds.inc.h +UndefinedArraySubscriptChecker.o: StmtNodes.inc.h +UndefinedArraySubscriptChecker.po: AttrList.inc.h +UndefinedArraySubscriptChecker.po: Attrs.inc.h +UndefinedArraySubscriptChecker.po: Checkers.inc.h +UndefinedArraySubscriptChecker.po: DeclNodes.inc.h +UndefinedArraySubscriptChecker.po: DiagnosticCommonKinds.inc.h +UndefinedArraySubscriptChecker.po: StmtNodes.inc.h +UndefinedAssignmentChecker.o: AttrList.inc.h +UndefinedAssignmentChecker.o: Attrs.inc.h +UndefinedAssignmentChecker.o: Checkers.inc.h +UndefinedAssignmentChecker.o: DeclNodes.inc.h +UndefinedAssignmentChecker.o: DiagnosticCommonKinds.inc.h +UndefinedAssignmentChecker.o: StmtNodes.inc.h +UndefinedAssignmentChecker.po: AttrList.inc.h +UndefinedAssignmentChecker.po: Attrs.inc.h +UndefinedAssignmentChecker.po: Checkers.inc.h +UndefinedAssignmentChecker.po: DeclNodes.inc.h +UndefinedAssignmentChecker.po: DiagnosticCommonKinds.inc.h +UndefinedAssignmentChecker.po: StmtNodes.inc.h +UnixAPIChecker.o: AttrList.inc.h +UnixAPIChecker.o: Attrs.inc.h +UnixAPIChecker.o: Checkers.inc.h +UnixAPIChecker.o: DeclNodes.inc.h +UnixAPIChecker.o: DiagnosticCommonKinds.inc.h +UnixAPIChecker.o: StmtNodes.inc.h +UnixAPIChecker.po: AttrList.inc.h +UnixAPIChecker.po: Attrs.inc.h +UnixAPIChecker.po: Checkers.inc.h +UnixAPIChecker.po: DeclNodes.inc.h +UnixAPIChecker.po: DiagnosticCommonKinds.inc.h +UnixAPIChecker.po: StmtNodes.inc.h +UnreachableCodeChecker.o: AttrList.inc.h +UnreachableCodeChecker.o: Attrs.inc.h +UnreachableCodeChecker.o: Checkers.inc.h +UnreachableCodeChecker.o: DeclNodes.inc.h +UnreachableCodeChecker.o: DiagnosticCommonKinds.inc.h +UnreachableCodeChecker.o: StmtNodes.inc.h +UnreachableCodeChecker.po: AttrList.inc.h +UnreachableCodeChecker.po: Attrs.inc.h +UnreachableCodeChecker.po: Checkers.inc.h +UnreachableCodeChecker.po: DeclNodes.inc.h +UnreachableCodeChecker.po: DiagnosticCommonKinds.inc.h +UnreachableCodeChecker.po: StmtNodes.inc.h +VLASizeChecker.o: AttrList.inc.h +VLASizeChecker.o: Attrs.inc.h +VLASizeChecker.o: Checkers.inc.h +VLASizeChecker.o: DeclNodes.inc.h +VLASizeChecker.o: DiagnosticCommonKinds.inc.h +VLASizeChecker.o: StmtNodes.inc.h +VLASizeChecker.po: AttrList.inc.h +VLASizeChecker.po: Attrs.inc.h +VLASizeChecker.po: Checkers.inc.h +VLASizeChecker.po: DeclNodes.inc.h +VLASizeChecker.po: DiagnosticCommonKinds.inc.h +VLASizeChecker.po: StmtNodes.inc.h +VirtualCallChecker.o: AttrList.inc.h +VirtualCallChecker.o: Attrs.inc.h +VirtualCallChecker.o: Checkers.inc.h +VirtualCallChecker.o: DeclNodes.inc.h +VirtualCallChecker.o: DiagnosticCommonKinds.inc.h +VirtualCallChecker.o: StmtNodes.inc.h +VirtualCallChecker.po: AttrList.inc.h +VirtualCallChecker.po: Attrs.inc.h +VirtualCallChecker.po: Checkers.inc.h +VirtualCallChecker.po: DeclNodes.inc.h +VirtualCallChecker.po: DiagnosticCommonKinds.inc.h +VirtualCallChecker.po: StmtNodes.inc.h +.endif diff --git a/lib/clang/libclangstaticanalyzercore/Makefile.depend b/lib/clang/libclangstaticanalyzercore/Makefile.depend new file mode 100644 index 000000000000..846f7763bff5 --- /dev/null +++ b/lib/clang/libclangstaticanalyzercore/Makefile.depend @@ -0,0 +1,365 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +AnalysisManager.o: AttrList.inc.h +AnalysisManager.o: Attrs.inc.h +AnalysisManager.o: DeclNodes.inc.h +AnalysisManager.o: DiagnosticCommonKinds.inc.h +AnalysisManager.o: StmtNodes.inc.h +AnalysisManager.po: AttrList.inc.h +AnalysisManager.po: Attrs.inc.h +AnalysisManager.po: DeclNodes.inc.h +AnalysisManager.po: DiagnosticCommonKinds.inc.h +AnalysisManager.po: StmtNodes.inc.h +BasicConstraintManager.o: AttrList.inc.h +BasicConstraintManager.o: Attrs.inc.h +BasicConstraintManager.o: DeclNodes.inc.h +BasicConstraintManager.o: DiagnosticCommonKinds.inc.h +BasicConstraintManager.o: StmtNodes.inc.h +BasicConstraintManager.po: AttrList.inc.h +BasicConstraintManager.po: Attrs.inc.h +BasicConstraintManager.po: DeclNodes.inc.h +BasicConstraintManager.po: DiagnosticCommonKinds.inc.h +BasicConstraintManager.po: StmtNodes.inc.h +BasicValueFactory.o: AttrList.inc.h +BasicValueFactory.o: Attrs.inc.h +BasicValueFactory.o: DeclNodes.inc.h +BasicValueFactory.o: DiagnosticCommonKinds.inc.h +BasicValueFactory.o: StmtNodes.inc.h +BasicValueFactory.po: AttrList.inc.h +BasicValueFactory.po: Attrs.inc.h +BasicValueFactory.po: DeclNodes.inc.h +BasicValueFactory.po: DiagnosticCommonKinds.inc.h +BasicValueFactory.po: StmtNodes.inc.h +BugReporter.o: AttrList.inc.h +BugReporter.o: Attrs.inc.h +BugReporter.o: DeclNodes.inc.h +BugReporter.o: DiagnosticCommonKinds.inc.h +BugReporter.o: StmtNodes.inc.h +BugReporter.po: AttrList.inc.h +BugReporter.po: Attrs.inc.h +BugReporter.po: DeclNodes.inc.h +BugReporter.po: DiagnosticCommonKinds.inc.h +BugReporter.po: StmtNodes.inc.h +BugReporterVisitors.o: AttrList.inc.h +BugReporterVisitors.o: Attrs.inc.h +BugReporterVisitors.o: DeclNodes.inc.h +BugReporterVisitors.o: DiagnosticCommonKinds.inc.h +BugReporterVisitors.o: StmtNodes.inc.h +BugReporterVisitors.po: AttrList.inc.h +BugReporterVisitors.po: Attrs.inc.h +BugReporterVisitors.po: DeclNodes.inc.h +BugReporterVisitors.po: DiagnosticCommonKinds.inc.h +BugReporterVisitors.po: StmtNodes.inc.h +Checker.o: AttrList.inc.h +Checker.o: Attrs.inc.h +Checker.o: DeclNodes.inc.h +Checker.o: DiagnosticCommonKinds.inc.h +Checker.o: StmtNodes.inc.h +Checker.po: AttrList.inc.h +Checker.po: Attrs.inc.h +Checker.po: DeclNodes.inc.h +Checker.po: DiagnosticCommonKinds.inc.h +Checker.po: StmtNodes.inc.h +CheckerContext.o: AttrList.inc.h +CheckerContext.o: Attrs.inc.h +CheckerContext.o: DeclNodes.inc.h +CheckerContext.o: DiagnosticCommonKinds.inc.h +CheckerContext.o: StmtNodes.inc.h +CheckerContext.po: AttrList.inc.h +CheckerContext.po: Attrs.inc.h +CheckerContext.po: DeclNodes.inc.h +CheckerContext.po: DiagnosticCommonKinds.inc.h +CheckerContext.po: StmtNodes.inc.h +CheckerHelpers.o: AttrList.inc.h +CheckerHelpers.o: Attrs.inc.h +CheckerHelpers.o: DeclNodes.inc.h +CheckerHelpers.o: DiagnosticCommonKinds.inc.h +CheckerHelpers.o: StmtNodes.inc.h +CheckerHelpers.po: AttrList.inc.h +CheckerHelpers.po: Attrs.inc.h +CheckerHelpers.po: DeclNodes.inc.h +CheckerHelpers.po: DiagnosticCommonKinds.inc.h +CheckerHelpers.po: StmtNodes.inc.h +CheckerManager.o: AttrList.inc.h +CheckerManager.o: Attrs.inc.h +CheckerManager.o: DeclNodes.inc.h +CheckerManager.o: DiagnosticCommonKinds.inc.h +CheckerManager.o: StmtNodes.inc.h +CheckerManager.po: AttrList.inc.h +CheckerManager.po: Attrs.inc.h +CheckerManager.po: DeclNodes.inc.h +CheckerManager.po: DiagnosticCommonKinds.inc.h +CheckerManager.po: StmtNodes.inc.h +CheckerRegistry.o: AttrList.inc.h +CheckerRegistry.o: Attrs.inc.h +CheckerRegistry.o: DeclNodes.inc.h +CheckerRegistry.o: DiagnosticCommonKinds.inc.h +CheckerRegistry.o: StmtNodes.inc.h +CheckerRegistry.po: AttrList.inc.h +CheckerRegistry.po: Attrs.inc.h +CheckerRegistry.po: DeclNodes.inc.h +CheckerRegistry.po: DiagnosticCommonKinds.inc.h +CheckerRegistry.po: StmtNodes.inc.h +CoreEngine.o: AttrList.inc.h +CoreEngine.o: Attrs.inc.h +CoreEngine.o: DeclNodes.inc.h +CoreEngine.o: DiagnosticCommonKinds.inc.h +CoreEngine.o: StmtNodes.inc.h +CoreEngine.po: AttrList.inc.h +CoreEngine.po: Attrs.inc.h +CoreEngine.po: DeclNodes.inc.h +CoreEngine.po: DiagnosticCommonKinds.inc.h +CoreEngine.po: StmtNodes.inc.h +Environment.o: AttrList.inc.h +Environment.o: Attrs.inc.h +Environment.o: DeclNodes.inc.h +Environment.o: DiagnosticCommonKinds.inc.h +Environment.o: StmtNodes.inc.h +Environment.po: AttrList.inc.h +Environment.po: Attrs.inc.h +Environment.po: DeclNodes.inc.h +Environment.po: DiagnosticCommonKinds.inc.h +Environment.po: StmtNodes.inc.h +ExplodedGraph.o: AttrList.inc.h +ExplodedGraph.o: Attrs.inc.h +ExplodedGraph.o: DeclNodes.inc.h +ExplodedGraph.o: DiagnosticCommonKinds.inc.h +ExplodedGraph.o: StmtNodes.inc.h +ExplodedGraph.po: AttrList.inc.h +ExplodedGraph.po: Attrs.inc.h +ExplodedGraph.po: DeclNodes.inc.h +ExplodedGraph.po: DiagnosticCommonKinds.inc.h +ExplodedGraph.po: StmtNodes.inc.h +ExprEngine.o: AttrList.inc.h +ExprEngine.o: Attrs.inc.h +ExprEngine.o: DeclNodes.inc.h +ExprEngine.o: DiagnosticCommonKinds.inc.h +ExprEngine.o: StmtNodes.inc.h +ExprEngine.po: AttrList.inc.h +ExprEngine.po: Attrs.inc.h +ExprEngine.po: DeclNodes.inc.h +ExprEngine.po: DiagnosticCommonKinds.inc.h +ExprEngine.po: StmtNodes.inc.h +ExprEngineC.o: AttrList.inc.h +ExprEngineC.o: Attrs.inc.h +ExprEngineC.o: DeclNodes.inc.h +ExprEngineC.o: DiagnosticCommonKinds.inc.h +ExprEngineC.o: StmtNodes.inc.h +ExprEngineC.po: AttrList.inc.h +ExprEngineC.po: Attrs.inc.h +ExprEngineC.po: DeclNodes.inc.h +ExprEngineC.po: DiagnosticCommonKinds.inc.h +ExprEngineC.po: StmtNodes.inc.h +ExprEngineCXX.o: AttrList.inc.h +ExprEngineCXX.o: Attrs.inc.h +ExprEngineCXX.o: DeclNodes.inc.h +ExprEngineCXX.o: DiagnosticCommonKinds.inc.h +ExprEngineCXX.o: StmtNodes.inc.h +ExprEngineCXX.po: AttrList.inc.h +ExprEngineCXX.po: Attrs.inc.h +ExprEngineCXX.po: DeclNodes.inc.h +ExprEngineCXX.po: DiagnosticCommonKinds.inc.h +ExprEngineCXX.po: StmtNodes.inc.h +ExprEngineCallAndReturn.o: AttrList.inc.h +ExprEngineCallAndReturn.o: Attrs.inc.h +ExprEngineCallAndReturn.o: DeclNodes.inc.h +ExprEngineCallAndReturn.o: DiagnosticCommonKinds.inc.h +ExprEngineCallAndReturn.o: StmtNodes.inc.h +ExprEngineCallAndReturn.po: AttrList.inc.h +ExprEngineCallAndReturn.po: Attrs.inc.h +ExprEngineCallAndReturn.po: DeclNodes.inc.h +ExprEngineCallAndReturn.po: DiagnosticCommonKinds.inc.h +ExprEngineCallAndReturn.po: StmtNodes.inc.h +ExprEngineObjC.o: AttrList.inc.h +ExprEngineObjC.o: Attrs.inc.h +ExprEngineObjC.o: DeclNodes.inc.h +ExprEngineObjC.o: DiagnosticCommonKinds.inc.h +ExprEngineObjC.o: StmtNodes.inc.h +ExprEngineObjC.po: AttrList.inc.h +ExprEngineObjC.po: Attrs.inc.h +ExprEngineObjC.po: DeclNodes.inc.h +ExprEngineObjC.po: DiagnosticCommonKinds.inc.h +ExprEngineObjC.po: StmtNodes.inc.h +FunctionSummary.o: AttrList.inc.h +FunctionSummary.o: Attrs.inc.h +FunctionSummary.o: DeclNodes.inc.h +FunctionSummary.o: DiagnosticCommonKinds.inc.h +FunctionSummary.po: AttrList.inc.h +FunctionSummary.po: Attrs.inc.h +FunctionSummary.po: DeclNodes.inc.h +FunctionSummary.po: DiagnosticCommonKinds.inc.h +HTMLDiagnostics.o: AttrList.inc.h +HTMLDiagnostics.o: Attrs.inc.h +HTMLDiagnostics.o: DeclNodes.inc.h +HTMLDiagnostics.o: DiagnosticCommonKinds.inc.h +HTMLDiagnostics.o: StmtNodes.inc.h +HTMLDiagnostics.po: AttrList.inc.h +HTMLDiagnostics.po: Attrs.inc.h +HTMLDiagnostics.po: DeclNodes.inc.h +HTMLDiagnostics.po: DiagnosticCommonKinds.inc.h +HTMLDiagnostics.po: StmtNodes.inc.h +MemRegion.o: AttrList.inc.h +MemRegion.o: Attrs.inc.h +MemRegion.o: DeclNodes.inc.h +MemRegion.o: DiagnosticCommonKinds.inc.h +MemRegion.o: StmtNodes.inc.h +MemRegion.po: AttrList.inc.h +MemRegion.po: Attrs.inc.h +MemRegion.po: DeclNodes.inc.h +MemRegion.po: DiagnosticCommonKinds.inc.h +MemRegion.po: StmtNodes.inc.h +ObjCMessage.o: AttrList.inc.h +ObjCMessage.o: Attrs.inc.h +ObjCMessage.o: DeclNodes.inc.h +ObjCMessage.o: DiagnosticCommonKinds.inc.h +ObjCMessage.o: StmtNodes.inc.h +ObjCMessage.po: AttrList.inc.h +ObjCMessage.po: Attrs.inc.h +ObjCMessage.po: DeclNodes.inc.h +ObjCMessage.po: DiagnosticCommonKinds.inc.h +ObjCMessage.po: StmtNodes.inc.h +PathDiagnostic.o: AttrList.inc.h +PathDiagnostic.o: Attrs.inc.h +PathDiagnostic.o: DeclNodes.inc.h +PathDiagnostic.o: DiagnosticCommonKinds.inc.h +PathDiagnostic.o: StmtNodes.inc.h +PathDiagnostic.po: AttrList.inc.h +PathDiagnostic.po: Attrs.inc.h +PathDiagnostic.po: DeclNodes.inc.h +PathDiagnostic.po: DiagnosticCommonKinds.inc.h +PathDiagnostic.po: StmtNodes.inc.h +PlistDiagnostics.o: AttrList.inc.h +PlistDiagnostics.o: Attrs.inc.h +PlistDiagnostics.o: DeclNodes.inc.h +PlistDiagnostics.o: DiagnosticCommonKinds.inc.h +PlistDiagnostics.o: StmtNodes.inc.h +PlistDiagnostics.po: AttrList.inc.h +PlistDiagnostics.po: Attrs.inc.h +PlistDiagnostics.po: DeclNodes.inc.h +PlistDiagnostics.po: DiagnosticCommonKinds.inc.h +PlistDiagnostics.po: StmtNodes.inc.h +ProgramState.o: AttrList.inc.h +ProgramState.o: Attrs.inc.h +ProgramState.o: DeclNodes.inc.h +ProgramState.o: DiagnosticCommonKinds.inc.h +ProgramState.o: StmtNodes.inc.h +ProgramState.po: AttrList.inc.h +ProgramState.po: Attrs.inc.h +ProgramState.po: DeclNodes.inc.h +ProgramState.po: DiagnosticCommonKinds.inc.h +ProgramState.po: StmtNodes.inc.h +RangeConstraintManager.o: AttrList.inc.h +RangeConstraintManager.o: Attrs.inc.h +RangeConstraintManager.o: DeclNodes.inc.h +RangeConstraintManager.o: DiagnosticCommonKinds.inc.h +RangeConstraintManager.o: StmtNodes.inc.h +RangeConstraintManager.po: AttrList.inc.h +RangeConstraintManager.po: Attrs.inc.h +RangeConstraintManager.po: DeclNodes.inc.h +RangeConstraintManager.po: DiagnosticCommonKinds.inc.h +RangeConstraintManager.po: StmtNodes.inc.h +RegionStore.o: AttrList.inc.h +RegionStore.o: Attrs.inc.h +RegionStore.o: DeclNodes.inc.h +RegionStore.o: DiagnosticCommonKinds.inc.h +RegionStore.o: StmtNodes.inc.h +RegionStore.po: AttrList.inc.h +RegionStore.po: Attrs.inc.h +RegionStore.po: DeclNodes.inc.h +RegionStore.po: DiagnosticCommonKinds.inc.h +RegionStore.po: StmtNodes.inc.h +SValBuilder.o: AttrList.inc.h +SValBuilder.o: Attrs.inc.h +SValBuilder.o: DeclNodes.inc.h +SValBuilder.o: DiagnosticCommonKinds.inc.h +SValBuilder.o: StmtNodes.inc.h +SValBuilder.po: AttrList.inc.h +SValBuilder.po: Attrs.inc.h +SValBuilder.po: DeclNodes.inc.h +SValBuilder.po: DiagnosticCommonKinds.inc.h +SValBuilder.po: StmtNodes.inc.h +SVals.o: AttrList.inc.h +SVals.o: Attrs.inc.h +SVals.o: DeclNodes.inc.h +SVals.o: DiagnosticCommonKinds.inc.h +SVals.o: StmtNodes.inc.h +SVals.po: AttrList.inc.h +SVals.po: Attrs.inc.h +SVals.po: DeclNodes.inc.h +SVals.po: DiagnosticCommonKinds.inc.h +SVals.po: StmtNodes.inc.h +SimpleConstraintManager.o: AttrList.inc.h +SimpleConstraintManager.o: Attrs.inc.h +SimpleConstraintManager.o: DeclNodes.inc.h +SimpleConstraintManager.o: DiagnosticCommonKinds.inc.h +SimpleConstraintManager.o: StmtNodes.inc.h +SimpleConstraintManager.po: AttrList.inc.h +SimpleConstraintManager.po: Attrs.inc.h +SimpleConstraintManager.po: DeclNodes.inc.h +SimpleConstraintManager.po: DiagnosticCommonKinds.inc.h +SimpleConstraintManager.po: StmtNodes.inc.h +SimpleSValBuilder.o: AttrList.inc.h +SimpleSValBuilder.o: Attrs.inc.h +SimpleSValBuilder.o: DeclNodes.inc.h +SimpleSValBuilder.o: DiagnosticCommonKinds.inc.h +SimpleSValBuilder.o: StmtNodes.inc.h +SimpleSValBuilder.po: AttrList.inc.h +SimpleSValBuilder.po: Attrs.inc.h +SimpleSValBuilder.po: DeclNodes.inc.h +SimpleSValBuilder.po: DiagnosticCommonKinds.inc.h +SimpleSValBuilder.po: StmtNodes.inc.h +Store.o: AttrList.inc.h +Store.o: Attrs.inc.h +Store.o: DeclNodes.inc.h +Store.o: DiagnosticCommonKinds.inc.h +Store.o: StmtNodes.inc.h +Store.po: AttrList.inc.h +Store.po: Attrs.inc.h +Store.po: DeclNodes.inc.h +Store.po: DiagnosticCommonKinds.inc.h +Store.po: StmtNodes.inc.h +SubEngine.o: AttrList.inc.h +SubEngine.o: Attrs.inc.h +SubEngine.o: DeclNodes.inc.h +SubEngine.o: DiagnosticCommonKinds.inc.h +SubEngine.o: StmtNodes.inc.h +SubEngine.po: AttrList.inc.h +SubEngine.po: Attrs.inc.h +SubEngine.po: DeclNodes.inc.h +SubEngine.po: DiagnosticCommonKinds.inc.h +SubEngine.po: StmtNodes.inc.h +SymbolManager.o: AttrList.inc.h +SymbolManager.o: Attrs.inc.h +SymbolManager.o: DeclNodes.inc.h +SymbolManager.o: DiagnosticCommonKinds.inc.h +SymbolManager.o: StmtNodes.inc.h +SymbolManager.po: AttrList.inc.h +SymbolManager.po: Attrs.inc.h +SymbolManager.po: DeclNodes.inc.h +SymbolManager.po: DiagnosticCommonKinds.inc.h +SymbolManager.po: StmtNodes.inc.h +TextPathDiagnostics.o: AttrList.inc.h +TextPathDiagnostics.o: Attrs.inc.h +TextPathDiagnostics.o: DeclNodes.inc.h +TextPathDiagnostics.o: DiagnosticCommonKinds.inc.h +TextPathDiagnostics.o: StmtNodes.inc.h +TextPathDiagnostics.po: AttrList.inc.h +TextPathDiagnostics.po: Attrs.inc.h +TextPathDiagnostics.po: DeclNodes.inc.h +TextPathDiagnostics.po: DiagnosticCommonKinds.inc.h +TextPathDiagnostics.po: StmtNodes.inc.h +.endif diff --git a/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend b/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend new file mode 100644 index 000000000000..bcae1efe21a2 --- /dev/null +++ b/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend @@ -0,0 +1,41 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +AnalysisConsumer.o: AttrList.inc.h +AnalysisConsumer.o: Attrs.inc.h +AnalysisConsumer.o: DeclNodes.inc.h +AnalysisConsumer.o: DiagnosticCommonKinds.inc.h +AnalysisConsumer.o: StmtNodes.inc.h +AnalysisConsumer.po: AttrList.inc.h +AnalysisConsumer.po: Attrs.inc.h +AnalysisConsumer.po: DeclNodes.inc.h +AnalysisConsumer.po: DiagnosticCommonKinds.inc.h +AnalysisConsumer.po: StmtNodes.inc.h +CheckerRegistration.o: AttrList.inc.h +CheckerRegistration.o: Attrs.inc.h +CheckerRegistration.o: DeclNodes.inc.h +CheckerRegistration.o: DiagnosticCommonKinds.inc.h +CheckerRegistration.o: DiagnosticFrontendKinds.inc.h +CheckerRegistration.o: StmtNodes.inc.h +CheckerRegistration.po: AttrList.inc.h +CheckerRegistration.po: Attrs.inc.h +CheckerRegistration.po: DeclNodes.inc.h +CheckerRegistration.po: DiagnosticCommonKinds.inc.h +CheckerRegistration.po: DiagnosticFrontendKinds.inc.h +CheckerRegistration.po: StmtNodes.inc.h +FrontendActions.o: DiagnosticCommonKinds.inc.h +FrontendActions.po: DiagnosticCommonKinds.inc.h +.endif diff --git a/lib/clang/libllvmanalysis/Makefile.depend b/lib/clang/libllvmanalysis/Makefile.depend new file mode 100644 index 000000000000..be777d8409c9 --- /dev/null +++ b/lib/clang/libllvmanalysis/Makefile.depend @@ -0,0 +1,47 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +AliasAnalysis.o: Intrinsics.inc.h +AliasAnalysis.po: Intrinsics.inc.h +AliasSetTracker.o: Intrinsics.inc.h +AliasSetTracker.po: Intrinsics.inc.h +BasicAliasAnalysis.o: Intrinsics.inc.h +BasicAliasAnalysis.po: Intrinsics.inc.h +CodeMetrics.o: Intrinsics.inc.h +CodeMetrics.po: Intrinsics.inc.h +ConstantFolding.o: Intrinsics.inc.h +ConstantFolding.po: Intrinsics.inc.h +DIBuilder.o: Intrinsics.inc.h +DIBuilder.po: Intrinsics.inc.h +DbgInfoPrinter.o: Intrinsics.inc.h +DbgInfoPrinter.po: Intrinsics.inc.h +DebugInfo.o: Intrinsics.inc.h +DebugInfo.po: Intrinsics.inc.h +InlineCost.o: Intrinsics.inc.h +InlineCost.po: Intrinsics.inc.h +LazyValueInfo.o: Intrinsics.inc.h +LazyValueInfo.po: Intrinsics.inc.h +Lint.o: Intrinsics.inc.h +Lint.po: Intrinsics.inc.h +Loads.o: Intrinsics.inc.h +Loads.po: Intrinsics.inc.h +MemoryDependenceAnalysis.o: Intrinsics.inc.h +MemoryDependenceAnalysis.po: Intrinsics.inc.h +ScalarEvolutionExpander.o: Intrinsics.inc.h +ScalarEvolutionExpander.po: Intrinsics.inc.h +ValueTracking.o: Intrinsics.inc.h +ValueTracking.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvmarchive/Makefile.depend b/lib/clang/libllvmarchive/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmarchive/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmarmasmparser/Makefile.depend b/lib/clang/libllvmarmasmparser/Makefile.depend new file mode 100644 index 000000000000..d4e4af4fd790 --- /dev/null +++ b/lib/clang/libllvmarmasmparser/Makefile.depend @@ -0,0 +1,31 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ARMAsmLexer.o: ARMGenInstrInfo.inc.h +ARMAsmLexer.o: ARMGenRegisterInfo.inc.h +ARMAsmLexer.o: ARMGenSubtargetInfo.inc.h +ARMAsmLexer.po: ARMGenInstrInfo.inc.h +ARMAsmLexer.po: ARMGenRegisterInfo.inc.h +ARMAsmLexer.po: ARMGenSubtargetInfo.inc.h +ARMAsmParser.o: ARMGenAsmMatcher.inc.h +ARMAsmParser.o: ARMGenInstrInfo.inc.h +ARMAsmParser.o: ARMGenRegisterInfo.inc.h +ARMAsmParser.o: ARMGenSubtargetInfo.inc.h +ARMAsmParser.po: ARMGenAsmMatcher.inc.h +ARMAsmParser.po: ARMGenInstrInfo.inc.h +ARMAsmParser.po: ARMGenRegisterInfo.inc.h +ARMAsmParser.po: ARMGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmarmcodegen/Makefile.depend b/lib/clang/libllvmarmcodegen/Makefile.depend new file mode 100644 index 000000000000..abc1e04e5be4 --- /dev/null +++ b/lib/clang/libllvmarmcodegen/Makefile.depend @@ -0,0 +1,209 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ARMAsmPrinter.o: ARMGenInstrInfo.inc.h +ARMAsmPrinter.o: ARMGenMCPseudoLowering.inc.h +ARMAsmPrinter.o: ARMGenRegisterInfo.inc.h +ARMAsmPrinter.o: ARMGenSubtargetInfo.inc.h +ARMAsmPrinter.po: ARMGenInstrInfo.inc.h +ARMAsmPrinter.po: ARMGenMCPseudoLowering.inc.h +ARMAsmPrinter.po: ARMGenRegisterInfo.inc.h +ARMAsmPrinter.po: ARMGenSubtargetInfo.inc.h +ARMBaseInstrInfo.o: ARMGenInstrInfo.inc.h +ARMBaseInstrInfo.o: ARMGenRegisterInfo.inc.h +ARMBaseInstrInfo.o: ARMGenSubtargetInfo.inc.h +ARMBaseInstrInfo.po: ARMGenInstrInfo.inc.h +ARMBaseInstrInfo.po: ARMGenRegisterInfo.inc.h +ARMBaseInstrInfo.po: ARMGenSubtargetInfo.inc.h +ARMBaseRegisterInfo.o: ARMGenInstrInfo.inc.h +ARMBaseRegisterInfo.o: ARMGenRegisterInfo.inc.h +ARMBaseRegisterInfo.o: ARMGenSubtargetInfo.inc.h +ARMBaseRegisterInfo.po: ARMGenInstrInfo.inc.h +ARMBaseRegisterInfo.po: ARMGenRegisterInfo.inc.h +ARMBaseRegisterInfo.po: ARMGenSubtargetInfo.inc.h +ARMCodeEmitter.o: ARMGenCodeEmitter.inc.h +ARMCodeEmitter.o: ARMGenInstrInfo.inc.h +ARMCodeEmitter.o: ARMGenRegisterInfo.inc.h +ARMCodeEmitter.o: ARMGenSubtargetInfo.inc.h +ARMCodeEmitter.po: ARMGenCodeEmitter.inc.h +ARMCodeEmitter.po: ARMGenInstrInfo.inc.h +ARMCodeEmitter.po: ARMGenRegisterInfo.inc.h +ARMCodeEmitter.po: ARMGenSubtargetInfo.inc.h +ARMConstantIslandPass.o: ARMGenInstrInfo.inc.h +ARMConstantIslandPass.o: ARMGenRegisterInfo.inc.h +ARMConstantIslandPass.o: ARMGenSubtargetInfo.inc.h +ARMConstantIslandPass.po: ARMGenInstrInfo.inc.h +ARMConstantIslandPass.po: ARMGenRegisterInfo.inc.h +ARMConstantIslandPass.po: ARMGenSubtargetInfo.inc.h +ARMExpandPseudoInsts.o: ARMGenInstrInfo.inc.h +ARMExpandPseudoInsts.o: ARMGenRegisterInfo.inc.h +ARMExpandPseudoInsts.o: ARMGenSubtargetInfo.inc.h +ARMExpandPseudoInsts.po: ARMGenInstrInfo.inc.h +ARMExpandPseudoInsts.po: ARMGenRegisterInfo.inc.h +ARMExpandPseudoInsts.po: ARMGenSubtargetInfo.inc.h +ARMFastISel.o: ARMGenCallingConv.inc.h +ARMFastISel.o: ARMGenFastISel.inc.h +ARMFastISel.o: ARMGenInstrInfo.inc.h +ARMFastISel.o: ARMGenRegisterInfo.inc.h +ARMFastISel.o: ARMGenSubtargetInfo.inc.h +ARMFastISel.o: Intrinsics.inc.h +ARMFastISel.po: ARMGenCallingConv.inc.h +ARMFastISel.po: ARMGenFastISel.inc.h +ARMFastISel.po: ARMGenInstrInfo.inc.h +ARMFastISel.po: ARMGenRegisterInfo.inc.h +ARMFastISel.po: ARMGenSubtargetInfo.inc.h +ARMFastISel.po: Intrinsics.inc.h +ARMFrameLowering.o: ARMGenInstrInfo.inc.h +ARMFrameLowering.o: ARMGenRegisterInfo.inc.h +ARMFrameLowering.o: ARMGenSubtargetInfo.inc.h +ARMFrameLowering.po: ARMGenInstrInfo.inc.h +ARMFrameLowering.po: ARMGenRegisterInfo.inc.h +ARMFrameLowering.po: ARMGenSubtargetInfo.inc.h +ARMHazardRecognizer.o: ARMGenInstrInfo.inc.h +ARMHazardRecognizer.o: ARMGenRegisterInfo.inc.h +ARMHazardRecognizer.o: ARMGenSubtargetInfo.inc.h +ARMHazardRecognizer.po: ARMGenInstrInfo.inc.h +ARMHazardRecognizer.po: ARMGenRegisterInfo.inc.h +ARMHazardRecognizer.po: ARMGenSubtargetInfo.inc.h +ARMISelDAGToDAG.o: ARMGenDAGISel.inc.h +ARMISelDAGToDAG.o: ARMGenInstrInfo.inc.h +ARMISelDAGToDAG.o: ARMGenRegisterInfo.inc.h +ARMISelDAGToDAG.o: ARMGenSubtargetInfo.inc.h +ARMISelDAGToDAG.o: Intrinsics.inc.h +ARMISelDAGToDAG.po: ARMGenDAGISel.inc.h +ARMISelDAGToDAG.po: ARMGenInstrInfo.inc.h +ARMISelDAGToDAG.po: ARMGenRegisterInfo.inc.h +ARMISelDAGToDAG.po: ARMGenSubtargetInfo.inc.h +ARMISelDAGToDAG.po: Intrinsics.inc.h +ARMISelLowering.o: ARMGenCallingConv.inc.h +ARMISelLowering.o: ARMGenInstrInfo.inc.h +ARMISelLowering.o: ARMGenRegisterInfo.inc.h +ARMISelLowering.o: ARMGenSubtargetInfo.inc.h +ARMISelLowering.o: Intrinsics.inc.h +ARMISelLowering.po: ARMGenCallingConv.inc.h +ARMISelLowering.po: ARMGenInstrInfo.inc.h +ARMISelLowering.po: ARMGenRegisterInfo.inc.h +ARMISelLowering.po: ARMGenSubtargetInfo.inc.h +ARMISelLowering.po: Intrinsics.inc.h +ARMInstrInfo.o: ARMGenInstrInfo.inc.h +ARMInstrInfo.o: ARMGenRegisterInfo.inc.h +ARMInstrInfo.o: ARMGenSubtargetInfo.inc.h +ARMInstrInfo.po: ARMGenInstrInfo.inc.h +ARMInstrInfo.po: ARMGenRegisterInfo.inc.h +ARMInstrInfo.po: ARMGenSubtargetInfo.inc.h +ARMJITInfo.o: ARMGenInstrInfo.inc.h +ARMJITInfo.o: ARMGenRegisterInfo.inc.h +ARMJITInfo.o: ARMGenSubtargetInfo.inc.h +ARMJITInfo.po: ARMGenInstrInfo.inc.h +ARMJITInfo.po: ARMGenRegisterInfo.inc.h +ARMJITInfo.po: ARMGenSubtargetInfo.inc.h +ARMLoadStoreOptimizer.o: ARMGenInstrInfo.inc.h +ARMLoadStoreOptimizer.o: ARMGenRegisterInfo.inc.h +ARMLoadStoreOptimizer.o: ARMGenSubtargetInfo.inc.h +ARMLoadStoreOptimizer.po: ARMGenInstrInfo.inc.h +ARMLoadStoreOptimizer.po: ARMGenRegisterInfo.inc.h +ARMLoadStoreOptimizer.po: ARMGenSubtargetInfo.inc.h +ARMMCInstLower.o: ARMGenInstrInfo.inc.h +ARMMCInstLower.o: ARMGenRegisterInfo.inc.h +ARMMCInstLower.o: ARMGenSubtargetInfo.inc.h +ARMMCInstLower.po: ARMGenInstrInfo.inc.h +ARMMCInstLower.po: ARMGenRegisterInfo.inc.h +ARMMCInstLower.po: ARMGenSubtargetInfo.inc.h +ARMMachineFunctionInfo.o: ARMGenInstrInfo.inc.h +ARMMachineFunctionInfo.o: ARMGenRegisterInfo.inc.h +ARMMachineFunctionInfo.o: ARMGenSubtargetInfo.inc.h +ARMMachineFunctionInfo.po: ARMGenInstrInfo.inc.h +ARMMachineFunctionInfo.po: ARMGenRegisterInfo.inc.h +ARMMachineFunctionInfo.po: ARMGenSubtargetInfo.inc.h +ARMRegisterInfo.o: ARMGenInstrInfo.inc.h +ARMRegisterInfo.o: ARMGenRegisterInfo.inc.h +ARMRegisterInfo.o: ARMGenSubtargetInfo.inc.h +ARMRegisterInfo.po: ARMGenInstrInfo.inc.h +ARMRegisterInfo.po: ARMGenRegisterInfo.inc.h +ARMRegisterInfo.po: ARMGenSubtargetInfo.inc.h +ARMSelectionDAGInfo.o: ARMGenInstrInfo.inc.h +ARMSelectionDAGInfo.o: ARMGenRegisterInfo.inc.h +ARMSelectionDAGInfo.o: ARMGenSubtargetInfo.inc.h +ARMSelectionDAGInfo.po: ARMGenInstrInfo.inc.h +ARMSelectionDAGInfo.po: ARMGenRegisterInfo.inc.h +ARMSelectionDAGInfo.po: ARMGenSubtargetInfo.inc.h +ARMSubtarget.o: ARMGenInstrInfo.inc.h +ARMSubtarget.o: ARMGenRegisterInfo.inc.h +ARMSubtarget.o: ARMGenSubtargetInfo.inc.h +ARMSubtarget.po: ARMGenInstrInfo.inc.h +ARMSubtarget.po: ARMGenRegisterInfo.inc.h +ARMSubtarget.po: ARMGenSubtargetInfo.inc.h +ARMTargetMachine.o: ARMGenInstrInfo.inc.h +ARMTargetMachine.o: ARMGenRegisterInfo.inc.h +ARMTargetMachine.o: ARMGenSubtargetInfo.inc.h +ARMTargetMachine.po: ARMGenInstrInfo.inc.h +ARMTargetMachine.po: ARMGenRegisterInfo.inc.h +ARMTargetMachine.po: ARMGenSubtargetInfo.inc.h +ARMTargetObjectFile.o: ARMGenInstrInfo.inc.h +ARMTargetObjectFile.o: ARMGenRegisterInfo.inc.h +ARMTargetObjectFile.o: ARMGenSubtargetInfo.inc.h +ARMTargetObjectFile.po: ARMGenInstrInfo.inc.h +ARMTargetObjectFile.po: ARMGenRegisterInfo.inc.h +ARMTargetObjectFile.po: ARMGenSubtargetInfo.inc.h +MLxExpansionPass.o: ARMGenInstrInfo.inc.h +MLxExpansionPass.o: ARMGenRegisterInfo.inc.h +MLxExpansionPass.o: ARMGenSubtargetInfo.inc.h +MLxExpansionPass.po: ARMGenInstrInfo.inc.h +MLxExpansionPass.po: ARMGenRegisterInfo.inc.h +MLxExpansionPass.po: ARMGenSubtargetInfo.inc.h +Thumb1FrameLowering.o: ARMGenInstrInfo.inc.h +Thumb1FrameLowering.o: ARMGenRegisterInfo.inc.h +Thumb1FrameLowering.o: ARMGenSubtargetInfo.inc.h +Thumb1FrameLowering.po: ARMGenInstrInfo.inc.h +Thumb1FrameLowering.po: ARMGenRegisterInfo.inc.h +Thumb1FrameLowering.po: ARMGenSubtargetInfo.inc.h +Thumb1InstrInfo.o: ARMGenInstrInfo.inc.h +Thumb1InstrInfo.o: ARMGenRegisterInfo.inc.h +Thumb1InstrInfo.o: ARMGenSubtargetInfo.inc.h +Thumb1InstrInfo.po: ARMGenInstrInfo.inc.h +Thumb1InstrInfo.po: ARMGenRegisterInfo.inc.h +Thumb1InstrInfo.po: ARMGenSubtargetInfo.inc.h +Thumb1RegisterInfo.o: ARMGenInstrInfo.inc.h +Thumb1RegisterInfo.o: ARMGenRegisterInfo.inc.h +Thumb1RegisterInfo.o: ARMGenSubtargetInfo.inc.h +Thumb1RegisterInfo.po: ARMGenInstrInfo.inc.h +Thumb1RegisterInfo.po: ARMGenRegisterInfo.inc.h +Thumb1RegisterInfo.po: ARMGenSubtargetInfo.inc.h +Thumb2ITBlockPass.o: ARMGenInstrInfo.inc.h +Thumb2ITBlockPass.o: ARMGenRegisterInfo.inc.h +Thumb2ITBlockPass.o: ARMGenSubtargetInfo.inc.h +Thumb2ITBlockPass.po: ARMGenInstrInfo.inc.h +Thumb2ITBlockPass.po: ARMGenRegisterInfo.inc.h +Thumb2ITBlockPass.po: ARMGenSubtargetInfo.inc.h +Thumb2InstrInfo.o: ARMGenInstrInfo.inc.h +Thumb2InstrInfo.o: ARMGenRegisterInfo.inc.h +Thumb2InstrInfo.o: ARMGenSubtargetInfo.inc.h +Thumb2InstrInfo.po: ARMGenInstrInfo.inc.h +Thumb2InstrInfo.po: ARMGenRegisterInfo.inc.h +Thumb2InstrInfo.po: ARMGenSubtargetInfo.inc.h +Thumb2RegisterInfo.o: ARMGenInstrInfo.inc.h +Thumb2RegisterInfo.o: ARMGenRegisterInfo.inc.h +Thumb2RegisterInfo.o: ARMGenSubtargetInfo.inc.h +Thumb2RegisterInfo.po: ARMGenInstrInfo.inc.h +Thumb2RegisterInfo.po: ARMGenRegisterInfo.inc.h +Thumb2RegisterInfo.po: ARMGenSubtargetInfo.inc.h +Thumb2SizeReduction.o: ARMGenInstrInfo.inc.h +Thumb2SizeReduction.o: ARMGenRegisterInfo.inc.h +Thumb2SizeReduction.o: ARMGenSubtargetInfo.inc.h +Thumb2SizeReduction.po: ARMGenInstrInfo.inc.h +Thumb2SizeReduction.po: ARMGenRegisterInfo.inc.h +Thumb2SizeReduction.po: ARMGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmarmdesc/Makefile.depend b/lib/clang/libllvmarmdesc/Makefile.depend new file mode 100644 index 000000000000..1f4c1657cb3e --- /dev/null +++ b/lib/clang/libllvmarmdesc/Makefile.depend @@ -0,0 +1,49 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ARMAsmBackend.o: ARMGenInstrInfo.inc.h +ARMAsmBackend.o: ARMGenRegisterInfo.inc.h +ARMAsmBackend.o: ARMGenSubtargetInfo.inc.h +ARMAsmBackend.po: ARMGenInstrInfo.inc.h +ARMAsmBackend.po: ARMGenRegisterInfo.inc.h +ARMAsmBackend.po: ARMGenSubtargetInfo.inc.h +ARMELFObjectWriter.o: ARMGenInstrInfo.inc.h +ARMELFObjectWriter.o: ARMGenRegisterInfo.inc.h +ARMELFObjectWriter.o: ARMGenSubtargetInfo.inc.h +ARMELFObjectWriter.po: ARMGenInstrInfo.inc.h +ARMELFObjectWriter.po: ARMGenRegisterInfo.inc.h +ARMELFObjectWriter.po: ARMGenSubtargetInfo.inc.h +ARMMCCodeEmitter.o: ARMGenInstrInfo.inc.h +ARMMCCodeEmitter.o: ARMGenMCCodeEmitter.inc.h +ARMMCCodeEmitter.o: ARMGenRegisterInfo.inc.h +ARMMCCodeEmitter.o: ARMGenSubtargetInfo.inc.h +ARMMCCodeEmitter.po: ARMGenInstrInfo.inc.h +ARMMCCodeEmitter.po: ARMGenMCCodeEmitter.inc.h +ARMMCCodeEmitter.po: ARMGenRegisterInfo.inc.h +ARMMCCodeEmitter.po: ARMGenSubtargetInfo.inc.h +ARMMCTargetDesc.o: ARMGenInstrInfo.inc.h +ARMMCTargetDesc.o: ARMGenRegisterInfo.inc.h +ARMMCTargetDesc.o: ARMGenSubtargetInfo.inc.h +ARMMCTargetDesc.po: ARMGenInstrInfo.inc.h +ARMMCTargetDesc.po: ARMGenRegisterInfo.inc.h +ARMMCTargetDesc.po: ARMGenSubtargetInfo.inc.h +ARMMachObjectWriter.o: ARMGenInstrInfo.inc.h +ARMMachObjectWriter.o: ARMGenRegisterInfo.inc.h +ARMMachObjectWriter.o: ARMGenSubtargetInfo.inc.h +ARMMachObjectWriter.po: ARMGenInstrInfo.inc.h +ARMMachObjectWriter.po: ARMGenRegisterInfo.inc.h +ARMMachObjectWriter.po: ARMGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmarmdisassembler/Makefile.depend b/lib/clang/libllvmarmdisassembler/Makefile.depend new file mode 100644 index 000000000000..0e7992868e3a --- /dev/null +++ b/lib/clang/libllvmarmdisassembler/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ARMDisassembler.o: ARMGenDisassemblerTables.inc.h +ARMDisassembler.o: ARMGenEDInfo.inc.h +ARMDisassembler.o: ARMGenInstrInfo.inc.h +ARMDisassembler.o: ARMGenRegisterInfo.inc.h +ARMDisassembler.o: ARMGenSubtargetInfo.inc.h +ARMDisassembler.po: ARMGenDisassemblerTables.inc.h +ARMDisassembler.po: ARMGenEDInfo.inc.h +ARMDisassembler.po: ARMGenInstrInfo.inc.h +ARMDisassembler.po: ARMGenRegisterInfo.inc.h +ARMDisassembler.po: ARMGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmarminfo/Makefile.depend b/lib/clang/libllvmarminfo/Makefile.depend new file mode 100644 index 000000000000..06b4fd9e981c --- /dev/null +++ b/lib/clang/libllvmarminfo/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ARMTargetInfo.o: ARMGenInstrInfo.inc.h +ARMTargetInfo.o: ARMGenRegisterInfo.inc.h +ARMTargetInfo.o: ARMGenSubtargetInfo.inc.h +ARMTargetInfo.po: ARMGenInstrInfo.inc.h +ARMTargetInfo.po: ARMGenRegisterInfo.inc.h +ARMTargetInfo.po: ARMGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmarminstprinter/Makefile.depend b/lib/clang/libllvmarminstprinter/Makefile.depend new file mode 100644 index 000000000000..9bcf0c7abc45 --- /dev/null +++ b/lib/clang/libllvmarminstprinter/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ARMInstPrinter.o: ARMGenAsmWriter.inc.h +ARMInstPrinter.o: ARMGenInstrInfo.inc.h +ARMInstPrinter.o: ARMGenRegisterInfo.inc.h +ARMInstPrinter.o: ARMGenSubtargetInfo.inc.h +ARMInstPrinter.po: ARMGenAsmWriter.inc.h +ARMInstPrinter.po: ARMGenInstrInfo.inc.h +ARMInstPrinter.po: ARMGenRegisterInfo.inc.h +ARMInstPrinter.po: ARMGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmasmparser/Makefile.depend b/lib/clang/libllvmasmparser/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmasmparser/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmasmprinter/Makefile.depend b/lib/clang/libllvmasmprinter/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmasmprinter/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmbitreader/Makefile.depend b/lib/clang/libllvmbitreader/Makefile.depend new file mode 100644 index 000000000000..97f57a5f93f1 --- /dev/null +++ b/lib/clang/libllvmbitreader/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +BitcodeReader.o: Intrinsics.inc.h +BitcodeReader.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvmbitwriter/Makefile.depend b/lib/clang/libllvmbitwriter/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmbitwriter/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmcodegen/Makefile.depend b/lib/clang/libllvmcodegen/Makefile.depend new file mode 100644 index 000000000000..026d1de8e952 --- /dev/null +++ b/lib/clang/libllvmcodegen/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +Analysis.o: Intrinsics.inc.h +Analysis.po: Intrinsics.inc.h +DwarfEHPrepare.o: Intrinsics.inc.h +DwarfEHPrepare.po: Intrinsics.inc.h +GCStrategy.o: Intrinsics.inc.h +GCStrategy.po: Intrinsics.inc.h +IntrinsicLowering.o: Intrinsics.inc.h +IntrinsicLowering.po: Intrinsics.inc.h +LocalStackSlotAllocation.o: Intrinsics.inc.h +LocalStackSlotAllocation.po: Intrinsics.inc.h +ShadowStackGC.o: Intrinsics.inc.h +ShadowStackGC.po: Intrinsics.inc.h +SjLjEHPrepare.o: Intrinsics.inc.h +SjLjEHPrepare.po: Intrinsics.inc.h +StackProtector.o: Intrinsics.inc.h +StackProtector.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvmcore/Makefile.depend b/lib/clang/libllvmcore/Makefile.depend new file mode 100644 index 000000000000..cdb43737d781 --- /dev/null +++ b/lib/clang/libllvmcore/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +AsmWriter.o: Intrinsics.inc.h +AsmWriter.po: Intrinsics.inc.h +AutoUpgrade.o: Intrinsics.inc.h +AutoUpgrade.po: Intrinsics.inc.h +BasicBlock.o: Intrinsics.inc.h +BasicBlock.po: Intrinsics.inc.h +Core.o: Intrinsics.inc.h +Core.po: Intrinsics.inc.h +Function.o: Intrinsics.inc.h +Function.po: Intrinsics.inc.h +IRBuilder.o: Intrinsics.inc.h +IRBuilder.po: Intrinsics.inc.h +IntrinsicInst.o: Intrinsics.inc.h +IntrinsicInst.po: Intrinsics.inc.h +Verifier.o: Intrinsics.inc.h +Verifier.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvmdebuginfo/Makefile.depend b/lib/clang/libllvmdebuginfo/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmdebuginfo/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmexecutionengine/Makefile.depend b/lib/clang/libllvmexecutionengine/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmexecutionengine/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvminstcombine/Makefile.depend b/lib/clang/libllvminstcombine/Makefile.depend new file mode 100644 index 000000000000..27d7724f9a75 --- /dev/null +++ b/lib/clang/libllvminstcombine/Makefile.depend @@ -0,0 +1,43 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +InstCombineAddSub.o: Intrinsics.inc.h +InstCombineAddSub.po: Intrinsics.inc.h +InstCombineAndOrXor.o: Intrinsics.inc.h +InstCombineAndOrXor.po: Intrinsics.inc.h +InstCombineCalls.o: Intrinsics.inc.h +InstCombineCalls.po: Intrinsics.inc.h +InstCombineCasts.o: Intrinsics.inc.h +InstCombineCasts.po: Intrinsics.inc.h +InstCombineCompares.o: Intrinsics.inc.h +InstCombineCompares.po: Intrinsics.inc.h +InstCombineLoadStoreAlloca.o: Intrinsics.inc.h +InstCombineLoadStoreAlloca.po: Intrinsics.inc.h +InstCombineMulDivRem.o: Intrinsics.inc.h +InstCombineMulDivRem.po: Intrinsics.inc.h +InstCombinePHI.o: Intrinsics.inc.h +InstCombinePHI.po: Intrinsics.inc.h +InstCombineSelect.o: Intrinsics.inc.h +InstCombineSelect.po: Intrinsics.inc.h +InstCombineShifts.o: Intrinsics.inc.h +InstCombineShifts.po: Intrinsics.inc.h +InstCombineSimplifyDemanded.o: Intrinsics.inc.h +InstCombineSimplifyDemanded.po: Intrinsics.inc.h +InstCombineVectorOps.o: Intrinsics.inc.h +InstCombineVectorOps.po: Intrinsics.inc.h +InstructionCombining.o: Intrinsics.inc.h +InstructionCombining.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvminstrumentation/Makefile.depend b/lib/clang/libllvminstrumentation/Makefile.depend new file mode 100644 index 000000000000..2574cd56aa71 --- /dev/null +++ b/lib/clang/libllvminstrumentation/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +AddressSanitizer.o: Intrinsics.inc.h +AddressSanitizer.po: Intrinsics.inc.h +ThreadSanitizer.o: Intrinsics.inc.h +ThreadSanitizer.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvminterpreter/Makefile.depend b/lib/clang/libllvminterpreter/Makefile.depend new file mode 100644 index 000000000000..0c45153337da --- /dev/null +++ b/lib/clang/libllvminterpreter/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +Execution.o: Intrinsics.inc.h +Execution.po: Intrinsics.inc.h +Interpreter.o: Intrinsics.inc.h +Interpreter.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvmipa/Makefile.depend b/lib/clang/libllvmipa/Makefile.depend new file mode 100644 index 000000000000..9b4317f5d016 --- /dev/null +++ b/lib/clang/libllvmipa/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +CallGraph.o: Intrinsics.inc.h +CallGraph.po: Intrinsics.inc.h +CallGraphSCCPass.o: Intrinsics.inc.h +CallGraphSCCPass.po: Intrinsics.inc.h +GlobalsModRef.o: Intrinsics.inc.h +GlobalsModRef.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvmipo/Makefile.depend b/lib/clang/libllvmipo/Makefile.depend new file mode 100644 index 000000000000..6f90d4d62450 --- /dev/null +++ b/lib/clang/libllvmipo/Makefile.depend @@ -0,0 +1,31 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +DeadArgumentElimination.o: Intrinsics.inc.h +DeadArgumentElimination.po: Intrinsics.inc.h +FunctionAttrs.o: Intrinsics.inc.h +FunctionAttrs.po: Intrinsics.inc.h +GlobalOpt.o: Intrinsics.inc.h +GlobalOpt.po: Intrinsics.inc.h +InlineAlways.o: Intrinsics.inc.h +InlineAlways.po: Intrinsics.inc.h +InlineSimple.o: Intrinsics.inc.h +InlineSimple.po: Intrinsics.inc.h +Inliner.o: Intrinsics.inc.h +Inliner.po: Intrinsics.inc.h +PruneEH.o: Intrinsics.inc.h +PruneEH.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvmjit/Makefile.depend b/lib/clang/libllvmjit/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmjit/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmlinker/Makefile.depend b/lib/clang/libllvmlinker/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmlinker/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmmc/Makefile.depend b/lib/clang/libllvmmc/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmmc/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmmcdisassembler/Makefile.depend b/lib/clang/libllvmmcdisassembler/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmmcdisassembler/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmmcjit/Makefile.depend b/lib/clang/libllvmmcjit/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmmcjit/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmmcparser/Makefile.depend b/lib/clang/libllvmmcparser/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmmcparser/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmmipsasmparser/Makefile.depend b/lib/clang/libllvmmipsasmparser/Makefile.depend new file mode 100644 index 000000000000..a215c2c9d5ab --- /dev/null +++ b/lib/clang/libllvmmipsasmparser/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +MipsAsmParser.o: MipsGenInstrInfo.inc.h +MipsAsmParser.o: MipsGenRegisterInfo.inc.h +MipsAsmParser.o: MipsGenSubtargetInfo.inc.h +MipsAsmParser.po: MipsGenInstrInfo.inc.h +MipsAsmParser.po: MipsGenRegisterInfo.inc.h +MipsAsmParser.po: MipsGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmmipscodegen/Makefile.depend b/lib/clang/libllvmmipscodegen/Makefile.depend new file mode 100644 index 000000000000..28ee9944de05 --- /dev/null +++ b/lib/clang/libllvmmipscodegen/Makefile.depend @@ -0,0 +1,131 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +MipsAnalyzeImmediate.o: MipsGenInstrInfo.inc.h +MipsAnalyzeImmediate.o: MipsGenRegisterInfo.inc.h +MipsAnalyzeImmediate.o: MipsGenSubtargetInfo.inc.h +MipsAnalyzeImmediate.po: MipsGenInstrInfo.inc.h +MipsAnalyzeImmediate.po: MipsGenRegisterInfo.inc.h +MipsAnalyzeImmediate.po: MipsGenSubtargetInfo.inc.h +MipsAsmPrinter.o: MipsGenInstrInfo.inc.h +MipsAsmPrinter.o: MipsGenRegisterInfo.inc.h +MipsAsmPrinter.o: MipsGenSubtargetInfo.inc.h +MipsAsmPrinter.po: MipsGenInstrInfo.inc.h +MipsAsmPrinter.po: MipsGenRegisterInfo.inc.h +MipsAsmPrinter.po: MipsGenSubtargetInfo.inc.h +MipsCodeEmitter.o: MipsGenCodeEmitter.inc.h +MipsCodeEmitter.o: MipsGenInstrInfo.inc.h +MipsCodeEmitter.o: MipsGenRegisterInfo.inc.h +MipsCodeEmitter.o: MipsGenSubtargetInfo.inc.h +MipsCodeEmitter.po: MipsGenCodeEmitter.inc.h +MipsCodeEmitter.po: MipsGenInstrInfo.inc.h +MipsCodeEmitter.po: MipsGenRegisterInfo.inc.h +MipsCodeEmitter.po: MipsGenSubtargetInfo.inc.h +MipsDelaySlotFiller.o: MipsGenInstrInfo.inc.h +MipsDelaySlotFiller.o: MipsGenRegisterInfo.inc.h +MipsDelaySlotFiller.o: MipsGenSubtargetInfo.inc.h +MipsDelaySlotFiller.po: MipsGenInstrInfo.inc.h +MipsDelaySlotFiller.po: MipsGenRegisterInfo.inc.h +MipsDelaySlotFiller.po: MipsGenSubtargetInfo.inc.h +MipsEmitGPRestore.o: MipsGenInstrInfo.inc.h +MipsEmitGPRestore.o: MipsGenRegisterInfo.inc.h +MipsEmitGPRestore.o: MipsGenSubtargetInfo.inc.h +MipsEmitGPRestore.po: MipsGenInstrInfo.inc.h +MipsEmitGPRestore.po: MipsGenRegisterInfo.inc.h +MipsEmitGPRestore.po: MipsGenSubtargetInfo.inc.h +MipsExpandPseudo.o: MipsGenInstrInfo.inc.h +MipsExpandPseudo.o: MipsGenRegisterInfo.inc.h +MipsExpandPseudo.o: MipsGenSubtargetInfo.inc.h +MipsExpandPseudo.po: MipsGenInstrInfo.inc.h +MipsExpandPseudo.po: MipsGenRegisterInfo.inc.h +MipsExpandPseudo.po: MipsGenSubtargetInfo.inc.h +MipsFrameLowering.o: MipsGenInstrInfo.inc.h +MipsFrameLowering.o: MipsGenRegisterInfo.inc.h +MipsFrameLowering.o: MipsGenSubtargetInfo.inc.h +MipsFrameLowering.po: MipsGenInstrInfo.inc.h +MipsFrameLowering.po: MipsGenRegisterInfo.inc.h +MipsFrameLowering.po: MipsGenSubtargetInfo.inc.h +MipsISelDAGToDAG.o: Intrinsics.inc.h +MipsISelDAGToDAG.o: MipsGenDAGISel.inc.h +MipsISelDAGToDAG.o: MipsGenInstrInfo.inc.h +MipsISelDAGToDAG.o: MipsGenRegisterInfo.inc.h +MipsISelDAGToDAG.o: MipsGenSubtargetInfo.inc.h +MipsISelDAGToDAG.po: Intrinsics.inc.h +MipsISelDAGToDAG.po: MipsGenDAGISel.inc.h +MipsISelDAGToDAG.po: MipsGenInstrInfo.inc.h +MipsISelDAGToDAG.po: MipsGenRegisterInfo.inc.h +MipsISelDAGToDAG.po: MipsGenSubtargetInfo.inc.h +MipsISelLowering.o: Intrinsics.inc.h +MipsISelLowering.o: MipsGenCallingConv.inc.h +MipsISelLowering.o: MipsGenInstrInfo.inc.h +MipsISelLowering.o: MipsGenRegisterInfo.inc.h +MipsISelLowering.o: MipsGenSubtargetInfo.inc.h +MipsISelLowering.po: Intrinsics.inc.h +MipsISelLowering.po: MipsGenCallingConv.inc.h +MipsISelLowering.po: MipsGenInstrInfo.inc.h +MipsISelLowering.po: MipsGenRegisterInfo.inc.h +MipsISelLowering.po: MipsGenSubtargetInfo.inc.h +MipsInstrInfo.o: MipsGenInstrInfo.inc.h +MipsInstrInfo.o: MipsGenRegisterInfo.inc.h +MipsInstrInfo.o: MipsGenSubtargetInfo.inc.h +MipsInstrInfo.po: MipsGenInstrInfo.inc.h +MipsInstrInfo.po: MipsGenRegisterInfo.inc.h +MipsInstrInfo.po: MipsGenSubtargetInfo.inc.h +MipsJITInfo.o: MipsGenInstrInfo.inc.h +MipsJITInfo.o: MipsGenRegisterInfo.inc.h +MipsJITInfo.o: MipsGenSubtargetInfo.inc.h +MipsJITInfo.po: MipsGenInstrInfo.inc.h +MipsJITInfo.po: MipsGenRegisterInfo.inc.h +MipsJITInfo.po: MipsGenSubtargetInfo.inc.h +MipsMCInstLower.o: MipsGenInstrInfo.inc.h +MipsMCInstLower.o: MipsGenRegisterInfo.inc.h +MipsMCInstLower.o: MipsGenSubtargetInfo.inc.h +MipsMCInstLower.po: MipsGenInstrInfo.inc.h +MipsMCInstLower.po: MipsGenRegisterInfo.inc.h +MipsMCInstLower.po: MipsGenSubtargetInfo.inc.h +MipsMachineFunction.o: MipsGenInstrInfo.inc.h +MipsMachineFunction.o: MipsGenRegisterInfo.inc.h +MipsMachineFunction.o: MipsGenSubtargetInfo.inc.h +MipsMachineFunction.po: MipsGenInstrInfo.inc.h +MipsMachineFunction.po: MipsGenRegisterInfo.inc.h +MipsMachineFunction.po: MipsGenSubtargetInfo.inc.h +MipsRegisterInfo.o: MipsGenInstrInfo.inc.h +MipsRegisterInfo.o: MipsGenRegisterInfo.inc.h +MipsRegisterInfo.o: MipsGenSubtargetInfo.inc.h +MipsRegisterInfo.po: MipsGenInstrInfo.inc.h +MipsRegisterInfo.po: MipsGenRegisterInfo.inc.h +MipsRegisterInfo.po: MipsGenSubtargetInfo.inc.h +MipsSelectionDAGInfo.o: MipsGenInstrInfo.inc.h +MipsSelectionDAGInfo.o: MipsGenRegisterInfo.inc.h +MipsSelectionDAGInfo.o: MipsGenSubtargetInfo.inc.h +MipsSelectionDAGInfo.po: MipsGenInstrInfo.inc.h +MipsSelectionDAGInfo.po: MipsGenRegisterInfo.inc.h +MipsSelectionDAGInfo.po: MipsGenSubtargetInfo.inc.h +MipsSubtarget.o: MipsGenInstrInfo.inc.h +MipsSubtarget.o: MipsGenRegisterInfo.inc.h +MipsSubtarget.o: MipsGenSubtargetInfo.inc.h +MipsSubtarget.po: MipsGenInstrInfo.inc.h +MipsSubtarget.po: MipsGenRegisterInfo.inc.h +MipsSubtarget.po: MipsGenSubtargetInfo.inc.h +MipsTargetMachine.o: MipsGenInstrInfo.inc.h +MipsTargetMachine.o: MipsGenRegisterInfo.inc.h +MipsTargetMachine.o: MipsGenSubtargetInfo.inc.h +MipsTargetMachine.po: MipsGenInstrInfo.inc.h +MipsTargetMachine.po: MipsGenRegisterInfo.inc.h +MipsTargetMachine.po: MipsGenSubtargetInfo.inc.h +MipsTargetObjectFile.o: MipsGenSubtargetInfo.inc.h +MipsTargetObjectFile.po: MipsGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmmipsdesc/Makefile.depend b/lib/clang/libllvmmipsdesc/Makefile.depend new file mode 100644 index 000000000000..1aceb5f3ac2e --- /dev/null +++ b/lib/clang/libllvmmipsdesc/Makefile.depend @@ -0,0 +1,43 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +MipsAsmBackend.o: MipsGenInstrInfo.inc.h +MipsAsmBackend.o: MipsGenRegisterInfo.inc.h +MipsAsmBackend.o: MipsGenSubtargetInfo.inc.h +MipsAsmBackend.po: MipsGenInstrInfo.inc.h +MipsAsmBackend.po: MipsGenRegisterInfo.inc.h +MipsAsmBackend.po: MipsGenSubtargetInfo.inc.h +MipsELFObjectWriter.o: MipsGenInstrInfo.inc.h +MipsELFObjectWriter.o: MipsGenRegisterInfo.inc.h +MipsELFObjectWriter.o: MipsGenSubtargetInfo.inc.h +MipsELFObjectWriter.po: MipsGenInstrInfo.inc.h +MipsELFObjectWriter.po: MipsGenRegisterInfo.inc.h +MipsELFObjectWriter.po: MipsGenSubtargetInfo.inc.h +MipsMCCodeEmitter.o: MipsGenInstrInfo.inc.h +MipsMCCodeEmitter.o: MipsGenMCCodeEmitter.inc.h +MipsMCCodeEmitter.o: MipsGenRegisterInfo.inc.h +MipsMCCodeEmitter.o: MipsGenSubtargetInfo.inc.h +MipsMCCodeEmitter.po: MipsGenInstrInfo.inc.h +MipsMCCodeEmitter.po: MipsGenMCCodeEmitter.inc.h +MipsMCCodeEmitter.po: MipsGenRegisterInfo.inc.h +MipsMCCodeEmitter.po: MipsGenSubtargetInfo.inc.h +MipsMCTargetDesc.o: MipsGenInstrInfo.inc.h +MipsMCTargetDesc.o: MipsGenRegisterInfo.inc.h +MipsMCTargetDesc.o: MipsGenSubtargetInfo.inc.h +MipsMCTargetDesc.po: MipsGenInstrInfo.inc.h +MipsMCTargetDesc.po: MipsGenRegisterInfo.inc.h +MipsMCTargetDesc.po: MipsGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmmipsinfo/Makefile.depend b/lib/clang/libllvmmipsinfo/Makefile.depend new file mode 100644 index 000000000000..54441b5d8752 --- /dev/null +++ b/lib/clang/libllvmmipsinfo/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +MipsTargetInfo.o: MipsGenInstrInfo.inc.h +MipsTargetInfo.o: MipsGenRegisterInfo.inc.h +MipsTargetInfo.o: MipsGenSubtargetInfo.inc.h +MipsTargetInfo.po: MipsGenInstrInfo.inc.h +MipsTargetInfo.po: MipsGenRegisterInfo.inc.h +MipsTargetInfo.po: MipsGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmmipsinstprinter/Makefile.depend b/lib/clang/libllvmmipsinstprinter/Makefile.depend new file mode 100644 index 000000000000..5ecd0b52f349 --- /dev/null +++ b/lib/clang/libllvmmipsinstprinter/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +MipsInstPrinter.o: MipsGenAsmWriter.inc.h +MipsInstPrinter.po: MipsGenAsmWriter.inc.h +.endif diff --git a/lib/clang/libllvmobject/Makefile.depend b/lib/clang/libllvmobject/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmobject/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmpowerpccodegen/Makefile.depend b/lib/clang/libllvmpowerpccodegen/Makefile.depend new file mode 100644 index 000000000000..988435f466bf --- /dev/null +++ b/lib/clang/libllvmpowerpccodegen/Makefile.depend @@ -0,0 +1,111 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +PPCAsmPrinter.o: PPCGenInstrInfo.inc.h +PPCAsmPrinter.o: PPCGenRegisterInfo.inc.h +PPCAsmPrinter.o: PPCGenSubtargetInfo.inc.h +PPCAsmPrinter.po: PPCGenInstrInfo.inc.h +PPCAsmPrinter.po: PPCGenRegisterInfo.inc.h +PPCAsmPrinter.po: PPCGenSubtargetInfo.inc.h +PPCBranchSelector.o: PPCGenInstrInfo.inc.h +PPCBranchSelector.o: PPCGenRegisterInfo.inc.h +PPCBranchSelector.o: PPCGenSubtargetInfo.inc.h +PPCBranchSelector.po: PPCGenInstrInfo.inc.h +PPCBranchSelector.po: PPCGenRegisterInfo.inc.h +PPCBranchSelector.po: PPCGenSubtargetInfo.inc.h +PPCCodeEmitter.o: PPCGenCodeEmitter.inc.h +PPCCodeEmitter.o: PPCGenInstrInfo.inc.h +PPCCodeEmitter.o: PPCGenRegisterInfo.inc.h +PPCCodeEmitter.o: PPCGenSubtargetInfo.inc.h +PPCCodeEmitter.po: PPCGenCodeEmitter.inc.h +PPCCodeEmitter.po: PPCGenInstrInfo.inc.h +PPCCodeEmitter.po: PPCGenRegisterInfo.inc.h +PPCCodeEmitter.po: PPCGenSubtargetInfo.inc.h +PPCFrameLowering.o: PPCGenInstrInfo.inc.h +PPCFrameLowering.o: PPCGenRegisterInfo.inc.h +PPCFrameLowering.o: PPCGenSubtargetInfo.inc.h +PPCFrameLowering.po: PPCGenInstrInfo.inc.h +PPCFrameLowering.po: PPCGenRegisterInfo.inc.h +PPCFrameLowering.po: PPCGenSubtargetInfo.inc.h +PPCHazardRecognizers.o: PPCGenInstrInfo.inc.h +PPCHazardRecognizers.o: PPCGenRegisterInfo.inc.h +PPCHazardRecognizers.o: PPCGenSubtargetInfo.inc.h +PPCHazardRecognizers.po: PPCGenInstrInfo.inc.h +PPCHazardRecognizers.po: PPCGenRegisterInfo.inc.h +PPCHazardRecognizers.po: PPCGenSubtargetInfo.inc.h +PPCISelDAGToDAG.o: Intrinsics.inc.h +PPCISelDAGToDAG.o: PPCGenDAGISel.inc.h +PPCISelDAGToDAG.o: PPCGenInstrInfo.inc.h +PPCISelDAGToDAG.o: PPCGenRegisterInfo.inc.h +PPCISelDAGToDAG.o: PPCGenSubtargetInfo.inc.h +PPCISelDAGToDAG.po: Intrinsics.inc.h +PPCISelDAGToDAG.po: PPCGenDAGISel.inc.h +PPCISelDAGToDAG.po: PPCGenInstrInfo.inc.h +PPCISelDAGToDAG.po: PPCGenRegisterInfo.inc.h +PPCISelDAGToDAG.po: PPCGenSubtargetInfo.inc.h +PPCISelLowering.o: Intrinsics.inc.h +PPCISelLowering.o: PPCGenCallingConv.inc.h +PPCISelLowering.o: PPCGenInstrInfo.inc.h +PPCISelLowering.o: PPCGenRegisterInfo.inc.h +PPCISelLowering.o: PPCGenSubtargetInfo.inc.h +PPCISelLowering.po: Intrinsics.inc.h +PPCISelLowering.po: PPCGenCallingConv.inc.h +PPCISelLowering.po: PPCGenInstrInfo.inc.h +PPCISelLowering.po: PPCGenRegisterInfo.inc.h +PPCISelLowering.po: PPCGenSubtargetInfo.inc.h +PPCInstrInfo.o: PPCGenInstrInfo.inc.h +PPCInstrInfo.o: PPCGenRegisterInfo.inc.h +PPCInstrInfo.o: PPCGenSubtargetInfo.inc.h +PPCInstrInfo.po: PPCGenInstrInfo.inc.h +PPCInstrInfo.po: PPCGenRegisterInfo.inc.h +PPCInstrInfo.po: PPCGenSubtargetInfo.inc.h +PPCJITInfo.o: PPCGenInstrInfo.inc.h +PPCJITInfo.o: PPCGenRegisterInfo.inc.h +PPCJITInfo.o: PPCGenSubtargetInfo.inc.h +PPCJITInfo.po: PPCGenInstrInfo.inc.h +PPCJITInfo.po: PPCGenRegisterInfo.inc.h +PPCJITInfo.po: PPCGenSubtargetInfo.inc.h +PPCMCInstLower.o: PPCGenInstrInfo.inc.h +PPCMCInstLower.o: PPCGenRegisterInfo.inc.h +PPCMCInstLower.o: PPCGenSubtargetInfo.inc.h +PPCMCInstLower.po: PPCGenInstrInfo.inc.h +PPCMCInstLower.po: PPCGenRegisterInfo.inc.h +PPCMCInstLower.po: PPCGenSubtargetInfo.inc.h +PPCRegisterInfo.o: PPCGenInstrInfo.inc.h +PPCRegisterInfo.o: PPCGenRegisterInfo.inc.h +PPCRegisterInfo.o: PPCGenSubtargetInfo.inc.h +PPCRegisterInfo.po: PPCGenInstrInfo.inc.h +PPCRegisterInfo.po: PPCGenRegisterInfo.inc.h +PPCRegisterInfo.po: PPCGenSubtargetInfo.inc.h +PPCSelectionDAGInfo.o: PPCGenInstrInfo.inc.h +PPCSelectionDAGInfo.o: PPCGenRegisterInfo.inc.h +PPCSelectionDAGInfo.o: PPCGenSubtargetInfo.inc.h +PPCSelectionDAGInfo.po: PPCGenInstrInfo.inc.h +PPCSelectionDAGInfo.po: PPCGenRegisterInfo.inc.h +PPCSelectionDAGInfo.po: PPCGenSubtargetInfo.inc.h +PPCSubtarget.o: PPCGenInstrInfo.inc.h +PPCSubtarget.o: PPCGenRegisterInfo.inc.h +PPCSubtarget.o: PPCGenSubtargetInfo.inc.h +PPCSubtarget.po: PPCGenInstrInfo.inc.h +PPCSubtarget.po: PPCGenRegisterInfo.inc.h +PPCSubtarget.po: PPCGenSubtargetInfo.inc.h +PPCTargetMachine.o: PPCGenInstrInfo.inc.h +PPCTargetMachine.o: PPCGenRegisterInfo.inc.h +PPCTargetMachine.o: PPCGenSubtargetInfo.inc.h +PPCTargetMachine.po: PPCGenInstrInfo.inc.h +PPCTargetMachine.po: PPCGenRegisterInfo.inc.h +PPCTargetMachine.po: PPCGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmpowerpcdesc/Makefile.depend b/lib/clang/libllvmpowerpcdesc/Makefile.depend new file mode 100644 index 000000000000..b67f8a9b2d39 --- /dev/null +++ b/lib/clang/libllvmpowerpcdesc/Makefile.depend @@ -0,0 +1,43 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +PPCAsmBackend.o: PPCGenInstrInfo.inc.h +PPCAsmBackend.o: PPCGenRegisterInfo.inc.h +PPCAsmBackend.o: PPCGenSubtargetInfo.inc.h +PPCAsmBackend.po: PPCGenInstrInfo.inc.h +PPCAsmBackend.po: PPCGenRegisterInfo.inc.h +PPCAsmBackend.po: PPCGenSubtargetInfo.inc.h +PPCELFObjectWriter.o: PPCGenInstrInfo.inc.h +PPCELFObjectWriter.o: PPCGenRegisterInfo.inc.h +PPCELFObjectWriter.o: PPCGenSubtargetInfo.inc.h +PPCELFObjectWriter.po: PPCGenInstrInfo.inc.h +PPCELFObjectWriter.po: PPCGenRegisterInfo.inc.h +PPCELFObjectWriter.po: PPCGenSubtargetInfo.inc.h +PPCMCCodeEmitter.o: PPCGenInstrInfo.inc.h +PPCMCCodeEmitter.o: PPCGenMCCodeEmitter.inc.h +PPCMCCodeEmitter.o: PPCGenRegisterInfo.inc.h +PPCMCCodeEmitter.o: PPCGenSubtargetInfo.inc.h +PPCMCCodeEmitter.po: PPCGenInstrInfo.inc.h +PPCMCCodeEmitter.po: PPCGenMCCodeEmitter.inc.h +PPCMCCodeEmitter.po: PPCGenRegisterInfo.inc.h +PPCMCCodeEmitter.po: PPCGenSubtargetInfo.inc.h +PPCMCTargetDesc.o: PPCGenInstrInfo.inc.h +PPCMCTargetDesc.o: PPCGenRegisterInfo.inc.h +PPCMCTargetDesc.o: PPCGenSubtargetInfo.inc.h +PPCMCTargetDesc.po: PPCGenInstrInfo.inc.h +PPCMCTargetDesc.po: PPCGenRegisterInfo.inc.h +PPCMCTargetDesc.po: PPCGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmpowerpcinfo/Makefile.depend b/lib/clang/libllvmpowerpcinfo/Makefile.depend new file mode 100644 index 000000000000..22102dc6f313 --- /dev/null +++ b/lib/clang/libllvmpowerpcinfo/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +PowerPCTargetInfo.o: PPCGenInstrInfo.inc.h +PowerPCTargetInfo.o: PPCGenRegisterInfo.inc.h +PowerPCTargetInfo.o: PPCGenSubtargetInfo.inc.h +PowerPCTargetInfo.po: PPCGenInstrInfo.inc.h +PowerPCTargetInfo.po: PPCGenRegisterInfo.inc.h +PowerPCTargetInfo.po: PPCGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmpowerpcinstprinter/Makefile.depend b/lib/clang/libllvmpowerpcinstprinter/Makefile.depend new file mode 100644 index 000000000000..da1fa0fb4964 --- /dev/null +++ b/lib/clang/libllvmpowerpcinstprinter/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +PPCInstPrinter.o: PPCGenAsmWriter.inc.h +PPCInstPrinter.o: PPCGenInstrInfo.inc.h +PPCInstPrinter.o: PPCGenRegisterInfo.inc.h +PPCInstPrinter.o: PPCGenSubtargetInfo.inc.h +PPCInstPrinter.po: PPCGenAsmWriter.inc.h +PPCInstPrinter.po: PPCGenInstrInfo.inc.h +PPCInstPrinter.po: PPCGenRegisterInfo.inc.h +PPCInstPrinter.po: PPCGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmruntimedyld/Makefile.depend b/lib/clang/libllvmruntimedyld/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmruntimedyld/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmscalaropts/Makefile.depend b/lib/clang/libllvmscalaropts/Makefile.depend new file mode 100644 index 000000000000..5b49aa40b311 --- /dev/null +++ b/lib/clang/libllvmscalaropts/Makefile.depend @@ -0,0 +1,59 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ADCE.o: Intrinsics.inc.h +ADCE.po: Intrinsics.inc.h +CodeGenPrepare.o: Intrinsics.inc.h +CodeGenPrepare.po: Intrinsics.inc.h +DeadStoreElimination.o: Intrinsics.inc.h +DeadStoreElimination.po: Intrinsics.inc.h +GVN.o: Intrinsics.inc.h +GVN.po: Intrinsics.inc.h +GlobalMerge.o: Intrinsics.inc.h +GlobalMerge.po: Intrinsics.inc.h +IndVarSimplify.o: Intrinsics.inc.h +IndVarSimplify.po: Intrinsics.inc.h +JumpThreading.o: Intrinsics.inc.h +JumpThreading.po: Intrinsics.inc.h +LICM.o: Intrinsics.inc.h +LICM.po: Intrinsics.inc.h +LoopIdiomRecognize.o: Intrinsics.inc.h +LoopIdiomRecognize.po: Intrinsics.inc.h +LoopRotation.o: Intrinsics.inc.h +LoopRotation.po: Intrinsics.inc.h +LoopStrengthReduce.o: Intrinsics.inc.h +LoopStrengthReduce.po: Intrinsics.inc.h +LoopUnrollPass.o: Intrinsics.inc.h +LoopUnrollPass.po: Intrinsics.inc.h +LowerAtomic.o: Intrinsics.inc.h +LowerAtomic.po: Intrinsics.inc.h +MemCpyOptimizer.o: Intrinsics.inc.h +MemCpyOptimizer.po: Intrinsics.inc.h +ObjCARC.o: Intrinsics.inc.h +ObjCARC.po: Intrinsics.inc.h +Reassociate.o: Intrinsics.inc.h +Reassociate.po: Intrinsics.inc.h +ScalarReplAggregates.o: Intrinsics.inc.h +ScalarReplAggregates.po: Intrinsics.inc.h +SimplifyCFGPass.o: Intrinsics.inc.h +SimplifyCFGPass.po: Intrinsics.inc.h +SimplifyLibCalls.o: Intrinsics.inc.h +SimplifyLibCalls.po: Intrinsics.inc.h +Sink.o: Intrinsics.inc.h +Sink.po: Intrinsics.inc.h +TailRecursionElimination.o: Intrinsics.inc.h +TailRecursionElimination.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvmselectiondag/Makefile.depend b/lib/clang/libllvmselectiondag/Makefile.depend new file mode 100644 index 000000000000..cae65c829615 --- /dev/null +++ b/lib/clang/libllvmselectiondag/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +FastISel.o: Intrinsics.inc.h +FastISel.po: Intrinsics.inc.h +FunctionLoweringInfo.o: Intrinsics.inc.h +FunctionLoweringInfo.po: Intrinsics.inc.h +SelectionDAG.o: Intrinsics.inc.h +SelectionDAG.po: Intrinsics.inc.h +SelectionDAGBuilder.o: Intrinsics.inc.h +SelectionDAGBuilder.po: Intrinsics.inc.h +SelectionDAGDumper.o: Intrinsics.inc.h +SelectionDAGDumper.po: Intrinsics.inc.h +SelectionDAGISel.o: Intrinsics.inc.h +SelectionDAGISel.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvmsupport/Makefile.depend b/lib/clang/libllvmsupport/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmsupport/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmtablegen/Makefile.depend b/lib/clang/libllvmtablegen/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmtablegen/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmtarget/Makefile.depend b/lib/clang/libllvmtarget/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmtarget/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmtransformutils/Makefile.depend b/lib/clang/libllvmtransformutils/Makefile.depend new file mode 100644 index 000000000000..16320acc92a5 --- /dev/null +++ b/lib/clang/libllvmtransformutils/Makefile.depend @@ -0,0 +1,41 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +BasicBlockUtils.o: Intrinsics.inc.h +BasicBlockUtils.po: Intrinsics.inc.h +BuildLibCalls.o: Intrinsics.inc.h +BuildLibCalls.po: Intrinsics.inc.h +CloneFunction.o: Intrinsics.inc.h +CloneFunction.po: Intrinsics.inc.h +CodeExtractor.o: Intrinsics.inc.h +CodeExtractor.po: Intrinsics.inc.h +InlineFunction.o: Intrinsics.inc.h +InlineFunction.po: Intrinsics.inc.h +Local.o: Intrinsics.inc.h +Local.po: Intrinsics.inc.h +LoopSimplify.o: Intrinsics.inc.h +LoopSimplify.po: Intrinsics.inc.h +LowerExpectIntrinsic.o: Intrinsics.inc.h +LowerExpectIntrinsic.po: Intrinsics.inc.h +LowerInvoke.o: Intrinsics.inc.h +LowerInvoke.po: Intrinsics.inc.h +PromoteMemoryToRegister.o: Intrinsics.inc.h +PromoteMemoryToRegister.po: Intrinsics.inc.h +SSAUpdater.o: Intrinsics.inc.h +SSAUpdater.po: Intrinsics.inc.h +SimplifyCFG.o: Intrinsics.inc.h +SimplifyCFG.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvmvectorize/Makefile.depend b/lib/clang/libllvmvectorize/Makefile.depend new file mode 100644 index 000000000000..4bf19437a5f0 --- /dev/null +++ b/lib/clang/libllvmvectorize/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +BBVectorize.o: Intrinsics.inc.h +BBVectorize.po: Intrinsics.inc.h +.endif diff --git a/lib/clang/libllvmx86asmparser/Makefile.depend b/lib/clang/libllvmx86asmparser/Makefile.depend new file mode 100644 index 000000000000..22486a920273 --- /dev/null +++ b/lib/clang/libllvmx86asmparser/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +X86AsmLexer.o: X86GenAsmMatcher.inc.h +X86AsmLexer.o: X86GenInstrInfo.inc.h +X86AsmLexer.o: X86GenRegisterInfo.inc.h +X86AsmLexer.o: X86GenSubtargetInfo.inc.h +X86AsmLexer.po: X86GenAsmMatcher.inc.h +X86AsmLexer.po: X86GenInstrInfo.inc.h +X86AsmLexer.po: X86GenRegisterInfo.inc.h +X86AsmLexer.po: X86GenSubtargetInfo.inc.h +X86AsmParser.o: X86GenAsmMatcher.inc.h +X86AsmParser.o: X86GenInstrInfo.inc.h +X86AsmParser.o: X86GenRegisterInfo.inc.h +X86AsmParser.o: X86GenSubtargetInfo.inc.h +X86AsmParser.po: X86GenAsmMatcher.inc.h +X86AsmParser.po: X86GenInstrInfo.inc.h +X86AsmParser.po: X86GenRegisterInfo.inc.h +X86AsmParser.po: X86GenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmx86codegen/Makefile.depend b/lib/clang/libllvmx86codegen/Makefile.depend new file mode 100644 index 000000000000..f1da7d609dab --- /dev/null +++ b/lib/clang/libllvmx86codegen/Makefile.depend @@ -0,0 +1,127 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +X86AsmPrinter.o: X86GenInstrInfo.inc.h +X86AsmPrinter.o: X86GenRegisterInfo.inc.h +X86AsmPrinter.o: X86GenSubtargetInfo.inc.h +X86AsmPrinter.po: X86GenInstrInfo.inc.h +X86AsmPrinter.po: X86GenRegisterInfo.inc.h +X86AsmPrinter.po: X86GenSubtargetInfo.inc.h +X86CodeEmitter.o: X86GenInstrInfo.inc.h +X86CodeEmitter.o: X86GenRegisterInfo.inc.h +X86CodeEmitter.o: X86GenSubtargetInfo.inc.h +X86CodeEmitter.po: X86GenInstrInfo.inc.h +X86CodeEmitter.po: X86GenRegisterInfo.inc.h +X86CodeEmitter.po: X86GenSubtargetInfo.inc.h +X86FastISel.o: Intrinsics.inc.h +X86FastISel.o: X86GenCallingConv.inc.h +X86FastISel.o: X86GenFastISel.inc.h +X86FastISel.o: X86GenInstrInfo.inc.h +X86FastISel.o: X86GenRegisterInfo.inc.h +X86FastISel.o: X86GenSubtargetInfo.inc.h +X86FastISel.po: Intrinsics.inc.h +X86FastISel.po: X86GenCallingConv.inc.h +X86FastISel.po: X86GenFastISel.inc.h +X86FastISel.po: X86GenInstrInfo.inc.h +X86FastISel.po: X86GenRegisterInfo.inc.h +X86FastISel.po: X86GenSubtargetInfo.inc.h +X86FloatingPoint.o: X86GenInstrInfo.inc.h +X86FloatingPoint.o: X86GenRegisterInfo.inc.h +X86FloatingPoint.o: X86GenSubtargetInfo.inc.h +X86FloatingPoint.po: X86GenInstrInfo.inc.h +X86FloatingPoint.po: X86GenRegisterInfo.inc.h +X86FloatingPoint.po: X86GenSubtargetInfo.inc.h +X86FrameLowering.o: X86GenInstrInfo.inc.h +X86FrameLowering.o: X86GenRegisterInfo.inc.h +X86FrameLowering.o: X86GenSubtargetInfo.inc.h +X86FrameLowering.po: X86GenInstrInfo.inc.h +X86FrameLowering.po: X86GenRegisterInfo.inc.h +X86FrameLowering.po: X86GenSubtargetInfo.inc.h +X86ISelDAGToDAG.o: Intrinsics.inc.h +X86ISelDAGToDAG.o: X86GenDAGISel.inc.h +X86ISelDAGToDAG.o: X86GenInstrInfo.inc.h +X86ISelDAGToDAG.o: X86GenRegisterInfo.inc.h +X86ISelDAGToDAG.o: X86GenSubtargetInfo.inc.h +X86ISelDAGToDAG.po: Intrinsics.inc.h +X86ISelDAGToDAG.po: X86GenDAGISel.inc.h +X86ISelDAGToDAG.po: X86GenInstrInfo.inc.h +X86ISelDAGToDAG.po: X86GenRegisterInfo.inc.h +X86ISelDAGToDAG.po: X86GenSubtargetInfo.inc.h +X86ISelLowering.o: Intrinsics.inc.h +X86ISelLowering.o: X86GenCallingConv.inc.h +X86ISelLowering.o: X86GenInstrInfo.inc.h +X86ISelLowering.o: X86GenRegisterInfo.inc.h +X86ISelLowering.o: X86GenSubtargetInfo.inc.h +X86ISelLowering.po: Intrinsics.inc.h +X86ISelLowering.po: X86GenCallingConv.inc.h +X86ISelLowering.po: X86GenInstrInfo.inc.h +X86ISelLowering.po: X86GenRegisterInfo.inc.h +X86ISelLowering.po: X86GenSubtargetInfo.inc.h +X86InstrInfo.o: X86GenInstrInfo.inc.h +X86InstrInfo.o: X86GenRegisterInfo.inc.h +X86InstrInfo.o: X86GenSubtargetInfo.inc.h +X86InstrInfo.po: X86GenInstrInfo.inc.h +X86InstrInfo.po: X86GenRegisterInfo.inc.h +X86InstrInfo.po: X86GenSubtargetInfo.inc.h +X86JITInfo.o: X86GenInstrInfo.inc.h +X86JITInfo.o: X86GenRegisterInfo.inc.h +X86JITInfo.o: X86GenSubtargetInfo.inc.h +X86JITInfo.po: X86GenInstrInfo.inc.h +X86JITInfo.po: X86GenRegisterInfo.inc.h +X86JITInfo.po: X86GenSubtargetInfo.inc.h +X86MCInstLower.o: X86GenInstrInfo.inc.h +X86MCInstLower.o: X86GenRegisterInfo.inc.h +X86MCInstLower.o: X86GenSubtargetInfo.inc.h +X86MCInstLower.po: X86GenInstrInfo.inc.h +X86MCInstLower.po: X86GenRegisterInfo.inc.h +X86MCInstLower.po: X86GenSubtargetInfo.inc.h +X86RegisterInfo.o: X86GenInstrInfo.inc.h +X86RegisterInfo.o: X86GenRegisterInfo.inc.h +X86RegisterInfo.o: X86GenSubtargetInfo.inc.h +X86RegisterInfo.po: X86GenInstrInfo.inc.h +X86RegisterInfo.po: X86GenRegisterInfo.inc.h +X86RegisterInfo.po: X86GenSubtargetInfo.inc.h +X86SelectionDAGInfo.o: X86GenInstrInfo.inc.h +X86SelectionDAGInfo.o: X86GenRegisterInfo.inc.h +X86SelectionDAGInfo.o: X86GenSubtargetInfo.inc.h +X86SelectionDAGInfo.po: X86GenInstrInfo.inc.h +X86SelectionDAGInfo.po: X86GenRegisterInfo.inc.h +X86SelectionDAGInfo.po: X86GenSubtargetInfo.inc.h +X86Subtarget.o: X86GenInstrInfo.inc.h +X86Subtarget.o: X86GenRegisterInfo.inc.h +X86Subtarget.o: X86GenSubtargetInfo.inc.h +X86Subtarget.po: X86GenInstrInfo.inc.h +X86Subtarget.po: X86GenRegisterInfo.inc.h +X86Subtarget.po: X86GenSubtargetInfo.inc.h +X86TargetMachine.o: X86GenInstrInfo.inc.h +X86TargetMachine.o: X86GenRegisterInfo.inc.h +X86TargetMachine.o: X86GenSubtargetInfo.inc.h +X86TargetMachine.po: X86GenInstrInfo.inc.h +X86TargetMachine.po: X86GenRegisterInfo.inc.h +X86TargetMachine.po: X86GenSubtargetInfo.inc.h +X86TargetObjectFile.o: X86GenInstrInfo.inc.h +X86TargetObjectFile.o: X86GenRegisterInfo.inc.h +X86TargetObjectFile.o: X86GenSubtargetInfo.inc.h +X86TargetObjectFile.po: X86GenInstrInfo.inc.h +X86TargetObjectFile.po: X86GenRegisterInfo.inc.h +X86TargetObjectFile.po: X86GenSubtargetInfo.inc.h +X86VZeroUpper.o: X86GenInstrInfo.inc.h +X86VZeroUpper.o: X86GenRegisterInfo.inc.h +X86VZeroUpper.o: X86GenSubtargetInfo.inc.h +X86VZeroUpper.po: X86GenInstrInfo.inc.h +X86VZeroUpper.po: X86GenRegisterInfo.inc.h +X86VZeroUpper.po: X86GenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmx86desc/Makefile.depend b/lib/clang/libllvmx86desc/Makefile.depend new file mode 100644 index 000000000000..2c335d731977 --- /dev/null +++ b/lib/clang/libllvmx86desc/Makefile.depend @@ -0,0 +1,53 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +X86AsmBackend.o: X86GenInstrInfo.inc.h +X86AsmBackend.o: X86GenRegisterInfo.inc.h +X86AsmBackend.o: X86GenSubtargetInfo.inc.h +X86AsmBackend.po: X86GenInstrInfo.inc.h +X86AsmBackend.po: X86GenRegisterInfo.inc.h +X86AsmBackend.po: X86GenSubtargetInfo.inc.h +X86ELFObjectWriter.o: X86GenInstrInfo.inc.h +X86ELFObjectWriter.o: X86GenRegisterInfo.inc.h +X86ELFObjectWriter.o: X86GenSubtargetInfo.inc.h +X86ELFObjectWriter.po: X86GenInstrInfo.inc.h +X86ELFObjectWriter.po: X86GenRegisterInfo.inc.h +X86ELFObjectWriter.po: X86GenSubtargetInfo.inc.h +X86MCCodeEmitter.o: X86GenInstrInfo.inc.h +X86MCCodeEmitter.o: X86GenRegisterInfo.inc.h +X86MCCodeEmitter.o: X86GenSubtargetInfo.inc.h +X86MCCodeEmitter.po: X86GenInstrInfo.inc.h +X86MCCodeEmitter.po: X86GenRegisterInfo.inc.h +X86MCCodeEmitter.po: X86GenSubtargetInfo.inc.h +X86MCTargetDesc.o: X86GenInstrInfo.inc.h +X86MCTargetDesc.o: X86GenRegisterInfo.inc.h +X86MCTargetDesc.o: X86GenSubtargetInfo.inc.h +X86MCTargetDesc.po: X86GenInstrInfo.inc.h +X86MCTargetDesc.po: X86GenRegisterInfo.inc.h +X86MCTargetDesc.po: X86GenSubtargetInfo.inc.h +X86MachObjectWriter.o: X86GenInstrInfo.inc.h +X86MachObjectWriter.o: X86GenRegisterInfo.inc.h +X86MachObjectWriter.o: X86GenSubtargetInfo.inc.h +X86MachObjectWriter.po: X86GenInstrInfo.inc.h +X86MachObjectWriter.po: X86GenRegisterInfo.inc.h +X86MachObjectWriter.po: X86GenSubtargetInfo.inc.h +X86WinCOFFObjectWriter.o: X86GenInstrInfo.inc.h +X86WinCOFFObjectWriter.o: X86GenRegisterInfo.inc.h +X86WinCOFFObjectWriter.o: X86GenSubtargetInfo.inc.h +X86WinCOFFObjectWriter.po: X86GenInstrInfo.inc.h +X86WinCOFFObjectWriter.po: X86GenRegisterInfo.inc.h +X86WinCOFFObjectWriter.po: X86GenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmx86disassembler/Makefile.depend b/lib/clang/libllvmx86disassembler/Makefile.depend new file mode 100644 index 000000000000..4c1fae90e03d --- /dev/null +++ b/lib/clang/libllvmx86disassembler/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +X86Disassembler.o: X86GenEDInfo.inc.h +X86Disassembler.o: X86GenInstrInfo.inc.h +X86Disassembler.o: X86GenRegisterInfo.inc.h +X86Disassembler.po: X86GenEDInfo.inc.h +X86Disassembler.po: X86GenInstrInfo.inc.h +X86Disassembler.po: X86GenRegisterInfo.inc.h +.endif diff --git a/lib/clang/libllvmx86info/Makefile.depend b/lib/clang/libllvmx86info/Makefile.depend new file mode 100644 index 000000000000..2da8b5381f3d --- /dev/null +++ b/lib/clang/libllvmx86info/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +X86TargetInfo.o: X86GenInstrInfo.inc.h +X86TargetInfo.o: X86GenRegisterInfo.inc.h +X86TargetInfo.o: X86GenSubtargetInfo.inc.h +X86TargetInfo.po: X86GenInstrInfo.inc.h +X86TargetInfo.po: X86GenRegisterInfo.inc.h +X86TargetInfo.po: X86GenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmx86instprinter/Makefile.depend b/lib/clang/libllvmx86instprinter/Makefile.depend new file mode 100644 index 000000000000..9eafb9145f9e --- /dev/null +++ b/lib/clang/libllvmx86instprinter/Makefile.depend @@ -0,0 +1,39 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +X86ATTInstPrinter.o: X86GenAsmWriter.inc.h +X86ATTInstPrinter.o: X86GenInstrInfo.inc.h +X86ATTInstPrinter.o: X86GenRegisterInfo.inc.h +X86ATTInstPrinter.o: X86GenSubtargetInfo.inc.h +X86ATTInstPrinter.po: X86GenAsmWriter.inc.h +X86ATTInstPrinter.po: X86GenInstrInfo.inc.h +X86ATTInstPrinter.po: X86GenRegisterInfo.inc.h +X86ATTInstPrinter.po: X86GenSubtargetInfo.inc.h +X86InstComments.o: X86GenInstrInfo.inc.h +X86InstComments.o: X86GenRegisterInfo.inc.h +X86InstComments.o: X86GenSubtargetInfo.inc.h +X86InstComments.po: X86GenInstrInfo.inc.h +X86InstComments.po: X86GenRegisterInfo.inc.h +X86InstComments.po: X86GenSubtargetInfo.inc.h +X86IntelInstPrinter.o: X86GenAsmWriter1.inc.h +X86IntelInstPrinter.o: X86GenInstrInfo.inc.h +X86IntelInstPrinter.o: X86GenRegisterInfo.inc.h +X86IntelInstPrinter.o: X86GenSubtargetInfo.inc.h +X86IntelInstPrinter.po: X86GenAsmWriter1.inc.h +X86IntelInstPrinter.po: X86GenInstrInfo.inc.h +X86IntelInstPrinter.po: X86GenRegisterInfo.inc.h +X86IntelInstPrinter.po: X86GenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmx86utils/Makefile.depend b/lib/clang/libllvmx86utils/Makefile.depend new file mode 100644 index 000000000000..6a3fc332584d --- /dev/null +++ b/lib/clang/libllvmx86utils/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/csu/i386-elf/Makefile b/lib/csu/i386-elf/Makefile index 286c15cb9055..52e1955c1093 100644 --- a/lib/csu/i386-elf/Makefile +++ b/lib/csu/i386-elf/Makefile @@ -24,7 +24,7 @@ gcrt1_c.o: gcrt1_c.s ${CC} ${ACFLAGS} -c -o ${.TARGET} gcrt1_c.s gcrt1.o: gcrt1_c.o crt1_s.o - ${LD} ${LDFLAGS} -o gcrt1.o -r crt1_s.o gcrt1_c.o + ${LD} ${LDFLAGS:N-[BL]/*} -o gcrt1.o -r crt1_s.o gcrt1_c.o crt1_c.s: crt1_c.c ${CC} ${CFLAGS} -S -o ${.TARGET} ${.CURDIR}/crt1_c.c @@ -34,7 +34,7 @@ crt1_c.o: crt1_c.s ${CC} ${ACFLAGS} -c -o ${.TARGET} crt1_c.s crt1.o: crt1_c.o crt1_s.o - ${LD} ${LDFLAGS} -o crt1.o -r crt1_s.o crt1_c.o + ${LD} ${LDFLAGS:N-[BL]/*} -o crt1.o -r crt1_s.o crt1_c.o objcopy --localize-symbol _start1 crt1.o Scrt1_c.s: crt1_c.c @@ -45,7 +45,7 @@ Scrt1_c.o: Scrt1_c.s ${CC} ${ACFLAGS} -c -o ${.TARGET} Scrt1_c.s Scrt1.o: Scrt1_c.o crt1_s.o - ${LD} ${LDFLAGS} -o Scrt1.o -r crt1_s.o Scrt1_c.o + ${LD} ${LDFLAGS:N-[BL]/*} -o Scrt1.o -r crt1_s.o Scrt1_c.o objcopy --localize-symbol _start1 Scrt1.o .include diff --git a/lib/csu/i386-elf/Makefile.depend b/lib/csu/i386-elf/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/lib/csu/i386-elf/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libalias/libalias/Makefile.depend b/lib/libalias/libalias/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/libalias/libalias/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libalias/modules/cuseeme/Makefile.depend b/lib/libalias/modules/cuseeme/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libalias/modules/cuseeme/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libalias/modules/dummy/Makefile.depend b/lib/libalias/modules/dummy/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libalias/modules/dummy/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libalias/modules/ftp/Makefile.depend b/lib/libalias/modules/ftp/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libalias/modules/ftp/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libalias/modules/irc/Makefile.depend b/lib/libalias/modules/irc/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libalias/modules/irc/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libalias/modules/nbt/Makefile.depend b/lib/libalias/modules/nbt/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libalias/modules/nbt/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libalias/modules/pptp/Makefile.depend b/lib/libalias/modules/pptp/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libalias/modules/pptp/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libalias/modules/skinny/Makefile.depend b/lib/libalias/modules/skinny/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libalias/modules/skinny/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libalias/modules/smedia/Makefile.depend b/lib/libalias/modules/smedia/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libalias/modules/smedia/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libarchive/Makefile.depend b/lib/libarchive/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libarchive/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libauditd/Makefile.depend b/lib/libauditd/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libauditd/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libbegemot/Makefile.depend b/lib/libbegemot/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libbegemot/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libblocksruntime/Makefile.depend b/lib/libblocksruntime/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libblocksruntime/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libbluetooth/Makefile.depend b/lib/libbluetooth/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libbluetooth/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libbsm/Makefile.depend b/lib/libbsm/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/libbsm/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libbsnmp/libbsnmp/Makefile.depend b/lib/libbsnmp/libbsnmp/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libbsnmp/libbsnmp/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libbz2/Makefile.depend b/lib/libbz2/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libbz2/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libc/Makefile b/lib/libc/Makefile index ed3705365611..ad98d41f802e 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -149,6 +149,16 @@ libkern.${LIBC_ARCH}:: ${KMSRCS} .include +.if !defined(_SKIP_BUILD) +# We need libutil.h, get it directly to avoid +# recording a build dependency +CFLAGS+= -I${.CURDIR:H}/libutil +# Same issue with libm +MSUN_ARCH_SUBDIR != ${MAKE} -B -C ${.CURDIR:H}/msun -V ARCH_SUBDIR +# unfortunately msun/src contains both private and public headers +CFLAGS+= -I${.CURDIR:H}/msun/${MSUN_ARCH_SUBDIR} -I${.CURDIR:H}/msun/src +.endif + # Disable warnings in contributed sources. CWARNFLAGS:= ${.IMPSRC:Ngdtoa_*.c:C/^.+$/${CWARNFLAGS}/:C/^$/-w/} # XXX For now, we don't allow libc to be compiled with diff --git a/lib/libc/Makefile.depend b/lib/libc/Makefile.depend new file mode 100644 index 000000000000..4aedcc77448e --- /dev/null +++ b/lib/libc/Makefile.depend @@ -0,0 +1,168 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/rpc \ + include/rpcsvc \ + lib/${CSU_DIR} \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +cancelpoints_sem.So: cancelpoints_sem.c +cancelpoints_sem.o: cancelpoints_sem.c +cancelpoints_sem.po: cancelpoints_sem.c +cancelpoints_sem_new.So: cancelpoints_sem_new.c +cancelpoints_sem_new.o: cancelpoints_sem_new.c +cancelpoints_sem_new.po: cancelpoints_sem_new.c +crypt_clnt.So: crypt.h +crypt_clnt.So: crypt_clnt.c +crypt_clnt.o: crypt.h +crypt_clnt.o: crypt_clnt.c +crypt_clnt.po: crypt.h +crypt_clnt.po: crypt_clnt.c +crypt_xdr.So: crypt.h +crypt_xdr.So: crypt_xdr.c +crypt_xdr.o: crypt.h +crypt_xdr.o: crypt_xdr.c +crypt_xdr.po: crypt.h +crypt_xdr.po: crypt_xdr.c +gdtoa_dmisc.So: gdtoa_dmisc.c +gdtoa_dmisc.o: gdtoa_dmisc.c +gdtoa_dmisc.po: gdtoa_dmisc.c +gdtoa_dtoa.So: gdtoa_dtoa.c +gdtoa_dtoa.o: gdtoa_dtoa.c +gdtoa_dtoa.po: gdtoa_dtoa.c +gdtoa_gdtoa.So: gdtoa_gdtoa.c +gdtoa_gdtoa.o: gdtoa_gdtoa.c +gdtoa_gdtoa.po: gdtoa_gdtoa.c +gdtoa_gethex.So: gdtoa_gethex.c +gdtoa_gethex.o: gdtoa_gethex.c +gdtoa_gethex.po: gdtoa_gethex.c +gdtoa_gmisc.So: gdtoa_gmisc.c +gdtoa_gmisc.o: gdtoa_gmisc.c +gdtoa_gmisc.po: gdtoa_gmisc.c +gdtoa_hd_init.So: gdtoa_hd_init.c +gdtoa_hd_init.o: gdtoa_hd_init.c +gdtoa_hd_init.po: gdtoa_hd_init.c +gdtoa_hexnan.So: gdtoa_hexnan.c +gdtoa_hexnan.o: gdtoa_hexnan.c +gdtoa_hexnan.po: gdtoa_hexnan.c +gdtoa_misc.So: gdtoa_misc.c +gdtoa_misc.o: gdtoa_misc.c +gdtoa_misc.po: gdtoa_misc.c +gdtoa_smisc.So: gdtoa_smisc.c +gdtoa_smisc.o: gdtoa_smisc.c +gdtoa_smisc.po: gdtoa_smisc.c +gdtoa_strtod.So: gdtoa_strtod.c +gdtoa_strtod.o: gdtoa_strtod.c +gdtoa_strtod.po: gdtoa_strtod.c +gdtoa_strtodg.So: gdtoa_strtodg.c +gdtoa_strtodg.o: gdtoa_strtodg.c +gdtoa_strtodg.po: gdtoa_strtodg.c +gdtoa_strtof.So: gdtoa_strtof.c +gdtoa_strtof.o: gdtoa_strtof.c +gdtoa_strtof.po: gdtoa_strtof.c +gdtoa_strtord.So: gdtoa_strtord.c +gdtoa_strtord.o: gdtoa_strtord.c +gdtoa_strtord.po: gdtoa_strtord.c +gdtoa_strtorx.So: gdtoa_strtorx.c +gdtoa_strtorx.o: gdtoa_strtorx.c +gdtoa_strtorx.po: gdtoa_strtorx.c +gdtoa_sum.So: gdtoa_sum.c +gdtoa_sum.o: gdtoa_sum.c +gdtoa_sum.po: gdtoa_sum.c +gdtoa_ulp.So: gdtoa_ulp.c +gdtoa_ulp.o: gdtoa_ulp.c +gdtoa_ulp.po: gdtoa_ulp.c +jemalloc_arena.So: jemalloc_arena.c +jemalloc_arena.o: jemalloc_arena.c +jemalloc_arena.po: jemalloc_arena.c +jemalloc_atomic.So: jemalloc_atomic.c +jemalloc_atomic.o: jemalloc_atomic.c +jemalloc_atomic.po: jemalloc_atomic.c +jemalloc_base.So: jemalloc_base.c +jemalloc_base.o: jemalloc_base.c +jemalloc_base.po: jemalloc_base.c +jemalloc_bitmap.So: jemalloc_bitmap.c +jemalloc_bitmap.o: jemalloc_bitmap.c +jemalloc_bitmap.po: jemalloc_bitmap.c +jemalloc_chunk.So: jemalloc_chunk.c +jemalloc_chunk.o: jemalloc_chunk.c +jemalloc_chunk.po: jemalloc_chunk.c +jemalloc_chunk_dss.So: jemalloc_chunk_dss.c +jemalloc_chunk_dss.o: jemalloc_chunk_dss.c +jemalloc_chunk_dss.po: jemalloc_chunk_dss.c +jemalloc_chunk_mmap.So: jemalloc_chunk_mmap.c +jemalloc_chunk_mmap.o: jemalloc_chunk_mmap.c +jemalloc_chunk_mmap.po: jemalloc_chunk_mmap.c +jemalloc_ckh.So: jemalloc_ckh.c +jemalloc_ckh.o: jemalloc_ckh.c +jemalloc_ckh.po: jemalloc_ckh.c +jemalloc_ctl.So: jemalloc_ctl.c +jemalloc_ctl.o: jemalloc_ctl.c +jemalloc_ctl.po: jemalloc_ctl.c +jemalloc_extent.So: jemalloc_extent.c +jemalloc_extent.o: jemalloc_extent.c +jemalloc_extent.po: jemalloc_extent.c +jemalloc_hash.So: jemalloc_hash.c +jemalloc_hash.o: jemalloc_hash.c +jemalloc_hash.po: jemalloc_hash.c +jemalloc_huge.So: jemalloc_huge.c +jemalloc_huge.o: jemalloc_huge.c +jemalloc_huge.po: jemalloc_huge.c +jemalloc_jemalloc.So: jemalloc_jemalloc.c +jemalloc_jemalloc.o: jemalloc_jemalloc.c +jemalloc_jemalloc.po: jemalloc_jemalloc.c +jemalloc_mb.So: jemalloc_mb.c +jemalloc_mb.o: jemalloc_mb.c +jemalloc_mb.po: jemalloc_mb.c +jemalloc_mutex.So: jemalloc_mutex.c +jemalloc_mutex.o: jemalloc_mutex.c +jemalloc_mutex.po: jemalloc_mutex.c +jemalloc_prof.So: jemalloc_prof.c +jemalloc_prof.o: jemalloc_prof.c +jemalloc_prof.po: jemalloc_prof.c +jemalloc_quarantine.So: jemalloc_quarantine.c +jemalloc_quarantine.o: jemalloc_quarantine.c +jemalloc_quarantine.po: jemalloc_quarantine.c +jemalloc_rtree.So: jemalloc_rtree.c +jemalloc_rtree.o: jemalloc_rtree.c +jemalloc_rtree.po: jemalloc_rtree.c +jemalloc_stats.So: jemalloc_stats.c +jemalloc_stats.o: jemalloc_stats.c +jemalloc_stats.po: jemalloc_stats.c +jemalloc_tcache.So: jemalloc_tcache.c +jemalloc_tcache.o: jemalloc_tcache.c +jemalloc_tcache.po: jemalloc_tcache.c +jemalloc_tsd.So: jemalloc_tsd.c +jemalloc_tsd.o: jemalloc_tsd.c +jemalloc_tsd.po: jemalloc_tsd.c +jemalloc_util.So: jemalloc_util.c +jemalloc_util.o: jemalloc_util.c +jemalloc_util.po: jemalloc_util.c +nslexer.So: nslexer.c +nslexer.So: nsparser.h +nslexer.o: nslexer.c +nslexer.o: nsparser.h +nslexer.po: nslexer.c +nslexer.po: nsparser.h +nsparser.So: nsparser.c +nsparser.o: nsparser.c +nsparser.po: nsparser.c +subr_acl_nfs4.So: subr_acl_nfs4.c +subr_acl_nfs4.o: subr_acl_nfs4.c +subr_acl_nfs4.po: subr_acl_nfs4.c +yp_xdr.So: yp.h +yp_xdr.So: yp_xdr.c +yp_xdr.o: yp.h +yp_xdr.o: yp_xdr.c +yp_xdr.po: yp.h +yp_xdr.po: yp_xdr.c +.endif diff --git a/lib/libcalendar/Makefile.depend b/lib/libcalendar/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/lib/libcalendar/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libcam/Makefile.depend b/lib/libcam/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libcam/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libcom_err/Makefile.depend b/lib/libcom_err/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libcom_err/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libcompat/Makefile.depend b/lib/libcompat/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libcompat/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libcompiler_rt/Makefile.depend b/lib/libcompiler_rt/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/lib/libcompiler_rt/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libcrypt/Makefile.depend b/lib/libcrypt/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/libcrypt/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libdevinfo/Makefile.depend b/lib/libdevinfo/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libdevinfo/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libdevstat/Makefile.depend b/lib/libdevstat/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libdevstat/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libdisk/Makefile.depend b/lib/libdisk/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libdisk/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libdwarf/Makefile.depend b/lib/libdwarf/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libdwarf/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libedit/Makefile.depend b/lib/libedit/Makefile.depend new file mode 100644 index 000000000000..c578f2ddb27b --- /dev/null +++ b/lib/libedit/Makefile.depend @@ -0,0 +1,55 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +editline.So: common.h +editline.So: editline.c +editline.So: emacs.h +editline.So: fcns.c +editline.So: fcns.h +editline.So: help.c +editline.So: help.h +editline.So: vi.h +editline.o: common.h +editline.o: editline.c +editline.o: emacs.h +editline.o: fcns.c +editline.o: fcns.h +editline.o: help.c +editline.o: help.h +editline.o: vi.h +editline.po: common.h +editline.po: editline.c +editline.po: emacs.h +editline.po: fcns.c +editline.po: fcns.h +editline.po: help.c +editline.po: help.h +editline.po: vi.h +readline.So: common.h +readline.So: emacs.h +readline.So: fcns.h +readline.So: help.h +readline.So: vi.h +readline.o: common.h +readline.o: emacs.h +readline.o: fcns.h +readline.o: help.h +readline.o: vi.h +readline.po: common.h +readline.po: emacs.h +readline.po: fcns.h +readline.po: help.h +readline.po: vi.h +.endif diff --git a/lib/libedit/edit/readline/Makefile.depend b/lib/libedit/edit/readline/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/lib/libedit/edit/readline/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libelf/Makefile.depend b/lib/libelf/Makefile.depend new file mode 100644 index 000000000000..a2d3144f0627 --- /dev/null +++ b/lib/libelf/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +libelf_convert.So: libelf_convert.c +libelf_convert.o: libelf_convert.c +libelf_convert.po: libelf_convert.c +libelf_fsize.So: libelf_fsize.c +libelf_fsize.o: libelf_fsize.c +libelf_fsize.po: libelf_fsize.c +libelf_msize.So: libelf_msize.c +libelf_msize.o: libelf_msize.c +libelf_msize.po: libelf_msize.c +.endif diff --git a/lib/libexpat/Makefile.depend b/lib/libexpat/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libexpat/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libfetch/Makefile.depend b/lib/libfetch/Makefile.depend new file mode 100644 index 000000000000..145c1330150a --- /dev/null +++ b/lib/libfetch/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ftp.So: ftperr.h +ftp.o: ftperr.h +ftp.po: ftperr.h +http.So: httperr.h +http.o: httperr.h +http.po: httperr.h +.endif diff --git a/lib/libgeom/Makefile.depend b/lib/libgeom/Makefile.depend new file mode 100644 index 000000000000..5c540956a3ea --- /dev/null +++ b/lib/libgeom/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libexpat \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libgpib/Makefile.depend b/lib/libgpib/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/lib/libgpib/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libgssapi/Makefile.depend b/lib/libgssapi/Makefile.depend new file mode 100644 index 000000000000..11612bae582c --- /dev/null +++ b/lib/libgssapi/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/gssapi \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libipsec/Makefile.depend b/lib/libipsec/Makefile.depend new file mode 100644 index 000000000000..bced0efef752 --- /dev/null +++ b/lib/libipsec/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +policy_parse.So: policy_parse.c +policy_parse.o: policy_parse.c +policy_parse.po: policy_parse.c +policy_token.So: policy_token.c +policy_token.So: y.tab.h +policy_token.o: policy_token.c +policy_token.o: y.tab.h +policy_token.po: policy_token.c +policy_token.po: y.tab.h +.endif diff --git a/lib/libipx/Makefile.depend b/lib/libipx/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/libipx/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libjail/Makefile.depend b/lib/libjail/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/libjail/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libkiconv/Makefile.depend b/lib/libkiconv/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libkiconv/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libkvm/Makefile.depend b/lib/libkvm/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/lib/libkvm/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/liblzma/Makefile.depend b/lib/liblzma/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/liblzma/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libmagic/Makefile.depend b/lib/libmagic/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libmagic/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libmd/Makefile.depend b/lib/libmd/Makefile.depend new file mode 100644 index 000000000000..d342b5c8940a --- /dev/null +++ b/lib/libmd/Makefile.depend @@ -0,0 +1,37 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +md4hl.So: md4hl.c +md4hl.o: md4hl.c +md4hl.po: md4hl.c +md5hl.So: md5hl.c +md5hl.o: md5hl.c +md5hl.po: md5hl.c +rmd160hl.So: rmd160hl.c +rmd160hl.o: rmd160hl.c +rmd160hl.po: rmd160hl.c +sha0hl.So: sha0hl.c +sha0hl.o: sha0hl.c +sha0hl.po: sha0hl.c +sha1hl.So: sha1hl.c +sha1hl.o: sha1hl.c +sha1hl.po: sha1hl.c +sha256hl.So: sha256hl.c +sha256hl.o: sha256hl.c +sha256hl.po: sha256hl.c +sha512hl.So: sha512hl.c +sha512hl.o: sha512hl.c +sha512hl.po: sha512hl.c +.endif diff --git a/lib/libmemstat/Makefile.depend b/lib/libmemstat/Makefile.depend new file mode 100644 index 000000000000..4db4c885487b --- /dev/null +++ b/lib/libmemstat/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libmilter/Makefile.depend b/lib/libmilter/Makefile.depend new file mode 100644 index 000000000000..be77ccf5c3db --- /dev/null +++ b/lib/libmilter/Makefile.depend @@ -0,0 +1,54 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +comm.So: sm_os.h +comm.o: sm_os.h +comm.po: sm_os.h +engine.So: sm_os.h +engine.o: sm_os.h +engine.po: sm_os.h +errstring.So: sm_os.h +errstring.o: sm_os.h +errstring.po: sm_os.h +handler.So: sm_os.h +handler.o: sm_os.h +handler.po: sm_os.h +listener.So: sm_os.h +listener.o: sm_os.h +listener.po: sm_os.h +main.So: sm_os.h +main.o: sm_os.h +main.po: sm_os.h +monitor.So: sm_os.h +monitor.o: sm_os.h +monitor.po: sm_os.h +signal.So: sm_os.h +signal.o: sm_os.h +signal.po: sm_os.h +sm_gethost.So: sm_os.h +sm_gethost.o: sm_os.h +sm_gethost.po: sm_os.h +smfi.So: sm_os.h +smfi.o: sm_os.h +smfi.po: sm_os.h +strl.So: sm_os.h +strl.o: sm_os.h +strl.po: sm_os.h +worker.So: sm_os.h +worker.o: sm_os.h +worker.po: sm_os.h +.endif diff --git a/lib/libmp/Makefile.depend b/lib/libmp/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libmp/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libncp/Makefile.depend b/lib/libncp/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/lib/libncp/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libnetgraph/Makefile.depend b/lib/libnetgraph/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libnetgraph/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libngatm/Makefile.depend b/lib/libngatm/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/libngatm/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libopie/Makefile.depend b/lib/libopie/Makefile.depend new file mode 100644 index 000000000000..22f59e0fe726 --- /dev/null +++ b/lib/libopie/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libmd \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/libpam/Makefile.depend b/lib/libpam/libpam/Makefile.depend new file mode 100644 index 000000000000..5d23c5ec841f --- /dev/null +++ b/lib/libpam/libpam/Makefile.depend @@ -0,0 +1,40 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libpam/modules/pam_chroot \ + lib/libpam/modules/pam_deny \ + lib/libpam/modules/pam_echo \ + lib/libpam/modules/pam_exec \ + lib/libpam/modules/pam_ftpusers \ + lib/libpam/modules/pam_group \ + lib/libpam/modules/pam_guest \ + lib/libpam/modules/pam_krb5 \ + lib/libpam/modules/pam_ksu \ + lib/libpam/modules/pam_lastlog \ + lib/libpam/modules/pam_login_access \ + lib/libpam/modules/pam_nologin \ + lib/libpam/modules/pam_opie \ + lib/libpam/modules/pam_opieaccess \ + lib/libpam/modules/pam_passwdqc \ + lib/libpam/modules/pam_permit \ + lib/libpam/modules/pam_radius \ + lib/libpam/modules/pam_rhosts \ + lib/libpam/modules/pam_rootok \ + lib/libpam/modules/pam_securetty \ + lib/libpam/modules/pam_self \ + lib/libpam/modules/pam_ssh \ + lib/libpam/modules/pam_tacplus \ + lib/libpam/modules/pam_unix \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_chroot/Makefile.depend b/lib/libpam/modules/pam_chroot/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_chroot/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_deny/Makefile.depend b/lib/libpam/modules/pam_deny/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/lib/libpam/modules/pam_deny/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_echo/Makefile.depend b/lib/libpam/modules/pam_echo/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_echo/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_exec/Makefile.depend b/lib/libpam/modules/pam_exec/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_exec/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_ftpusers/Makefile.depend b/lib/libpam/modules/pam_ftpusers/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_ftpusers/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_group/Makefile.depend b/lib/libpam/modules/pam_group/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_group/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_guest/Makefile.depend b/lib/libpam/modules/pam_guest/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_guest/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_krb5/Makefile.depend b/lib/libpam/modules/pam_krb5/Makefile.depend new file mode 100644 index 000000000000..eb4d07598a43 --- /dev/null +++ b/lib/libpam/modules/pam_krb5/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libkrb5 \ + lib/libcom_err \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_ksu/Makefile.depend b/lib/libpam/modules/pam_ksu/Makefile.depend new file mode 100644 index 000000000000..a35745abe4cd --- /dev/null +++ b/lib/libpam/modules/pam_ksu/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libkrb5 \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_lastlog/Makefile.depend b/lib/libpam/modules/pam_lastlog/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_lastlog/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_login_access/Makefile.depend b/lib/libpam/modules/pam_login_access/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_login_access/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_nologin/Makefile.depend b/lib/libpam/modules/pam_nologin/Makefile.depend new file mode 100644 index 000000000000..4046f0e610b3 --- /dev/null +++ b/lib/libpam/modules/pam_nologin/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_opie/Makefile.depend b/lib/libpam/modules/pam_opie/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_opie/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_opieaccess/Makefile.depend b/lib/libpam/modules/pam_opieaccess/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/lib/libpam/modules/pam_opieaccess/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_passwdqc/Makefile.depend b/lib/libpam/modules/pam_passwdqc/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_passwdqc/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_permit/Makefile.depend b/lib/libpam/modules/pam_permit/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/lib/libpam/modules/pam_permit/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_radius/Makefile.depend b/lib/libpam/modules/pam_radius/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_radius/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_rhosts/Makefile.depend b/lib/libpam/modules/pam_rhosts/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_rhosts/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_rootok/Makefile.depend b/lib/libpam/modules/pam_rootok/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/lib/libpam/modules/pam_rootok/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_securetty/Makefile.depend b/lib/libpam/modules/pam_securetty/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_securetty/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_self/Makefile.depend b/lib/libpam/modules/pam_self/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/lib/libpam/modules/pam_self/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_ssh/Makefile.depend b/lib/libpam/modules/pam_ssh/Makefile.depend new file mode 100644 index 000000000000..cc2d1b6d8ff8 --- /dev/null +++ b/lib/libpam/modules/pam_ssh/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_tacplus/Makefile.depend b/lib/libpam/modules/pam_tacplus/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpam/modules/pam_tacplus/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_unix/Makefile.depend b/lib/libpam/modules/pam_unix/Makefile.depend new file mode 100644 index 000000000000..cc2d1b6d8ff8 --- /dev/null +++ b/lib/libpam/modules/pam_unix/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpcap/Makefile.depend b/lib/libpcap/Makefile.depend new file mode 100644 index 000000000000..5d469eba72fb --- /dev/null +++ b/lib/libpcap/Makefile.depend @@ -0,0 +1,32 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +grammar.So: grammar.c +grammar.o: grammar.c +grammar.po: grammar.c +pcap.So: version.h +pcap.o: version.h +pcap.po: version.h +scanner.So: scanner.c +scanner.So: tokdefs.h +scanner.o: scanner.c +scanner.o: tokdefs.h +scanner.po: scanner.c +scanner.po: tokdefs.h +version.So: version.c +version.o: version.c +version.po: version.c +.endif diff --git a/lib/libpmc/Makefile.depend b/lib/libpmc/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libpmc/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libproc/Makefile.depend b/lib/libproc/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/lib/libproc/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libprocstat/Makefile.depend b/lib/libprocstat/Makefile.depend new file mode 100644 index 000000000000..4a51c129b94f --- /dev/null +++ b/lib/libprocstat/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libkvm \ + lib/libprocstat/zfs \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libprocstat/zfs/Makefile.depend b/lib/libprocstat/zfs/Makefile.depend new file mode 100644 index 000000000000..cbc3887c1f50 --- /dev/null +++ b/lib/libprocstat/zfs/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libkvm \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libradius/Makefile.depend b/lib/libradius/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/libradius/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/librpcsec_gss/Makefile.depend b/lib/librpcsec_gss/Makefile.depend new file mode 100644 index 000000000000..5324dbcbab53 --- /dev/null +++ b/lib/librpcsec_gss/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/rpc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/librpcsvc/Makefile.depend b/lib/librpcsvc/Makefile.depend new file mode 100644 index 000000000000..c753690ede63 --- /dev/null +++ b/lib/librpcsvc/Makefile.depend @@ -0,0 +1,60 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +klm_prot_xdr.So: klm_prot_xdr.c +klm_prot_xdr.o: klm_prot_xdr.c +klm_prot_xdr.po: klm_prot_xdr.c +mount_xdr.So: mount_xdr.c +mount_xdr.o: mount_xdr.c +mount_xdr.po: mount_xdr.c +nfs_prot_xdr.So: nfs_prot_xdr.c +nfs_prot_xdr.o: nfs_prot_xdr.c +nfs_prot_xdr.po: nfs_prot_xdr.c +nlm_prot_xdr.So: nlm_prot_xdr.c +nlm_prot_xdr.o: nlm_prot_xdr.c +nlm_prot_xdr.po: nlm_prot_xdr.c +rex_xdr.So: rex_xdr.c +rex_xdr.o: rex_xdr.c +rex_xdr.po: rex_xdr.c +rnusers_xdr.So: rnusers_xdr.c +rnusers_xdr.o: rnusers_xdr.c +rnusers_xdr.po: rnusers_xdr.c +rquota_xdr.So: rquota_xdr.c +rquota_xdr.o: rquota_xdr.c +rquota_xdr.po: rquota_xdr.c +rstat_xdr.So: rstat_xdr.c +rstat_xdr.o: rstat_xdr.c +rstat_xdr.po: rstat_xdr.c +rwall_xdr.So: rwall_xdr.c +rwall_xdr.o: rwall_xdr.c +rwall_xdr.po: rwall_xdr.c +sm_inter_xdr.So: sm_inter_xdr.c +sm_inter_xdr.o: sm_inter_xdr.c +sm_inter_xdr.po: sm_inter_xdr.c +spray_xdr.So: spray_xdr.c +spray_xdr.o: spray_xdr.c +spray_xdr.po: spray_xdr.c +yppasswd_xdr.So: yppasswd_xdr.c +yppasswd_xdr.o: yppasswd_xdr.c +yppasswd_xdr.po: yppasswd_xdr.c +ypupdate_prot_xdr.So: ypupdate_prot_xdr.c +ypupdate_prot_xdr.o: ypupdate_prot_xdr.c +ypupdate_prot_xdr.po: ypupdate_prot_xdr.c +ypxfrd_xdr.So: ypxfrd_xdr.c +ypxfrd_xdr.o: ypxfrd_xdr.c +ypxfrd_xdr.po: ypxfrd_xdr.c +.endif diff --git a/lib/librt/Makefile.depend b/lib/librt/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/librt/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/librtld_db/Makefile.depend b/lib/librtld_db/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/lib/librtld_db/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libsbuf/Makefile.depend b/lib/libsbuf/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libsbuf/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libsdp/Makefile.depend b/lib/libsdp/Makefile.depend new file mode 100644 index 000000000000..47939e0fabde --- /dev/null +++ b/lib/libsdp/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libbluetooth \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libsm/Makefile.depend b/lib/libsm/Makefile.depend new file mode 100644 index 000000000000..6a23591de51e --- /dev/null +++ b/lib/libsm/Makefile.depend @@ -0,0 +1,155 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +assert.o: sm_os.h +assert.po: sm_os.h +cf.o: sm_os.h +cf.po: sm_os.h +clock.o: sm_os.h +clock.po: sm_os.h +clrerr.o: sm_os.h +clrerr.po: sm_os.h +config.o: sm_os.h +config.po: sm_os.h +debug.o: sm_os.h +debug.po: sm_os.h +errstring.o: sm_os.h +errstring.po: sm_os.h +exc.o: sm_os.h +exc.po: sm_os.h +fclose.o: sm_os.h +fclose.po: sm_os.h +feof.o: sm_os.h +feof.po: sm_os.h +ferror.o: sm_os.h +ferror.po: sm_os.h +fflush.o: sm_os.h +fflush.po: sm_os.h +fget.o: sm_os.h +fget.po: sm_os.h +findfp.o: sm_os.h +findfp.po: sm_os.h +flags.o: sm_os.h +flags.po: sm_os.h +fopen.o: sm_os.h +fopen.po: sm_os.h +fpos.o: sm_os.h +fpos.po: sm_os.h +fprintf.o: sm_os.h +fprintf.po: sm_os.h +fpurge.o: sm_os.h +fpurge.po: sm_os.h +fput.o: sm_os.h +fput.po: sm_os.h +fread.o: sm_os.h +fread.po: sm_os.h +fscanf.o: sm_os.h +fscanf.po: sm_os.h +fseek.o: sm_os.h +fseek.po: sm_os.h +fvwrite.o: sm_os.h +fvwrite.po: sm_os.h +fwalk.o: sm_os.h +fwalk.po: sm_os.h +fwrite.o: sm_os.h +fwrite.po: sm_os.h +get.o: sm_os.h +get.po: sm_os.h +heap.o: sm_os.h +heap.po: sm_os.h +ldap.o: sm_os.h +ldap.po: sm_os.h +makebuf.o: sm_os.h +makebuf.po: sm_os.h +match.o: sm_os.h +match.po: sm_os.h +mbdb.o: sm_os.h +mbdb.po: sm_os.h +memstat.o: sm_os.h +memstat.po: sm_os.h +mpeix.o: sm_os.h +mpeix.po: sm_os.h +niprop.o: sm_os.h +niprop.po: sm_os.h +path.o: sm_os.h +path.po: sm_os.h +put.o: sm_os.h +put.po: sm_os.h +refill.o: sm_os.h +refill.po: sm_os.h +rewind.o: sm_os.h +rewind.po: sm_os.h +rpool.o: sm_os.h +rpool.po: sm_os.h +sem.o: sm_os.h +sem.po: sm_os.h +setvbuf.o: sm_os.h +setvbuf.po: sm_os.h +shm.o: sm_os.h +shm.po: sm_os.h +signal.o: sm_os.h +signal.po: sm_os.h +smstdio.o: sm_os.h +smstdio.po: sm_os.h +snprintf.o: sm_os.h +snprintf.po: sm_os.h +sscanf.o: sm_os.h +sscanf.po: sm_os.h +stdio.o: sm_os.h +stdio.po: sm_os.h +strcasecmp.o: sm_os.h +strcasecmp.po: sm_os.h +strdup.o: sm_os.h +strdup.po: sm_os.h +strerror.o: sm_os.h +strerror.po: sm_os.h +strexit.o: sm_os.h +strexit.po: sm_os.h +string.o: sm_os.h +string.po: sm_os.h +stringf.o: sm_os.h +stringf.po: sm_os.h +strio.o: sm_os.h +strio.po: sm_os.h +strl.o: sm_os.h +strl.po: sm_os.h +strrevcmp.o: sm_os.h +strrevcmp.po: sm_os.h +strto.o: sm_os.h +strto.po: sm_os.h +test.o: sm_os.h +test.po: sm_os.h +ungetc.o: sm_os.h +ungetc.po: sm_os.h +util.o: sm_os.h +util.po: sm_os.h +vasprintf.o: sm_os.h +vasprintf.po: sm_os.h +vfprintf.o: sm_os.h +vfprintf.po: sm_os.h +vfscanf.o: sm_os.h +vfscanf.po: sm_os.h +vprintf.o: sm_os.h +vprintf.po: sm_os.h +vsnprintf.o: sm_os.h +vsnprintf.po: sm_os.h +wbuf.o: sm_os.h +wbuf.po: sm_os.h +wsetup.o: sm_os.h +wsetup.po: sm_os.h +xtrap.o: sm_os.h +xtrap.po: sm_os.h +.endif diff --git a/lib/libsmb/Makefile.depend b/lib/libsmb/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/lib/libsmb/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libsmdb/Makefile.depend b/lib/libsmdb/Makefile.depend new file mode 100644 index 000000000000..b8a2618cc70d --- /dev/null +++ b/lib/libsmdb/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +smdb.o: sm_os.h +smdb.po: sm_os.h +smdb1.o: sm_os.h +smdb1.po: sm_os.h +smdb2.o: sm_os.h +smdb2.po: sm_os.h +smndbm.o: sm_os.h +smndbm.po: sm_os.h +.endif diff --git a/lib/libsmutil/Makefile.depend b/lib/libsmutil/Makefile.depend new file mode 100644 index 000000000000..dac33d9219bc --- /dev/null +++ b/lib/libsmutil/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +cf.o: sm_os.h +cf.po: sm_os.h +debug.o: sm_os.h +debug.po: sm_os.h +err.o: sm_os.h +err.po: sm_os.h +lockfile.o: sm_os.h +lockfile.po: sm_os.h +safefile.o: sm_os.h +safefile.po: sm_os.h +snprintf.o: sm_os.h +snprintf.po: sm_os.h +.endif diff --git a/lib/libstand/Makefile.depend b/lib/libstand/Makefile.depend new file mode 100644 index 000000000000..cac12de3e78f --- /dev/null +++ b/lib/libstand/Makefile.depend @@ -0,0 +1,58 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libbz2 \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +_bzlib.o: _bzlib.c +_bzlib.o: libstand_bzlib_private.h +_bzlib.po: _bzlib.c +_bzlib.po: libstand_bzlib_private.h +_crctable.o: _crctable.c +_crctable.o: libstand_bzlib_private.h +_crctable.po: _crctable.c +_crctable.po: libstand_bzlib_private.h +_decompress.o: _decompress.c +_decompress.o: libstand_bzlib_private.h +_decompress.po: _decompress.c +_decompress.po: libstand_bzlib_private.h +_huffman.o: _huffman.c +_huffman.o: libstand_bzlib_private.h +_huffman.po: _huffman.c +_huffman.po: libstand_bzlib_private.h +_infback.o: _infback.c +_infback.o: libstand_zutil.h +_infback.po: _infback.c +_infback.po: libstand_zutil.h +_inffast.o: _inffast.c +_inffast.o: libstand_zutil.h +_inffast.po: _inffast.c +_inffast.po: libstand_zutil.h +_inflate.o: _inflate.c +_inflate.o: libstand_zutil.h +_inflate.po: _inflate.c +_inflate.po: libstand_zutil.h +_inftrees.o: _inftrees.c +_inftrees.o: libstand_zutil.h +_inftrees.po: _inftrees.c +_inftrees.po: libstand_zutil.h +_randtable.o: _randtable.c +_randtable.o: libstand_bzlib_private.h +_randtable.po: _randtable.c +_randtable.po: libstand_bzlib_private.h +_zutil.o: _zutil.c +_zutil.o: libstand_zutil.h +_zutil.po: _zutil.c +_zutil.po: libstand_zutil.h +.endif diff --git a/lib/libstdbuf/Makefile.depend b/lib/libstdbuf/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libstdbuf/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libstdthreads/Makefile.depend b/lib/libstdthreads/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libstdthreads/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libtacplus/Makefile.depend b/lib/libtacplus/Makefile.depend new file mode 100644 index 000000000000..22f59e0fe726 --- /dev/null +++ b/lib/libtacplus/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libmd \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libtelnet/Makefile.depend b/lib/libtelnet/Makefile.depend new file mode 100644 index 000000000000..9dc7971fb7da --- /dev/null +++ b/lib/libtelnet/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libkrb5 \ + lib/libmp \ + lib/libpam/libpam \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libthr/Makefile.depend b/lib/libthr/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/lib/libthr/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libthread_db/Makefile.depend b/lib/libthread_db/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libthread_db/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libufs/Makefile.depend b/lib/libufs/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libufs/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libugidfw/Makefile.depend b/lib/libugidfw/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libugidfw/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libulog/Makefile.depend b/lib/libulog/Makefile.depend new file mode 100644 index 000000000000..46a6d008497f --- /dev/null +++ b/lib/libulog/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libmd \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libusb/Makefile.depend b/lib/libusb/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libusb/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libusbhid/Makefile.depend b/lib/libusbhid/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libusbhid/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libutil/Makefile.depend b/lib/libutil/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/libutil/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libvgl/Makefile.depend b/lib/libvgl/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/lib/libvgl/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libwrap/Makefile.depend b/lib/libwrap/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/lib/libwrap/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/liby/Makefile.depend b/lib/liby/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/lib/liby/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libypclnt/Makefile.depend b/lib/libypclnt/Makefile.depend new file mode 100644 index 000000000000..0f7986f6ea50 --- /dev/null +++ b/lib/libypclnt/Makefile.depend @@ -0,0 +1,51 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +yp_clnt.So: yp.h +yp_clnt.So: yp_clnt.c +yp_clnt.o: yp.h +yp_clnt.o: yp_clnt.c +yp_clnt.po: yp.h +yp_clnt.po: yp_clnt.c +ypclnt_passwd.So: yppasswd_private.h +ypclnt_passwd.o: yppasswd_private.h +ypclnt_passwd.po: yppasswd_private.h +yppasswd_clnt.So: yppasswd.h +yppasswd_clnt.So: yppasswd_clnt.c +yppasswd_clnt.o: yppasswd.h +yppasswd_clnt.o: yppasswd_clnt.c +yppasswd_clnt.po: yppasswd.h +yppasswd_clnt.po: yppasswd_clnt.c +yppasswd_private_clnt.So: yppasswd_private.h +yppasswd_private_clnt.So: yppasswd_private_clnt.c +yppasswd_private_clnt.o: yppasswd_private.h +yppasswd_private_clnt.o: yppasswd_private_clnt.c +yppasswd_private_clnt.po: yppasswd_private.h +yppasswd_private_clnt.po: yppasswd_private_clnt.c +yppasswd_private_xdr.So: yppasswd_private.h +yppasswd_private_xdr.So: yppasswd_private_xdr.c +yppasswd_private_xdr.o: yppasswd_private.h +yppasswd_private_xdr.o: yppasswd_private_xdr.c +yppasswd_private_xdr.po: yppasswd_private.h +yppasswd_private_xdr.po: yppasswd_private_xdr.c +yppasswd_xdr.So: yppasswd.h +yppasswd_xdr.So: yppasswd_xdr.c +yppasswd_xdr.o: yppasswd.h +yppasswd_xdr.o: yppasswd_xdr.c +yppasswd_xdr.po: yppasswd.h +yppasswd_xdr.po: yppasswd_xdr.c +.endif diff --git a/lib/libz/Makefile.depend b/lib/libz/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libz/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/msun/Makefile b/lib/msun/Makefile index 0646dc05d6da..cfa6ceba07e6 100644 --- a/lib/msun/Makefile +++ b/lib/msun/Makefile @@ -31,6 +31,8 @@ CFLAGS+= -I${.CURDIR}/ld80 CFLAGS+= -I${.CURDIR}/ld128 .endif +CFLAGS+= -I${.CURDIR}/${ARCH_SUBDIR} + .PATH: ${.CURDIR}/bsdsrc .PATH: ${.CURDIR}/src .PATH: ${.CURDIR}/man diff --git a/lib/msun/Makefile.depend b/lib/msun/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/lib/msun/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/ncurses/form/Makefile.depend b/lib/ncurses/form/Makefile.depend new file mode 100644 index 000000000000..2ca7d7ac721b --- /dev/null +++ b/lib/ncurses/form/Makefile.depend @@ -0,0 +1,134 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +fld_arg.So: ncurses_def.h +fld_arg.o: ncurses_def.h +fld_arg.po: ncurses_def.h +fld_attr.So: ncurses_def.h +fld_attr.o: ncurses_def.h +fld_attr.po: ncurses_def.h +fld_current.So: ncurses_def.h +fld_current.o: ncurses_def.h +fld_current.po: ncurses_def.h +fld_def.So: ncurses_def.h +fld_def.o: ncurses_def.h +fld_def.po: ncurses_def.h +fld_dup.So: ncurses_def.h +fld_dup.o: ncurses_def.h +fld_dup.po: ncurses_def.h +fld_ftchoice.So: ncurses_def.h +fld_ftchoice.o: ncurses_def.h +fld_ftchoice.po: ncurses_def.h +fld_ftlink.So: ncurses_def.h +fld_ftlink.o: ncurses_def.h +fld_ftlink.po: ncurses_def.h +fld_info.So: ncurses_def.h +fld_info.o: ncurses_def.h +fld_info.po: ncurses_def.h +fld_just.So: ncurses_def.h +fld_just.o: ncurses_def.h +fld_just.po: ncurses_def.h +fld_link.So: ncurses_def.h +fld_link.o: ncurses_def.h +fld_link.po: ncurses_def.h +fld_max.So: ncurses_def.h +fld_max.o: ncurses_def.h +fld_max.po: ncurses_def.h +fld_move.So: ncurses_def.h +fld_move.o: ncurses_def.h +fld_move.po: ncurses_def.h +fld_newftyp.So: ncurses_def.h +fld_newftyp.o: ncurses_def.h +fld_newftyp.po: ncurses_def.h +fld_opts.So: ncurses_def.h +fld_opts.o: ncurses_def.h +fld_opts.po: ncurses_def.h +fld_pad.So: ncurses_def.h +fld_pad.o: ncurses_def.h +fld_pad.po: ncurses_def.h +fld_page.So: ncurses_def.h +fld_page.o: ncurses_def.h +fld_page.po: ncurses_def.h +fld_stat.So: ncurses_def.h +fld_stat.o: ncurses_def.h +fld_stat.po: ncurses_def.h +fld_type.So: ncurses_def.h +fld_type.o: ncurses_def.h +fld_type.po: ncurses_def.h +fld_user.So: ncurses_def.h +fld_user.o: ncurses_def.h +fld_user.po: ncurses_def.h +frm_cursor.So: ncurses_def.h +frm_cursor.o: ncurses_def.h +frm_cursor.po: ncurses_def.h +frm_data.So: ncurses_def.h +frm_data.o: ncurses_def.h +frm_data.po: ncurses_def.h +frm_def.So: ncurses_def.h +frm_def.o: ncurses_def.h +frm_def.po: ncurses_def.h +frm_driver.So: ncurses_def.h +frm_driver.o: ncurses_def.h +frm_driver.po: ncurses_def.h +frm_hook.So: ncurses_def.h +frm_hook.o: ncurses_def.h +frm_hook.po: ncurses_def.h +frm_opts.So: ncurses_def.h +frm_opts.o: ncurses_def.h +frm_opts.po: ncurses_def.h +frm_page.So: ncurses_def.h +frm_page.o: ncurses_def.h +frm_page.po: ncurses_def.h +frm_post.So: ncurses_def.h +frm_post.o: ncurses_def.h +frm_post.po: ncurses_def.h +frm_req_name.So: ncurses_def.h +frm_req_name.o: ncurses_def.h +frm_req_name.po: ncurses_def.h +frm_scale.So: ncurses_def.h +frm_scale.o: ncurses_def.h +frm_scale.po: ncurses_def.h +frm_sub.So: ncurses_def.h +frm_sub.o: ncurses_def.h +frm_sub.po: ncurses_def.h +frm_user.So: ncurses_def.h +frm_user.o: ncurses_def.h +frm_user.po: ncurses_def.h +frm_win.So: ncurses_def.h +frm_win.o: ncurses_def.h +frm_win.po: ncurses_def.h +fty_alnum.So: ncurses_def.h +fty_alnum.o: ncurses_def.h +fty_alnum.po: ncurses_def.h +fty_alpha.So: ncurses_def.h +fty_alpha.o: ncurses_def.h +fty_alpha.po: ncurses_def.h +fty_enum.So: ncurses_def.h +fty_enum.o: ncurses_def.h +fty_enum.po: ncurses_def.h +fty_int.So: ncurses_def.h +fty_int.o: ncurses_def.h +fty_int.po: ncurses_def.h +fty_ipv4.So: ncurses_def.h +fty_ipv4.o: ncurses_def.h +fty_ipv4.po: ncurses_def.h +fty_num.So: ncurses_def.h +fty_num.o: ncurses_def.h +fty_num.po: ncurses_def.h +fty_regex.So: ncurses_def.h +fty_regex.o: ncurses_def.h +fty_regex.po: ncurses_def.h +.endif diff --git a/lib/ncurses/formw/Makefile.depend b/lib/ncurses/formw/Makefile.depend new file mode 100644 index 000000000000..f21c8a284641 --- /dev/null +++ b/lib/ncurses/formw/Makefile.depend @@ -0,0 +1,134 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +fld_arg.So: ncurses_def.h +fld_arg.o: ncurses_def.h +fld_arg.po: ncurses_def.h +fld_attr.So: ncurses_def.h +fld_attr.o: ncurses_def.h +fld_attr.po: ncurses_def.h +fld_current.So: ncurses_def.h +fld_current.o: ncurses_def.h +fld_current.po: ncurses_def.h +fld_def.So: ncurses_def.h +fld_def.o: ncurses_def.h +fld_def.po: ncurses_def.h +fld_dup.So: ncurses_def.h +fld_dup.o: ncurses_def.h +fld_dup.po: ncurses_def.h +fld_ftchoice.So: ncurses_def.h +fld_ftchoice.o: ncurses_def.h +fld_ftchoice.po: ncurses_def.h +fld_ftlink.So: ncurses_def.h +fld_ftlink.o: ncurses_def.h +fld_ftlink.po: ncurses_def.h +fld_info.So: ncurses_def.h +fld_info.o: ncurses_def.h +fld_info.po: ncurses_def.h +fld_just.So: ncurses_def.h +fld_just.o: ncurses_def.h +fld_just.po: ncurses_def.h +fld_link.So: ncurses_def.h +fld_link.o: ncurses_def.h +fld_link.po: ncurses_def.h +fld_max.So: ncurses_def.h +fld_max.o: ncurses_def.h +fld_max.po: ncurses_def.h +fld_move.So: ncurses_def.h +fld_move.o: ncurses_def.h +fld_move.po: ncurses_def.h +fld_newftyp.So: ncurses_def.h +fld_newftyp.o: ncurses_def.h +fld_newftyp.po: ncurses_def.h +fld_opts.So: ncurses_def.h +fld_opts.o: ncurses_def.h +fld_opts.po: ncurses_def.h +fld_pad.So: ncurses_def.h +fld_pad.o: ncurses_def.h +fld_pad.po: ncurses_def.h +fld_page.So: ncurses_def.h +fld_page.o: ncurses_def.h +fld_page.po: ncurses_def.h +fld_stat.So: ncurses_def.h +fld_stat.o: ncurses_def.h +fld_stat.po: ncurses_def.h +fld_type.So: ncurses_def.h +fld_type.o: ncurses_def.h +fld_type.po: ncurses_def.h +fld_user.So: ncurses_def.h +fld_user.o: ncurses_def.h +fld_user.po: ncurses_def.h +frm_cursor.So: ncurses_def.h +frm_cursor.o: ncurses_def.h +frm_cursor.po: ncurses_def.h +frm_data.So: ncurses_def.h +frm_data.o: ncurses_def.h +frm_data.po: ncurses_def.h +frm_def.So: ncurses_def.h +frm_def.o: ncurses_def.h +frm_def.po: ncurses_def.h +frm_driver.So: ncurses_def.h +frm_driver.o: ncurses_def.h +frm_driver.po: ncurses_def.h +frm_hook.So: ncurses_def.h +frm_hook.o: ncurses_def.h +frm_hook.po: ncurses_def.h +frm_opts.So: ncurses_def.h +frm_opts.o: ncurses_def.h +frm_opts.po: ncurses_def.h +frm_page.So: ncurses_def.h +frm_page.o: ncurses_def.h +frm_page.po: ncurses_def.h +frm_post.So: ncurses_def.h +frm_post.o: ncurses_def.h +frm_post.po: ncurses_def.h +frm_req_name.So: ncurses_def.h +frm_req_name.o: ncurses_def.h +frm_req_name.po: ncurses_def.h +frm_scale.So: ncurses_def.h +frm_scale.o: ncurses_def.h +frm_scale.po: ncurses_def.h +frm_sub.So: ncurses_def.h +frm_sub.o: ncurses_def.h +frm_sub.po: ncurses_def.h +frm_user.So: ncurses_def.h +frm_user.o: ncurses_def.h +frm_user.po: ncurses_def.h +frm_win.So: ncurses_def.h +frm_win.o: ncurses_def.h +frm_win.po: ncurses_def.h +fty_alnum.So: ncurses_def.h +fty_alnum.o: ncurses_def.h +fty_alnum.po: ncurses_def.h +fty_alpha.So: ncurses_def.h +fty_alpha.o: ncurses_def.h +fty_alpha.po: ncurses_def.h +fty_enum.So: ncurses_def.h +fty_enum.o: ncurses_def.h +fty_enum.po: ncurses_def.h +fty_int.So: ncurses_def.h +fty_int.o: ncurses_def.h +fty_int.po: ncurses_def.h +fty_ipv4.So: ncurses_def.h +fty_ipv4.o: ncurses_def.h +fty_ipv4.po: ncurses_def.h +fty_num.So: ncurses_def.h +fty_num.o: ncurses_def.h +fty_num.po: ncurses_def.h +fty_regex.So: ncurses_def.h +fty_regex.o: ncurses_def.h +fty_regex.po: ncurses_def.h +.endif diff --git a/lib/ncurses/menu/Makefile.depend b/lib/ncurses/menu/Makefile.depend new file mode 100644 index 000000000000..b4dee6d44fa8 --- /dev/null +++ b/lib/ncurses/menu/Makefile.depend @@ -0,0 +1,95 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +m_attribs.So: ncurses_def.h +m_attribs.o: ncurses_def.h +m_attribs.po: ncurses_def.h +m_cursor.So: ncurses_def.h +m_cursor.o: ncurses_def.h +m_cursor.po: ncurses_def.h +m_driver.So: ncurses_def.h +m_driver.o: ncurses_def.h +m_driver.po: ncurses_def.h +m_format.So: ncurses_def.h +m_format.o: ncurses_def.h +m_format.po: ncurses_def.h +m_global.So: ncurses_def.h +m_global.o: ncurses_def.h +m_global.po: ncurses_def.h +m_hook.So: ncurses_def.h +m_hook.o: ncurses_def.h +m_hook.po: ncurses_def.h +m_item_cur.So: ncurses_def.h +m_item_cur.o: ncurses_def.h +m_item_cur.po: ncurses_def.h +m_item_nam.So: ncurses_def.h +m_item_nam.o: ncurses_def.h +m_item_nam.po: ncurses_def.h +m_item_new.So: ncurses_def.h +m_item_new.o: ncurses_def.h +m_item_new.po: ncurses_def.h +m_item_opt.So: ncurses_def.h +m_item_opt.o: ncurses_def.h +m_item_opt.po: ncurses_def.h +m_item_top.So: ncurses_def.h +m_item_top.o: ncurses_def.h +m_item_top.po: ncurses_def.h +m_item_use.So: ncurses_def.h +m_item_use.o: ncurses_def.h +m_item_use.po: ncurses_def.h +m_item_val.So: ncurses_def.h +m_item_val.o: ncurses_def.h +m_item_val.po: ncurses_def.h +m_item_vis.So: ncurses_def.h +m_item_vis.o: ncurses_def.h +m_item_vis.po: ncurses_def.h +m_items.So: ncurses_def.h +m_items.o: ncurses_def.h +m_items.po: ncurses_def.h +m_new.So: ncurses_def.h +m_new.o: ncurses_def.h +m_new.po: ncurses_def.h +m_opts.So: ncurses_def.h +m_opts.o: ncurses_def.h +m_opts.po: ncurses_def.h +m_pad.So: ncurses_def.h +m_pad.o: ncurses_def.h +m_pad.po: ncurses_def.h +m_pattern.So: ncurses_def.h +m_pattern.o: ncurses_def.h +m_pattern.po: ncurses_def.h +m_post.So: ncurses_def.h +m_post.o: ncurses_def.h +m_post.po: ncurses_def.h +m_req_name.So: ncurses_def.h +m_req_name.o: ncurses_def.h +m_req_name.po: ncurses_def.h +m_scale.So: ncurses_def.h +m_scale.o: ncurses_def.h +m_scale.po: ncurses_def.h +m_spacing.So: ncurses_def.h +m_spacing.o: ncurses_def.h +m_spacing.po: ncurses_def.h +m_sub.So: ncurses_def.h +m_sub.o: ncurses_def.h +m_sub.po: ncurses_def.h +m_userptr.So: ncurses_def.h +m_userptr.o: ncurses_def.h +m_userptr.po: ncurses_def.h +m_win.So: ncurses_def.h +m_win.o: ncurses_def.h +m_win.po: ncurses_def.h +.endif diff --git a/lib/ncurses/menuw/Makefile.depend b/lib/ncurses/menuw/Makefile.depend new file mode 100644 index 000000000000..023241d4948c --- /dev/null +++ b/lib/ncurses/menuw/Makefile.depend @@ -0,0 +1,95 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +m_attribs.So: ncurses_def.h +m_attribs.o: ncurses_def.h +m_attribs.po: ncurses_def.h +m_cursor.So: ncurses_def.h +m_cursor.o: ncurses_def.h +m_cursor.po: ncurses_def.h +m_driver.So: ncurses_def.h +m_driver.o: ncurses_def.h +m_driver.po: ncurses_def.h +m_format.So: ncurses_def.h +m_format.o: ncurses_def.h +m_format.po: ncurses_def.h +m_global.So: ncurses_def.h +m_global.o: ncurses_def.h +m_global.po: ncurses_def.h +m_hook.So: ncurses_def.h +m_hook.o: ncurses_def.h +m_hook.po: ncurses_def.h +m_item_cur.So: ncurses_def.h +m_item_cur.o: ncurses_def.h +m_item_cur.po: ncurses_def.h +m_item_nam.So: ncurses_def.h +m_item_nam.o: ncurses_def.h +m_item_nam.po: ncurses_def.h +m_item_new.So: ncurses_def.h +m_item_new.o: ncurses_def.h +m_item_new.po: ncurses_def.h +m_item_opt.So: ncurses_def.h +m_item_opt.o: ncurses_def.h +m_item_opt.po: ncurses_def.h +m_item_top.So: ncurses_def.h +m_item_top.o: ncurses_def.h +m_item_top.po: ncurses_def.h +m_item_use.So: ncurses_def.h +m_item_use.o: ncurses_def.h +m_item_use.po: ncurses_def.h +m_item_val.So: ncurses_def.h +m_item_val.o: ncurses_def.h +m_item_val.po: ncurses_def.h +m_item_vis.So: ncurses_def.h +m_item_vis.o: ncurses_def.h +m_item_vis.po: ncurses_def.h +m_items.So: ncurses_def.h +m_items.o: ncurses_def.h +m_items.po: ncurses_def.h +m_new.So: ncurses_def.h +m_new.o: ncurses_def.h +m_new.po: ncurses_def.h +m_opts.So: ncurses_def.h +m_opts.o: ncurses_def.h +m_opts.po: ncurses_def.h +m_pad.So: ncurses_def.h +m_pad.o: ncurses_def.h +m_pad.po: ncurses_def.h +m_pattern.So: ncurses_def.h +m_pattern.o: ncurses_def.h +m_pattern.po: ncurses_def.h +m_post.So: ncurses_def.h +m_post.o: ncurses_def.h +m_post.po: ncurses_def.h +m_req_name.So: ncurses_def.h +m_req_name.o: ncurses_def.h +m_req_name.po: ncurses_def.h +m_scale.So: ncurses_def.h +m_scale.o: ncurses_def.h +m_scale.po: ncurses_def.h +m_spacing.So: ncurses_def.h +m_spacing.o: ncurses_def.h +m_spacing.po: ncurses_def.h +m_sub.So: ncurses_def.h +m_sub.o: ncurses_def.h +m_sub.po: ncurses_def.h +m_userptr.So: ncurses_def.h +m_userptr.o: ncurses_def.h +m_userptr.po: ncurses_def.h +m_win.So: ncurses_def.h +m_win.o: ncurses_def.h +m_win.po: ncurses_def.h +.endif diff --git a/lib/ncurses/ncurses/Makefile.depend b/lib/ncurses/ncurses/Makefile.depend new file mode 100644 index 000000000000..6cc2521fa3f9 --- /dev/null +++ b/lib/ncurses/ncurses/Makefile.depend @@ -0,0 +1,1807 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +access.So: curses.h +access.So: ncurses_def.h +access.So: term.h +access.So: unctrl.h +access.o: curses.h +access.o: ncurses_def.h +access.o: term.h +access.o: unctrl.h +access.po: curses.h +access.po: ncurses_def.h +access.po: term.h +access.po: unctrl.h +add_tries.So: curses.h +add_tries.So: ncurses_def.h +add_tries.So: term.h +add_tries.So: unctrl.h +add_tries.o: curses.h +add_tries.o: ncurses_def.h +add_tries.o: term.h +add_tries.o: unctrl.h +add_tries.po: curses.h +add_tries.po: ncurses_def.h +add_tries.po: term.h +add_tries.po: unctrl.h +alloc_entry.So: curses.h +alloc_entry.So: ncurses_def.h +alloc_entry.So: term.h +alloc_entry.So: unctrl.h +alloc_entry.o: curses.h +alloc_entry.o: ncurses_def.h +alloc_entry.o: term.h +alloc_entry.o: unctrl.h +alloc_entry.po: curses.h +alloc_entry.po: ncurses_def.h +alloc_entry.po: term.h +alloc_entry.po: unctrl.h +alloc_ttype.So: curses.h +alloc_ttype.So: ncurses_def.h +alloc_ttype.So: term.h +alloc_ttype.So: unctrl.h +alloc_ttype.o: curses.h +alloc_ttype.o: ncurses_def.h +alloc_ttype.o: term.h +alloc_ttype.o: unctrl.h +alloc_ttype.po: curses.h +alloc_ttype.po: ncurses_def.h +alloc_ttype.po: term.h +alloc_ttype.po: unctrl.h +captoinfo.So: curses.h +captoinfo.So: ncurses_def.h +captoinfo.So: term.h +captoinfo.So: unctrl.h +captoinfo.o: curses.h +captoinfo.o: ncurses_def.h +captoinfo.o: term.h +captoinfo.o: unctrl.h +captoinfo.po: curses.h +captoinfo.po: ncurses_def.h +captoinfo.po: term.h +captoinfo.po: unctrl.h +codes.So: codes.c +codes.So: curses.h +codes.So: ncurses_def.h +codes.So: term.h +codes.So: unctrl.h +codes.o: codes.c +codes.o: curses.h +codes.o: ncurses_def.h +codes.o: term.h +codes.o: unctrl.h +codes.po: codes.c +codes.po: curses.h +codes.po: ncurses_def.h +codes.po: term.h +codes.po: unctrl.h +comp_captab.So: comp_captab.c +comp_captab.So: curses.h +comp_captab.So: hashsize.h +comp_captab.So: ncurses_def.h +comp_captab.So: term.h +comp_captab.So: unctrl.h +comp_captab.o: comp_captab.c +comp_captab.o: curses.h +comp_captab.o: hashsize.h +comp_captab.o: ncurses_def.h +comp_captab.o: term.h +comp_captab.o: unctrl.h +comp_captab.po: comp_captab.c +comp_captab.po: curses.h +comp_captab.po: hashsize.h +comp_captab.po: ncurses_def.h +comp_captab.po: term.h +comp_captab.po: unctrl.h +comp_error.So: curses.h +comp_error.So: ncurses_def.h +comp_error.So: term.h +comp_error.So: unctrl.h +comp_error.o: curses.h +comp_error.o: ncurses_def.h +comp_error.o: term.h +comp_error.o: unctrl.h +comp_error.po: curses.h +comp_error.po: ncurses_def.h +comp_error.po: term.h +comp_error.po: unctrl.h +comp_expand.So: curses.h +comp_expand.So: ncurses_def.h +comp_expand.So: term.h +comp_expand.So: unctrl.h +comp_expand.o: curses.h +comp_expand.o: ncurses_def.h +comp_expand.o: term.h +comp_expand.o: unctrl.h +comp_expand.po: curses.h +comp_expand.po: ncurses_def.h +comp_expand.po: term.h +comp_expand.po: unctrl.h +comp_hash.So: curses.h +comp_hash.So: hashsize.h +comp_hash.So: ncurses_def.h +comp_hash.So: term.h +comp_hash.So: unctrl.h +comp_hash.o: curses.h +comp_hash.o: hashsize.h +comp_hash.o: ncurses_def.h +comp_hash.o: term.h +comp_hash.o: unctrl.h +comp_hash.po: curses.h +comp_hash.po: hashsize.h +comp_hash.po: ncurses_def.h +comp_hash.po: term.h +comp_hash.po: unctrl.h +comp_parse.So: curses.h +comp_parse.So: ncurses_def.h +comp_parse.So: term.h +comp_parse.So: unctrl.h +comp_parse.o: curses.h +comp_parse.o: ncurses_def.h +comp_parse.o: term.h +comp_parse.o: unctrl.h +comp_parse.po: curses.h +comp_parse.po: ncurses_def.h +comp_parse.po: term.h +comp_parse.po: unctrl.h +comp_scan.So: curses.h +comp_scan.So: ncurses_def.h +comp_scan.So: term.h +comp_scan.So: unctrl.h +comp_scan.o: curses.h +comp_scan.o: ncurses_def.h +comp_scan.o: term.h +comp_scan.o: unctrl.h +comp_scan.po: curses.h +comp_scan.po: ncurses_def.h +comp_scan.po: term.h +comp_scan.po: unctrl.h +db_iterator.So: curses.h +db_iterator.So: ncurses_def.h +db_iterator.So: term.h +db_iterator.So: unctrl.h +db_iterator.o: curses.h +db_iterator.o: ncurses_def.h +db_iterator.o: term.h +db_iterator.o: unctrl.h +db_iterator.po: curses.h +db_iterator.po: ncurses_def.h +db_iterator.po: term.h +db_iterator.po: unctrl.h +define_key.So: curses.h +define_key.So: ncurses_def.h +define_key.So: term.h +define_key.So: unctrl.h +define_key.o: curses.h +define_key.o: ncurses_def.h +define_key.o: term.h +define_key.o: unctrl.h +define_key.po: curses.h +define_key.po: ncurses_def.h +define_key.po: term.h +define_key.po: unctrl.h +doalloc.So: curses.h +doalloc.So: ncurses_def.h +doalloc.So: term.h +doalloc.So: unctrl.h +doalloc.o: curses.h +doalloc.o: ncurses_def.h +doalloc.o: term.h +doalloc.o: unctrl.h +doalloc.po: curses.h +doalloc.po: ncurses_def.h +doalloc.po: term.h +doalloc.po: unctrl.h +entries.So: curses.h +entries.So: ncurses_def.h +entries.So: term.h +entries.So: unctrl.h +entries.o: curses.h +entries.o: ncurses_def.h +entries.o: term.h +entries.o: unctrl.h +entries.po: curses.h +entries.po: ncurses_def.h +entries.po: term.h +entries.po: unctrl.h +expanded.So: curses.h +expanded.So: expanded.c +expanded.So: ncurses_def.h +expanded.So: term.h +expanded.So: unctrl.h +expanded.o: curses.h +expanded.o: expanded.c +expanded.o: ncurses_def.h +expanded.o: term.h +expanded.o: unctrl.h +expanded.po: curses.h +expanded.po: expanded.c +expanded.po: ncurses_def.h +expanded.po: term.h +expanded.po: unctrl.h +fallback.So: curses.h +fallback.So: fallback.c +fallback.So: ncurses_def.h +fallback.So: term.h +fallback.So: unctrl.h +fallback.o: curses.h +fallback.o: fallback.c +fallback.o: ncurses_def.h +fallback.o: term.h +fallback.o: unctrl.h +fallback.po: curses.h +fallback.po: fallback.c +fallback.po: ncurses_def.h +fallback.po: term.h +fallback.po: unctrl.h +free_ttype.So: curses.h +free_ttype.So: ncurses_def.h +free_ttype.So: term.h +free_ttype.So: unctrl.h +free_ttype.o: curses.h +free_ttype.o: ncurses_def.h +free_ttype.o: term.h +free_ttype.o: unctrl.h +free_ttype.po: curses.h +free_ttype.po: ncurses_def.h +free_ttype.po: term.h +free_ttype.po: unctrl.h +getenv_num.So: curses.h +getenv_num.So: ncurses_def.h +getenv_num.So: term.h +getenv_num.So: unctrl.h +getenv_num.o: curses.h +getenv_num.o: ncurses_def.h +getenv_num.o: term.h +getenv_num.o: unctrl.h +getenv_num.po: curses.h +getenv_num.po: ncurses_def.h +getenv_num.po: term.h +getenv_num.po: unctrl.h +hardscroll.So: curses.h +hardscroll.So: ncurses_def.h +hardscroll.So: term.h +hardscroll.So: unctrl.h +hardscroll.o: curses.h +hardscroll.o: ncurses_def.h +hardscroll.o: term.h +hardscroll.o: unctrl.h +hardscroll.po: curses.h +hardscroll.po: ncurses_def.h +hardscroll.po: term.h +hardscroll.po: unctrl.h +hashed_db.So: curses.h +hashed_db.So: ncurses_def.h +hashed_db.So: term.h +hashed_db.So: unctrl.h +hashed_db.o: curses.h +hashed_db.o: ncurses_def.h +hashed_db.o: term.h +hashed_db.o: unctrl.h +hashed_db.po: curses.h +hashed_db.po: ncurses_def.h +hashed_db.po: term.h +hashed_db.po: unctrl.h +hashmap.So: curses.h +hashmap.So: ncurses_def.h +hashmap.So: term.h +hashmap.So: unctrl.h +hashmap.o: curses.h +hashmap.o: ncurses_def.h +hashmap.o: term.h +hashmap.o: unctrl.h +hashmap.po: curses.h +hashmap.po: ncurses_def.h +hashmap.po: term.h +hashmap.po: unctrl.h +home_terminfo.So: curses.h +home_terminfo.So: ncurses_def.h +home_terminfo.So: term.h +home_terminfo.So: unctrl.h +home_terminfo.o: curses.h +home_terminfo.o: ncurses_def.h +home_terminfo.o: term.h +home_terminfo.o: unctrl.h +home_terminfo.po: curses.h +home_terminfo.po: ncurses_def.h +home_terminfo.po: term.h +home_terminfo.po: unctrl.h +init_keytry.So: curses.h +init_keytry.So: init_keytry.h +init_keytry.So: ncurses_def.h +init_keytry.So: term.h +init_keytry.So: unctrl.h +init_keytry.o: curses.h +init_keytry.o: init_keytry.h +init_keytry.o: ncurses_def.h +init_keytry.o: term.h +init_keytry.o: unctrl.h +init_keytry.po: curses.h +init_keytry.po: init_keytry.h +init_keytry.po: ncurses_def.h +init_keytry.po: term.h +init_keytry.po: unctrl.h +key_defined.So: curses.h +key_defined.So: ncurses_def.h +key_defined.So: term.h +key_defined.So: unctrl.h +key_defined.o: curses.h +key_defined.o: ncurses_def.h +key_defined.o: term.h +key_defined.o: unctrl.h +key_defined.po: curses.h +key_defined.po: ncurses_def.h +key_defined.po: term.h +key_defined.po: unctrl.h +keybound.So: curses.h +keybound.So: ncurses_def.h +keybound.So: term.h +keybound.So: unctrl.h +keybound.o: curses.h +keybound.o: ncurses_def.h +keybound.o: term.h +keybound.o: unctrl.h +keybound.po: curses.h +keybound.po: ncurses_def.h +keybound.po: term.h +keybound.po: unctrl.h +keyok.So: curses.h +keyok.So: ncurses_def.h +keyok.So: term.h +keyok.So: unctrl.h +keyok.o: curses.h +keyok.o: ncurses_def.h +keyok.o: term.h +keyok.o: unctrl.h +keyok.po: curses.h +keyok.po: ncurses_def.h +keyok.po: term.h +keyok.po: unctrl.h +legacy_coding.So: curses.h +legacy_coding.So: ncurses_def.h +legacy_coding.So: term.h +legacy_coding.So: unctrl.h +legacy_coding.o: curses.h +legacy_coding.o: ncurses_def.h +legacy_coding.o: term.h +legacy_coding.o: unctrl.h +legacy_coding.po: curses.h +legacy_coding.po: ncurses_def.h +legacy_coding.po: term.h +legacy_coding.po: unctrl.h +lib_acs.So: curses.h +lib_acs.So: ncurses_def.h +lib_acs.So: term.h +lib_acs.So: unctrl.h +lib_acs.o: curses.h +lib_acs.o: ncurses_def.h +lib_acs.o: term.h +lib_acs.o: unctrl.h +lib_acs.po: curses.h +lib_acs.po: ncurses_def.h +lib_acs.po: term.h +lib_acs.po: unctrl.h +lib_addch.So: curses.h +lib_addch.So: ncurses_def.h +lib_addch.So: term.h +lib_addch.So: unctrl.h +lib_addch.o: curses.h +lib_addch.o: ncurses_def.h +lib_addch.o: term.h +lib_addch.o: unctrl.h +lib_addch.po: curses.h +lib_addch.po: ncurses_def.h +lib_addch.po: term.h +lib_addch.po: unctrl.h +lib_addstr.So: curses.h +lib_addstr.So: ncurses_def.h +lib_addstr.So: term.h +lib_addstr.So: unctrl.h +lib_addstr.o: curses.h +lib_addstr.o: ncurses_def.h +lib_addstr.o: term.h +lib_addstr.o: unctrl.h +lib_addstr.po: curses.h +lib_addstr.po: ncurses_def.h +lib_addstr.po: term.h +lib_addstr.po: unctrl.h +lib_baudrate.So: curses.h +lib_baudrate.So: ncurses_def.h +lib_baudrate.So: term.h +lib_baudrate.So: termcap.h +lib_baudrate.So: unctrl.h +lib_baudrate.o: curses.h +lib_baudrate.o: ncurses_def.h +lib_baudrate.o: term.h +lib_baudrate.o: termcap.h +lib_baudrate.o: unctrl.h +lib_baudrate.po: curses.h +lib_baudrate.po: ncurses_def.h +lib_baudrate.po: term.h +lib_baudrate.po: termcap.h +lib_baudrate.po: unctrl.h +lib_beep.So: curses.h +lib_beep.So: ncurses_def.h +lib_beep.So: term.h +lib_beep.So: unctrl.h +lib_beep.o: curses.h +lib_beep.o: ncurses_def.h +lib_beep.o: term.h +lib_beep.o: unctrl.h +lib_beep.po: curses.h +lib_beep.po: ncurses_def.h +lib_beep.po: term.h +lib_beep.po: unctrl.h +lib_bkgd.So: curses.h +lib_bkgd.So: ncurses_def.h +lib_bkgd.So: term.h +lib_bkgd.So: unctrl.h +lib_bkgd.o: curses.h +lib_bkgd.o: ncurses_def.h +lib_bkgd.o: term.h +lib_bkgd.o: unctrl.h +lib_bkgd.po: curses.h +lib_bkgd.po: ncurses_def.h +lib_bkgd.po: term.h +lib_bkgd.po: unctrl.h +lib_box.So: curses.h +lib_box.So: ncurses_def.h +lib_box.So: term.h +lib_box.So: unctrl.h +lib_box.o: curses.h +lib_box.o: ncurses_def.h +lib_box.o: term.h +lib_box.o: unctrl.h +lib_box.po: curses.h +lib_box.po: ncurses_def.h +lib_box.po: term.h +lib_box.po: unctrl.h +lib_chgat.So: curses.h +lib_chgat.So: ncurses_def.h +lib_chgat.So: term.h +lib_chgat.So: unctrl.h +lib_chgat.o: curses.h +lib_chgat.o: ncurses_def.h +lib_chgat.o: term.h +lib_chgat.o: unctrl.h +lib_chgat.po: curses.h +lib_chgat.po: ncurses_def.h +lib_chgat.po: term.h +lib_chgat.po: unctrl.h +lib_clear.So: curses.h +lib_clear.So: ncurses_def.h +lib_clear.So: term.h +lib_clear.So: unctrl.h +lib_clear.o: curses.h +lib_clear.o: ncurses_def.h +lib_clear.o: term.h +lib_clear.o: unctrl.h +lib_clear.po: curses.h +lib_clear.po: ncurses_def.h +lib_clear.po: term.h +lib_clear.po: unctrl.h +lib_clearok.So: curses.h +lib_clearok.So: ncurses_def.h +lib_clearok.So: term.h +lib_clearok.So: unctrl.h +lib_clearok.o: curses.h +lib_clearok.o: ncurses_def.h +lib_clearok.o: term.h +lib_clearok.o: unctrl.h +lib_clearok.po: curses.h +lib_clearok.po: ncurses_def.h +lib_clearok.po: term.h +lib_clearok.po: unctrl.h +lib_clrbot.So: curses.h +lib_clrbot.So: ncurses_def.h +lib_clrbot.So: term.h +lib_clrbot.So: unctrl.h +lib_clrbot.o: curses.h +lib_clrbot.o: ncurses_def.h +lib_clrbot.o: term.h +lib_clrbot.o: unctrl.h +lib_clrbot.po: curses.h +lib_clrbot.po: ncurses_def.h +lib_clrbot.po: term.h +lib_clrbot.po: unctrl.h +lib_clreol.So: curses.h +lib_clreol.So: ncurses_def.h +lib_clreol.So: term.h +lib_clreol.So: unctrl.h +lib_clreol.o: curses.h +lib_clreol.o: ncurses_def.h +lib_clreol.o: term.h +lib_clreol.o: unctrl.h +lib_clreol.po: curses.h +lib_clreol.po: ncurses_def.h +lib_clreol.po: term.h +lib_clreol.po: unctrl.h +lib_color.So: curses.h +lib_color.So: ncurses_def.h +lib_color.So: term.h +lib_color.So: unctrl.h +lib_color.o: curses.h +lib_color.o: ncurses_def.h +lib_color.o: term.h +lib_color.o: unctrl.h +lib_color.po: curses.h +lib_color.po: ncurses_def.h +lib_color.po: term.h +lib_color.po: unctrl.h +lib_colorset.So: curses.h +lib_colorset.So: ncurses_def.h +lib_colorset.So: term.h +lib_colorset.So: unctrl.h +lib_colorset.o: curses.h +lib_colorset.o: ncurses_def.h +lib_colorset.o: term.h +lib_colorset.o: unctrl.h +lib_colorset.po: curses.h +lib_colorset.po: ncurses_def.h +lib_colorset.po: term.h +lib_colorset.po: unctrl.h +lib_cur_term.So: curses.h +lib_cur_term.So: ncurses_def.h +lib_cur_term.So: term.h +lib_cur_term.So: termcap.h +lib_cur_term.So: unctrl.h +lib_cur_term.o: curses.h +lib_cur_term.o: ncurses_def.h +lib_cur_term.o: term.h +lib_cur_term.o: termcap.h +lib_cur_term.o: unctrl.h +lib_cur_term.po: curses.h +lib_cur_term.po: ncurses_def.h +lib_cur_term.po: term.h +lib_cur_term.po: termcap.h +lib_cur_term.po: unctrl.h +lib_data.So: curses.h +lib_data.So: ncurses_def.h +lib_data.So: term.h +lib_data.So: unctrl.h +lib_data.o: curses.h +lib_data.o: ncurses_def.h +lib_data.o: term.h +lib_data.o: unctrl.h +lib_data.po: curses.h +lib_data.po: ncurses_def.h +lib_data.po: term.h +lib_data.po: unctrl.h +lib_delch.So: curses.h +lib_delch.So: ncurses_def.h +lib_delch.So: term.h +lib_delch.So: unctrl.h +lib_delch.o: curses.h +lib_delch.o: ncurses_def.h +lib_delch.o: term.h +lib_delch.o: unctrl.h +lib_delch.po: curses.h +lib_delch.po: ncurses_def.h +lib_delch.po: term.h +lib_delch.po: unctrl.h +lib_delwin.So: curses.h +lib_delwin.So: ncurses_def.h +lib_delwin.So: term.h +lib_delwin.So: unctrl.h +lib_delwin.o: curses.h +lib_delwin.o: ncurses_def.h +lib_delwin.o: term.h +lib_delwin.o: unctrl.h +lib_delwin.po: curses.h +lib_delwin.po: ncurses_def.h +lib_delwin.po: term.h +lib_delwin.po: unctrl.h +lib_dft_fgbg.So: curses.h +lib_dft_fgbg.So: ncurses_def.h +lib_dft_fgbg.So: term.h +lib_dft_fgbg.So: unctrl.h +lib_dft_fgbg.o: curses.h +lib_dft_fgbg.o: ncurses_def.h +lib_dft_fgbg.o: term.h +lib_dft_fgbg.o: unctrl.h +lib_dft_fgbg.po: curses.h +lib_dft_fgbg.po: ncurses_def.h +lib_dft_fgbg.po: term.h +lib_dft_fgbg.po: unctrl.h +lib_echo.So: curses.h +lib_echo.So: ncurses_def.h +lib_echo.So: term.h +lib_echo.So: unctrl.h +lib_echo.o: curses.h +lib_echo.o: ncurses_def.h +lib_echo.o: term.h +lib_echo.o: unctrl.h +lib_echo.po: curses.h +lib_echo.po: ncurses_def.h +lib_echo.po: term.h +lib_echo.po: unctrl.h +lib_endwin.So: curses.h +lib_endwin.So: ncurses_def.h +lib_endwin.So: term.h +lib_endwin.So: unctrl.h +lib_endwin.o: curses.h +lib_endwin.o: ncurses_def.h +lib_endwin.o: term.h +lib_endwin.o: unctrl.h +lib_endwin.po: curses.h +lib_endwin.po: ncurses_def.h +lib_endwin.po: term.h +lib_endwin.po: unctrl.h +lib_erase.So: curses.h +lib_erase.So: ncurses_def.h +lib_erase.So: term.h +lib_erase.So: unctrl.h +lib_erase.o: curses.h +lib_erase.o: ncurses_def.h +lib_erase.o: term.h +lib_erase.o: unctrl.h +lib_erase.po: curses.h +lib_erase.po: ncurses_def.h +lib_erase.po: term.h +lib_erase.po: unctrl.h +lib_flash.So: curses.h +lib_flash.So: ncurses_def.h +lib_flash.So: term.h +lib_flash.So: unctrl.h +lib_flash.o: curses.h +lib_flash.o: ncurses_def.h +lib_flash.o: term.h +lib_flash.o: unctrl.h +lib_flash.po: curses.h +lib_flash.po: ncurses_def.h +lib_flash.po: term.h +lib_flash.po: unctrl.h +lib_freeall.So: curses.h +lib_freeall.So: ncurses_def.h +lib_freeall.So: term.h +lib_freeall.So: unctrl.h +lib_freeall.o: curses.h +lib_freeall.o: ncurses_def.h +lib_freeall.o: term.h +lib_freeall.o: unctrl.h +lib_freeall.po: curses.h +lib_freeall.po: ncurses_def.h +lib_freeall.po: term.h +lib_freeall.po: unctrl.h +lib_gen.So: curses.h +lib_gen.So: lib_gen.c +lib_gen.So: ncurses_def.h +lib_gen.So: term.h +lib_gen.So: unctrl.h +lib_gen.o: curses.h +lib_gen.o: lib_gen.c +lib_gen.o: ncurses_def.h +lib_gen.o: term.h +lib_gen.o: unctrl.h +lib_gen.po: curses.h +lib_gen.po: lib_gen.c +lib_gen.po: ncurses_def.h +lib_gen.po: term.h +lib_gen.po: unctrl.h +lib_getch.So: curses.h +lib_getch.So: ncurses_def.h +lib_getch.So: term.h +lib_getch.So: unctrl.h +lib_getch.o: curses.h +lib_getch.o: ncurses_def.h +lib_getch.o: term.h +lib_getch.o: unctrl.h +lib_getch.po: curses.h +lib_getch.po: ncurses_def.h +lib_getch.po: term.h +lib_getch.po: unctrl.h +lib_getstr.So: curses.h +lib_getstr.So: ncurses_def.h +lib_getstr.So: term.h +lib_getstr.So: unctrl.h +lib_getstr.o: curses.h +lib_getstr.o: ncurses_def.h +lib_getstr.o: term.h +lib_getstr.o: unctrl.h +lib_getstr.po: curses.h +lib_getstr.po: ncurses_def.h +lib_getstr.po: term.h +lib_getstr.po: unctrl.h +lib_has_cap.So: curses.h +lib_has_cap.So: ncurses_def.h +lib_has_cap.So: term.h +lib_has_cap.So: unctrl.h +lib_has_cap.o: curses.h +lib_has_cap.o: ncurses_def.h +lib_has_cap.o: term.h +lib_has_cap.o: unctrl.h +lib_has_cap.po: curses.h +lib_has_cap.po: ncurses_def.h +lib_has_cap.po: term.h +lib_has_cap.po: unctrl.h +lib_hline.So: curses.h +lib_hline.So: ncurses_def.h +lib_hline.So: term.h +lib_hline.So: unctrl.h +lib_hline.o: curses.h +lib_hline.o: ncurses_def.h +lib_hline.o: term.h +lib_hline.o: unctrl.h +lib_hline.po: curses.h +lib_hline.po: ncurses_def.h +lib_hline.po: term.h +lib_hline.po: unctrl.h +lib_immedok.So: curses.h +lib_immedok.So: ncurses_def.h +lib_immedok.So: term.h +lib_immedok.So: unctrl.h +lib_immedok.o: curses.h +lib_immedok.o: ncurses_def.h +lib_immedok.o: term.h +lib_immedok.o: unctrl.h +lib_immedok.po: curses.h +lib_immedok.po: ncurses_def.h +lib_immedok.po: term.h +lib_immedok.po: unctrl.h +lib_inchstr.So: curses.h +lib_inchstr.So: ncurses_def.h +lib_inchstr.So: term.h +lib_inchstr.So: unctrl.h +lib_inchstr.o: curses.h +lib_inchstr.o: ncurses_def.h +lib_inchstr.o: term.h +lib_inchstr.o: unctrl.h +lib_inchstr.po: curses.h +lib_inchstr.po: ncurses_def.h +lib_inchstr.po: term.h +lib_inchstr.po: unctrl.h +lib_initscr.So: curses.h +lib_initscr.So: ncurses_def.h +lib_initscr.So: term.h +lib_initscr.So: unctrl.h +lib_initscr.o: curses.h +lib_initscr.o: ncurses_def.h +lib_initscr.o: term.h +lib_initscr.o: unctrl.h +lib_initscr.po: curses.h +lib_initscr.po: ncurses_def.h +lib_initscr.po: term.h +lib_initscr.po: unctrl.h +lib_insch.So: curses.h +lib_insch.So: ncurses_def.h +lib_insch.So: term.h +lib_insch.So: unctrl.h +lib_insch.o: curses.h +lib_insch.o: ncurses_def.h +lib_insch.o: term.h +lib_insch.o: unctrl.h +lib_insch.po: curses.h +lib_insch.po: ncurses_def.h +lib_insch.po: term.h +lib_insch.po: unctrl.h +lib_insdel.So: curses.h +lib_insdel.So: ncurses_def.h +lib_insdel.So: term.h +lib_insdel.So: unctrl.h +lib_insdel.o: curses.h +lib_insdel.o: ncurses_def.h +lib_insdel.o: term.h +lib_insdel.o: unctrl.h +lib_insdel.po: curses.h +lib_insdel.po: ncurses_def.h +lib_insdel.po: term.h +lib_insdel.po: unctrl.h +lib_insnstr.So: curses.h +lib_insnstr.So: ncurses_def.h +lib_insnstr.So: term.h +lib_insnstr.So: unctrl.h +lib_insnstr.o: curses.h +lib_insnstr.o: ncurses_def.h +lib_insnstr.o: term.h +lib_insnstr.o: unctrl.h +lib_insnstr.po: curses.h +lib_insnstr.po: ncurses_def.h +lib_insnstr.po: term.h +lib_insnstr.po: unctrl.h +lib_instr.So: curses.h +lib_instr.So: ncurses_def.h +lib_instr.So: term.h +lib_instr.So: unctrl.h +lib_instr.o: curses.h +lib_instr.o: ncurses_def.h +lib_instr.o: term.h +lib_instr.o: unctrl.h +lib_instr.po: curses.h +lib_instr.po: ncurses_def.h +lib_instr.po: term.h +lib_instr.po: unctrl.h +lib_isendwin.So: curses.h +lib_isendwin.So: ncurses_def.h +lib_isendwin.So: term.h +lib_isendwin.So: unctrl.h +lib_isendwin.o: curses.h +lib_isendwin.o: ncurses_def.h +lib_isendwin.o: term.h +lib_isendwin.o: unctrl.h +lib_isendwin.po: curses.h +lib_isendwin.po: ncurses_def.h +lib_isendwin.po: term.h +lib_isendwin.po: unctrl.h +lib_kernel.So: curses.h +lib_kernel.So: ncurses_def.h +lib_kernel.So: term.h +lib_kernel.So: unctrl.h +lib_kernel.o: curses.h +lib_kernel.o: ncurses_def.h +lib_kernel.o: term.h +lib_kernel.o: unctrl.h +lib_kernel.po: curses.h +lib_kernel.po: ncurses_def.h +lib_kernel.po: term.h +lib_kernel.po: unctrl.h +lib_keyname.So: curses.h +lib_keyname.So: lib_keyname.c +lib_keyname.So: ncurses_def.h +lib_keyname.So: term.h +lib_keyname.So: unctrl.h +lib_keyname.o: curses.h +lib_keyname.o: lib_keyname.c +lib_keyname.o: ncurses_def.h +lib_keyname.o: term.h +lib_keyname.o: unctrl.h +lib_keyname.po: curses.h +lib_keyname.po: lib_keyname.c +lib_keyname.po: ncurses_def.h +lib_keyname.po: term.h +lib_keyname.po: unctrl.h +lib_leaveok.So: curses.h +lib_leaveok.So: ncurses_def.h +lib_leaveok.So: term.h +lib_leaveok.So: unctrl.h +lib_leaveok.o: curses.h +lib_leaveok.o: ncurses_def.h +lib_leaveok.o: term.h +lib_leaveok.o: unctrl.h +lib_leaveok.po: curses.h +lib_leaveok.po: ncurses_def.h +lib_leaveok.po: term.h +lib_leaveok.po: unctrl.h +lib_longname.So: curses.h +lib_longname.So: ncurses_def.h +lib_longname.So: term.h +lib_longname.So: unctrl.h +lib_longname.o: curses.h +lib_longname.o: ncurses_def.h +lib_longname.o: term.h +lib_longname.o: unctrl.h +lib_longname.po: curses.h +lib_longname.po: ncurses_def.h +lib_longname.po: term.h +lib_longname.po: unctrl.h +lib_mouse.So: curses.h +lib_mouse.So: ncurses_def.h +lib_mouse.So: term.h +lib_mouse.So: unctrl.h +lib_mouse.o: curses.h +lib_mouse.o: ncurses_def.h +lib_mouse.o: term.h +lib_mouse.o: unctrl.h +lib_mouse.po: curses.h +lib_mouse.po: ncurses_def.h +lib_mouse.po: term.h +lib_mouse.po: unctrl.h +lib_move.So: curses.h +lib_move.So: ncurses_def.h +lib_move.So: term.h +lib_move.So: unctrl.h +lib_move.o: curses.h +lib_move.o: ncurses_def.h +lib_move.o: term.h +lib_move.o: unctrl.h +lib_move.po: curses.h +lib_move.po: ncurses_def.h +lib_move.po: term.h +lib_move.po: unctrl.h +lib_mvcur.So: curses.h +lib_mvcur.So: ncurses_def.h +lib_mvcur.So: term.h +lib_mvcur.So: unctrl.h +lib_mvcur.o: curses.h +lib_mvcur.o: ncurses_def.h +lib_mvcur.o: term.h +lib_mvcur.o: unctrl.h +lib_mvcur.po: curses.h +lib_mvcur.po: ncurses_def.h +lib_mvcur.po: term.h +lib_mvcur.po: unctrl.h +lib_mvwin.So: curses.h +lib_mvwin.So: ncurses_def.h +lib_mvwin.So: term.h +lib_mvwin.So: unctrl.h +lib_mvwin.o: curses.h +lib_mvwin.o: ncurses_def.h +lib_mvwin.o: term.h +lib_mvwin.o: unctrl.h +lib_mvwin.po: curses.h +lib_mvwin.po: ncurses_def.h +lib_mvwin.po: term.h +lib_mvwin.po: unctrl.h +lib_napms.So: curses.h +lib_napms.So: ncurses_def.h +lib_napms.So: term.h +lib_napms.So: unctrl.h +lib_napms.o: curses.h +lib_napms.o: ncurses_def.h +lib_napms.o: term.h +lib_napms.o: unctrl.h +lib_napms.po: curses.h +lib_napms.po: ncurses_def.h +lib_napms.po: term.h +lib_napms.po: unctrl.h +lib_newterm.So: curses.h +lib_newterm.So: ncurses_def.h +lib_newterm.So: term.h +lib_newterm.So: unctrl.h +lib_newterm.o: curses.h +lib_newterm.o: ncurses_def.h +lib_newterm.o: term.h +lib_newterm.o: unctrl.h +lib_newterm.po: curses.h +lib_newterm.po: ncurses_def.h +lib_newterm.po: term.h +lib_newterm.po: unctrl.h +lib_newwin.So: curses.h +lib_newwin.So: ncurses_def.h +lib_newwin.So: term.h +lib_newwin.So: unctrl.h +lib_newwin.o: curses.h +lib_newwin.o: ncurses_def.h +lib_newwin.o: term.h +lib_newwin.o: unctrl.h +lib_newwin.po: curses.h +lib_newwin.po: ncurses_def.h +lib_newwin.po: term.h +lib_newwin.po: unctrl.h +lib_nl.So: curses.h +lib_nl.So: ncurses_def.h +lib_nl.So: term.h +lib_nl.So: unctrl.h +lib_nl.o: curses.h +lib_nl.o: ncurses_def.h +lib_nl.o: term.h +lib_nl.o: unctrl.h +lib_nl.po: curses.h +lib_nl.po: ncurses_def.h +lib_nl.po: term.h +lib_nl.po: unctrl.h +lib_options.So: curses.h +lib_options.So: ncurses_def.h +lib_options.So: term.h +lib_options.So: unctrl.h +lib_options.o: curses.h +lib_options.o: ncurses_def.h +lib_options.o: term.h +lib_options.o: unctrl.h +lib_options.po: curses.h +lib_options.po: ncurses_def.h +lib_options.po: term.h +lib_options.po: unctrl.h +lib_overlay.So: curses.h +lib_overlay.So: ncurses_def.h +lib_overlay.So: term.h +lib_overlay.So: unctrl.h +lib_overlay.o: curses.h +lib_overlay.o: ncurses_def.h +lib_overlay.o: term.h +lib_overlay.o: unctrl.h +lib_overlay.po: curses.h +lib_overlay.po: ncurses_def.h +lib_overlay.po: term.h +lib_overlay.po: unctrl.h +lib_pad.So: curses.h +lib_pad.So: ncurses_def.h +lib_pad.So: term.h +lib_pad.So: unctrl.h +lib_pad.o: curses.h +lib_pad.o: ncurses_def.h +lib_pad.o: term.h +lib_pad.o: unctrl.h +lib_pad.po: curses.h +lib_pad.po: ncurses_def.h +lib_pad.po: term.h +lib_pad.po: unctrl.h +lib_print.So: curses.h +lib_print.So: ncurses_def.h +lib_print.So: term.h +lib_print.So: unctrl.h +lib_print.o: curses.h +lib_print.o: ncurses_def.h +lib_print.o: term.h +lib_print.o: unctrl.h +lib_print.po: curses.h +lib_print.po: ncurses_def.h +lib_print.po: term.h +lib_print.po: unctrl.h +lib_printw.So: curses.h +lib_printw.So: ncurses_def.h +lib_printw.So: term.h +lib_printw.So: unctrl.h +lib_printw.o: curses.h +lib_printw.o: ncurses_def.h +lib_printw.o: term.h +lib_printw.o: unctrl.h +lib_printw.po: curses.h +lib_printw.po: ncurses_def.h +lib_printw.po: term.h +lib_printw.po: unctrl.h +lib_raw.So: curses.h +lib_raw.So: ncurses_def.h +lib_raw.So: term.h +lib_raw.So: unctrl.h +lib_raw.o: curses.h +lib_raw.o: ncurses_def.h +lib_raw.o: term.h +lib_raw.o: unctrl.h +lib_raw.po: curses.h +lib_raw.po: ncurses_def.h +lib_raw.po: term.h +lib_raw.po: unctrl.h +lib_redrawln.So: curses.h +lib_redrawln.So: ncurses_def.h +lib_redrawln.So: term.h +lib_redrawln.So: unctrl.h +lib_redrawln.o: curses.h +lib_redrawln.o: ncurses_def.h +lib_redrawln.o: term.h +lib_redrawln.o: unctrl.h +lib_redrawln.po: curses.h +lib_redrawln.po: ncurses_def.h +lib_redrawln.po: term.h +lib_redrawln.po: unctrl.h +lib_refresh.So: curses.h +lib_refresh.So: ncurses_def.h +lib_refresh.So: term.h +lib_refresh.So: unctrl.h +lib_refresh.o: curses.h +lib_refresh.o: ncurses_def.h +lib_refresh.o: term.h +lib_refresh.o: unctrl.h +lib_refresh.po: curses.h +lib_refresh.po: ncurses_def.h +lib_refresh.po: term.h +lib_refresh.po: unctrl.h +lib_restart.So: curses.h +lib_restart.So: ncurses_def.h +lib_restart.So: term.h +lib_restart.So: unctrl.h +lib_restart.o: curses.h +lib_restart.o: ncurses_def.h +lib_restart.o: term.h +lib_restart.o: unctrl.h +lib_restart.po: curses.h +lib_restart.po: ncurses_def.h +lib_restart.po: term.h +lib_restart.po: unctrl.h +lib_scanw.So: curses.h +lib_scanw.So: ncurses_def.h +lib_scanw.So: term.h +lib_scanw.So: unctrl.h +lib_scanw.o: curses.h +lib_scanw.o: ncurses_def.h +lib_scanw.o: term.h +lib_scanw.o: unctrl.h +lib_scanw.po: curses.h +lib_scanw.po: ncurses_def.h +lib_scanw.po: term.h +lib_scanw.po: unctrl.h +lib_screen.So: curses.h +lib_screen.So: ncurses_def.h +lib_screen.So: term.h +lib_screen.So: unctrl.h +lib_screen.o: curses.h +lib_screen.o: ncurses_def.h +lib_screen.o: term.h +lib_screen.o: unctrl.h +lib_screen.po: curses.h +lib_screen.po: ncurses_def.h +lib_screen.po: term.h +lib_screen.po: unctrl.h +lib_scroll.So: curses.h +lib_scroll.So: ncurses_def.h +lib_scroll.So: term.h +lib_scroll.So: unctrl.h +lib_scroll.o: curses.h +lib_scroll.o: ncurses_def.h +lib_scroll.o: term.h +lib_scroll.o: unctrl.h +lib_scroll.po: curses.h +lib_scroll.po: ncurses_def.h +lib_scroll.po: term.h +lib_scroll.po: unctrl.h +lib_scrollok.So: curses.h +lib_scrollok.So: ncurses_def.h +lib_scrollok.So: term.h +lib_scrollok.So: unctrl.h +lib_scrollok.o: curses.h +lib_scrollok.o: ncurses_def.h +lib_scrollok.o: term.h +lib_scrollok.o: unctrl.h +lib_scrollok.po: curses.h +lib_scrollok.po: ncurses_def.h +lib_scrollok.po: term.h +lib_scrollok.po: unctrl.h +lib_scrreg.So: curses.h +lib_scrreg.So: ncurses_def.h +lib_scrreg.So: term.h +lib_scrreg.So: unctrl.h +lib_scrreg.o: curses.h +lib_scrreg.o: ncurses_def.h +lib_scrreg.o: term.h +lib_scrreg.o: unctrl.h +lib_scrreg.po: curses.h +lib_scrreg.po: ncurses_def.h +lib_scrreg.po: term.h +lib_scrreg.po: unctrl.h +lib_set_term.So: curses.h +lib_set_term.So: ncurses_def.h +lib_set_term.So: term.h +lib_set_term.So: unctrl.h +lib_set_term.o: curses.h +lib_set_term.o: ncurses_def.h +lib_set_term.o: term.h +lib_set_term.o: unctrl.h +lib_set_term.po: curses.h +lib_set_term.po: ncurses_def.h +lib_set_term.po: term.h +lib_set_term.po: unctrl.h +lib_setup.So: curses.h +lib_setup.So: ncurses_def.h +lib_setup.So: term.h +lib_setup.So: unctrl.h +lib_setup.o: curses.h +lib_setup.o: ncurses_def.h +lib_setup.o: term.h +lib_setup.o: unctrl.h +lib_setup.po: curses.h +lib_setup.po: ncurses_def.h +lib_setup.po: term.h +lib_setup.po: unctrl.h +lib_slk.So: curses.h +lib_slk.So: ncurses_def.h +lib_slk.So: term.h +lib_slk.So: unctrl.h +lib_slk.o: curses.h +lib_slk.o: ncurses_def.h +lib_slk.o: term.h +lib_slk.o: unctrl.h +lib_slk.po: curses.h +lib_slk.po: ncurses_def.h +lib_slk.po: term.h +lib_slk.po: unctrl.h +lib_slkatr_set.So: curses.h +lib_slkatr_set.So: ncurses_def.h +lib_slkatr_set.So: term.h +lib_slkatr_set.So: unctrl.h +lib_slkatr_set.o: curses.h +lib_slkatr_set.o: ncurses_def.h +lib_slkatr_set.o: term.h +lib_slkatr_set.o: unctrl.h +lib_slkatr_set.po: curses.h +lib_slkatr_set.po: ncurses_def.h +lib_slkatr_set.po: term.h +lib_slkatr_set.po: unctrl.h +lib_slkatrof.So: curses.h +lib_slkatrof.So: ncurses_def.h +lib_slkatrof.So: term.h +lib_slkatrof.So: unctrl.h +lib_slkatrof.o: curses.h +lib_slkatrof.o: ncurses_def.h +lib_slkatrof.o: term.h +lib_slkatrof.o: unctrl.h +lib_slkatrof.po: curses.h +lib_slkatrof.po: ncurses_def.h +lib_slkatrof.po: term.h +lib_slkatrof.po: unctrl.h +lib_slkatron.So: curses.h +lib_slkatron.So: ncurses_def.h +lib_slkatron.So: term.h +lib_slkatron.So: unctrl.h +lib_slkatron.o: curses.h +lib_slkatron.o: ncurses_def.h +lib_slkatron.o: term.h +lib_slkatron.o: unctrl.h +lib_slkatron.po: curses.h +lib_slkatron.po: ncurses_def.h +lib_slkatron.po: term.h +lib_slkatron.po: unctrl.h +lib_slkatrset.So: curses.h +lib_slkatrset.So: ncurses_def.h +lib_slkatrset.So: term.h +lib_slkatrset.So: unctrl.h +lib_slkatrset.o: curses.h +lib_slkatrset.o: ncurses_def.h +lib_slkatrset.o: term.h +lib_slkatrset.o: unctrl.h +lib_slkatrset.po: curses.h +lib_slkatrset.po: ncurses_def.h +lib_slkatrset.po: term.h +lib_slkatrset.po: unctrl.h +lib_slkattr.So: curses.h +lib_slkattr.So: ncurses_def.h +lib_slkattr.So: term.h +lib_slkattr.So: unctrl.h +lib_slkattr.o: curses.h +lib_slkattr.o: ncurses_def.h +lib_slkattr.o: term.h +lib_slkattr.o: unctrl.h +lib_slkattr.po: curses.h +lib_slkattr.po: ncurses_def.h +lib_slkattr.po: term.h +lib_slkattr.po: unctrl.h +lib_slkclear.So: curses.h +lib_slkclear.So: ncurses_def.h +lib_slkclear.So: term.h +lib_slkclear.So: unctrl.h +lib_slkclear.o: curses.h +lib_slkclear.o: ncurses_def.h +lib_slkclear.o: term.h +lib_slkclear.o: unctrl.h +lib_slkclear.po: curses.h +lib_slkclear.po: ncurses_def.h +lib_slkclear.po: term.h +lib_slkclear.po: unctrl.h +lib_slkcolor.So: curses.h +lib_slkcolor.So: ncurses_def.h +lib_slkcolor.So: term.h +lib_slkcolor.So: unctrl.h +lib_slkcolor.o: curses.h +lib_slkcolor.o: ncurses_def.h +lib_slkcolor.o: term.h +lib_slkcolor.o: unctrl.h +lib_slkcolor.po: curses.h +lib_slkcolor.po: ncurses_def.h +lib_slkcolor.po: term.h +lib_slkcolor.po: unctrl.h +lib_slkinit.So: curses.h +lib_slkinit.So: ncurses_def.h +lib_slkinit.So: term.h +lib_slkinit.So: unctrl.h +lib_slkinit.o: curses.h +lib_slkinit.o: ncurses_def.h +lib_slkinit.o: term.h +lib_slkinit.o: unctrl.h +lib_slkinit.po: curses.h +lib_slkinit.po: ncurses_def.h +lib_slkinit.po: term.h +lib_slkinit.po: unctrl.h +lib_slklab.So: curses.h +lib_slklab.So: ncurses_def.h +lib_slklab.So: term.h +lib_slklab.So: unctrl.h +lib_slklab.o: curses.h +lib_slklab.o: ncurses_def.h +lib_slklab.o: term.h +lib_slklab.o: unctrl.h +lib_slklab.po: curses.h +lib_slklab.po: ncurses_def.h +lib_slklab.po: term.h +lib_slklab.po: unctrl.h +lib_slkrefr.So: curses.h +lib_slkrefr.So: ncurses_def.h +lib_slkrefr.So: term.h +lib_slkrefr.So: unctrl.h +lib_slkrefr.o: curses.h +lib_slkrefr.o: ncurses_def.h +lib_slkrefr.o: term.h +lib_slkrefr.o: unctrl.h +lib_slkrefr.po: curses.h +lib_slkrefr.po: ncurses_def.h +lib_slkrefr.po: term.h +lib_slkrefr.po: unctrl.h +lib_slkset.So: curses.h +lib_slkset.So: ncurses_def.h +lib_slkset.So: term.h +lib_slkset.So: unctrl.h +lib_slkset.o: curses.h +lib_slkset.o: ncurses_def.h +lib_slkset.o: term.h +lib_slkset.o: unctrl.h +lib_slkset.po: curses.h +lib_slkset.po: ncurses_def.h +lib_slkset.po: term.h +lib_slkset.po: unctrl.h +lib_slktouch.So: curses.h +lib_slktouch.So: ncurses_def.h +lib_slktouch.So: term.h +lib_slktouch.So: unctrl.h +lib_slktouch.o: curses.h +lib_slktouch.o: ncurses_def.h +lib_slktouch.o: term.h +lib_slktouch.o: unctrl.h +lib_slktouch.po: curses.h +lib_slktouch.po: ncurses_def.h +lib_slktouch.po: term.h +lib_slktouch.po: unctrl.h +lib_termcap.So: curses.h +lib_termcap.So: ncurses_def.h +lib_termcap.So: term.h +lib_termcap.So: termcap.h +lib_termcap.So: unctrl.h +lib_termcap.o: curses.h +lib_termcap.o: ncurses_def.h +lib_termcap.o: term.h +lib_termcap.o: termcap.h +lib_termcap.o: unctrl.h +lib_termcap.po: curses.h +lib_termcap.po: ncurses_def.h +lib_termcap.po: term.h +lib_termcap.po: termcap.h +lib_termcap.po: unctrl.h +lib_termname.So: curses.h +lib_termname.So: ncurses_def.h +lib_termname.So: term.h +lib_termname.So: unctrl.h +lib_termname.o: curses.h +lib_termname.o: ncurses_def.h +lib_termname.o: term.h +lib_termname.o: unctrl.h +lib_termname.po: curses.h +lib_termname.po: ncurses_def.h +lib_termname.po: term.h +lib_termname.po: unctrl.h +lib_tgoto.So: curses.h +lib_tgoto.So: ncurses_def.h +lib_tgoto.So: term.h +lib_tgoto.So: termcap.h +lib_tgoto.So: unctrl.h +lib_tgoto.o: curses.h +lib_tgoto.o: ncurses_def.h +lib_tgoto.o: term.h +lib_tgoto.o: termcap.h +lib_tgoto.o: unctrl.h +lib_tgoto.po: curses.h +lib_tgoto.po: ncurses_def.h +lib_tgoto.po: term.h +lib_tgoto.po: termcap.h +lib_tgoto.po: unctrl.h +lib_ti.So: curses.h +lib_ti.So: ncurses_def.h +lib_ti.So: term.h +lib_ti.So: unctrl.h +lib_ti.o: curses.h +lib_ti.o: ncurses_def.h +lib_ti.o: term.h +lib_ti.o: unctrl.h +lib_ti.po: curses.h +lib_ti.po: ncurses_def.h +lib_ti.po: term.h +lib_ti.po: unctrl.h +lib_touch.So: curses.h +lib_touch.So: ncurses_def.h +lib_touch.So: term.h +lib_touch.So: unctrl.h +lib_touch.o: curses.h +lib_touch.o: ncurses_def.h +lib_touch.o: term.h +lib_touch.o: unctrl.h +lib_touch.po: curses.h +lib_touch.po: ncurses_def.h +lib_touch.po: term.h +lib_touch.po: unctrl.h +lib_tparm.So: curses.h +lib_tparm.So: ncurses_def.h +lib_tparm.So: term.h +lib_tparm.So: unctrl.h +lib_tparm.o: curses.h +lib_tparm.o: ncurses_def.h +lib_tparm.o: term.h +lib_tparm.o: unctrl.h +lib_tparm.po: curses.h +lib_tparm.po: ncurses_def.h +lib_tparm.po: term.h +lib_tparm.po: unctrl.h +lib_tputs.So: curses.h +lib_tputs.So: ncurses_def.h +lib_tputs.So: term.h +lib_tputs.So: termcap.h +lib_tputs.So: unctrl.h +lib_tputs.o: curses.h +lib_tputs.o: ncurses_def.h +lib_tputs.o: term.h +lib_tputs.o: termcap.h +lib_tputs.o: unctrl.h +lib_tputs.po: curses.h +lib_tputs.po: ncurses_def.h +lib_tputs.po: term.h +lib_tputs.po: termcap.h +lib_tputs.po: unctrl.h +lib_trace.So: curses.h +lib_trace.So: ncurses_def.h +lib_trace.So: term.h +lib_trace.So: unctrl.h +lib_trace.o: curses.h +lib_trace.o: ncurses_def.h +lib_trace.o: term.h +lib_trace.o: unctrl.h +lib_trace.po: curses.h +lib_trace.po: ncurses_def.h +lib_trace.po: term.h +lib_trace.po: unctrl.h +lib_tstp.So: curses.h +lib_tstp.So: ncurses_def.h +lib_tstp.So: term.h +lib_tstp.So: unctrl.h +lib_tstp.o: curses.h +lib_tstp.o: ncurses_def.h +lib_tstp.o: term.h +lib_tstp.o: unctrl.h +lib_tstp.po: curses.h +lib_tstp.po: ncurses_def.h +lib_tstp.po: term.h +lib_tstp.po: unctrl.h +lib_ttyflags.So: curses.h +lib_ttyflags.So: ncurses_def.h +lib_ttyflags.So: term.h +lib_ttyflags.So: unctrl.h +lib_ttyflags.o: curses.h +lib_ttyflags.o: ncurses_def.h +lib_ttyflags.o: term.h +lib_ttyflags.o: unctrl.h +lib_ttyflags.po: curses.h +lib_ttyflags.po: ncurses_def.h +lib_ttyflags.po: term.h +lib_ttyflags.po: unctrl.h +lib_twait.So: curses.h +lib_twait.So: ncurses_def.h +lib_twait.So: term.h +lib_twait.So: unctrl.h +lib_twait.o: curses.h +lib_twait.o: ncurses_def.h +lib_twait.o: term.h +lib_twait.o: unctrl.h +lib_twait.po: curses.h +lib_twait.po: ncurses_def.h +lib_twait.po: term.h +lib_twait.po: unctrl.h +lib_ungetch.So: curses.h +lib_ungetch.So: ncurses_def.h +lib_ungetch.So: term.h +lib_ungetch.So: unctrl.h +lib_ungetch.o: curses.h +lib_ungetch.o: ncurses_def.h +lib_ungetch.o: term.h +lib_ungetch.o: unctrl.h +lib_ungetch.po: curses.h +lib_ungetch.po: ncurses_def.h +lib_ungetch.po: term.h +lib_ungetch.po: unctrl.h +lib_vidattr.So: curses.h +lib_vidattr.So: ncurses_def.h +lib_vidattr.So: term.h +lib_vidattr.So: unctrl.h +lib_vidattr.o: curses.h +lib_vidattr.o: ncurses_def.h +lib_vidattr.o: term.h +lib_vidattr.o: unctrl.h +lib_vidattr.po: curses.h +lib_vidattr.po: ncurses_def.h +lib_vidattr.po: term.h +lib_vidattr.po: unctrl.h +lib_vline.So: curses.h +lib_vline.So: ncurses_def.h +lib_vline.So: term.h +lib_vline.So: unctrl.h +lib_vline.o: curses.h +lib_vline.o: ncurses_def.h +lib_vline.o: term.h +lib_vline.o: unctrl.h +lib_vline.po: curses.h +lib_vline.po: ncurses_def.h +lib_vline.po: term.h +lib_vline.po: unctrl.h +lib_wattroff.So: curses.h +lib_wattroff.So: ncurses_def.h +lib_wattroff.So: term.h +lib_wattroff.So: unctrl.h +lib_wattroff.o: curses.h +lib_wattroff.o: ncurses_def.h +lib_wattroff.o: term.h +lib_wattroff.o: unctrl.h +lib_wattroff.po: curses.h +lib_wattroff.po: ncurses_def.h +lib_wattroff.po: term.h +lib_wattroff.po: unctrl.h +lib_wattron.So: curses.h +lib_wattron.So: ncurses_def.h +lib_wattron.So: term.h +lib_wattron.So: unctrl.h +lib_wattron.o: curses.h +lib_wattron.o: ncurses_def.h +lib_wattron.o: term.h +lib_wattron.o: unctrl.h +lib_wattron.po: curses.h +lib_wattron.po: ncurses_def.h +lib_wattron.po: term.h +lib_wattron.po: unctrl.h +lib_winch.So: curses.h +lib_winch.So: ncurses_def.h +lib_winch.So: term.h +lib_winch.So: unctrl.h +lib_winch.o: curses.h +lib_winch.o: ncurses_def.h +lib_winch.o: term.h +lib_winch.o: unctrl.h +lib_winch.po: curses.h +lib_winch.po: ncurses_def.h +lib_winch.po: term.h +lib_winch.po: unctrl.h +lib_window.So: curses.h +lib_window.So: ncurses_def.h +lib_window.So: term.h +lib_window.So: unctrl.h +lib_window.o: curses.h +lib_window.o: ncurses_def.h +lib_window.o: term.h +lib_window.o: unctrl.h +lib_window.po: curses.h +lib_window.po: ncurses_def.h +lib_window.po: term.h +lib_window.po: unctrl.h +memmove.So: curses.h +memmove.So: ncurses_def.h +memmove.So: term.h +memmove.So: unctrl.h +memmove.o: curses.h +memmove.o: ncurses_def.h +memmove.o: term.h +memmove.o: unctrl.h +memmove.po: curses.h +memmove.po: ncurses_def.h +memmove.po: term.h +memmove.po: unctrl.h +name_match.So: curses.h +name_match.So: ncurses_def.h +name_match.So: term.h +name_match.So: unctrl.h +name_match.o: curses.h +name_match.o: ncurses_def.h +name_match.o: term.h +name_match.o: unctrl.h +name_match.po: curses.h +name_match.po: ncurses_def.h +name_match.po: term.h +name_match.po: unctrl.h +names.So: curses.h +names.So: names.c +names.So: ncurses_def.h +names.So: term.h +names.So: unctrl.h +names.o: curses.h +names.o: names.c +names.o: ncurses_def.h +names.o: term.h +names.o: unctrl.h +names.po: curses.h +names.po: names.c +names.po: ncurses_def.h +names.po: term.h +names.po: unctrl.h +nc_panel.So: curses.h +nc_panel.So: ncurses_def.h +nc_panel.So: term.h +nc_panel.So: unctrl.h +nc_panel.o: curses.h +nc_panel.o: ncurses_def.h +nc_panel.o: term.h +nc_panel.o: unctrl.h +nc_panel.po: curses.h +nc_panel.po: ncurses_def.h +nc_panel.po: term.h +nc_panel.po: unctrl.h +parse_entry.So: curses.h +parse_entry.So: ncurses_def.h +parse_entry.So: parametrized.h +parse_entry.So: term.h +parse_entry.So: unctrl.h +parse_entry.o: curses.h +parse_entry.o: ncurses_def.h +parse_entry.o: parametrized.h +parse_entry.o: term.h +parse_entry.o: unctrl.h +parse_entry.po: curses.h +parse_entry.po: ncurses_def.h +parse_entry.po: parametrized.h +parse_entry.po: term.h +parse_entry.po: unctrl.h +read_entry.So: curses.h +read_entry.So: ncurses_def.h +read_entry.So: term.h +read_entry.So: unctrl.h +read_entry.o: curses.h +read_entry.o: ncurses_def.h +read_entry.o: term.h +read_entry.o: unctrl.h +read_entry.po: curses.h +read_entry.po: ncurses_def.h +read_entry.po: term.h +read_entry.po: unctrl.h +resizeterm.So: curses.h +resizeterm.So: ncurses_def.h +resizeterm.So: term.h +resizeterm.So: unctrl.h +resizeterm.o: curses.h +resizeterm.o: ncurses_def.h +resizeterm.o: term.h +resizeterm.o: unctrl.h +resizeterm.po: curses.h +resizeterm.po: ncurses_def.h +resizeterm.po: term.h +resizeterm.po: unctrl.h +safe_sprintf.So: curses.h +safe_sprintf.So: ncurses_def.h +safe_sprintf.So: term.h +safe_sprintf.So: unctrl.h +safe_sprintf.o: curses.h +safe_sprintf.o: ncurses_def.h +safe_sprintf.o: term.h +safe_sprintf.o: unctrl.h +safe_sprintf.po: curses.h +safe_sprintf.po: ncurses_def.h +safe_sprintf.po: term.h +safe_sprintf.po: unctrl.h +setbuf.So: curses.h +setbuf.So: ncurses_def.h +setbuf.So: term.h +setbuf.So: unctrl.h +setbuf.o: curses.h +setbuf.o: ncurses_def.h +setbuf.o: term.h +setbuf.o: unctrl.h +setbuf.po: curses.h +setbuf.po: ncurses_def.h +setbuf.po: term.h +setbuf.po: unctrl.h +strings.So: curses.h +strings.So: ncurses_def.h +strings.So: term.h +strings.So: unctrl.h +strings.o: curses.h +strings.o: ncurses_def.h +strings.o: term.h +strings.o: unctrl.h +strings.po: curses.h +strings.po: ncurses_def.h +strings.po: term.h +strings.po: unctrl.h +termcap.So: curses.h +termcap.So: ncurses_def.h +termcap.So: term.h +termcap.So: unctrl.h +termcap.o: curses.h +termcap.o: ncurses_def.h +termcap.o: term.h +termcap.o: unctrl.h +termcap.po: curses.h +termcap.po: ncurses_def.h +termcap.po: term.h +termcap.po: unctrl.h +tries.So: curses.h +tries.So: ncurses_def.h +tries.So: term.h +tries.So: unctrl.h +tries.o: curses.h +tries.o: ncurses_def.h +tries.o: term.h +tries.o: unctrl.h +tries.po: curses.h +tries.po: ncurses_def.h +tries.po: term.h +tries.po: unctrl.h +trim_sgr0.So: curses.h +trim_sgr0.So: ncurses_def.h +trim_sgr0.So: term.h +trim_sgr0.So: unctrl.h +trim_sgr0.o: curses.h +trim_sgr0.o: ncurses_def.h +trim_sgr0.o: term.h +trim_sgr0.o: unctrl.h +trim_sgr0.po: curses.h +trim_sgr0.po: ncurses_def.h +trim_sgr0.po: term.h +trim_sgr0.po: unctrl.h +tty_update.So: curses.h +tty_update.So: ncurses_def.h +tty_update.So: term.h +tty_update.So: unctrl.h +tty_update.o: curses.h +tty_update.o: ncurses_def.h +tty_update.o: term.h +tty_update.o: unctrl.h +tty_update.po: curses.h +tty_update.po: ncurses_def.h +tty_update.po: term.h +tty_update.po: unctrl.h +unctrl.So: curses.h +unctrl.So: ncurses_def.h +unctrl.So: term.h +unctrl.So: unctrl.c +unctrl.So: unctrl.h +unctrl.o: curses.h +unctrl.o: ncurses_def.h +unctrl.o: term.h +unctrl.o: unctrl.c +unctrl.o: unctrl.h +unctrl.po: curses.h +unctrl.po: ncurses_def.h +unctrl.po: term.h +unctrl.po: unctrl.c +unctrl.po: unctrl.h +version.So: curses.h +version.So: ncurses_def.h +version.So: term.h +version.So: unctrl.h +version.o: curses.h +version.o: ncurses_def.h +version.o: term.h +version.o: unctrl.h +version.po: curses.h +version.po: ncurses_def.h +version.po: term.h +version.po: unctrl.h +visbuf.So: curses.h +visbuf.So: ncurses_def.h +visbuf.So: term.h +visbuf.So: unctrl.h +visbuf.o: curses.h +visbuf.o: ncurses_def.h +visbuf.o: term.h +visbuf.o: unctrl.h +visbuf.po: curses.h +visbuf.po: ncurses_def.h +visbuf.po: term.h +visbuf.po: unctrl.h +vsscanf.So: curses.h +vsscanf.So: ncurses_def.h +vsscanf.So: term.h +vsscanf.So: unctrl.h +vsscanf.o: curses.h +vsscanf.o: ncurses_def.h +vsscanf.o: term.h +vsscanf.o: unctrl.h +vsscanf.po: curses.h +vsscanf.po: ncurses_def.h +vsscanf.po: term.h +vsscanf.po: unctrl.h +wresize.So: curses.h +wresize.So: ncurses_def.h +wresize.So: term.h +wresize.So: unctrl.h +wresize.o: curses.h +wresize.o: ncurses_def.h +wresize.o: term.h +wresize.o: unctrl.h +wresize.po: curses.h +wresize.po: ncurses_def.h +wresize.po: term.h +wresize.po: unctrl.h +write_entry.So: curses.h +write_entry.So: ncurses_def.h +write_entry.So: term.h +write_entry.So: unctrl.h +write_entry.o: curses.h +write_entry.o: ncurses_def.h +write_entry.o: term.h +write_entry.o: unctrl.h +write_entry.po: curses.h +write_entry.po: ncurses_def.h +write_entry.po: term.h +write_entry.po: unctrl.h +.endif diff --git a/lib/ncurses/ncursesw/Makefile.depend b/lib/ncurses/ncursesw/Makefile.depend new file mode 100644 index 000000000000..55371bd3617a --- /dev/null +++ b/lib/ncurses/ncursesw/Makefile.depend @@ -0,0 +1,2047 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +access.So: curses.h +access.So: ncurses_def.h +access.So: term.h +access.So: unctrl.h +access.o: curses.h +access.o: ncurses_def.h +access.o: term.h +access.o: unctrl.h +access.po: curses.h +access.po: ncurses_def.h +access.po: term.h +access.po: unctrl.h +add_tries.So: curses.h +add_tries.So: ncurses_def.h +add_tries.So: term.h +add_tries.So: unctrl.h +add_tries.o: curses.h +add_tries.o: ncurses_def.h +add_tries.o: term.h +add_tries.o: unctrl.h +add_tries.po: curses.h +add_tries.po: ncurses_def.h +add_tries.po: term.h +add_tries.po: unctrl.h +alloc_entry.So: curses.h +alloc_entry.So: ncurses_def.h +alloc_entry.So: term.h +alloc_entry.So: unctrl.h +alloc_entry.o: curses.h +alloc_entry.o: ncurses_def.h +alloc_entry.o: term.h +alloc_entry.o: unctrl.h +alloc_entry.po: curses.h +alloc_entry.po: ncurses_def.h +alloc_entry.po: term.h +alloc_entry.po: unctrl.h +alloc_ttype.So: curses.h +alloc_ttype.So: ncurses_def.h +alloc_ttype.So: term.h +alloc_ttype.So: unctrl.h +alloc_ttype.o: curses.h +alloc_ttype.o: ncurses_def.h +alloc_ttype.o: term.h +alloc_ttype.o: unctrl.h +alloc_ttype.po: curses.h +alloc_ttype.po: ncurses_def.h +alloc_ttype.po: term.h +alloc_ttype.po: unctrl.h +captoinfo.So: curses.h +captoinfo.So: ncurses_def.h +captoinfo.So: term.h +captoinfo.So: unctrl.h +captoinfo.o: curses.h +captoinfo.o: ncurses_def.h +captoinfo.o: term.h +captoinfo.o: unctrl.h +captoinfo.po: curses.h +captoinfo.po: ncurses_def.h +captoinfo.po: term.h +captoinfo.po: unctrl.h +charable.So: curses.h +charable.So: ncurses_def.h +charable.So: term.h +charable.So: unctrl.h +charable.o: curses.h +charable.o: ncurses_def.h +charable.o: term.h +charable.o: unctrl.h +charable.po: curses.h +charable.po: ncurses_def.h +charable.po: term.h +charable.po: unctrl.h +codes.So: codes.c +codes.So: curses.h +codes.So: ncurses_def.h +codes.So: term.h +codes.So: unctrl.h +codes.o: codes.c +codes.o: curses.h +codes.o: ncurses_def.h +codes.o: term.h +codes.o: unctrl.h +codes.po: codes.c +codes.po: curses.h +codes.po: ncurses_def.h +codes.po: term.h +codes.po: unctrl.h +comp_captab.So: comp_captab.c +comp_captab.So: curses.h +comp_captab.So: hashsize.h +comp_captab.So: ncurses_def.h +comp_captab.So: term.h +comp_captab.So: unctrl.h +comp_captab.o: comp_captab.c +comp_captab.o: curses.h +comp_captab.o: hashsize.h +comp_captab.o: ncurses_def.h +comp_captab.o: term.h +comp_captab.o: unctrl.h +comp_captab.po: comp_captab.c +comp_captab.po: curses.h +comp_captab.po: hashsize.h +comp_captab.po: ncurses_def.h +comp_captab.po: term.h +comp_captab.po: unctrl.h +comp_error.So: curses.h +comp_error.So: ncurses_def.h +comp_error.So: term.h +comp_error.So: unctrl.h +comp_error.o: curses.h +comp_error.o: ncurses_def.h +comp_error.o: term.h +comp_error.o: unctrl.h +comp_error.po: curses.h +comp_error.po: ncurses_def.h +comp_error.po: term.h +comp_error.po: unctrl.h +comp_expand.So: curses.h +comp_expand.So: ncurses_def.h +comp_expand.So: term.h +comp_expand.So: unctrl.h +comp_expand.o: curses.h +comp_expand.o: ncurses_def.h +comp_expand.o: term.h +comp_expand.o: unctrl.h +comp_expand.po: curses.h +comp_expand.po: ncurses_def.h +comp_expand.po: term.h +comp_expand.po: unctrl.h +comp_hash.So: curses.h +comp_hash.So: hashsize.h +comp_hash.So: ncurses_def.h +comp_hash.So: term.h +comp_hash.So: unctrl.h +comp_hash.o: curses.h +comp_hash.o: hashsize.h +comp_hash.o: ncurses_def.h +comp_hash.o: term.h +comp_hash.o: unctrl.h +comp_hash.po: curses.h +comp_hash.po: hashsize.h +comp_hash.po: ncurses_def.h +comp_hash.po: term.h +comp_hash.po: unctrl.h +comp_parse.So: curses.h +comp_parse.So: ncurses_def.h +comp_parse.So: term.h +comp_parse.So: unctrl.h +comp_parse.o: curses.h +comp_parse.o: ncurses_def.h +comp_parse.o: term.h +comp_parse.o: unctrl.h +comp_parse.po: curses.h +comp_parse.po: ncurses_def.h +comp_parse.po: term.h +comp_parse.po: unctrl.h +comp_scan.So: curses.h +comp_scan.So: ncurses_def.h +comp_scan.So: term.h +comp_scan.So: unctrl.h +comp_scan.o: curses.h +comp_scan.o: ncurses_def.h +comp_scan.o: term.h +comp_scan.o: unctrl.h +comp_scan.po: curses.h +comp_scan.po: ncurses_def.h +comp_scan.po: term.h +comp_scan.po: unctrl.h +db_iterator.So: curses.h +db_iterator.So: ncurses_def.h +db_iterator.So: term.h +db_iterator.So: unctrl.h +db_iterator.o: curses.h +db_iterator.o: ncurses_def.h +db_iterator.o: term.h +db_iterator.o: unctrl.h +db_iterator.po: curses.h +db_iterator.po: ncurses_def.h +db_iterator.po: term.h +db_iterator.po: unctrl.h +define_key.So: curses.h +define_key.So: ncurses_def.h +define_key.So: term.h +define_key.So: unctrl.h +define_key.o: curses.h +define_key.o: ncurses_def.h +define_key.o: term.h +define_key.o: unctrl.h +define_key.po: curses.h +define_key.po: ncurses_def.h +define_key.po: term.h +define_key.po: unctrl.h +doalloc.So: curses.h +doalloc.So: ncurses_def.h +doalloc.So: term.h +doalloc.So: unctrl.h +doalloc.o: curses.h +doalloc.o: ncurses_def.h +doalloc.o: term.h +doalloc.o: unctrl.h +doalloc.po: curses.h +doalloc.po: ncurses_def.h +doalloc.po: term.h +doalloc.po: unctrl.h +entries.So: curses.h +entries.So: ncurses_def.h +entries.So: term.h +entries.So: unctrl.h +entries.o: curses.h +entries.o: ncurses_def.h +entries.o: term.h +entries.o: unctrl.h +entries.po: curses.h +entries.po: ncurses_def.h +entries.po: term.h +entries.po: unctrl.h +expanded.So: curses.h +expanded.So: expanded.c +expanded.So: ncurses_def.h +expanded.So: term.h +expanded.So: unctrl.h +expanded.o: curses.h +expanded.o: expanded.c +expanded.o: ncurses_def.h +expanded.o: term.h +expanded.o: unctrl.h +expanded.po: curses.h +expanded.po: expanded.c +expanded.po: ncurses_def.h +expanded.po: term.h +expanded.po: unctrl.h +fallback.So: curses.h +fallback.So: fallback.c +fallback.So: ncurses_def.h +fallback.So: term.h +fallback.So: unctrl.h +fallback.o: curses.h +fallback.o: fallback.c +fallback.o: ncurses_def.h +fallback.o: term.h +fallback.o: unctrl.h +fallback.po: curses.h +fallback.po: fallback.c +fallback.po: ncurses_def.h +fallback.po: term.h +fallback.po: unctrl.h +free_ttype.So: curses.h +free_ttype.So: ncurses_def.h +free_ttype.So: term.h +free_ttype.So: unctrl.h +free_ttype.o: curses.h +free_ttype.o: ncurses_def.h +free_ttype.o: term.h +free_ttype.o: unctrl.h +free_ttype.po: curses.h +free_ttype.po: ncurses_def.h +free_ttype.po: term.h +free_ttype.po: unctrl.h +getenv_num.So: curses.h +getenv_num.So: ncurses_def.h +getenv_num.So: term.h +getenv_num.So: unctrl.h +getenv_num.o: curses.h +getenv_num.o: ncurses_def.h +getenv_num.o: term.h +getenv_num.o: unctrl.h +getenv_num.po: curses.h +getenv_num.po: ncurses_def.h +getenv_num.po: term.h +getenv_num.po: unctrl.h +hardscroll.So: curses.h +hardscroll.So: ncurses_def.h +hardscroll.So: term.h +hardscroll.So: unctrl.h +hardscroll.o: curses.h +hardscroll.o: ncurses_def.h +hardscroll.o: term.h +hardscroll.o: unctrl.h +hardscroll.po: curses.h +hardscroll.po: ncurses_def.h +hardscroll.po: term.h +hardscroll.po: unctrl.h +hashed_db.So: curses.h +hashed_db.So: ncurses_def.h +hashed_db.So: term.h +hashed_db.So: unctrl.h +hashed_db.o: curses.h +hashed_db.o: ncurses_def.h +hashed_db.o: term.h +hashed_db.o: unctrl.h +hashed_db.po: curses.h +hashed_db.po: ncurses_def.h +hashed_db.po: term.h +hashed_db.po: unctrl.h +hashmap.So: curses.h +hashmap.So: ncurses_def.h +hashmap.So: term.h +hashmap.So: unctrl.h +hashmap.o: curses.h +hashmap.o: ncurses_def.h +hashmap.o: term.h +hashmap.o: unctrl.h +hashmap.po: curses.h +hashmap.po: ncurses_def.h +hashmap.po: term.h +hashmap.po: unctrl.h +home_terminfo.So: curses.h +home_terminfo.So: ncurses_def.h +home_terminfo.So: term.h +home_terminfo.So: unctrl.h +home_terminfo.o: curses.h +home_terminfo.o: ncurses_def.h +home_terminfo.o: term.h +home_terminfo.o: unctrl.h +home_terminfo.po: curses.h +home_terminfo.po: ncurses_def.h +home_terminfo.po: term.h +home_terminfo.po: unctrl.h +init_keytry.So: curses.h +init_keytry.So: init_keytry.h +init_keytry.So: ncurses_def.h +init_keytry.So: term.h +init_keytry.So: unctrl.h +init_keytry.o: curses.h +init_keytry.o: init_keytry.h +init_keytry.o: ncurses_def.h +init_keytry.o: term.h +init_keytry.o: unctrl.h +init_keytry.po: curses.h +init_keytry.po: init_keytry.h +init_keytry.po: ncurses_def.h +init_keytry.po: term.h +init_keytry.po: unctrl.h +key_defined.So: curses.h +key_defined.So: ncurses_def.h +key_defined.So: term.h +key_defined.So: unctrl.h +key_defined.o: curses.h +key_defined.o: ncurses_def.h +key_defined.o: term.h +key_defined.o: unctrl.h +key_defined.po: curses.h +key_defined.po: ncurses_def.h +key_defined.po: term.h +key_defined.po: unctrl.h +keybound.So: curses.h +keybound.So: ncurses_def.h +keybound.So: term.h +keybound.So: unctrl.h +keybound.o: curses.h +keybound.o: ncurses_def.h +keybound.o: term.h +keybound.o: unctrl.h +keybound.po: curses.h +keybound.po: ncurses_def.h +keybound.po: term.h +keybound.po: unctrl.h +keyok.So: curses.h +keyok.So: ncurses_def.h +keyok.So: term.h +keyok.So: unctrl.h +keyok.o: curses.h +keyok.o: ncurses_def.h +keyok.o: term.h +keyok.o: unctrl.h +keyok.po: curses.h +keyok.po: ncurses_def.h +keyok.po: term.h +keyok.po: unctrl.h +legacy_coding.So: curses.h +legacy_coding.So: ncurses_def.h +legacy_coding.So: term.h +legacy_coding.So: unctrl.h +legacy_coding.o: curses.h +legacy_coding.o: ncurses_def.h +legacy_coding.o: term.h +legacy_coding.o: unctrl.h +legacy_coding.po: curses.h +legacy_coding.po: ncurses_def.h +legacy_coding.po: term.h +legacy_coding.po: unctrl.h +lib_acs.So: curses.h +lib_acs.So: ncurses_def.h +lib_acs.So: term.h +lib_acs.So: unctrl.h +lib_acs.o: curses.h +lib_acs.o: ncurses_def.h +lib_acs.o: term.h +lib_acs.o: unctrl.h +lib_acs.po: curses.h +lib_acs.po: ncurses_def.h +lib_acs.po: term.h +lib_acs.po: unctrl.h +lib_add_wch.So: curses.h +lib_add_wch.So: ncurses_def.h +lib_add_wch.So: term.h +lib_add_wch.So: unctrl.h +lib_add_wch.o: curses.h +lib_add_wch.o: ncurses_def.h +lib_add_wch.o: term.h +lib_add_wch.o: unctrl.h +lib_add_wch.po: curses.h +lib_add_wch.po: ncurses_def.h +lib_add_wch.po: term.h +lib_add_wch.po: unctrl.h +lib_addch.So: curses.h +lib_addch.So: ncurses_def.h +lib_addch.So: term.h +lib_addch.So: unctrl.h +lib_addch.o: curses.h +lib_addch.o: ncurses_def.h +lib_addch.o: term.h +lib_addch.o: unctrl.h +lib_addch.po: curses.h +lib_addch.po: ncurses_def.h +lib_addch.po: term.h +lib_addch.po: unctrl.h +lib_addstr.So: curses.h +lib_addstr.So: ncurses_def.h +lib_addstr.So: term.h +lib_addstr.So: unctrl.h +lib_addstr.o: curses.h +lib_addstr.o: ncurses_def.h +lib_addstr.o: term.h +lib_addstr.o: unctrl.h +lib_addstr.po: curses.h +lib_addstr.po: ncurses_def.h +lib_addstr.po: term.h +lib_addstr.po: unctrl.h +lib_baudrate.So: curses.h +lib_baudrate.So: ncurses_def.h +lib_baudrate.So: term.h +lib_baudrate.So: termcap.h +lib_baudrate.So: unctrl.h +lib_baudrate.o: curses.h +lib_baudrate.o: ncurses_def.h +lib_baudrate.o: term.h +lib_baudrate.o: termcap.h +lib_baudrate.o: unctrl.h +lib_baudrate.po: curses.h +lib_baudrate.po: ncurses_def.h +lib_baudrate.po: term.h +lib_baudrate.po: termcap.h +lib_baudrate.po: unctrl.h +lib_beep.So: curses.h +lib_beep.So: ncurses_def.h +lib_beep.So: term.h +lib_beep.So: unctrl.h +lib_beep.o: curses.h +lib_beep.o: ncurses_def.h +lib_beep.o: term.h +lib_beep.o: unctrl.h +lib_beep.po: curses.h +lib_beep.po: ncurses_def.h +lib_beep.po: term.h +lib_beep.po: unctrl.h +lib_bkgd.So: curses.h +lib_bkgd.So: ncurses_def.h +lib_bkgd.So: term.h +lib_bkgd.So: unctrl.h +lib_bkgd.o: curses.h +lib_bkgd.o: ncurses_def.h +lib_bkgd.o: term.h +lib_bkgd.o: unctrl.h +lib_bkgd.po: curses.h +lib_bkgd.po: ncurses_def.h +lib_bkgd.po: term.h +lib_bkgd.po: unctrl.h +lib_box.So: curses.h +lib_box.So: ncurses_def.h +lib_box.So: term.h +lib_box.So: unctrl.h +lib_box.o: curses.h +lib_box.o: ncurses_def.h +lib_box.o: term.h +lib_box.o: unctrl.h +lib_box.po: curses.h +lib_box.po: ncurses_def.h +lib_box.po: term.h +lib_box.po: unctrl.h +lib_box_set.So: curses.h +lib_box_set.So: ncurses_def.h +lib_box_set.So: term.h +lib_box_set.So: unctrl.h +lib_box_set.o: curses.h +lib_box_set.o: ncurses_def.h +lib_box_set.o: term.h +lib_box_set.o: unctrl.h +lib_box_set.po: curses.h +lib_box_set.po: ncurses_def.h +lib_box_set.po: term.h +lib_box_set.po: unctrl.h +lib_cchar.So: curses.h +lib_cchar.So: ncurses_def.h +lib_cchar.So: term.h +lib_cchar.So: unctrl.h +lib_cchar.o: curses.h +lib_cchar.o: ncurses_def.h +lib_cchar.o: term.h +lib_cchar.o: unctrl.h +lib_cchar.po: curses.h +lib_cchar.po: ncurses_def.h +lib_cchar.po: term.h +lib_cchar.po: unctrl.h +lib_chgat.So: curses.h +lib_chgat.So: ncurses_def.h +lib_chgat.So: term.h +lib_chgat.So: unctrl.h +lib_chgat.o: curses.h +lib_chgat.o: ncurses_def.h +lib_chgat.o: term.h +lib_chgat.o: unctrl.h +lib_chgat.po: curses.h +lib_chgat.po: ncurses_def.h +lib_chgat.po: term.h +lib_chgat.po: unctrl.h +lib_clear.So: curses.h +lib_clear.So: ncurses_def.h +lib_clear.So: term.h +lib_clear.So: unctrl.h +lib_clear.o: curses.h +lib_clear.o: ncurses_def.h +lib_clear.o: term.h +lib_clear.o: unctrl.h +lib_clear.po: curses.h +lib_clear.po: ncurses_def.h +lib_clear.po: term.h +lib_clear.po: unctrl.h +lib_clearok.So: curses.h +lib_clearok.So: ncurses_def.h +lib_clearok.So: term.h +lib_clearok.So: unctrl.h +lib_clearok.o: curses.h +lib_clearok.o: ncurses_def.h +lib_clearok.o: term.h +lib_clearok.o: unctrl.h +lib_clearok.po: curses.h +lib_clearok.po: ncurses_def.h +lib_clearok.po: term.h +lib_clearok.po: unctrl.h +lib_clrbot.So: curses.h +lib_clrbot.So: ncurses_def.h +lib_clrbot.So: term.h +lib_clrbot.So: unctrl.h +lib_clrbot.o: curses.h +lib_clrbot.o: ncurses_def.h +lib_clrbot.o: term.h +lib_clrbot.o: unctrl.h +lib_clrbot.po: curses.h +lib_clrbot.po: ncurses_def.h +lib_clrbot.po: term.h +lib_clrbot.po: unctrl.h +lib_clreol.So: curses.h +lib_clreol.So: ncurses_def.h +lib_clreol.So: term.h +lib_clreol.So: unctrl.h +lib_clreol.o: curses.h +lib_clreol.o: ncurses_def.h +lib_clreol.o: term.h +lib_clreol.o: unctrl.h +lib_clreol.po: curses.h +lib_clreol.po: ncurses_def.h +lib_clreol.po: term.h +lib_clreol.po: unctrl.h +lib_color.So: curses.h +lib_color.So: ncurses_def.h +lib_color.So: term.h +lib_color.So: unctrl.h +lib_color.o: curses.h +lib_color.o: ncurses_def.h +lib_color.o: term.h +lib_color.o: unctrl.h +lib_color.po: curses.h +lib_color.po: ncurses_def.h +lib_color.po: term.h +lib_color.po: unctrl.h +lib_colorset.So: curses.h +lib_colorset.So: ncurses_def.h +lib_colorset.So: term.h +lib_colorset.So: unctrl.h +lib_colorset.o: curses.h +lib_colorset.o: ncurses_def.h +lib_colorset.o: term.h +lib_colorset.o: unctrl.h +lib_colorset.po: curses.h +lib_colorset.po: ncurses_def.h +lib_colorset.po: term.h +lib_colorset.po: unctrl.h +lib_cur_term.So: curses.h +lib_cur_term.So: ncurses_def.h +lib_cur_term.So: term.h +lib_cur_term.So: termcap.h +lib_cur_term.So: unctrl.h +lib_cur_term.o: curses.h +lib_cur_term.o: ncurses_def.h +lib_cur_term.o: term.h +lib_cur_term.o: termcap.h +lib_cur_term.o: unctrl.h +lib_cur_term.po: curses.h +lib_cur_term.po: ncurses_def.h +lib_cur_term.po: term.h +lib_cur_term.po: termcap.h +lib_cur_term.po: unctrl.h +lib_data.So: curses.h +lib_data.So: ncurses_def.h +lib_data.So: term.h +lib_data.So: unctrl.h +lib_data.o: curses.h +lib_data.o: ncurses_def.h +lib_data.o: term.h +lib_data.o: unctrl.h +lib_data.po: curses.h +lib_data.po: ncurses_def.h +lib_data.po: term.h +lib_data.po: unctrl.h +lib_delch.So: curses.h +lib_delch.So: ncurses_def.h +lib_delch.So: term.h +lib_delch.So: unctrl.h +lib_delch.o: curses.h +lib_delch.o: ncurses_def.h +lib_delch.o: term.h +lib_delch.o: unctrl.h +lib_delch.po: curses.h +lib_delch.po: ncurses_def.h +lib_delch.po: term.h +lib_delch.po: unctrl.h +lib_delwin.So: curses.h +lib_delwin.So: ncurses_def.h +lib_delwin.So: term.h +lib_delwin.So: unctrl.h +lib_delwin.o: curses.h +lib_delwin.o: ncurses_def.h +lib_delwin.o: term.h +lib_delwin.o: unctrl.h +lib_delwin.po: curses.h +lib_delwin.po: ncurses_def.h +lib_delwin.po: term.h +lib_delwin.po: unctrl.h +lib_dft_fgbg.So: curses.h +lib_dft_fgbg.So: ncurses_def.h +lib_dft_fgbg.So: term.h +lib_dft_fgbg.So: unctrl.h +lib_dft_fgbg.o: curses.h +lib_dft_fgbg.o: ncurses_def.h +lib_dft_fgbg.o: term.h +lib_dft_fgbg.o: unctrl.h +lib_dft_fgbg.po: curses.h +lib_dft_fgbg.po: ncurses_def.h +lib_dft_fgbg.po: term.h +lib_dft_fgbg.po: unctrl.h +lib_echo.So: curses.h +lib_echo.So: ncurses_def.h +lib_echo.So: term.h +lib_echo.So: unctrl.h +lib_echo.o: curses.h +lib_echo.o: ncurses_def.h +lib_echo.o: term.h +lib_echo.o: unctrl.h +lib_echo.po: curses.h +lib_echo.po: ncurses_def.h +lib_echo.po: term.h +lib_echo.po: unctrl.h +lib_endwin.So: curses.h +lib_endwin.So: ncurses_def.h +lib_endwin.So: term.h +lib_endwin.So: unctrl.h +lib_endwin.o: curses.h +lib_endwin.o: ncurses_def.h +lib_endwin.o: term.h +lib_endwin.o: unctrl.h +lib_endwin.po: curses.h +lib_endwin.po: ncurses_def.h +lib_endwin.po: term.h +lib_endwin.po: unctrl.h +lib_erase.So: curses.h +lib_erase.So: ncurses_def.h +lib_erase.So: term.h +lib_erase.So: unctrl.h +lib_erase.o: curses.h +lib_erase.o: ncurses_def.h +lib_erase.o: term.h +lib_erase.o: unctrl.h +lib_erase.po: curses.h +lib_erase.po: ncurses_def.h +lib_erase.po: term.h +lib_erase.po: unctrl.h +lib_erasewchar.So: curses.h +lib_erasewchar.So: ncurses_def.h +lib_erasewchar.So: term.h +lib_erasewchar.So: unctrl.h +lib_erasewchar.o: curses.h +lib_erasewchar.o: ncurses_def.h +lib_erasewchar.o: term.h +lib_erasewchar.o: unctrl.h +lib_erasewchar.po: curses.h +lib_erasewchar.po: ncurses_def.h +lib_erasewchar.po: term.h +lib_erasewchar.po: unctrl.h +lib_flash.So: curses.h +lib_flash.So: ncurses_def.h +lib_flash.So: term.h +lib_flash.So: unctrl.h +lib_flash.o: curses.h +lib_flash.o: ncurses_def.h +lib_flash.o: term.h +lib_flash.o: unctrl.h +lib_flash.po: curses.h +lib_flash.po: ncurses_def.h +lib_flash.po: term.h +lib_flash.po: unctrl.h +lib_freeall.So: curses.h +lib_freeall.So: ncurses_def.h +lib_freeall.So: term.h +lib_freeall.So: unctrl.h +lib_freeall.o: curses.h +lib_freeall.o: ncurses_def.h +lib_freeall.o: term.h +lib_freeall.o: unctrl.h +lib_freeall.po: curses.h +lib_freeall.po: ncurses_def.h +lib_freeall.po: term.h +lib_freeall.po: unctrl.h +lib_gen.So: curses.h +lib_gen.So: lib_gen.c +lib_gen.So: ncurses_def.h +lib_gen.So: term.h +lib_gen.So: unctrl.h +lib_gen.o: curses.h +lib_gen.o: lib_gen.c +lib_gen.o: ncurses_def.h +lib_gen.o: term.h +lib_gen.o: unctrl.h +lib_gen.po: curses.h +lib_gen.po: lib_gen.c +lib_gen.po: ncurses_def.h +lib_gen.po: term.h +lib_gen.po: unctrl.h +lib_get_wch.So: curses.h +lib_get_wch.So: ncurses_def.h +lib_get_wch.So: term.h +lib_get_wch.So: unctrl.h +lib_get_wch.o: curses.h +lib_get_wch.o: ncurses_def.h +lib_get_wch.o: term.h +lib_get_wch.o: unctrl.h +lib_get_wch.po: curses.h +lib_get_wch.po: ncurses_def.h +lib_get_wch.po: term.h +lib_get_wch.po: unctrl.h +lib_get_wstr.So: curses.h +lib_get_wstr.So: ncurses_def.h +lib_get_wstr.So: term.h +lib_get_wstr.So: unctrl.h +lib_get_wstr.o: curses.h +lib_get_wstr.o: ncurses_def.h +lib_get_wstr.o: term.h +lib_get_wstr.o: unctrl.h +lib_get_wstr.po: curses.h +lib_get_wstr.po: ncurses_def.h +lib_get_wstr.po: term.h +lib_get_wstr.po: unctrl.h +lib_getch.So: curses.h +lib_getch.So: ncurses_def.h +lib_getch.So: term.h +lib_getch.So: unctrl.h +lib_getch.o: curses.h +lib_getch.o: ncurses_def.h +lib_getch.o: term.h +lib_getch.o: unctrl.h +lib_getch.po: curses.h +lib_getch.po: ncurses_def.h +lib_getch.po: term.h +lib_getch.po: unctrl.h +lib_getstr.So: curses.h +lib_getstr.So: ncurses_def.h +lib_getstr.So: term.h +lib_getstr.So: unctrl.h +lib_getstr.o: curses.h +lib_getstr.o: ncurses_def.h +lib_getstr.o: term.h +lib_getstr.o: unctrl.h +lib_getstr.po: curses.h +lib_getstr.po: ncurses_def.h +lib_getstr.po: term.h +lib_getstr.po: unctrl.h +lib_has_cap.So: curses.h +lib_has_cap.So: ncurses_def.h +lib_has_cap.So: term.h +lib_has_cap.So: unctrl.h +lib_has_cap.o: curses.h +lib_has_cap.o: ncurses_def.h +lib_has_cap.o: term.h +lib_has_cap.o: unctrl.h +lib_has_cap.po: curses.h +lib_has_cap.po: ncurses_def.h +lib_has_cap.po: term.h +lib_has_cap.po: unctrl.h +lib_hline.So: curses.h +lib_hline.So: ncurses_def.h +lib_hline.So: term.h +lib_hline.So: unctrl.h +lib_hline.o: curses.h +lib_hline.o: ncurses_def.h +lib_hline.o: term.h +lib_hline.o: unctrl.h +lib_hline.po: curses.h +lib_hline.po: ncurses_def.h +lib_hline.po: term.h +lib_hline.po: unctrl.h +lib_hline_set.So: curses.h +lib_hline_set.So: ncurses_def.h +lib_hline_set.So: term.h +lib_hline_set.So: unctrl.h +lib_hline_set.o: curses.h +lib_hline_set.o: ncurses_def.h +lib_hline_set.o: term.h +lib_hline_set.o: unctrl.h +lib_hline_set.po: curses.h +lib_hline_set.po: ncurses_def.h +lib_hline_set.po: term.h +lib_hline_set.po: unctrl.h +lib_immedok.So: curses.h +lib_immedok.So: ncurses_def.h +lib_immedok.So: term.h +lib_immedok.So: unctrl.h +lib_immedok.o: curses.h +lib_immedok.o: ncurses_def.h +lib_immedok.o: term.h +lib_immedok.o: unctrl.h +lib_immedok.po: curses.h +lib_immedok.po: ncurses_def.h +lib_immedok.po: term.h +lib_immedok.po: unctrl.h +lib_in_wch.So: curses.h +lib_in_wch.So: ncurses_def.h +lib_in_wch.So: term.h +lib_in_wch.So: unctrl.h +lib_in_wch.o: curses.h +lib_in_wch.o: ncurses_def.h +lib_in_wch.o: term.h +lib_in_wch.o: unctrl.h +lib_in_wch.po: curses.h +lib_in_wch.po: ncurses_def.h +lib_in_wch.po: term.h +lib_in_wch.po: unctrl.h +lib_in_wchnstr.So: curses.h +lib_in_wchnstr.So: ncurses_def.h +lib_in_wchnstr.So: term.h +lib_in_wchnstr.So: unctrl.h +lib_in_wchnstr.o: curses.h +lib_in_wchnstr.o: ncurses_def.h +lib_in_wchnstr.o: term.h +lib_in_wchnstr.o: unctrl.h +lib_in_wchnstr.po: curses.h +lib_in_wchnstr.po: ncurses_def.h +lib_in_wchnstr.po: term.h +lib_in_wchnstr.po: unctrl.h +lib_inchstr.So: curses.h +lib_inchstr.So: ncurses_def.h +lib_inchstr.So: term.h +lib_inchstr.So: unctrl.h +lib_inchstr.o: curses.h +lib_inchstr.o: ncurses_def.h +lib_inchstr.o: term.h +lib_inchstr.o: unctrl.h +lib_inchstr.po: curses.h +lib_inchstr.po: ncurses_def.h +lib_inchstr.po: term.h +lib_inchstr.po: unctrl.h +lib_initscr.So: curses.h +lib_initscr.So: ncurses_def.h +lib_initscr.So: term.h +lib_initscr.So: unctrl.h +lib_initscr.o: curses.h +lib_initscr.o: ncurses_def.h +lib_initscr.o: term.h +lib_initscr.o: unctrl.h +lib_initscr.po: curses.h +lib_initscr.po: ncurses_def.h +lib_initscr.po: term.h +lib_initscr.po: unctrl.h +lib_ins_wch.So: curses.h +lib_ins_wch.So: ncurses_def.h +lib_ins_wch.So: term.h +lib_ins_wch.So: unctrl.h +lib_ins_wch.o: curses.h +lib_ins_wch.o: ncurses_def.h +lib_ins_wch.o: term.h +lib_ins_wch.o: unctrl.h +lib_ins_wch.po: curses.h +lib_ins_wch.po: ncurses_def.h +lib_ins_wch.po: term.h +lib_ins_wch.po: unctrl.h +lib_insch.So: curses.h +lib_insch.So: ncurses_def.h +lib_insch.So: term.h +lib_insch.So: unctrl.h +lib_insch.o: curses.h +lib_insch.o: ncurses_def.h +lib_insch.o: term.h +lib_insch.o: unctrl.h +lib_insch.po: curses.h +lib_insch.po: ncurses_def.h +lib_insch.po: term.h +lib_insch.po: unctrl.h +lib_insdel.So: curses.h +lib_insdel.So: ncurses_def.h +lib_insdel.So: term.h +lib_insdel.So: unctrl.h +lib_insdel.o: curses.h +lib_insdel.o: ncurses_def.h +lib_insdel.o: term.h +lib_insdel.o: unctrl.h +lib_insdel.po: curses.h +lib_insdel.po: ncurses_def.h +lib_insdel.po: term.h +lib_insdel.po: unctrl.h +lib_insnstr.So: curses.h +lib_insnstr.So: ncurses_def.h +lib_insnstr.So: term.h +lib_insnstr.So: unctrl.h +lib_insnstr.o: curses.h +lib_insnstr.o: ncurses_def.h +lib_insnstr.o: term.h +lib_insnstr.o: unctrl.h +lib_insnstr.po: curses.h +lib_insnstr.po: ncurses_def.h +lib_insnstr.po: term.h +lib_insnstr.po: unctrl.h +lib_instr.So: curses.h +lib_instr.So: ncurses_def.h +lib_instr.So: term.h +lib_instr.So: unctrl.h +lib_instr.o: curses.h +lib_instr.o: ncurses_def.h +lib_instr.o: term.h +lib_instr.o: unctrl.h +lib_instr.po: curses.h +lib_instr.po: ncurses_def.h +lib_instr.po: term.h +lib_instr.po: unctrl.h +lib_inwstr.So: curses.h +lib_inwstr.So: ncurses_def.h +lib_inwstr.So: term.h +lib_inwstr.So: unctrl.h +lib_inwstr.o: curses.h +lib_inwstr.o: ncurses_def.h +lib_inwstr.o: term.h +lib_inwstr.o: unctrl.h +lib_inwstr.po: curses.h +lib_inwstr.po: ncurses_def.h +lib_inwstr.po: term.h +lib_inwstr.po: unctrl.h +lib_isendwin.So: curses.h +lib_isendwin.So: ncurses_def.h +lib_isendwin.So: term.h +lib_isendwin.So: unctrl.h +lib_isendwin.o: curses.h +lib_isendwin.o: ncurses_def.h +lib_isendwin.o: term.h +lib_isendwin.o: unctrl.h +lib_isendwin.po: curses.h +lib_isendwin.po: ncurses_def.h +lib_isendwin.po: term.h +lib_isendwin.po: unctrl.h +lib_kernel.So: curses.h +lib_kernel.So: ncurses_def.h +lib_kernel.So: term.h +lib_kernel.So: unctrl.h +lib_kernel.o: curses.h +lib_kernel.o: ncurses_def.h +lib_kernel.o: term.h +lib_kernel.o: unctrl.h +lib_kernel.po: curses.h +lib_kernel.po: ncurses_def.h +lib_kernel.po: term.h +lib_kernel.po: unctrl.h +lib_key_name.So: curses.h +lib_key_name.So: ncurses_def.h +lib_key_name.So: term.h +lib_key_name.So: unctrl.h +lib_key_name.o: curses.h +lib_key_name.o: ncurses_def.h +lib_key_name.o: term.h +lib_key_name.o: unctrl.h +lib_key_name.po: curses.h +lib_key_name.po: ncurses_def.h +lib_key_name.po: term.h +lib_key_name.po: unctrl.h +lib_keyname.So: curses.h +lib_keyname.So: lib_keyname.c +lib_keyname.So: ncurses_def.h +lib_keyname.So: term.h +lib_keyname.So: unctrl.h +lib_keyname.o: curses.h +lib_keyname.o: lib_keyname.c +lib_keyname.o: ncurses_def.h +lib_keyname.o: term.h +lib_keyname.o: unctrl.h +lib_keyname.po: curses.h +lib_keyname.po: lib_keyname.c +lib_keyname.po: ncurses_def.h +lib_keyname.po: term.h +lib_keyname.po: unctrl.h +lib_leaveok.So: curses.h +lib_leaveok.So: ncurses_def.h +lib_leaveok.So: term.h +lib_leaveok.So: unctrl.h +lib_leaveok.o: curses.h +lib_leaveok.o: ncurses_def.h +lib_leaveok.o: term.h +lib_leaveok.o: unctrl.h +lib_leaveok.po: curses.h +lib_leaveok.po: ncurses_def.h +lib_leaveok.po: term.h +lib_leaveok.po: unctrl.h +lib_longname.So: curses.h +lib_longname.So: ncurses_def.h +lib_longname.So: term.h +lib_longname.So: unctrl.h +lib_longname.o: curses.h +lib_longname.o: ncurses_def.h +lib_longname.o: term.h +lib_longname.o: unctrl.h +lib_longname.po: curses.h +lib_longname.po: ncurses_def.h +lib_longname.po: term.h +lib_longname.po: unctrl.h +lib_mouse.So: curses.h +lib_mouse.So: ncurses_def.h +lib_mouse.So: term.h +lib_mouse.So: unctrl.h +lib_mouse.o: curses.h +lib_mouse.o: ncurses_def.h +lib_mouse.o: term.h +lib_mouse.o: unctrl.h +lib_mouse.po: curses.h +lib_mouse.po: ncurses_def.h +lib_mouse.po: term.h +lib_mouse.po: unctrl.h +lib_move.So: curses.h +lib_move.So: ncurses_def.h +lib_move.So: term.h +lib_move.So: unctrl.h +lib_move.o: curses.h +lib_move.o: ncurses_def.h +lib_move.o: term.h +lib_move.o: unctrl.h +lib_move.po: curses.h +lib_move.po: ncurses_def.h +lib_move.po: term.h +lib_move.po: unctrl.h +lib_mvcur.So: curses.h +lib_mvcur.So: ncurses_def.h +lib_mvcur.So: term.h +lib_mvcur.So: unctrl.h +lib_mvcur.o: curses.h +lib_mvcur.o: ncurses_def.h +lib_mvcur.o: term.h +lib_mvcur.o: unctrl.h +lib_mvcur.po: curses.h +lib_mvcur.po: ncurses_def.h +lib_mvcur.po: term.h +lib_mvcur.po: unctrl.h +lib_mvwin.So: curses.h +lib_mvwin.So: ncurses_def.h +lib_mvwin.So: term.h +lib_mvwin.So: unctrl.h +lib_mvwin.o: curses.h +lib_mvwin.o: ncurses_def.h +lib_mvwin.o: term.h +lib_mvwin.o: unctrl.h +lib_mvwin.po: curses.h +lib_mvwin.po: ncurses_def.h +lib_mvwin.po: term.h +lib_mvwin.po: unctrl.h +lib_napms.So: curses.h +lib_napms.So: ncurses_def.h +lib_napms.So: term.h +lib_napms.So: unctrl.h +lib_napms.o: curses.h +lib_napms.o: ncurses_def.h +lib_napms.o: term.h +lib_napms.o: unctrl.h +lib_napms.po: curses.h +lib_napms.po: ncurses_def.h +lib_napms.po: term.h +lib_napms.po: unctrl.h +lib_newterm.So: curses.h +lib_newterm.So: ncurses_def.h +lib_newterm.So: term.h +lib_newterm.So: unctrl.h +lib_newterm.o: curses.h +lib_newterm.o: ncurses_def.h +lib_newterm.o: term.h +lib_newterm.o: unctrl.h +lib_newterm.po: curses.h +lib_newterm.po: ncurses_def.h +lib_newterm.po: term.h +lib_newterm.po: unctrl.h +lib_newwin.So: curses.h +lib_newwin.So: ncurses_def.h +lib_newwin.So: term.h +lib_newwin.So: unctrl.h +lib_newwin.o: curses.h +lib_newwin.o: ncurses_def.h +lib_newwin.o: term.h +lib_newwin.o: unctrl.h +lib_newwin.po: curses.h +lib_newwin.po: ncurses_def.h +lib_newwin.po: term.h +lib_newwin.po: unctrl.h +lib_nl.So: curses.h +lib_nl.So: ncurses_def.h +lib_nl.So: term.h +lib_nl.So: unctrl.h +lib_nl.o: curses.h +lib_nl.o: ncurses_def.h +lib_nl.o: term.h +lib_nl.o: unctrl.h +lib_nl.po: curses.h +lib_nl.po: ncurses_def.h +lib_nl.po: term.h +lib_nl.po: unctrl.h +lib_options.So: curses.h +lib_options.So: ncurses_def.h +lib_options.So: term.h +lib_options.So: unctrl.h +lib_options.o: curses.h +lib_options.o: ncurses_def.h +lib_options.o: term.h +lib_options.o: unctrl.h +lib_options.po: curses.h +lib_options.po: ncurses_def.h +lib_options.po: term.h +lib_options.po: unctrl.h +lib_overlay.So: curses.h +lib_overlay.So: ncurses_def.h +lib_overlay.So: term.h +lib_overlay.So: unctrl.h +lib_overlay.o: curses.h +lib_overlay.o: ncurses_def.h +lib_overlay.o: term.h +lib_overlay.o: unctrl.h +lib_overlay.po: curses.h +lib_overlay.po: ncurses_def.h +lib_overlay.po: term.h +lib_overlay.po: unctrl.h +lib_pad.So: curses.h +lib_pad.So: ncurses_def.h +lib_pad.So: term.h +lib_pad.So: unctrl.h +lib_pad.o: curses.h +lib_pad.o: ncurses_def.h +lib_pad.o: term.h +lib_pad.o: unctrl.h +lib_pad.po: curses.h +lib_pad.po: ncurses_def.h +lib_pad.po: term.h +lib_pad.po: unctrl.h +lib_pecho_wchar.So: curses.h +lib_pecho_wchar.So: ncurses_def.h +lib_pecho_wchar.So: term.h +lib_pecho_wchar.So: unctrl.h +lib_pecho_wchar.o: curses.h +lib_pecho_wchar.o: ncurses_def.h +lib_pecho_wchar.o: term.h +lib_pecho_wchar.o: unctrl.h +lib_pecho_wchar.po: curses.h +lib_pecho_wchar.po: ncurses_def.h +lib_pecho_wchar.po: term.h +lib_pecho_wchar.po: unctrl.h +lib_print.So: curses.h +lib_print.So: ncurses_def.h +lib_print.So: term.h +lib_print.So: unctrl.h +lib_print.o: curses.h +lib_print.o: ncurses_def.h +lib_print.o: term.h +lib_print.o: unctrl.h +lib_print.po: curses.h +lib_print.po: ncurses_def.h +lib_print.po: term.h +lib_print.po: unctrl.h +lib_printw.So: curses.h +lib_printw.So: ncurses_def.h +lib_printw.So: term.h +lib_printw.So: unctrl.h +lib_printw.o: curses.h +lib_printw.o: ncurses_def.h +lib_printw.o: term.h +lib_printw.o: unctrl.h +lib_printw.po: curses.h +lib_printw.po: ncurses_def.h +lib_printw.po: term.h +lib_printw.po: unctrl.h +lib_raw.So: curses.h +lib_raw.So: ncurses_def.h +lib_raw.So: term.h +lib_raw.So: unctrl.h +lib_raw.o: curses.h +lib_raw.o: ncurses_def.h +lib_raw.o: term.h +lib_raw.o: unctrl.h +lib_raw.po: curses.h +lib_raw.po: ncurses_def.h +lib_raw.po: term.h +lib_raw.po: unctrl.h +lib_redrawln.So: curses.h +lib_redrawln.So: ncurses_def.h +lib_redrawln.So: term.h +lib_redrawln.So: unctrl.h +lib_redrawln.o: curses.h +lib_redrawln.o: ncurses_def.h +lib_redrawln.o: term.h +lib_redrawln.o: unctrl.h +lib_redrawln.po: curses.h +lib_redrawln.po: ncurses_def.h +lib_redrawln.po: term.h +lib_redrawln.po: unctrl.h +lib_refresh.So: curses.h +lib_refresh.So: ncurses_def.h +lib_refresh.So: term.h +lib_refresh.So: unctrl.h +lib_refresh.o: curses.h +lib_refresh.o: ncurses_def.h +lib_refresh.o: term.h +lib_refresh.o: unctrl.h +lib_refresh.po: curses.h +lib_refresh.po: ncurses_def.h +lib_refresh.po: term.h +lib_refresh.po: unctrl.h +lib_restart.So: curses.h +lib_restart.So: ncurses_def.h +lib_restart.So: term.h +lib_restart.So: unctrl.h +lib_restart.o: curses.h +lib_restart.o: ncurses_def.h +lib_restart.o: term.h +lib_restart.o: unctrl.h +lib_restart.po: curses.h +lib_restart.po: ncurses_def.h +lib_restart.po: term.h +lib_restart.po: unctrl.h +lib_scanw.So: curses.h +lib_scanw.So: ncurses_def.h +lib_scanw.So: term.h +lib_scanw.So: unctrl.h +lib_scanw.o: curses.h +lib_scanw.o: ncurses_def.h +lib_scanw.o: term.h +lib_scanw.o: unctrl.h +lib_scanw.po: curses.h +lib_scanw.po: ncurses_def.h +lib_scanw.po: term.h +lib_scanw.po: unctrl.h +lib_screen.So: curses.h +lib_screen.So: ncurses_def.h +lib_screen.So: term.h +lib_screen.So: unctrl.h +lib_screen.o: curses.h +lib_screen.o: ncurses_def.h +lib_screen.o: term.h +lib_screen.o: unctrl.h +lib_screen.po: curses.h +lib_screen.po: ncurses_def.h +lib_screen.po: term.h +lib_screen.po: unctrl.h +lib_scroll.So: curses.h +lib_scroll.So: ncurses_def.h +lib_scroll.So: term.h +lib_scroll.So: unctrl.h +lib_scroll.o: curses.h +lib_scroll.o: ncurses_def.h +lib_scroll.o: term.h +lib_scroll.o: unctrl.h +lib_scroll.po: curses.h +lib_scroll.po: ncurses_def.h +lib_scroll.po: term.h +lib_scroll.po: unctrl.h +lib_scrollok.So: curses.h +lib_scrollok.So: ncurses_def.h +lib_scrollok.So: term.h +lib_scrollok.So: unctrl.h +lib_scrollok.o: curses.h +lib_scrollok.o: ncurses_def.h +lib_scrollok.o: term.h +lib_scrollok.o: unctrl.h +lib_scrollok.po: curses.h +lib_scrollok.po: ncurses_def.h +lib_scrollok.po: term.h +lib_scrollok.po: unctrl.h +lib_scrreg.So: curses.h +lib_scrreg.So: ncurses_def.h +lib_scrreg.So: term.h +lib_scrreg.So: unctrl.h +lib_scrreg.o: curses.h +lib_scrreg.o: ncurses_def.h +lib_scrreg.o: term.h +lib_scrreg.o: unctrl.h +lib_scrreg.po: curses.h +lib_scrreg.po: ncurses_def.h +lib_scrreg.po: term.h +lib_scrreg.po: unctrl.h +lib_set_term.So: curses.h +lib_set_term.So: ncurses_def.h +lib_set_term.So: term.h +lib_set_term.So: unctrl.h +lib_set_term.o: curses.h +lib_set_term.o: ncurses_def.h +lib_set_term.o: term.h +lib_set_term.o: unctrl.h +lib_set_term.po: curses.h +lib_set_term.po: ncurses_def.h +lib_set_term.po: term.h +lib_set_term.po: unctrl.h +lib_setup.So: curses.h +lib_setup.So: ncurses_def.h +lib_setup.So: term.h +lib_setup.So: unctrl.h +lib_setup.o: curses.h +lib_setup.o: ncurses_def.h +lib_setup.o: term.h +lib_setup.o: unctrl.h +lib_setup.po: curses.h +lib_setup.po: ncurses_def.h +lib_setup.po: term.h +lib_setup.po: unctrl.h +lib_slk.So: curses.h +lib_slk.So: ncurses_def.h +lib_slk.So: term.h +lib_slk.So: unctrl.h +lib_slk.o: curses.h +lib_slk.o: ncurses_def.h +lib_slk.o: term.h +lib_slk.o: unctrl.h +lib_slk.po: curses.h +lib_slk.po: ncurses_def.h +lib_slk.po: term.h +lib_slk.po: unctrl.h +lib_slk_wset.So: curses.h +lib_slk_wset.So: ncurses_def.h +lib_slk_wset.So: term.h +lib_slk_wset.So: unctrl.h +lib_slk_wset.o: curses.h +lib_slk_wset.o: ncurses_def.h +lib_slk_wset.o: term.h +lib_slk_wset.o: unctrl.h +lib_slk_wset.po: curses.h +lib_slk_wset.po: ncurses_def.h +lib_slk_wset.po: term.h +lib_slk_wset.po: unctrl.h +lib_slkatr_set.So: curses.h +lib_slkatr_set.So: ncurses_def.h +lib_slkatr_set.So: term.h +lib_slkatr_set.So: unctrl.h +lib_slkatr_set.o: curses.h +lib_slkatr_set.o: ncurses_def.h +lib_slkatr_set.o: term.h +lib_slkatr_set.o: unctrl.h +lib_slkatr_set.po: curses.h +lib_slkatr_set.po: ncurses_def.h +lib_slkatr_set.po: term.h +lib_slkatr_set.po: unctrl.h +lib_slkatrof.So: curses.h +lib_slkatrof.So: ncurses_def.h +lib_slkatrof.So: term.h +lib_slkatrof.So: unctrl.h +lib_slkatrof.o: curses.h +lib_slkatrof.o: ncurses_def.h +lib_slkatrof.o: term.h +lib_slkatrof.o: unctrl.h +lib_slkatrof.po: curses.h +lib_slkatrof.po: ncurses_def.h +lib_slkatrof.po: term.h +lib_slkatrof.po: unctrl.h +lib_slkatron.So: curses.h +lib_slkatron.So: ncurses_def.h +lib_slkatron.So: term.h +lib_slkatron.So: unctrl.h +lib_slkatron.o: curses.h +lib_slkatron.o: ncurses_def.h +lib_slkatron.o: term.h +lib_slkatron.o: unctrl.h +lib_slkatron.po: curses.h +lib_slkatron.po: ncurses_def.h +lib_slkatron.po: term.h +lib_slkatron.po: unctrl.h +lib_slkatrset.So: curses.h +lib_slkatrset.So: ncurses_def.h +lib_slkatrset.So: term.h +lib_slkatrset.So: unctrl.h +lib_slkatrset.o: curses.h +lib_slkatrset.o: ncurses_def.h +lib_slkatrset.o: term.h +lib_slkatrset.o: unctrl.h +lib_slkatrset.po: curses.h +lib_slkatrset.po: ncurses_def.h +lib_slkatrset.po: term.h +lib_slkatrset.po: unctrl.h +lib_slkattr.So: curses.h +lib_slkattr.So: ncurses_def.h +lib_slkattr.So: term.h +lib_slkattr.So: unctrl.h +lib_slkattr.o: curses.h +lib_slkattr.o: ncurses_def.h +lib_slkattr.o: term.h +lib_slkattr.o: unctrl.h +lib_slkattr.po: curses.h +lib_slkattr.po: ncurses_def.h +lib_slkattr.po: term.h +lib_slkattr.po: unctrl.h +lib_slkclear.So: curses.h +lib_slkclear.So: ncurses_def.h +lib_slkclear.So: term.h +lib_slkclear.So: unctrl.h +lib_slkclear.o: curses.h +lib_slkclear.o: ncurses_def.h +lib_slkclear.o: term.h +lib_slkclear.o: unctrl.h +lib_slkclear.po: curses.h +lib_slkclear.po: ncurses_def.h +lib_slkclear.po: term.h +lib_slkclear.po: unctrl.h +lib_slkcolor.So: curses.h +lib_slkcolor.So: ncurses_def.h +lib_slkcolor.So: term.h +lib_slkcolor.So: unctrl.h +lib_slkcolor.o: curses.h +lib_slkcolor.o: ncurses_def.h +lib_slkcolor.o: term.h +lib_slkcolor.o: unctrl.h +lib_slkcolor.po: curses.h +lib_slkcolor.po: ncurses_def.h +lib_slkcolor.po: term.h +lib_slkcolor.po: unctrl.h +lib_slkinit.So: curses.h +lib_slkinit.So: ncurses_def.h +lib_slkinit.So: term.h +lib_slkinit.So: unctrl.h +lib_slkinit.o: curses.h +lib_slkinit.o: ncurses_def.h +lib_slkinit.o: term.h +lib_slkinit.o: unctrl.h +lib_slkinit.po: curses.h +lib_slkinit.po: ncurses_def.h +lib_slkinit.po: term.h +lib_slkinit.po: unctrl.h +lib_slklab.So: curses.h +lib_slklab.So: ncurses_def.h +lib_slklab.So: term.h +lib_slklab.So: unctrl.h +lib_slklab.o: curses.h +lib_slklab.o: ncurses_def.h +lib_slklab.o: term.h +lib_slklab.o: unctrl.h +lib_slklab.po: curses.h +lib_slklab.po: ncurses_def.h +lib_slklab.po: term.h +lib_slklab.po: unctrl.h +lib_slkrefr.So: curses.h +lib_slkrefr.So: ncurses_def.h +lib_slkrefr.So: term.h +lib_slkrefr.So: unctrl.h +lib_slkrefr.o: curses.h +lib_slkrefr.o: ncurses_def.h +lib_slkrefr.o: term.h +lib_slkrefr.o: unctrl.h +lib_slkrefr.po: curses.h +lib_slkrefr.po: ncurses_def.h +lib_slkrefr.po: term.h +lib_slkrefr.po: unctrl.h +lib_slkset.So: curses.h +lib_slkset.So: ncurses_def.h +lib_slkset.So: term.h +lib_slkset.So: unctrl.h +lib_slkset.o: curses.h +lib_slkset.o: ncurses_def.h +lib_slkset.o: term.h +lib_slkset.o: unctrl.h +lib_slkset.po: curses.h +lib_slkset.po: ncurses_def.h +lib_slkset.po: term.h +lib_slkset.po: unctrl.h +lib_slktouch.So: curses.h +lib_slktouch.So: ncurses_def.h +lib_slktouch.So: term.h +lib_slktouch.So: unctrl.h +lib_slktouch.o: curses.h +lib_slktouch.o: ncurses_def.h +lib_slktouch.o: term.h +lib_slktouch.o: unctrl.h +lib_slktouch.po: curses.h +lib_slktouch.po: ncurses_def.h +lib_slktouch.po: term.h +lib_slktouch.po: unctrl.h +lib_termcap.So: curses.h +lib_termcap.So: ncurses_def.h +lib_termcap.So: term.h +lib_termcap.So: termcap.h +lib_termcap.So: unctrl.h +lib_termcap.o: curses.h +lib_termcap.o: ncurses_def.h +lib_termcap.o: term.h +lib_termcap.o: termcap.h +lib_termcap.o: unctrl.h +lib_termcap.po: curses.h +lib_termcap.po: ncurses_def.h +lib_termcap.po: term.h +lib_termcap.po: termcap.h +lib_termcap.po: unctrl.h +lib_termname.So: curses.h +lib_termname.So: ncurses_def.h +lib_termname.So: term.h +lib_termname.So: unctrl.h +lib_termname.o: curses.h +lib_termname.o: ncurses_def.h +lib_termname.o: term.h +lib_termname.o: unctrl.h +lib_termname.po: curses.h +lib_termname.po: ncurses_def.h +lib_termname.po: term.h +lib_termname.po: unctrl.h +lib_tgoto.So: curses.h +lib_tgoto.So: ncurses_def.h +lib_tgoto.So: term.h +lib_tgoto.So: termcap.h +lib_tgoto.So: unctrl.h +lib_tgoto.o: curses.h +lib_tgoto.o: ncurses_def.h +lib_tgoto.o: term.h +lib_tgoto.o: termcap.h +lib_tgoto.o: unctrl.h +lib_tgoto.po: curses.h +lib_tgoto.po: ncurses_def.h +lib_tgoto.po: term.h +lib_tgoto.po: termcap.h +lib_tgoto.po: unctrl.h +lib_ti.So: curses.h +lib_ti.So: ncurses_def.h +lib_ti.So: term.h +lib_ti.So: unctrl.h +lib_ti.o: curses.h +lib_ti.o: ncurses_def.h +lib_ti.o: term.h +lib_ti.o: unctrl.h +lib_ti.po: curses.h +lib_ti.po: ncurses_def.h +lib_ti.po: term.h +lib_ti.po: unctrl.h +lib_touch.So: curses.h +lib_touch.So: ncurses_def.h +lib_touch.So: term.h +lib_touch.So: unctrl.h +lib_touch.o: curses.h +lib_touch.o: ncurses_def.h +lib_touch.o: term.h +lib_touch.o: unctrl.h +lib_touch.po: curses.h +lib_touch.po: ncurses_def.h +lib_touch.po: term.h +lib_touch.po: unctrl.h +lib_tparm.So: curses.h +lib_tparm.So: ncurses_def.h +lib_tparm.So: term.h +lib_tparm.So: unctrl.h +lib_tparm.o: curses.h +lib_tparm.o: ncurses_def.h +lib_tparm.o: term.h +lib_tparm.o: unctrl.h +lib_tparm.po: curses.h +lib_tparm.po: ncurses_def.h +lib_tparm.po: term.h +lib_tparm.po: unctrl.h +lib_tputs.So: curses.h +lib_tputs.So: ncurses_def.h +lib_tputs.So: term.h +lib_tputs.So: termcap.h +lib_tputs.So: unctrl.h +lib_tputs.o: curses.h +lib_tputs.o: ncurses_def.h +lib_tputs.o: term.h +lib_tputs.o: termcap.h +lib_tputs.o: unctrl.h +lib_tputs.po: curses.h +lib_tputs.po: ncurses_def.h +lib_tputs.po: term.h +lib_tputs.po: termcap.h +lib_tputs.po: unctrl.h +lib_trace.So: curses.h +lib_trace.So: ncurses_def.h +lib_trace.So: term.h +lib_trace.So: unctrl.h +lib_trace.o: curses.h +lib_trace.o: ncurses_def.h +lib_trace.o: term.h +lib_trace.o: unctrl.h +lib_trace.po: curses.h +lib_trace.po: ncurses_def.h +lib_trace.po: term.h +lib_trace.po: unctrl.h +lib_tstp.So: curses.h +lib_tstp.So: ncurses_def.h +lib_tstp.So: term.h +lib_tstp.So: unctrl.h +lib_tstp.o: curses.h +lib_tstp.o: ncurses_def.h +lib_tstp.o: term.h +lib_tstp.o: unctrl.h +lib_tstp.po: curses.h +lib_tstp.po: ncurses_def.h +lib_tstp.po: term.h +lib_tstp.po: unctrl.h +lib_ttyflags.So: curses.h +lib_ttyflags.So: ncurses_def.h +lib_ttyflags.So: term.h +lib_ttyflags.So: unctrl.h +lib_ttyflags.o: curses.h +lib_ttyflags.o: ncurses_def.h +lib_ttyflags.o: term.h +lib_ttyflags.o: unctrl.h +lib_ttyflags.po: curses.h +lib_ttyflags.po: ncurses_def.h +lib_ttyflags.po: term.h +lib_ttyflags.po: unctrl.h +lib_twait.So: curses.h +lib_twait.So: ncurses_def.h +lib_twait.So: term.h +lib_twait.So: unctrl.h +lib_twait.o: curses.h +lib_twait.o: ncurses_def.h +lib_twait.o: term.h +lib_twait.o: unctrl.h +lib_twait.po: curses.h +lib_twait.po: ncurses_def.h +lib_twait.po: term.h +lib_twait.po: unctrl.h +lib_unget_wch.So: curses.h +lib_unget_wch.So: ncurses_def.h +lib_unget_wch.So: term.h +lib_unget_wch.So: unctrl.h +lib_unget_wch.o: curses.h +lib_unget_wch.o: ncurses_def.h +lib_unget_wch.o: term.h +lib_unget_wch.o: unctrl.h +lib_unget_wch.po: curses.h +lib_unget_wch.po: ncurses_def.h +lib_unget_wch.po: term.h +lib_unget_wch.po: unctrl.h +lib_ungetch.So: curses.h +lib_ungetch.So: ncurses_def.h +lib_ungetch.So: term.h +lib_ungetch.So: unctrl.h +lib_ungetch.o: curses.h +lib_ungetch.o: ncurses_def.h +lib_ungetch.o: term.h +lib_ungetch.o: unctrl.h +lib_ungetch.po: curses.h +lib_ungetch.po: ncurses_def.h +lib_ungetch.po: term.h +lib_ungetch.po: unctrl.h +lib_vid_attr.So: curses.h +lib_vid_attr.So: ncurses_def.h +lib_vid_attr.So: term.h +lib_vid_attr.So: unctrl.h +lib_vid_attr.o: curses.h +lib_vid_attr.o: ncurses_def.h +lib_vid_attr.o: term.h +lib_vid_attr.o: unctrl.h +lib_vid_attr.po: curses.h +lib_vid_attr.po: ncurses_def.h +lib_vid_attr.po: term.h +lib_vid_attr.po: unctrl.h +lib_vidattr.So: curses.h +lib_vidattr.So: ncurses_def.h +lib_vidattr.So: term.h +lib_vidattr.So: unctrl.h +lib_vidattr.o: curses.h +lib_vidattr.o: ncurses_def.h +lib_vidattr.o: term.h +lib_vidattr.o: unctrl.h +lib_vidattr.po: curses.h +lib_vidattr.po: ncurses_def.h +lib_vidattr.po: term.h +lib_vidattr.po: unctrl.h +lib_vline.So: curses.h +lib_vline.So: ncurses_def.h +lib_vline.So: term.h +lib_vline.So: unctrl.h +lib_vline.o: curses.h +lib_vline.o: ncurses_def.h +lib_vline.o: term.h +lib_vline.o: unctrl.h +lib_vline.po: curses.h +lib_vline.po: ncurses_def.h +lib_vline.po: term.h +lib_vline.po: unctrl.h +lib_vline_set.So: curses.h +lib_vline_set.So: ncurses_def.h +lib_vline_set.So: term.h +lib_vline_set.So: unctrl.h +lib_vline_set.o: curses.h +lib_vline_set.o: ncurses_def.h +lib_vline_set.o: term.h +lib_vline_set.o: unctrl.h +lib_vline_set.po: curses.h +lib_vline_set.po: ncurses_def.h +lib_vline_set.po: term.h +lib_vline_set.po: unctrl.h +lib_wacs.So: curses.h +lib_wacs.So: ncurses_def.h +lib_wacs.So: term.h +lib_wacs.So: unctrl.h +lib_wacs.o: curses.h +lib_wacs.o: ncurses_def.h +lib_wacs.o: term.h +lib_wacs.o: unctrl.h +lib_wacs.po: curses.h +lib_wacs.po: ncurses_def.h +lib_wacs.po: term.h +lib_wacs.po: unctrl.h +lib_wattroff.So: curses.h +lib_wattroff.So: ncurses_def.h +lib_wattroff.So: term.h +lib_wattroff.So: unctrl.h +lib_wattroff.o: curses.h +lib_wattroff.o: ncurses_def.h +lib_wattroff.o: term.h +lib_wattroff.o: unctrl.h +lib_wattroff.po: curses.h +lib_wattroff.po: ncurses_def.h +lib_wattroff.po: term.h +lib_wattroff.po: unctrl.h +lib_wattron.So: curses.h +lib_wattron.So: ncurses_def.h +lib_wattron.So: term.h +lib_wattron.So: unctrl.h +lib_wattron.o: curses.h +lib_wattron.o: ncurses_def.h +lib_wattron.o: term.h +lib_wattron.o: unctrl.h +lib_wattron.po: curses.h +lib_wattron.po: ncurses_def.h +lib_wattron.po: term.h +lib_wattron.po: unctrl.h +lib_winch.So: curses.h +lib_winch.So: ncurses_def.h +lib_winch.So: term.h +lib_winch.So: unctrl.h +lib_winch.o: curses.h +lib_winch.o: ncurses_def.h +lib_winch.o: term.h +lib_winch.o: unctrl.h +lib_winch.po: curses.h +lib_winch.po: ncurses_def.h +lib_winch.po: term.h +lib_winch.po: unctrl.h +lib_window.So: curses.h +lib_window.So: ncurses_def.h +lib_window.So: term.h +lib_window.So: unctrl.h +lib_window.o: curses.h +lib_window.o: ncurses_def.h +lib_window.o: term.h +lib_window.o: unctrl.h +lib_window.po: curses.h +lib_window.po: ncurses_def.h +lib_window.po: term.h +lib_window.po: unctrl.h +lib_wunctrl.So: curses.h +lib_wunctrl.So: ncurses_def.h +lib_wunctrl.So: term.h +lib_wunctrl.So: unctrl.h +lib_wunctrl.o: curses.h +lib_wunctrl.o: ncurses_def.h +lib_wunctrl.o: term.h +lib_wunctrl.o: unctrl.h +lib_wunctrl.po: curses.h +lib_wunctrl.po: ncurses_def.h +lib_wunctrl.po: term.h +lib_wunctrl.po: unctrl.h +memmove.So: curses.h +memmove.So: ncurses_def.h +memmove.So: term.h +memmove.So: unctrl.h +memmove.o: curses.h +memmove.o: ncurses_def.h +memmove.o: term.h +memmove.o: unctrl.h +memmove.po: curses.h +memmove.po: ncurses_def.h +memmove.po: term.h +memmove.po: unctrl.h +name_match.So: curses.h +name_match.So: ncurses_def.h +name_match.So: term.h +name_match.So: unctrl.h +name_match.o: curses.h +name_match.o: ncurses_def.h +name_match.o: term.h +name_match.o: unctrl.h +name_match.po: curses.h +name_match.po: ncurses_def.h +name_match.po: term.h +name_match.po: unctrl.h +names.So: curses.h +names.So: names.c +names.So: ncurses_def.h +names.So: term.h +names.So: unctrl.h +names.o: curses.h +names.o: names.c +names.o: ncurses_def.h +names.o: term.h +names.o: unctrl.h +names.po: curses.h +names.po: names.c +names.po: ncurses_def.h +names.po: term.h +names.po: unctrl.h +nc_panel.So: curses.h +nc_panel.So: ncurses_def.h +nc_panel.So: term.h +nc_panel.So: unctrl.h +nc_panel.o: curses.h +nc_panel.o: ncurses_def.h +nc_panel.o: term.h +nc_panel.o: unctrl.h +nc_panel.po: curses.h +nc_panel.po: ncurses_def.h +nc_panel.po: term.h +nc_panel.po: unctrl.h +parse_entry.So: curses.h +parse_entry.So: ncurses_def.h +parse_entry.So: parametrized.h +parse_entry.So: term.h +parse_entry.So: unctrl.h +parse_entry.o: curses.h +parse_entry.o: ncurses_def.h +parse_entry.o: parametrized.h +parse_entry.o: term.h +parse_entry.o: unctrl.h +parse_entry.po: curses.h +parse_entry.po: ncurses_def.h +parse_entry.po: parametrized.h +parse_entry.po: term.h +parse_entry.po: unctrl.h +read_entry.So: curses.h +read_entry.So: ncurses_def.h +read_entry.So: term.h +read_entry.So: unctrl.h +read_entry.o: curses.h +read_entry.o: ncurses_def.h +read_entry.o: term.h +read_entry.o: unctrl.h +read_entry.po: curses.h +read_entry.po: ncurses_def.h +read_entry.po: term.h +read_entry.po: unctrl.h +resizeterm.So: curses.h +resizeterm.So: ncurses_def.h +resizeterm.So: term.h +resizeterm.So: unctrl.h +resizeterm.o: curses.h +resizeterm.o: ncurses_def.h +resizeterm.o: term.h +resizeterm.o: unctrl.h +resizeterm.po: curses.h +resizeterm.po: ncurses_def.h +resizeterm.po: term.h +resizeterm.po: unctrl.h +safe_sprintf.So: curses.h +safe_sprintf.So: ncurses_def.h +safe_sprintf.So: term.h +safe_sprintf.So: unctrl.h +safe_sprintf.o: curses.h +safe_sprintf.o: ncurses_def.h +safe_sprintf.o: term.h +safe_sprintf.o: unctrl.h +safe_sprintf.po: curses.h +safe_sprintf.po: ncurses_def.h +safe_sprintf.po: term.h +safe_sprintf.po: unctrl.h +setbuf.So: curses.h +setbuf.So: ncurses_def.h +setbuf.So: term.h +setbuf.So: unctrl.h +setbuf.o: curses.h +setbuf.o: ncurses_def.h +setbuf.o: term.h +setbuf.o: unctrl.h +setbuf.po: curses.h +setbuf.po: ncurses_def.h +setbuf.po: term.h +setbuf.po: unctrl.h +strings.So: curses.h +strings.So: ncurses_def.h +strings.So: term.h +strings.So: unctrl.h +strings.o: curses.h +strings.o: ncurses_def.h +strings.o: term.h +strings.o: unctrl.h +strings.po: curses.h +strings.po: ncurses_def.h +strings.po: term.h +strings.po: unctrl.h +termcap.So: curses.h +termcap.So: ncurses_def.h +termcap.So: term.h +termcap.So: unctrl.h +termcap.o: curses.h +termcap.o: ncurses_def.h +termcap.o: term.h +termcap.o: unctrl.h +termcap.po: curses.h +termcap.po: ncurses_def.h +termcap.po: term.h +termcap.po: unctrl.h +tries.So: curses.h +tries.So: ncurses_def.h +tries.So: term.h +tries.So: unctrl.h +tries.o: curses.h +tries.o: ncurses_def.h +tries.o: term.h +tries.o: unctrl.h +tries.po: curses.h +tries.po: ncurses_def.h +tries.po: term.h +tries.po: unctrl.h +trim_sgr0.So: curses.h +trim_sgr0.So: ncurses_def.h +trim_sgr0.So: term.h +trim_sgr0.So: unctrl.h +trim_sgr0.o: curses.h +trim_sgr0.o: ncurses_def.h +trim_sgr0.o: term.h +trim_sgr0.o: unctrl.h +trim_sgr0.po: curses.h +trim_sgr0.po: ncurses_def.h +trim_sgr0.po: term.h +trim_sgr0.po: unctrl.h +tty_update.So: curses.h +tty_update.So: ncurses_def.h +tty_update.So: term.h +tty_update.So: unctrl.h +tty_update.o: curses.h +tty_update.o: ncurses_def.h +tty_update.o: term.h +tty_update.o: unctrl.h +tty_update.po: curses.h +tty_update.po: ncurses_def.h +tty_update.po: term.h +tty_update.po: unctrl.h +unctrl.So: curses.h +unctrl.So: ncurses_def.h +unctrl.So: term.h +unctrl.So: unctrl.c +unctrl.So: unctrl.h +unctrl.o: curses.h +unctrl.o: ncurses_def.h +unctrl.o: term.h +unctrl.o: unctrl.c +unctrl.o: unctrl.h +unctrl.po: curses.h +unctrl.po: ncurses_def.h +unctrl.po: term.h +unctrl.po: unctrl.c +unctrl.po: unctrl.h +version.So: curses.h +version.So: ncurses_def.h +version.So: term.h +version.So: unctrl.h +version.o: curses.h +version.o: ncurses_def.h +version.o: term.h +version.o: unctrl.h +version.po: curses.h +version.po: ncurses_def.h +version.po: term.h +version.po: unctrl.h +visbuf.So: curses.h +visbuf.So: ncurses_def.h +visbuf.So: term.h +visbuf.So: unctrl.h +visbuf.o: curses.h +visbuf.o: ncurses_def.h +visbuf.o: term.h +visbuf.o: unctrl.h +visbuf.po: curses.h +visbuf.po: ncurses_def.h +visbuf.po: term.h +visbuf.po: unctrl.h +vsscanf.So: curses.h +vsscanf.So: ncurses_def.h +vsscanf.So: term.h +vsscanf.So: unctrl.h +vsscanf.o: curses.h +vsscanf.o: ncurses_def.h +vsscanf.o: term.h +vsscanf.o: unctrl.h +vsscanf.po: curses.h +vsscanf.po: ncurses_def.h +vsscanf.po: term.h +vsscanf.po: unctrl.h +wresize.So: curses.h +wresize.So: ncurses_def.h +wresize.So: term.h +wresize.So: unctrl.h +wresize.o: curses.h +wresize.o: ncurses_def.h +wresize.o: term.h +wresize.o: unctrl.h +wresize.po: curses.h +wresize.po: ncurses_def.h +wresize.po: term.h +wresize.po: unctrl.h +write_entry.So: curses.h +write_entry.So: ncurses_def.h +write_entry.So: term.h +write_entry.So: unctrl.h +write_entry.o: curses.h +write_entry.o: ncurses_def.h +write_entry.o: term.h +write_entry.o: unctrl.h +write_entry.po: curses.h +write_entry.po: ncurses_def.h +write_entry.po: term.h +write_entry.po: unctrl.h +.endif diff --git a/lib/ncurses/panel/Makefile.depend b/lib/ncurses/panel/Makefile.depend new file mode 100644 index 000000000000..3f1939ef3494 --- /dev/null +++ b/lib/ncurses/panel/Makefile.depend @@ -0,0 +1,62 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +p_above.So: ncurses_def.h +p_above.o: ncurses_def.h +p_above.po: ncurses_def.h +p_below.So: ncurses_def.h +p_below.o: ncurses_def.h +p_below.po: ncurses_def.h +p_bottom.So: ncurses_def.h +p_bottom.o: ncurses_def.h +p_bottom.po: ncurses_def.h +p_delete.So: ncurses_def.h +p_delete.o: ncurses_def.h +p_delete.po: ncurses_def.h +p_hidden.So: ncurses_def.h +p_hidden.o: ncurses_def.h +p_hidden.po: ncurses_def.h +p_hide.So: ncurses_def.h +p_hide.o: ncurses_def.h +p_hide.po: ncurses_def.h +p_move.So: ncurses_def.h +p_move.o: ncurses_def.h +p_move.po: ncurses_def.h +p_new.So: ncurses_def.h +p_new.o: ncurses_def.h +p_new.po: ncurses_def.h +p_replace.So: ncurses_def.h +p_replace.o: ncurses_def.h +p_replace.po: ncurses_def.h +p_show.So: ncurses_def.h +p_show.o: ncurses_def.h +p_show.po: ncurses_def.h +p_top.So: ncurses_def.h +p_top.o: ncurses_def.h +p_top.po: ncurses_def.h +p_update.So: ncurses_def.h +p_update.o: ncurses_def.h +p_update.po: ncurses_def.h +p_user.So: ncurses_def.h +p_user.o: ncurses_def.h +p_user.po: ncurses_def.h +p_win.So: ncurses_def.h +p_win.o: ncurses_def.h +p_win.po: ncurses_def.h +panel.So: ncurses_def.h +panel.o: ncurses_def.h +panel.po: ncurses_def.h +.endif diff --git a/lib/ncurses/panelw/Makefile.depend b/lib/ncurses/panelw/Makefile.depend new file mode 100644 index 000000000000..18cd49bb5ad0 --- /dev/null +++ b/lib/ncurses/panelw/Makefile.depend @@ -0,0 +1,62 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +p_above.So: ncurses_def.h +p_above.o: ncurses_def.h +p_above.po: ncurses_def.h +p_below.So: ncurses_def.h +p_below.o: ncurses_def.h +p_below.po: ncurses_def.h +p_bottom.So: ncurses_def.h +p_bottom.o: ncurses_def.h +p_bottom.po: ncurses_def.h +p_delete.So: ncurses_def.h +p_delete.o: ncurses_def.h +p_delete.po: ncurses_def.h +p_hidden.So: ncurses_def.h +p_hidden.o: ncurses_def.h +p_hidden.po: ncurses_def.h +p_hide.So: ncurses_def.h +p_hide.o: ncurses_def.h +p_hide.po: ncurses_def.h +p_move.So: ncurses_def.h +p_move.o: ncurses_def.h +p_move.po: ncurses_def.h +p_new.So: ncurses_def.h +p_new.o: ncurses_def.h +p_new.po: ncurses_def.h +p_replace.So: ncurses_def.h +p_replace.o: ncurses_def.h +p_replace.po: ncurses_def.h +p_show.So: ncurses_def.h +p_show.o: ncurses_def.h +p_show.po: ncurses_def.h +p_top.So: ncurses_def.h +p_top.o: ncurses_def.h +p_top.po: ncurses_def.h +p_update.So: ncurses_def.h +p_update.o: ncurses_def.h +p_update.po: ncurses_def.h +p_user.So: ncurses_def.h +p_user.o: ncurses_def.h +p_user.po: ncurses_def.h +p_win.So: ncurses_def.h +p_win.o: ncurses_def.h +p_win.po: ncurses_def.h +panel.So: ncurses_def.h +panel.o: ncurses_def.h +panel.po: ncurses_def.h +.endif diff --git a/libexec/atrun/Makefile.depend b/libexec/atrun/Makefile.depend new file mode 100644 index 000000000000..641b39110c2c --- /dev/null +++ b/libexec/atrun/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/bootpd/Makefile.depend b/libexec/bootpd/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/libexec/bootpd/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/bootpd/bootpgw/Makefile.depend b/libexec/bootpd/bootpgw/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/libexec/bootpd/bootpgw/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/bootpd/tools/bootpef/Makefile.depend b/libexec/bootpd/tools/bootpef/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/libexec/bootpd/tools/bootpef/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/bootpd/tools/bootptest/Makefile.depend b/libexec/bootpd/tools/bootptest/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/libexec/bootpd/tools/bootptest/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/comsat/Makefile.depend b/libexec/comsat/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/libexec/comsat/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/fingerd/Makefile.depend b/libexec/fingerd/Makefile.depend new file mode 100644 index 000000000000..c262920aba6b --- /dev/null +++ b/libexec/fingerd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/ftpd/Makefile.depend b/libexec/ftpd/Makefile.depend new file mode 100644 index 000000000000..2a9801df084b --- /dev/null +++ b/libexec/ftpd/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libmd \ + lib/libopie \ + lib/libpam/libpam \ + lib/libtelnet \ + lib/libutil \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ftpcmd.o: ftpcmd.c +ftpcmd.po: ftpcmd.c +.endif diff --git a/libexec/getty/Makefile.depend b/libexec/getty/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/libexec/getty/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/mail.local/Makefile.depend b/libexec/mail.local/Makefile.depend new file mode 100644 index 000000000000..5486088332b7 --- /dev/null +++ b/libexec/mail.local/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsm \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +mail.local.o: sm_os.h +mail.local.po: sm_os.h +.endif diff --git a/libexec/mknetid/Makefile.depend b/libexec/mknetid/Makefile.depend new file mode 100644 index 000000000000..6e9b14f8d7a1 --- /dev/null +++ b/libexec/mknetid/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/pppoed/Makefile.depend b/libexec/pppoed/Makefile.depend new file mode 100644 index 000000000000..18356441c25f --- /dev/null +++ b/libexec/pppoed/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libnetgraph \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/rbootd/Makefile.depend b/libexec/rbootd/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/libexec/rbootd/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/revnetgroup/Makefile.depend b/libexec/revnetgroup/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/libexec/revnetgroup/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/rlogind/Makefile.depend b/libexec/rlogind/Makefile.depend new file mode 100644 index 000000000000..c262920aba6b --- /dev/null +++ b/libexec/rlogind/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/rpc.rquotad/Makefile.depend b/libexec/rpc.rquotad/Makefile.depend new file mode 100644 index 000000000000..ed142e7fcf6f --- /dev/null +++ b/libexec/rpc.rquotad/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/rpc.rstatd/Makefile.depend b/libexec/rpc.rstatd/Makefile.depend new file mode 100644 index 000000000000..1cf1716cc757 --- /dev/null +++ b/libexec/rpc.rstatd/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libdevstat \ + lib/libkvm \ + lib/librpcsvc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/rpc.rusersd/Makefile.depend b/libexec/rpc.rusersd/Makefile.depend new file mode 100644 index 000000000000..bf35174cdcf4 --- /dev/null +++ b/libexec/rpc.rusersd/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/rpc.rwalld/Makefile.depend b/libexec/rpc.rwalld/Makefile.depend new file mode 100644 index 000000000000..7ca71becb366 --- /dev/null +++ b/libexec/rpc.rwalld/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/rpc.sprayd/Makefile.depend b/libexec/rpc.sprayd/Makefile.depend new file mode 100644 index 000000000000..60fe900ca5e6 --- /dev/null +++ b/libexec/rpc.sprayd/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/rshd/Makefile.depend b/libexec/rshd/Makefile.depend new file mode 100644 index 000000000000..b332af0edd15 --- /dev/null +++ b/libexec/rshd/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/rtld-elf/Makefile.depend b/libexec/rtld-elf/Makefile.depend new file mode 100644 index 000000000000..32bd00bda02c --- /dev/null +++ b/libexec/rtld-elf/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/smrsh/Makefile.depend b/libexec/smrsh/Makefile.depend new file mode 100644 index 000000000000..be1fe9458313 --- /dev/null +++ b/libexec/smrsh/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsm \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +smrsh.o: sm_os.h +smrsh.po: sm_os.h +.endif diff --git a/libexec/talkd/Makefile.depend b/libexec/talkd/Makefile.depend new file mode 100644 index 000000000000..083e419a095a --- /dev/null +++ b/libexec/talkd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/tcpd/Makefile.depend b/libexec/tcpd/Makefile.depend new file mode 100644 index 000000000000..cd2e9bbe3717 --- /dev/null +++ b/libexec/tcpd/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/telnetd/Makefile.depend b/libexec/telnetd/Makefile.depend new file mode 100644 index 000000000000..a12d055b6390 --- /dev/null +++ b/libexec/telnetd/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libmp \ + lib/libpam/libpam \ + lib/libtelnet \ + lib/libutil \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/tftp-proxy/Makefile.depend b/libexec/tftp-proxy/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/libexec/tftp-proxy/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/tftpd/Makefile.depend b/libexec/tftpd/Makefile.depend new file mode 100644 index 000000000000..b30ae55b6d65 --- /dev/null +++ b/libexec/tftpd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/ulog-helper/Makefile.depend b/libexec/ulog-helper/Makefile.depend new file mode 100644 index 000000000000..1a4b120bf033 --- /dev/null +++ b/libexec/ulog-helper/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libulog \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/ypxfr/Makefile.depend b/libexec/ypxfr/Makefile.depend new file mode 100644 index 000000000000..eb84d1589c03 --- /dev/null +++ b/libexec/ypxfr/Makefile.depend @@ -0,0 +1,31 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +yp_clnt.o: yp.h +yp_clnt.o: yp_clnt.c +yp_clnt.po: yp.h +yp_clnt.po: yp_clnt.c +ypxfr_clnt.o: yp.h +ypxfr_clnt.o: ypxfr_clnt.c +ypxfr_clnt.po: yp.h +ypxfr_clnt.po: ypxfr_clnt.c +.endif diff --git a/sbin/adjkerntz/Makefile.depend b/sbin/adjkerntz/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/adjkerntz/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/atacontrol/Makefile.depend b/sbin/atacontrol/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/atacontrol/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/atm/atmconfig/Makefile.depend b/sbin/atm/atmconfig/Makefile.depend new file mode 100644 index 000000000000..a79320028284 --- /dev/null +++ b/sbin/atm/atmconfig/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbsnmp/libbsnmp \ + lib/libc \ + lib/libnetgraph \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +atmconfig_device.o: oid.h +atmconfig_device.po: oid.h +.endif diff --git a/sbin/badsect/Makefile.depend b/sbin/badsect/Makefile.depend new file mode 100644 index 000000000000..250cad80a3e0 --- /dev/null +++ b/sbin/badsect/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libufs \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/bsdlabel/Makefile.depend b/sbin/bsdlabel/Makefile.depend new file mode 100644 index 000000000000..378b35f0fc09 --- /dev/null +++ b/sbin/bsdlabel/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libexpat \ + lib/libgeom \ + lib/libsbuf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/camcontrol/Makefile.depend b/sbin/camcontrol/Makefile.depend new file mode 100644 index 000000000000..f9f359744bf9 --- /dev/null +++ b/sbin/camcontrol/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcam \ + lib/libsbuf \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ccdconfig/Makefile.depend b/sbin/ccdconfig/Makefile.depend new file mode 100644 index 000000000000..25f093b1c085 --- /dev/null +++ b/sbin/ccdconfig/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/clri/Makefile.depend b/sbin/clri/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/clri/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/comcontrol/Makefile.depend b/sbin/comcontrol/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/comcontrol/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/conscontrol/Makefile.depend b/sbin/conscontrol/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/conscontrol/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ddb/Makefile.depend b/sbin/ddb/Makefile.depend new file mode 100644 index 000000000000..553674c09429 --- /dev/null +++ b/sbin/ddb/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/devd/Makefile.depend b/sbin/devd/Makefile.depend new file mode 100644 index 000000000000..7ffa1cc1c735 --- /dev/null +++ b/sbin/devd/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libstdc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +parse.o: parse.c +parse.po: parse.c +token.o: token.c +token.o: y.tab.h +token.po: token.c +token.po: y.tab.h +.endif diff --git a/sbin/devfs/Makefile.depend b/sbin/devfs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/devfs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/dhclient/Makefile.depend b/sbin/dhclient/Makefile.depend new file mode 100644 index 000000000000..c262920aba6b --- /dev/null +++ b/sbin/dhclient/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/dmesg/Makefile.depend b/sbin/dmesg/Makefile.depend new file mode 100644 index 000000000000..553674c09429 --- /dev/null +++ b/sbin/dmesg/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/dump/Makefile.depend b/sbin/dump/Makefile.depend new file mode 100644 index 000000000000..25ca34444ce3 --- /dev/null +++ b/sbin/dump/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/dumpfs/Makefile.depend b/sbin/dumpfs/Makefile.depend new file mode 100644 index 000000000000..250cad80a3e0 --- /dev/null +++ b/sbin/dumpfs/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libufs \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/dumpon/Makefile.depend b/sbin/dumpon/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/dumpon/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/etherswitchcfg/Makefile.depend b/sbin/etherswitchcfg/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/etherswitchcfg/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/fdisk/Makefile.depend b/sbin/fdisk/Makefile.depend new file mode 100644 index 000000000000..378b35f0fc09 --- /dev/null +++ b/sbin/fdisk/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libexpat \ + lib/libgeom \ + lib/libsbuf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/fdisk_pc98/Makefile.depend b/sbin/fdisk_pc98/Makefile.depend new file mode 100644 index 000000000000..25f093b1c085 --- /dev/null +++ b/sbin/fdisk_pc98/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ffsinfo/Makefile.depend b/sbin/ffsinfo/Makefile.depend new file mode 100644 index 000000000000..250cad80a3e0 --- /dev/null +++ b/sbin/ffsinfo/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libufs \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/fsck/Makefile.depend b/sbin/fsck/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/fsck/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/fsck_ffs/Makefile.depend b/sbin/fsck_ffs/Makefile.depend new file mode 100644 index 000000000000..250cad80a3e0 --- /dev/null +++ b/sbin/fsck_ffs/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libufs \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/fsck_msdosfs/Makefile.depend b/sbin/fsck_msdosfs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/fsck_msdosfs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/fsdb/Makefile.depend b/sbin/fsdb/Makefile.depend new file mode 100644 index 000000000000..a1ddabbceb16 --- /dev/null +++ b/sbin/fsdb/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/libufs \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/fsirand/Makefile.depend b/sbin/fsirand/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/sbin/fsirand/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/gbde/Makefile.depend b/sbin/gbde/Makefile.depend new file mode 100644 index 000000000000..91fe7f3bfb83 --- /dev/null +++ b/sbin/gbde/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + lib/libmd \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +template.o: template.c +template.po: template.c +.endif diff --git a/sbin/geom/class/cache/Makefile.depend b/sbin/geom/class/cache/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/cache/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/concat/Makefile.depend b/sbin/geom/class/concat/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/concat/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/eli/Makefile.depend b/sbin/geom/class/eli/Makefile.depend new file mode 100644 index 000000000000..6efdbbb351d0 --- /dev/null +++ b/sbin/geom/class/eli/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/journal/Makefile.depend b/sbin/geom/class/journal/Makefile.depend new file mode 100644 index 000000000000..880734b3db57 --- /dev/null +++ b/sbin/geom/class/journal/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + lib/libufs \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/label/Makefile.depend b/sbin/geom/class/label/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/label/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/mirror/Makefile.depend b/sbin/geom/class/mirror/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/mirror/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/mountver/Makefile.depend b/sbin/geom/class/mountver/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/mountver/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/multipath/Makefile.depend b/sbin/geom/class/multipath/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/multipath/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/nop/Makefile.depend b/sbin/geom/class/nop/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/nop/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/part/Makefile.depend b/sbin/geom/class/part/Makefile.depend new file mode 100644 index 000000000000..43fbfcd65eaf --- /dev/null +++ b/sbin/geom/class/part/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/raid/Makefile.depend b/sbin/geom/class/raid/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/raid/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/raid3/Makefile.depend b/sbin/geom/class/raid3/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/raid3/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/sched/Makefile.depend b/sbin/geom/class/sched/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/sched/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/shsec/Makefile.depend b/sbin/geom/class/shsec/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/shsec/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/stripe/Makefile.depend b/sbin/geom/class/stripe/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/stripe/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/class/virstor/Makefile.depend b/sbin/geom/class/virstor/Makefile.depend new file mode 100644 index 000000000000..42e09bed6146 --- /dev/null +++ b/sbin/geom/class/virstor/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/geom/core/Makefile.depend b/sbin/geom/core/Makefile.depend new file mode 100644 index 000000000000..8c8ea60f973d --- /dev/null +++ b/sbin/geom/core/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libexpat \ + lib/libgeom \ + lib/libsbuf \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ggate/ggatec/Makefile.depend b/sbin/ggate/ggatec/Makefile.depend new file mode 100644 index 000000000000..3ca9d6577ae5 --- /dev/null +++ b/sbin/ggate/ggatec/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libexpat \ + lib/libgeom \ + lib/libsbuf \ + lib/libthr \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ggate/ggated/Makefile.depend b/sbin/ggate/ggated/Makefile.depend new file mode 100644 index 000000000000..bcc7a2bc0c60 --- /dev/null +++ b/sbin/ggate/ggated/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + lib/libthr \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ggate/ggatel/Makefile.depend b/sbin/ggate/ggatel/Makefile.depend new file mode 100644 index 000000000000..21370bf8706a --- /dev/null +++ b/sbin/ggate/ggatel/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libexpat \ + lib/libgeom \ + lib/libsbuf \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/growfs/Makefile.depend b/sbin/growfs/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/sbin/growfs/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/gvinum/Makefile.depend b/sbin/gvinum/Makefile.depend new file mode 100644 index 000000000000..e74fcab1343d --- /dev/null +++ b/sbin/gvinum/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libdevstat \ + lib/libedit \ + lib/libedit/edit/readline \ + lib/libgeom \ + lib/libkvm \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/hastctl/Makefile.depend b/sbin/hastctl/Makefile.depend new file mode 100644 index 000000000000..de07064eb62c --- /dev/null +++ b/sbin/hastctl/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +parse.o: parse.c +parse.po: parse.c +token.o: token.c +token.o: y.tab.h +token.po: token.c +token.po: y.tab.h +.endif diff --git a/sbin/hastd/Makefile.depend b/sbin/hastd/Makefile.depend new file mode 100644 index 000000000000..80d76560935c --- /dev/null +++ b/sbin/hastd/Makefile.depend @@ -0,0 +1,32 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libexpat \ + lib/libgeom \ + lib/libsbuf \ + lib/libthr \ + lib/libutil \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +parse.o: parse.c +parse.po: parse.c +token.o: token.c +token.o: y.tab.h +token.po: token.c +token.po: y.tab.h +.endif diff --git a/sbin/ifconfig/Makefile.depend b/sbin/ifconfig/Makefile.depend new file mode 100644 index 000000000000..71684ef7c2d4 --- /dev/null +++ b/sbin/ifconfig/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libexpat \ + lib/libipx \ + lib/libjail \ + lib/libsbuf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/init/Makefile.depend b/sbin/init/Makefile.depend new file mode 100644 index 000000000000..4478ec624a9d --- /dev/null +++ b/sbin/init/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ipf/ipf/Makefile.depend b/sbin/ipf/ipf/Makefile.depend new file mode 100644 index 000000000000..5a71ca9b42dc --- /dev/null +++ b/sbin/ipf/ipf/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + lib/libpcap \ + sbin/ipf/libipf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ipf_l.o: ipf_l.c +ipf_l.o: ipf_l.h +ipf_l.o: ipf_y.h +ipf_l.po: ipf_l.c +ipf_l.po: ipf_l.h +ipf_l.po: ipf_y.h +ipf_y.o: ipf_l.h +ipf_y.o: ipf_y.c +ipf_y.po: ipf_l.h +ipf_y.po: ipf_y.c +.endif diff --git a/sbin/ipf/ipfs/Makefile.depend b/sbin/ipf/ipfs/Makefile.depend new file mode 100644 index 000000000000..ccb33b61106a --- /dev/null +++ b/sbin/ipf/ipfs/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + sbin/ipf/libipf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ipf/ipfstat/Makefile.depend b/sbin/ipf/ipfstat/Makefile.depend new file mode 100644 index 000000000000..6ad33737e8ba --- /dev/null +++ b/sbin/ipf/ipfstat/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + sbin/ipf/libipf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ipf/ipftest/Makefile.depend b/sbin/ipf/ipftest/Makefile.depend new file mode 100644 index 000000000000..7b891afa0a40 --- /dev/null +++ b/sbin/ipf/ipftest/Makefile.depend @@ -0,0 +1,52 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + sbin/ipf/libipf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ipf_l.o: ipf_l.c +ipf_l.o: ipf_l.h +ipf_l.o: ipf_y.h +ipf_l.po: ipf_l.c +ipf_l.po: ipf_l.h +ipf_l.po: ipf_y.h +ipf_y.o: ipf_l.h +ipf_y.o: ipf_y.c +ipf_y.po: ipf_l.h +ipf_y.po: ipf_y.c +ipnat_l.o: ipnat_l.c +ipnat_l.o: ipnat_l.h +ipnat_l.o: ipnat_y.h +ipnat_l.po: ipnat_l.c +ipnat_l.po: ipnat_l.h +ipnat_l.po: ipnat_y.h +ipnat_y.o: ipnat_l.h +ipnat_y.o: ipnat_y.c +ipnat_y.po: ipnat_l.h +ipnat_y.po: ipnat_y.c +ippool_l.o: ippool_l.c +ippool_l.o: ippool_l.h +ippool_l.o: ippool_y.h +ippool_l.po: ippool_l.c +ippool_l.po: ippool_l.h +ippool_l.po: ippool_y.h +ippool_y.o: ippool_l.h +ippool_y.o: ippool_y.c +ippool_y.po: ippool_l.h +ippool_y.po: ippool_y.c +.endif diff --git a/sbin/ipf/ipmon/Makefile.depend b/sbin/ipf/ipmon/Makefile.depend new file mode 100644 index 000000000000..7a9fb8791485 --- /dev/null +++ b/sbin/ipf/ipmon/Makefile.depend @@ -0,0 +1,32 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + sbin/ipf/libipf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ipmon_l.o: ipmon_l.c +ipmon_l.o: ipmon_l.h +ipmon_l.o: ipmon_y.h +ipmon_l.po: ipmon_l.c +ipmon_l.po: ipmon_l.h +ipmon_l.po: ipmon_y.h +ipmon_y.o: ipmon_l.h +ipmon_y.o: ipmon_y.c +ipmon_y.po: ipmon_l.h +ipmon_y.po: ipmon_y.c +.endif diff --git a/sbin/ipf/ipnat/Makefile.depend b/sbin/ipf/ipnat/Makefile.depend new file mode 100644 index 000000000000..4031ae53c1d8 --- /dev/null +++ b/sbin/ipf/ipnat/Makefile.depend @@ -0,0 +1,32 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + sbin/ipf/libipf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ipnat_l.o: ipnat_l.c +ipnat_l.o: ipnat_l.h +ipnat_l.o: ipnat_y.h +ipnat_l.po: ipnat_l.c +ipnat_l.po: ipnat_l.h +ipnat_l.po: ipnat_y.h +ipnat_y.o: ipnat_l.h +ipnat_y.o: ipnat_y.c +ipnat_y.po: ipnat_l.h +ipnat_y.po: ipnat_y.c +.endif diff --git a/sbin/ipf/ippool/Makefile.depend b/sbin/ipf/ippool/Makefile.depend new file mode 100644 index 000000000000..b7205670aa6e --- /dev/null +++ b/sbin/ipf/ippool/Makefile.depend @@ -0,0 +1,32 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + sbin/ipf/libipf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ippool_l.o: ippool_l.c +ippool_l.o: ippool_l.h +ippool_l.o: ippool_y.h +ippool_l.po: ippool_l.c +ippool_l.po: ippool_l.h +ippool_l.po: ippool_y.h +ippool_y.o: ippool_l.h +ippool_y.o: ippool_y.c +ippool_y.po: ippool_l.h +ippool_y.po: ippool_y.c +.endif diff --git a/sbin/ipf/ipresend/Makefile.depend b/sbin/ipf/ipresend/Makefile.depend new file mode 100644 index 000000000000..a326d52e1044 --- /dev/null +++ b/sbin/ipf/ipresend/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + lib/msun \ + sbin/ipf/libipf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ipf/libipf/Makefile.depend b/sbin/ipf/libipf/Makefile.depend new file mode 100644 index 000000000000..3dfd462c7832 --- /dev/null +++ b/sbin/ipf/libipf/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ipfw/Makefile.depend b/sbin/ipfw/Makefile.depend new file mode 100644 index 000000000000..38cce3461511 --- /dev/null +++ b/sbin/ipfw/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libalias/libalias \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/iscontrol/Makefile.depend b/sbin/iscontrol/Makefile.depend new file mode 100644 index 000000000000..1725e2805fb4 --- /dev/null +++ b/sbin/iscontrol/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcam \ + lib/libmd \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/kldconfig/Makefile.depend b/sbin/kldconfig/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/kldconfig/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/kldload/Makefile.depend b/sbin/kldload/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/kldload/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/kldstat/Makefile.depend b/sbin/kldstat/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/sbin/kldstat/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/kldunload/Makefile.depend b/sbin/kldunload/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/sbin/kldunload/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ldconfig/Makefile.depend b/sbin/ldconfig/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/ldconfig/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mca/Makefile.depend b/sbin/mca/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/mca/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/md5/Makefile.depend b/sbin/md5/Makefile.depend new file mode 100644 index 000000000000..7520d5dc8b42 --- /dev/null +++ b/sbin/md5/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mdconfig/Makefile.depend b/sbin/mdconfig/Makefile.depend new file mode 100644 index 000000000000..11643b171703 --- /dev/null +++ b/sbin/mdconfig/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libdevstat \ + lib/libexpat \ + lib/libgeom \ + lib/libkvm \ + lib/libsbuf \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mdmfs/Makefile.depend b/sbin/mdmfs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/mdmfs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mknod/Makefile.depend b/sbin/mknod/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/mknod/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mksnap_ffs/Makefile.depend b/sbin/mksnap_ffs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/mksnap_ffs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mount/Makefile.depend b/sbin/mount/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/sbin/mount/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mount_cd9660/Makefile.depend b/sbin/mount_cd9660/Makefile.depend new file mode 100644 index 000000000000..f09f976da114 --- /dev/null +++ b/sbin/mount_cd9660/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkiconv \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mount_ext2fs/Makefile.depend b/sbin/mount_ext2fs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/mount_ext2fs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mount_msdosfs/Makefile.depend b/sbin/mount_msdosfs/Makefile.depend new file mode 100644 index 000000000000..0dbc784cc478 --- /dev/null +++ b/sbin/mount_msdosfs/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkiconv \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mount_nfs/Makefile.depend b/sbin/mount_nfs/Makefile.depend new file mode 100644 index 000000000000..a3e1b44c73f2 --- /dev/null +++ b/sbin/mount_nfs/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mount_ntfs/Makefile.depend b/sbin/mount_ntfs/Makefile.depend new file mode 100644 index 000000000000..0dbc784cc478 --- /dev/null +++ b/sbin/mount_ntfs/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkiconv \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mount_nullfs/Makefile.depend b/sbin/mount_nullfs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/mount_nullfs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mount_reiserfs/Makefile.depend b/sbin/mount_reiserfs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/mount_reiserfs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mount_std/Makefile.depend b/sbin/mount_std/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/mount_std/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mount_udf/Makefile.depend b/sbin/mount_udf/Makefile.depend new file mode 100644 index 000000000000..18a3d5f32450 --- /dev/null +++ b/sbin/mount_udf/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkiconv \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/mount_unionfs/Makefile.depend b/sbin/mount_unionfs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/mount_unionfs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/natd/Makefile.depend b/sbin/natd/Makefile.depend new file mode 100644 index 000000000000..34c524cfcd26 --- /dev/null +++ b/sbin/natd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libalias/libalias \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/newfs/Makefile.depend b/sbin/newfs/Makefile.depend new file mode 100644 index 000000000000..da2c5d6910bd --- /dev/null +++ b/sbin/newfs/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libufs \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/newfs_msdos/Makefile.depend b/sbin/newfs_msdos/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/newfs_msdos/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/nfsiod/Makefile.depend b/sbin/nfsiod/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/sbin/nfsiod/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/nos-tun/Makefile.depend b/sbin/nos-tun/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/sbin/nos-tun/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/pfctl/Makefile.depend b/sbin/pfctl/Makefile.depend new file mode 100644 index 000000000000..14e9867da47e --- /dev/null +++ b/sbin/pfctl/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +parse.o: parse.c +parse.po: parse.c +.endif diff --git a/sbin/pflogd/Makefile.depend b/sbin/pflogd/Makefile.depend new file mode 100644 index 000000000000..447f53247e78 --- /dev/null +++ b/sbin/pflogd/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpcap \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ping/Makefile.depend b/sbin/ping/Makefile.depend new file mode 100644 index 000000000000..4e0ace67eee0 --- /dev/null +++ b/sbin/ping/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipsec \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/ping6/Makefile.depend b/sbin/ping6/Makefile.depend new file mode 100644 index 000000000000..e79eabfc5a8a --- /dev/null +++ b/sbin/ping6/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipsec \ + lib/libmd \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/quotacheck/Makefile.depend b/sbin/quotacheck/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/sbin/quotacheck/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/rcorder/Makefile.depend b/sbin/rcorder/Makefile.depend new file mode 100644 index 000000000000..670ea5bc553b --- /dev/null +++ b/sbin/rcorder/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +rcorder.o: util.h +rcorder.po: util.h +.endif diff --git a/sbin/reboot/Makefile.depend b/sbin/reboot/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/reboot/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/recoverdisk/Makefile.depend b/sbin/recoverdisk/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/recoverdisk/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/resolvconf/Makefile.depend b/sbin/resolvconf/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/sbin/resolvconf/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/restore/Makefile.depend b/sbin/restore/Makefile.depend new file mode 100644 index 000000000000..25ca34444ce3 --- /dev/null +++ b/sbin/restore/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/route/Makefile.depend b/sbin/route/Makefile.depend new file mode 100644 index 000000000000..ff427b81d978 --- /dev/null +++ b/sbin/route/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +route.o: keywords.h +route.po: keywords.h +.endif diff --git a/sbin/routed/Makefile.depend b/sbin/routed/Makefile.depend new file mode 100644 index 000000000000..2ceda9ee81ea --- /dev/null +++ b/sbin/routed/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/routed/rtquery/Makefile.depend b/sbin/routed/rtquery/Makefile.depend new file mode 100644 index 000000000000..2ceda9ee81ea --- /dev/null +++ b/sbin/routed/rtquery/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/rtsol/Makefile.depend b/sbin/rtsol/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/sbin/rtsol/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/savecore/Makefile.depend b/sbin/savecore/Makefile.depend new file mode 100644 index 000000000000..1e192bde3a22 --- /dev/null +++ b/sbin/savecore/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/sconfig/Makefile.depend b/sbin/sconfig/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/sconfig/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/setkey/Makefile.depend b/sbin/setkey/Makefile.depend new file mode 100644 index 000000000000..03129d24825f --- /dev/null +++ b/sbin/setkey/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipsec \ + lib/liby \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +parse.o: parse.c +parse.po: parse.c +token.o: token.c +token.o: y.tab.h +token.po: token.c +token.po: y.tab.h +.endif diff --git a/sbin/shutdown/Makefile.depend b/sbin/shutdown/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/shutdown/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/spppcontrol/Makefile.depend b/sbin/spppcontrol/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/spppcontrol/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/sunlabel/Makefile.depend b/sbin/sunlabel/Makefile.depend new file mode 100644 index 000000000000..25f093b1c085 --- /dev/null +++ b/sbin/sunlabel/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/swapon/Makefile.depend b/sbin/swapon/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/sbin/swapon/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/sysctl/Makefile.depend b/sbin/sysctl/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/sysctl/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/tunefs/Makefile.depend b/sbin/tunefs/Makefile.depend new file mode 100644 index 000000000000..250cad80a3e0 --- /dev/null +++ b/sbin/tunefs/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libufs \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/umount/Makefile.depend b/sbin/umount/Makefile.depend new file mode 100644 index 000000000000..6e9b14f8d7a1 --- /dev/null +++ b/sbin/umount/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libcrypto/Makefile.depend b/secure/lib/libcrypto/Makefile.depend new file mode 100644 index 000000000000..e8b704c57166 --- /dev/null +++ b/secure/lib/libcrypto/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/msun \ + secure/lib/libssl \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +cversion.So: buildinf.h +cversion.o: buildinf.h +cversion.po: buildinf.h +.endif diff --git a/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libcrypto/engines/libaep/Makefile.depend b/secure/lib/libcrypto/engines/libaep/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/secure/lib/libcrypto/engines/libaep/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libcrypto/engines/libatalla/Makefile.depend b/secure/lib/libcrypto/engines/libatalla/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/secure/lib/libcrypto/engines/libatalla/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libcrypto/engines/libchil/Makefile.depend b/secure/lib/libcrypto/engines/libchil/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/secure/lib/libcrypto/engines/libchil/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libcrypto/engines/libcswift/Makefile.depend b/secure/lib/libcrypto/engines/libcswift/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/secure/lib/libcrypto/engines/libcswift/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libcrypto/engines/libnuron/Makefile.depend b/secure/lib/libcrypto/engines/libnuron/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/secure/lib/libcrypto/engines/libnuron/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libcrypto/engines/libsureware/Makefile.depend b/secure/lib/libcrypto/engines/libsureware/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/secure/lib/libcrypto/engines/libsureware/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libcrypto/engines/libubsec/Makefile.depend b/secure/lib/libcrypto/engines/libubsec/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/secure/lib/libcrypto/engines/libubsec/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libssh/Makefile.depend b/secure/lib/libssh/Makefile.depend new file mode 100644 index 000000000000..2470419853e5 --- /dev/null +++ b/secure/lib/libssh/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libkrb5 \ + lib/libpam/libpam \ + lib/libutil \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libssl/Makefile.depend b/secure/lib/libssl/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/secure/lib/libssl/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/libexec/sftp-server/Makefile.depend b/secure/libexec/sftp-server/Makefile.depend new file mode 100644 index 000000000000..d4a2b7ef2456 --- /dev/null +++ b/secure/libexec/sftp-server/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libpam/libpam \ + lib/libutil \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssh \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/libexec/ssh-keysign/Makefile.depend b/secure/libexec/ssh-keysign/Makefile.depend new file mode 100644 index 000000000000..d4a2b7ef2456 --- /dev/null +++ b/secure/libexec/ssh-keysign/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libpam/libpam \ + lib/libutil \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssh \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/libexec/ssh-pkcs11-helper/Makefile.depend b/secure/libexec/ssh-pkcs11-helper/Makefile.depend new file mode 100644 index 000000000000..d4a2b7ef2456 --- /dev/null +++ b/secure/libexec/ssh-pkcs11-helper/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libpam/libpam \ + lib/libutil \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssh \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/usr.bin/bdes/Makefile.depend b/secure/usr.bin/bdes/Makefile.depend new file mode 100644 index 000000000000..1ae71d98e8f9 --- /dev/null +++ b/secure/usr.bin/bdes/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/usr.bin/openssl/Makefile.depend b/secure/usr.bin/openssl/Makefile.depend new file mode 100644 index 000000000000..6435f70bedba --- /dev/null +++ b/secure/usr.bin/openssl/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + secure/lib/libcrypto \ + secure/lib/libssl \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/usr.bin/scp/Makefile.depend b/secure/usr.bin/scp/Makefile.depend new file mode 100644 index 000000000000..d4a2b7ef2456 --- /dev/null +++ b/secure/usr.bin/scp/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libpam/libpam \ + lib/libutil \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssh \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/usr.bin/sftp/Makefile.depend b/secure/usr.bin/sftp/Makefile.depend new file mode 100644 index 000000000000..6452c556e9c8 --- /dev/null +++ b/secure/usr.bin/sftp/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libedit \ + lib/libpam/libpam \ + lib/libutil \ + lib/libz \ + lib/ncurses/ncurses \ + secure/lib/libcrypto \ + secure/lib/libssh \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/usr.bin/ssh-add/Makefile.depend b/secure/usr.bin/ssh-add/Makefile.depend new file mode 100644 index 000000000000..d4a2b7ef2456 --- /dev/null +++ b/secure/usr.bin/ssh-add/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libpam/libpam \ + lib/libutil \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssh \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/usr.bin/ssh-agent/Makefile.depend b/secure/usr.bin/ssh-agent/Makefile.depend new file mode 100644 index 000000000000..d4a2b7ef2456 --- /dev/null +++ b/secure/usr.bin/ssh-agent/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libpam/libpam \ + lib/libutil \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssh \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/usr.bin/ssh-keygen/Makefile.depend b/secure/usr.bin/ssh-keygen/Makefile.depend new file mode 100644 index 000000000000..d4a2b7ef2456 --- /dev/null +++ b/secure/usr.bin/ssh-keygen/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libpam/libpam \ + lib/libutil \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssh \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/usr.bin/ssh-keyscan/Makefile.depend b/secure/usr.bin/ssh-keyscan/Makefile.depend new file mode 100644 index 000000000000..d4a2b7ef2456 --- /dev/null +++ b/secure/usr.bin/ssh-keyscan/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libpam/libpam \ + lib/libutil \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssh \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/usr.bin/ssh/Makefile.depend b/secure/usr.bin/ssh/Makefile.depend new file mode 100644 index 000000000000..37b112f9e644 --- /dev/null +++ b/secure/usr.bin/ssh/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/gssapi \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libkrb5 \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libgssapi \ + lib/libpam/libpam \ + lib/libutil \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssh \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/usr.sbin/sshd/Makefile.depend b/secure/usr.sbin/sshd/Makefile.depend new file mode 100644 index 000000000000..255e652d266f --- /dev/null +++ b/secure/usr.sbin/sshd/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/gssapi \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libgssapi_krb5 \ + kerberos5/lib/libkrb5 \ + lib/${CSU_DIR} \ + lib/libbsm \ + lib/libc \ + lib/libcrypt \ + lib/libgssapi \ + lib/libpam/libpam \ + lib/libutil \ + lib/libwrap \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssh \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/colldef/Makefile.depend b/share/colldef/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/colldef/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/dict/Makefile.depend b/share/dict/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/dict/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/doc/IPv6/Makefile.depend b/share/doc/IPv6/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/doc/IPv6/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/doc/bind9/Makefile.depend b/share/doc/bind9/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/doc/bind9/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/doc/legal/intel_ipw/Makefile.depend b/share/doc/legal/intel_ipw/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/doc/legal/intel_ipw/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/doc/legal/intel_iwi/Makefile.depend b/share/doc/legal/intel_iwi/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/doc/legal/intel_iwi/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/doc/legal/intel_iwn/Makefile.depend b/share/doc/legal/intel_iwn/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/doc/legal/intel_iwn/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/doc/legal/intel_wpi/Makefile.depend b/share/doc/legal/intel_wpi/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/doc/legal/intel_wpi/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/doc/llvm/Makefile.depend b/share/doc/llvm/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/doc/llvm/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/doc/llvm/clang/Makefile.depend b/share/doc/llvm/clang/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/doc/llvm/clang/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/examples/libvgl/Makefile.depend b/share/examples/libvgl/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/share/examples/libvgl/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/APPLE/Makefile.depend b/share/i18n/csmapper/APPLE/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/APPLE/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/AST/Makefile.depend b/share/i18n/csmapper/AST/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/AST/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/BIG5/Makefile.depend b/share/i18n/csmapper/BIG5/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/BIG5/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/CNS/Makefile.depend b/share/i18n/csmapper/CNS/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/CNS/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/CP/Makefile.depend b/share/i18n/csmapper/CP/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/CP/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/EBCDIC/Makefile.depend b/share/i18n/csmapper/EBCDIC/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/EBCDIC/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/GB/Makefile.depend b/share/i18n/csmapper/GB/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/GB/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/GEORGIAN/Makefile.depend b/share/i18n/csmapper/GEORGIAN/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/GEORGIAN/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/ISO-8859/Makefile.depend b/share/i18n/csmapper/ISO-8859/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/ISO-8859/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/ISO646/Makefile.depend b/share/i18n/csmapper/ISO646/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/i18n/csmapper/ISO646/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/JIS/Makefile.depend b/share/i18n/csmapper/JIS/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/JIS/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/KAZAKH/Makefile.depend b/share/i18n/csmapper/KAZAKH/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/KAZAKH/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/KOI/Makefile.depend b/share/i18n/csmapper/KOI/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/KOI/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/KS/Makefile.depend b/share/i18n/csmapper/KS/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/KS/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/MISC/Makefile.depend b/share/i18n/csmapper/MISC/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/MISC/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/TCVN/Makefile.depend b/share/i18n/csmapper/TCVN/Makefile.depend new file mode 100644 index 000000000000..8b6d5ba3e6e9 --- /dev/null +++ b/share/i18n/csmapper/TCVN/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/mkcsmapper_static \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man1/Makefile.depend b/share/man/man1/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man1/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man3/Makefile.depend b/share/man/man3/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man3/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man4/Makefile.depend b/share/man/man4/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man4/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man4/man4.arm/Makefile.depend b/share/man/man4/man4.arm/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man4/man4.arm/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man4/man4.i386/Makefile.depend b/share/man/man4/man4.i386/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man4/man4.i386/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man4/man4.powerpc/Makefile.depend b/share/man/man4/man4.powerpc/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man4/man4.powerpc/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man4/man4.sparc64/Makefile.depend b/share/man/man4/man4.sparc64/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man4/man4.sparc64/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man5/Makefile.depend b/share/man/man5/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man5/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man6/Makefile.depend b/share/man/man6/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man6/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man7/Makefile.depend b/share/man/man7/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man7/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man8/Makefile.depend b/share/man/man8/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man8/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/man/man9/Makefile.depend b/share/man/man9/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/man/man9/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/me/Makefile.depend b/share/me/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/me/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/misc/Makefile.depend b/share/misc/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/misc/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/mk/Makefile.depend b/share/mk/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/mk/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/mk/auto.obj.mk b/share/mk/auto.obj.mk new file mode 100644 index 000000000000..cd4b2b0fb0db --- /dev/null +++ b/share/mk/auto.obj.mk @@ -0,0 +1,57 @@ +# $Id: auto.obj.mk,v 1.8 2011/08/08 17:35:20 sjg Exp $ +# +# @(#) Copyright (c) 2004, Simon J. Gerraty +# +# This file is provided in the hope that it will +# be of use. There is absolutely NO WARRANTY. +# Permission to copy, redistribute or otherwise +# use this file is hereby granted provided that +# the above copyright notice and this notice are +# left intact. +# +# Please send copies of changes and bug-fixes to: +# sjg@crufty.net +# + +ECHO_TRACE ?= echo + +.ifndef Mkdirs +# A race condition in some versions of mkdir, means that it can bail +# if another process made a dir that mkdir expected to. +# We repeat the mkdir -p a number of times to try and work around this. +# We stop looping as soon as the dir exists. +# If we get to the end of the loop, a plain mkdir will issue an error. +Mkdirs= Mkdirs() { \ + for d in $$*; do \ + for i in 1 2 3 4 5 6; do \ + mkdir -p $$d; \ + test -d $$d && return 0; \ + done > /dev/null 2>&1; \ + mkdir $$d || exit $$?; \ + done; } +.endif + +# if MKOBJDIRS is set to auto (and NOOBJ isn't defined) do some magic... +# This will automatically create objdirs as needed. +# Skip it if we are just doing 'clean'. +.if !defined(NOOBJ) && !defined(NO_OBJ) && ${MKOBJDIRS:Uno} == auto +# Use __objdir here so it is easier to tweak without impacting +# the logic. +__objdir?= ${MAKEOBJDIR} +__objdir:= ${__objdir:tA} +.if ${.OBJDIR} != ${__objdir} +# We need to chdir, make the directory if needed +.if !exists(${__objdir}/) && \ + (${.TARGETS} == "" || ${.TARGETS:Nclean*:N*clean:Ndestroy*} != "") +# This will actually make it... +__objdir_made != echo ${__objdir}/; umask ${OBJDIR_UMASK:U002}; \ + ${ECHO_TRACE} "[Creating objdir ${__objdir}...]" >&2; \ + ${Mkdirs}; Mkdirs ${__objdir} +.endif +# This causes make to use the specified directory as .OBJDIR +.OBJDIR: ${__objdir} +.if ${.OBJDIR} != ${__objdir} && ${__objdir_made:Uno:M${__objdir}/*} != "" +.error could not use ${__objdir} +.endif +.endif +.endif diff --git a/share/mk/bsd.crunchgen.mk b/share/mk/bsd.crunchgen.mk index 80d337f8b160..95f1aa3be03d 100644 --- a/share/mk/bsd.crunchgen.mk +++ b/share/mk/bsd.crunchgen.mk @@ -38,6 +38,8 @@ OUTPUTS=$(OUTMK) $(OUTC) $(PROG).cache CRUNCHOBJS= ${.OBJDIR} .if defined(MAKEOBJDIRPREFIX) CANONICALOBJDIR:= ${MAKEOBJDIRPREFIX}${.CURDIR} +.elif defined(MAKEOBJDIR) && ${MAKEOBJDIR:M/*} != "" +CANONICALOBJDIR:=${MAKEOBJDIR} .else CANONICALOBJDIR:= /usr/obj${.CURDIR} .endif diff --git a/share/mk/bsd.dep.mk b/share/mk/bsd.dep.mk index 1d4a2c5ecea1..d65d3c15a2c9 100644 --- a/share/mk/bsd.dep.mk +++ b/share/mk/bsd.dep.mk @@ -102,8 +102,8 @@ ${_YC} y.tab.h: ${_YSRC} CLEANFILES+= y.tab.c y.tab.h .elif !empty(YFLAGS:M-d) .for _YH in ${_YC:R}.h -.ORDER: ${_YC} ${_YH} -${_YC} ${_YH}: ${_YSRC} +${_YH}: ${_YC} +${_YC}: ${_YSRC} ${YACC} ${YFLAGS} -o ${_YC} ${.ALLSRC} SRCS+= ${_YH} CLEANFILES+= ${_YH} @@ -119,10 +119,24 @@ ${_YC:R}.o: ${_YC} .endfor .endif +.if defined(.PARSEDIR) +.if ${MK_META_MODE} == "yes" +.include +# this depend: bypasses that below +# the dependency helps when bootstrapping +depend: beforedepend ${DPSRCS} ${SRCS} afterdepend +beforedepend: +afterdepend: beforedepend +.endif +.endif + .if !target(depend) .if defined(SRCS) depend: beforedepend ${DEPENDFILE} afterdepend +# Tell bmake not to look for generated files via .PATH +.NOPATH: ${DEPENDFILE} + # Different types of sources are compiled with slightly different flags. # Split up the sources, and filter out headers and non-applicable flags. MKDEP_CFLAGS= ${CFLAGS:M-nostdinc*} ${CFLAGS:M-[BIDU]*} ${CFLAGS:M-std=*} ${CFLAGS:M-ansi} diff --git a/share/mk/bsd.files.mk b/share/mk/bsd.files.mk index 240f958f1a9b..9ddb315b6e0a 100644 --- a/share/mk/bsd.files.mk +++ b/share/mk/bsd.files.mk @@ -22,6 +22,10 @@ ${group}OWN?= ${SHAREOWN} ${group}GRP?= ${SHAREGRP} ${group}MODE?= ${SHAREMODE} ${group}DIR?= ${BINDIR} +.if !make(buildincludes) +STAGE_SETS+= ${group} +.endif +STAGE_DIR.${group}= ${STAGE_OBJTOP}${${group}DIR} _${group}FILES= .for file in ${${group}} @@ -37,6 +41,12 @@ ${group}NAME_${file:T}?= ${${group}NAME} .else ${group}NAME_${file:T}?= ${file:T} .endif +.if !make(buildincludes) +STAGE_AS_SETS+= ${group} +.endif +STAGE_AS_${file:T}= ${${group}NAME_${file:T}} +stage_as.${group}: ${file} + installfiles: _${group}INS_${file:T} _${group}INS_${file:T}: ${file} ${INSTALL} -o ${${group}OWN_${.ALLSRC:T}} \ @@ -48,6 +58,8 @@ _${group}FILES+= ${file} .endif .endfor .if !empty(_${group}FILES) +stage_files.${group}: ${_${group}FILES} + installfiles: _${group}INS _${group}INS: ${_${group}FILES} .if defined(${group}NAME) @@ -67,3 +79,12 @@ _${group}INS: ${_${group}FILES} realinstall: installfiles .ORDER: beforeinstall installfiles + +.if ${MK_STAGING} != "no" +.if !empty(STAGE_SETS) +buildfiles: stage_files +.if !empty(STAGE_AS_SETS) +buildfiles: stage_as +.endif +.endif +.endif diff --git a/share/mk/bsd.incs.mk b/share/mk/bsd.incs.mk index d51fb1750a0d..8182b30a9482 100644 --- a/share/mk/bsd.incs.mk +++ b/share/mk/bsd.incs.mk @@ -24,6 +24,8 @@ ${group}OWN?= ${BINOWN} ${group}GRP?= ${BINGRP} ${group}MODE?= ${NOBINMODE} ${group}DIR?= ${INCLUDEDIR} +STAGE_SETS+= ${group} +STAGE_DIR.${group}= ${STAGE_OBJTOP}${${group}DIR} _${group}INCS= .for header in ${${group}} @@ -39,6 +41,10 @@ ${group}NAME_${header:T}?= ${${group}NAME} .else ${group}NAME_${header:T}?= ${header:T} .endif +STAGE_AS_SETS+= ${group} +STAGE_AS_${header:T}= ${${group}NAME_${header:T}} +stage_as.${group}: ${header} + installincludes: _${group}INS_${header:T} _${group}INS_${header:T}: ${header} ${INSTALL} -C -o ${${group}OWN_${.ALLSRC:T}} \ @@ -50,6 +56,8 @@ _${group}INCS+= ${header} .endif .endfor .if !empty(_${group}INCS) +stage_files.${group}: ${_${group}INCS} + installincludes: _${group}INS _${group}INS: ${_${group}INCS} .if defined(${group}NAME) @@ -81,4 +89,15 @@ installincludes: realinstall: installincludes .ORDER: beforeinstall installincludes +.if ${MK_STAGING} != "no" +.if !target(stage_includes) +.if !empty(STAGE_SETS) +buildincludes: stage_files +.if !empty(STAGE_AS_SETS) +buildincludes: stage_as +.endif +.endif +.endif +.endif + .endif # !defined(NO_INCS) && ${MK_TOOLCHAIN} != "no" diff --git a/share/mk/bsd.init.mk b/share/mk/bsd.init.mk index 72a6de0ef342..f5c31a5eb88a 100644 --- a/share/mk/bsd.init.mk +++ b/share/mk/bsd.init.mk @@ -6,10 +6,19 @@ .if !target(____) ____: +.sinclude "local.init.mk" .if exists(${.CURDIR}/../Makefile.inc) .include "${.CURDIR}/../Makefile.inc" .endif .include .include .MAIN: all + +.if defined(.PARSEDIR) +.if ${.MAKE.LEVEL:U1} == 0 && ${BUILD_AT_LEVEL0:Uyes:tl} == "no" +# this tells lib.mk and prog.mk to not actually build anything +_SKIP_BUILD = not building at level 0 +.endif +.endif + .endif # !target(____) diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index f5fcd48da5cc..9a86e0c303f7 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -113,7 +113,9 @@ PO_FLAG=-pg ${CC} ${PICFLAG} -DPIC ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} +.if !defined(_SKIP_BUILD) all: objwarn +.endif .include @@ -219,11 +221,15 @@ ${LINTLIB}: ${LINTOBJS} .endif # !defined(INTERNALLIB) +.if defined(_SKIP_BUILD) +all: +.else all: ${_LIBS} .if ${MK_MAN} != "no" all: _manpages .endif +.endif _EXTRADEPEND: @TMP=_depend$$$$; \ @@ -397,3 +403,15 @@ clean: .include .include + +.if ${MK_STAGING} != "no" +.if defined(_SKIP_BUILD) +stage_libs stage_files stage_as: +.else +.if !empty(_LIBS) +stage_libs: ${_LIBS} +all: stage_libs +.endif +.include +.endif +.endif diff --git a/share/mk/bsd.obj.mk b/share/mk/bsd.obj.mk index bd8f2aabc218..38afcde9a35f 100644 --- a/share/mk/bsd.obj.mk +++ b/share/mk/bsd.obj.mk @@ -44,10 +44,21 @@ ____: .if defined(MAKEOBJDIRPREFIX) CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR} +.elif defined(MAKEOBJDIR) && ${MAKEOBJDIR:M/*} != "" +CANONICALOBJDIR:=${MAKEOBJDIR} .else CANONICALOBJDIR:=/usr/obj${.CURDIR} .endif +.if defined(.PARSEDIR) && !defined(NO_OBJ) && !defined(NO_AUTO_OBJ) +.if ${MK_AUTO_OBJ} == "yes" +__objdir?= ${CANONICALOBJDIR} +# this is what auto.obj.mk wants to see +MKOBJDIRS=auto +.include "auto.obj.mk" +.endif +.endif + # # Warn of unorthodox object directory. # @@ -116,6 +127,11 @@ cleanobj: clean cleandepend .endif @if [ -L ${.CURDIR}/obj ]; then rm -f ${.CURDIR}/obj; fi +# Tell bmake not to look for generated files via .PATH +.if !empty(CLEANFILES) +.NOPATH: ${CLEANFILES} +.endif + .if !target(clean) clean: .if defined(CLEANFILES) && !empty(CLEANFILES) diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 924e9ceb57eb..e927cffd3159 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -414,6 +414,7 @@ __DEFAULT_YES_OPTIONS = \ ZONEINFO __DEFAULT_NO_OPTIONS = \ + AUTO_OBJ \ BSD_GREP \ BSD_SORT \ BIND_IDN \ @@ -427,10 +428,14 @@ __DEFAULT_NO_OPTIONS = \ HESIOD \ ICONV \ IDEA \ + INSTALL_AS_USER \ LIBCPLUSPLUS \ + META_MODE \ NAND \ OFED \ - SHARED_TOOLCHAIN + SHARED_TOOLCHAIN \ + STAGING \ + STAGING_PROG # # Default behaviour of some options depends on the architecture. Unfortunately @@ -584,6 +589,16 @@ MK_GDB:= no MK_CLANG_IS_CC:= no .endif +.if !defined(.PARSEDIR) +MK_AUTO_OBJ:= no +MK_META_MODE:= no +.endif + +.if ${MK_META_MODE} == "no" +MK_STAGING:= no +MK_STAGING_PROG:= no +.endif + # # Set defaults for the MK_*_SUPPORT variables. # @@ -645,6 +660,17 @@ CTFCONVERT_CMD= CTFCONVERT_CMD= @: .endif +.if ${MK_INSTALL_AS_USER} != "no" +_uid!= id -un +.if ${_uid} != 0 +_gid!= id -gn +.for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE +$xOWN= ${_uid} +$xGRP= ${_gid} +.endfor +.endif +.endif + .endif # !_WITHOUT_SRCCONF .endif # !target(____) diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index fae8366f24a7..ce62619e1937 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -102,10 +102,14 @@ MAN1= ${MAN} .endif .endif +.if defined(_SKIP_BUILD) +all: +.else all: objwarn ${PROG} ${SCRIPTS} .if ${MK_MAN} != "no" all: _manpages .endif +.endif .if defined(PROG) CLEANFILES+= ${PROG} @@ -226,3 +230,25 @@ ${OBJS}: ${SRCS:M*.h} .if defined(PORTNAME) .include .endif + +.if ${MK_STAGING} != "no" +.if defined(_SKIP_BUILD) +stage_files stage_as: +.else +# normally only libs and includes are staged +.if ${MK_STAGING_PROG:Uno} != "no" +STAGE_SETS+= prog +STAGE_DIR.prog= ${STAGE_OBJTOP}${BINDIR} +.if !empty(PROG) +all: stage_files +stage_files.prog: ${PROG} +.endif +.if !empty(SYMLINKS) +all: stage_symlinks +stage_symlinks.prog: ${SYMLINKS} +.endif + +.endif +.include +.endif +.endif diff --git a/share/mk/bsd.subdir.mk b/share/mk/bsd.subdir.mk index dc5af72ff175..f9962df27117 100644 --- a/share/mk/bsd.subdir.mk +++ b/share/mk/bsd.subdir.mk @@ -31,6 +31,15 @@ .include +.if defined(.PARSEDIR) && !defined(NEED_SUBDIR) +.if ${.MAKE.LEVEL} == 0 && ${.MAKE.MODE:Mmeta*} != "" && !empty(SUBDIR) && !(make(clean*) || make(destroy*)) +.include +# ignore this +_SUBDIR: +.endif +.endif +.if !target(_SUBDIR) + DISTRIBUTION?= base .if !target(distribute) distribute: @@ -42,7 +51,7 @@ distribute: _SUBDIR: .USE .if defined(SUBDIR) && !empty(SUBDIR) && !defined(NO_SUBDIR) - @${_+_}for entry in ${SUBDIR}; do \ + @${_+_}set -e; for entry in ${SUBDIR}; do \ if test -d ${.CURDIR}/$${entry}.${MACHINE_ARCH}; then \ ${ECHODIR} "===> ${DIRPRFX}$${entry}.${MACHINE_ARCH} (${.TARGET:realinstall=install})"; \ edir=$${entry}.${MACHINE_ARCH}; \ @@ -79,9 +88,11 @@ ${__stage}${__target}: _SUBDIR .endif .endfor ${__target}: - ${_+_}cd ${.CURDIR}; ${MAKE} build${__target}; ${MAKE} install${__target} + ${_+_}set -e; cd ${.CURDIR}; ${MAKE} build${__target}; ${MAKE} install${__target} .endfor +.endif + .if !target(install) .if !target(beforeinstall) beforeinstall: diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk index f0237501777b..5095973bb4e1 100644 --- a/share/mk/bsd.sys.mk +++ b/share/mk/bsd.sys.mk @@ -125,3 +125,18 @@ CFLAGS+= ${SSP_CFLAGS} # Allow user-specified additional warning flags CFLAGS+= ${CWARNFLAGS} + + +# Tell bmake not to misstake standard targets for things to be searched for +# or expect to ever be up-to-date. +PHONY_NOTMAIN = afterdepend afterinstall all beforedepend beforeinstall \ + beforelinking build build-tools buildfiles buildincludes \ + checkdpadd clean cleandepend cleandir cleanobj configure \ + depend dependall distclean distribute exe extract fetch \ + html includes install installfiles installincludes lint \ + obj objlink objs objwarn patch realall realdepend \ + realinstall regress subdir-all subdir-depend subdir-install \ + tags whereobj + +.PHONY: ${PHONY_NOTMAIN} +.NOTMAIN: ${PHONY_NOTMAIN} diff --git a/share/mk/dirdeps.mk b/share/mk/dirdeps.mk new file mode 100644 index 000000000000..e8c02b781d2f --- /dev/null +++ b/share/mk/dirdeps.mk @@ -0,0 +1,368 @@ +# $Id: dirdeps.mk,v 1.22 2012/04/25 15:12:29 sjg Exp $ + +# Copyright (c) 2010-2012, Juniper Networks, Inc. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Much of the complexity here is for supporting cross-building. +# If a tree does not support that, simply using plain Makefile.depend +# should provide sufficient clue. +# Otherwise the recommendation is to use Makefile.depend.${MACHINE} +# as expected below. + +# Note: this file gets multiply included. +# This is what we do with DIRDEPS + +# DIRDEPS: +# This is a list of directories - relative to SRCTOP, it is only +# of interest to .MAKE.LEVEL 0. +# In some cases the entry may be qualified with a . +# suffix, for example to force building something for the pseudo +# machines "host" or "common" regardless of current ${MACHINE}. +# All unqualified entries end up being qualified with .${MACHINE} +# and _DIRDEPS_USE below, uses the suffix to set MACHINE +# correctly when visiting each entry. +# +# Each entry is also converted into a set of paths to look for +# Makefile.depend. to learn the dependencies of each. +# Each Makefile.depend. sets DEP_RELDIR to be the +# the RELDIR (path relative to SRCTOP) for its directory, and +# DEP_MACHINE to its suffix (), further since +# each Makefile.depend. includes dirdeps.mk, this +# processing is recursive and results in .MAKE.LEVEL 0 learning the +# dependencies of the tree wrt the initial directory (_DEP_RELDIR). +# +# BUILD_AT_LEVEL0 +# Indicates whether .MAKE.LEVEL 0 builds anything: +# if "no" sub-makes are used to build everything, +# if "yes" sub-makes are only used to build for other machines. + +.if ${.MAKE.LEVEL} == 0 +# only the first instance is interested in all this + +# First off, we want to know what ${MACHINE} to build for. +# This can be complicated if we are using a mixture of ${MACHINE} specific +# and non-specific Makefile.depend* + +.if !target(_DIRDEP_USE) +# do some setup we only need once +_CURDIR ?= ${.CURDIR} + +.if !defined(.MAKE.DEPENDFILE_PREFERENCE) +# this makes the logic below neater? +.MAKE.DEPENDFILE_PREFERENCE = ${_CURDIR}/${.MAKE.DEPENDFILE:T} +.if ${.MAKE.DEPENDFILE:E} == "${MACHINE}" +.MAKE.DEPENDFILE_PREFERENCE += ${_CURDIR}/${.MAKE.DEPENDFILE:T:R} +.endif +.endif + +_default_dependfile := ${.MAKE.DEPENDFILE_PREFERENCE:[1]:T} +_machine_dependfiles := ${.MAKE.DEPENDFILE_PREFERENCE:M*.${MACHINE}} + +# for machine specific dependfiles we require ${MACHINE} to be at the end +# also for the sake of sanity we require a common prefix +.if !defined(.MAKE.DEPENDFILE_PREFIX) +.if !empty(_machine_dependfiles) +.MAKE.DEPENDFILE_PREFIX := ${_machine_dependfiles:[1]:T:R} +.else +.MAKE.DEPENDFILE_PREFIX := ${_default_dependfile:T} +.endif +.endif + + +# this is how we identify non-machine specific dependfiles +N_notmachine := ${.MAKE.DEPENDFILE_PREFERENCE:E:N${MACHINE}:${M_ListToSkip}} + +.endif # !target(_DIRDEP_USE) + +_last_dependfile := ${.MAKE.MAKEFILES:M*/${.MAKE.DEPENDFILE_PREFIX}*:[-1]} + +# Note: if a makefile is read many times, the above +# will not work, so we also test for DEP_MACHINE==depend below. +.if empty(_last_dependfile) +# we haven't included one yet +DEP_MACHINE ?= ${TARGET_MACHINE:U${MACHINE}} +# else it should be correctly set by ${.MAKE.DEPENDFILE} +.elif ${_last_dependfile:E:${N_notmachine}} == "" || ${DEP_MACHINE:Uno:${N_notmachine}} == "" +# don't rely on manually maintained files to be correct +DEP_MACHINE := ${_DEP_MACHINE:U${MACHINE}} +.else +# just in case +DEP_MACHINE ?= ${_last_dependfile:E} +.endif + +# pickup customizations +# as below you can use !target(_DIRDEP_USE) to protect things +# which should only be done once. +.-include "local.dirdeps.mk" + +# the first time we are included the _DIRDEP_USE target will not be defined +# we can use this as a clue to do initialization and other one time things. +.if !target(_DIRDEP_USE) +# make sure this target exists +dirdeps: + +# We normally expect to be included by Makefile.depend.* +# which sets the DEP_* macros below. +DEP_RELDIR ?= ${RELDIR} + +# this can cause lots of output! +# set to a set of glob expressions that might match RELDIR +DEBUG_DIRDEPS ?= no + +# remember the initial value of DEP_RELDIR - we test for it below. +_DEP_RELDIR := ${DEP_RELDIR} + +# things we skip for host tools +SKIP_HOSTDIR ?= + +NSkipHostDir = ${SKIP_HOSTDIR:N*.host:S,$,.host,:N.host:${M_ListToSkip}} +NSkipHostDep = ${SKIP_HOSTDIR:R:@d@*/$d*.host@:${M_ListToSkip}} + +# things we always skip +# SKIP_DIRDEPS allows for adding entries on command line. +SKIP_DIR += .host *.WAIT ${SKIP_DIRDEPS} + +.ifdef HOSTPROG +SKIP_DIR += ${SKIP_HOSTDIR} +.endif + +NSkipDir = ${SKIP_DIR:${M_ListToSkip}} + +.if defined(NO_DIRDEPS) || defined(NODIRDEPS) +# confine ourselves to the original dir +DIRDEPS_FILTER += M${_DEP_RELDIR}* +.endif + +# we supress SUBDIR when visiting the leaves +# we assume sys.mk will set MACHINE_ARCH +_DIRDEP_USE: .USE .MAKE + @for m in ${.MAKE.MAKEFILE_PREFERENCE}; do \ + test -s ${.TARGET:R}/$$m || continue; \ + echo "${TRACER}Checking ${.TARGET:R} for ${.TARGET:E} ..."; \ + MACHINE=${.TARGET:E} MACHINE_ARCH= NO_SUBDIR=1 \ + ${.MAKE} -C ${.TARGET:R} || exit 1; \ + break; \ + done + +.ifdef ALL_MACHINES +# this is how you limit it to only the machines we have been built for +# previously. +.if empty(ONLY_MACHINE_LIST) +.if !empty(ALL_MACHINE_LIST) +# ALL_MACHINE_LIST is the list of all legal machines - ignore anything else +_machine_list != cd ${_CURDIR} && 'ls' -1 ${ALL_MACHINE_LIST:O:u:@m@${.MAKE.DEPENDFILE:T:R}.$m@} 2> /dev/null; echo +.else +_machine_list != 'ls' -1 ${_CURDIR}/${.MAKE.DEPENDFILE_PREFIX}.* 2> /dev/null; echo +.endif +_only_machines := ${_machine_list:${NIgnoreFiles:UN*.bak}:E:O:u} +.else +_only_machines := ${ONLY_MACHINE_LIST} +.endif + +.if empty(_only_machines) +# we must be boot-strapping +_only_machines := ${TARGET_MACHINE:U${ALL_MACHINE_LIST:U${DEP_MACHINE}}} +.endif + +.else # ! ALL_MACHINES +# if ONLY_MACHINE_LIST is set, we are limited to that +# if TARGET_MACHINE is set - it is really the same as ONLY_MACHINE_LIST +# otherwise DEP_MACHINE is it - so DEP_MACHINE will match. +_only_machines := ${ONLY_MACHINE_LIST:U${TARGET_MACHINE:U${DEP_MACHINE}}:M${DEP_MACHINE}} +.endif + +.if !empty(NOT_MACHINE_LIST) +_only_machines := ${_only_machines:${NOT_MACHINE_LIST:${M_ListToSkip}}} +.endif + +# make sure we have a starting place? +DIRDEPS ?= ${RELDIR} +.endif # target + +_debug_reldir := ${DEBUG_DIRDEPS:@x@${DEP_RELDIR:M$x}${${DEP_RELDIR}.${DEP_MACHINE}:L:M$x}@} +_debug_search := ${DEBUG_DIRDEPS:@x@${DEP_RELDIR:M$x}${${DEP_RELDIR}.depend:L:M$x}@} + +# the rest is done repeatedly for every Makefile.depend we read. +# if we are anything but the original dir we care only about the +# machine type we were included for.. + +.if ${DEP_RELDIR} == "." +_this_dir := ${SRCTOP} +.else +_this_dir := ${SRCTOP}/${DEP_RELDIR} +.endif + +# on rare occasions, there can be a need for extra help +_dep_hack := ${_this_dir}/${.MAKE.DEPENDFILE_PREFIX}.inc +.-include "${_dep_hack}" + +.if ${DEP_RELDIR} != ${_DEP_RELDIR} || ${DEP_MACHINE} != ${MACHINE} +# this should be all +_machines := ${DEP_MACHINE} +.else +# this is the machine list we actually use below +_machines := ${_only_machines} + +.if defined(HOSTPROG) || ${DEP_MACHINE} == "host" +# we need to build this guy's dependencies for host as well. +_machines += host +.endif + +_machines := ${_machines:O:u} +.endif + +_build_dirs = + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# pickup other machines for this dir if necessary +.if ${BUILD_AT_LEVEL0:Uyes} == "no" +_build_dirs += ${_machines:@m@${_CURDIR}.$m@} +.else +_build_dirs += ${_machines:N${DEP_MACHINE}:@m@${_CURDIR}.$m@} +.if ${DEP_MACHINE} == ${MACHINE} +# pickup local dependencies now +.-include <.depend> +.endif +.endif +.endif + +.if !empty(_debug_reldir) +.info ${DEP_RELDIR}.${DEP_MACHINE}: _last_dependfile='${_last_dependfile}' +.info ${DEP_RELDIR}.${DEP_MACHINE}: DIRDEPS='${DIRDEPS}' +.info ${DEP_RELDIR}.${DEP_MACHINE}: _machines='${_machines}' +.endif + +.if !empty(DIRDEPS) + +# this is what we start with +__depdirs := ${DIRDEPS:${NSkipDir}:${DIRDEPS_FILTER:ts:}:O:u:@d@${SRCTOP}/$d@} + +# some entries may be qualified with . +# the :M*/*/*.* just tries to limit the dirs we check to likely ones. +# the ${d:E:M*/*} ensures we don't consider junos/usr.sbin/mgd +__qual_depdirs := ${__depdirs:M*/*/*.*:@d@${exists($d):?:${"${d:E:M*/*}":?:${exists(${d:R}):?$d:}}}@} +__unqual_depdirs := ${__depdirs:${__qual_depdirs:Uno:${M_ListToSkip}}} + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# if it was called out - we likely need it. +__hostdpadd := ${DPADD:U.:M${HOST_OBJTOP}/*:S,${HOST_OBJTOP}/,,:H:${NSkipDir}:${DIRDEPS_FILTER:ts:}:S,$,.host,:N.*:@d@${SRCTOP}/$d@} +__qual_depdirs += ${__hostdpadd} +.endif + +.if !empty(_debug_reldir) +.info depdirs=${__depdirs} +.info qualified=${__qual_depdirs} +.info unqualified=${__unqual_depdirs} +.endif + +# _build_dirs is what we will feed to _DIRDEP_USE +_build_dirs += \ + ${__qual_depdirs:M*.host:${NSkipHostDir}:N.host} \ + ${__qual_depdirs:N*.host} \ + ${_machines:@m@${__unqual_depdirs:@d@$d.$m@}@} + +_build_dirs := ${_build_dirs:O:u} + +# this is where we will pick up more dependencies from +# the inner inline loops look complex, but save a significant +# amount of memory compared to a .for loop. +_depdir_files = +.for d in ${_build_dirs} +.if exists($d) +# easy, we're building for ${MACHINE} +_depdir_files += ${.MAKE.DEPENDFILE_PREFERENCE:T:@m@${exists($d/$m):?$d/$m:}@:[1]} +.elif exists(${d:R}) && ${d:R:T} == ${d:T:R} +# a little more complex - building for another machine +# we will ensure the file is qualified with a machine +# so that if necessary _DEP_MACHINE can be set below +_depdir_files += ${.MAKE.DEPENDFILE_PREFERENCE:T:S,.${MACHINE}$,.${d:E},:@m@${exists(${d:R}/$m):?${d:R}/$m:}@:[1]:@m@${"${m:M*.${d:E}}":?$m:$m.${d:E}}@} +.endif +.endfor + +# clean up +_depdir_files := ${_depdir_files:O:u} + +.endif # empty DIRDEPS + +# Normally if doing make -V something, +# we do not want to waste time chasing DIRDEPS +# but if we want to count the number of Makefile.depend* read, we do. +.if ${.MAKEFLAGS:M-V${_V_READ_DIRDEPS}} == "" +.if !empty(_build_dirs) +# this makes it all happen +dirdeps: ${_build_dirs} +${_build_dirs}: _DIRDEP_USE + +.if !empty(_debug_reldir) +.info ${DEP_RELDIR}.${DEP_MACHINE}: ${_build_dirs} +.endif + +.for m in ${_machines} +# it would be nice to do :N${.TARGET} +.if !empty(__qual_depdirs) +.for q in ${__qual_depdirs:E:O:u:N$m} +.if !empty(_debug_reldir) || ${DEBUG_DIRDEPS:@x@${${DEP_RELDIR}.$m:L:M$x}${${DEP_RELDIR}.$q:L:M$x}@} != "" +.info ${DEP_RELDIR}.$m: ${_build_dirs:M*.$q} +.endif +${_this_dir}.$m: ${_build_dirs:M*.$q} +.endfor +.endif +.if !empty(_debug_reldir) +.info ${DEP_RELDIR}.$m: ${_build_dirs:M*.$m:N${_this_dir}.$m} +.endif +${_this_dir}.$m: ${_build_dirs:M*.$m:N${_this_dir}.$m} +.endfor + +.endif + +.for d in ${_depdir_files} +.if ${.MAKE.MAKEFILES:M${d}} == "" +.if !empty(_debug_search) +.info Looking for $d +.endif +.if exists($d) +.include <$d> +.elif exists(${d:R}) +# an unqualified file exists, we qualified it above so we can set _DEP_MACHINE +# it might be manually maintained and shared by all machine types +# tell it the machine we are interested in. +_DEP_MACHINE := ${d:E} +.if !empty(_debug_reldir) +.info loading ${d:R} for ${_DEP_MACHINE} +.endif +# pretend we read $d, so we don't come by here again. +.MAKE.MAKEFILES += $d +.include <${d:R}> +.endif +.endif +.endfor +.endif # -V + +.elif ${.MAKE.LEVEL} > 42 +.error You should have stopped recursing by now. +.else +_DEP_RELDIR := ${DEP_RELDIR} +# pickup local dependencies +.-include <.depend> +.endif + diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk new file mode 100644 index 000000000000..890f4956f38e --- /dev/null +++ b/share/mk/gendirdeps.mk @@ -0,0 +1,301 @@ +# $Id: gendirdeps.mk,v 1.10 2012/06/30 00:37:50 sjg Exp $ + +# Copyright (c) 2010, Juniper Networks, Inc. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# +# This makefile [re]generates ${.MAKE.DEPENDFILE} +# + +.include + +# Assumptions: +# RELDIR is the relative path from ${SRCTOP} to ${_CURDIR} +# (SRCTOP is ${SB}/src) +# _CURDIR is the absolute version of ${.CURDIR} +# _OBJDIR is the absolute version of ${.OBJDIR} +# _objroot is realpath of ${_OBJTOP} without ${MACHINE} +# this may be different from _OBJROOT if $SB/obj is a +# symlink to another filesystem. +# _objroot must be a prefix match for _objtop + +.MAIN: all + +# keep this simple +.MAKE.MODE = compat + +all: + +_CURDIR ?= ${.CURDIR} +_OBJDIR ?= ${.OBJDIR} +_OBJTOP ?= ${OBJTOP} +_OBJROOT ?= ${OBJROOT:U${_OBJTOP}} +_objroot ?= ${_OBJROOT:tA} + +_this = ${.PARSEDIR}/${.PARSEFILE} + +# remember what to make +_DEPENDFILE := ${_CURDIR}/${.MAKE.DEPENDFILE:T} + +# We do _not_ want to read our own output! +.MAKE.DEPENDFILE = /dev/null + +# caller should have set this +META_FILES ?= ${.MAKE.META.FILES} + +.if !empty(META_FILES) + +.if ${.MAKE.LEVEL} > 0 && !empty(GENDIRDEPS_FILTER) +# so we can compare below +.-include <${_DEPENDFILE}> +# yes, I mean :U with no value +_DIRDEPS := ${DIRDEPS:U:O:u} +.endif + +META_FILES := ${META_FILES:T:O:u} +.export META_FILES + +# pickup customizations +.-include "local.gendirdeps.mk" + +# these are actually prefixes that we'll skip +# they should all be absolute paths +SKIP_GENDIRDEPS ?= +.if !empty(SKIP_GENDIRDEPS) +_skip_gendirdeps = egrep -v '^(${SKIP_GENDIRDEPS:O:u:ts|})' | +.else +_skip_gendirdeps = +.endif + +# this (*should* be set in meta.sys.mk) +# is the script that extracts what we want. +META2DEPS ?= ${.PARSEDIR}/meta2deps.sh +META2DEPS := ${META2DEPS} + +.if ${DEBUG_GENDIRDEPS:Uno:@x@${RELDIR:M$x}@} != "" && ${DEBUG_GENDIRDEPS:Uno:Mmeta2d*} != "" +_time = time +_sh_x = sh -x +_py_d = -ddd +.else +_time = +_sh_x = +_py_d = +.endif + +.if ${META2DEPS:E} == "py" +# we can afford to do this all the time. +DPDEPS ?= no +META2DEPS_CMD = ${_time} ${PYTHON} ${META2DEPS} ${_py_d} \ + -R ${RELDIR} -H ${HOST_TARGET} -O ${M2D_OBJROOT} +.if ${DPDEPS:tl} != "no" +META2DEPS_CMD += -D ${DPDEPS} +.endif +.if ${.MAKE.DEPENDFILE_PREFERENCE:U${.MAKE.DEPENDFILE}:M*.${MACHINE}} == "" +# meta2deps.py only groks objroot +# so we need to give it what it expects +M2D_OBJROOT = ${OBJTOP}/ +# and tell it not to add machine qualifiers +META2DEPS_ARGS += MACHINE=none +.else +.if defined(SB_OBJROOT) +M2D_OBJROOT ?= ${SB_OBJROOT} +.else +M2D_OBJROOT = ${OBJTOP}/ +.endif +.endif +.if defined(SB_BACKING_SB) +META2DEPS_CMD += -S ${SB_BACKING_SB}/src -O ${SB_BACKING_SB}/${SB_OBJPREFIX} +.endif +META2DEPS_FILTER = sed 's,^src:,${SRCTOP}/,;s,^\([^/]\),${OBJTOP}/\1,' | +.elif ${META2DEPS:E} == "sh" +META2DEPS_CMD = ${_time} ${_sh_x} ${META2DEPS} \ + OBJTOP=${_objtop} SB_OBJROOT=${_objroot} +.else +META2DEPS_CMD ?= ${META2DEPS} +.endif + +# we are only interested in the dirs +# sepecifically those we read something from. +# we canonicalize them to keep things simple +# if we are using a split-fs sandbox, it gets a little messier. +_objtop := ${_OBJTOP:tA} +dir_list != cd ${_OBJDIR} && \ + ${META2DEPS_CMD} MACHINE=${MACHINE} \ + SRCTOP=${SRCTOP} RELDIR=${RELDIR} CURDIR=${_CURDIR} \ + ${META2DEPS_ARGS} \ + ${META_FILES:O:u} | ${META2DEPS_FILTER} ${_skip_gendirdeps} \ + sed 's,//*$$,,;s,\.${HOST_TARGET}$$,.host,' + +.if ${dir_list:M*ERROR\:*} != "" +.warning ${dir_list:tW:C,.*(ERROR),\1,} +.warning Skipping ${_DEPENDFILE:S,${SRCTOP}/,,} +# we are not going to update anything +.else + +.if !empty(DPADD) +_nonlibs := ${DPADD:T:Nlib*:N*include} +.if !empty(_nonlibs) +dir_list += ${_nonlibs:@x@${DPADD:M*/$x}@:H:tA} +.endif +.endif + +# DIRDEPS represent things that had to have been built first +# so they should all be undir OBJTOP. +# Note that ${_OBJTOP}/bsd/include/machine will get reported +# to us as $SRCTOP/bsd/sys/$MACHINE_ARCH/include meaning we +# will want to visit bsd/include +# so we add +# ${"${dir_list:M*bsd/sys/${MACHINE_ARCH}/include}":?bsd/include:} +# to GENDIRDEPS_DIR_LIST_XTRAS +dirdep_list = \ + ${dir_list:M${_objtop}*/*:C,${_objtop}[^/]*/,,} \ + ${GENDIRDEPS_DIR_LIST_XTRAS} + +# anything we use from an object dir other than ours +# needs to be qualified with its . suffix +# (we used the pseudo machine "host" for the HOST_TARGET). +qualdir_list = \ + ${dir_list:M${_objroot}*/*/*:N${SRCTOP}*:N${_objtop}*:C,${_objroot}([^/]+)/(.*),\2.\1,:S,.${HOST_TARGET},.host,} + +.if ${_OBJROOT} != ${_objroot} +dirdep_list += \ + ${dir_list:M${_OBJTOP}*/*:C,${_OBJTOP}[^/]*/,,} + +qualdir_list += \ + ${dir_list:M${_OBJROOT}*/*/*:N${SRCTOP}*:N${_OBJTOP}*:C,${_OBJROOT}([^/]+)/(.*),\2.\1,:S,.${HOST_TARGET},.host,} +.endif + +dirdep_list := ${dirdep_list:O:u} +qualdir_list := ${qualdir_list:O:u} + +DIRDEPS = \ + ${dirdep_list:N${RELDIR}:N${RELDIR}/*} \ + ${qualdir_list:N${RELDIR}.*:N${RELDIR}/*} + +# We only consider things below $RELDIR/ if they have a makefile. +# This is the same test that _DIRDEPS_USE applies. +# We have do a double test with dirdep_list as it _may_ contain +# qualified dirs - if we got anything from a stage dir. +# qualdir_list we know are all qualified. +# It would be nice do peform this check for all of DIRDEPS, +# but we cannot assume that all of the tree is present, +# in fact we can only assume that RELDIR is. +DIRDEPS += \ + ${dirdep_list:M${RELDIR}/*:@d@${.MAKE.MAKEFILE_PREFERENCE:@m@${exists(${SRCTOP}/$d/$m):?$d:${exists(${SRCTOP}/${d:R}/$m):?$d:}}@}@} \ + ${qualdir_list:M${RELDIR}/*:@d@${.MAKE.MAKEFILE_PREFERENCE:@m@${exists(${SRCTOP}/${d:R}/$m):?$d:}@}@} + +DIRDEPS := ${DIRDEPS:${GENDIRDEPS_FILTER:UNno:ts:}:O:u} + +.if ${DEBUG_GENDIRDEPS:Uno:@x@${RELDIR:M$x}@} != "" +.info ${RELDIR}: dir_list='${dir_list}' +.info ${RELDIR}: dirdep_list='${dirdep_list}' +.info ${RELDIR}: qualdir_list='${qualdir_list}' +.info ${RELDIR}: SKIP_GENDIRDEPS='${SKIP_GENDIRDEPS}' +.info ${RELDIR}: GENDIRDEPS_FILTER='${GENDIRDEPS_FILTER}' +.info ${RELDIR}: FORCE_DPADD='${DPADD}' +.info ${RELDIR}: DIRDEPS='${DIRDEPS}' +.endif + +# SRC_DIRDEPS is for checkout logic +src_dirdep_list = \ + ${dir_list:M${SRCTOP}/*:S,${SRCTOP}/,,} + +SRC_DIRDEPS = \ + ${src_dirdep_list:N${RELDIR}:N${RELDIR}/*:C,(/h)/.*,,} + +SRC_DIRDEPS := ${SRC_DIRDEPS:${GENDIRDEPS_SRC_FILTER:UN/*:ts:}:O:u} + +# if you want to capture SRC_DIRDEPS in .MAKE.DEPENDFILE put +# SRC_DIRDEPS_FILE = ${_DEPENDFILE} +# in local.gendirdeps.mk +.if ${SRC_DIRDEPS_FILE:Uno:tl} != "no" +ECHO_SRC_DIRDEPS = echo 'SRC_DIRDEPS = \'; echo '${SRC_DIRDEPS:@d@ $d \\${.newline}@}'; echo; + +.if ${SRC_DIRDEPS_FILE:T} == ${_DEPENDFILE:T} +_include_src_dirdeps = ${ECHO_SRC_DIRDEPS} +.else +all: ${SRC_DIRDEPS_FILE} +.if !target(${SRC_DIRDEPS_FILE}) +${SRC_DIRDEPS_FILE}: ${META_FILES} ${_this} ${META2DEPS} + @(${ECHO_SRC_DIRDEPS}) > $@ +.endif +.endif +.endif +_include_src_dirdeps ?= + +all: ${_DEPENDFILE} + +# if this is going to exist it would be there by now +.if !exists(.depend) +CAT_DEPEND = /dev/null +.endif +CAT_DEPEND ?= .depend + +.if !empty(_DIRDEPS) && ${DIRDEPS} != ${_DIRDEPS} +# we may have changed a filter +.PHONY: ${_DEPENDFILE} +.endif + +# 'cat .depend' should suffice, but if we are mixing build modes +# .depend may contain things we don't want. +# The sed command at the end of the stream, allows for the filters +# to output _{VAR} tokens which we will turn into proper ${VAR} references. +${_DEPENDFILE}: ${CAT_DEPEND:M.depend} ${META_FILES:O:u:@m@${exists($m):?$m:}@} ${_this} ${META2DEPS} + @(echo '# Autogenerated - do NOT edit!'; echo; \ + echo 'DEP_RELDIR := $${_PARSEDIR:S,$${SRCTOP}/,,}'; echo; \ + echo 'DEP_MACHINE := $${.PARSEFILE:E}'; echo; \ + echo 'DIRDEPS = \'; \ + echo '${DIRDEPS:@d@ $d \\${.newline}@}'; echo; \ + ${_include_src_dirdeps} \ + echo '.include '; \ + echo; \ + echo '.if $${DEP_RELDIR} == $${_DEP_RELDIR}'; \ + echo '# local dependencies - needed for -jN in clean tree'; \ + [ -s ${CAT_DEPEND} ] && { grep : ${CAT_DEPEND} | grep -v '[/\\]'; }; \ + echo '.endif' ) | sed 's,_\([{(]\),$$\1,g' > $@.new${.MAKE.PID} + @${InstallNew}; InstallNew -s $@.new${.MAKE.PID} + +.endif # meta2deps failed +.elif !empty(SUBDIR) + +DIRDEPS := ${SUBDIR:S,^,${RELDIR}/,:O:u} + +all: ${_DEPENDFILE} + +${_DEPENDFILE}: ${MAKEFILE} ${_this} + @(echo '# Autogenerated - do NOT edit!'; echo; \ + echo 'DEP_RELDIR := $${_PARSEDIR:S,$${SRCTOP}/,,}'; echo; \ + echo 'DEP_MACHINE := $${.PARSEFILE:E}'; echo; \ + echo 'DIRDEPS = \'; \ + echo '${DIRDEPS:@d@ $d \\${.newline}@}'; echo; \ + echo '.include '; \ + echo ) | sed 's,_\([{(]\),$$\1,g' > $@.new + @${InstallNew}; InstallNew $@.new + +.else + +# nothing to do +all ${_DEPENDFILE}: + +.endif +${_DEPENDFILE}: .PRECIOUS diff --git a/share/mk/host-target.mk b/share/mk/host-target.mk new file mode 100644 index 000000000000..c6d4562bf15a --- /dev/null +++ b/share/mk/host-target.mk @@ -0,0 +1,31 @@ +# RCSid: +# $Id: host-target.mk,v 1.6 2011/03/02 05:05:21 sjg Exp $ + +# Host platform information; may be overridden +.if !defined(_HOST_OSNAME) +_HOST_OSNAME != uname -s +.export _HOST_OSNAME +.endif +.if !defined(_HOST_OSREL) +_HOST_OSREL != uname -r +.export _HOST_OSREL +.endif +.if !defined(_HOST_ARCH) +_HOST_ARCH != uname -p 2>/dev/null || uname -m +# uname -p may produce garbage on linux +.if ${_HOST_ARCH:[\#]} > 1 +_HOST_ARCH != uname -m +.endif +.export _HOST_ARCH +.endif + +HOST_OSMAJOR := ${_HOST_OSREL:C/[^0-9].*//} +HOST_OSTYPE := ${_HOST_OSNAME}-${_HOST_OSREL:C/\([^\)]*\)//}-${_HOST_ARCH} +HOST_OS := ${_HOST_OSNAME} +host_os := ${_HOST_OSNAME:tl} +HOST_TARGET := ${host_os}${HOST_OSMAJOR}-${_HOST_ARCH} + +# tr is insanely non-portable, accommodate the lowest common denominator +TR ?= tr +toLower = ${TR} 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' +toUpper = ${TR} 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' diff --git a/share/mk/install-new.mk b/share/mk/install-new.mk new file mode 100644 index 000000000000..ddfff20e3b85 --- /dev/null +++ b/share/mk/install-new.mk @@ -0,0 +1,53 @@ +# $Id: install-new.mk,v 1.3 2012/03/24 18:25:49 sjg Exp $ +# +# @(#) Copyright (c) 2009, Simon J. Gerraty +# +# This file is provided in the hope that it will +# be of use. There is absolutely NO WARRANTY. +# Permission to copy, redistribute or otherwise +# use this file is hereby granted provided that +# the above copyright notice and this notice are +# left intact. +# +# Please send copies of changes and bug-fixes to: +# sjg@crufty.net +# + +.if !defined(InstallNew) + +# copy if src and target are different making a backup if desired +CmpCp= CmpCp() { \ + src=$$1 target=$$2 _bak=$$3; \ + if ! test -s $$target || ! cmp -s $$target $$src; then \ + trap "" 1 2 3 15; \ + if test -s $$target; then \ + if test "x$$_bak" != x; then \ + rm -f $$target$$_bak; \ + mv $$target $$target$$_bak; \ + else \ + rm -f $$target; \ + fi; \ + fi; \ + cp $$src $$target; \ + fi; } + +# If the .new file is different, we want it. +# Note: this function will work as is for *.new$RANDOM" +InstallNew= ${CmpCp}; InstallNew() { \ + _t=-e; _bak=; \ + while :; do \ + case "$$1" in \ + -?) _t=$$1; shift;; \ + --bak) _bak=$$2; shift 2;; \ + *) break;; \ + esac; \ + done; \ + for new in "$$@"; do \ + if test $$_t $$new; then \ + target=`expr $$new : '\(.*\).new'`; \ + CmpCp $$new $$target $$_bak; \ + fi; \ + rm -f $$new; \ + done; :; } + +.endif diff --git a/share/mk/local.autodep.mk b/share/mk/local.autodep.mk new file mode 100644 index 000000000000..8327540ec210 --- /dev/null +++ b/share/mk/local.autodep.mk @@ -0,0 +1,21 @@ + +.if ${.MAKE.DEPENDFILE:M*.${MACHINE}} == "" +# by default only MACHINE0 does updates +UPDATE_DEPENDFILE_MACHINE?= ${MACHINE0} +.if ${MACHINE} != ${UPDATE_DEPENDFILE_MACHINE} +UPDATE_DEPENDFILE= no +.endif +.endif + +CFLAGS+= ${CFLAGS_LAST} +CLEANFILES+= .depend + +# handy for debugging +.SUFFIXES: .S .c .cc .cpp .cpp-out + + +.S.cpp-out .c.cpp-out: .NOMETA + @${CC} -E ${CFLAGS} ${.IMPSRC} | grep -v '^[[:space:]]*$$' + +.cc.cpp-out: .NOMETA + @${CXX} -E ${CXXFLAGS} ${.IMPSRC} | grep -v '^[[:space:]]*$$' diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk new file mode 100644 index 000000000000..dedf9e274134 --- /dev/null +++ b/share/mk/local.dirdeps.mk @@ -0,0 +1,15 @@ +.if !target(_DIRDEP_USE) +# first time read +.if ${MACHINE} == "host" +DIRDEPS_FILTER+= \ + Ninclude* \ + Nlib/* \ + Ngnu/lib/* \ + +.endif +.endif + +# this is how we can handle optional dependencies +.if ${MK_SSP:Uno} != "no" && defined(PROG) +DIRDEPS += gnu/lib/libssp/libssp_nonshared +.endif diff --git a/share/mk/local.gendirdeps.mk b/share/mk/local.gendirdeps.mk new file mode 100644 index 000000000000..88c11e9db194 --- /dev/null +++ b/share/mk/local.gendirdeps.mk @@ -0,0 +1,10 @@ +# supress optional dependecies +# local.dirdeps.mk will put them in if necessary +GENDIRDEPS_FILTER+= Ngnu/lib/libssp/libssp_nonshared + +# gendirdeps.mk will turn _{VAR} into ${VAR} which keeps this simple +GENDIRDEPS_FILTER+= ${CSU_DIR:L:@v@S,/${$v},/_{${v}},@} + +# this could easily get confused +GENDIRDEPS_FILTER+= ${MACHINE_CPUARCH MACHINE_CPU MACHINE_ARCH MACHINE:L:@v@S,/${$v}/,/_{${v}}/,@:NS,//,*:u} + diff --git a/share/mk/local.init.mk b/share/mk/local.init.mk new file mode 100644 index 000000000000..eb15b1ee9fa5 --- /dev/null +++ b/share/mk/local.init.mk @@ -0,0 +1,18 @@ + +.if defined(.PARSEDIR) +.if ${.MAKE.MODE:Mmeta*} != "" +.if !empty(SUBDIR) && !defined(LIB) && !defined(PROG) && ${.MAKE.MAKEFILES:M*bsd.prog.mk} == "" +.if ${.MAKE.MODE:Mleaf*} != "" +# we only want leaf dirs to build in meta mode... and we are not one +.MAKE.MODE = normal +.endif +.endif +.endif +.endif + +.if ${MACHINE} == "host" +HOST_CC?= /usr/bin/cc +HOST_CFLAGS+= -DHOSTPROG +CC= ${HOST_CC} +CFLAGS+= ${HOST_CFLAGS} +.endif diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk new file mode 100644 index 000000000000..22ce5012ea8a --- /dev/null +++ b/share/mk/local.sys.mk @@ -0,0 +1,196 @@ +WITH_INSTALL_AS_USER= yes + +.if defined(.PARSEDIR) # bmake + +# some handy macros +_this = ${.PARSEDIR:tA}/${.PARSEFILE} +# some useful modifiers + +# A useful trick for testing multiple :M's against something +# :L says to use the variable's name as its value - ie. literal +# got = ${clean* destroy:${M_ListToMatch:S,V,.TARGETS,}} +M_ListToMatch = L:@m@$${V:M$$m}@ +# match against our initial targets (see above) +M_L_TARGETS = ${M_ListToMatch:S,V,_TARGETS,} + +# turn a list into a set of :N modifiers +# NskipFoo = ${Foo:${M_ListToSkip}} +M_ListToSkip= O:u:ts::S,:,:N,g:S,^,N, + +# type should be a builtin in any sh since about 1980, +# AUTOCONF := ${autoconf:L:${M_whence}} +M_type = @x@(type $$x 2> /dev/null); echo;@:sh:[0]:N* found*:[@]:C,[()],,g +M_whence = ${M_type}:M/* + +# convert a path to a valid shell variable +M_P2V = tu:C,[./-],_,g + +# convert path to absolute +.if ${MAKE_VERSION:U0} > 20100408 +M_tA = tA +.else +M_tA = C,.*,('cd' & \&\& 'pwd') 2> /dev/null || echo &,:sh +.endif + +# this is handy for forcing a space into something. +AnEmptyVar= + +# absoulte path to what we are reading. +_PARSEDIR = ${.PARSEDIR:${M_tA}} + +.if !empty(SB) +SB_SRC ?= ${SB}/src +SB_OBJROOT ?= ${SB}/obj +# this is what we use below +SRCTOP ?= ${SB_SRC} +OBJROOT ?= ${SB_OBJROOT} +.endif + +.if empty(SRCTOP) +SRCTOP := ${_PARSEDIR:H:H} +.export SRCTOP +OBJROOT ?= ${SRCTOP:H}/obj/ +.endif + +# we need HOST_TARGET etc below. +.include + +OBJTOP ?= ${OBJROOT}${MACHINE} + +.if !defined(_TARGETS) +# some things we do only once +_TARGETS := ${.TARGETS} +.-include +.if !empty(OBJROOT) +.if ${OBJROOT:M*/} != "" +OBJROOT:= ${OBJROOT:tA}/ +.else +OBJROOT:= ${OBJROOT:H:tA}/${OBJROOT:T} +.endif +.export OBJROOT +.endif +.endif + +.if !empty(SRCTOP) +.if ${.CURDIR} == ${SRCTOP} +RELDIR = . +.elif ${.CURDIR:M${SRCTOP}/*} +RELDIR := ${.CURDIR:S,${SRCTOP}/,,} +.endif +.endif + +HOST_OBJTOP ?= ${OBJROOT}${HOST_TARGET} + +.if ${OBJTOP} == ${HOST_OBJTOP} || ${REQUESTED_MACHINE:U${MACHINE}} == "host" +MACHINE= host +.endif +.if ${MACHINE} == "host" +OBJTOP := ${HOST_OBJTOP} +.endif + +# if you want objdirs make them automatic +.if ${MKOBJDIRS:Uno} == "auto" +WITH_AUTO_OBJ= yes +.include +.endif + +.ifndef WITHOUT_META_MODE +WITH_META_MODE= yes + +.ifndef WITHOUT_STAGING +WITH_STAGING= yes +.endif + +PYTHON ?= /usr/local/bin/python + +.if ${.MAKE.LEVEL} == 0 +# this works best if share/mk is ready for it. +BUILD_AT_LEVEL0= no +# By default only MACHINE0 updates dependencies +# see local.autodep.mk +MACHINE0 := ${MACHINE} +.export MACHINE0 +.export PYTHON +.endif + +# we want to end up with a singe stage tree for all machines +.ifndef WITHOUT_STAGING +.if empty(STAGE_ROOT) +STAGE_ROOT?= ${OBJROOT}stage +.export STAGE_ROOT +.endif +.endif + +.if !empty(STAGE_ROOT) +.if ${MACHINE} == "host" +STAGE_MACHINE= ${HOST_TARGET} +.else +STAGE_MACHINE= ${MACHINE} +.endif +STAGE_OBJTOP= ${STAGE_ROOT}/${STAGE_MACHINE} +STAGE_COMMON_OBJTOP= ${STAGE_ROOT}/common +STAGE_HOST_OBJTOP= ${STAGE_ROOT}/${HOST_TARGET} + +STAGE_LIBDIR= ${STAGE_OBJTOP}${LIBDIR:U/lib} +# this is not the same as INCLUDEDIR +STAGE_INCSDIR= ${STAGE_OBJTOP}${INCSDIR:U/include} + +.ifndef WITH_SYSROOT +.if ${MACHINE} != "host" +CFLAGS_LAST+= -nostdinc +.endif +CFLAGS_LAST+= -isystem ${STAGE_OBJTOP}/usr/include -isystem ${STAGE_OBJTOP}/include +LDFLAGS+= -B${STAGE_LIBDIR} -L${STAGE_LIBDIR} +.else +# if ld suppored sysroot, this would suffice +CFLAGS_LAST+= --sysroot=${STAGE_OBJTOP} -isystem ${STAGE_OBJTOP}/include +.endif +.endif + +.include "meta.sys.mk" + +# most dirs can be satisfied with one Makefile.depend ? +.undef .MAKE.DEPENDFILE +.MAKE.DEPENDFILE_PREFERENCE = \ + ${.MAKE.DEPENDFILE_PREFIX} \ + ${.MAKE.DEPENDFILE_PREFIX}.${MACHINE} + +.include "sys.dependfile.mk" + +.if ${MACHINE} == "host" +# need a machine specific file +.MAKE.DEPENDFILE= ${.MAKE.DEPENDFILE_PREFIX}.${MACHINE} +.endif + +.MAKE.META.BAILIWICK = ${SB} ${OBJROOT} ${STAGE_ROOT} + +.endif # meta mode + +# ensure we have a value +.MAKE.MODE ?= normal + +# don't rely on MACHINE_ARCH being set or valid + +MACHINE_ARCH.host = ${_HOST_ARCH} +MACHINE_ARCH.${MACHINE} ?= ${MACHINE} +MACHINE_ARCH := ${MACHINE_ARCH.${MACHINE}} + +CSU_DIR.i386 = csu/i386-elf +CSU_DIR.${MACHINE_ARCH} ?= csu/${MACHINE_ARCH} +CSU_DIR := ${CSU_DIR.${MACHINE_ARCH}} + +MAKE_PRINT_VAR_ON_ERROR+= \ + .CURDIR \ + .MAKE \ + .OBJDIR \ + .TARGETS \ + DESTDIR \ + LD_LIBRARY_PATH \ + MACHINE \ + MACHINE_ARCH \ + MAKEOBJDIRPREFIX \ + MAKE_VERSION\ + OBJTOP \ + ${MAKE_PRINT_VAR_ON_ERROR_XTRAS} + +.endif # bmake diff --git a/share/mk/meta.autodep.mk b/share/mk/meta.autodep.mk new file mode 100644 index 000000000000..92e43d75c8c2 --- /dev/null +++ b/share/mk/meta.autodep.mk @@ -0,0 +1,259 @@ +# $Id: meta.autodep.mk,v 1.28 2012/07/13 15:38:16 sjg Exp $ + +# +# @(#) Copyright (c) 2010, Simon J. Gerraty +# +# This file is provided in the hope that it will +# be of use. There is absolutely NO WARRANTY. +# Permission to copy, redistribute or otherwise +# use this file is hereby granted provided that +# the above copyright notice and this notice are +# left intact. +# +# Please send copies of changes and bug-fixes to: +# sjg@crufty.net +# + +_this ?= ${.PARSEFILE} +.if !target(__${_this}__) +__${_this}__: .NOTMAIN + +.-include "local.autodep.mk" + +.if defined(SRCS) +# it would be nice to be able to query .SUFFIXES +OBJ_EXTENSIONS+= .o .po .lo .So + +# explicit dependencies help short-circuit .SUFFIX searches +SRCS_DEP_FILTER+= N*.[hly] +.for s in ${SRCS:${SRCS_DEP_FILTER:O:u:ts:}} +.for e in ${OBJ_EXTENSIONS:O:u} +.if !target(${s:T:R}$e) +${s:T:R}$e: $s +.endif +.endfor +.endfor +.endif + +.if make(gendirdeps) +# you are supposed to know what you are doing! +UPDATE_DEPENDFILE = yes +.elif !empty(.TARGETS) && !make(all) +# do not update the *depend* files +# unless we are building the entire directory or the default target. +# NO means don't update .depend - or Makefile.depend* +# no means update .depend but not Makefile.depend* +UPDATE_DEPENDFILE = NO +.elif ${.MAKEFLAGS:M-k} != "" +# it is a bad idea to update anything +UPDATE_DEPENDFILE = NO +.endif + +_CURDIR ?= ${.CURDIR} +_DEPENDFILE := ${_CURDIR}/${.MAKE.DEPENDFILE:T} + +.if ${.MAKE.LEVEL} == 0 +.if ${BUILD_AT_LEVEL0:Uyes:tl} == "no" +UPDATE_DEPENDFILE = NO +.endif +.endif +.if !exists(${_DEPENDFILE}) +_bootstrap_dirdeps = yes +.endif +_bootstrap_dirdeps ?= no +UPDATE_DEPENDFILE ?= yes + +.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != "" +.info ${_DEPENDFILE:S,${SRCTOP}/,,} update=${UPDATE_DEPENDFILE} +.endif + +.if !empty(XMAKE_META_FILE) +.if exists(${.OBJDIR}/${XMAKE_META_FILE}) +# we cannot get accurate dependencies from an update build +UPDATE_DEPENDFILE = NO +.else +META_XTRAS += ${XMAKE_META_FILE} +.endif +.endif + +.if ${_bootstrap_dirdeps} == "yes" || exists(${_DEPENDFILE}) +# if it isn't supposed to be touched by us the Makefile should have +# UPDATE_DEPENDFILE = no +WANT_UPDATE_DEPENDFILE ?= yes +.endif + +.if ${WANT_UPDATE_DEPENDFILE:Uno:tl} != "no" +.if ${.MAKE.MODE:Mmeta*} == "" || ${.MAKE.MODE:M*read*} != "" +UPDATE_DEPENDFILE = no +.endif + +.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != "" +.info ${_DEPENDFILE:S,${SRCTOP}/,,} update=${UPDATE_DEPENDFILE} +.endif + +.if ${UPDATE_DEPENDFILE:tl} == "yes" +# sometimes we want .meta files generated to aid debugging/error detection +# but do not want to consider them for dependencies +# for example the result of running configure +# just make sure this is not empty +META_FILE_FILTER ?= N.meta + +.if !empty(DPADD) +# if we have any non-libs in DPADD, +# they probably need to be paid attention to +.if !empty(DPLIBS) +FORCE_DPADD = ${DPADD:${DPLIBS:${M_ListToSkip}}:${DPADD_LAST:${M_ListToSkip}}} +.else +_nonlibs := ${DPADD:T:Nlib*:N*include} +.if !empty(_nonlibs) +FORCE_DPADD += ${_nonlibs:@x@${DPADD:M*/$x}@} +.endif +.endif +.endif + +.if !make(gendirdeps) +.END: gendirdeps +.endif + +# if we don't have OBJS, then .depend isn't useful +.if !target(.depend) && (!empty(OBJS) || ${.ALLTARGETS:M*.o} != "") +# some makefiles and/or targets contain +# circular dependencies if you dig too deep +# (as meta mode is apt to do) +# so we provide a means of supressing them. +# the input to the loop below is target: dependency +# with just one dependency per line. +# Also some targets are not really local, or use random names. +# Use local.autodep.mk to provide local additions! +SUPPRESS_DEPEND += \ + ${SB:S,/,_,g}* \ + *:y.tab.c \ + *.c:*.c \ + *.h:*.h + +.NOPATH: .depend +# we use ${.MAKE.META.CREATED} to trigger an update but +# we process using ${.MAKE.META.FILES} +# the double $$ defers initial evaluation +# if necessary, we fake .po dependencies, just so the result +# in Makefile.depend* is stable +# The current objdir may be refered to in various ways +OBJDIR_REFS += ${.OBJDIR} ${.OBJDIR:tA} ${_OBJDIR} ${RELOBJTOP}/${RELDIR} +_depend = .depend +# it would be nice to be able to get .SUFFIXES as ${.SUFFIXES} +# we actually only care about the .SUFFIXES of files that might be +# generated by tools like yacc. +DEPEND_SUFFIXES += .c .h .cpp .hpp .cxx .hxx .cc .hh +.depend: .NOMETA $${.MAKE.META.CREATED} ${_this} + @echo "Updating $@: ${.OODATE:T:[1..8]}" + @egrep -i '^R .*\.(${DEPEND_SUFFIXES:tl:O:u:S,^.,,:ts|})$$' /dev/null ${.MAKE.META.FILES:T:O:u:${META_FILE_FILTER:ts:}:M*o.meta} | \ + sed -e 's, \./, ,${OBJDIR_REFS:O:u:@d@;s, $d/, ,@};/\//d' \ + -e 's,^\([^/][^/]*\).meta...[0-9]* ,\1: ,' | \ + sort -u | \ + while read t d; do \ + case "$$d:" in $$t) continue;; esac; \ + case "$$t$$d" in ${SUPPRESS_DEPEND:U.:O:u:ts|}) continue;; esac; \ + echo $$t $$d; \ + done > $@.${.MAKE.PID} + @case "${.MAKE.META.FILES:T:M*.po.*}" in \ + *.po.*) mv $@.${.MAKE.PID} $@;; \ + *) { cat $@.${.MAKE.PID}; \ + sed 's,\.So:,.o:,;s,\.o:,.po:,' $@.${.MAKE.PID}; } | sort -u > $@; \ + rm -f $@.${.MAKE.PID};; \ + esac +.else +# make sure this exists +.depend: +# do _not_ assume that .depend is in any fit state for us to use +CAT_DEPEND = /dev/null +.if ${.MAKE.LEVEL} > 0 +.export CAT_DEPEND +.endif +_depend = +.endif + +.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != "" +.info ${_DEPENDFILE:S,${SRCTOP}/,,} _depend=${_depend} +.endif + +gendirdeps: ${_DEPENDFILE} + +.if !target(${_DEPENDFILE}) +.if ${_bootstrap_dirdeps} == "yes" +# We are boot-strapping a new directory +# Use DPADD to seed DIRDEPS +.if !empty(DPADD) +# anything which matches ${_OBJROOT}* but not ${_OBJTOP}* +# needs to be qualified in DIRDEPS +# The pseudo machine "host" is used for HOST_TARGET +DIRDEPS = \ + ${DPADD:M${_OBJTOP}*:H:C,${_OBJTOP}[^/]*/,,:N.:O:u} \ + ${DPADD:M${_OBJROOT}*:N${_OBJTOP}*:H:S,${_OBJROOT},,:C,^([^/]+)/(.*),\2.\1,:S,${HOST_TARGET}$,host,:N.*:O:u} + +.endif +.endif + +_gendirdeps_mutex = +.if defined(NEED_GENDIRDEPS_MUTEX) +# If a src dir gets built with multiple object dirs, +# we need a mutex. Obviously, this is best avoided. +# Note if .MAKE.DEPENDFILE is common for all ${MACHINE} +# you either need to mutex, or ensure only one machine builds at a time! +# lockf is an example of a suitable tool +LOCKF ?= /usr/bin/lockf +.if exists(${LOCKF}) +GENDIRDEPS_MUTEXER ?= ${LOCKF} -k +.endif +.if empty(GENDIRDEPS_MUTEXER) +.error NEED_GENDIRDEPS_MUTEX defined, but GENDIRDEPS_MUTEXER not set +.else +_gendirdeps_mutex = ${GENDIRDEPS_MUTEXER} ${GENDIRDEPS_MUTEX:U${_CURDIR}/Makefile} +.endif +.endif + +# If we have META_XTRAS we most likely did not create them +# but we need to behave as if we did. +# Avoid adding glob patterns to .MAKE.META.CREATED though. +.MAKE.META.CREATED += ${META_XTRAS:N*\**:O:u} + +.if make(gendirdeps) +META_FILES = *.meta +.elif ${OPTIMIZE_OBJECT_META_FILES:Uno:tl} == "no" +META_FILES = ${.MAKE.META.FILES:T:N.depend*:O:u} +.else +# if we have 1000's of .o.meta, .So.meta etc we need only look at one set +# it is left as an exercise for the reader to work out what this does +META_FILES = ${.MAKE.META.FILES:T:N.depend*:N*o.meta:O:u} \ + ${.MAKE.META.FILES:T:M*.${.MAKE.META.FILES:M*o.meta:R:E:O:u:[1]}.meta:O:u} +.endif + +.if ${DEBUG_AUTODEP:Uno:@m@${RELDIR:M$m}@} != "" +.info ${_DEPENDFILE:S,${SRCTOP}/,,}: ${_depend} ${.PARSEDIR}/gendirdeps.mk ${META2DEPS} xtras=${META_XTRAS} +.endif + +.if ${.MAKE.LEVEL} > 0 && !empty(GENDIRDEPS_FILTER) +.export GENDIRDEPS_FILTER +.endif + +${_DEPENDFILE}: ${_depend} ${.PARSEDIR}/gendirdeps.mk ${META2DEPS} $${.MAKE.META.CREATED} + @echo Checking $@: ${.OODATE:T:[1..8]} + @(cd . && \ + SKIP_GENDIRDEPS='${SKIP_GENDIRDEPS:O:u}' \ + DPADD='${FORCE_DPADD:O:u}' ${_gendirdeps_mutex} \ + ${.MAKE} -f gendirdeps.mk RELDIR=${RELDIR} _DEPENDFILE=${_DEPENDFILE} \ + META_FILES='${META_XTRAS:T:O:u} ${META_FILES:T:O:u:${META_FILE_FILTER:ts:}}') + @test -s $@ && touch $@; : +.endif + +.endif +.endif + +.if ${_bootstrap_dirdeps} == "yes" +# make sure this is included at least once +.include +.else +${_DEPENDFILE}: .PRECIOUS +.endif + +CLEANFILES += *.meta filemon.* *.db +.endif diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk new file mode 100644 index 000000000000..f43fd01584c3 --- /dev/null +++ b/share/mk/meta.stage.mk @@ -0,0 +1,166 @@ +# $Id: meta.stage.mk,v 1.11 2011/05/05 15:01:05 sjg Exp $ +# +# @(#) Copyright (c) 2011, Simon J. Gerraty +# +# This file is provided in the hope that it will +# be of use. There is absolutely NO WARRANTY. +# Permission to copy, redistribute or otherwise +# use this file is hereby granted provided that +# the above copyright notice and this notice are +# left intact. +# +# Please send copies of changes and bug-fixes to: +# sjg@crufty.net +# + +.if !target(__${.PARSEFILE}__) +__${.PARSEFILE}__: + +.if ${.MAKE.DEPENDFILE_PREFERENCE:U${.MAKE.DEPENDFILE}:M*.${MACHINE}} != "" +# this is generally safer anyway +_dirdep = ${RELDIR}.${MACHINE} +.else +_dirdep = ${RELDIR} +.endif + +# this allows us to trace dependencies back to their src dir +.dirdep: + @echo '${_dirdep}' > $@ + +.if defined(NO_POSIX_SHELL) || ${type printf:L:sh:Mbuiltin} == "" +_stage_file_basename = `basename $$f` +_stage_target_dirname = `dirname $$t` +.else +_stage_file_basename = $${f\#\#*/} +_stage_target_dirname = $${t%/*} +.endif + +# common logic for staging files +# this all relies on RELDIR being set to a subdir of SRCTOP +# we use ln(1) if we can, else cp(1) +STAGE_FILE_SCRIPT = StageFiles() { \ + dest=$$1; shift; \ + mkdir -p $$dest; \ + [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \ + for f in "$$@"; do \ + case "$$f" in */*) t=$$dest/${_stage_file_basename};; *) t=$$dest/$$f;; esac; \ + rm -f $$t $$t.dirdep; \ + { ln $$f $$t 2> /dev/null || \ + cp -p $$f $$t; } && \ + { ln .dirdep $$t.dirdep 2> /dev/null || \ + cp .dirdep $$t.dirdep; }; \ + done; } + +STAGE_LINKS_SCRIPT = StageLinks() { \ + case "$$1" in --) shift;; -*) lnf=$$1; shift;; esac; \ + dest=$$1; shift; \ + mkdir -p $$dest; \ + [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \ + while test $$\# -ge 2; do \ + l=$$1; shift; \ + t=$$dest/$$1; \ + case "$$1" in */*) mkdir -p ${_stage_target_dirname};; esac; \ + shift; \ + rm -f $$t $$t.dirdep 2>/dev/null; \ + ln $$lnf $$l $$t; \ + { ln .dirdep $$t.dirdep 2> /dev/null || \ + cp .dirdep $$t.dirdep; }; \ + done; :; } + +STAGE_AS_SCRIPT = StageAs() { \ + dest=$$1; shift; \ + mkdir -p $$dest; \ + [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \ + while test $$\# -ge 2; do \ + s=$$1; shift; \ + t=$$dest/$$1; \ + case "$$1" in */*) mkdir -p ${_stage_target_dirname};; esac; \ + shift; \ + rm -f $$t $$t.dirdep; \ + { ln $$s $$t 2> /dev/null || \ + cp -p $$s $$t; } && \ + { ln .dirdep $$t.dirdep 2> /dev/null || \ + cp .dirdep $$t.dirdep; }; \ + done; } + +# this is simple, a list of the "staged" files depends on this, +_STAGE_BASENAME_USE: .USE ${.TARGET:T} + @${STAGE_FILE_SCRIPT}; StageFiles ${.TARGET:H} ${.TARGET:T} + +.if !empty(STAGE_INCSDIR) +STAGE_INCS ?= ${.ALLSRC:N.dirdep} + +stage_incs: .dirdep + @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_INCSDIR} ${STAGE_INCS} + @touch $@ +.endif + +.if !empty(STAGE_LIBDIR) +STAGE_LIBS ?= ${.ALLSRC:N.dirdep} + +stage_libs: .dirdep + @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_LIBDIR} ${STAGE_LIBS} +.if !empty(SHLIB_LINKS) + @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_LIBDIR} \ + ${SHLIB_LINKS:@t@${STAGE_LIBS:T:M$t.*} $t@} +.elif !empty(SHLIB_LINK) && !empty(SHLIB_NAME) + @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_LIBDIR} ${SHLIB_NAME} ${SHLIB_LINK} ${SYMLINKS:T} +.endif + @touch $@ +.endif + +.if !empty(STAGE_DIR) +STAGE_SETS += _default +STAGE_DIR._default = ${STAGE_DIR} +STAGE_SYMLINKS_DIR._default = ${STAGE_SYMLINKS_DIR:U${STAGE_DIR}} +STAGE_FILES._default = ${STAGE_FILES} +STAGE_SYMLINKS._default = ${STAGE_SYMLINKS} +STAGE_FILES ?= ${.ALLSRC:N.dirdep:Nstage_*} +STAGE_SYMLINKS ?= ${.ALLSRC:T:N.dirdep:Nstage_*} +.endif + +.if !empty(STAGE_SETS) + +# some makefiles need to populate multiple directories +.for s in ${STAGE_SETS:O:u} +STAGE_FILES.$s ?= ${.ALLSRC:N.dirdep} +STAGE_SYMLINKS.$s ?= ${.ALLSRC:N.dirdep} + +.if $s != "_default" +stage_files: stage_files.$s +stage_files.$s: .dirdep +.else +stage_files: .dirdep +.endif + @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}} ${STAGE_FILES.$s} + @touch $@ + +.if $s != "_default" +stage_symlinks: stage_symlinks.$s +stage_symlinks.$s: .dirdep +.else +stage_symlinks: .dirdep +.endif + @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_SYMLINKS_DIR.$s:U${STAGE_DIR.$s}} ${STAGE_SYMLINKS.$s} + @touch $@ + +.endfor +.endif + +.if !empty(STAGE_AS_SETS) + +# sometimes things need to be renamed as they are staged +# each ${file} will be staged as ${STAGE_AS_${file:T}} +# one could achieve the same with SYMLINKS +.for s in ${STAGE_AS_SETS:O:u} +STAGE_AS.$s ?= ${.ALLSRC:N.dirdep} + +stage_as: stage_as.$s +stage_as.$s: .dirdep + @${STAGE_AS_SCRIPT}; StageAs ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}} ${STAGE_AS.$s:@f@$f ${STAGE_AS_${f:T}:U${f:T}}@} + @touch $@ + +.endfor +.endif + +.endif diff --git a/share/mk/meta.subdir.mk b/share/mk/meta.subdir.mk new file mode 100644 index 000000000000..1a77b44abc3c --- /dev/null +++ b/share/mk/meta.subdir.mk @@ -0,0 +1,79 @@ +# $Id: meta.subdir.mk,v 1.8 2011/11/09 22:27:25 sjg Exp $ + +# +# @(#) Copyright (c) 2010, Simon J. Gerraty +# +# This file is provided in the hope that it will +# be of use. There is absolutely NO WARRANTY. +# Permission to copy, redistribute or otherwise +# use this file is hereby granted provided that +# the above copyright notice and this notice are +# left intact. +# +# Please send copies of changes and bug-fixes to: +# sjg@crufty.net +# + +.if !defined(NO_SUBDIR) && !empty(SUBDIR) +.if make(destroy*) || make(clean*) +.MAKE.MODE = compat +.if !commands(destroy) +.-include +.endif +.elif ${.MAKE.LEVEL} == 0 + +.MAIN: all + +.if !exists(${.CURDIR}/${.MAKE.DEPENDFILE:T}) || make(gendirdeps) +# start with this +DIRDEPS = ${SUBDIR:N.WAIT:O:u:@d@${RELDIR}/$d@} + +.if make(gendirdeps) +.include +.else +# this is the cunning bit +# actually it is probably a bit risky +# since we may pickup subdirs which are not relevant +# the alternative is a walk through the tree though +# which is difficult without a sub-make. + +.if defined(BOOTSTRAP_DEPENDFILES) +_find_name = ${.MAKE.MAKEFILE_PREFERENCE:@m@-o -name $m@:S,^-o,,1} +DIRDEPS = ${_subdeps:H:O:u:@d@${RELDIR}/$d@} +.elif ${.MAKE.DEPENDFILE:E} == ${MACHINE} && defined(ALL_MACHINES) +# we want to find Makefile.depend.* ie for all machines +# and turn the dirs into dir. +_find_name = -name '${.MAKE.DEPENDFILE:T:R}*' +DIRDEPS = ${_subdeps:O:u:${NIgnoreFiles}:@d@${RELDIR}/${d:H}.${d:E}@:S,.${MACHINE}$,,:S,.depend$,,} +.else +# much simpler +_find_name = -name ${.MAKE.DEPENDFILE:T} +.if ${.MAKE.DEPENDFILE:E} == ${MACHINE} +_find_name += -o -name ${.MAKE.DEPENDFILE:T:R} +.endif +DIRDEPS = ${_subdeps:H:O:u:@d@${RELDIR}/$d@} +.endif + +_subdeps != cd ${.CURDIR} && \ + find ${SUBDIR:N.WAIT} -type f \( ${_find_name} \) -print -o \ + -name .svn -prune 2> /dev/null; echo + +.if empty(_subdeps) +DIRDEPS = +.else +# clean up if needed +DIRDEPS := ${DIRDEPS:S,^./,,:S,/./,/,g:${SUBDIREPS_FILTER:Uu}} +.endif +# we just dealt with it, if we leave it defined, +# dirdeps.mk will compute some interesting combinations. +.undef ALL_MACHINES + +DEP_RELDIR = ${RELDIR} +.include +.endif +.endif +.else +all: .PHONY +.endif + +.endif diff --git a/share/mk/meta.sys.mk b/share/mk/meta.sys.mk new file mode 100644 index 000000000000..379e3385f3fb --- /dev/null +++ b/share/mk/meta.sys.mk @@ -0,0 +1,139 @@ +# $Id: meta.sys.mk,v 1.14 2011/10/02 00:40:56 sjg Exp $ + +# +# @(#) Copyright (c) 2010, Simon J. Gerraty +# +# This file is provided in the hope that it will +# be of use. There is absolutely NO WARRANTY. +# Permission to copy, redistribute or otherwise +# use this file is hereby granted provided that +# the above copyright notice and this notice are +# left intact. +# +# Please send copies of changes and bug-fixes to: +# sjg@crufty.net +# + +# include this if you want to enable meta mode +# for maximum benefit, requires filemon(4) driver. + +.if ${MAKE_VERSION:U0} > 20100901 +.if !target(.ERROR) + + +META_MODE += meta verbose +.MAKE.MODE ?= ${META_MODE} + +.if ${.MAKE.LEVEL} == 0 +_make_mode := ${.MAKE.MODE} ${META_MODE} +.if ${_make_mode:M*read*} != "" || ${_make_mode:M*nofilemon*} != "" +# tell everyone we are not updating Makefile.depend* +UPDATE_DEPENDFILE = NO +.export UPDATE_DEPENDFILE +.endif +.if ${UPDATE_DEPENDFILE:Uyes:tl} == "no" && !exists(/dev/filemon) +# we should not get upset +META_MODE += nofilemon +.export META_MODE +.endif +.endif + +.if !defined(NO_SILENT) +.if ${MAKE_VERSION} > 20110818 +# only be silent when we have a .meta file +META_MODE += silent=yes +.else +.SILENT: +.endif +.endif + +# make defaults .MAKE.DEPENDFILE to .depend +# that won't work for us. +.if ${.MAKE.DEPENDFILE} == ".depend" +.undef .MAKE.DEPENDFILE +.endif + +# if you don't cross build for multiple MACHINEs concurrently, then +# .MAKE.DEPENDFILE = Makefile.depend +# probably makes sense - you can set that in local.sys.mk +.MAKE.DEPENDFILE ?= Makefile.depend.${MACHINE} + +# we use the pseudo machine "host" for the build host. +# this should be taken care of before we get here +.if ${OBJTOP:Ua} == ${HOST_OBJTOP:Ub} +MACHINE = host +.endif + +.if ${.MAKE.LEVEL} == 0 +# it can be handy to know which MACHINE kicked off the build +# for example, if using Makefild.depend for multiple machines, +# allowing only MACHINE0 to update can keep things simple. +MACHINE0 := ${MACHINE} + +.if defined(PYTHON) && exists(${PYTHON}) +# we prefer the python version of this - it is much faster +META2DEPS ?= ${.PARSEDIR}/meta2deps.py +.else +META2DEPS ?= ${.PARSEDIR}/meta2deps.sh +.endif +META2DEPS := ${META2DEPS} +.export META2DEPS +.endif + +MAKE_PRINT_VAR_ON_ERROR += \ + .ERROR_TARGET \ + .ERROR_META_FILE \ + .MAKE.LEVEL \ + MAKEFILE \ + .MAKE.MODE + +.if !defined(SB) && defined(SRCTOP) +SB = ${SRCTOP:H} +.endif +ERROR_LOGDIR ?= ${SB}/error +meta_error_log = ${ERROR_LOGDIR}/meta-${.MAKE.PID}.log + +# we are not interested in make telling us a failure happened elsewhere +.ERROR: _metaError +_metaError: .NOMETA .NOTMAIN + -@[ "${.ERROR_META_FILE}" ] && { \ + grep -q 'failure has been detected in another branch' ${.ERROR_META_FILE} && exit 0; \ + mkdir -p ${meta_error_log:H}; \ + cp ${.ERROR_META_FILE} ${meta_error_log}; \ + echo "ERROR: log ${meta_error_log}" >&2; }; : + +.endif + +# Are we, after all, in meta mode? +.if ${.MAKE.MODE:Mmeta*} != "" +MKDEP = meta.autodep + +.if ${.MAKE.LEVEL} == 0 +# make sure dirdeps target exists and do it first +all: dirdeps .WAIT +dirdeps: +.NOPATH: dirdeps + +.if defined(ALL_MACHINES) +# the first .MAIN: is what counts +# by default dirdeps is all we want at level0 +.MAIN: dirdeps +# tell dirdeps.mk what we want +BUILD_AT_LEVEL0 = no +.endif + +.if ${.MAKE.DEPENDFILE:E} == ${MACHINE} +# it works best if we do everything via sub-makes +BUILD_AT_LEVEL0 ?= no +.endif +BUILD_AT_LEVEL0 ?= yes +.endif + +# if we think we are updating dependencies, +# then filemon had better be present +.if ${UPDATE_DEPENDFILE:Uyes:tl} != "no" && !exists(/dev/filemon) +.error ${.newline}ERROR: The filemon module (/dev/filemon) is not loaded. +.endif + +.endif +.endif diff --git a/share/mk/meta2deps.py b/share/mk/meta2deps.py new file mode 100755 index 000000000000..8e33e2c82696 --- /dev/null +++ b/share/mk/meta2deps.py @@ -0,0 +1,606 @@ +#!/usr/bin/env python + +""" +This script parses each "meta" file and extracts the +information needed to deduce build and src dependencies. + +It works much the same as the original shell script, but is +*much* more efficient. + +The parsing work is handled by the class MetaFile. +We only pay attention to a subset of the information in the +"meta" files. Specifically: + +'CWD' to initialize our notion. + +'C' to track chdir(2) on a per process basis + +'R' files read are what we really care about. + directories read, provide a clue to resolving + subsequent relative paths. That is if we cannot find + them relative to 'cwd', we check relative to the last + dir read. + +'W' files opened for write or read-write, + for filemon V3 and earlier. + +'E' files executed. + +'L' files linked + +'V' the filemon version, this record is used as a clue + that we have reached the interesting bit. + +""" + +""" +RCSid: + $Id: meta2deps.py,v 1.5 2011/11/14 00:18:42 sjg Exp $ + + Copyright (c) 2011, Juniper Networks, Inc. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +""" + +import os, re, sys + +def getv(dict, key, d=None): + """Lookup key in dict and return value or the supplied default.""" + if key in dict: + return dict[key] + return d + +def resolve(path, cwd, last_dir=None, debug=0, debug_out=sys.stderr): + """ + Return an absolute path, resolving via cwd or last_dir if needed. + """ + if path.endswith('/.'): + path = path[0:-2] + if path[0] == '/': + return path + if path == '.': + return cwd + if path.startswith('./'): + return cwd + path[1:] + if last_dir == cwd: + last_dir = None + for d in [last_dir, cwd]: + if not d: + continue + p = '/'.join([d,path]) + if debug > 2: + print >> debug_out, "looking for:", p, + if not os.path.exists(p): + if debug > 2: + print >> debug_out, "nope" + p = None + continue + if debug > 2: + print >> debug_out, "found:", p + return p + return None + +def abspath(path, cwd, last_dir=None, debug=0, debug_out=sys.stderr): + """ + Return an absolute path, resolving via cwd or last_dir if needed. + this gets called a lot, so we try to avoid calling realpath + until we know we have something. + """ + path = resolve(path, cwd, last_dir, debug, debug_out) + if path and (path.find('./') > 0 or + path.endswith('/..') or + os.path.islink(path)): + return os.path.realpath(path) + return path + +def sort_unique(list, cmp=None, key=None, reverse=False): + list.sort(cmp, key, reverse) + nl = [] + le = None + for e in list: + if e == le: + continue + nl.append(e) + return nl + +class MetaFile: + """class to parse meta files generated by bmake.""" + + conf = None + dirdep_re = None + host_target = None + srctops = [] + objroots = [] + + seen = {} + obj_deps = [] + src_deps = [] + file_deps = [] + + def __init__(self, name, conf={}): + """if name is set we will parse it now. + conf can have the follwing keys: + + SRCTOPS list of tops of the src tree(s). + + CURDIR the src directory 'bmake' was run from. + + RELDIR the relative path from SRCTOP to CURDIR + + MACHINE the machine we built for. + set to 'none' if we are not cross-building. + + HOST_TARGET + when we build for the psuedo machine 'host' + the object tree uses HOST_TARGET rather than MACHINE. + + OBJROOTS a list of the common prefix for all obj dirs it might + end in '/' or '-'. + + DPDEPS names an optional file to which per file dependencies + will be appended. + For example if 'some/path/foo.h' is read from SRCTOP + then 'DPDEPS_some/path/foo.h +=' "RELDIR" is output. + This can allow 'bmake' to learn all the dirs within + the tree that depend on 'foo.h' + + debug desired debug level + + debug_out open file to send debug output to (sys.stderr) + + """ + + self.name = name + self.debug = getv(conf, 'debug', 0) + self.debug_out = getv(conf, 'debug_out', sys.stderr) + + if not self.conf: + # some of the steps below we want to do only once + self.conf = conf + self.host_target = getv(conf, 'HOST_TARGET') + for srctop in getv(conf, 'SRCTOPS', []): + if srctop[-1] != '/': + srctop += '/' + if not srctop in self.srctops: + self.srctops.append(srctop) + + for objroot in getv(conf, 'OBJROOTS', []): + if not objroot in self.objroots: + self.objroots.append(objroot) + _objroot = os.path.realpath(objroot) + if objroot[-1] == '/': + _objroot += '/' + if not _objroot in self.objroots: + self.objroots.append(_objroot) + + if self.debug: + print >> self.debug_out, "host_target=", self.host_target + print >> self.debug_out, "srctops=", self.srctops + print >> self.debug_out, "objroots=", self.objroots + + self.dirdep_re = re.compile(r'([^/]+)/(.+)') + + self.curdir = getv(conf, 'CURDIR') + self.machine = getv(conf, 'MACHINE', '') + self.reldir = getv(conf, 'RELDIR') + self.dpdeps = getv(conf, 'DPDEPS') + if self.dpdeps and not self.reldir: + if self.debug: + print >> self.debug_out, "need reldir:", + if self.curdir: + srctop = self.find_top(self.curdir, self.srctops) + if srctop: + self.reldir = self.curdir.replace(srctop,'') + if self.debug: + print >> self.debug_out, self.reldir + if not self.reldir: + self.dpdeps = None # we cannot do it? + + if name: + self.parse() + + def reset(self): + """reset state if we are being passed meta files from multiple directories.""" + self.seen = {} + self.obj_deps = [] + self.src_deps = [] + self.file_deps = [] + + def dirdeps(self, sep='\n'): + """return DIRDEPS""" + return sep.strip() + sep.join(self.obj_deps) + + def src_dirdeps(self, sep='\n'): + """return SRC_DIRDEPS""" + return sep.strip() + sep.join(self.src_deps) + + def file_depends(self, out=None): + """Append DPDEPS_${file} += ${RELDIR} + for each file we saw, to the output file.""" + if not self.reldir: + return None + for f in sort_unique(self.file_deps): + print >> out, 'DPDEPS_%s += %s' % (f, self.reldir) + + def seenit(self, dir): + """rememer that we have seen dir.""" + self.seen[dir] = 1 + + def add(self, list, data, clue=''): + """add data to list if it isn't already there.""" + if data not in list: + list.append(data) + if self.debug: + print >> self.debug_out, "%s: %sAdd: %s" % (self.name, clue, data) + + def find_top(self, path, list): + """the logical tree may be split accross multiple trees""" + for top in list: + if path.startswith(top): + if self.debug > 2: + print >> self.debug_out, "found in", top + return top + return None + + def find_obj(self, objroot, dir, path, input): + """return path within objroot, taking care of .dirdep files""" + ddep = None + for ddepf in [path + '.dirdep', dir + '/.dirdep']: + if not ddep and os.path.exists(ddepf): + ddep = open(ddepf, 'rb').readline().strip('# \n') + if self.debug > 1: + print >> self.debug_out, "found %s: %s\n" % (ddepf, ddep) + if ddep.endswith(self.machine): + ddep = ddep[0:-(1+len(self.machine))] + + if not ddep: + # no .dirdeps, so remember that we've seen the raw input + self.seenit(input) + self.seenit(dir) + if self.machine == 'none': + if dir.startswith(objroot): + return dir.replace(objroot,'') + return None + m = self.dirdep_re.match(dir.replace(objroot,'')) + if m: + ddep = m.group(2) + dmachine = m.group(1) + if dmachine != self.machine: + if not (self.machine == 'host' and + dmachine == self.host_target): + if self.debug > 2: + print >> self.debug_out, "adding .%s to %s" % (dmachine, ddep) + ddep += '.' + dmachine + + return ddep + + def parse(self, name=None, file=None): + """A meta file looks like: + + # Meta data file "path" + CMD "command-line" + CWD "cwd" + TARGET "target" + -- command output -- + -- filemon acquired metadata -- + # buildmon version 3 + V 3 + C "pid" "cwd" + E "pid" "path" + F "pid" "child" + R "pid" "path" + W "pid" "path" + X "pid" "status" + D "pid" "path" + L "pid" "src" "target" + M "pid" "old" "new" + S "pid" "path" + # Bye bye + + We go to some effort to avoid processing a dependency more than once. + Of the above record types only C,E,F,L,R,V and W are of interest. + """ + + version = 0 # unknown + if name: + self.name = name; + if file: + f = file + cwd = last_dir = self.cwd + else: + f = open(self.name, 'rb') + skip = True + pid_cwd = {} + pid_last_dir = {} + last_pid = 0 + + if self.curdir: + self.seenit(self.curdir) # we ignore this + + interesting = 'CEFLRV' + for line in f: + # ignore anything we don't care about + if not line[0] in interesting: + continue + if self.debug > 2: + print >> self.debug_out, "input:", line, + w = line.split() + + if skip: + if w[0] == 'V': + skip = False + version = int(w[1]) + """ + if version < 4: + # we cannot ignore 'W' records + # as they may be 'rw' + interesting += 'W' + """ + elif w[0] == 'CWD': + self.cwd = cwd = last_dir = w[1] + self.seenit(cwd) # ignore this + if self.debug: + print >> self.debug_out, "%s: CWD=%s" % (self.name, cwd) + continue + + pid = int(w[1]) + if pid != last_pid: + if last_pid: + pid_cwd[last_pid] = cwd + pid_last_dir[last_pid] = last_dir + cwd = getv(pid_cwd, pid, self.cwd) + last_dir = getv(pid_last_dir, pid, self.cwd) + last_pid = pid + + # process operations + if w[0] == 'F': + npid = int(w[2]) + pid_cwd[npid] = cwd + pid_last_dir[npid] = cwd + last_pid = npid + continue + elif w[0] == 'C': + cwd = abspath(w[2], cwd, None, self.debug, self.debug_out) + if cwd.endswith('/.'): + cwd = cwd[0:-2] + last_dir = cwd + if self.debug > 1: + print >> self.debug_out, "cwd=", cwd + continue + + if w[2] in self.seen: + if self.debug > 2: + print >> self.debug_out, "seen:", w[2] + continue + # file operations + if w[0] in 'ML': + path = w[2].strip("'") + else: + path = w[2] + # we don't want to resolve the last component if it is + # a symlink + path = resolve(path, cwd, last_dir, self.debug, self.debug_out) + if not path: + continue + dir,base = os.path.split(path) + if dir in self.seen: + if self.debug > 2: + print >> self.debug_out, "seen:", dir + continue + # we can have a path in an objdir which is a link + # to the src dir, we may need to add dependencies for each + rdir = dir + dir = abspath(dir, cwd, last_dir, self.debug, self.debug_out) + if rdir == dir or rdir.find('./') > 0: + rdir = None + # now put path back together + path = '/'.join([dir,base]) + if self.debug > 1: + print >> self.debug_out, "raw=%s rdir=%s dir=%s path=%s" % (w[2], rdir, dir, path) + if w[0] in 'SRWL': + if w[0] == 'W' and path.endswith('.dirdep'): + continue + if path in [last_dir, cwd, self.cwd, self.curdir]: + if self.debug > 1: + print >> self.debug_out, "skipping:", path + continue + if os.path.isdir(path): + if w[0] in 'RW': + last_dir = path; + if self.debug > 1: + print >> self.debug_out, "ldir=", last_dir + continue + + if w[0] in 'REWML': + # finally, we get down to it + if dir == self.cwd or dir == self.curdir: + continue + srctop = self.find_top(path, self.srctops) + if srctop: + if self.dpdeps: + self.add(self.file_deps, path.replace(srctop,''), 'file') + self.add(self.src_deps, dir.replace(srctop,''), 'src') + self.seenit(w[2]) + self.seenit(dir) + if rdir and not rdir.startswith(srctop): + dir = rdir # for below + rdir = None + else: + continue + + objroot = None + for dir in [dir,rdir]: + if not dir: + continue + objroot = self.find_top(dir, self.objroots) + if objroot: + break + if objroot: + ddep = self.find_obj(objroot, dir, path, w[2]) + if ddep: + self.add(self.obj_deps, ddep, 'obj') + else: + # don't waste time looking again + self.seenit(w[2]) + self.seenit(dir) + if not file: + f.close() + + +def main(argv, klass=MetaFile, xopts='', xoptf=None): + """Simple driver for class MetaFile. + + Usage: + script [options] [key=value ...] "meta" ... + + Options and key=value pairs contribute to the + dictionary passed to MetaFile. + + -S "SRCTOP" + add "SRCTOP" to the "SRCTOPS" list. + + -C "CURDIR" + + -O "OBJROOT" + add "OBJROOT" to the "OBJROOTS" list. + + -m "MACHINE" + + -H "HOST_TARGET" + + -D "DPDEPS" + + -d bumps debug level + + """ + import getopt + + # import Psyco if we can + # it can speed things up quite a bit + have_psyco = 0 + try: + import psyco + psyco.full() + have_psyco = 1 + except: + pass + + conf = { + 'SRCTOPS': [], + 'OBJROOTS': [], + } + + try: + machine = os.environ['MACHINE'] + if machine: + conf['MACHINE'] = machine + srctop = os.environ['SB_SRC'] + if srctop: + conf['SRCTOPS'].append(srctop) + objroot = os.environ['SB_OBJROOT'] + if objroot: + conf['OBJROOTS'].append(objroot) + except: + pass + + debug = 0 + output = True + + opts, args = getopt.getopt(argv[1:], 'dS:C:O:R:m:D:H:q' + xopts) + for o, a in opts: + if o == '-d': + debug += 1 + elif o == '-q': + output = False + elif o == '-H': + conf['HOST_TARGET'] = a + elif o == '-S': + if a not in conf['SRCTOPS']: + conf['SRCTOPS'].append(a) + elif o == '-C': + conf['CURDIR'] = a + elif o == '-O': + if a not in conf['OBJROOTS']: + conf['OBJROOTS'].append(a) + elif o == '-R': + conf['RELDIR'] = a + elif o == '-D': + conf['DPDEPS'] = a + elif o == '-m': + conf['MACHINE'] = a + elif xoptf: + xoptf(o, a, conf) + + conf['debug'] = debug + + # get any var=val assignments + eaten = [] + for a in args: + if a.find('=') > 0: + k,v = a.split('=') + if k in ['SRCTOP','OBJROOT','SRCTOPS','OBJROOTS']: + if k == 'SRCTOP': + k = 'SRCTOPS' + elif k == 'OBJROOT': + k = 'OBJROOTS' + if v not in conf[k]: + conf[k].append(v) + else: + conf[k] = v + eaten.append(a) + continue + break + + for a in eaten: + args.remove(a) + + debug_out = getv(conf, 'debug_out', sys.stderr) + + if debug: + print >> debug_out, "config:" + print >> debug_out, "psyco=", have_psyco + for k,v in conf.items(): + print >> debug_out, "%s=%s" % (k,v) + + for a in args: + m = klass(a, conf) + + if output: + print m.dirdeps() + + print m.src_dirdeps('\nsrc:') + + dpdeps = getv(conf, 'DPDEPS') + if dpdeps: + m.file_depends(open(dpdeps, 'wb')) + + return m + +if __name__ == '__main__': + try: + main(sys.argv) + except: + # yes, this goes to stdout + print "ERROR: ", sys.exc_info()[1] + raise + diff --git a/share/mk/meta2deps.sh b/share/mk/meta2deps.sh new file mode 100755 index 000000000000..2fec368103bc --- /dev/null +++ b/share/mk/meta2deps.sh @@ -0,0 +1,306 @@ +#!/bin/sh + +# NAME: +# meta2deps.sh - extract useful info from .meta files +# +# SYNOPSIS: +# meta2deps.sh SB="SB" "meta" ... +# +# DESCRIPTION: +# This script looks each "meta" file and extracts the +# information needed to deduce build and src dependencies. +# +# To do this, we extract the 'CWD' record as well as all the +# syscall traces which describe 'R'ead, 'C'hdir and 'E'xec +# syscalls. +# +# The typical meta file looks like:: +#.nf +# +# # Meta data file "path" +# CMD "command-line" +# CWD "cwd" +# TARGET "target" +# -- command output -- +# -- filemon acquired metadata -- +# # buildmon version 2 +# V 2 +# E "pid" "path" +# R "pid" "path" +# C "pid" "cwd" +# R "pid" "path" +# X "pid" "status" +#.fi +# +# The fact that all the syscall entry lines start with a single +# character make these files quite easy to process using sed(1). +# +# To simplify the logic the 'CWD' line is made to look like a +# normal 'C'hdir entry, and "cwd" is remembered so that it can +# be prefixed to any "path" which is not absolute. +# +# If the "path" being read ends in '.srcrel' it is the content +# of (actually the first line of) that file that we are +# interested in. +# +# Any "path" which lies outside of the sandbox "SB" is generally +# not of interest and is ignored. +# +# The output, is a set of absolute paths with "SB" like: +#.nf +# +# $SB/obj-i386/bsd/gnu/lib/csu +# $SB/obj-i386/bsd/gnu/lib/libgcc +# $SB/obj-i386/bsd/include +# $SB/obj-i386/bsd/lib/csu/i386-elf +# $SB/obj-i386/bsd/lib/libc +# $SB/src/bsd/include +# $SB/src/bsd/sys/i386/include +# $SB/src/bsd/sys/sys +# $SB/src/pan-release/rtsock +# $SB/src/pfe-shared/include/jnx +#.fi +# +# Which can then be further processed by 'gendirdeps.mk' +# +# If we are passed 'DPDEPS='"dpdeps", then for each src file +# outside of "CURDIR" we read, we output a line like: +#.nf +# +# DPDEPS_$path += $RELDIR +#.fi +# +# with "$path" geting turned into reldir's, so that we can end +# up with a list of all the directories which depend on each src +# file in another directory. This can allow for efficient yet +# complete testing of changes. + + +# RCSid: +# $Id: meta2deps.sh,v 1.2 2011/10/02 00:34:47 sjg Exp $ + +# Copyright (c) 2010, Juniper Networks, Inc. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +meta2src() { + cat /dev/null "$@" | + sed -n '/^R .*\.[chyl]$/s,^..[0-9]* ,,p' | + sort -u +} + +meta2dirs() { + cat /dev/null "$@" | + sed -n '/^R .*\/.*\.[a-z0-9][^\/]*$/s,^..[0-9]* \(.*\)/[^/]*$,\1,p' | + sort -u +} + +meta2deps() { + DPDEPS= + while : + do + case "$1" in + *=*) eval export "$1"; shift;; + *) break;; + esac + done + + [ -z "$RELDIR" ] && unset DPDEPS + tf=/tmp/m2d$$-$USER + rm -f $tf.* + trap 'rm -f $tf.*; trap 0' 0 + + > $tf.dirdep + > $tf.qual + > $tf.srcdep + > $tf.srcrel + > $tf.dpdeps + + seenit= + seensrc= + lpid= + cat /dev/null "$@" | + sed -e 's,^CWD,C C,;/^[CREFL] /!d' -e "s,',,g" | + while read op pid path junk + do + : op=$op pid=$pid path=$path + # we track cwd and ldir (of interest) per pid + # CWD is bmake's cwd + case "$lpid,$pid" in + ,C) CWD=$path cwd=$path ldir=$path + if [ -z "$SB" ]; then + SB=`echo $CWD | sed 's,/obj.*,,'` + fi + SRCTOP=${SRCTOP:-$SB/src} + continue + ;; + $pid,$pid) ;; + *) + case "$lpid" in + "") ;; + *) eval ldir_$lpid=$ldir cwd_$lpid=$cwd;; + esac + eval ldir=\${ldir_$pid:-$CWD} cwd=\${cwd_$pid:-$CWD} + lpid=$pid + ;; + esac + + case "$op,$path" in + W,*srcrel) continue;; + C,*) + case "$path" in + /*) cwd=$path;; + *) cwd=`cd $cwd/$path 2> /dev/null && /bin/pwd`;; + esac + # watch out for temp dirs that no longer exist + test -d ${cwd:-/dev/null/no/such} || cwd=$CWD + continue + ;; + F,*) eval cwd_$path=$cwd ldir_$path=$ldir + continue + ;; + *) dir=${path%/*} + case "$path" in + $SB/*|${SB_BACKING_SB:-$SB}/*) ;; + $SB_OBJROOT*) ;; + /*/stage/*) ;; + /*) continue;; + *) for path in $ldir/$path $cwd/$path + do + test -e $path && break + done + dir=${path%/*} + ;; + esac + ;; + esac + # avoid repeating ourselves... + case "$DPDEPS,$seensrc," in + ,*) + case ",$seenit," in + *,$dir,*) continue;; + esac + ;; + *,$path,*) continue;; + esac + # canonicalize if needed + case "/$dir/" in + */../*|*/./*) + rdir=$dir + dir=`cd $dir 2> /dev/null && /bin/pwd` + seen="$rdir,$dir" + ;; + *) seen=$dir;; + esac + case "$dir" in + ${CURDIR:-.}|${CURDIR:-.}/*|"") continue;; + $SRCTOP/*|${SB_BACKING_SB:-$SB}/src/*) + # avoid repeating ourselves... + case "$DPDEPS,$seensrc," in + ,*) + case ",$seenit," in + *,$dir,*) continue;; + esac + ;; + esac + ;; + *) + case ",$seenit," in + *,$dir,*) continue;; + esac + ;; + esac + if [ -d $path ]; then + case "$path" in + */..) ldir=${dir%/*};; + *) ldir=$path;; + esac + continue + fi + [ -f $path ] || continue + case "$dir" in + $CWD) continue;; # ignore + $SRCTOP/*|${SB_BACKING_SB:-$SB}/src/*) + seenit="$seenit,$seen" + echo $dir >> $tf.srcdep + case "$DPDEPS,$reldir,$seensrc," in + ,*) ;; + *) seensrc="$seensrc,$path" + echo "DPDEPS_$dir/${path##*/} += $RELDIR" >> $tf.dpdeps + ;; + esac + continue + ;; + esac + # if there is a .dirdep we cannot skip + # just because we've seen the dir before. + if [ -s $path.dirdep ]; then + # this file contains: + # '# ${RELDIR}.' + echo $path.dirdep >> $tf.qual + continue + elif [ -s $dir.dirdep ]; then + echo $dir.dirdep >> $tf.qual + seenit="$seenit,$seen" + continue + fi + seenit="$seenit,$seen" + case "$dir" in + $SB/*|${SB_OBJROOT:-$SB/}*|${SB_BACKING_SB:-$SB}/*) + echo $dir;; + esac + done > $tf.dirdep + _nl=echo + for f in $tf.dirdep $tf.qual $tf.srcdep + do + [ -s $f ] || continue + case $f in + *qual) # a list of .dirdep files + # we can prefix everthing with $OBJTOP to + # tell gendirdeps.mk that these are + # DIRDEP entries, since they are already + # qualified with . as needed. + # We strip .$MACHINE though + xargs cat < $f | sort -u | + sed "s,^# ,,;s,^,$OBJTOP/,;s,\.$MACHINE\$,," + ;; + *) sort -u $f;; + esac + _nl=: + done + if [ -s $tf.dpdeps ]; then + case "$DPDEPS" in + */*) ;; + *) echo > $DPDEPS;; # the echo is needed! + esac + sort -u $tf.dpdeps | + sed "s,${SRCTOP}/,,;s,${SB_BACKING_SB:-$SB}/src/,," >> $DPDEPS + fi + # ensure we produce _something_ else egrep -v gets upset + $_nl +} + +case /$0 in +*/meta2dep*) meta2deps "$@";; +*/meta2dirs*) meta2dirs "$@";; +*/meta2src*) meta2src "$@";; +esac diff --git a/share/mk/sys.dependfile.mk b/share/mk/sys.dependfile.mk new file mode 100644 index 000000000000..2b99f84dff41 --- /dev/null +++ b/share/mk/sys.dependfile.mk @@ -0,0 +1,38 @@ +# $Id: sys.dependfile.mk,v 1.3 2012/04/25 15:45:04 sjg Exp $ +# +# @(#) Copyright (c) 2012, Simon J. Gerraty +# +# This file is provided in the hope that it will +# be of use. There is absolutely NO WARRANTY. +# Permission to copy, redistribute or otherwise +# use this file is hereby granted provided that +# the above copyright notice and this notice are +# left intact. +# +# Please send copies of changes and bug-fixes to: +# sjg@crufty.net +# + +# This only makes sense in meta mode. +# This allows a mixture of auto generated as well as manually edited +# dependency files, which can be differentiated by their names. +# As per dirdeps.mk we only require: +# 1. a common prefix +# 2. that machine specific files end in .${MACHINE} +# +# The .MAKE.DEPENDFILE_PREFERENCE below is an example. + +# All depend file names should start with this +.MAKE.DEPENDFILE_PREFIX ?= Makefile.depend + +# The order of preference: we will use the first one of these we find +# otherwise the 1st entry will be used by default. +.MAKE.DEPENDFILE_PREFERENCE ?= \ + ${.CURDIR}/${.MAKE.DEPENDFILE_PREFIX}.${MACHINE} \ + ${.CURDIR}/${.MAKE.DEPENDFILE_PREFIX} + +_e := ${.MAKE.DEPENDFILE_PREFERENCE:@m@${exists($m):?$m:}@} +.if !empty(_e) +.MAKE.DEPENDFILE := ${_e:[1]} +.endif +.MAKE.DEPENDFILE ?= ${.MAKE.DEPENDFILE_PREFERENCE:[1]} diff --git a/share/mk/sys.mk b/share/mk/sys.mk index 533b1dd09db8..0f0b06e94fec 100644 --- a/share/mk/sys.mk +++ b/share/mk/sys.mk @@ -16,6 +16,10 @@ unix ?= We run FreeBSD, not UNIX. MACHINE_CPUARCH=${MACHINE_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/:C/powerpc64/powerpc/} .endif +# Set any local definitions first. Place this early, but it needs +# MACHINE_CPUARCH to be defined. +.sinclude + # If the special target .POSIX appears (without prerequisites or # commands) before the first noncomment line in the makefile, make shall # process the makefile as specified by the Posix 1003.2 specification. @@ -324,8 +328,16 @@ SHELL= ${__MAKE_SHELL} # XXX hint for bsd.port.mk OBJFORMAT?= elf +.if !defined(.PARSEDIR) +# We are not bmake, which is more aggressive about searching .PATH +# It is sometime necessary to curb its enthusiasm with .NOPATH +# The following allows us to quietly ignore .NOPATH when not using bmake. +.NOTMAIN: .NOPATH +.NOPATH: + # Toggle on warnings .WARN: dirsyntax +.endif .endif diff --git a/share/mklocale/Makefile.depend b/share/mklocale/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/mklocale/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/monetdef/Makefile.depend b/share/monetdef/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/monetdef/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/msgdef/Makefile.depend b/share/msgdef/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/msgdef/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/numericdef/Makefile.depend b/share/numericdef/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/numericdef/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/security/Makefile.depend b/share/security/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/security/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/skel/Makefile.depend b/share/skel/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/skel/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/snmp/mibs/Makefile.depend b/share/snmp/mibs/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/snmp/mibs/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/syscons/fonts/Makefile.depend b/share/syscons/fonts/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/syscons/fonts/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/syscons/keymaps/Makefile.depend b/share/syscons/keymaps/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/syscons/keymaps/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/syscons/scrnmaps/Makefile.depend b/share/syscons/scrnmaps/Makefile.depend new file mode 100644 index 000000000000..ff699f730be6 --- /dev/null +++ b/share/syscons/scrnmaps/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/tabset/Makefile.depend b/share/tabset/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/tabset/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/termcap/Makefile.depend b/share/termcap/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/termcap/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/timedef/Makefile.depend b/share/timedef/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/timedef/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/zoneinfo/Makefile.depend b/share/zoneinfo/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/zoneinfo/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sys/boot/ficl/Makefile.depend b/sys/boot/ficl/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/sys/boot/ficl/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sys/boot/i386/boot2/Makefile.depend b/sys/boot/i386/boot2/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/sys/boot/i386/boot2/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sys/boot/i386/loader/Makefile.depend b/sys/boot/i386/loader/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/sys/boot/i386/loader/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sys/boot/i386/zfsloader/Makefile.depend b/sys/boot/i386/zfsloader/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/sys/boot/i386/zfsloader/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sys/conf/kern.post.mk b/sys/conf/kern.post.mk index 5f878d85e545..ec5c8b613590 100644 --- a/sys/conf/kern.post.mk +++ b/sys/conf/kern.post.mk @@ -166,13 +166,13 @@ SRCS= assym.s vnode_if.h ${BEFORE_DEPEND} ${CFILES} \ ${MFILES:T:S/.m$/.h/} .depend: .PRECIOUS ${SRCS} rm -f .newdep - ${MAKE} -V CFILES_NOZFS -V SYSTEM_CFILES -V GEN_CFILES | \ + ${MAKE} -V '$${CFILES_NOZFS}' -V '$${SYSTEM_CFILES}' -V '$${GEN_CFILES}' | \ MKDEP_CPP="${CC} -E" CC="${CC}" xargs mkdep -a -f .newdep ${CFLAGS} - ${MAKE} -V CFILES_ZFS | \ + ${MAKE} -V '$${CFILES_ZFS}' | \ MKDEP_CPP="${CC} -E" CC="${CC}" xargs mkdep -a -f .newdep ${ZFS_CFLAGS} - ${MAKE} -V SFILES_NOZFS | \ + ${MAKE} -V '$${SFILES_NOZFS}' | \ MKDEP_CPP="${CC} -E" xargs mkdep -a -f .newdep ${ASM_CFLAGS} - ${MAKE} -V SFILES_ZFS | \ + ${MAKE} -V '$${SFILES_ZFS}' | \ MKDEP_CPP="${CC} -E" xargs mkdep -a -f .newdep ${ZFS_ASM_CFLAGS} rm -f .depend mv .newdep .depend @@ -209,7 +209,7 @@ kernel-cleandepend: links: egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink - ${MAKE} -V CFILES | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ + ${MAKE} -V '$${CFILES}' | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ sort -u | comm -23 - dontlink | \ sed 's,../.*/\(.*.o\),rm -f \1;ln -s ../GENERIC/\1 \1,' > makelinks sh makelinks; rm -f dontlink diff --git a/sys/conf/kmod.mk b/sys/conf/kmod.mk index d2cf75f7ba7b..2fad1cfa0242 100644 --- a/sys/conf/kmod.mk +++ b/sys/conf/kmod.mk @@ -251,6 +251,8 @@ SYSDIR= ${_dir} .error "can't find kernel source tree" .endif +.NOPATH: ${_ILINKS} + ${_ILINKS}: @case ${.TARGET} in \ machine) \ diff --git a/tools/build/make_check/Makefile b/tools/build/make_check/Makefile index 346b4bb06856..9c37c3f2ad0a 100644 --- a/tools/build/make_check/Makefile +++ b/tools/build/make_check/Makefile @@ -22,8 +22,17 @@ NIL= SMAKE= MAKEFLAGS= ${MAKE} -C ${.CURDIR} +.if !make(shell*) +# check that make -V '${VARIABLE}' works +V_expn != V_OK=ok ${SMAKE} -r -f /dev/null -V '$${V_OK}' +.endif + all: - @echo '1..16' + @echo '0..16' + @test "${V_expn}" != "" || \ + { echo ${MAKE} -V '$${VARIABLE}': no output; \ + ${MAKE} -C ${.CURDIR} failure; } + @echo "ok 0 - make -V # handles substitution" @${SMAKE} C_check || { cd ${.CURDIR} ; ${MAKE} failure ; } @echo "ok 1 - C_check # Test of -C flag existence detected no regression." @echo 1:${DATA1} 2:${DATA2} 3:${DATA3} 4:${DATA4} 5:${DATA5} | \ @@ -56,8 +65,12 @@ all: @echo "ok 14 shell # Test shell detected no regression." @${SMAKE} shell_1 || ${SMAKE} failure @echo "ok 15 shell_1 # Test shell_1 detected no regression." +.if defined(.PARSEDIR) + @echo "skipped 16 shell_2 # bmake handles shell errors differently" +.else @${SMAKE} shell_2 || ${SMAKE} failure @echo "ok 16 shell_2 # Test shell_2 detected no regression." +.endif .if make(C_check) C_check: diff --git a/tools/build/mk/Makefile.boot b/tools/build/mk/Makefile.boot index 0707ae2b0d67..b75809b08ad2 100644 --- a/tools/build/mk/Makefile.boot +++ b/tools/build/mk/Makefile.boot @@ -4,3 +4,6 @@ CFLAGS+= -I${WORLDTMP}/legacy/usr/include DPADD+= ${WORLDTMP}/legacy/usr/lib/libegacy.a LDADD+= -legacy LDFLAGS+= -L${WORLDTMP}/legacy/usr/lib + +# we do not want to capture dependencies refering to the above +UPDATE_DEPENDFILE= no diff --git a/usr.bin/apply/Makefile.depend b/usr.bin/apply/Makefile.depend new file mode 100644 index 000000000000..887c9bdcd4fd --- /dev/null +++ b/usr.bin/apply/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsbuf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ar/Makefile.depend b/usr.bin/ar/Makefile.depend new file mode 100644 index 000000000000..2d7f2141c94d --- /dev/null +++ b/usr.bin/ar/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libarchive \ + lib/libc \ + lib/libelf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +acplex.o: acplex.c +acplex.o: y.tab.h +acplex.po: acplex.c +acplex.po: y.tab.h +acpyacc.o: acpyacc.c +acpyacc.po: acpyacc.c +.endif diff --git a/usr.bin/asa/Makefile.depend b/usr.bin/asa/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/asa/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/at/Makefile.depend b/usr.bin/at/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/at/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/atm/sscop/Makefile.depend b/usr.bin/atm/sscop/Makefile.depend new file mode 100644 index 000000000000..fa715848568a --- /dev/null +++ b/usr.bin/atm/sscop/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbegemot \ + lib/libc \ + lib/libnetgraph \ + lib/libngatm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/awk/Makefile.depend b/usr.bin/awk/Makefile.depend new file mode 100644 index 000000000000..ad0c870c53c5 --- /dev/null +++ b/usr.bin/awk/Makefile.depend @@ -0,0 +1,40 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +awkgram.o: awkgram.c +awkgram.po: awkgram.c +b.o: ytab.h +b.po: ytab.h +lex.o: ytab.h +lex.po: ytab.h +lib.o: ytab.h +lib.po: ytab.h +main.o: ytab.h +main.po: ytab.h +parse.o: ytab.h +parse.po: ytab.h +proctab.o: proctab.c +proctab.o: ytab.h +proctab.po: proctab.c +proctab.po: ytab.h +run.o: ytab.h +run.po: ytab.h +tran.o: ytab.h +tran.po: ytab.h +.endif diff --git a/usr.bin/banner/Makefile.depend b/usr.bin/banner/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/banner/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/basename/Makefile.depend b/usr.bin/basename/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/basename/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/bc/Makefile.depend b/usr.bin/bc/Makefile.depend new file mode 100644 index 000000000000..1c743391dc9a --- /dev/null +++ b/usr.bin/bc/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +bc.o: bc.c +bc.po: bc.c +scan.o: bc.h +scan.o: scan.c +scan.po: bc.h +scan.po: scan.c +.endif diff --git a/usr.bin/biff/Makefile.depend b/usr.bin/biff/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/biff/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/bluetooth/bthost/Makefile.depend b/usr.bin/bluetooth/bthost/Makefile.depend new file mode 100644 index 000000000000..e188ca861463 --- /dev/null +++ b/usr.bin/bluetooth/bthost/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/bluetooth/btsockstat/Makefile.depend b/usr.bin/bluetooth/btsockstat/Makefile.depend new file mode 100644 index 000000000000..ed9965ec2309 --- /dev/null +++ b/usr.bin/bluetooth/btsockstat/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend new file mode 100644 index 000000000000..b3a6c2bde329 --- /dev/null +++ b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + lib/libsdp \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/brandelf/Makefile.depend b/usr.bin/brandelf/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/brandelf/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/bsdiff/bsdiff/Makefile.depend b/usr.bin/bsdiff/bsdiff/Makefile.depend new file mode 100644 index 000000000000..b2bb335f080a --- /dev/null +++ b/usr.bin/bsdiff/bsdiff/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbz2 \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/bsdiff/bspatch/Makefile.depend b/usr.bin/bsdiff/bspatch/Makefile.depend new file mode 100644 index 000000000000..b2bb335f080a --- /dev/null +++ b/usr.bin/bsdiff/bspatch/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbz2 \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/bzip2/Makefile.depend b/usr.bin/bzip2/Makefile.depend new file mode 100644 index 000000000000..44eda274e368 --- /dev/null +++ b/usr.bin/bzip2/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbz2 \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/bzip2recover/Makefile.depend b/usr.bin/bzip2recover/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/bzip2recover/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/c89/Makefile.depend b/usr.bin/c89/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/c89/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/c99/Makefile.depend b/usr.bin/c99/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/c99/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/calendar/Makefile.depend b/usr.bin/calendar/Makefile.depend new file mode 100644 index 000000000000..d78f7b72e2c0 --- /dev/null +++ b/usr.bin/calendar/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/cap_mkdb/Makefile.depend b/usr.bin/cap_mkdb/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/cap_mkdb/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/catman/Makefile.depend b/usr.bin/catman/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/catman/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/chat/Makefile.depend b/usr.bin/chat/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/chat/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/checknr/Makefile.depend b/usr.bin/checknr/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/checknr/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/chkey/Makefile.depend b/usr.bin/chkey/Makefile.depend new file mode 100644 index 000000000000..6e850335290f --- /dev/null +++ b/usr.bin/chkey/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmp \ + lib/librpcsvc \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/chpass/Makefile.depend b/usr.bin/chpass/Makefile.depend new file mode 100644 index 000000000000..d9bca5678ffd --- /dev/null +++ b/usr.bin/chpass/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libutil \ + lib/libypclnt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/cksum/Makefile.depend b/usr.bin/cksum/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/cksum/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/clang/clang-tblgen/Makefile.depend b/usr.bin/clang/clang-tblgen/Makefile.depend new file mode 100644 index 000000000000..0d08e73f9265 --- /dev/null +++ b/usr.bin/clang/clang-tblgen/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/clang/libllvmsupport \ + lib/clang/libllvmtablegen \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/clang/clang/Makefile.depend b/usr.bin/clang/clang/Makefile.depend new file mode 100644 index 000000000000..9c26a6933977 --- /dev/null +++ b/usr.bin/clang/clang/Makefile.depend @@ -0,0 +1,104 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/clang/libclanganalysis \ + lib/clang/libclangarcmigrate \ + lib/clang/libclangast \ + lib/clang/libclangbasic \ + lib/clang/libclangcodegen \ + lib/clang/libclangdriver \ + lib/clang/libclangedit \ + lib/clang/libclangfrontend \ + lib/clang/libclangfrontendtool \ + lib/clang/libclanglex \ + lib/clang/libclangparse \ + lib/clang/libclangrewrite \ + lib/clang/libclangsema \ + lib/clang/libclangserialization \ + lib/clang/libclangstaticanalyzercheckers \ + lib/clang/libclangstaticanalyzercore \ + lib/clang/libclangstaticanalyzerfrontend \ + lib/clang/libllvmanalysis \ + lib/clang/libllvmarchive \ + lib/clang/libllvmarmasmparser \ + lib/clang/libllvmarmcodegen \ + lib/clang/libllvmarmdesc \ + lib/clang/libllvmarmdisassembler \ + lib/clang/libllvmarminfo \ + lib/clang/libllvmarminstprinter \ + lib/clang/libllvmasmparser \ + lib/clang/libllvmasmprinter \ + lib/clang/libllvmbitreader \ + lib/clang/libllvmbitwriter \ + lib/clang/libllvmcodegen \ + lib/clang/libllvmcore \ + lib/clang/libllvminstcombine \ + lib/clang/libllvminstrumentation \ + lib/clang/libllvmipa \ + lib/clang/libllvmipo \ + lib/clang/libllvmlinker \ + lib/clang/libllvmmc \ + lib/clang/libllvmmcparser \ + lib/clang/libllvmmipsasmparser \ + lib/clang/libllvmmipscodegen \ + lib/clang/libllvmmipsdesc \ + lib/clang/libllvmmipsinfo \ + lib/clang/libllvmmipsinstprinter \ + lib/clang/libllvmobject \ + lib/clang/libllvmpowerpccodegen \ + lib/clang/libllvmpowerpcdesc \ + lib/clang/libllvmpowerpcinfo \ + lib/clang/libllvmpowerpcinstprinter \ + lib/clang/libllvmscalaropts \ + lib/clang/libllvmselectiondag \ + lib/clang/libllvmsupport \ + lib/clang/libllvmtarget \ + lib/clang/libllvmtransformutils \ + lib/clang/libllvmvectorize \ + lib/clang/libllvmx86asmparser \ + lib/clang/libllvmx86codegen \ + lib/clang/libllvmx86desc \ + lib/clang/libllvmx86disassembler \ + lib/clang/libllvmx86info \ + lib/clang/libllvmx86instprinter \ + lib/clang/libllvmx86utils \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +cc1_main.o: CC1Options.inc.h +cc1_main.o: DiagnosticCommonKinds.inc.h +cc1_main.o: DiagnosticDriverKinds.inc.h +cc1_main.o: DiagnosticFrontendKinds.inc.h +cc1_main.po: CC1Options.inc.h +cc1_main.po: DiagnosticCommonKinds.inc.h +cc1_main.po: DiagnosticDriverKinds.inc.h +cc1_main.po: DiagnosticFrontendKinds.inc.h +cc1as_main.o: CC1AsOptions.inc.h +cc1as_main.o: DiagnosticCommonKinds.inc.h +cc1as_main.o: DiagnosticDriverKinds.inc.h +cc1as_main.o: DiagnosticFrontendKinds.inc.h +cc1as_main.o: Options.inc.h +cc1as_main.po: CC1AsOptions.inc.h +cc1as_main.po: DiagnosticCommonKinds.inc.h +cc1as_main.po: DiagnosticDriverKinds.inc.h +cc1as_main.po: DiagnosticFrontendKinds.inc.h +cc1as_main.po: Options.inc.h +driver.o: CC1Options.inc.h +driver.o: DiagnosticCommonKinds.inc.h +driver.po: CC1Options.inc.h +driver.po: DiagnosticCommonKinds.inc.h +.endif diff --git a/usr.bin/clang/tblgen/Makefile.depend b/usr.bin/clang/tblgen/Makefile.depend new file mode 100644 index 000000000000..0d08e73f9265 --- /dev/null +++ b/usr.bin/clang/tblgen/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/clang/libllvmsupport \ + lib/clang/libllvmtablegen \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/cmp/Makefile.depend b/usr.bin/cmp/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/cmp/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/col/Makefile.depend b/usr.bin/col/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/col/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/colcrt/Makefile.depend b/usr.bin/colcrt/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/colcrt/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/colldef/Makefile.depend b/usr.bin/colldef/Makefile.depend new file mode 100644 index 000000000000..702a543c9b07 --- /dev/null +++ b/usr.bin/colldef/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +parse.o: parse.c +parse.po: parse.c +scan.o: scan.c +scan.o: y.tab.h +scan.po: scan.c +scan.po: y.tab.h +.endif diff --git a/usr.bin/colrm/Makefile.depend b/usr.bin/colrm/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/colrm/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/column/Makefile.depend b/usr.bin/column/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/column/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/comm/Makefile.depend b/usr.bin/comm/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/comm/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/compile_et/Makefile.depend b/usr.bin/compile_et/Makefile.depend new file mode 100644 index 000000000000..35d6a7ce2571 --- /dev/null +++ b/usr.bin/compile_et/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +compile_et.o: parse.h +compile_et.po: parse.h +lex.o: lex.c +lex.o: parse.h +lex.po: lex.c +lex.po: parse.h +parse.o: parse.c +parse.po: parse.c +.endif diff --git a/usr.bin/compress/Makefile.depend b/usr.bin/compress/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/compress/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/cpio/Makefile.depend b/usr.bin/cpio/Makefile.depend new file mode 100644 index 000000000000..97f5f9585715 --- /dev/null +++ b/usr.bin/cpio/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libarchive \ + lib/libbz2 \ + lib/libc \ + lib/libexpat \ + lib/liblzma \ + lib/libz \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/cpuset/Makefile.depend b/usr.bin/cpuset/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/cpuset/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/csplit/Makefile.depend b/usr.bin/csplit/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/csplit/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/csup/Makefile.depend b/usr.bin/csup/Makefile.depend new file mode 100644 index 000000000000..3aaa868dc4e0 --- /dev/null +++ b/usr.bin/csup/Makefile.depend @@ -0,0 +1,31 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/libthr \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +config.o: parse.h +config.po: parse.h +parse.o: parse.c +parse.po: parse.c +token.o: parse.h +token.o: token.c +token.po: parse.h +token.po: token.c +.endif diff --git a/usr.bin/ctags/Makefile.depend b/usr.bin/ctags/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/ctags/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ctlstat/Makefile.depend b/usr.bin/ctlstat/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/ctlstat/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/cut/Makefile.depend b/usr.bin/cut/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/cut/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/dc/Makefile.depend b/usr.bin/dc/Makefile.depend new file mode 100644 index 000000000000..510b4fd7db03 --- /dev/null +++ b/usr.bin/dc/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ + secure/lib/libssl \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/dig/Makefile.depend b/usr.bin/dig/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.bin/dig/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/dirname/Makefile.depend b/usr.bin/dirname/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/dirname/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/du/Makefile.depend b/usr.bin/du/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.bin/du/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ee/Makefile.depend b/usr.bin/ee/Makefile.depend new file mode 100644 index 000000000000..c74c89fb77e8 --- /dev/null +++ b/usr.bin/ee/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/elf2aout/Makefile.depend b/usr.bin/elf2aout/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/elf2aout/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/elfdump/Makefile.depend b/usr.bin/elfdump/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/elfdump/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/enigma/Makefile.depend b/usr.bin/enigma/Makefile.depend new file mode 100644 index 000000000000..aaceb6edba57 --- /dev/null +++ b/usr.bin/enigma/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/env/Makefile.depend b/usr.bin/env/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/env/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/expand/Makefile.depend b/usr.bin/expand/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/expand/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/false/Makefile.depend b/usr.bin/false/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/false/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/fetch/Makefile.depend b/usr.bin/fetch/Makefile.depend new file mode 100644 index 000000000000..341476be53e7 --- /dev/null +++ b/usr.bin/fetch/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libfetch \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/file/Makefile.depend b/usr.bin/file/Makefile.depend new file mode 100644 index 000000000000..d7d8c570c395 --- /dev/null +++ b/usr.bin/file/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmagic \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/file2c/Makefile.depend b/usr.bin/file2c/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/file2c/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/find/Makefile.depend b/usr.bin/find/Makefile.depend new file mode 100644 index 000000000000..a76cd46ec31c --- /dev/null +++ b/usr.bin/find/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +getdate.o: getdate.c +getdate.po: getdate.c +.endif diff --git a/usr.bin/finger/Makefile.depend b/usr.bin/finger/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/finger/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/fmt/Makefile.depend b/usr.bin/fmt/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/fmt/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/fold/Makefile.depend b/usr.bin/fold/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/fold/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/from/Makefile.depend b/usr.bin/from/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/from/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/fstat/Makefile.depend b/usr.bin/fstat/Makefile.depend new file mode 100644 index 000000000000..c80d9db9a3d1 --- /dev/null +++ b/usr.bin/fstat/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + lib/libprocstat \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/fsync/Makefile.depend b/usr.bin/fsync/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/fsync/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ftp/Makefile.depend b/usr.bin/ftp/Makefile.depend new file mode 100644 index 000000000000..703eab35cb0d --- /dev/null +++ b/usr.bin/ftp/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/libtelnet \ + lib/libutil \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/gcore/Makefile.depend b/usr.bin/gcore/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.bin/gcore/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/gencat/Makefile.depend b/usr.bin/gencat/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.bin/gencat/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/getconf/Makefile.depend b/usr.bin/getconf/Makefile.depend new file mode 100644 index 000000000000..714ee8b0b673 --- /dev/null +++ b/usr.bin/getconf/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +confstr.o: confstr.c +confstr.po: confstr.c +limits.o: limits.c +limits.po: limits.c +pathconf.o: pathconf.c +pathconf.po: pathconf.c +progenv.o: progenv.c +progenv.po: progenv.c +sysconf.o: sysconf.c +sysconf.po: sysconf.c +.endif diff --git a/usr.bin/getent/Makefile.depend b/usr.bin/getent/Makefile.depend new file mode 100644 index 000000000000..43e53d541e5d --- /dev/null +++ b/usr.bin/getent/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/getopt/Makefile.depend b/usr.bin/getopt/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/getopt/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/gprof/Makefile.depend b/usr.bin/gprof/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/gprof/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/grep/Makefile.depend b/usr.bin/grep/Makefile.depend new file mode 100644 index 000000000000..9c356995dde7 --- /dev/null +++ b/usr.bin/grep/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libregex \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbz2 \ + lib/libc \ + lib/liblzma \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/gzip/Makefile.depend b/usr.bin/gzip/Makefile.depend new file mode 100644 index 000000000000..15ad9aaf0583 --- /dev/null +++ b/usr.bin/gzip/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbz2 \ + lib/libc \ + lib/liblzma \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/head/Makefile.depend b/usr.bin/head/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/head/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/hexdump/Makefile.depend b/usr.bin/hexdump/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/hexdump/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/host/Makefile.depend b/usr.bin/host/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.bin/host/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/id/Makefile.depend b/usr.bin/id/Makefile.depend new file mode 100644 index 000000000000..1aedff53c5fd --- /dev/null +++ b/usr.bin/id/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbsm \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/indent/Makefile.depend b/usr.bin/indent/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/indent/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ipcrm/Makefile.depend b/usr.bin/ipcrm/Makefile.depend new file mode 100644 index 000000000000..553674c09429 --- /dev/null +++ b/usr.bin/ipcrm/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ipcs/Makefile.depend b/usr.bin/ipcs/Makefile.depend new file mode 100644 index 000000000000..553674c09429 --- /dev/null +++ b/usr.bin/ipcs/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/join/Makefile.depend b/usr.bin/join/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/join/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/jot/Makefile.depend b/usr.bin/jot/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/jot/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/kdump/Makefile.depend b/usr.bin/kdump/Makefile.depend new file mode 100644 index 000000000000..cf6d120fe80e --- /dev/null +++ b/usr.bin/kdump/Makefile.depend @@ -0,0 +1,31 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ioctl.o: ioctl.c +ioctl.po: ioctl.c +kdump.o: kdump_subr.h +kdump.po: kdump_subr.h +kdump_subr.o: kdump_subr.c +kdump_subr.o: kdump_subr.h +kdump_subr.po: kdump_subr.c +kdump_subr.po: kdump_subr.h +linux_syscalls.o: linux_syscalls.c +linux_syscalls.po: linux_syscalls.c +.endif diff --git a/usr.bin/keylogin/Makefile.depend b/usr.bin/keylogin/Makefile.depend new file mode 100644 index 000000000000..60fe900ca5e6 --- /dev/null +++ b/usr.bin/keylogin/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/keylogout/Makefile.depend b/usr.bin/keylogout/Makefile.depend new file mode 100644 index 000000000000..6e9b14f8d7a1 --- /dev/null +++ b/usr.bin/keylogout/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/killall/Makefile.depend b/usr.bin/killall/Makefile.depend new file mode 100644 index 000000000000..7479d4624c14 --- /dev/null +++ b/usr.bin/killall/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libjail \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ktrace/Makefile.depend b/usr.bin/ktrace/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/ktrace/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ktrdump/Makefile.depend b/usr.bin/ktrdump/Makefile.depend new file mode 100644 index 000000000000..553674c09429 --- /dev/null +++ b/usr.bin/ktrdump/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/lam/Makefile.depend b/usr.bin/lam/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/lam/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/last/Makefile.depend b/usr.bin/last/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/last/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/lastcomm/Makefile.depend b/usr.bin/lastcomm/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/lastcomm/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ldd/Makefile.depend b/usr.bin/ldd/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.bin/ldd/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/leave/Makefile.depend b/usr.bin/leave/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/leave/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/less/Makefile.depend b/usr.bin/less/Makefile.depend new file mode 100644 index 000000000000..c74c89fb77e8 --- /dev/null +++ b/usr.bin/less/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/lessecho/Makefile.depend b/usr.bin/lessecho/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/lessecho/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/lesskey/Makefile.depend b/usr.bin/lesskey/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/lesskey/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/lex/Makefile.depend b/usr.bin/lex/Makefile.depend new file mode 100644 index 000000000000..1ff4094cf4d1 --- /dev/null +++ b/usr.bin/lex/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +parse.o: parse.c +parse.po: parse.c +scan.o: parse.h +scan.o: scan.c +scan.po: parse.h +scan.po: scan.c +skel.o: skel.c +skel.po: skel.c +yylex.o: parse.h +yylex.po: parse.h +.endif diff --git a/usr.bin/lex/lib/Makefile.depend b/usr.bin/lex/lib/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.bin/lex/lib/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/limits/Makefile.depend b/usr.bin/limits/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.bin/limits/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/locale/Makefile.depend b/usr.bin/locale/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/locale/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/locate/bigram/Makefile.depend b/usr.bin/locate/bigram/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/locate/bigram/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/locate/code/Makefile.depend b/usr.bin/locate/code/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/locate/code/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/locate/locate/Makefile.depend b/usr.bin/locate/locate/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.bin/locate/locate/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/lock/Makefile.depend b/usr.bin/lock/Makefile.depend new file mode 100644 index 000000000000..aaceb6edba57 --- /dev/null +++ b/usr.bin/lock/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/lockf/Makefile.depend b/usr.bin/lockf/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/lockf/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/logger/Makefile.depend b/usr.bin/logger/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/logger/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/login/Makefile.depend b/usr.bin/login/Makefile.depend new file mode 100644 index 000000000000..ef1e74a0bee1 --- /dev/null +++ b/usr.bin/login/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbsm \ + lib/libc \ + lib/libpam/libpam \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/logins/Makefile.depend b/usr.bin/logins/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/logins/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/logname/Makefile.depend b/usr.bin/logname/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/logname/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/look/Makefile.depend b/usr.bin/look/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/look/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/lorder/Makefile.depend b/usr.bin/lorder/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.bin/lorder/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/lsvfs/Makefile.depend b/usr.bin/lsvfs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/lsvfs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/lzmainfo/Makefile.depend b/usr.bin/lzmainfo/Makefile.depend new file mode 100644 index 000000000000..5a47d9ea95db --- /dev/null +++ b/usr.bin/lzmainfo/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/liblzma \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/m4/Makefile.depend b/usr.bin/m4/Makefile.depend new file mode 100644 index 000000000000..4953149131d3 --- /dev/null +++ b/usr.bin/m4/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/liby \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +parser.o: parser.c +parser.po: parser.c +tokenizer.o: parser.h +tokenizer.o: tokenizer.c +tokenizer.po: parser.h +tokenizer.po: tokenizer.c +.endif diff --git a/usr.bin/mail/Makefile.depend b/usr.bin/mail/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/mail/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/make/Makefile.depend b/usr.bin/make/Makefile.depend new file mode 100644 index 000000000000..eba5cd5875b4 --- /dev/null +++ b/usr.bin/make/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/makewhatis/Makefile.depend b/usr.bin/makewhatis/Makefile.depend new file mode 100644 index 000000000000..1e192bde3a22 --- /dev/null +++ b/usr.bin/makewhatis/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/man/Makefile.depend b/usr.bin/man/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.bin/man/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/mesg/Makefile.depend b/usr.bin/mesg/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/mesg/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/minigzip/Makefile.depend b/usr.bin/minigzip/Makefile.depend new file mode 100644 index 000000000000..1e192bde3a22 --- /dev/null +++ b/usr.bin/minigzip/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ministat/Makefile.depend b/usr.bin/ministat/Makefile.depend new file mode 100644 index 000000000000..d78f7b72e2c0 --- /dev/null +++ b/usr.bin/ministat/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/mkcsmapper_static/Makefile.depend b/usr.bin/mkcsmapper_static/Makefile.depend new file mode 100644 index 000000000000..c9b7aa98c567 --- /dev/null +++ b/usr.bin/mkcsmapper_static/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +lex.o: lex.c +lex.o: yacc.h +lex.po: lex.c +lex.po: yacc.h +yacc.o: yacc.c +yacc.po: yacc.c +.endif diff --git a/usr.bin/mkdep/Makefile.depend b/usr.bin/mkdep/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.bin/mkdep/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/mkfifo/Makefile.depend b/usr.bin/mkfifo/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/mkfifo/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/mklocale/Makefile.depend b/usr.bin/mklocale/Makefile.depend new file mode 100644 index 000000000000..293b44bfa2e8 --- /dev/null +++ b/usr.bin/mklocale/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +lex.o: lex.c +lex.o: y.tab.h +lex.po: lex.c +lex.po: y.tab.h +yacc.o: yacc.c +yacc.po: yacc.c +.endif diff --git a/usr.bin/mkstr/Makefile.depend b/usr.bin/mkstr/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/mkstr/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/mktemp/Makefile.depend b/usr.bin/mktemp/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/mktemp/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/mkulzma/Makefile.depend b/usr.bin/mkulzma/Makefile.depend new file mode 100644 index 000000000000..5a47d9ea95db --- /dev/null +++ b/usr.bin/mkulzma/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/liblzma \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/mkuzip/Makefile.depend b/usr.bin/mkuzip/Makefile.depend new file mode 100644 index 000000000000..1e192bde3a22 --- /dev/null +++ b/usr.bin/mkuzip/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/msgs/Makefile.depend b/usr.bin/msgs/Makefile.depend new file mode 100644 index 000000000000..c74c89fb77e8 --- /dev/null +++ b/usr.bin/msgs/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/mt/Makefile.depend b/usr.bin/mt/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/mt/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/nc/Makefile.depend b/usr.bin/nc/Makefile.depend new file mode 100644 index 000000000000..c068132760dd --- /dev/null +++ b/usr.bin/nc/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipsec \ + lib/libtelnet \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ncal/Makefile.depend b/usr.bin/ncal/Makefile.depend new file mode 100644 index 000000000000..f07d64004f27 --- /dev/null +++ b/usr.bin/ncal/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcalendar \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ncplist/Makefile.depend b/usr.bin/ncplist/Makefile.depend new file mode 100644 index 000000000000..bfecf094a765 --- /dev/null +++ b/usr.bin/ncplist/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipx \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ncplogin/Makefile.depend b/usr.bin/ncplogin/Makefile.depend new file mode 100644 index 000000000000..bfecf094a765 --- /dev/null +++ b/usr.bin/ncplogin/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipx \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/netstat/Makefile.depend b/usr.bin/netstat/Makefile.depend new file mode 100644 index 000000000000..64ea564fd4d0 --- /dev/null +++ b/usr.bin/netstat/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipx \ + lib/libkvm \ + lib/libmemstat \ + lib/libnetgraph \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/newgrp/Makefile.depend b/usr.bin/newgrp/Makefile.depend new file mode 100644 index 000000000000..cf2b45501494 --- /dev/null +++ b/usr.bin/newgrp/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/newkey/Makefile.depend b/usr.bin/newkey/Makefile.depend new file mode 100644 index 000000000000..6e850335290f --- /dev/null +++ b/usr.bin/newkey/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmp \ + lib/librpcsvc \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/nfsstat/Makefile.depend b/usr.bin/nfsstat/Makefile.depend new file mode 100644 index 000000000000..553674c09429 --- /dev/null +++ b/usr.bin/nfsstat/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/nice/Makefile.depend b/usr.bin/nice/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/nice/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/nl/Makefile.depend b/usr.bin/nl/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/nl/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/nohup/Makefile.depend b/usr.bin/nohup/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/nohup/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/nslookup/Makefile.depend b/usr.bin/nslookup/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.bin/nslookup/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/nsupdate/Makefile.depend b/usr.bin/nsupdate/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.bin/nsupdate/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/opieinfo/Makefile.depend b/usr.bin/opieinfo/Makefile.depend new file mode 100644 index 000000000000..3dd961e50101 --- /dev/null +++ b/usr.bin/opieinfo/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/libopie \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/opiekey/Makefile.depend b/usr.bin/opiekey/Makefile.depend new file mode 100644 index 000000000000..3dd961e50101 --- /dev/null +++ b/usr.bin/opiekey/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/libopie \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/opiepasswd/Makefile.depend b/usr.bin/opiepasswd/Makefile.depend new file mode 100644 index 000000000000..3dd961e50101 --- /dev/null +++ b/usr.bin/opiepasswd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/libopie \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/pagesize/Makefile.depend b/usr.bin/pagesize/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.bin/pagesize/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/pamtest/Makefile.depend b/usr.bin/pamtest/Makefile.depend new file mode 100644 index 000000000000..d6d3563e0fbc --- /dev/null +++ b/usr.bin/pamtest/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/passwd/Makefile.depend b/usr.bin/passwd/Makefile.depend new file mode 100644 index 000000000000..28fb49b7fb5c --- /dev/null +++ b/usr.bin/passwd/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/paste/Makefile.depend b/usr.bin/paste/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/paste/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/pathchk/Makefile.depend b/usr.bin/pathchk/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/pathchk/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/perror/Makefile.depend b/usr.bin/perror/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/perror/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/pr/Makefile.depend b/usr.bin/pr/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/pr/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/printenv/Makefile.depend b/usr.bin/printenv/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/printenv/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/printf/Makefile.depend b/usr.bin/printf/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/printf/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/procstat/Makefile.depend b/usr.bin/procstat/Makefile.depend new file mode 100644 index 000000000000..0dbdff259c1e --- /dev/null +++ b/usr.bin/procstat/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + lib/libprocstat \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/quota/Makefile.depend b/usr.bin/quota/Makefile.depend new file mode 100644 index 000000000000..bf35174cdcf4 --- /dev/null +++ b/usr.bin/quota/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/rctl/Makefile.depend b/usr.bin/rctl/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.bin/rctl/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/renice/Makefile.depend b/usr.bin/renice/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/renice/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/rev/Makefile.depend b/usr.bin/rev/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/rev/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/revoke/Makefile.depend b/usr.bin/revoke/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/revoke/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/rlogin/Makefile.depend b/usr.bin/rlogin/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/rlogin/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/rpcgen/Makefile.depend b/usr.bin/rpcgen/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/rpcgen/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/rpcinfo/Makefile.depend b/usr.bin/rpcinfo/Makefile.depend new file mode 100644 index 000000000000..43e53d541e5d --- /dev/null +++ b/usr.bin/rpcinfo/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/rs/Makefile.depend b/usr.bin/rs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/rs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/rsh/Makefile.depend b/usr.bin/rsh/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.bin/rsh/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/rup/Makefile.depend b/usr.bin/rup/Makefile.depend new file mode 100644 index 000000000000..269301138753 --- /dev/null +++ b/usr.bin/rup/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ruptime/Makefile.depend b/usr.bin/ruptime/Makefile.depend new file mode 100644 index 000000000000..25ca34444ce3 --- /dev/null +++ b/usr.bin/ruptime/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/rusers/Makefile.depend b/usr.bin/rusers/Makefile.depend new file mode 100644 index 000000000000..269301138753 --- /dev/null +++ b/usr.bin/rusers/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/rwall/Makefile.depend b/usr.bin/rwall/Makefile.depend new file mode 100644 index 000000000000..6e9b14f8d7a1 --- /dev/null +++ b/usr.bin/rwall/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/rwho/Makefile.depend b/usr.bin/rwho/Makefile.depend new file mode 100644 index 000000000000..25ca34444ce3 --- /dev/null +++ b/usr.bin/rwho/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/script/Makefile.depend b/usr.bin/script/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.bin/script/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/sed/Makefile.depend b/usr.bin/sed/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/sed/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/seq/Makefile.depend b/usr.bin/seq/Makefile.depend new file mode 100644 index 000000000000..d78f7b72e2c0 --- /dev/null +++ b/usr.bin/seq/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/setchannel/Makefile.depend b/usr.bin/setchannel/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/setchannel/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/shar/Makefile.depend b/usr.bin/shar/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.bin/shar/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/showmount/Makefile.depend b/usr.bin/showmount/Makefile.depend new file mode 100644 index 000000000000..6e9b14f8d7a1 --- /dev/null +++ b/usr.bin/showmount/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/smbutil/Makefile.depend b/usr.bin/smbutil/Makefile.depend new file mode 100644 index 000000000000..f09f976da114 --- /dev/null +++ b/usr.bin/smbutil/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkiconv \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/sockstat/Makefile.depend b/usr.bin/sockstat/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.bin/sockstat/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/sort/Makefile.depend b/usr.bin/sort/Makefile.depend new file mode 100644 index 000000000000..1313c32ff69a --- /dev/null +++ b/usr.bin/sort/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/libthr \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/split/Makefile.depend b/usr.bin/split/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/split/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/stat/Makefile.depend b/usr.bin/stat/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/stat/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/stdbuf/Makefile.depend b/usr.bin/stdbuf/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/stdbuf/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/su/Makefile.depend b/usr.bin/su/Makefile.depend new file mode 100644 index 000000000000..ef1e74a0bee1 --- /dev/null +++ b/usr.bin/su/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbsm \ + lib/libc \ + lib/libpam/libpam \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/systat/Makefile.depend b/usr.bin/systat/Makefile.depend new file mode 100644 index 000000000000..e190a3119ca6 --- /dev/null +++ b/usr.bin/systat/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libdevstat \ + lib/libkvm \ + lib/msun \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/tabs/Makefile.depend b/usr.bin/tabs/Makefile.depend new file mode 100644 index 000000000000..c74c89fb77e8 --- /dev/null +++ b/usr.bin/tabs/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/tail/Makefile.depend b/usr.bin/tail/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/tail/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/talk/Makefile.depend b/usr.bin/talk/Makefile.depend new file mode 100644 index 000000000000..b352c71fa627 --- /dev/null +++ b/usr.bin/talk/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/tar/Makefile.depend b/usr.bin/tar/Makefile.depend new file mode 100644 index 000000000000..97f5f9585715 --- /dev/null +++ b/usr.bin/tar/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libarchive \ + lib/libbz2 \ + lib/libc \ + lib/libexpat \ + lib/liblzma \ + lib/libz \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/tcopy/Makefile.depend b/usr.bin/tcopy/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/tcopy/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/tee/Makefile.depend b/usr.bin/tee/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/tee/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/telnet/Makefile.depend b/usr.bin/telnet/Makefile.depend new file mode 100644 index 000000000000..f76673afea20 --- /dev/null +++ b/usr.bin/telnet/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libipsec \ + lib/libmp \ + lib/libpam/libpam \ + lib/libtelnet \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/tftp/Makefile.depend b/usr.bin/tftp/Makefile.depend new file mode 100644 index 000000000000..501fd5198cb2 --- /dev/null +++ b/usr.bin/tftp/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/time/Makefile.depend b/usr.bin/time/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/time/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/tip/tip/Makefile.depend b/usr.bin/tip/tip/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/tip/tip/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/top/Makefile.depend b/usr.bin/top/Makefile.depend new file mode 100644 index 000000000000..2f52b59b828b --- /dev/null +++ b/usr.bin/top/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + lib/msun \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +commands.o: sigdesc.h +commands.po: sigdesc.h +display.o: top.local.h +display.po: top.local.h +top.o: top.local.h +top.po: top.local.h +username.o: top.local.h +username.po: top.local.h +.endif diff --git a/usr.bin/touch/Makefile.depend b/usr.bin/touch/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/touch/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/tput/Makefile.depend b/usr.bin/tput/Makefile.depend new file mode 100644 index 000000000000..c74c89fb77e8 --- /dev/null +++ b/usr.bin/tput/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/tr/Makefile.depend b/usr.bin/tr/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/tr/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/true/Makefile.depend b/usr.bin/true/Makefile.depend new file mode 100644 index 000000000000..7267a8a407f5 --- /dev/null +++ b/usr.bin/true/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/truncate/Makefile.depend b/usr.bin/truncate/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.bin/truncate/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/truss/Makefile.depend b/usr.bin/truss/Makefile.depend new file mode 100644 index 000000000000..a0c788251af4 --- /dev/null +++ b/usr.bin/truss/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +i386-fbsd.o: syscalls.h +i386-fbsd.po: syscalls.h +i386-linux.o: linux_syscalls.h +i386-linux.po: linux_syscalls.h +ioctl.o: ioctl.c +ioctl.po: ioctl.c +.endif diff --git a/usr.bin/tset/Makefile.depend b/usr.bin/tset/Makefile.depend new file mode 100644 index 000000000000..c74c89fb77e8 --- /dev/null +++ b/usr.bin/tset/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/tsort/Makefile.depend b/usr.bin/tsort/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/tsort/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/tty/Makefile.depend b/usr.bin/tty/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/tty/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ul/Makefile.depend b/usr.bin/ul/Makefile.depend new file mode 100644 index 000000000000..c74c89fb77e8 --- /dev/null +++ b/usr.bin/ul/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/uname/Makefile.depend b/usr.bin/uname/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/uname/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/unexpand/Makefile.depend b/usr.bin/unexpand/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/unexpand/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/unifdef/Makefile.depend b/usr.bin/unifdef/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/unifdef/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/uniq/Makefile.depend b/usr.bin/uniq/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/uniq/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/units/Makefile.depend b/usr.bin/units/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/units/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/unvis/Makefile.depend b/usr.bin/unvis/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/unvis/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/unzip/Makefile.depend b/usr.bin/unzip/Makefile.depend new file mode 100644 index 000000000000..7a6a31a74a12 --- /dev/null +++ b/usr.bin/unzip/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libarchive \ + lib/libc \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/usbhidaction/Makefile.depend b/usr.bin/usbhidaction/Makefile.depend new file mode 100644 index 000000000000..f29032c5ec9a --- /dev/null +++ b/usr.bin/usbhidaction/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libusbhid \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/usbhidctl/Makefile.depend b/usr.bin/usbhidctl/Makefile.depend new file mode 100644 index 000000000000..f29032c5ec9a --- /dev/null +++ b/usr.bin/usbhidctl/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libusbhid \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/users/Makefile.depend b/usr.bin/users/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/users/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/uudecode/Makefile.depend b/usr.bin/uudecode/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.bin/uudecode/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/uuencode/Makefile.depend b/usr.bin/uuencode/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.bin/uuencode/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/vacation/Makefile.depend b/usr.bin/vacation/Makefile.depend new file mode 100644 index 000000000000..8af48f521490 --- /dev/null +++ b/usr.bin/vacation/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsm \ + lib/libsmdb \ + lib/libsmutil \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +vacation.o: sm_os.h +vacation.po: sm_os.h +.endif diff --git a/usr.bin/vgrind/Makefile.depend b/usr.bin/vgrind/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/vgrind/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/vgrind/RETEST/Makefile.depend b/usr.bin/vgrind/RETEST/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/vgrind/RETEST/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/vi/Makefile.depend b/usr.bin/vi/Makefile.depend new file mode 100644 index 000000000000..c74c89fb77e8 --- /dev/null +++ b/usr.bin/vi/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/vis/Makefile.depend b/usr.bin/vis/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/vis/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/vmstat/Makefile.depend b/usr.bin/vmstat/Makefile.depend new file mode 100644 index 000000000000..1a73c8dfc69e --- /dev/null +++ b/usr.bin/vmstat/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libdevstat \ + lib/libkvm \ + lib/libmemstat \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/w/Makefile.depend b/usr.bin/w/Makefile.depend new file mode 100644 index 000000000000..12b0105650cd --- /dev/null +++ b/usr.bin/w/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/wall/Makefile.depend b/usr.bin/wall/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/wall/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/wc/Makefile.depend b/usr.bin/wc/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/wc/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/what/Makefile.depend b/usr.bin/what/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/what/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/whereis/Makefile.depend b/usr.bin/whereis/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/whereis/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/which/Makefile.depend b/usr.bin/which/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/which/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/who/Makefile.depend b/usr.bin/who/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/who/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/whois/Makefile.depend b/usr.bin/whois/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.bin/whois/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/write/Makefile.depend b/usr.bin/write/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/write/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/xargs/Makefile.depend b/usr.bin/xargs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/xargs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/xinstall/Makefile.depend b/usr.bin/xinstall/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/xinstall/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/xlint/lint1/Makefile.depend b/usr.bin/xlint/lint1/Makefile.depend new file mode 100644 index 000000000000..60d2a9b389f2 --- /dev/null +++ b/usr.bin/xlint/lint1/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +cgram.o: cgram.c +cgram.po: cgram.c +func.o: cgram.h +func.po: cgram.h +scan.o: cgram.h +scan.o: scan.c +scan.po: cgram.h +scan.po: scan.c +tree.o: cgram.h +tree.po: cgram.h +.endif diff --git a/usr.bin/xlint/lint2/Makefile.depend b/usr.bin/xlint/lint2/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/xlint/lint2/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/xlint/llib/Makefile.depend b/usr.bin/xlint/llib/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.bin/xlint/llib/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/xlint/xlint/Makefile.depend b/usr.bin/xlint/xlint/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/xlint/xlint/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/xstr/Makefile.depend b/usr.bin/xstr/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/xstr/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/xz/Makefile.depend b/usr.bin/xz/Makefile.depend new file mode 100644 index 000000000000..5a47d9ea95db --- /dev/null +++ b/usr.bin/xz/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/liblzma \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/xzdec/Makefile.depend b/usr.bin/xzdec/Makefile.depend new file mode 100644 index 000000000000..5a47d9ea95db --- /dev/null +++ b/usr.bin/xzdec/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/liblzma \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/yacc/Makefile.depend b/usr.bin/yacc/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/yacc/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/yes/Makefile.depend b/usr.bin/yes/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.bin/yes/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ypcat/Makefile.depend b/usr.bin/ypcat/Makefile.depend new file mode 100644 index 000000000000..6e9b14f8d7a1 --- /dev/null +++ b/usr.bin/ypcat/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ypmatch/Makefile.depend b/usr.bin/ypmatch/Makefile.depend new file mode 100644 index 000000000000..6e9b14f8d7a1 --- /dev/null +++ b/usr.bin/ypmatch/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/ypwhich/Makefile.depend b/usr.bin/ypwhich/Makefile.depend new file mode 100644 index 000000000000..a3e1b44c73f2 --- /dev/null +++ b/usr.bin/ypwhich/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/IPXrouted/Makefile.depend b/usr.sbin/IPXrouted/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/IPXrouted/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ac/Makefile.depend b/usr.sbin/ac/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/ac/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/accton/Makefile.depend b/usr.sbin/accton/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/accton/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/acpi/acpiconf/Makefile.depend b/usr.sbin/acpi/acpiconf/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/acpi/acpiconf/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/acpi/acpidb/Makefile.depend b/usr.sbin/acpi/acpidb/Makefile.depend new file mode 100644 index 000000000000..a2742684c435 --- /dev/null +++ b/usr.sbin/acpi/acpidb/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libthr \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/acpi/acpidump/Makefile.depend b/usr.sbin/acpi/acpidump/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/acpi/acpidump/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/acpi/iasl/Makefile.depend b/usr.sbin/acpi/iasl/Makefile.depend new file mode 100644 index 000000000000..ffc65caf80cb --- /dev/null +++ b/usr.sbin/acpi/iasl/Makefile.depend @@ -0,0 +1,87 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +aslanalyze.o: aslcompiler.y.h +aslanalyze.po: aslcompiler.y.h +aslbtypes.o: aslcompiler.y.h +aslbtypes.po: aslcompiler.y.h +aslcodegen.o: aslcompiler.y.h +aslcodegen.po: aslcompiler.y.h +aslcompilerlex.o: aslcompiler.y.h +aslcompilerlex.o: aslcompilerlex.c +aslcompilerlex.po: aslcompiler.y.h +aslcompilerlex.po: aslcompilerlex.c +aslcompilerparse.o: aslcompilerparse.c +aslcompilerparse.po: aslcompilerparse.c +aslfold.o: aslcompiler.y.h +aslfold.po: aslcompiler.y.h +asllength.o: aslcompiler.y.h +asllength.po: aslcompiler.y.h +asllisting.o: aslcompiler.y.h +asllisting.po: aslcompiler.y.h +aslload.o: aslcompiler.y.h +aslload.po: aslcompiler.y.h +asllookup.o: aslcompiler.y.h +asllookup.po: aslcompiler.y.h +aslopcodes.o: aslcompiler.y.h +aslopcodes.po: aslcompiler.y.h +asloperands.o: aslcompiler.y.h +asloperands.po: aslcompiler.y.h +aslopt.o: aslcompiler.y.h +aslopt.po: aslcompiler.y.h +aslpredef.o: aslcompiler.y.h +aslpredef.po: aslcompiler.y.h +aslresource.o: aslcompiler.y.h +aslresource.po: aslcompiler.y.h +aslrestype1.o: aslcompiler.y.h +aslrestype1.po: aslcompiler.y.h +aslrestype1i.o: aslcompiler.y.h +aslrestype1i.po: aslcompiler.y.h +aslrestype2.o: aslcompiler.y.h +aslrestype2.po: aslcompiler.y.h +aslrestype2d.o: aslcompiler.y.h +aslrestype2d.po: aslcompiler.y.h +aslrestype2q.o: aslcompiler.y.h +aslrestype2q.po: aslcompiler.y.h +aslrestype2s.o: aslcompiler.y.h +aslrestype2s.po: aslcompiler.y.h +aslrestype2w.o: aslcompiler.y.h +aslrestype2w.po: aslcompiler.y.h +asltransform.o: aslcompiler.y.h +asltransform.po: aslcompiler.y.h +asltree.o: aslcompiler.y.h +asltree.po: aslcompiler.y.h +aslutils.o: aslcompiler.y.h +aslutils.po: aslcompiler.y.h +aslwalks.o: aslcompiler.y.h +aslwalks.po: aslcompiler.y.h +dtexpress.o: dtparser.y.h +dtexpress.po: dtparser.y.h +dtparserlex.o: dtparser.y.h +dtparserlex.o: dtparserlex.c +dtparserlex.po: dtparser.y.h +dtparserlex.po: dtparserlex.c +dtparserparse.o: dtparserparse.c +dtparserparse.po: dtparserparse.c +prparserlex.o: prparser.y.h +prparserlex.o: prparserlex.c +prparserlex.po: prparser.y.h +prparserlex.po: prparserlex.c +prparserparse.o: prparserparse.c +prparserparse.po: prparserparse.c +.endif diff --git a/usr.sbin/adduser/Makefile.depend b/usr.sbin/adduser/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/adduser/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/amd/amd/Makefile.depend b/usr.sbin/amd/amd/Makefile.depend new file mode 100644 index 000000000000..fd1a688114d5 --- /dev/null +++ b/usr.sbin/amd/amd/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + usr.sbin/amd/include \ + usr.sbin/amd/libamu \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +conf_parse.o: conf_parse.c +conf_parse.po: conf_parse.c +conf_tok.o: conf_parse.h +conf_tok.o: conf_tok.c +conf_tok.po: conf_parse.h +conf_tok.po: conf_tok.c +mount_xdr.o: mount_xdr.c +mount_xdr.po: mount_xdr.c +.endif diff --git a/usr.sbin/amd/amq/Makefile.depend b/usr.sbin/amd/amq/Makefile.depend new file mode 100644 index 000000000000..66f893e88e54 --- /dev/null +++ b/usr.sbin/amd/amq/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + usr.sbin/amd/include \ + usr.sbin/amd/libamu \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/amd/fixmount/Makefile.depend b/usr.sbin/amd/fixmount/Makefile.depend new file mode 100644 index 000000000000..1ed02e5b92c2 --- /dev/null +++ b/usr.sbin/amd/fixmount/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + lib/libwrap \ + usr.sbin/amd/include \ + usr.sbin/amd/libamu \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/amd/fsinfo/Makefile.depend b/usr.sbin/amd/fsinfo/Makefile.depend new file mode 100644 index 000000000000..63070f4f43e5 --- /dev/null +++ b/usr.sbin/amd/fsinfo/Makefile.depend @@ -0,0 +1,33 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + usr.sbin/amd/include \ + usr.sbin/amd/libamu \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +fsi_gram.o: fsi_gram.c +fsi_gram.po: fsi_gram.c +fsi_lex.o: fsi_gram.h +fsi_lex.o: fsi_lex.c +fsi_lex.po: fsi_gram.h +fsi_lex.po: fsi_lex.c +fsinfo.o: fsi_gram.h +fsinfo.po: fsi_gram.h +.endif diff --git a/usr.sbin/amd/hlfsd/Makefile.depend b/usr.sbin/amd/hlfsd/Makefile.depend new file mode 100644 index 000000000000..66f893e88e54 --- /dev/null +++ b/usr.sbin/amd/hlfsd/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + usr.sbin/amd/include \ + usr.sbin/amd/libamu \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/amd/include/Makefile.depend b/usr.sbin/amd/include/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/amd/include/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/amd/libamu/Makefile.depend b/usr.sbin/amd/libamu/Makefile.depend new file mode 100644 index 000000000000..a0399ceb62af --- /dev/null +++ b/usr.sbin/amd/libamu/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/libwrap \ + usr.sbin/amd/include \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +nfs_prot_x.o: nfs_prot_x.c +nfs_prot_x.po: nfs_prot_x.c +xdr_func_%undef.o: xdr_func_%undef.c +xdr_func_%undef.po: xdr_func_%undef.c +.endif diff --git a/usr.sbin/amd/mk-amd-map/Makefile.depend b/usr.sbin/amd/mk-amd-map/Makefile.depend new file mode 100644 index 000000000000..66f893e88e54 --- /dev/null +++ b/usr.sbin/amd/mk-amd-map/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + usr.sbin/amd/include \ + usr.sbin/amd/libamu \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/amd/pawd/Makefile.depend b/usr.sbin/amd/pawd/Makefile.depend new file mode 100644 index 000000000000..66f893e88e54 --- /dev/null +++ b/usr.sbin/amd/pawd/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + usr.sbin/amd/include \ + usr.sbin/amd/libamu \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/amd/scripts/Makefile.depend b/usr.sbin/amd/scripts/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/amd/scripts/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/amd/wire-test/Makefile.depend b/usr.sbin/amd/wire-test/Makefile.depend new file mode 100644 index 000000000000..66f893e88e54 --- /dev/null +++ b/usr.sbin/amd/wire-test/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + usr.sbin/amd/include \ + usr.sbin/amd/libamu \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ancontrol/Makefile.depend b/usr.sbin/ancontrol/Makefile.depend new file mode 100644 index 000000000000..f7894b5169ae --- /dev/null +++ b/usr.sbin/ancontrol/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/apm/Makefile.depend b/usr.sbin/apm/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/apm/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/apmd/Makefile.depend b/usr.sbin/apmd/Makefile.depend new file mode 100644 index 000000000000..554c4cc05cb7 --- /dev/null +++ b/usr.sbin/apmd/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +apmdlex.o: apmdlex.c +apmdlex.o: y.tab.h +apmdlex.po: apmdlex.c +apmdlex.po: y.tab.h +apmdparse.o: apmdparse.c +apmdparse.po: apmdparse.c +.endif diff --git a/usr.sbin/arp/Makefile.depend b/usr.sbin/arp/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/arp/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/arpaname/Makefile.depend b/usr.sbin/arpaname/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/arpaname/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/asf/Makefile.depend b/usr.sbin/asf/Makefile.depend new file mode 100644 index 000000000000..553674c09429 --- /dev/null +++ b/usr.sbin/asf/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/audit/Makefile.depend b/usr.sbin/audit/Makefile.depend new file mode 100644 index 000000000000..1aedff53c5fd --- /dev/null +++ b/usr.sbin/audit/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbsm \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/auditd/Makefile.depend b/usr.sbin/auditd/Makefile.depend new file mode 100644 index 000000000000..e062403614d4 --- /dev/null +++ b/usr.sbin/auditd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libauditd \ + lib/libbsm \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/auditreduce/Makefile.depend b/usr.sbin/auditreduce/Makefile.depend new file mode 100644 index 000000000000..1aedff53c5fd --- /dev/null +++ b/usr.sbin/auditreduce/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbsm \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/authpf/Makefile.depend b/usr.sbin/authpf/Makefile.depend new file mode 100644 index 000000000000..157f511c5479 --- /dev/null +++ b/usr.sbin/authpf/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/libutil \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bluetooth/ath3kfw/Makefile.depend b/usr.sbin/bluetooth/ath3kfw/Makefile.depend new file mode 100644 index 000000000000..f7791510e25b --- /dev/null +++ b/usr.sbin/bluetooth/ath3kfw/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libusb \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bluetooth/bcmfw/Makefile.depend b/usr.sbin/bluetooth/bcmfw/Makefile.depend new file mode 100644 index 000000000000..e6d80d34e638 --- /dev/null +++ b/usr.sbin/bluetooth/bcmfw/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libnetgraph \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bluetooth/bt3cfw/Makefile.depend b/usr.sbin/bluetooth/bt3cfw/Makefile.depend new file mode 100644 index 000000000000..e6d80d34e638 --- /dev/null +++ b/usr.sbin/bluetooth/bt3cfw/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libnetgraph \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bluetooth/bthidcontrol/Makefile.depend b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend new file mode 100644 index 000000000000..bf7f962df49f --- /dev/null +++ b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + lib/libsdp \ + lib/libusbhid \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +lexer.o: lexer.c +lexer.o: parser.h +lexer.po: lexer.c +lexer.po: parser.h +parser.o: parser.c +parser.po: parser.c +.endif diff --git a/usr.sbin/bluetooth/bthidd/Makefile.depend b/usr.sbin/bluetooth/bthidd/Makefile.depend new file mode 100644 index 000000000000..61ae9268dead --- /dev/null +++ b/usr.sbin/bluetooth/bthidd/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + lib/libusbhid \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +lexer.o: lexer.c +lexer.o: parser.h +lexer.po: lexer.c +lexer.po: parser.h +parser.o: parser.c +parser.po: parser.c +.endif diff --git a/usr.sbin/bluetooth/btpand/Makefile.depend b/usr.sbin/bluetooth/btpand/Makefile.depend new file mode 100644 index 000000000000..336a9dba2bb9 --- /dev/null +++ b/usr.sbin/bluetooth/btpand/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + lib/libsdp \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bluetooth/hccontrol/Makefile.depend b/usr.sbin/bluetooth/hccontrol/Makefile.depend new file mode 100644 index 000000000000..e188ca861463 --- /dev/null +++ b/usr.sbin/bluetooth/hccontrol/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bluetooth/hcsecd/Makefile.depend b/usr.sbin/bluetooth/hcsecd/Makefile.depend new file mode 100644 index 000000000000..d800014f76f2 --- /dev/null +++ b/usr.sbin/bluetooth/hcsecd/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +lexer.o: lexer.c +lexer.o: parser.h +lexer.po: lexer.c +lexer.po: parser.h +parser.o: parser.c +parser.po: parser.c +.endif diff --git a/usr.sbin/bluetooth/hcseriald/Makefile.depend b/usr.sbin/bluetooth/hcseriald/Makefile.depend new file mode 100644 index 000000000000..e6d80d34e638 --- /dev/null +++ b/usr.sbin/bluetooth/hcseriald/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libnetgraph \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bluetooth/l2control/Makefile.depend b/usr.sbin/bluetooth/l2control/Makefile.depend new file mode 100644 index 000000000000..e188ca861463 --- /dev/null +++ b/usr.sbin/bluetooth/l2control/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bluetooth/l2ping/Makefile.depend b/usr.sbin/bluetooth/l2ping/Makefile.depend new file mode 100644 index 000000000000..ff4e7a5e55bd --- /dev/null +++ b/usr.sbin/bluetooth/l2ping/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend new file mode 100644 index 000000000000..b3a6c2bde329 --- /dev/null +++ b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + lib/libsdp \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bluetooth/sdpcontrol/Makefile.depend b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend new file mode 100644 index 000000000000..b3a6c2bde329 --- /dev/null +++ b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + lib/libsdp \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bluetooth/sdpd/Makefile.depend b/usr.sbin/bluetooth/sdpd/Makefile.depend new file mode 100644 index 000000000000..e98dae084371 --- /dev/null +++ b/usr.sbin/bluetooth/sdpd/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbluetooth \ + lib/libc \ + lib/libsdp \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/boot0cfg/Makefile.depend b/usr.sbin/boot0cfg/Makefile.depend new file mode 100644 index 000000000000..378b35f0fc09 --- /dev/null +++ b/usr.sbin/boot0cfg/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libexpat \ + lib/libgeom \ + lib/libsbuf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/boot98cfg/Makefile.depend b/usr.sbin/boot98cfg/Makefile.depend new file mode 100644 index 000000000000..25f093b1c085 --- /dev/null +++ b/usr.sbin/boot98cfg/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bootparamd/bootparamd/Makefile.depend b/usr.sbin/bootparamd/bootparamd/Makefile.depend new file mode 100644 index 000000000000..4a1ecc5a3a7a --- /dev/null +++ b/usr.sbin/bootparamd/bootparamd/Makefile.depend @@ -0,0 +1,34 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +bootparam_prot_svc.o: bootparam_prot.h +bootparam_prot_svc.o: bootparam_prot_svc.c +bootparam_prot_svc.po: bootparam_prot.h +bootparam_prot_svc.po: bootparam_prot_svc.c +bootparam_prot_xdr.o: bootparam_prot.h +bootparam_prot_xdr.o: bootparam_prot_xdr.c +bootparam_prot_xdr.po: bootparam_prot.h +bootparam_prot_xdr.po: bootparam_prot_xdr.c +bootparamd.o: bootparam_prot.h +bootparamd.po: bootparam_prot.h +main.o: bootparam_prot.h +main.po: bootparam_prot.h +.endif diff --git a/usr.sbin/bootparamd/callbootd/Makefile.depend b/usr.sbin/bootparamd/callbootd/Makefile.depend new file mode 100644 index 000000000000..a134d081877e --- /dev/null +++ b/usr.sbin/bootparamd/callbootd/Makefile.depend @@ -0,0 +1,31 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +bootparam_prot_clnt.o: bootparam_prot.h +bootparam_prot_clnt.o: bootparam_prot_clnt.c +bootparam_prot_clnt.po: bootparam_prot.h +bootparam_prot_clnt.po: bootparam_prot_clnt.c +bootparam_prot_xdr.o: bootparam_prot.h +bootparam_prot_xdr.o: bootparam_prot_xdr.c +bootparam_prot_xdr.po: bootparam_prot.h +bootparam_prot_xdr.po: bootparam_prot_xdr.c +callbootd.o: bootparam_prot.h +callbootd.po: bootparam_prot.h +.endif diff --git a/usr.sbin/bsdinstall/Makefile.depend b/usr.sbin/bsdinstall/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/bsdinstall/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsdinstall/distextract/Makefile.depend b/usr.sbin/bsdinstall/distextract/Makefile.depend new file mode 100644 index 000000000000..975ca254cda3 --- /dev/null +++ b/usr.sbin/bsdinstall/distextract/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libdialog \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libarchive \ + lib/libc \ + lib/msun \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsdinstall/distfetch/Makefile.depend b/usr.sbin/bsdinstall/distfetch/Makefile.depend new file mode 100644 index 000000000000..2c289cd2cb8f --- /dev/null +++ b/usr.sbin/bsdinstall/distfetch/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libdialog \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libfetch \ + lib/msun \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsdinstall/partedit/Makefile.depend b/usr.sbin/bsdinstall/partedit/Makefile.depend new file mode 100644 index 000000000000..2ec2bb407065 --- /dev/null +++ b/usr.sbin/bsdinstall/partedit/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libdialog \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + lib/libutil \ + lib/msun \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsnmpd/bsnmpd/Makefile.depend b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend new file mode 100644 index 000000000000..6b34d2938a72 --- /dev/null +++ b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend @@ -0,0 +1,51 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbegemot \ + lib/libbsnmp/libbsnmp \ + lib/libc \ + lib/libwrap \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +action.o: oid.h +action.o: tree.h +action.po: oid.h +action.po: tree.h +config.o: tree.h +config.po: tree.h +export.o: tree.h +export.po: tree.h +main.o: oid.h +main.o: tree.h +main.po: oid.h +main.po: tree.h +trans_lsock.o: oid.h +trans_lsock.o: tree.h +trans_lsock.po: oid.h +trans_lsock.po: tree.h +trans_udp.o: oid.h +trans_udp.o: tree.h +trans_udp.po: oid.h +trans_udp.po: tree.h +trap.o: oid.h +trap.o: tree.h +trap.po: oid.h +trap.po: tree.h +tree.o: tree.c +tree.o: tree.h +tree.po: tree.c +tree.po: tree.h +.endif diff --git a/usr.sbin/bsnmpd/gensnmptree/Makefile.depend b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsnmpd/modules/Makefile.depend b/usr.sbin/bsnmpd/modules/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/bsnmpd/modules/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend new file mode 100644 index 000000000000..6c0e8422706d --- /dev/null +++ b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libbsnmp/libbsnmp \ + usr.sbin/bsnmpd/modules \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +atm_sys.So: atm_oid.h +atm_sys.So: atm_tree.h +atm_sys.po: atm_oid.h +atm_sys.po: atm_tree.h +atm_tree.So: atm_tree.c +atm_tree.So: atm_tree.h +atm_tree.po: atm_tree.c +atm_tree.po: atm_tree.h +snmp_atm.So: atm_oid.h +snmp_atm.So: atm_tree.h +snmp_atm.po: atm_oid.h +snmp_atm.po: atm_tree.h +.endif diff --git a/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend new file mode 100644 index 000000000000..639923467f6b --- /dev/null +++ b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend @@ -0,0 +1,38 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libbsnmp/libbsnmp \ + usr.sbin/bsnmpd/modules \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +bridge_addrs.So: bridge_tree.h +bridge_addrs.po: bridge_tree.h +bridge_if.So: bridge_oid.h +bridge_if.So: bridge_tree.h +bridge_if.po: bridge_oid.h +bridge_if.po: bridge_tree.h +bridge_pf.So: bridge_tree.h +bridge_pf.po: bridge_tree.h +bridge_port.So: bridge_tree.h +bridge_port.po: bridge_tree.h +bridge_snmp.So: bridge_oid.h +bridge_snmp.So: bridge_tree.h +bridge_snmp.po: bridge_oid.h +bridge_snmp.po: bridge_tree.h +bridge_sys.So: bridge_tree.h +bridge_sys.po: bridge_tree.h +bridge_tree.So: bridge_tree.c +bridge_tree.So: bridge_tree.h +bridge_tree.po: bridge_tree.c +bridge_tree.po: bridge_tree.h +.endif diff --git a/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend new file mode 100644 index 000000000000..ea8cdcff5518 --- /dev/null +++ b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend @@ -0,0 +1,79 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libbsnmp/libbsnmp \ + lib/libdevinfo \ + lib/libgeom \ + lib/libkvm \ + lib/libmemstat \ + lib/msun \ + usr.sbin/bsnmpd/modules \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +hostres_begemot.So: hostres_oid.h +hostres_begemot.So: hostres_tree.h +hostres_begemot.po: hostres_oid.h +hostres_begemot.po: hostres_tree.h +hostres_device_tbl.So: hostres_oid.h +hostres_device_tbl.So: hostres_tree.h +hostres_device_tbl.po: hostres_oid.h +hostres_device_tbl.po: hostres_tree.h +hostres_diskstorage_tbl.So: hostres_oid.h +hostres_diskstorage_tbl.So: hostres_tree.h +hostres_diskstorage_tbl.po: hostres_oid.h +hostres_diskstorage_tbl.po: hostres_tree.h +hostres_fs_tbl.So: hostres_oid.h +hostres_fs_tbl.So: hostres_tree.h +hostres_fs_tbl.po: hostres_oid.h +hostres_fs_tbl.po: hostres_tree.h +hostres_network_tbl.So: hostres_oid.h +hostres_network_tbl.So: hostres_tree.h +hostres_network_tbl.po: hostres_oid.h +hostres_network_tbl.po: hostres_tree.h +hostres_partition_tbl.So: hostres_oid.h +hostres_partition_tbl.So: hostres_tree.h +hostres_partition_tbl.po: hostres_oid.h +hostres_partition_tbl.po: hostres_tree.h +hostres_printer_tbl.So: hostres_oid.h +hostres_printer_tbl.So: hostres_tree.h +hostres_printer_tbl.po: hostres_oid.h +hostres_printer_tbl.po: hostres_tree.h +hostres_processor_tbl.So: hostres_oid.h +hostres_processor_tbl.So: hostres_tree.h +hostres_processor_tbl.po: hostres_oid.h +hostres_processor_tbl.po: hostres_tree.h +hostres_scalars.So: hostres_oid.h +hostres_scalars.So: hostres_tree.h +hostres_scalars.po: hostres_oid.h +hostres_scalars.po: hostres_tree.h +hostres_snmp.So: hostres_oid.h +hostres_snmp.So: hostres_tree.h +hostres_snmp.po: hostres_oid.h +hostres_snmp.po: hostres_tree.h +hostres_storage_tbl.So: hostres_oid.h +hostres_storage_tbl.So: hostres_tree.h +hostres_storage_tbl.po: hostres_oid.h +hostres_storage_tbl.po: hostres_tree.h +hostres_swinstalled_tbl.So: hostres_oid.h +hostres_swinstalled_tbl.So: hostres_tree.h +hostres_swinstalled_tbl.po: hostres_oid.h +hostres_swinstalled_tbl.po: hostres_tree.h +hostres_swrun_tbl.So: hostres_oid.h +hostres_swrun_tbl.So: hostres_tree.h +hostres_swrun_tbl.po: hostres_oid.h +hostres_swrun_tbl.po: hostres_tree.h +hostres_tree.So: hostres_tree.c +hostres_tree.So: hostres_tree.h +hostres_tree.po: hostres_tree.c +hostres_tree.po: hostres_tree.h +.endif diff --git a/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend new file mode 100644 index 000000000000..118a7bd2d1bb --- /dev/null +++ b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend @@ -0,0 +1,68 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libbsnmp/libbsnmp \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +mibII.So: mibII_oid.h +mibII.So: mibII_tree.h +mibII.po: mibII_oid.h +mibII.po: mibII_tree.h +mibII_begemot.So: mibII_oid.h +mibII_begemot.So: mibII_tree.h +mibII_begemot.po: mibII_oid.h +mibII_begemot.po: mibII_tree.h +mibII_ifmib.So: mibII_oid.h +mibII_ifmib.So: mibII_tree.h +mibII_ifmib.po: mibII_oid.h +mibII_ifmib.po: mibII_tree.h +mibII_ifstack.So: mibII_tree.h +mibII_ifstack.po: mibII_tree.h +mibII_interfaces.So: mibII_oid.h +mibII_interfaces.So: mibII_tree.h +mibII_interfaces.po: mibII_oid.h +mibII_interfaces.po: mibII_tree.h +mibII_ip.So: mibII_oid.h +mibII_ip.So: mibII_tree.h +mibII_ip.po: mibII_oid.h +mibII_ip.po: mibII_tree.h +mibII_ipaddr.So: mibII_oid.h +mibII_ipaddr.So: mibII_tree.h +mibII_ipaddr.po: mibII_oid.h +mibII_ipaddr.po: mibII_tree.h +mibII_nettomedia.So: mibII_oid.h +mibII_nettomedia.So: mibII_tree.h +mibII_nettomedia.po: mibII_oid.h +mibII_nettomedia.po: mibII_tree.h +mibII_rcvaddr.So: mibII_oid.h +mibII_rcvaddr.So: mibII_tree.h +mibII_rcvaddr.po: mibII_oid.h +mibII_rcvaddr.po: mibII_tree.h +mibII_route.So: mibII_oid.h +mibII_route.So: mibII_tree.h +mibII_route.po: mibII_oid.h +mibII_route.po: mibII_tree.h +mibII_tcp.So: mibII_oid.h +mibII_tcp.So: mibII_tree.h +mibII_tcp.po: mibII_oid.h +mibII_tcp.po: mibII_tree.h +mibII_tree.So: mibII_tree.c +mibII_tree.So: mibII_tree.h +mibII_tree.po: mibII_tree.c +mibII_tree.po: mibII_tree.h +mibII_udp.So: mibII_oid.h +mibII_udp.So: mibII_tree.h +mibII_udp.po: mibII_oid.h +mibII_udp.po: mibII_tree.h +.endif diff --git a/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend new file mode 100644 index 000000000000..e5425f3914ce --- /dev/null +++ b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libbsnmp/libbsnmp \ + lib/libnetgraph \ + usr.sbin/bsnmpd/modules \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +netgraph_tree.So: netgraph_tree.c +netgraph_tree.So: netgraph_tree.h +netgraph_tree.po: netgraph_tree.c +netgraph_tree.po: netgraph_tree.h +snmp_netgraph.So: netgraph_oid.h +snmp_netgraph.So: netgraph_tree.h +snmp_netgraph.po: netgraph_oid.h +snmp_netgraph.po: netgraph_tree.h +.endif diff --git a/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend new file mode 100644 index 000000000000..a1ecc91be81c --- /dev/null +++ b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libbsnmp/libbsnmp \ + usr.sbin/bsnmpd/modules \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +pf_snmp.So: pf_oid.h +pf_snmp.So: pf_tree.h +pf_snmp.po: pf_oid.h +pf_snmp.po: pf_tree.h +pf_tree.So: pf_tree.c +pf_tree.So: pf_tree.h +pf_tree.po: pf_tree.c +pf_tree.po: pf_tree.h +.endif diff --git a/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend new file mode 100644 index 000000000000..5d9de802d8e0 --- /dev/null +++ b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libbsnmp/libbsnmp \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +target_snmp.So: target_oid.h +target_snmp.So: target_tree.h +target_snmp.po: target_oid.h +target_snmp.po: target_tree.h +target_tree.So: target_tree.c +target_tree.So: target_tree.h +target_tree.po: target_tree.c +target_tree.po: target_tree.h +.endif diff --git a/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend new file mode 100644 index 000000000000..bf3304a0f56f --- /dev/null +++ b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libbsnmp/libbsnmp \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +usm_snmp.So: usm_oid.h +usm_snmp.So: usm_tree.h +usm_snmp.po: usm_oid.h +usm_snmp.po: usm_tree.h +usm_tree.So: usm_tree.c +usm_tree.So: usm_tree.h +usm_tree.po: usm_tree.c +usm_tree.po: usm_tree.h +.endif diff --git a/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend new file mode 100644 index 000000000000..0c0862996a04 --- /dev/null +++ b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libbsnmp/libbsnmp \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +vacm_snmp.So: vacm_oid.h +vacm_snmp.So: vacm_tree.h +vacm_snmp.po: vacm_oid.h +vacm_snmp.po: vacm_tree.h +vacm_tree.So: vacm_tree.c +vacm_tree.So: vacm_tree.h +vacm_tree.po: vacm_tree.c +vacm_tree.po: vacm_tree.h +.endif diff --git a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend new file mode 100644 index 000000000000..3c1e8721640d --- /dev/null +++ b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libbsnmp/libbsnmp \ + usr.sbin/bsnmpd/modules \ + usr.sbin/bsnmpd/modules/snmp_mibII \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +wlan_snmp.So: wlan_oid.h +wlan_snmp.So: wlan_tree.h +wlan_snmp.po: wlan_oid.h +wlan_snmp.po: wlan_tree.h +wlan_sys.So: wlan_tree.h +wlan_sys.po: wlan_tree.h +wlan_tree.So: wlan_tree.c +wlan_tree.So: wlan_tree.h +wlan_tree.po: wlan_tree.c +wlan_tree.po: wlan_tree.h +.endif diff --git a/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend b/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend new file mode 100644 index 000000000000..58da794aa880 --- /dev/null +++ b/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbsnmp/libbsnmp \ + lib/libc \ + secure/lib/libcrypto \ + usr.sbin/bsnmpd/tools/libbsnmptools \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend new file mode 100644 index 000000000000..05587d806300 --- /dev/null +++ b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libbsnmp/libbsnmp \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/btxld/Makefile.depend b/usr.sbin/btxld/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/btxld/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/burncd/Makefile.depend b/usr.sbin/burncd/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/burncd/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/cdcontrol/Makefile.depend b/usr.sbin/cdcontrol/Makefile.depend new file mode 100644 index 000000000000..501fd5198cb2 --- /dev/null +++ b/usr.sbin/cdcontrol/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/chkgrp/Makefile.depend b/usr.sbin/chkgrp/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/chkgrp/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/chown/Makefile.depend b/usr.sbin/chown/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/chown/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/chroot/Makefile.depend b/usr.sbin/chroot/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/chroot/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ckdist/Makefile.depend b/usr.sbin/ckdist/Makefile.depend new file mode 100644 index 000000000000..7520d5dc8b42 --- /dev/null +++ b/usr.sbin/ckdist/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/clear_locks/Makefile.depend b/usr.sbin/clear_locks/Makefile.depend new file mode 100644 index 000000000000..60fe900ca5e6 --- /dev/null +++ b/usr.sbin/clear_locks/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/config/Makefile.depend b/usr.sbin/config/Makefile.depend new file mode 100644 index 000000000000..d4148407d3bc --- /dev/null +++ b/usr.sbin/config/Makefile.depend @@ -0,0 +1,36 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsbuf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +config.o: config.c +config.po: config.c +kernconf.o: kernconf.c +kernconf.po: kernconf.c +lang.o: lang.c +lang.o: y.tab.h +lang.po: lang.c +lang.po: y.tab.h +main.o: y.tab.h +main.po: y.tab.h +mkheaders.o: y.tab.h +mkheaders.po: y.tab.h +mkmakefile.o: y.tab.h +mkmakefile.po: y.tab.h +mkoptions.o: y.tab.h +mkoptions.po: y.tab.h +.endif diff --git a/usr.sbin/cpucontrol/Makefile.depend b/usr.sbin/cpucontrol/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/cpucontrol/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/crashinfo/Makefile.depend b/usr.sbin/crashinfo/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/crashinfo/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/cron/cron/Makefile.depend b/usr.sbin/cron/cron/Makefile.depend new file mode 100644 index 000000000000..e033fdf50d11 --- /dev/null +++ b/usr.sbin/cron/cron/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ + lib/libutil \ + usr.sbin/cron/lib \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/cron/crontab/Makefile.depend b/usr.sbin/cron/crontab/Makefile.depend new file mode 100644 index 000000000000..faa54bde8fc6 --- /dev/null +++ b/usr.sbin/cron/crontab/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/libutil \ + usr.sbin/cron/lib \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/cron/lib/Makefile.depend b/usr.sbin/cron/lib/Makefile.depend new file mode 100644 index 000000000000..4046f0e610b3 --- /dev/null +++ b/usr.sbin/cron/lib/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/crunch/crunchgen/Makefile.depend b/usr.sbin/crunch/crunchgen/Makefile.depend new file mode 100644 index 000000000000..56c209eba570 --- /dev/null +++ b/usr.sbin/crunch/crunchgen/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +crunched_skel.o: crunched_skel.c +crunched_skel.po: crunched_skel.c +.endif diff --git a/usr.sbin/crunch/crunchide/Makefile.depend b/usr.sbin/crunch/crunchide/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/crunch/crunchide/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/crunch/examples/Makefile b/usr.sbin/crunch/examples/Makefile index 6dd49acc1a15..120830196c66 100644 --- a/usr.sbin/crunch/examples/Makefile +++ b/usr.sbin/crunch/examples/Makefile @@ -19,14 +19,14 @@ all: $(CRUNCHED) exe: $(CRUNCHED) $(OUTPUTS): $(CONF) - crunchgen ${.CURDIR}/$(CONF) + MAKE=${MAKE} crunchgen ${.CURDIR}/$(CONF) $(CRUNCHED): $(OUTPUTS) submake submake: - make -f $(OUTMK) + ${MAKE} -f $(OUTMK) objs: - make -f $(OUTMK) objs + ${MAKE} -f $(OUTMK) objs cleandir: rm -f $(CLEANDIRFILES) diff --git a/usr.sbin/ctladm/Makefile.depend b/usr.sbin/ctladm/Makefile.depend new file mode 100644 index 000000000000..7dcf1b85da79 --- /dev/null +++ b/usr.sbin/ctladm/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcam \ + lib/libexpat \ + lib/libsbuf \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ctm/ctm/Makefile.depend b/usr.sbin/ctm/ctm/Makefile.depend new file mode 100644 index 000000000000..7520d5dc8b42 --- /dev/null +++ b/usr.sbin/ctm/ctm/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ctm/ctm_dequeue/Makefile.depend b/usr.sbin/ctm/ctm_dequeue/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/ctm/ctm_dequeue/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ctm/ctm_rmail/Makefile.depend b/usr.sbin/ctm/ctm_rmail/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/ctm/ctm_rmail/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ctm/ctm_smail/Makefile.depend b/usr.sbin/ctm/ctm_smail/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/ctm/ctm_smail/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/daemon/Makefile.depend b/usr.sbin/daemon/Makefile.depend new file mode 100644 index 000000000000..2530420caee3 --- /dev/null +++ b/usr.sbin/daemon/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/dconschat/Makefile.depend b/usr.sbin/dconschat/Makefile.depend new file mode 100644 index 000000000000..6e3782ccf777 --- /dev/null +++ b/usr.sbin/dconschat/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + lib/libtelnet \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ddns-confgen/Makefile.depend b/usr.sbin/ddns-confgen/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/ddns-confgen/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/devinfo/Makefile.depend b/usr.sbin/devinfo/Makefile.depend new file mode 100644 index 000000000000..36a5a328d56d --- /dev/null +++ b/usr.sbin/devinfo/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libdevinfo \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/digictl/Makefile.depend b/usr.sbin/digictl/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/digictl/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/diskinfo/Makefile.depend b/usr.sbin/diskinfo/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.sbin/diskinfo/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/dnssec-dsfromkey/Makefile.depend b/usr.sbin/dnssec-dsfromkey/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/dnssec-dsfromkey/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/dnssec-keyfromlabel/Makefile.depend b/usr.sbin/dnssec-keyfromlabel/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/dnssec-keyfromlabel/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/dnssec-keygen/Makefile.depend b/usr.sbin/dnssec-keygen/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/dnssec-keygen/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/dnssec-revoke/Makefile.depend b/usr.sbin/dnssec-revoke/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/dnssec-revoke/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/dnssec-settime/Makefile.depend b/usr.sbin/dnssec-settime/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/dnssec-settime/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/dnssec-signzone/Makefile.depend b/usr.sbin/dnssec-signzone/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/dnssec-signzone/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/dumpcis/Makefile.depend b/usr.sbin/dumpcis/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/dumpcis/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/editmap/Makefile.depend b/usr.sbin/editmap/Makefile.depend new file mode 100644 index 000000000000..48902cc11a52 --- /dev/null +++ b/usr.sbin/editmap/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsm \ + lib/libsmdb \ + lib/libsmutil \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +editmap.o: sm_os.h +editmap.po: sm_os.h +.endif diff --git a/usr.sbin/edquota/Makefile.depend b/usr.sbin/edquota/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.sbin/edquota/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/eeprom/Makefile.depend b/usr.sbin/eeprom/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/eeprom/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/extattr/Makefile.depend b/usr.sbin/extattr/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.sbin/extattr/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/extattrctl/Makefile.depend b/usr.sbin/extattrctl/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.sbin/extattrctl/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/faithd/Makefile.depend b/usr.sbin/faithd/Makefile.depend new file mode 100644 index 000000000000..c262920aba6b --- /dev/null +++ b/usr.sbin/faithd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/fdcontrol/Makefile.depend b/usr.sbin/fdcontrol/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/fdcontrol/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/fdformat/Makefile.depend b/usr.sbin/fdformat/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/fdformat/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/fdread/Makefile.depend b/usr.sbin/fdread/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/fdread/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/fdwrite/Makefile.depend b/usr.sbin/fdwrite/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/fdwrite/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/fifolog/fifolog_create/Makefile.depend b/usr.sbin/fifolog/fifolog_create/Makefile.depend new file mode 100644 index 000000000000..46df9bbb8bdd --- /dev/null +++ b/usr.sbin/fifolog/fifolog_create/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + usr.sbin/fifolog/lib \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/fifolog/fifolog_reader/Makefile.depend b/usr.sbin/fifolog/fifolog_reader/Makefile.depend new file mode 100644 index 000000000000..5b0d32e507a2 --- /dev/null +++ b/usr.sbin/fifolog/fifolog_reader/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + lib/libz \ + usr.sbin/fifolog/lib \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/fifolog/fifolog_writer/Makefile.depend b/usr.sbin/fifolog/fifolog_writer/Makefile.depend new file mode 100644 index 000000000000..5b0d32e507a2 --- /dev/null +++ b/usr.sbin/fifolog/fifolog_writer/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + lib/libz \ + usr.sbin/fifolog/lib \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/fifolog/lib/Makefile.depend b/usr.sbin/fifolog/lib/Makefile.depend new file mode 100644 index 000000000000..e28547c08674 --- /dev/null +++ b/usr.sbin/fifolog/lib/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +getdate.o: getdate.c +getdate.po: getdate.c +.endif diff --git a/usr.sbin/flowctl/Makefile.depend b/usr.sbin/flowctl/Makefile.depend new file mode 100644 index 000000000000..18356441c25f --- /dev/null +++ b/usr.sbin/flowctl/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libnetgraph \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/freebsd-update/Makefile.depend b/usr.sbin/freebsd-update/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/freebsd-update/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend b/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend new file mode 100644 index 000000000000..dd343ad89b5e --- /dev/null +++ b/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + usr.sbin/ftp-proxy/libevent \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ftp-proxy/libevent/Makefile.depend b/usr.sbin/ftp-proxy/libevent/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/usr.sbin/ftp-proxy/libevent/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/fwcontrol/Makefile.depend b/usr.sbin/fwcontrol/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/fwcontrol/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/genrandom/Makefile.depend b/usr.sbin/genrandom/Makefile.depend new file mode 100644 index 000000000000..418e04108b2d --- /dev/null +++ b/usr.sbin/genrandom/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/getfmac/Makefile.depend b/usr.sbin/getfmac/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/getfmac/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/getpmac/Makefile.depend b/usr.sbin/getpmac/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/getpmac/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/gpioctl/Makefile.depend b/usr.sbin/gpioctl/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/gpioctl/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/gssd/Makefile.depend b/usr.sbin/gssd/Makefile.depend new file mode 100644 index 000000000000..cdbb52527644 --- /dev/null +++ b/usr.sbin/gssd/Makefile.depend @@ -0,0 +1,34 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/gssapi \ + include/rpc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgssapi \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +gssd.o: gssd.h +gssd.po: gssd.h +gssd_prot.o: gssd.h +gssd_prot.po: gssd.h +gssd_svc.o: gssd.h +gssd_svc.o: gssd_svc.c +gssd_svc.po: gssd.h +gssd_svc.po: gssd_svc.c +gssd_xdr.o: gssd.h +gssd_xdr.o: gssd_xdr.c +gssd_xdr.po: gssd.h +gssd_xdr.po: gssd_xdr.c +.endif diff --git a/usr.sbin/gstat/Makefile.depend b/usr.sbin/gstat/Makefile.depend new file mode 100644 index 000000000000..b5ed1307c69b --- /dev/null +++ b/usr.sbin/gstat/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libdevstat \ + lib/libedit \ + lib/libexpat \ + lib/libgeom \ + lib/libkvm \ + lib/libsbuf \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/i2c/Makefile.depend b/usr.sbin/i2c/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/i2c/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ifmcstat/Makefile.depend b/usr.sbin/ifmcstat/Makefile.depend new file mode 100644 index 000000000000..e6478bb43262 --- /dev/null +++ b/usr.sbin/ifmcstat/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/inetd/Makefile.depend b/usr.sbin/inetd/Makefile.depend new file mode 100644 index 000000000000..e9ba4b9771e2 --- /dev/null +++ b/usr.sbin/inetd/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipsec \ + lib/libutil \ + lib/libwrap \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/iostat/Makefile.depend b/usr.sbin/iostat/Makefile.depend new file mode 100644 index 000000000000..022357fe8b95 --- /dev/null +++ b/usr.sbin/iostat/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libdevstat \ + lib/libkvm \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ip6addrctl/Makefile.depend b/usr.sbin/ip6addrctl/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/ip6addrctl/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ipfwpcap/Makefile.depend b/usr.sbin/ipfwpcap/Makefile.depend new file mode 100644 index 000000000000..447f53247e78 --- /dev/null +++ b/usr.sbin/ipfwpcap/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpcap \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/isc-hmac-fixup/Makefile.depend b/usr.sbin/isc-hmac-fixup/Makefile.depend new file mode 100644 index 000000000000..418e04108b2d --- /dev/null +++ b/usr.sbin/isc-hmac-fixup/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/jail/Makefile.depend b/usr.sbin/jail/Makefile.depend new file mode 100644 index 000000000000..e3e21598d67d --- /dev/null +++ b/usr.sbin/jail/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libjail \ + lib/libkvm \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +jaillex.o: jaillex.c +jaillex.o: y.tab.h +jaillex.po: jaillex.c +jaillex.po: y.tab.h +jailparse.o: jailparse.c +jailparse.po: jailparse.c +.endif diff --git a/usr.sbin/jexec/Makefile.depend b/usr.sbin/jexec/Makefile.depend new file mode 100644 index 000000000000..5c682eef6f2e --- /dev/null +++ b/usr.sbin/jexec/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libjail \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/jls/Makefile.depend b/usr.sbin/jls/Makefile.depend new file mode 100644 index 000000000000..3d5f6abdbf27 --- /dev/null +++ b/usr.sbin/jls/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libjail \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/kbdcontrol/Makefile.depend b/usr.sbin/kbdcontrol/Makefile.depend new file mode 100644 index 000000000000..37e3bbdd1ba5 --- /dev/null +++ b/usr.sbin/kbdcontrol/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +lex.o: lex.c +lex.po: lex.c +.endif diff --git a/usr.sbin/kbdmap/Makefile.depend b/usr.sbin/kbdmap/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/kbdmap/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/keyserv/Makefile.depend b/usr.sbin/keyserv/Makefile.depend new file mode 100644 index 000000000000..e5b3b8792c02 --- /dev/null +++ b/usr.sbin/keyserv/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmp \ + lib/librpcsvc \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +crypt_server.o: crypt.h +crypt_server.po: crypt.h +crypt_svc.o: crypt.h +crypt_svc.o: crypt_svc.c +crypt_svc.po: crypt.h +crypt_svc.po: crypt_svc.c +.endif diff --git a/usr.sbin/kgmon/Makefile.depend b/usr.sbin/kgmon/Makefile.depend new file mode 100644 index 000000000000..553674c09429 --- /dev/null +++ b/usr.sbin/kgmon/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/kgzip/Makefile.depend b/usr.sbin/kgzip/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/kgzip/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/kldxref/Makefile.depend b/usr.sbin/kldxref/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/kldxref/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lastlogin/Makefile.depend b/usr.sbin/lastlogin/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/lastlogin/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lmcconfig/Makefile.depend b/usr.sbin/lmcconfig/Makefile.depend new file mode 100644 index 000000000000..e6d80d34e638 --- /dev/null +++ b/usr.sbin/lmcconfig/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libnetgraph \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/chkprintcap/Makefile.depend b/usr.sbin/lpr/chkprintcap/Makefile.depend new file mode 100644 index 000000000000..2eeeb7a95021 --- /dev/null +++ b/usr.sbin/lpr/chkprintcap/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + usr.sbin/lpr/common_source \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/common_source/Makefile.depend b/usr.sbin/lpr/common_source/Makefile.depend new file mode 100644 index 000000000000..e54ec8c9f8a4 --- /dev/null +++ b/usr.sbin/lpr/common_source/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/filters.ru/Makefile.depend b/usr.sbin/lpr/filters.ru/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/lpr/filters.ru/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/filters/Makefile.depend b/usr.sbin/lpr/filters/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/lpr/filters/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/lp/Makefile.depend b/usr.sbin/lpr/lp/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/lpr/lp/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/lpc/Makefile.depend b/usr.sbin/lpr/lpc/Makefile.depend new file mode 100644 index 000000000000..529eecd2ca2d --- /dev/null +++ b/usr.sbin/lpr/lpc/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/ncurses/ncurses \ + usr.sbin/lpr/common_source \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/lpd/Makefile.depend b/usr.sbin/lpr/lpd/Makefile.depend new file mode 100644 index 000000000000..a8a1c2bd1a15 --- /dev/null +++ b/usr.sbin/lpr/lpd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + usr.sbin/lpr/common_source \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/lpq/Makefile.depend b/usr.sbin/lpr/lpq/Makefile.depend new file mode 100644 index 000000000000..2eeeb7a95021 --- /dev/null +++ b/usr.sbin/lpr/lpq/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + usr.sbin/lpr/common_source \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/lpr/Makefile.depend b/usr.sbin/lpr/lpr/Makefile.depend new file mode 100644 index 000000000000..2eeeb7a95021 --- /dev/null +++ b/usr.sbin/lpr/lpr/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + usr.sbin/lpr/common_source \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/lprm/Makefile.depend b/usr.sbin/lpr/lprm/Makefile.depend new file mode 100644 index 000000000000..2eeeb7a95021 --- /dev/null +++ b/usr.sbin/lpr/lprm/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + usr.sbin/lpr/common_source \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/lptest/Makefile.depend b/usr.sbin/lpr/lptest/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.sbin/lpr/lptest/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lpr/pac/Makefile.depend b/usr.sbin/lpr/pac/Makefile.depend new file mode 100644 index 000000000000..2eeeb7a95021 --- /dev/null +++ b/usr.sbin/lpr/pac/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + usr.sbin/lpr/common_source \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/lptcontrol/Makefile.depend b/usr.sbin/lptcontrol/Makefile.depend new file mode 100644 index 000000000000..ac1b1319c7ef --- /dev/null +++ b/usr.sbin/lptcontrol/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mailstats/Makefile.depend b/usr.sbin/mailstats/Makefile.depend new file mode 100644 index 000000000000..19ee02b866e4 --- /dev/null +++ b/usr.sbin/mailstats/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsm \ + lib/libsmutil \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +mailstats.o: sm_os.h +mailstats.po: sm_os.h +.endif diff --git a/usr.sbin/mailwrapper/Makefile.depend b/usr.sbin/mailwrapper/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.sbin/mailwrapper/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/makefs/Makefile.depend b/usr.sbin/makefs/Makefile.depend new file mode 100644 index 000000000000..887c9bdcd4fd --- /dev/null +++ b/usr.sbin/makefs/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsbuf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/makemap/Makefile.depend b/usr.sbin/makemap/Makefile.depend new file mode 100644 index 000000000000..c1dc46ad5753 --- /dev/null +++ b/usr.sbin/makemap/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsm \ + lib/libsmdb \ + lib/libsmutil \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +makemap.o: sm_os.h +makemap.po: sm_os.h +.endif diff --git a/usr.sbin/manctl/Makefile.depend b/usr.sbin/manctl/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/manctl/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/memcontrol/Makefile.depend b/usr.sbin/memcontrol/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/memcontrol/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mergemaster/Makefile.depend b/usr.sbin/mergemaster/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/mergemaster/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mfiutil/Makefile.depend b/usr.sbin/mfiutil/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.sbin/mfiutil/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mixer/Makefile.depend b/usr.sbin/mixer/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/mixer/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mld6query/Makefile.depend b/usr.sbin/mld6query/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/mld6query/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mlxcontrol/Makefile.depend b/usr.sbin/mlxcontrol/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/mlxcontrol/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mount_nwfs/Makefile.depend b/usr.sbin/mount_nwfs/Makefile.depend new file mode 100644 index 000000000000..bfecf094a765 --- /dev/null +++ b/usr.sbin/mount_nwfs/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipx \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mount_portalfs/Makefile.depend b/usr.sbin/mount_portalfs/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/mount_portalfs/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mount_smbfs/Makefile.depend b/usr.sbin/mount_smbfs/Makefile.depend new file mode 100644 index 000000000000..18a3d5f32450 --- /dev/null +++ b/usr.sbin/mount_smbfs/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkiconv \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mountd/Makefile.depend b/usr.sbin/mountd/Makefile.depend new file mode 100644 index 000000000000..7ca71becb366 --- /dev/null +++ b/usr.sbin/mountd/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/moused/Makefile.depend b/usr.sbin/moused/Makefile.depend new file mode 100644 index 000000000000..8825ffd2082f --- /dev/null +++ b/usr.sbin/moused/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mptable/Makefile.depend b/usr.sbin/mptable/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/mptable/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mptutil/Makefile.depend b/usr.sbin/mptutil/Makefile.depend new file mode 100644 index 000000000000..f9f359744bf9 --- /dev/null +++ b/usr.sbin/mptutil/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcam \ + lib/libsbuf \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mtest/Makefile.depend b/usr.sbin/mtest/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/mtest/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/mtree/Makefile.depend b/usr.sbin/mtree/Makefile.depend new file mode 100644 index 000000000000..7520d5dc8b42 --- /dev/null +++ b/usr.sbin/mtree/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/named-checkconf/Makefile.depend b/usr.sbin/named-checkconf/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/named-checkconf/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/named-checkzone/Makefile.depend b/usr.sbin/named-checkzone/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/named-checkzone/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/named-journalprint/Makefile.depend b/usr.sbin/named-journalprint/Makefile.depend new file mode 100644 index 000000000000..418e04108b2d --- /dev/null +++ b/usr.sbin/named-journalprint/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/named/Makefile.depend b/usr.sbin/named/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/named/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ndiscvt/Makefile.depend b/usr.sbin/ndiscvt/Makefile.depend new file mode 100644 index 000000000000..ee58cc4b340f --- /dev/null +++ b/usr.sbin/ndiscvt/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +inf-parse.o: inf-parse.c +inf-parse.po: inf-parse.c +inf-token.o: inf-token.c +inf-token.o: y.tab.h +inf-token.po: inf-token.c +inf-token.po: y.tab.h +.endif diff --git a/usr.sbin/ndp/Makefile.depend b/usr.sbin/ndp/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/ndp/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/newsyslog/Makefile.depend b/usr.sbin/newsyslog/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/newsyslog/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/nfscbd/Makefile.depend b/usr.sbin/nfscbd/Makefile.depend new file mode 100644 index 000000000000..1832799b7892 --- /dev/null +++ b/usr.sbin/nfscbd/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/nfsd/Makefile.depend b/usr.sbin/nfsd/Makefile.depend new file mode 100644 index 000000000000..a3e1b44c73f2 --- /dev/null +++ b/usr.sbin/nfsd/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/nfsdumpstate/Makefile.depend b/usr.sbin/nfsdumpstate/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/nfsdumpstate/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/nfsrevoke/Makefile.depend b/usr.sbin/nfsrevoke/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/nfsrevoke/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/nfsuserd/Makefile.depend b/usr.sbin/nfsuserd/Makefile.depend new file mode 100644 index 000000000000..1832799b7892 --- /dev/null +++ b/usr.sbin/nfsuserd/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ngctl/Makefile.depend b/usr.sbin/ngctl/Makefile.depend new file mode 100644 index 000000000000..90942ad6b8d0 --- /dev/null +++ b/usr.sbin/ngctl/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/libnetgraph \ + lib/libthr \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/nghook/Makefile.depend b/usr.sbin/nghook/Makefile.depend new file mode 100644 index 000000000000..e6d80d34e638 --- /dev/null +++ b/usr.sbin/nghook/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libnetgraph \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/nologin/Makefile.depend b/usr.sbin/nologin/Makefile.depend new file mode 100644 index 000000000000..f5418c0fbe7a --- /dev/null +++ b/usr.sbin/nologin/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/nscd/Makefile.depend b/usr.sbin/nscd/Makefile.depend new file mode 100644 index 000000000000..0853258e2391 --- /dev/null +++ b/usr.sbin/nscd/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libthr \ + lib/libutil \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/nsec3hash/Makefile.depend b/usr.sbin/nsec3hash/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/nsec3hash/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ntp/libntp/Makefile.depend b/usr.sbin/ntp/libntp/Makefile.depend new file mode 100644 index 000000000000..09476febac11 --- /dev/null +++ b/usr.sbin/ntp/libntp/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/libmd \ + lib/msun \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ntp/libopts/Makefile.depend b/usr.sbin/ntp/libopts/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/usr.sbin/ntp/libopts/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ntp/libparse/Makefile.depend b/usr.sbin/ntp/libparse/Makefile.depend new file mode 100644 index 000000000000..db05d206adc7 --- /dev/null +++ b/usr.sbin/ntp/libparse/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/msun \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ntp/ntp-keygen/Makefile.depend b/usr.sbin/ntp/ntp-keygen/Makefile.depend new file mode 100644 index 000000000000..b26d4df06498 --- /dev/null +++ b/usr.sbin/ntp/ntp-keygen/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + secure/lib/libcrypto \ + usr.sbin/ntp/libntp \ + usr.sbin/ntp/libopts \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ntp/ntpd/Makefile.depend b/usr.sbin/ntp/ntpd/Makefile.depend new file mode 100644 index 000000000000..72d3eb6ed628 --- /dev/null +++ b/usr.sbin/ntp/ntpd/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/librt \ + lib/msun \ + secure/lib/libcrypto \ + usr.sbin/ntp/libntp \ + usr.sbin/ntp/libopts \ + usr.sbin/ntp/libparse \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +version.o: version.c +version.po: version.c +.endif diff --git a/usr.sbin/ntp/ntpdate/Makefile.depend b/usr.sbin/ntp/ntpdate/Makefile.depend new file mode 100644 index 000000000000..b27014c46e38 --- /dev/null +++ b/usr.sbin/ntp/ntpdate/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/librt \ + lib/msun \ + secure/lib/libcrypto \ + usr.sbin/ntp/libntp \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +version.o: version.c +version.po: version.c +.endif diff --git a/usr.sbin/ntp/ntpdc/Makefile.depend b/usr.sbin/ntp/ntpdc/Makefile.depend new file mode 100644 index 000000000000..80ce108f9e44 --- /dev/null +++ b/usr.sbin/ntp/ntpdc/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/libedit/edit/readline \ + lib/libmd \ + lib/msun \ + lib/ncurses/ncurses \ + secure/lib/libcrypto \ + usr.sbin/ntp/libntp \ + usr.sbin/ntp/libopts \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +version.o: version.c +version.po: version.c +.endif diff --git a/usr.sbin/ntp/ntpq/Makefile.depend b/usr.sbin/ntp/ntpq/Makefile.depend new file mode 100644 index 000000000000..80ce108f9e44 --- /dev/null +++ b/usr.sbin/ntp/ntpq/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/libedit/edit/readline \ + lib/libmd \ + lib/msun \ + lib/ncurses/ncurses \ + secure/lib/libcrypto \ + usr.sbin/ntp/libntp \ + usr.sbin/ntp/libopts \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +version.o: version.c +version.po: version.c +.endif diff --git a/usr.sbin/ntp/ntptime/Makefile.depend b/usr.sbin/ntp/ntptime/Makefile.depend new file mode 100644 index 000000000000..d4203a9c7d60 --- /dev/null +++ b/usr.sbin/ntp/ntptime/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + usr.sbin/ntp/libntp \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ntp/sntp/Makefile.depend b/usr.sbin/ntp/sntp/Makefile.depend new file mode 100644 index 000000000000..84c4708746dc --- /dev/null +++ b/usr.sbin/ntp/sntp/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + usr.sbin/ntp/libopts \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ofwdump/Makefile.depend b/usr.sbin/ofwdump/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/ofwdump/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend b/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pc-sysinstall/backend-query/Makefile.depend b/usr.sbin/pc-sysinstall/backend-query/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/pc-sysinstall/backend-query/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pc-sysinstall/backend/Makefile.depend b/usr.sbin/pc-sysinstall/backend/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/pc-sysinstall/backend/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pc-sysinstall/conf/Makefile.depend b/usr.sbin/pc-sysinstall/conf/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/pc-sysinstall/conf/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend b/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pciconf/Makefile.depend b/usr.sbin/pciconf/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/pciconf/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/periodic/Makefile.depend b/usr.sbin/periodic/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/periodic/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pkg/Makefile.depend b/usr.sbin/pkg/Makefile.depend new file mode 100644 index 000000000000..b097b19022c2 --- /dev/null +++ b/usr.sbin/pkg/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libarchive \ + lib/libc \ + lib/libelf \ + lib/libfetch \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pkg_install/add/Makefile.depend b/usr.sbin/pkg_install/add/Makefile.depend new file mode 100644 index 000000000000..fa35fef447d9 --- /dev/null +++ b/usr.sbin/pkg_install/add/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libfetch \ + lib/libmd \ + lib/libutil \ + secure/lib/libcrypto \ + secure/lib/libssl \ + usr.sbin/pkg_install/lib \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pkg_install/create/Makefile.depend b/usr.sbin/pkg_install/create/Makefile.depend new file mode 100644 index 000000000000..be409ac2cef4 --- /dev/null +++ b/usr.sbin/pkg_install/create/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/libutil \ + usr.sbin/pkg_install/lib \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pkg_install/delete/Makefile.depend b/usr.sbin/pkg_install/delete/Makefile.depend new file mode 100644 index 000000000000..be409ac2cef4 --- /dev/null +++ b/usr.sbin/pkg_install/delete/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmd \ + lib/libutil \ + usr.sbin/pkg_install/lib \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pkg_install/info/Makefile.depend b/usr.sbin/pkg_install/info/Makefile.depend new file mode 100644 index 000000000000..fa35fef447d9 --- /dev/null +++ b/usr.sbin/pkg_install/info/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libfetch \ + lib/libmd \ + lib/libutil \ + secure/lib/libcrypto \ + secure/lib/libssl \ + usr.sbin/pkg_install/lib \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pkg_install/lib/Makefile.depend b/usr.sbin/pkg_install/lib/Makefile.depend new file mode 100644 index 000000000000..8d84ca1b302d --- /dev/null +++ b/usr.sbin/pkg_install/lib/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libfetch \ + lib/libmd \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pkg_install/updating/Makefile.depend b/usr.sbin/pkg_install/updating/Makefile.depend new file mode 100644 index 000000000000..fa35fef447d9 --- /dev/null +++ b/usr.sbin/pkg_install/updating/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libfetch \ + lib/libmd \ + lib/libutil \ + secure/lib/libcrypto \ + secure/lib/libssl \ + usr.sbin/pkg_install/lib \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pkg_install/version/Makefile.depend b/usr.sbin/pkg_install/version/Makefile.depend new file mode 100644 index 000000000000..fa35fef447d9 --- /dev/null +++ b/usr.sbin/pkg_install/version/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libfetch \ + lib/libmd \ + lib/libutil \ + secure/lib/libcrypto \ + secure/lib/libssl \ + usr.sbin/pkg_install/lib \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pmcannotate/Makefile.depend b/usr.sbin/pmcannotate/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/pmcannotate/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pmccontrol/Makefile.depend b/usr.sbin/pmccontrol/Makefile.depend new file mode 100644 index 000000000000..43f31ea32e04 --- /dev/null +++ b/usr.sbin/pmccontrol/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpmc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pmcstat/Makefile.depend b/usr.sbin/pmcstat/Makefile.depend new file mode 100644 index 000000000000..c2f6f6474ae6 --- /dev/null +++ b/usr.sbin/pmcstat/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libelf \ + lib/libkvm \ + lib/libpmc \ + lib/msun \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pnpinfo/Makefile.depend b/usr.sbin/pnpinfo/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/pnpinfo/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/portsnap/make_index/Makefile.depend b/usr.sbin/portsnap/make_index/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/portsnap/make_index/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/portsnap/phttpget/Makefile.depend b/usr.sbin/portsnap/phttpget/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/portsnap/phttpget/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/portsnap/portsnap/Makefile.depend b/usr.sbin/portsnap/portsnap/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/portsnap/portsnap/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/powerd/Makefile.depend b/usr.sbin/powerd/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.sbin/powerd/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ppp/Makefile.depend b/usr.sbin/ppp/Makefile.depend new file mode 100644 index 000000000000..70221369f30a --- /dev/null +++ b/usr.sbin/ppp/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libalias/libalias \ + lib/libc \ + lib/libcrypt \ + lib/libmd \ + lib/libnetgraph \ + lib/libpam/libpam \ + lib/libradius \ + lib/libutil \ + lib/libz \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pppctl/Makefile.depend b/usr.sbin/pppctl/Makefile.depend new file mode 100644 index 000000000000..bc668b210103 --- /dev/null +++ b/usr.sbin/pppctl/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/libthr \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/praliases/Makefile.depend b/usr.sbin/praliases/Makefile.depend new file mode 100644 index 000000000000..fd254a5bd975 --- /dev/null +++ b/usr.sbin/praliases/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsm \ + lib/libsmdb \ + lib/libsmutil \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +praliases.o: sm_os.h +praliases.po: sm_os.h +.endif diff --git a/usr.sbin/praudit/Makefile.depend b/usr.sbin/praudit/Makefile.depend new file mode 100644 index 000000000000..1aedff53c5fd --- /dev/null +++ b/usr.sbin/praudit/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbsm \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/procctl/Makefile.depend b/usr.sbin/procctl/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/procctl/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pstat/Makefile.depend b/usr.sbin/pstat/Makefile.depend new file mode 100644 index 000000000000..f814107df94f --- /dev/null +++ b/usr.sbin/pstat/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pw/Makefile.depend b/usr.sbin/pw/Makefile.depend new file mode 100644 index 000000000000..cf2b45501494 --- /dev/null +++ b/usr.sbin/pw/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pwd_mkdb/Makefile.depend b/usr.sbin/pwd_mkdb/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/pwd_mkdb/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/quot/Makefile.depend b/usr.sbin/quot/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/quot/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/quotaon/Makefile.depend b/usr.sbin/quotaon/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.sbin/quotaon/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rarpd/Makefile.depend b/usr.sbin/rarpd/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/rarpd/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/repquota/Makefile.depend b/usr.sbin/repquota/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.sbin/repquota/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rip6query/Makefile.depend b/usr.sbin/rip6query/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/rip6query/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rmt/Makefile.depend b/usr.sbin/rmt/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/rmt/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rndc-confgen/Makefile.depend b/usr.sbin/rndc-confgen/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/rndc-confgen/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rndc/Makefile.depend b/usr.sbin/rndc/Makefile.depend new file mode 100644 index 000000000000..78e28c0b3162 --- /dev/null +++ b/usr.sbin/rndc/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/bind/bind9 \ + lib/bind/dns \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/isccfg \ + lib/bind/lwres \ + lib/libc \ + lib/libthr \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/route6d/Makefile.depend b/usr.sbin/route6d/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/route6d/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rpc.lockd/Makefile.depend b/usr.sbin/rpc.lockd/Makefile.depend new file mode 100644 index 000000000000..5b4792291e0d --- /dev/null +++ b/usr.sbin/rpc.lockd/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +nlm_prot_svc.o: nlm_prot_svc.c +nlm_prot_svc.po: nlm_prot_svc.c +.endif diff --git a/usr.sbin/rpc.statd/Makefile.depend b/usr.sbin/rpc.statd/Makefile.depend new file mode 100644 index 000000000000..f541eb98d0db --- /dev/null +++ b/usr.sbin/rpc.statd/Makefile.depend @@ -0,0 +1,32 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +file.o: sm_inter.h +file.po: sm_inter.h +procs.o: sm_inter.h +procs.po: sm_inter.h +sm_inter_svc.o: sm_inter.h +sm_inter_svc.o: sm_inter_svc.c +sm_inter_svc.po: sm_inter.h +sm_inter_svc.po: sm_inter_svc.c +statd.o: sm_inter.h +statd.po: sm_inter.h +.endif diff --git a/usr.sbin/rpc.umntall/Makefile.depend b/usr.sbin/rpc.umntall/Makefile.depend new file mode 100644 index 000000000000..6e9b14f8d7a1 --- /dev/null +++ b/usr.sbin/rpc.umntall/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rpc.yppasswdd/Makefile.depend b/usr.sbin/rpc.yppasswdd/Makefile.depend new file mode 100644 index 000000000000..52d3eca2cd0b --- /dev/null +++ b/usr.sbin/rpc.yppasswdd/Makefile.depend @@ -0,0 +1,49 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/librpcsvc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +yp_clnt.o: yp.h +yp_clnt.o: yp_clnt.c +yp_clnt.po: yp.h +yp_clnt.po: yp_clnt.c +yppasswd_private_svc.o: yppasswd_private.h +yppasswd_private_svc.o: yppasswd_private_svc.c +yppasswd_private_svc.po: yppasswd_private.h +yppasswd_private_svc.po: yppasswd_private_svc.c +yppasswd_private_xdr.o: yppasswd_private.h +yppasswd_private_xdr.o: yppasswd_private_xdr.c +yppasswd_private_xdr.po: yppasswd_private.h +yppasswd_private_xdr.po: yppasswd_private_xdr.c +yppasswd_svc.o: yppasswd.h +yppasswd_svc.o: yppasswd_svc.c +yppasswd_svc.po: yppasswd.h +yppasswd_svc.po: yppasswd_svc.c +yppasswdd_main.o: yppasswd.h +yppasswdd_main.o: yppasswd_private.h +yppasswdd_main.po: yppasswd.h +yppasswdd_main.po: yppasswd_private.h +yppasswdd_server.o: yppasswd.h +yppasswdd_server.o: yppasswd_private.h +yppasswdd_server.po: yppasswd.h +yppasswdd_server.po: yppasswd_private.h +.endif diff --git a/usr.sbin/rpc.ypupdated/Makefile.depend b/usr.sbin/rpc.ypupdated/Makefile.depend new file mode 100644 index 000000000000..51b99b7a8710 --- /dev/null +++ b/usr.sbin/rpc.ypupdated/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ypupdate_prot_svc.o: ypupdate_prot.h +ypupdate_prot_svc.o: ypupdate_prot_svc.c +ypupdate_prot_svc.po: ypupdate_prot.h +ypupdate_prot_svc.po: ypupdate_prot_svc.c +ypupdated_main.o: ypupdate_prot.h +ypupdated_main.po: ypupdate_prot.h +ypupdated_server.o: ypupdate_prot.h +ypupdated_server.po: ypupdate_prot.h +.endif diff --git a/usr.sbin/rpc.ypxfrd/Makefile.depend b/usr.sbin/rpc.ypxfrd/Makefile.depend new file mode 100644 index 000000000000..f5063de2043c --- /dev/null +++ b/usr.sbin/rpc.ypxfrd/Makefile.depend @@ -0,0 +1,31 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ypxfrd_main.o: ypxfrd.h +ypxfrd_main.po: ypxfrd.h +ypxfrd_server.o: ypxfrd.h +ypxfrd_server.po: ypxfrd.h +ypxfrd_svc.o: ypxfrd.h +ypxfrd_svc.o: ypxfrd_svc.c +ypxfrd_svc.po: ypxfrd.h +ypxfrd_svc.po: ypxfrd_svc.c +.endif diff --git a/usr.sbin/rpcbind/Makefile.depend b/usr.sbin/rpcbind/Makefile.depend new file mode 100644 index 000000000000..018259c93cee --- /dev/null +++ b/usr.sbin/rpcbind/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + lib/libwrap \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rrenumd/Makefile.depend b/usr.sbin/rrenumd/Makefile.depend new file mode 100644 index 000000000000..8b4e2b8f0455 --- /dev/null +++ b/usr.sbin/rrenumd/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipsec \ + lib/liby \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +lexer.o: lexer.c +lexer.o: y.tab.h +lexer.po: lexer.c +lexer.po: y.tab.h +parser.o: parser.c +parser.po: parser.c +.endif diff --git a/usr.sbin/rtadvctl/Makefile.depend b/usr.sbin/rtadvctl/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/rtadvctl/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rtadvd/Makefile.depend b/usr.sbin/rtadvd/Makefile.depend new file mode 100644 index 000000000000..c262920aba6b --- /dev/null +++ b/usr.sbin/rtadvd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rtprio/Makefile.depend b/usr.sbin/rtprio/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/rtprio/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rtsold/Makefile.depend b/usr.sbin/rtsold/Makefile.depend new file mode 100644 index 000000000000..e6478bb43262 --- /dev/null +++ b/usr.sbin/rtsold/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rwhod/Makefile.depend b/usr.sbin/rwhod/Makefile.depend new file mode 100644 index 000000000000..083e419a095a --- /dev/null +++ b/usr.sbin/rwhod/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/sa/Makefile.depend b/usr.sbin/sa/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/sa/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/sade/Makefile.depend b/usr.sbin/sade/Makefile.depend new file mode 100644 index 000000000000..9f05925d9371 --- /dev/null +++ b/usr.sbin/sade/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libdialog \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libdisk \ + lib/libutil \ + lib/msun \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/sendmail/Makefile.depend b/usr.sbin/sendmail/Makefile.depend new file mode 100644 index 000000000000..9298bd4eb1dc --- /dev/null +++ b/usr.sbin/sendmail/Makefile.depend @@ -0,0 +1,107 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsm \ + lib/libsmutil \ + lib/libutil \ + lib/libwrap \ + secure/lib/libcrypto \ + secure/lib/libssl \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +alias.o: sm_os.h +alias.po: sm_os.h +arpadate.o: sm_os.h +arpadate.po: sm_os.h +bf.o: sm_os.h +bf.po: sm_os.h +collect.o: sm_os.h +collect.po: sm_os.h +conf.o: sm_os.h +conf.po: sm_os.h +control.o: sm_os.h +control.po: sm_os.h +convtime.o: sm_os.h +convtime.po: sm_os.h +daemon.o: sm_os.h +daemon.po: sm_os.h +deliver.o: sm_os.h +deliver.po: sm_os.h +domain.o: sm_os.h +domain.po: sm_os.h +envelope.o: sm_os.h +envelope.po: sm_os.h +err.o: sm_os.h +err.po: sm_os.h +headers.o: sm_os.h +headers.po: sm_os.h +macro.o: sm_os.h +macro.po: sm_os.h +main.o: sm_os.h +main.po: sm_os.h +map.o: sm_os.h +map.po: sm_os.h +mci.o: sm_os.h +mci.po: sm_os.h +milter.o: sm_os.h +milter.po: sm_os.h +mime.o: sm_os.h +mime.po: sm_os.h +parseaddr.o: sm_os.h +parseaddr.po: sm_os.h +queue.o: sm_os.h +queue.po: sm_os.h +ratectrl.o: sm_os.h +ratectrl.po: sm_os.h +readcf.o: sm_os.h +readcf.po: sm_os.h +recipient.o: sm_os.h +recipient.po: sm_os.h +sasl.o: sm_os.h +sasl.po: sm_os.h +savemail.o: sm_os.h +savemail.po: sm_os.h +sfsasl.o: sm_os.h +sfsasl.po: sm_os.h +shmticklib.o: sm_os.h +shmticklib.po: sm_os.h +sm_resolve.o: sm_os.h +sm_resolve.po: sm_os.h +srvrsmtp.o: sm_os.h +srvrsmtp.po: sm_os.h +stab.o: sm_os.h +stab.po: sm_os.h +stats.o: sm_os.h +stats.po: sm_os.h +sysexits.o: sm_os.h +sysexits.po: sm_os.h +timers.o: sm_os.h +timers.po: sm_os.h +tls.o: sm_os.h +tls.po: sm_os.h +trace.o: sm_os.h +trace.po: sm_os.h +udb.o: sm_os.h +udb.po: sm_os.h +usersmtp.o: sm_os.h +usersmtp.po: sm_os.h +util.o: sm_os.h +util.po: sm_os.h +version.o: sm_os.h +version.po: sm_os.h +.endif diff --git a/usr.sbin/service/Makefile.depend b/usr.sbin/service/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/service/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/services_mkdb/Makefile.depend b/usr.sbin/services_mkdb/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.sbin/services_mkdb/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/setfib/Makefile.depend b/usr.sbin/setfib/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/setfib/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/setfmac/Makefile.depend b/usr.sbin/setfmac/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/setfmac/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/setpmac/Makefile.depend b/usr.sbin/setpmac/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/setpmac/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/sicontrol/Makefile.depend b/usr.sbin/sicontrol/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/sicontrol/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/smbmsg/Makefile.depend b/usr.sbin/smbmsg/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/smbmsg/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/snapinfo/Makefile.depend b/usr.sbin/snapinfo/Makefile.depend new file mode 100644 index 000000000000..250cad80a3e0 --- /dev/null +++ b/usr.sbin/snapinfo/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libufs \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/spkrtest/Makefile.depend b/usr.sbin/spkrtest/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/spkrtest/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/spray/Makefile.depend b/usr.sbin/spray/Makefile.depend new file mode 100644 index 000000000000..60fe900ca5e6 --- /dev/null +++ b/usr.sbin/spray/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/librpcsvc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/syslogd/Makefile.depend b/usr.sbin/syslogd/Makefile.depend new file mode 100644 index 000000000000..c262920aba6b --- /dev/null +++ b/usr.sbin/syslogd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/tcpdchk/Makefile.depend b/usr.sbin/tcpdchk/Makefile.depend new file mode 100644 index 000000000000..b30ae55b6d65 --- /dev/null +++ b/usr.sbin/tcpdchk/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/tcpdmatch/Makefile.depend b/usr.sbin/tcpdmatch/Makefile.depend new file mode 100644 index 000000000000..b30ae55b6d65 --- /dev/null +++ b/usr.sbin/tcpdmatch/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/tcpdrop/Makefile.depend b/usr.sbin/tcpdrop/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/tcpdrop/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/tcpdump/tcpdump/Makefile.depend b/usr.sbin/tcpdump/tcpdump/Makefile.depend new file mode 100644 index 000000000000..02177cbc728d --- /dev/null +++ b/usr.sbin/tcpdump/tcpdump/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpcap \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +version.o: version.c +version.po: version.c +.endif diff --git a/usr.sbin/timed/timed/Makefile.depend b/usr.sbin/timed/timed/Makefile.depend new file mode 100644 index 000000000000..359f90d6ebee --- /dev/null +++ b/usr.sbin/timed/timed/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/timed/timedc/Makefile.depend b/usr.sbin/timed/timedc/Makefile.depend new file mode 100644 index 000000000000..083e419a095a --- /dev/null +++ b/usr.sbin/timed/timedc/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/protocols \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/traceroute/Makefile.depend b/usr.sbin/traceroute/Makefile.depend new file mode 100644 index 000000000000..3c92034c5a12 --- /dev/null +++ b/usr.sbin/traceroute/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipsec \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +version.o: version.c +version.po: version.c +.endif diff --git a/usr.sbin/traceroute6/Makefile.depend b/usr.sbin/traceroute6/Makefile.depend new file mode 100644 index 000000000000..3b4bd931c28c --- /dev/null +++ b/usr.sbin/traceroute6/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libipsec \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/trpt/Makefile.depend b/usr.sbin/trpt/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/trpt/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/tzsetup/Makefile.depend b/usr.sbin/tzsetup/Makefile.depend new file mode 100644 index 000000000000..3f1092bbda13 --- /dev/null +++ b/usr.sbin/tzsetup/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libdialog \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/msun \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/uathload/Makefile.depend b/usr.sbin/uathload/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/uathload/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ugidfw/Makefile.depend b/usr.sbin/ugidfw/Makefile.depend new file mode 100644 index 000000000000..2b665a8fde6f --- /dev/null +++ b/usr.sbin/ugidfw/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libugidfw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/uhsoctl/Makefile.depend b/usr.sbin/uhsoctl/Makefile.depend new file mode 100644 index 000000000000..c262920aba6b --- /dev/null +++ b/usr.sbin/uhsoctl/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/usbconfig/Makefile.depend b/usr.sbin/usbconfig/Makefile.depend new file mode 100644 index 000000000000..f7791510e25b --- /dev/null +++ b/usr.sbin/usbconfig/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libusb \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/usbdump/Makefile.depend b/usr.sbin/usbdump/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/usbdump/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/utx/Makefile.depend b/usr.sbin/utx/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/utx/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/vidcontrol/Makefile.depend b/usr.sbin/vidcontrol/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/vidcontrol/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/vipw/Makefile.depend b/usr.sbin/vipw/Makefile.depend new file mode 100644 index 000000000000..2dd29af87618 --- /dev/null +++ b/usr.sbin/vipw/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/wake/Makefile.depend b/usr.sbin/wake/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/wake/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/watch/Makefile.depend b/usr.sbin/watch/Makefile.depend new file mode 100644 index 000000000000..c74c89fb77e8 --- /dev/null +++ b/usr.sbin/watch/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/watchdogd/Makefile.depend b/usr.sbin/watchdogd/Makefile.depend new file mode 100644 index 000000000000..8825ffd2082f --- /dev/null +++ b/usr.sbin/watchdogd/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libutil \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/wlandebug/Makefile.depend b/usr.sbin/wlandebug/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/wlandebug/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/wlconfig/Makefile.depend b/usr.sbin/wlconfig/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/wlconfig/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/wpa/hostapd/Makefile.depend b/usr.sbin/wpa/hostapd/Makefile.depend new file mode 100644 index 000000000000..07fb89b9ba9d --- /dev/null +++ b/usr.sbin/wpa/hostapd/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpcap \ + secure/lib/libcrypto \ + secure/lib/libssl \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/wpa/hostapd_cli/Makefile.depend b/usr.sbin/wpa/hostapd_cli/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/wpa/hostapd_cli/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/wpa/ndis_events/Makefile.depend b/usr.sbin/wpa/ndis_events/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/wpa/ndis_events/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/wpa/wpa_cli/Makefile.depend b/usr.sbin/wpa/wpa_cli/Makefile.depend new file mode 100644 index 000000000000..501821812871 --- /dev/null +++ b/usr.sbin/wpa/wpa_cli/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libedit \ + lib/libedit/edit/readline \ + lib/ncurses/ncurses \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/wpa/wpa_passphrase/Makefile.depend b/usr.sbin/wpa/wpa_passphrase/Makefile.depend new file mode 100644 index 000000000000..16b5e42e296a --- /dev/null +++ b/usr.sbin/wpa/wpa_passphrase/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/wpa/wpa_supplicant/Makefile.depend b/usr.sbin/wpa/wpa_supplicant/Makefile.depend new file mode 100644 index 000000000000..07fb89b9ba9d --- /dev/null +++ b/usr.sbin/wpa/wpa_supplicant/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpcap \ + secure/lib/libcrypto \ + secure/lib/libssl \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/yp_mkdb/Makefile.depend b/usr.sbin/yp_mkdb/Makefile.depend new file mode 100644 index 000000000000..6e9b14f8d7a1 --- /dev/null +++ b/usr.sbin/yp_mkdb/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ypbind/Makefile.depend b/usr.sbin/ypbind/Makefile.depend new file mode 100644 index 000000000000..a3e1b44c73f2 --- /dev/null +++ b/usr.sbin/ypbind/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/yppoll/Makefile.depend b/usr.sbin/yppoll/Makefile.depend new file mode 100644 index 000000000000..6e9b14f8d7a1 --- /dev/null +++ b/usr.sbin/yppoll/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/yppush/Makefile.depend b/usr.sbin/yppush/Makefile.depend new file mode 100644 index 000000000000..ff4f7afd80f9 --- /dev/null +++ b/usr.sbin/yppush/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +yp_clnt.o: yp.h +yp_clnt.o: yp_clnt.c +yp_clnt.po: yp.h +yp_clnt.po: yp_clnt.c +yppush_svc.o: yp.h +yppush_svc.o: yppush_svc.c +yppush_svc.po: yp.h +yppush_svc.po: yppush_svc.c +.endif diff --git a/usr.sbin/ypserv/Makefile.depend b/usr.sbin/ypserv/Makefile.depend new file mode 100644 index 000000000000..c00e10543e37 --- /dev/null +++ b/usr.sbin/ypserv/Makefile.depend @@ -0,0 +1,35 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libwrap \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +yp_main.o: yp.h +yp_main.po: yp.h +yp_server.o: yp.h +yp_server.po: yp.h +yp_svc.o: yp.h +yp_svc.o: yp_svc.c +yp_svc.po: yp.h +yp_svc.po: yp_svc.c +ypxfr_clnt.o: yp.h +ypxfr_clnt.o: ypxfr_clnt.c +ypxfr_clnt.po: yp.h +ypxfr_clnt.po: ypxfr_clnt.c +.endif diff --git a/usr.sbin/ypset/Makefile.depend b/usr.sbin/ypset/Makefile.depend new file mode 100644 index 000000000000..a3e1b44c73f2 --- /dev/null +++ b/usr.sbin/ypset/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/zic/zdump/Makefile.depend b/usr.sbin/zic/zdump/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/zic/zdump/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/zic/zic/Makefile.depend b/usr.sbin/zic/zic/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/zic/zic/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/zzz/Makefile.depend b/usr.sbin/zzz/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/zzz/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif From fbc1b149eb87e872b3ed20c1a2c5ad396b318ef6 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:14:57 +0000 Subject: [PATCH 005/228] Latest dirdeps etc from Juniper Networks. --- share/mk/dirdeps.mk | 64 +++++++++++++++++++++++++++++++++++++------ share/mk/meta2deps.py | 14 ++++++++-- 2 files changed, 66 insertions(+), 12 deletions(-) diff --git a/share/mk/dirdeps.mk b/share/mk/dirdeps.mk index e8c02b781d2f..9f051e9203e7 100644 --- a/share/mk/dirdeps.mk +++ b/share/mk/dirdeps.mk @@ -1,4 +1,4 @@ -# $Id: dirdeps.mk,v 1.22 2012/04/25 15:12:29 sjg Exp $ +# $Id: dirdeps.mk,v 1.23 2012/11/06 05:44:03 sjg Exp $ # Copyright (c) 2010-2012, Juniper Networks, Inc. # @@ -55,6 +55,39 @@ # Indicates whether .MAKE.LEVEL 0 builds anything: # if "no" sub-makes are used to build everything, # if "yes" sub-makes are only used to build for other machines. +# +# TARGET_SPEC_VARS +# All the description above (and below) assumes is the +# only data needed to control the build. +# This is not always the case. So in addition to setting +# MACHINE in the build environment we set TARGET_SPEC which is +# composed of the values of TARGET_SPEC_VARS separated by +# commas. The default is just MACHINE. +# +# If more that MACHINE is needed then sys.mk needs to decompose +# TARGET_SPEC and set the relevant variables accordingly. +# It is important that MACHINE be included in TARGET_SPEC_VARS +# since if there is more the value passed as MACHINE will infact +# be the TARGET_SPEC. +# Note: TARGET_SPEC cannot contain any '.'s so the target +# tripple used by compiler folk won't work (directly anyway). +# +# For example: +# +# # variables other than MACHINE might be optional +# TARGET_SPEC_VARS = MACHINE TARGET_OS +# .if ${TARGET_SPEC:Uno:M*,*} != "" +# _tspec := ${TARGET_SPEC:S/,/ /g} +# MACHINE := ${_tspec:[1]} +# TARGET_OS := ${_tspec:[2]} +# # etc. +# .for v in ${TARGET_SPEC_VARS:O:u} +# .if empty($v) +# .undef $v +# .endif +# .endfor +# .endif +# .if ${.MAKE.LEVEL} == 0 # only the first instance is interested in all this @@ -67,16 +100,26 @@ # do some setup we only need once _CURDIR ?= ${.CURDIR} +# If TARGET_SPEC_VARS is other than just MACHINE +# it should be set by sys.mk or similar by now. +# TARGET_SPEC must not contain any '.'s. +TARGET_SPEC_VARS ?= MACHINE +TARGET_SPEC = ${TARGET_SPEC_VARS:@v@${$v:U}@:ts,} + .if !defined(.MAKE.DEPENDFILE_PREFERENCE) # this makes the logic below neater? .MAKE.DEPENDFILE_PREFERENCE = ${_CURDIR}/${.MAKE.DEPENDFILE:T} -.if ${.MAKE.DEPENDFILE:E} == "${MACHINE}" +.if ${.MAKE.DEPENDFILE:E} == "${TARGET_SPEC}" +.if ${TARGET_SPEC} != ${MACHINE} +.MAKE.DEPENDFILE_PREFERENCE += ${_CURDIR}/${.MAKE.DEPENDFILE:T:R}.$${MACHINE} +.endif .MAKE.DEPENDFILE_PREFERENCE += ${_CURDIR}/${.MAKE.DEPENDFILE:T:R} .endif .endif _default_dependfile := ${.MAKE.DEPENDFILE_PREFERENCE:[1]:T} -_machine_dependfiles := ${.MAKE.DEPENDFILE_PREFERENCE:M*.${MACHINE}} +_machine_dependfiles := ${.MAKE.DEPENDFILE_PREFERENCE:M*.${TARGET_SPEC}} \ + ${.MAKE.DEPENDFILE_PREFERENCE:M*.${MACHINE}} # for machine specific dependfiles we require ${MACHINE} to be at the end # also for the sake of sanity we require a common prefix @@ -90,7 +133,7 @@ _machine_dependfiles := ${.MAKE.DEPENDFILE_PREFERENCE:M*.${MACHINE}} # this is how we identify non-machine specific dependfiles -N_notmachine := ${.MAKE.DEPENDFILE_PREFERENCE:E:N${MACHINE}:${M_ListToSkip}} +N_notmachine := ${.MAKE.DEPENDFILE_PREFERENCE:E:N${TARGET_SPEC}:N${MACHINE}:${M_ListToSkip}} .endif # !target(_DIRDEP_USE) @@ -100,11 +143,11 @@ _last_dependfile := ${.MAKE.MAKEFILES:M*/${.MAKE.DEPENDFILE_PREFIX}*:[-1]} # will not work, so we also test for DEP_MACHINE==depend below. .if empty(_last_dependfile) # we haven't included one yet -DEP_MACHINE ?= ${TARGET_MACHINE:U${MACHINE}} +DEP_MACHINE ?= ${TARGET_MACHINE:U${TARGET_SPEC}} # else it should be correctly set by ${.MAKE.DEPENDFILE} .elif ${_last_dependfile:E:${N_notmachine}} == "" || ${DEP_MACHINE:Uno:${N_notmachine}} == "" # don't rely on manually maintained files to be correct -DEP_MACHINE := ${_DEP_MACHINE:U${MACHINE}} +DEP_MACHINE := ${_DEP_MACHINE:U${TARGET_SPEC}} .else # just in case DEP_MACHINE ?= ${_last_dependfile:E} @@ -159,6 +202,7 @@ _DIRDEP_USE: .USE .MAKE @for m in ${.MAKE.MAKEFILE_PREFERENCE}; do \ test -s ${.TARGET:R}/$$m || continue; \ echo "${TRACER}Checking ${.TARGET:R} for ${.TARGET:E} ..."; \ + TARGET_SPEC=${.TARGET:E} \ MACHINE=${.TARGET:E} MACHINE_ARCH= NO_SUBDIR=1 \ ${.MAKE} -C ${.TARGET:R} || exit 1; \ break; \ @@ -216,7 +260,7 @@ _this_dir := ${SRCTOP}/${DEP_RELDIR} _dep_hack := ${_this_dir}/${.MAKE.DEPENDFILE_PREFIX}.inc .-include "${_dep_hack}" -.if ${DEP_RELDIR} != ${_DEP_RELDIR} || ${DEP_MACHINE} != ${MACHINE} +.if ${DEP_RELDIR} != ${_DEP_RELDIR} || ${DEP_MACHINE} != ${TARGET_SPEC} # this should be all _machines := ${DEP_MACHINE} .else @@ -231,7 +275,9 @@ _machines += host _machines := ${_machines:O:u} .endif +# reset these each time through _build_dirs = +_depdir_files = .if ${DEP_RELDIR} == ${_DEP_RELDIR} # pickup other machines for this dir if necessary @@ -239,7 +285,7 @@ _build_dirs = _build_dirs += ${_machines:@m@${_CURDIR}.$m@} .else _build_dirs += ${_machines:N${DEP_MACHINE}:@m@${_CURDIR}.$m@} -.if ${DEP_MACHINE} == ${MACHINE} +.if ${DEP_MACHINE} == ${TARGET_SPEC} # pickup local dependencies now .-include <.depend> .endif @@ -295,7 +341,7 @@ _depdir_files += ${.MAKE.DEPENDFILE_PREFERENCE:T:@m@${exists($d/$m):?$d/$m:}@:[1 # a little more complex - building for another machine # we will ensure the file is qualified with a machine # so that if necessary _DEP_MACHINE can be set below -_depdir_files += ${.MAKE.DEPENDFILE_PREFERENCE:T:S,.${MACHINE}$,.${d:E},:@m@${exists(${d:R}/$m):?${d:R}/$m:}@:[1]:@m@${"${m:M*.${d:E}}":?$m:$m.${d:E}}@} +_depdir_files += ${.MAKE.DEPENDFILE_PREFERENCE:T:S,.${TARGET_SPEC}$,.${d:E},:S,.${MACHINE}$,.${d:E},:@m@${exists(${d:R}/$m):?${d:R}/$m:}@:[1]:@m@${"${m:M*.${d:E}}":?$m:$m.${d:E}}@} .endif .endfor diff --git a/share/mk/meta2deps.py b/share/mk/meta2deps.py index 8e33e2c82696..cb6d3213b221 100755 --- a/share/mk/meta2deps.py +++ b/share/mk/meta2deps.py @@ -35,7 +35,7 @@ """ RCSid: - $Id: meta2deps.py,v 1.5 2011/11/14 00:18:42 sjg Exp $ + $Id: meta2deps.py,v 1.7 2012/11/06 05:44:03 sjg Exp $ Copyright (c) 2011, Juniper Networks, Inc. @@ -183,6 +183,11 @@ def __init__(self, name, conf={}): srctop += '/' if not srctop in self.srctops: self.srctops.append(srctop) + _srctop = os.path.realpath(srctop) + if _srctop[-1] != '/': + _srctop += '/' + if not _srctop in self.srctops: + self.srctops.append(_srctop) for objroot in getv(conf, 'OBJROOTS', []): if not objroot in self.objroots: @@ -190,8 +195,8 @@ def __init__(self, name, conf={}): _objroot = os.path.realpath(objroot) if objroot[-1] == '/': _objroot += '/' - if not _objroot in self.objroots: - self.objroots.append(_objroot) + if not _objroot in self.objroots: + self.objroots.append(_objroot) if self.debug: print >> self.debug_out, "host_target=", self.host_target @@ -397,6 +402,9 @@ def parse(self, name=None, file=None): path = w[2].strip("'") else: path = w[2] + # we are never interested in .dirdep files as dependencies + if path.endswith('.dirdep'): + continue # we don't want to resolve the last component if it is # a symlink path = resolve(path, cwd, last_dir, self.debug, self.debug_out) From 6ff48435f9ac67621dd8e8faed2805d2a7622df2 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:15:57 +0000 Subject: [PATCH 006/228] Latest version from Crufty --- share/mk/meta.stage.mk | 80 ++++++++++++++++++++++++++------------ share/mk/sys.dependfile.mk | 9 +++++ 2 files changed, 64 insertions(+), 25 deletions(-) diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index f43fd01584c3..a24ef9dd2765 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -1,4 +1,4 @@ -# $Id: meta.stage.mk,v 1.11 2011/05/05 15:01:05 sjg Exp $ +# $Id: meta.stage.mk,v 1.15 2012/10/14 02:50:38 sjg Exp $ # # @(#) Copyright (c) 2011, Simon J. Gerraty # @@ -35,23 +35,47 @@ _stage_file_basename = $${f\#\#*/} _stage_target_dirname = $${t%/*} .endif +_objroot ?= ${_OBJROOT:tA} +# make sure this is global +_STAGED_DIRS ?= +.export _STAGED_DIRS +# add each dir we stage to to _STAGED_DIRS +# and make sure we have absolute paths so that bmake +# will match against .MAKE.META.BAILIWICK +STAGE_DIR_FILTER = tA:@d@$${_STAGED_DIRS::+=$$d}$$d@ +# convert _STAGED_DIRS into suitable filters +GENDIRDEPS_FILTER += Nnot-empty-is-important \ + ${_STAGED_DIRS:O:u:M${OBJTOP}*:S,${OBJTOP}/,N,} \ + ${_STAGED_DIRS:O:u:N${OBJTOP}*:S,${_objroot},,:C,^([^/]+)/(.*),N\2.\1,:S,${HOST_TARGET},.host,} + +# it is an error for more than one src dir to try and stage +# the same file +STAGE_DIRDEP_SCRIPT = StageDirdep() { \ + t=$$1; \ + if [ -s $$t.dirdep ]; then \ + cmp -s .dirdep $$t.dirdep && return; \ + echo "ERROR: $$t installed by `cat $$t.dirdep` not ${_dirdep}" >&2; \ + exit 1; \ + fi; \ + ln .dirdep $$t.dirdep 2> /dev/null || \ + cp .dirdep $$t.dirdep; } + # common logic for staging files # this all relies on RELDIR being set to a subdir of SRCTOP # we use ln(1) if we can, else cp(1) -STAGE_FILE_SCRIPT = StageFiles() { \ +STAGE_FILE_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageFiles() { \ dest=$$1; shift; \ mkdir -p $$dest; \ [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \ for f in "$$@"; do \ case "$$f" in */*) t=$$dest/${_stage_file_basename};; *) t=$$dest/$$f;; esac; \ - rm -f $$t $$t.dirdep; \ + StageDirdep $$t; \ + rm -f $$t; \ { ln $$f $$t 2> /dev/null || \ - cp -p $$f $$t; } && \ - { ln .dirdep $$t.dirdep 2> /dev/null || \ - cp .dirdep $$t.dirdep; }; \ - done; } + cp -p $$f $$t; }; \ + done; :; } -STAGE_LINKS_SCRIPT = StageLinks() { \ +STAGE_LINKS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageLinks() { \ case "$$1" in --) shift;; -*) lnf=$$1; shift;; esac; \ dest=$$1; shift; \ mkdir -p $$dest; \ @@ -61,13 +85,12 @@ STAGE_LINKS_SCRIPT = StageLinks() { \ t=$$dest/$$1; \ case "$$1" in */*) mkdir -p ${_stage_target_dirname};; esac; \ shift; \ - rm -f $$t $$t.dirdep 2>/dev/null; \ + StageDirdep $$t; \ + rm -f $$t 2>/dev/null; \ ln $$lnf $$l $$t; \ - { ln .dirdep $$t.dirdep 2> /dev/null || \ - cp .dirdep $$t.dirdep; }; \ done; :; } -STAGE_AS_SCRIPT = StageAs() { \ +STAGE_AS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageAs() { \ dest=$$1; shift; \ mkdir -p $$dest; \ [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \ @@ -76,35 +99,38 @@ STAGE_AS_SCRIPT = StageAs() { \ t=$$dest/$$1; \ case "$$1" in */*) mkdir -p ${_stage_target_dirname};; esac; \ shift; \ - rm -f $$t $$t.dirdep; \ + StageDirdep $$t; \ + rm -f $$t; \ { ln $$s $$t 2> /dev/null || \ - cp -p $$s $$t; } && \ - { ln .dirdep $$t.dirdep 2> /dev/null || \ - cp .dirdep $$t.dirdep; }; \ - done; } + cp -p $$s $$t; }; \ + done; :; } # this is simple, a list of the "staged" files depends on this, _STAGE_BASENAME_USE: .USE ${.TARGET:T} - @${STAGE_FILE_SCRIPT}; StageFiles ${.TARGET:H} ${.TARGET:T} + @${STAGE_FILE_SCRIPT}; StageFiles ${.TARGET:H:${STAGE_DIR_FILTER}} ${.TARGET:T} .if !empty(STAGE_INCSDIR) +CLEANFILES += stage_incs + STAGE_INCS ?= ${.ALLSRC:N.dirdep} stage_incs: .dirdep - @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_INCSDIR} ${STAGE_INCS} + @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_INCSDIR:${STAGE_DIR_FILTER}} ${STAGE_INCS} @touch $@ .endif .if !empty(STAGE_LIBDIR) +CLEANFILES += stage_libs + STAGE_LIBS ?= ${.ALLSRC:N.dirdep} stage_libs: .dirdep - @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_LIBDIR} ${STAGE_LIBS} + @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_LIBDIR:${STAGE_DIR_FILTER}} ${STAGE_LIBS} .if !empty(SHLIB_LINKS) - @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_LIBDIR} \ + @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_LIBDIR:${STAGE_DIR_FILTER}} \ ${SHLIB_LINKS:@t@${STAGE_LIBS:T:M$t.*} $t@} .elif !empty(SHLIB_LINK) && !empty(SHLIB_NAME) - @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_LIBDIR} ${SHLIB_NAME} ${SHLIB_LINK} ${SYMLINKS:T} + @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_LIBDIR:${STAGE_DIR_FILTER}} ${SHLIB_NAME} ${SHLIB_LINK} ${SYMLINKS:T} .endif @touch $@ .endif @@ -121,6 +147,8 @@ STAGE_SYMLINKS ?= ${.ALLSRC:T:N.dirdep:Nstage_*} .if !empty(STAGE_SETS) +CLEANFILES += ${STAGE_SETS:@s@stage*$s@} + # some makefiles need to populate multiple directories .for s in ${STAGE_SETS:O:u} STAGE_FILES.$s ?= ${.ALLSRC:N.dirdep} @@ -132,7 +160,7 @@ stage_files.$s: .dirdep .else stage_files: .dirdep .endif - @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}} ${STAGE_FILES.$s} + @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_FILES.$s} @touch $@ .if $s != "_default" @@ -141,7 +169,7 @@ stage_symlinks.$s: .dirdep .else stage_symlinks: .dirdep .endif - @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_SYMLINKS_DIR.$s:U${STAGE_DIR.$s}} ${STAGE_SYMLINKS.$s} + @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_SYMLINKS_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_SYMLINKS.$s} @touch $@ .endfor @@ -149,6 +177,8 @@ stage_symlinks: .dirdep .if !empty(STAGE_AS_SETS) +CLEANFILES += ${STAGE_AS_SETS:@s@stage*$s@} + # sometimes things need to be renamed as they are staged # each ${file} will be staged as ${STAGE_AS_${file:T}} # one could achieve the same with SYMLINKS @@ -157,7 +187,7 @@ STAGE_AS.$s ?= ${.ALLSRC:N.dirdep} stage_as: stage_as.$s stage_as.$s: .dirdep - @${STAGE_AS_SCRIPT}; StageAs ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}} ${STAGE_AS.$s:@f@$f ${STAGE_AS_${f:T}:U${f:T}}@} + @${STAGE_AS_SCRIPT}; StageAs ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_AS.$s:@f@$f ${STAGE_AS_${f:T}:U${f:T}}@} @touch $@ .endfor diff --git a/share/mk/sys.dependfile.mk b/share/mk/sys.dependfile.mk index 2b99f84dff41..432cc4fabb98 100644 --- a/share/mk/sys.dependfile.mk +++ b/share/mk/sys.dependfile.mk @@ -34,5 +34,14 @@ _e := ${.MAKE.DEPENDFILE_PREFERENCE:@m@${exists($m):?$m:}@} .if !empty(_e) .MAKE.DEPENDFILE := ${_e:[1]} +.elif ${.MAKE.DEPENDFILE_PREFERENCE:M*${MACHINE}} != "" && ${.MAKE.DEPENDFILE_PREFERENCE:[1]:E} != ${MACHINE} +# MACHINE specific depend files are supported, but *not* default. +# If any already exist, we should follow suit. +_aml = ${ALL_MACHINE_LIST:Uarm amd64 i386 powerpc:N${MACHINE}} ${MACHINE} +# MACHINE must be the last entry in _aml ;-) +_e := ${_aml:@MACHINE@${.MAKE.DEPENDFILE_PREFERENCE:@m@${exists($m):?$m:}@}@} +.if !empty(_e) +.MAKE.DEPENDFILE ?= ${.MAKE.DEPENDFILE_PREFERENCE:M*${MACHINE}:[1]} +.endif .endif .MAKE.DEPENDFILE ?= ${.MAKE.DEPENDFILE_PREFERENCE:[1]} From c9b6e5b40b3af2fc12dda4fdf87722208b13e99e Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:19:15 +0000 Subject: [PATCH 007/228] We ended up with contrib/bmake --- external/Makefile | 5 - external/bsd/Makefile | 5 - external/bsd/bmake/Makefile | 5 - external/bsd/bmake/dist/ChangeLog | 1383 ---- external/bsd/bmake/dist/FILES | 121 - external/bsd/bmake/dist/Makefile.in | 187 - external/bsd/bmake/dist/PSD.doc/Makefile | 8 - external/bsd/bmake/dist/PSD.doc/tutorial.ms | 3773 --------- external/bsd/bmake/dist/README | 47 - external/bsd/bmake/dist/aclocal.m4 | 77 - external/bsd/bmake/dist/arch.c | 1403 ---- external/bsd/bmake/dist/bmake.1 | 2043 ----- external/bsd/bmake/dist/bmake.cat1 | 1305 --- external/bsd/bmake/dist/boot-strap | 388 - external/bsd/bmake/dist/bsd.after-import.mk | 105 - external/bsd/bmake/dist/buf.c | 291 - external/bsd/bmake/dist/buf.h | 119 - external/bsd/bmake/dist/compat.c | 764 -- external/bsd/bmake/dist/cond.c | 1410 ---- external/bsd/bmake/dist/config.h.in | 314 - external/bsd/bmake/dist/configure | 7134 ----------------- external/bsd/bmake/dist/configure.in | 370 - external/bsd/bmake/dist/dir.c | 1802 ----- external/bsd/bmake/dist/dir.h | 108 - external/bsd/bmake/dist/dirname.c | 95 - external/bsd/bmake/dist/find_lib.sh | 13 - external/bsd/bmake/dist/for.c | 496 -- external/bsd/bmake/dist/getopt.c | 179 - external/bsd/bmake/dist/hash.c | 463 -- external/bsd/bmake/dist/hash.h | 154 - external/bsd/bmake/dist/install-sh | 201 - external/bsd/bmake/dist/job.c | 2994 ------- external/bsd/bmake/dist/job.h | 272 - external/bsd/bmake/dist/lst.h | 189 - external/bsd/bmake/dist/lst.lib/Makefile | 0 external/bsd/bmake/dist/lst.lib/lstAppend.c | 122 - external/bsd/bmake/dist/lst.lib/lstAtEnd.c | 79 - external/bsd/bmake/dist/lst.lib/lstAtFront.c | 76 - external/bsd/bmake/dist/lst.lib/lstClose.c | 86 - external/bsd/bmake/dist/lst.lib/lstConcat.c | 185 - external/bsd/bmake/dist/lst.lib/lstDatum.c | 77 - external/bsd/bmake/dist/lst.lib/lstDeQueue.c | 87 - external/bsd/bmake/dist/lst.lib/lstDestroy.c | 101 - external/bsd/bmake/dist/lst.lib/lstDupl.c | 107 - external/bsd/bmake/dist/lst.lib/lstEnQueue.c | 78 - external/bsd/bmake/dist/lst.lib/lstFind.c | 74 - external/bsd/bmake/dist/lst.lib/lstFindFrom.c | 90 - external/bsd/bmake/dist/lst.lib/lstFirst.c | 77 - external/bsd/bmake/dist/lst.lib/lstForEach.c | 76 - .../bsd/bmake/dist/lst.lib/lstForEachFrom.c | 125 - external/bsd/bmake/dist/lst.lib/lstInit.c | 85 - external/bsd/bmake/dist/lst.lib/lstInsert.c | 122 - external/bsd/bmake/dist/lst.lib/lstInt.h | 105 - external/bsd/bmake/dist/lst.lib/lstIsAtEnd.c | 87 - external/bsd/bmake/dist/lst.lib/lstIsEmpty.c | 75 - external/bsd/bmake/dist/lst.lib/lstLast.c | 77 - external/bsd/bmake/dist/lst.lib/lstMember.c | 74 - external/bsd/bmake/dist/lst.lib/lstNext.c | 120 - external/bsd/bmake/dist/lst.lib/lstOpen.c | 87 - external/bsd/bmake/dist/lst.lib/lstPrev.c | 79 - external/bsd/bmake/dist/lst.lib/lstRemove.c | 136 - external/bsd/bmake/dist/lst.lib/lstReplace.c | 78 - external/bsd/bmake/dist/lst.lib/lstSucc.c | 79 - external/bsd/bmake/dist/machine.sh | 96 - external/bsd/bmake/dist/main.c | 2078 ----- external/bsd/bmake/dist/make-bootstrap.sh.in | 84 - external/bsd/bmake/dist/make-conf.h | 162 - external/bsd/bmake/dist/make.1 | 2061 ----- external/bsd/bmake/dist/make.c | 1561 ---- external/bsd/bmake/dist/make.h | 518 -- external/bsd/bmake/dist/make_malloc.c | 119 - external/bsd/bmake/dist/make_malloc.h | 41 - external/bsd/bmake/dist/meta.c | 1346 ---- external/bsd/bmake/dist/meta.h | 54 - external/bsd/bmake/dist/mkdeps.sh | 314 - external/bsd/bmake/dist/nonints.h | 198 - external/bsd/bmake/dist/os.sh | 228 - external/bsd/bmake/dist/parse.c | 3122 -------- external/bsd/bmake/dist/pathnames.h | 62 - external/bsd/bmake/dist/ranlib.h | 32 - external/bsd/bmake/dist/realpath.c | 196 - external/bsd/bmake/dist/setenv.c | 154 - external/bsd/bmake/dist/sigcompat.c | 325 - external/bsd/bmake/dist/sprite.h | 116 - external/bsd/bmake/dist/str.c | 508 -- external/bsd/bmake/dist/stresep.c | 89 - external/bsd/bmake/dist/strlcpy.c | 63 - external/bsd/bmake/dist/strlist.c | 93 - external/bsd/bmake/dist/strlist.h | 62 - external/bsd/bmake/dist/suff.c | 2653 ------ external/bsd/bmake/dist/targ.c | 848 -- external/bsd/bmake/dist/trace.c | 116 - external/bsd/bmake/dist/trace.h | 49 - .../bsd/bmake/dist/unit-tests/Makefile.in | 96 - external/bsd/bmake/dist/unit-tests/comment | 31 - external/bsd/bmake/dist/unit-tests/cond1 | 109 - external/bsd/bmake/dist/unit-tests/doterror | 20 - external/bsd/bmake/dist/unit-tests/dotwait | 61 - external/bsd/bmake/dist/unit-tests/error | 10 - external/bsd/bmake/dist/unit-tests/export | 22 - external/bsd/bmake/dist/unit-tests/export-all | 23 - external/bsd/bmake/dist/unit-tests/forloop | 45 - external/bsd/bmake/dist/unit-tests/forsubst | 10 - external/bsd/bmake/dist/unit-tests/hash | 18 - external/bsd/bmake/dist/unit-tests/misc | 16 - external/bsd/bmake/dist/unit-tests/moderrs | 31 - external/bsd/bmake/dist/unit-tests/modmatch | 25 - external/bsd/bmake/dist/unit-tests/modmisc | 38 - external/bsd/bmake/dist/unit-tests/modorder | 22 - external/bsd/bmake/dist/unit-tests/modts | 43 - external/bsd/bmake/dist/unit-tests/modword | 151 - external/bsd/bmake/dist/unit-tests/phony-end | 9 - external/bsd/bmake/dist/unit-tests/posix | 24 - external/bsd/bmake/dist/unit-tests/qequals | 8 - external/bsd/bmake/dist/unit-tests/sysv | 26 - external/bsd/bmake/dist/unit-tests/ternary | 8 - external/bsd/bmake/dist/unit-tests/test.exp | 369 - external/bsd/bmake/dist/unit-tests/unexport | 8 - .../bsd/bmake/dist/unit-tests/unexport-env | 14 - external/bsd/bmake/dist/unit-tests/varcmd | 49 - external/bsd/bmake/dist/util.c | 619 -- external/bsd/bmake/dist/var.c | 4196 ---------- external/bsd/bmake/dist/wait.h | 81 - external/bsd/bmake/usr.bin/Makefile | 5 - external/bsd/bmake/usr.bin/bmake/Makefile | 210 - .../bsd/bmake/usr.bin/bmake/Makefile.depend | 19 - external/bsd/bmake/usr.bin/bmake/Makefile.inc | 6 - external/bsd/bmake/usr.bin/bmake/config.h | 315 - .../bmake/usr.bin/bmake/unit-tests/Makefile | 96 - 129 files changed, 55048 deletions(-) delete mode 100644 external/Makefile delete mode 100644 external/bsd/Makefile delete mode 100644 external/bsd/bmake/Makefile delete mode 100644 external/bsd/bmake/dist/ChangeLog delete mode 100644 external/bsd/bmake/dist/FILES delete mode 100644 external/bsd/bmake/dist/Makefile.in delete mode 100644 external/bsd/bmake/dist/PSD.doc/Makefile delete mode 100644 external/bsd/bmake/dist/PSD.doc/tutorial.ms delete mode 100644 external/bsd/bmake/dist/README delete mode 100644 external/bsd/bmake/dist/aclocal.m4 delete mode 100644 external/bsd/bmake/dist/arch.c delete mode 100644 external/bsd/bmake/dist/bmake.1 delete mode 100644 external/bsd/bmake/dist/bmake.cat1 delete mode 100755 external/bsd/bmake/dist/boot-strap delete mode 100644 external/bsd/bmake/dist/bsd.after-import.mk delete mode 100644 external/bsd/bmake/dist/buf.c delete mode 100644 external/bsd/bmake/dist/buf.h delete mode 100644 external/bsd/bmake/dist/compat.c delete mode 100644 external/bsd/bmake/dist/cond.c delete mode 100644 external/bsd/bmake/dist/config.h.in delete mode 100755 external/bsd/bmake/dist/configure delete mode 100644 external/bsd/bmake/dist/configure.in delete mode 100644 external/bsd/bmake/dist/dir.c delete mode 100644 external/bsd/bmake/dist/dir.h delete mode 100644 external/bsd/bmake/dist/dirname.c delete mode 100755 external/bsd/bmake/dist/find_lib.sh delete mode 100644 external/bsd/bmake/dist/for.c delete mode 100644 external/bsd/bmake/dist/getopt.c delete mode 100644 external/bsd/bmake/dist/hash.c delete mode 100644 external/bsd/bmake/dist/hash.h delete mode 100755 external/bsd/bmake/dist/install-sh delete mode 100644 external/bsd/bmake/dist/job.c delete mode 100644 external/bsd/bmake/dist/job.h delete mode 100644 external/bsd/bmake/dist/lst.h delete mode 100644 external/bsd/bmake/dist/lst.lib/Makefile delete mode 100644 external/bsd/bmake/dist/lst.lib/lstAppend.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstAtEnd.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstAtFront.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstClose.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstConcat.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstDatum.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstDeQueue.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstDestroy.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstDupl.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstEnQueue.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstFind.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstFindFrom.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstFirst.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstForEach.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstForEachFrom.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstInit.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstInsert.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstInt.h delete mode 100644 external/bsd/bmake/dist/lst.lib/lstIsAtEnd.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstIsEmpty.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstLast.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstMember.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstNext.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstOpen.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstPrev.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstRemove.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstReplace.c delete mode 100644 external/bsd/bmake/dist/lst.lib/lstSucc.c delete mode 100755 external/bsd/bmake/dist/machine.sh delete mode 100644 external/bsd/bmake/dist/main.c delete mode 100755 external/bsd/bmake/dist/make-bootstrap.sh.in delete mode 100644 external/bsd/bmake/dist/make-conf.h delete mode 100644 external/bsd/bmake/dist/make.1 delete mode 100644 external/bsd/bmake/dist/make.c delete mode 100644 external/bsd/bmake/dist/make.h delete mode 100644 external/bsd/bmake/dist/make_malloc.c delete mode 100644 external/bsd/bmake/dist/make_malloc.h delete mode 100644 external/bsd/bmake/dist/meta.c delete mode 100644 external/bsd/bmake/dist/meta.h delete mode 100755 external/bsd/bmake/dist/mkdeps.sh delete mode 100644 external/bsd/bmake/dist/nonints.h delete mode 100755 external/bsd/bmake/dist/os.sh delete mode 100644 external/bsd/bmake/dist/parse.c delete mode 100644 external/bsd/bmake/dist/pathnames.h delete mode 100644 external/bsd/bmake/dist/ranlib.h delete mode 100644 external/bsd/bmake/dist/realpath.c delete mode 100644 external/bsd/bmake/dist/setenv.c delete mode 100644 external/bsd/bmake/dist/sigcompat.c delete mode 100644 external/bsd/bmake/dist/sprite.h delete mode 100644 external/bsd/bmake/dist/str.c delete mode 100644 external/bsd/bmake/dist/stresep.c delete mode 100644 external/bsd/bmake/dist/strlcpy.c delete mode 100644 external/bsd/bmake/dist/strlist.c delete mode 100644 external/bsd/bmake/dist/strlist.h delete mode 100644 external/bsd/bmake/dist/suff.c delete mode 100644 external/bsd/bmake/dist/targ.c delete mode 100644 external/bsd/bmake/dist/trace.c delete mode 100644 external/bsd/bmake/dist/trace.h delete mode 100644 external/bsd/bmake/dist/unit-tests/Makefile.in delete mode 100644 external/bsd/bmake/dist/unit-tests/comment delete mode 100644 external/bsd/bmake/dist/unit-tests/cond1 delete mode 100644 external/bsd/bmake/dist/unit-tests/doterror delete mode 100644 external/bsd/bmake/dist/unit-tests/dotwait delete mode 100644 external/bsd/bmake/dist/unit-tests/error delete mode 100644 external/bsd/bmake/dist/unit-tests/export delete mode 100644 external/bsd/bmake/dist/unit-tests/export-all delete mode 100644 external/bsd/bmake/dist/unit-tests/forloop delete mode 100644 external/bsd/bmake/dist/unit-tests/forsubst delete mode 100644 external/bsd/bmake/dist/unit-tests/hash delete mode 100644 external/bsd/bmake/dist/unit-tests/misc delete mode 100644 external/bsd/bmake/dist/unit-tests/moderrs delete mode 100644 external/bsd/bmake/dist/unit-tests/modmatch delete mode 100644 external/bsd/bmake/dist/unit-tests/modmisc delete mode 100644 external/bsd/bmake/dist/unit-tests/modorder delete mode 100644 external/bsd/bmake/dist/unit-tests/modts delete mode 100644 external/bsd/bmake/dist/unit-tests/modword delete mode 100644 external/bsd/bmake/dist/unit-tests/phony-end delete mode 100644 external/bsd/bmake/dist/unit-tests/posix delete mode 100644 external/bsd/bmake/dist/unit-tests/qequals delete mode 100644 external/bsd/bmake/dist/unit-tests/sysv delete mode 100644 external/bsd/bmake/dist/unit-tests/ternary delete mode 100644 external/bsd/bmake/dist/unit-tests/test.exp delete mode 100644 external/bsd/bmake/dist/unit-tests/unexport delete mode 100644 external/bsd/bmake/dist/unit-tests/unexport-env delete mode 100644 external/bsd/bmake/dist/unit-tests/varcmd delete mode 100644 external/bsd/bmake/dist/util.c delete mode 100644 external/bsd/bmake/dist/var.c delete mode 100644 external/bsd/bmake/dist/wait.h delete mode 100644 external/bsd/bmake/usr.bin/Makefile delete mode 100644 external/bsd/bmake/usr.bin/bmake/Makefile delete mode 100644 external/bsd/bmake/usr.bin/bmake/Makefile.depend delete mode 100644 external/bsd/bmake/usr.bin/bmake/Makefile.inc delete mode 100644 external/bsd/bmake/usr.bin/bmake/config.h delete mode 100644 external/bsd/bmake/usr.bin/bmake/unit-tests/Makefile diff --git a/external/Makefile b/external/Makefile deleted file mode 100644 index ce4238986d0d..000000000000 --- a/external/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -# $FreeBSD$ - -SUBDIR= bsd - -.include diff --git a/external/bsd/Makefile b/external/bsd/Makefile deleted file mode 100644 index 5148309fefb8..000000000000 --- a/external/bsd/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -# $FreeBSD$ - -SUBDIR= bmake - -.include diff --git a/external/bsd/bmake/Makefile b/external/bsd/bmake/Makefile deleted file mode 100644 index ce166ab903b4..000000000000 --- a/external/bsd/bmake/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -# $FreeBSD$ - -SUBDIR= usr.bin - -.include diff --git a/external/bsd/bmake/dist/ChangeLog b/external/bsd/bmake/dist/ChangeLog deleted file mode 100644 index 3f82c8d0ae89..000000000000 --- a/external/bsd/bmake/dist/ChangeLog +++ /dev/null @@ -1,1383 +0,0 @@ -2012-07-04 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120704 - Merge with NetBSD make, pick up - o Job_ParseShell should call Shell_Init if it has been - previously called. - * Makefile.in: set USE_META based on configure result. - also .PARSEDIR is safer indicator of bmake. - -2012-06-26 Simon J. Gerraty - - * Makefile.in: bump version to 20120626 - ensure CPPFLAGS is in CFLAGS - * meta.c: avoid nested externs - * bsd.after-import.mk: avoid ${.CURDIR}/Makefile as target - -2012-06-20 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120620 - Merge with NetBSD make, pick up - o make_malloc.c: avoid including make_malloc.h again - - * Makefile.in: avoid bmake only syntax or protect with - .if defined(.MAKE.LEVEL) - * bsd.after-import.mk: replace .-include with .sinclude - ensure? SRCTOP gets a value - * configure.in: look for filemon.h in /usr/include/dev/filemon first. - -2012-06-19 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120612 - Merge with NetBSD make, pick up - o use MAKE_ATTR_* rather than those defined by cdefs.h or compiler - for greater portability. - o unit-tests/forloop: check that .for works as expected wrt - number of times and with "quoted strings". - -2012-06-06 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120606 - Merge with NetBSD make, pick up - o compat.c: use kill(2) rather than raise(3). - * configure.in: look for sys/dev/filemon - * bsd.after-import.mk: add a .-include "Makefile.inc" to Makefile - and pass BOOTSTRAP_XTRAS to boot-strap. - -2012-06-04 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120604 - Merge with NetBSD make, pick up - o util.c and var.c share same var for tracking if environ - has been reallocated. - o util.c provide getenv with setenv. - * Add MAKE_LEVEL_SAFE as an alternate means of passing MAKE_LEVEL - when the shell actively strips .MAKE.* from the environment. - We still refer to the variable always as .MAKE.LEVEL - * util.c fix bug in findenv() was finding prefix of name. - * compat.c: re-raising SIGINT etc after running .INTERRUPT - results in more reliable termination of all activity on many - platforms. - -2012-06-02 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120602 - Merge with NetBSD make, pick up - o for.c: handle quoted items in .for list - -2012-05-30 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120530 - Merge with NetBSD make, pick up - o compat.c: ignore empty command. - -2012-05-24 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120524 - * FILES: add bsd.after-import.mk: - A simple means of integrating bmake into a BSD build system. - -2012-05-20 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120520 - Merge with NetBSD make, pick up - o increased limit for nested conditionals. - -2012-05-18 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120518 - Merge with NetBSD make, pick up - o use _exit(2) in signal hanlder - o Don't use the [dir] cache when building nodes that might have - changed since the last exec. - o Avoid nested extern declaration warnings. - -2012-04-27 Simon J. Gerraty - - * meta.c (fgetLine): avoid %z - not portable. - * parse.c: Since we moved include of sys/mman.h - and def's of MAP_COPY etc. we got dups from a merge. - -2012-04-24 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120420 - Merge with NetBSD make, pick up - o restore duplicate supression in .MAKE.MAKEFILES - runtime saving can be significant. - o Var_Subst() uses Buf_DestroyCompact() to reduce memory - consumption up to 20%. - -2012-04-20 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120420 - Merge with NetBSD make, pick up - o remove duplicate supression in .MAKE.MAKEFILES - o improved dir cache behavior - o gmake'ish export command - -2012-03-25 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20120325 - Merge with NetBSD make, pick up - o fix parsing of :[#] in conditionals. - -2012-02-10 Simon J. Gerraty - - * Makefile.in: replace use of .Nx in bmake.1 with NetBSD - since some systems cannot cope with .Nx - -2011-11-14 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20111111 - Merge with NetBSD make, pick up - o debug output for .PARSEDIR and .PARSEFILE - -2011-10-10 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20111010 - -2011-10-09 Simon J. Gerraty - - * boot-strap: check for an expected file in the dirs we look for. - * make-bootstrap.sh: pass on LDSTATIC - -2011-10-01 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20111001 - Merge with NetBSD make, pick up - o ensure .PREFIX is set for .PHONY - and .TARGET set for .PHONY run via .END - o __dead used consistently - -2011-09-10 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): 20110909 is a better number ;-) - -2011-09-05 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110905 - Merge with NetBSD make, pick up - o meta_oodate: ignore makeDependfile - -2011-08-28 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110828 - Merge with NetBSD make, pick up - o silent=yes in .MAKE.MODE causes meta mode to mark targets - as SILENT if a .meta file is created - -2011-08-18 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110818 - Merge with NetBSD make, pick up - o in meta mode, if target flagged .META a missing .meta file - means target is out-of-date - o fixes for gcc 4.5 warnings - o simplify job printing code - -2011-08-09 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110808 - Merge with NetBSD make, pick up - o do not touch OP_SPECIAL targets when doing make -t - -2011-06-22 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110622 - Merge with NetBSD make, pick up - o meta_oodate detect corrupted .meta file and declare oodate. - * configure.in: add check for setsid - -2011-06-07 Simon J. Gerraty - - * Merge with NetBSD make, pick up - o unit-tests/modts now works on MirBSD - -2011-06-04 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110606 - Merge with NetBSD make, pick up - o ApplyModifiers: when we parse a variable which is not - the entire modifier string, or not followed by ':', do not - consider it as containing modifiers. - o loadfile: ensure newline at end of mapped file. - -2011-05-05 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110505 - Merge with NetBSD make, pick up - o .MAKE.META.BAILIWICK - list of prefixes which define the scope - of make's control. In meta mode, any generated file within - said bailiwick, which is found to be missing, causes current - target to be out-of-date. - -2011-04-11 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110411 - Merge with NetBSD make, pick up - o when long modifiers fail to match, check sysV style. - - add a test case - -2011-04-10 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110410 - Merge with NetBSD make, pick up - o :hash - cheap 32bit hash of value - o :localtime, :gmtime - use value as format string for strftime. - -2011-03-30 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110330 - mostly because its a cooler version. - Merge with NetBSD make, pick up - o NetBSD tags for meta.[ch] - o job.c call meta_job_finish() after meta_job_error(). - o meta_job_error() should call meta_job_finish() to ensure - .meta file is closed, and safe to copy - if .ERROR target wants. - meta_job_finish() is safe to call repeatedly. - -2011-03-29 Simon J. Gerraty - - * unit-tests/modts: use printf if it is a builtin, - to save us from MirBSD - - * Makefile.in (MAKE_VERSION): bump version to 20110329 - Merge with NetBSD make, pick up - o fix for use after free() in CondDoExists(). - o meta_oodate() report extra commands and return earlier. - -2011-03-27 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110327 - Merge with NetBSD make, pick up - o meta.c, if .MAKE.MODE contains curdirOk=yes - allow creating .meta files in .CURDIR - * boot-strap (TOOL_DIFF): aparently at least on linux distro - formats the output of 'type' differently - so eat any "()" - -2011-03-06 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110306 - Merge with NetBSD make, pick up - o meta.c, only do getcwd() once - -2011-03-05 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110305 - Merge with NetBSD make, pick up - o correct sysV substitution handling of empty lhs and variable - o correct exists() check for dir with trailing / - o correct handling of modifiers for non-existant variables - during evaluation of conditionals. - o ensure MAP_FILE is defined. - o meta.c use curdir[] now exported by main.c - -2011-02-25 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110225 - Merge with NetBSD make, pick up - o fix for incorrect .PARSEDIR when .OBJDIR is re-computed after - makefiles have been read. - o fix example of :? modifier in man page. - -2011-02-13 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110214 - Merge with NetBSD make, pick up - o meta.c handle realpath() failing when generating meta file - name. - - * sigcompat.c: convert to ansi so we can use higher warning levels. - - -2011-02-07 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110207 - Merge with NetBSD make, pick up - o fix for bug in meta mode. - -2011-01-03 Simon J. Gerraty - - * parse.c: SunOS 5.8 at least does not have MAP_FILE - -2011-01-01 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20110101 - Merge with NetBSD make, pick up - o use mmap(2) if available, for reading makefiles - -2010-12-15 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20101215 - Merge with NetBSD make, pick up - o ensure meta_job_error() does not report a previous .meta file - as being culprit. - -2010-12-10 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20101210 - Merge with NetBSD make, pick up - o meta_oodate: track cwd per process, and only consider target - out-of-date if missing file is outside make's CWD. - Ignore files in /tmp/ etc. - o to ensure unit-tests results match, need to control LC_ALL - as well as LANG. - o fix for parsing bug in var.c - -2010-11-26 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20101126 - Merge with NetBSD make, pick up - o if stale dependency is an IMPSRC, search via .PATH - o meta_oodate: if a referenced file is missing, target is - out-of-date. - o meta_oodate: if a target uses .OODATE in its commands, - it (.OODATE) needs to be recomputed. - o keep a pointer to youngest child node, rather than just its - mtime. - -2010-11-02 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20101101 - -2010-10-16 Simon J. Gerraty - - * machine.sh: like os.sh, - allow for uname -p producing useless drivel - -2010-09-13 Simon J. Gerraty - - * boot-strap: document configure knobs for meta and filemon. - - * Makefile.in (MAKE_VERSION): bump version to 20100911 - Merge with NetBSD make, pick up - o meta.c - meta mode - - * make-bootstrap.sh.in: handle meta.c - * configure.in: add knobs for use_meta and filemon_h - also, look for dirname, str[e]sep and strlcpy - * util.c: add simple err[x] and warn[x] - -2010-08-08 Simon J. Gerraty - - * boot-strap (TOOL_DIFF): set this to ensure tests use - the same version of diff that configure tested - - * Makefile.in (MAKE_VERSION): bump version to 20100808 - Merge with NetBSD make, pick up - o in jobs mode, when we discover we cannot make something, - call PrintOnError before exit. - -2010-08-06 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100806 - Merge with NetBSD make, pick up - o formatting fixes for ignored errors - o ensure jobs are cleaned up regardless of where wait() was called. - -2010-06-28 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100618 - * os.sh (MACHINE_ARCH): watch out for drivel from uname -p - -2010-06-16 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100616 - Merge with NetBSD make, pick up - o man page update - o call PrintOnError from JobFinish when we detect an error we - are not ignoring. - -2010-06-06 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100606 - Merge with NetBSD make, pick up - o man page update - -2010-06-05 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100605 - Merge with NetBSD make, pick up - o use bmake_signal() which is a wrapper around sigaction() - in place of signal() - o add .export-env to allow exporting variables to environment - without tracking (so no re-export when the internal value is - changed). - -2010-05-24 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100524 - Merge with NetBSD make, pick up - o fix for .info et al being greedy. - -2010-05-23 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100520 - Merge with NetBSD make, pick up - o back to using realpath on argv[0] - but only if contains '/' and does not start with '/'. - -2010-05-10 Simon J. Gerraty - - * boot-strap: use absolute path for bmake when running tests. - - * Makefile.in (MAKE_VERSION): bump version to 20100510 - Merge with NetBSD make, pick up - o revert use of realpath on argv[0] - too many corner cases. - o print MAKE_PRINT_VAR_ON_ERROR before running .ERROR target. - -2010-05-05 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100505 - Merge with NetBSD make, pick up - o fix for missed SIGCHLD when compiled with SunPRO - actually for bmake, defining FORCE_POSIX_SIGNALS would have - done the job. - -2010-04-30 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100430 - Merge with NetBSD make, pick up - o fflush stdout before writing to stdout - -2010-04-23 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100423 - Merge with NetBSD make, pick up - o updated unit tests for Haiku (this time for sure). - * boot-strap: based on patch from joerg - honor --with-default-sys-path better. - * boot-strap: remove mention of --with-prefix-sys-path - -2010-04-22 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100422 - * Merge with NetBSD make, pick up - o fix for vfork() on Darwin. - o fix for bogus $TMPDIR. - o set .MAKE.MODE=compat for -B - o set .MAKE.JOBS=max_jobs for -j max_jobs - o allow unit-tests to run without any *.mk - o unit-tests/modmisc be more conservative in dirs presumed to exist. - * boot-strap: ignore /usr/share/mk except on NetBSD. - * unit-tests/Makefile.in: set LANG=C when running unit-tests to - ensure sort(1) behaves as expected. - -2010-04-21 Simon J. Gerraty - - * boot-strap: add FindHereOrAbove so we can use -m .../mk - -2010-04-20 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100420 - * Merge with NetBSD make, pick up - o fix for variable realpath() behavior. - we have to stat(2) the result to be sure. - o fix for .export (all) when nested vars use :sh - -2010-04-14 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100414 - * Merge with NetBSD make, pick up - o use realpath to resolve argv[0] (for .MAKE) if needed. - o add realpath from libc. - o add :tA to resolve variable via realpath(3) if possible. - -2010-04-08 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100408 - * Merge with NetBSD make, pick up - o unit tests for .ERROR, .error - o fix for .ERROR to ensure it cannot be default target. - -2010-04-06 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100406 - * Merge with NetBSD make, pick up - o fix for compat mode "Error code" going to debug_file. - o fix for .ALLSRC being populated twice. - o support for .info, .warning and .error directives - o .MAKE.MODE to control make's operational mode - o .MAKE.MAKEFILE_PREFERENCE to control the preferred makefile - name(s). - o .MAKE.DEPENDFILE to control the name of the depend file - o .ERROR target - run on failure. - -2010-03-18 Simon J. Gerraty - - * make-bootstrap.sh.in: extract MAKE_VERSION from Makefile - - * os.sh,arch.c: patch for Haiku from joerg at netbsd - -2010-03-17 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100222 - * Merge with NetBSD make, pick up - o better error msg for .for with mutiple inter vars - - * boot-strap: - o use make-bootstrap.sh from joerg at netbsd - to avoid the need for a native make when bootstrapping. - o add "" everywhere ;-) - o if /usr/share/tmac/andoc.tmac exists install nroff bmake.1 - otherwise the pre-formated version. - -2010-01-04 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20100102 - * Merge with NetBSD make, pick up: - o fix for -m .../ - -2009-11-18 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20091118 - * Merge with NetBSD make, pick up: - o .unexport - o report lines that start with '.' and should have ':' - (catch typo's of .el*if). - -2009-10-30 Simon J. Gerraty - - * configure.in: Ensure that srcdir and mksrc are absolute paths. - -2009-10-09 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): fix version to 20091007 - -2009-10-07 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 200910007 - * Merge with NetBSD make, pick up: - o fix for parsing of :S;...;...; applied to .for loop iterator - appearing in a dependency line. - -2009-09-09 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20090909 - * Merge with NetBSD make, pick up: - o fix for -C, .CURDIR and .OBJDIR - * boot-strap: - o allow share_dir to be set independent of prefix. - o select default share_dir better when prefix ends in $HOST_TARGET - o if FORCE_BSD_MK etc were set, include them in the suggested - install-mk command. - -2009-09-08 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20090908 - * Merge with NetBSD make, pick up: - o .MAKE.LEVEL for recursion tracking - o fix for :M scanning \: - -2009-09-03 Simon J. Gerraty - - * configure.in: Don't -D__EXTENSIONS__ if - AC_USE_SYSTEM_EXTENSIONS says "no". - -2009-08-26 Simon J. Gerraty - - * Makefile.in (MAKE_VERSION): bump version to 20090826 - Simplify MAKE_VERSION to just the bare date. - * Merge with NetBSD make, pick up: - o -C directory support. - o support for SIGINFO - o use $TMPDIR for temp files. - o child of vfork should be careful about modifying parent's state. - - -2009-03-26 Simon J. Gerraty - - * Appy some patches for MiNT from David Brownlee - -2009-02-26 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20090222 - * Merge with NetBSD make, pick up: - o Possible null pointer de-ref in Var_Set. - -2009-02-08 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20090204 - * Merge with NetBSD make, pick up: - o bmake_malloc et al moved to their own .c - o Count both () and {} when looking for the end of a :M pattern - o Change 'Buffer' so that it is the actual struct, not a pointer to it. - o strlist.c - functions for processing extendable arrays of pointers to strings. - o ClientData replaced with void *, so const void * can be used. - o New debug flag C for DEBUG_CWD - -2008-11-11 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20081111 - Apply patch from Joerg Sonnenberge to - configure.in: - o remove some redundant checks - o check for emlloc etc only in libutil and require the whole family. - util.c: - o remove [v]asprintf which is no longer used. - -2008-11-04 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20081101 - * Merge with NetBSD make, pick up: - o util.c: avoid use of putenv() - christos - -2008-10-30 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20081030 - pick up man page tweaks. - -2008-10-29 Simon J. Gerraty - - * Makefile.in: move processing of LIBOBJS to after is definition! - thus we'll have getenv.c in SRCS only if needed. - - * make.1: add examples of how to use :? - - * Makefile.in (BMAKE_VERSION): bump version to 20081029 - * Merge with NetBSD make, pick up: - o fix for .END processing with -j - o segfault from Parse_Error when no makefile is open - o handle numeric expressions in any variable expansion - o debug output now defaults to stderr, -dF to change it - apb - o make now uses bmake_malloc etc so that it can build natively - on A/UX - wasn't an issue for bmake, but we want to keep in sync. - -2008-09-27 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20080808 - * Merge with NetBSD make, pick up: - o fix for PR/38840: Pierre Pronchery: make crashes while parsing - long lines in Makefiles - o optimizations for VarQuote by joerg - o fix for PR/38756: dominik: make dumps core on invalid makefile - -2008-05-15 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20080515 - * Merge with NetBSD make, pick up: - o fix skip setting vars in VAR_GLOBAL context, to handle - cases where VAR_CMD is used for other than command line vars. - -2008-05-14 Simon J. Gerraty - - * boot-strap (make_version): we may need to look in - $prefix/share/mk for sys.mk - - * Makefile.in (BMAKE_VERSION): bump version to 20080514 - * Merge with NetBSD make, pick up: - o skip setting vars in VAR_GLOBAL context, when already set in - VAR_CMD which takes precedence. - -2008-03-30 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20080330 - * Merge with NetBSD make, pick up: - o fix for ?= when LHS contains variable reference. - -2008-02-15 Simon J. Gerraty - - * merge some patches from NetBSD pkgsrc. - - * makefile.boot.in (BOOTSTRAP_SYS_PATH): Allow better control of - the MAKSYSPATH used during bootstrap. - - * Makefile.in (BMAKE_VERSION): bump version to 20080215 - * Merge with NetBSD make, pick up: - o warn if non-space chars follow 'empty' in a conditional. - -2008-01-18 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20080118 - * Merge with NetBSD make, pick up: - o consider dependencies read from .depend as optional - dsl - o remember when buffer for reading makefile grows - dsl - o add -dl (aka LOUD) - David O'Brien - -2007-10-22 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20071022 - * Merge with NetBSD make, pick up: - o Allow .PATH to be used for .include "" - - * boot-strap: source default settings from .bmake-boot-strap.rc - -2007-10-16 Simon J. Gerraty - - * Makefile.in: fix maninstall on various systems - provided that our man.mk is used. - For non-BSD systems we install the preformatted page - into $MANDIR/cat1 - -2007-10-15 Simon J. Gerraty - - * boot-strap: make bmake.1 too, so maninstall works. - -2007-10-14 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20071014 - * Merge with NetBSD make, pick up: - o revamped handling of defshell - configure no longer needs to - know the content of the shells array - apb - o stop Var_Subst modifying its input - apb - o avoid calling ParseTrackInput too often - dsl - -2007-10-11 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20071011 - * Merge with NetBSD make, pick up: - o fix Shell_Init for case that _BASENAME_DEFSHELL is absolute path. - - * sigcompat.c: some tweaks for HP-UX 11.x based on - patch from Tobias Nygren - - * configure.in: update handling of --with-defshell to match - new make behavior. --with-defshell=/usr/xpg4/bin/sh - will now do what one might hope - provided the chosen shell - behaves enough like sh. - -2007-10-08 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20071008 - * Merge with NetBSD make, pick up: - o .MAKE.JOB.PREFIX - control the token output before jobs - sjg - o .export/.MAKE.EXPORTED - export of variables - sjg - o .MAKE.MAKEFILES - track all makefiles read - sjg - o performance improvements - dsl - o revamp parallel job scheduling - dsl - -2006-07-28 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20060728 - * Merge with NetBSD make, pick up: - o extra debug info during variable and cond processing - sjg - o shell definition now covers newline - rillig - o minor mem leak in PrintOnError - sjg - -2006-05-11 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20060511 - * Merge with NetBSD make, pick up: - o more memory leaks - coverity - o possible overflow in ArchFindMember - coverity - o extract variable modifier code out of Var_Parse() - so it can be called recursively - sjg - o unit-tests/moderrs - sjg - -2006-04-12 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20060412 - * Merge with NetBSD make, pick up: - o fixes for some memory leaks - coverity - o only read first sys.mk etc when searching sysIncPath - sjg - - * main.c (ReadMakefile): remove hack for __INTERIX that prevented - setting ${MAKEFILE} - OBATA Akio - -2006-03-18 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20060318 - * Merge with NetBSD make, pick up: - o cleanup of job.c to remove remote handling, distcc is more - useful and this code was likely bit-rotting - dsl - o fix for :P modifier - sjg - * boot-strap: set default prefix to something reasonable - (for me anyway). - -2006-03-01 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20060301 - * Merge with NetBSD make, pick up: - o make .WAIT apply recursively, document and test case - apb - o allow variable modifiers in a variable appear anywhere in - modifier list, document and test case - sjg - -2006-02-22 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20060222 - * Merge with NetBSD make, pick up: - o improved job token handling - dsl - o SIG_DFL the correct signal before exec - dsl - o more debug info during parsing - dsl - o allow variable modifiers to be specified via variable - sjg - * boot-strap: explain why we died if no mksrc - -2005-11-05 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20051105 - * configure.in: always set default_sys_path - default is ${prefix}/share/mk - - remove prefix_sys_path, anyone wanting more than above - needs to set it manually. - -2005-11-04 Simon J. Gerraty - - * boot-strap: make this a bit easier for pkgsrc folk. - bootstrap still fails on IRIX64 since MACHINE_ARCH gets set to - 'mips' while pkgsrc wants 'mipseb' or 'mipsel' - -2005-11-02 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20051102 - * job.c (JobFinish): fix likely ancient merge lossage - fix from Todd Vierling. - * boot-strap (srcdir): allow setting mksrc=none - -2005-10-31 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20051031 - * ranlib.h: skip on OSF too. - (NetBSD PR 31864) - -2005-10-10 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20051002 - fix a silly typo - -2005-10-09 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20051001 - support for UnixWare and some other systems, - based on patches from pkgsrc/bootstrap - -2005-09-03 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20050901 - * Merge with NetBSD make, pick up: - o possible parse error causing us to wander off. - -2005-06-06 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20050606 - * Merge with NetBSD make, pick up: - o :0x modifier for randomizing a list - o fixes for a number of -Wuninitialized issues. - -2005-05-30 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20050530 - * Merge with NetBSD make, pick up: - o Handle dependencies for .BEGIN, .END and .INTERRUPT - - * README: was seriously out of date. - -2005-03-22 Simon J. Gerraty - - * Important to use .MAKE rather than MAKE. - -2005-03-15 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20050315 - * Merge with NetBSD make, pick up: - o don't mistake .elsefoo for .else - o use suffix-specific search path correctly - o bunch of style nits - -2004-05-11 Simon J. Gerraty - - * boot-strap: - o ensure that args to --src and --with-mksrc - are resolved before giving them to configure. - o add -o "objdir" so that builder can control it, - default is $OS as determined by os.sh - o add -q to suppress all the install instructions. - -2004-05-08 Simon J. Gerraty - - * Remove __IDSTRING() - - * Makefile.in (BMAKE_VERSION): bump to 20040508 - * Merge with NetBSD make, pick up: - o posix fixes - - remove '-e' from compat mode - - add support for '+' command-line prefix. - o fix for handling '--' on command-line. - o fix include in lst.lib/lstInt.h to simplify '-I's - o we also picked up replacement of MAKE_BOOTSTRAP - with !MAKE_NATIVE which is a noop, but possibly confusing. - -2004-04-14 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20040414 - * Merge with NetBSD make, pick up: - o allow quoted strings on lhs of conditionals - o issue warning when extra .else is seen - o print line numer when errors encountered during parsing from - string. - -2004-02-20 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20040220 - * Merge with NetBSD make, pick up: - o fix for old :M parsing bug. - o re-jigged unit-tests - -2004-02-15 Simon J. Gerraty - - * Makefile.in (accept test): use ${.MAKE:S,^./,${.CURDIR}/,} - so that './bmake -f Makefile test' works. - -2004-02-14 Simon J. Gerraty - - * Makefile.in: (BMAKE_VERSION): bump to 20040214 - * Merge with NetBSD make, pick up: - o search upwards for *.mk - o fix for double free of var substitution buffers - o use of getopt replaced with custom code, since the usage - (re-scanning) isn't posix compatible. - -2004-02-12 Simon J. Gerraty - - * arch.c: don't include ranlib.h on ELF systems - (thanks to Chuck Cranor ). - -2004-01-18 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump to 20040118 - - * boot-strap (while): export vars we assign to on cmdline - * unit-test/Makefile.in: ternary is .PHONY - -2004-01-08 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20040108 - * Merge with NetBSD make, pick up: - o fix for ternary modifier - -2004-01-06 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20040105 - * Merge with NetBSD make, pick up: - o fix for cond.c to handle compound expressions better - o variable expansion within sysV style replacements - -2003-12-22 Simon J. Gerraty - - * Make portable snprintf safer - output to /dev/null first to - check space needed. - - * Makefile.in (BMAKE_VERSION): bump version to 20031222 - * Merge with NetBSD make, pick up: - o -dg3 to show input graph when things go wrong. - o explicitly look for makefiles in objdir if not found in curdir so - that errors in .depend etc will be reported accurarely. - o avoid use of -e in shell scripts in jobs mode, use '|| exit $?' - instead as it more accurately reflects the expected behavior and - is more consistently implemented. - o avoid use of asprintf. - -2003-09-28 Simon J. Gerraty - - * util.c: Add asprintf and vasprintf. - - * Makefile.in (BMAKE_VERSION): bump version to 20030928 - * Merge with NetBSD make, pick up: - :[] modifier - allows picking words from a variable. - :tW modifier - allows treating value as one big word. - W flag for :C and :S - allows treating value as one big word. - -2003-09-12 Simon J. Gerraty - - * Merge with NetBSD make - pick up -de flag to enable printing failed command. - don't skip 1st two dir entries (normally . and ..) since - coda does not have them. - -2003-09-09 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20030909 - * Merge with NetBSD make, pick up: - - changes for -V '${VAR}' to print fully expanded value - cf. -V VAR - - CompatRunCommand now prints the command that failed. - - several files got updated 3 clause Berkeley license. - -2003-08-02 Simon J. Gerraty - - * boot-strap: Allow setting configure args on command line. - -2003-07-31 Simon J. Gerraty - - * configure.in: add --with-defshell to allow sh or ksh - to be selected as default shell. - - * Makefile.in: bump version to 20030731 - - * Merge with NetBSD make - Pick up .SHELL spec for ksh and associate man page changes. - Also compat mode now uses the same shell specs. - -2003-07-29 Simon J. Gerraty - - * var.c (Var_Parse): ensure delim is initialized. - - * unit-tests/Makefile.in: use single quotes to avoid problems from - some shells. - - * makefile.boot.in: - Run the unit-tests as part of the bootstrap procedure. - -2003-07-28 Simon J. Gerraty - - * unit-tests/Makefile.in: always force complaints from - ${TEST_MAKE} to be from 'make'. - - * configure.in: add check for 'diff -u' - also fix some old autoconf'isms - - * Makefile.in (BMAKE_VERSION): bump version to 20030728. - if using GCC add -Wno-cast-qual to CFLAGS for var.o - - * Merge with NetBSD make - Pick up fix for :ts parsing error in some cases. - Pick unit-tests. - -2003-07-23 Simon J. Gerraty - - * Makefile.in (BMAKE_VERSION): bump version to 20030723. - - * var.c (Var_Parse): fix bug in :ts modifier, after const - correctness fixes, must pass nstr to VarModify. - -2003-07-14 Simon J. Gerraty - - * Makefile.in: BMAKE_VERSION switch to a date based version. - We'll generally use the date of last import from NetBSD. - - * Merge with NetBSD make - Pick up fixes for const-correctness, now passes WARNS=3 on - NetBSD. - Pick up :ts modifier, allows controlling the separator used - between words in variable expansion. - -2003-07-11 Simon J. Gerraty - - * FILES: include boot-strap and os.sh - - * Makefile.in: only set WARNS if we are NetBSD, the effect on - FreeBSD is known to be bad. - - * makefile.boot.in (bootstrap): make this the default target. - - * Makefile.in: bump version to 3.1.19 - - * machine.sh: avoid A-Z with tr as it is bound to lose. - -2003-07-10 Simon J. Gerraty - - * Merge with NetBSD make - Pick up fix for PR/19781 - unhelpful error msg on unclosed ${var:foo - Plus some doc fixes. - -2003-04-27 Simon J. Gerraty - - * Merge with NetBSD make - Pick up fix for PR/1523 - don't count a library as built, if there - is no way to build it - - * Bump version to 3.1.18 - -2003-03-23 Simon J. Gerraty - - * Merge with NetBSD make - Pick up fix for ParseDoSpecialSrc - we only use it if .WAIT - appears in src list. - -2003-03-21 Simon J. Gerraty - - * Merge with NetBSD make (mmm 10th anniversary!) - pick up fix for .WAIT in srcs that refer to $@ or $* (PR#20828) - pick up -X which tells us to not export VAR=val via setenv if - we are already doing so via MAKEFLAGS. This saves valuable env - space on systems like Darwin. - set MAKE_VERSION to 3.1.17 - - * parse.c: pix up fix for suffix rules - -2003-03-06 Simon J. Gerraty - - * Merge with NetBSD make. - pick up fix for propagating -B via MAKEFLAGS. - set MAKE_VERSION to 3.1.16 - - * Apply some patches from pkgsrc-bootstrap/bmake - Originally by Grant Beattie - I may have missed some - since they are based on bmake-3.1.12 - -2002-12-03 Simon J. Gerraty - - * makefile.boot.in (bmake): update install targets for those that - use them, also clear MAKEFLAGS when invoking bmake.boot to avoid - havoc from gmake -w. Thanks to Harlan Stenn . - - * bmake.cat1: update the pre-formatted man page! - -2002-11-30 Simon J. Gerraty - - * Merge with NetBSD make. - pick up fix for premature free of pointer used in call - to Dir_InitCur(). - set MAKE_VERSION to 3.1.15 - -2002-11-26 Simon J. Gerraty - - * configure.in: determine suitable value for MKSRC. - override using --with-mksrc=PATH. - - * machine.sh: use `uname -p` for MACHINE_ARCH on modern SunOS systems. - configs(8) will use 'sun4' as an alias for 'sparc'. - -2002-11-25 Simon J. Gerraty - - * Merge with NetBSD make. - pick up ${.PATH} - pick up fix for finding ../cat.c via .PATH when .CURDIR=.. - set MAKE_VERSION to 3.1.14 - add configure checks for killpg and sys/socket.h - -2002-09-16 Simon J. Gerraty - - * tag bmake-3-1-13 - - * makefile.boot.in (bmake): use install-mk - Also setup ./mk before trying to invoke bmake.boot incase we - needed install-mk to create a sys.mk for us. - - * configure.in: If we need to add -I${srcdir}/missing, make it an - absolute path so that it works for lst.lib too. - - * make.h: always include sys/cdefs.h since we provide one if the - host does not. - - * Makefile.in (install-mk): - use MKSRC/install-mk which will do the right thing. - use uname -p for ARCH if possible. - since install-mk will setup links bsd.prog.mk -> prog.mk if - needed, just .include bsd.prog.mk - - * Merge with NetBSD make (NetBSD-1.6) - Code is ansi-C only now. - Bug in handling of dotLast is fixed. - Can now assign .OBJDIR and make will reset its notions of life. - New modifiers :tu :tl for toUpper and toLower. - -Tue Oct 16 12:18:42 2001 Simon J. Gerraty - - * Merge with NetBSD make - pick up fix for .END failure in compat mode. - pick up fix for extra va_end() in ParseVErrorInternal. - -Thu Oct 11 13:20:06 2001 Simon J. Gerraty - - * configure.in: for systems that have sys/cdefs.h check if it is - compatible. If not, include the one under missing, but tell it to - include the native one too - necessary on Linux. - - * missing/sys/cdefs.h: if NEED_HOST_CDEFS_H is defined, use - include_next (for gcc) to get the native sys/cdefs.h - -Tue Aug 21 02:29:34 2001 Simon J. Gerraty - - * job.c (JobFinish): Fix an earlier merge bug that resulted in - leaking descriptors when using -jN. - - * job.c (JobPrintCommand): See if "curdir" exists before - attempting to chdir(). Doing the chdir directly in make (when in - compat mode) fails silently, so let the -jN version do the same. - This can happen when building kernels in an object tree and - playing clever games to reset .CURDIR. - - * Merged with NetBSD make - pick up .USEBEFORE - -Tue Jun 26 23:45:11 2001 Simon J. Gerraty - - * makefile.boot.in: Give bmake.boot a MAKESYSPATH that might work. - -Tue Jun 12 16:48:57 2001 Simon J. Gerraty - - * var.c (Var_Set): Add 4th (flags) arg so VarLoopExpand can tell - us not to export the iterator variable when using VAR_CMD context. - -Sun Jun 10 21:55:21 2001 Simon J. Gerraty - - * job.c (Job_CatchChildren): don't call Job_CatchOutput() here, - its the wrong "fix". - -Sat Jun 9 00:11:24 2001 Simon J. Gerraty - - * Redesigned export of VAR_CMD's via MAKEFLAGS. - We now simply append the variable names to .MAKEOVERRIDES, and - handle duplicate suppression and quoting in ExportMAKEFLAGS using: - ${.MAKEOVERRIDES:O:u:@v@$v=${$v:Q}@} - Apart from fixing quoting bugs in previous version, this allows us - to export vars to the environment by simply doing: - .MAKEOVERRIDES+= PATH - Merged again with NetBSD make, but the above is the only change. - - * configure.in: added - --disable-pwd-override disable $PWD overriding getcwd() - --disable-check-make-chdir disable make trying to guess - when it should automatically cd ${.CURDIR} - - * Merge with NetBSD make, changes include: - parse.c (ParseDoDependency): Spot that the syntax error is - caused by an unresolved cvs/rcs conflict and say so. - var.c: most of Var* functions now take a ctxt as 1st arg. - now does variable substituion on rhs of sysv style modifiers. - - * var.c (Var_Set): exporting of command line variables (VAR_CMD) - is now done here. We append the name='value' to .MAKEOVERRIDES - rather than directly into MAKEFLAGS as this allows a Makefile to - use .MAKEOVERRIDES= to disable this behaviour. GNU make uses a - very similar mechanism. Note that in adding name='value' to - .MAKEOVERRIDES we do the moral equivalent of: - .MAKEOVERRIDES:= ${.MAKEOVERRIDES:Nname=*} name='val' - -Fri Jun 1 14:08:02 2001 Simon J. Gerraty - - * make-conf.h (USE_IOVEC): make it conditional on HAVE_SYS_UIO_H - - * Merged with NetBSD make - make -dx can now be used to run commands via sh -x - better error messages on exec failures. - -Thu May 31 01:44:54 2001 Simon J. Gerraty - - * Makefile.in (main.o): depends on ${SRCS} ${MAKEFILE} so that - MAKE_VERSION gets updated. Also don't use ?= for MAKE_VERSION, - MACHINE etc otherwise they propagate from the previous bmake. - - * configure.in (machine): allow --with-machine=generic to make - configure use machine.sh to set MACHINE. - - * job.c (JobInterrupt): convert to using WAIT_T and friends. - - * Makefile.in: mention in bmake.1 that we use autoconf. - - * make.1: mention MAKE_PRINT_VAR_ON_ERROR. - -Wed May 30 23:17:18 2001 Simon J. Gerraty - - * main.c (ReadMakefile): don't set MAKEFILE if reading ".depend" - as that rather defeats the usefulness of ${MAKEFILE}. - - * main.c (MainParseArgs): append command line variable assignments - to MAKEFLAGS so that they get propagated to child make's. - Apparently this is required POSIX behaviour? Its useful anyway. - -Tue May 29 02:20:07 2001 Simon J. Gerraty - - * compat.c (CompatRunCommand): don't use perror() since stdio may - cause problems in child of vfork(). - - * compat.c, main.c: Call PrintOnError() when we are going to bail. - This routine prints out the .curdir where we stopped and will also - display any vars listed in ${MAKE_PRINT_VAR_ON_ERROR}. - - * main.c: add ${.newline} to hold a "\n" - sometimes handy in - :@ expansion. - - * var.c: VarLoopExpand: ignore addSpace if a \n is present. - - * Added RCSid's for the files we've touched. - -Thu May 24 15:41:37 2001 Simon J. Gerraty - - * configure.in: Thanks to some clues from mdb@juniper.net, - added autoconf magic to control setting of MACHINE, MACHINE_ARCH - as well as what ends up in _PATH_DEFSYSPATH. We now have: - - --with-machine=MACHINE explicitly set MACHINE - --with-force-machine=MACHINE set FORCE_MACHINE - --with-machine_arch=MACHINE_ARCH explicitly set MACHINE_ARCH - --with-default-sys-path=PATH:DIR:LIST use an explicit _PATH_DEFSYSPATH - --with-prefix-sys-path=PATH:DIR:LIST prefix _PATH_PREFIX_SYSPATH - --with-path-objdirprefix=PATH override _PATH_OBJDIRPREFIX - - If _PATH_OBJDIRPREFIX is set to "no" we won't define it. - - * makefile: added a pathetically simple makefile to drive - bootstrapping. Running configure by hand is more useful. - - * Makefile.in: added MAKE_VERSION, and reworked things to be less - dependent on NetBSD bsd.*.mk - - * pathnames.h: allow NO_PATH_OBJDIRPREFIX to stop us defining - _PATH_OBJDIRPREFIX for those that don't want a default. - construct _PATH_DEFSYSPATH from the info we get from configure. - - * main.c: allow for no _PATH_OBJDIRPREFIX, set ${MAKE_VERSION} - if MAKE_VERSION is defined. - - * compat.c: when we bail, print out the .CURDIR we were in. - -Sat May 12 00:34:12 2001 Simon J. Gerraty - - * Merged with NetBSD make - - * var.c: fixed a bug in the handling of the modifier :P - if the node as found but the path was null, we segfault trying to - duplicate it. - -Mon Mar 5 16:20:33 2001 Simon J. Gerraty - - * Merged with NetBSD make - - * make.c: Make_OODate's test for a library out of date was using - cmtime where it should have used mtime (my bug). - - * compat.c: Use perror() to tell us what really went wrong when we - cannot exec a command. - -Fri Dec 15 10:11:08 2000 Simon J. Gerraty - - * Merged with NetBSD make - -Sat Jun 10 10:11:08 2000 Simon J. Gerraty - - * Merged with NetBSD make - -Thu Jun 1 10:11:08 2000 Simon J. Gerraty - - * Merged with NetBSD make - -Tue May 30 10:11:08 2000 Simon J. Gerraty - - * Merged with NetBSD make - -Thu Apr 27 00:07:47 2000 Simon J. Gerraty - - * util.c: don't provide signal() since we use sigcompat.c - - * Makefile.in: added a build target. - - * var.c (Var_Parse): added ODE modifiers :U, :D, :L, :P, :@ and :! - These allow some quite clever magic. - - * main.c (main): added support for getenv(MAKESYSPATH). - -Mon Apr 2 16:25:13 2000 Simon J. Gerraty - - * Disable $PWD overriding getcwd() if MAKEOBJDIRPREFIX is set. - This avoids objdir having a different value depending on how a - directory was reached (via command line, or subdir.mk). - - * If FORCE_MACHINE is defined, ignore getenv("MACHINE"). - -Mon Apr 2 23:15:31 2000 Simon J. Gerraty - - * Do a chdir(${.CURDIR}) before invoking ${.MAKE} or ${.MAKE:T} if - MAKEOBJDIRPREFIX is set and NOCHECKMAKECHDIR is not. - I've been testing this in NetBSD's make for some weeks. - - * Turn Makefile into Makefile.in and make it useful. - -Tue Feb 29 22:08:00 2000 Simon J. Gerraty - - * Imported NetBSD's -current make(1) and resolve conflicts. - - * Applied autoconf patches from bmake v2 - - * Imported clean code base from NetBSD-1.0 diff --git a/external/bsd/bmake/dist/FILES b/external/bsd/bmake/dist/FILES deleted file mode 100644 index 397d3a277beb..000000000000 --- a/external/bsd/bmake/dist/FILES +++ /dev/null @@ -1,121 +0,0 @@ -FILES -ChangeLog -bmake.cat1 -boot-strap -bsd.after-import.mk -os.sh -Makefile.in -PSD.doc/Makefile -PSD.doc/tutorial.ms -README -arch.c -buf.c -buf.h -compat.c -cond.c -make-conf.h -make_malloc.c -make_malloc.h -config.h.in -configure -aclocal.m4 -configure.in -dir.c -dir.h -find_lib.sh -for.c -getopt.c -hash.c -hash.h -install-sh -job.c -job.h -meta.c -meta.h -dirname.c -realpath.c -strlcpy.c -strlist.c -strlist.h -stresep.c -trace.c -trace.h -lst.h -lst.lib/Makefile -lst.lib/lstAppend.c -lst.lib/lstAtEnd.c -lst.lib/lstAtFront.c -lst.lib/lstClose.c -lst.lib/lstConcat.c -lst.lib/lstDatum.c -lst.lib/lstDeQueue.c -lst.lib/lstDestroy.c -lst.lib/lstDupl.c -lst.lib/lstEnQueue.c -lst.lib/lstFind.c -lst.lib/lstFindFrom.c -lst.lib/lstFirst.c -lst.lib/lstForEach.c -lst.lib/lstForEachFrom.c -lst.lib/lstInit.c -lst.lib/lstInsert.c -lst.lib/lstInt.h -lst.lib/lstIsAtEnd.c -lst.lib/lstIsEmpty.c -lst.lib/lstLast.c -lst.lib/lstMember.c -lst.lib/lstNext.c -lst.lib/lstOpen.c -lst.lib/lstPrev.c -lst.lib/lstRemove.c -lst.lib/lstReplace.c -lst.lib/lstSucc.c -machine.sh -main.c -make.1 -bmake.1 -make.c -make.h -make-bootstrap.sh.in -missing/sys/cdefs.h -mkdeps.sh -nonints.h -parse.c -pathnames.h -ranlib.h -setenv.c -sigcompat.c -sprite.h -str.c -suff.c -targ.c -util.c -var.c -wait.h -unit-tests/Makefile.in -unit-tests/comment -unit-tests/cond1 -unit-tests/doterror -unit-tests/dotwait -unit-tests/error -unit-tests/export -unit-tests/export-all -unit-tests/forloop -unit-tests/forsubst -unit-tests/hash -unit-tests/misc -unit-tests/moderrs -unit-tests/modmatch -unit-tests/modmisc -unit-tests/modorder -unit-tests/modts -unit-tests/modword -unit-tests/phony-end -unit-tests/posix -unit-tests/qequals -unit-tests/sysv -unit-tests/ternary -unit-tests/test.exp -unit-tests/unexport -unit-tests/unexport-env -unit-tests/varcmd diff --git a/external/bsd/bmake/dist/Makefile.in b/external/bsd/bmake/dist/Makefile.in deleted file mode 100644 index 5a1f00487299..000000000000 --- a/external/bsd/bmake/dist/Makefile.in +++ /dev/null @@ -1,187 +0,0 @@ -# $NetBSD: Makefile,v 1.56 2012/05/30 21:54:23 sjg Exp $ -# @(#)Makefile 5.2 (Berkeley) 12/28/90 - -# $Id: Makefile.in,v 1.168 2012/07/05 04:10:23 sjg Exp $ - -PROG= bmake -SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \ - make.c parse.c str.c suff.c targ.c trace.c var.c util.c -SRCS+= strlist.c -SRCS+= make_malloc.c -SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \ - lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \ - lstFind.c lstFindFrom.c lstFirst.c lstForEach.c lstForEachFrom.c \ - lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \ - lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c -SRCS += lstPrev.c - -# you can use this Makefile if you have an earlier version of bmake. -prefix= @prefix@ -srcdir= @srcdir@ -CC?= @CC@ - -# Base version on src date -MAKE_VERSION= 20120704 -MACHINE=@machine@ -MACHINE_ARCH=@machine_arch@ -DEFAULT_SYS_PATH = @default_sys_path@ - -CPPFLAGS+= @CPPFLAGS@ -CFLAGS+= ${CPPFLAGS} -CFLAGS+= -D_PATH_DEFSYSPATH=\"${DEFAULT_SYS_PATH}\" -CFLAGS+= -I. -I${srcdir} @DEFS@ ${XDEFS} -DMAKE_NATIVE -CFLAGS+= ${CFLAGS_${.TARGET:T}} -CFLAGS+= ${COPTS.${.ALLSRC:M*.c:T:u}} -COPTS.main.c+= "-DMAKE_VERSION=\"${MAKE_VERSION}\"" -LDFLAGS= @LDFLAGS@ -LIBOBJS= @LIBOBJS@ -LDADD= @LIBS@ - -.if !empty(LIBOBJS) -SRCS+= ${LIBOBJS:T:.o=.c} -.endif - -USE_META = @use_meta@ -.if ${USE_META} != "no" -SRCS+= meta.c -CPPFLAGS+= -DUSE_META -FILEMON_H ?= @filemon_h@ -.if exists(${FILEMON_H}) && ${FILEMON_H:T} == "filemon.h" -COPTS.meta.c += -DHAVE_FILEMON_H -I${FILEMON_H:H} -.endif -.endif - -.PATH: ${srcdir} -.PATH: ${srcdir}/lst.lib - -OS!= uname -s -ARCH!= uname -p 2>/dev/null || uname -m - -# list of OS's which are derrived from BSD4.4 -isBSD44= NetBSD FreeBSD OpenBSD DragonFly - -.if ${OS} == "NetBSD" -# Don't set these for anyone else since we don't know what the effect may be. -# On FreeBSD WARNS=2 sets a bunch of -W flags that make does not handle. -WFORMAT= 1 -WARNS=4 -.NOPATH: bmake.cat1 -.if make(install) && exists(${DESTDIR}/usr/share/doc) -SUBDIR= PSD.doc -.endif -.endif - -.if empty(isBSD44:M${OS}) -# XXX not sure if we still want this given that configure -# lets us force or not the definition of MACHINE. -CFLAGS_main.o+= "-DFORCE_MACHINE=\"${MACHINE}\"" -MANTARGET=cat -INSTALL?=${srcdir}/install-sh -.if (${MACHINE} == "sun386") -# even I don't have one of these anymore :-) -CFLAGS+= -DPORTAR -.elif (${MACHINE} != "sunos") -SRCS+= sigcompat.c -CFLAGS+= -DSIGNAL_FLAGS=SA_RESTART -.endif -.endif -.if defined(.PARSEDIR) -.if make(obj) || make(clean) -SUBDIR+= unit-tests -.endif -.endif - -# many systems use gcc these days -CC_IS_GCC=@GCC@ -.if ${CC_IS_GCC} == "yes" -# problem with gcc3 -CFLAGS_var.o+= -Wno-cast-qual -.endif - -CFLAGS_main.o+= "-D@force_machine@MACHINE=\"${MACHINE}\"" "-DMACHINE_ARCH=\"${MACHINE_ARCH}\"" - -EXTRACT_MAN=no - -MAN=${PROG}.1 -.if (${PROG} != "make") -${MAN}: make.1 - @echo making ${PROG}.1 - @sed -e 's/^.Nx/NetBSD/' -e '/^.Nm/s/make/${PROG}/' -e '/^.Sh HISTORY/,$$d' ${srcdir}/make.1 > $@ - @(echo ".Sh HISTORY"; \ - echo ".Nm"; \ - echo "is derived from NetBSD"; \ - echo ".Xr make 1 ."; \ - echo It uses autoconf to facilitate portability to other platforms.) >> $@ - -.endif - -.if !empty(isBSD44:M${OS}) -.if "${OS}" != "NetBSD" -MAN1=${MAN} -.endif -MANTARGET?=man -.endif - -MANTARGET?= cat -MANDEST?= ${MANDIR}/${MANTARGET}1 - -.if ${MANTARGET} == "cat" -_mfromdir=${srcdir} -.endif - -.if exists(${srcdir}/../Makefile.inc) -.include "${srcdir}/../Makefile.inc" -.endif -.-include -# sigh, FreeBSD at least includes bsd.subdir.mk via bsd.obj.mk -# so the inclusion below, results in complaints about re-defined -# targets. For NetBSD though we need to explicitly include it. -.if defined(.PARSEDIR) -.if defined(SUBDIR) && !target(${SUBDIR:[1]}) -.-include -.endif -.endif - -CPPFLAGS+= -DMAKE_NATIVE -COPTS.var.c += -Wno-cast-qual -COPTS.job.c += -Wno-format-nonliteral -COPTS.parse.c += -Wno-format-nonliteral -COPTS.var.c += -Wno-format-nonliteral - -# Force these -BINDIR= ${prefix}/bin -MANDIR= ${prefix}/man - -arch.o: config.h -# make sure that MAKE_VERSION gets updated. -main.o: ${SRCS} ${MAKEFILE} - -MK?=${prefix}/share/mk -MKSRC?=@mksrc@ -INSTALL?=${srcdir}/install-sh - -beforeinstall: - test -d ${DESTDIR}${BINDIR} || ${INSTALL} -m 775 -d ${DESTDIR}${BINDIR} - test -d ${DESTDIR}${MANDEST} || ${INSTALL} -m 775 -d ${DESTDIR}${MANDEST} - -# latest version of *.mk includes an installer. -# you should not need to set USE_OS -install-mk: -.if exists(${MKSRC}/install-mk) - test -d ${DESTDIR}${MK} || ${INSTALL} -m 775 -d ${DESTDIR}${MK} - ${MKSRC}/install-mk -v -m 644 ${DESTDIR}${MK} ${USE_OS} -.else - @echo need to unpack mk.tar.gz under ${srcdir} or set MKSRC; false -.endif - -.ifdef TOOLDIR -# this is a native netbsd build, -# use libutil rather than the local emalloc etc. -CPPFLAGS+= -DUSE_EMALLOC -LDADD+=-lutil -DPADD+=${LIBUTIL} -.endif - -# A simple unit-test driver to help catch regressions -accept test: - cd ${.CURDIR}/unit-tests && MAKEFLAGS= ${.MAKE} -r -m / TEST_MAKE=${TEST_MAKE:U${.OBJDIR}/${PROG:T}} ${.TARGET} diff --git a/external/bsd/bmake/dist/PSD.doc/Makefile b/external/bsd/bmake/dist/PSD.doc/Makefile deleted file mode 100644 index 8e1f1fa0705b..000000000000 --- a/external/bsd/bmake/dist/PSD.doc/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -# $NetBSD: Makefile,v 1.2 1995/06/14 15:20:23 christos Exp $ -# @(#)Makefile 8.1 (Berkeley) 8/14/93 - -DIR= psd/12.make -SRCS= tutorial.ms -MACROS= -ms - -.include diff --git a/external/bsd/bmake/dist/PSD.doc/tutorial.ms b/external/bsd/bmake/dist/PSD.doc/tutorial.ms deleted file mode 100644 index c1a6444d48c6..000000000000 --- a/external/bsd/bmake/dist/PSD.doc/tutorial.ms +++ /dev/null @@ -1,3773 +0,0 @@ -.\" $NetBSD: tutorial.ms,v 1.11 2011/08/18 15:19:30 sjg Exp $ -.\" Copyright (c) 1988, 1989, 1993 -.\" The Regents of the University of California. All rights reserved. -.\" -.\" This code is derived from software contributed to Berkeley by -.\" Adam de Boor. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" 3. Neither the name of the University nor the names of its contributors -.\" may be used to endorse or promote products derived from this software -.\" without specific prior written permission. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -.\" SUCH DAMAGE. -.\" -.\" Copyright (c) 1988, 1989 by Adam de Boor -.\" Copyright (c) 1989 by Berkeley Softworks -.\" -.\" This code is derived from software contributed to Berkeley by -.\" Adam de Boor. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" 3. All advertising materials mentioning features or use of this software -.\" must display the following acknowledgement: -.\" This product includes software developed by the University of -.\" California, Berkeley and its contributors. -.\" 4. Neither the name of the University nor the names of its contributors -.\" may be used to endorse or promote products derived from this software -.\" without specific prior written permission. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -.\" SUCH DAMAGE. -.\" -.\" @(#)tutorial.ms 8.1 (Berkeley) 8/18/93 -.\" -.EH 'PSD:12-%''PMake \*- A Tutorial' -.OH 'PMake \*- A Tutorial''PSD:12-%' -.\" xH is a macro to provide numbered headers that are automatically stuffed -.\" into a table-of-contents, properly indented, etc. If the first argument -.\" is numeric, it is taken as the depth for numbering (as for .NH), else -.\" the default (1) is assumed. -.\" -.\" @P The initial paragraph distance. -.\" @Q The piece of section number to increment (or 0 if none given) -.\" @R Section header. -.\" @S Indent for toc entry -.\" @T Argument to NH (can't use @Q b/c giving 0 to NH resets the counter) -.de xH -.NH \\$1 -\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9 -.nr PD .1v -.XS \\n% -.ta 0.6i -\\*(SN \\$2 \\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9 -.XE -.nr PD .3v -.. -.\" CW is used to place a string in fixed-width or switch to a -.\" fixed-width font. -.\" C is a typewriter font for a laserwriter. Use something else if -.\" you don't have one... -.de CW -.ie !\\n(.$ .ft C -.el \&\\$3\fC\\$1\fP\\$2 -.. -.\" Anything I put in a display I want to be in fixed-width -.am DS -.CW -.. -.\" The stuff in .No produces a little stop sign in the left margin -.\" that says NOTE in it. Unfortunately, it does cause a break, but -.\" hey. Can't have everything. In case you're wondering how I came -.\" up with such weird commands, they came from running grn on a -.\" gremlin file... -.de No -.br -.ne 0.5i -.po -0.5i -.br -.mk -.nr g3 \\n(.f -.nr g4 \\n(.s -.sp -1 -.\" .st cf -\D't 5u' -.sp -1 -\h'50u' -.sp -1 -\D't 3u' -.sp -1 -.sp 7u -\h'53u' -\d\D'p -0.19i 0.0i 0.0i -0.13i 0.30i 0.0i 0.0i 0.13i' -.sp -1 -.ft R -.ps 6 -.nr g8 \\n(.d -.ds g9 "NOTE -.sp 74u -\h'85u'\v'0.85n'\h-\w\\*(g9u/2u\&\\*(g9 -.sp |\\n(g8u -.sp 166u -\D't 3u' -.br -.po -.rt -.ft \\n(g3 -.ps \\n(g4 -.. -.de Bp -.ie !\\n(.$ .IP \(bu 2 -.el .IP "\&" 2 -.. -.po +.3i -.TL -PMake \*- A Tutorial -.AU -Adam de Boor -.AI -Berkeley Softworks -2150 Shattuck Ave, Penthouse -Berkeley, CA 94704 -adam@bsw.uu.net -\&...!uunet!bsw!adam -.FS -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appears in all copies. -The University of California, Berkeley Softworks, and Adam de Boor make no -representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. -.FE -.PP -.xH 1 Introduction -.LP -PMake is a program for creating other programs, or anything else you -can think of for it to do. The basic idea behind PMake is that, for -any given system, be it a program or a document or whatever, there -will be some files that depend on the state of other files (on when -they were last modified). PMake takes these dependencies, which you -must specify, and uses them to build whatever it is you want it to -build. -.LP -PMake is almost fully-compatible with Make, with which you may already -be familiar. PMake's most important feature is its ability to run -several different jobs at once, making the creation of systems -considerably faster. It also has a great deal more functionality than -Make. Throughout the text, whenever something is mentioned that is an -important difference between PMake and Make (i.e. something that will -cause a makefile to fail if you don't do something about it), or is -simply important, it will be flagged with a little sign in the left -margin, like this: -.No -.LP -This tutorial is divided into three main sections corresponding to basic, -intermediate and advanced PMake usage. If you already know Make well, -you will only need to skim chapter 2 (there are some aspects of -PMake that I consider basic to its use that didn't exist in Make). -Things in chapter 3 make life much easier, while those in chapter 4 -are strictly for those who know what they are doing. Chapter 5 has -definitions for the jargon I use and chapter 6 contains possible -solutions to the problems presented throughout the tutorial. -.xH 1 The Basics of PMake -.LP -PMake takes as input a file that tells a) which files depend on which -other files to be complete and b) what to do about files that are -``out-of-date.'' This file is known as a ``makefile'' and is usually -.Ix 0 def makefile -kept in the top-most directory of the system to be built. While you -can call the makefile anything you want, PMake will look for -.CW Makefile -and -.CW makefile -(in that order) in the current directory if you don't tell it -otherwise. -.Ix 0 def makefile default -To specify a different makefile, use the -.B \-f -flag (e.g. -.CW "pmake -f program.mk" ''). `` -.Ix 0 ref flags -f -.Ix 0 ref makefile other -.LP -A makefile has four different types of lines in it: -.RS -.IP \(bu 2 -File dependency specifications -.IP \(bu 2 -Creation commands -.IP \(bu 2 -Variable assignments -.IP \(bu 2 -Comments, include statements and conditional directives -.RE -.LP -Any line may be continued over multiple lines by ending it with a -backslash. -.Ix 0 def "continuation line" -The backslash, following newline and any initial whitespace -on the following line are compressed into a single space before the -input line is examined by PMake. -.xH 2 Dependency Lines -.LP -As mentioned in the introduction, in any system, there are -dependencies between the files that make up the system. For instance, -in a program made up of several C source files and one header file, -the C files will need to be re-compiled should the header file be -changed. For a document of several chapters and one macro file, the -chapters will need to be reprocessed if any of the macros changes. -.Ix 0 def "dependency" -These are dependencies and are specified by means of dependency lines in -the makefile. -.LP -.Ix 0 def "dependency line" -On a dependency line, there are targets and sources, separated by a -one- or two-character operator. -The targets ``depend'' on the sources and are usually created from -them. -.Ix 0 def target -.Ix 0 def source -.Ix 0 ref operator -Any number of targets and sources may be specified on a dependency line. -All the targets in the line are made to depend on all the sources. -Targets and sources need not be actual files, but every source must be -either an actual file or another target in the makefile. -If you run out of room, use a backslash at the end of the line to continue onto -the next one. -.LP -Any file may be a target and any file may be a source, but the -relationship between the two (or however many) is determined by the -``operator'' that separates them. -.Ix 0 def operator -Three types of operators exist: one specifies that the datedness of a -target is determined by the state of its sources, while another -specifies other files (the sources) that need to be dealt with before -the target can be re-created. The third operator is very similar to -the first, with the additional condition that the target is -out-of-date if it has no sources. These operations are represented by -the colon, the exclamation point and the double-colon, respectively, and are -mutually exclusive. Their exact semantics are as follows: -.IP ":" -.Ix 0 def operator colon -.Ix 0 def : -If a colon is used, a target on the line is considered to be -``out-of-date'' (and in need of creation) if -.RS -.IP \(bu 2 -any of the sources has been modified more recently than the target, or -.IP \(bu 2 -the target doesn't exist. -.RE -.Ix 0 def out-of-date -.IP "\&" -Under this operation, steps will be taken to re-create the target only -if it is found to be out-of-date by using these two rules. -.IP "!" -.Ix 0 def operator force -.Ix 0 def ! -If an exclamation point is used, the target will always be re-created, -but this will not happen until all of its sources have been examined -and re-created, if necessary. -.IP "::" -.Ix 0 def operator double-colon -.Ix 0 def :: -If a double-colon is used, a target is out-of-date if: -.RS -.IP \(bu 2 -any of the sources has been modified more recently than the target, or -.IP \(bu 2 -the target doesn't exist, or -.IP \(bu 2 -the target has no sources. -.RE -.IP "\&" -If the target is out-of-date according to these rules, it will be re-created. -This operator also does something else to the targets, but I'll go -into that in the next section (``Shell Commands''). -.LP -Enough words, now for an example. Take that C program I mentioned -earlier. Say there are three C files -.CW a.c , ( -.CW b.c -and -.CW c.c ) -each of which -includes the file -.CW defs.h . -The dependencies between the files could then be expressed as follows: -.DS -program : a.o b.o c.o -a.o b.o c.o : defs.h -a.o : a.c -b.o : b.c -c.o : c.c -.DE -.LP -You may be wondering at this point, where -.CW a.o , -.CW b.o -and -.CW c.o -came in and why -.I they -depend on -.CW defs.h -and the C files don't. The reason is quite simple: -.CW program -cannot be made by linking together .c files \*- it must be -made from .o files. Likewise, if you change -.CW defs.h , -it isn't the .c files that need to be re-created, it's the .o files. -If you think of dependencies in these terms \*- which files (targets) -need to be created from which files (sources) \*- you should have no problems. -.LP -An important thing to notice about the above example, is that all the -\&.o files appear as targets on more than one line. This is perfectly -all right: the target is made to depend on all the sources mentioned -on all the dependency lines. E.g. -.CW a.o -depends on both -.CW defs.h -and -.CW a.c . -.Ix 0 ref dependency -.No -.LP -The order of the dependency lines in the makefile is -important: the first target on the first dependency line in the -makefile will be the one that gets made if you don't say otherwise. -That's why -.CW program -comes first in the example makefile, above. -.LP -Both targets and sources may contain the standard C-Shell wildcard -characters -.CW { , ( -.CW } , -.CW * , -.CW ? , -.CW [ , -and -.CW ] ), -but the non-curly-brace ones may only appear in the final component -(the file portion) of the target or source. The characters mean the -following things: -.IP \fB{}\fP -These enclose a comma-separated list of options and cause the pattern -to be expanded once for each element of the list. Each expansion -contains a different element. For example, -.CW src/{whiffle,beep,fish}.c -expands to the three words -.CW src/whiffle.c , -.CW src/beep.c , -and -.CW src/fish.c . -These braces may be nested and, unlike the other wildcard characters, -the resulting words need not be actual files. All other wildcard -characters are expanded using the files that exist when PMake is -started. -.IP \fB*\fP -This matches zero or more characters of any sort. -.CW src/*.c -will expand to the same three words as above as long as -.CW src -contains those three files (and no other files that end in -.CW .c ). -.IP \fB?\fP -Matches any single character. -.IP \fB[]\fP -This is known as a character class and contains either a list of -single characters, or a series of character ranges -.CW a-z , ( -for example means all characters between a and z), or both. It matches -any single character contained in the list. E.g. -.CW [A-Za-z] -will match all letters, while -.CW [0123456789] -will match all numbers. -.xH 2 Shell Commands -.LP -``Isn't that nice,'' you say to yourself, ``but how are files -actually `re-created,' as he likes to spell it?'' -The re-creation is accomplished by commands you place in the makefile. -These commands are passed to the Bourne shell (better known as -``/bin/sh'') to be executed and are -.Ix 0 ref shell -.Ix 0 ref re-creation -.Ix 0 ref update -expected to do what's necessary to update the target file (PMake -doesn't actually check to see if the target was created. It just -assumes it's there). -.Ix 0 ref target -.LP -Shell commands in a makefile look a lot like shell commands you would -type at a terminal, with one important exception: each command in a -makefile -.I must -be preceded by at least one tab. -.LP -Each target has associated with it a shell script made up of -one or more of these shell commands. The creation script for a target -should immediately follow the dependency line for that target. While -any given target may appear on more than one dependency line, only one -of these dependency lines may be followed by a creation script, unless -the `::' operator was used on the dependency line. -.Ix 0 ref operator double-colon -.Ix 0 ref :: -.No -.LP -If the double-colon was used, each dependency line for the target -may be followed by a shell script. That script will only be executed -if the target on the associated dependency line is out-of-date with -respect to the sources on that line, according to the rules I gave -earlier. -I'll give you a good example of this later on. -.LP -To expand on the earlier makefile, you might add commands as follows: -.DS -program : a.o b.o c.o - cc a.o b.o c.o \-o program -a.o b.o c.o : defs.h -a.o : a.c - cc \-c a.c -b.o : b.c - cc \-c b.c -c.o : c.c - cc \-c c.c -.DE -.LP -Something you should remember when writing a makefile is, the -commands will be executed if the -.I target -on the dependency line is out-of-date, not the sources. -.Ix 0 ref target -.Ix 0 ref source -.Ix 0 ref out-of-date -In this example, the command -.CW "cc \-c a.c" '' `` -will be executed if -.CW a.o -is out-of-date. Because of the `:' operator, -.Ix 0 ref : -.Ix 0 ref operator colon -this means that should -.CW a.c -.I or -.CW defs.h -have been modified more recently than -.CW a.o , -the command will be executed -.CW a.o "\&" ( -will be considered out-of-date). -.Ix 0 ref out-of-date -.LP -Remember how I said the only difference between a makefile shell -command and a regular shell command was the leading tab? I lied. There -is another way in which makefile commands differ from regular ones. -The first two characters after the initial whitespace are treated -specially. -If they are any combination of `@' and `\-', they cause PMake to do -different things. -.LP -In most cases, shell commands are printed before they're -actually executed. This is to keep you informed of what's going on. If -an `@' appears, however, this echoing is suppressed. In the case of an -.CW echo -command, say -.CW "echo Linking index" ,'' `` -it would be -rather silly to see -.DS -echo Linking index -Linking index -.DE -.LP -so PMake allows you to place an `@' before the command -.CW "@echo Linking index" '') (`` -to prevent the command from being printed. -.LP -The other special character is the `\-'. In case you didn't know, -shell commands finish with a certain ``exit status.'' This status is -made available by the operating system to whatever program invoked the -command. Normally this status will be 0 if everything went ok and -non-zero if something went wrong. For this reason, PMake will consider -an error to have occurred if one of the shells it invokes returns a non-zero -status. When it detects an error, PMake's usual action is to abort -whatever it's doing and exit with a non-zero status itself (any other -targets that were being created will continue being made, but nothing -new will be started. PMake will exit after the last job finishes). -This behavior can be altered, however, by placing a `\-' at the front -of a command -.CW "\-mv index index.old" ''), (`` -certain command-line arguments, -or doing other things, to be detailed later. In such -a case, the non-zero status is simply ignored and PMake keeps chugging -along. -.No -.LP -Because all the commands are given to a single shell to execute, such -things as setting shell variables, changing directories, etc., last -beyond the command in which they are found. This also allows shell -compound commands (like -.CW for -loops) to be entered in a natural manner. -Since this could cause problems for some makefiles that depend on -each command being executed by a single shell, PMake has a -.B \-B -.Ix 0 ref compatibility -.Ix 0 ref flags -B -flag (it stands for backwards-compatible) that forces each command to -be given to a separate shell. It also does several other things, all -of which I discourage since they are now old-fashioned.\|.\|.\|. -.No -.LP -A target's shell script is fed to the shell on its (the shell's) input stream. -This means that any commands, such as -.CW ci -that need to get input from the terminal won't work right \*- they'll -get the shell's input, something they probably won't find to their -liking. A simple way around this is to give a command like this: -.DS -ci $(SRCS) < /dev/tty -.DE -This would force the program's input to come from the terminal. If you -can't do this for some reason, your only other alternative is to use -PMake in its fullest compatibility mode. See -.B Compatibility -in chapter 4. -.Ix 0 ref compatibility -.LP -.xH 2 Variables -.LP -PMake, like Make before it, has the ability to save text in variables -to be recalled later at your convenience. Variables in PMake are used -much like variables in the shell and, by tradition, consist of -all upper-case letters (you don't -.I have -to use all upper-case letters. -In fact there's nothing to stop you from calling a variable -.CW @^&$%$ . -Just tradition). Variables are assigned-to using lines of the form -.Ix 0 def variable assignment -.DS -VARIABLE = value -.DE -.Ix 0 def variable assignment -appended-to by -.DS -VARIABLE += value -.DE -.Ix 0 def variable appending -.Ix 0 def variable assignment appended -.Ix 0 def += -conditionally assigned-to (if the variable isn't already defined) by -.DS -VARIABLE ?= value -.DE -.Ix 0 def variable assignment conditional -.Ix 0 def ?= -and assigned-to with expansion (i.e. the value is expanded (see below) -before being assigned to the variable\*-useful for placing a value at -the beginning of a variable, or other things) by -.DS -VARIABLE := value -.DE -.Ix 0 def variable assignment expanded -.Ix 0 def := -.LP -Any whitespace before -.I value -is stripped off. When appending, a space is placed between the old -value and the stuff being appended. -.LP -The final way a variable may be assigned to is using -.DS -VARIABLE != shell-command -.DE -.Ix 0 def variable assignment shell-output -.Ix 0 def != -In this case, -.I shell-command -has all its variables expanded (see below) and is passed off to a -shell to execute. The output of the shell is then placed in the -variable. Any newlines (other than the final one) are replaced by -spaces before the assignment is made. This is typically used to find -the current directory via a line like: -.DS -CWD != pwd -.DE -.LP -.B Note: -this is intended to be used to execute commands that produce small amounts -of output (e.g. ``pwd''). The implementation is less than intelligent and will -likely freeze if you execute something that produces thousands of -bytes of output (8 Kb is the limit on many UNIX systems). -.LP -The value of a variable may be retrieved by enclosing the variable -name in parentheses or curly braces and preceding the whole thing -with a dollar sign. -.LP -For example, to set the variable CFLAGS to the string -.CW "\-I/sprite/src/lib/libc \-O" ,'' `` -you would place a line -.DS -CFLAGS = \-I/sprite/src/lib/libc \-O -.DE -in the makefile and use the word -.CW "$(CFLAGS)" -wherever you would like the string -.CW "\-I/sprite/src/lib/libc \-O" -to appear. This is called variable expansion. -.Ix 0 def variable expansion -.No -.LP -Unlike Make, PMake will not expand a variable unless it knows -the variable exists. E.g. if you have a -.CW "${i}" -in a shell command and you have not assigned a value to the variable -.CW i -(the empty string is considered a value, by the way), where Make would have -substituted the empty string, PMake will leave the -.CW "${i}" -alone. -To keep PMake from substituting for a variable it knows, precede the -dollar sign with another dollar sign. -(e.g. to pass -.CW "${HOME}" -to the shell, use -.CW "$${HOME}" ). -This causes PMake, in effect, to expand the -.CW $ -macro, which expands to a single -.CW $ . -For compatibility, Make's style of variable expansion will be used -if you invoke PMake with any of the compatibility flags (\c -.B \-V , -.B \-B -or -.B \-M . -The -.B \-V -flag alters just the variable expansion). -.Ix 0 ref flags -V -.Ix 0 ref flags -B -.Ix 0 ref flags -M -.Ix 0 ref compatibility -.LP -.Ix 0 ref variable expansion -There are two different times at which variable expansion occurs: -When parsing a dependency line, the expansion occurs immediately -upon reading the line. If any variable used on a dependency line is -undefined, PMake will print a message and exit. -Variables in shell commands are expanded when the command is -executed. -Variables used inside another variable are expanded whenever the outer -variable is expanded (the expansion of an inner variable has no effect -on the outer variable. I.e. if the outer variable is used on a dependency -line and in a shell command, and the inner variable changes value -between when the dependency line is read and the shell command is -executed, two different values will be substituted for the outer -variable). -.Ix 0 def variable types -.LP -Variables come in four flavors, though they are all expanded the same -and all look about the same. They are (in order of expanding scope): -.RS -.IP \(bu 2 -Local variables. -.Ix 0 ref variable local -.IP \(bu 2 -Command-line variables. -.Ix 0 ref variable command-line -.IP \(bu 2 -Global variables. -.Ix 0 ref variable global -.IP \(bu 2 -Environment variables. -.Ix 0 ref variable environment -.RE -.LP -The classification of variables doesn't matter much, except that the -classes are searched from the top (local) to the bottom (environment) -when looking up a variable. The first one found wins. -.xH 3 Local Variables -.LP -.Ix 0 def variable local -Each target can have as many as seven local variables. These are -variables that are only ``visible'' within that target's shell script -and contain such things as the target's name, all of its sources (from -all its dependency lines), those sources that were out-of-date, etc. -Four local variables are defined for all targets. They are: -.RS -.IP ".TARGET" -.Ix 0 def variable local .TARGET -.Ix 0 def .TARGET -The name of the target. -.IP ".OODATE" -.Ix 0 def variable local .OODATE -.Ix 0 def .OODATE -The list of the sources for the target that were considered out-of-date. -The order in the list is not guaranteed to be the same as the order in -which the dependencies were given. -.IP ".ALLSRC" -.Ix 0 def variable local .ALLSRC -.Ix 0 def .ALLSRC -The list of all sources for this target in the order in which they -were given. -.IP ".PREFIX" -.Ix 0 def variable local .PREFIX -.Ix 0 def .PREFIX -The target without its suffix and without any leading path. E.g. for -the target -.CW ../../lib/compat/fsRead.c , -this variable would contain -.CW fsRead . -.RE -.LP -Three other local variables are set only for certain targets under -special circumstances. These are the ``.IMPSRC,'' -.Ix 0 ref variable local .IMPSRC -.Ix 0 ref .IMPSRC -``.ARCHIVE,'' -.Ix 0 ref variable local .ARCHIVE -.Ix 0 ref .ARCHIVE -and ``.MEMBER'' -.Ix 0 ref variable local .MEMBER -.Ix 0 ref .MEMBER -variables. When they are set and how they are used is described later. -.LP -Four of these variables may be used in sources as well as in shell -scripts. -.Ix 0 def "dynamic source" -.Ix 0 def source dynamic -These are ``.TARGET'', ``.PREFIX'', ``.ARCHIVE'' and ``.MEMBER''. The -variables in the sources are expanded once for each target on the -dependency line, providing what is known as a ``dynamic source,'' -.Rd 0 -allowing you to specify several dependency lines at once. For example, -.DS -$(OBJS) : $(.PREFIX).c -.DE -will create a dependency between each object file and its -corresponding C source file. -.xH 3 Command-line Variables -.LP -.Ix 0 def variable command-line -Command-line variables are set when PMake is first invoked by giving a -variable assignment as one of the arguments. For example, -.DS -pmake "CFLAGS = -I/sprite/src/lib/libc -O" -.DE -would make -.CW CFLAGS -be a command-line variable with the given value. Any assignments to -.CW CFLAGS -in the makefile will have no effect, because once it -is set, there is (almost) nothing you can do to change a command-line -variable (the search order, you see). Command-line variables may be -set using any of the four assignment operators, though only -.CW = -and -.CW ?= -behave as you would expect them to, mostly because assignments to -command-line variables are performed before the makefile is read, thus -the values set in the makefile are unavailable at the time. -.CW += -.Ix 0 ref += -.Ix 0 ref variable assignment appended -is the same as -.CW = , -because the old value of the variable is sought only in the scope in -which the assignment is taking place (for reasons of efficiency that I -won't get into here). -.CW := -and -.CW ?= -.Ix 0 ref := -.Ix 0 ref ?= -.Ix 0 ref variable assignment expanded -.Ix 0 ref variable assignment conditional -will work if the only variables used are in the environment. -.CW != -is sort of pointless to use from the command line, since the same -effect can no doubt be accomplished using the shell's own command -substitution mechanisms (backquotes and all that). -.xH 3 Global Variables -.LP -.Ix 0 def variable global -Global variables are those set or appended-to in the makefile. -There are two classes of global variables: those you set and those PMake sets. -As I said before, the ones you set can have any name you want them to have, -except they may not contain a colon or an exclamation point. -The variables PMake sets (almost) always begin with a -period and always contain upper-case letters, only. The variables are -as follows: -.RS -.IP .PMAKE -.Ix 0 def variable global .PMAKE -.Ix 0 def .PMAKE -.Ix 0 def variable global MAKE -.Ix 0 def MAKE -The name by which PMake was invoked is stored in this variable. For -compatibility, the name is also stored in the MAKE variable. -.IP .MAKEFLAGS -.Ix 0 def variable global .MAKEFLAGS -.Ix 0 def .MAKEFLAGS variable -.Ix 0 def variable global MFLAGS -.Ix 0 def MFLAGS -All the relevant flags with which PMake was invoked. This does not -include such things as -.B \-f -or variable assignments. Again for compatibility, this value is stored -in the MFLAGS variable as well. -.RE -.LP -Two other variables, ``.INCLUDES'' and ``.LIBS,'' are covered in the -section on special targets in chapter 3. -.Ix 0 ref variable global .INCLUDES -.Ix 0 ref variable global .LIBS -.LP -Global variables may be deleted using lines of the form: -.Ix 0 def #undef -.Ix 0 def variable deletion -.DS -#undef \fIvariable\fP -.DE -The -.CW # ' ` -must be the first character on the line. Note that this may only be -done on global variables. -.xH 3 Environment Variables -.LP -.Ix 0 def variable environment -Environment variables are passed by the shell that invoked PMake and -are given by PMake to each shell it invokes. They are expanded like -any other variable, but they cannot be altered in any way. -.LP -One special environment variable, -.CW PMAKE , -.Ix 0 def variable environment PMAKE -is examined by PMake for command-line flags, variable assignments, -etc., it should always use. This variable is examined before the -actual arguments to PMake are. In addition, all flags given to PMake, -either through the -.CW PMAKE -variable or on the command line, are placed in this environment -variable and exported to each shell PMake executes. Thus recursive -invocations of PMake automatically receive the same flags as the -top-most one. -.LP -Using all these variables, you can compress the sample makefile even more: -.DS -OBJS = a.o b.o c.o -program : $(OBJS) - cc $(.ALLSRC) \-o $(.TARGET) -$(OBJS) : defs.h -a.o : a.c - cc \-c a.c -b.o : b.c - cc \-c b.c -c.o : c.c - cc \-c c.c -.DE -.Ix 0 ref variable local .ALLSRC -.Ix 0 ref .ALLSRC -.Ix 0 ref variable local .TARGET -.Ix 0 ref .TARGET -.Rd 3 -.xH 2 Comments -.LP -.Ix 0 def comments -Comments in a makefile start with a `#' character and extend to the -end of the line. They may appear -anywhere you want them, except in a shell command (though the shell -will treat it as a comment, too). If, for some reason, you need to use the `#' -in a variable or on a dependency line, put a backslash in front of it. -PMake will compress the two into a single `#' (Note: this isn't true -if PMake is operating in full-compatibility mode). -.Ix 0 ref flags -M -.Ix 0 ref compatibility -.xH 2 Parallelism -.No -.LP -PMake was specifically designed to re-create several targets at once, -when possible. You do not have to do anything special to cause this to -happen (unless PMake was configured to not act in parallel, in which -case you will have to make use of the -.B \-L -and -.B \-J -flags (see below)), -.Ix 0 ref flags -L -.Ix 0 ref flags -J -but you do have to be careful at times. -.LP -There are several problems you are likely to encounter. One is -that some makefiles (and programs) are written in such a way that it is -impossible for two targets to be made at once. The program -.CW xstr , -for example, -always modifies the files -.CW strings -and -.CW x.c . -There is no way to change it. Thus you cannot run two of them at once -without something being trashed. Similarly, if you have commands -in the makefile that always send output to the same file, you will not -be able to make more than one target at once unless you change the -file you use. You can, for instance, add a -.CW $$$$ -to the end of the file name to tack on the process ID of the shell -executing the command (each -.CW $$ -expands to a single -.CW $ , -thus giving you the shell variable -.CW $$ ). -Since only one shell is used for all the -commands, you'll get the same file name for each command in the -script. -.LP -The other problem comes from improperly-specified dependencies that -worked in Make because of its sequential, depth-first way of examining -them. While I don't want to go into depth on how PMake -works (look in chapter 4 if you're interested), I will warn you that -files in two different ``levels'' of the dependency tree may be -examined in a different order in PMake than they were in Make. For -example, given the makefile -.DS -a : b c -b : d -.DE -PMake will examine the targets in the order -.CW c , -.CW d , -.CW b , -.CW a . -If the makefile's author expected PMake to abort before making -.CW c -if an error occurred while making -.CW b , -or if -.CW b -needed to exist before -.CW c -was made, -s/he will be sorely disappointed. The dependencies are -incomplete, since in both these cases, -.CW c -would depend on -.CW b . -So watch out. -.LP -Another problem you may face is that, while PMake is set up to handle the -output from multiple jobs in a graceful fashion, the same is not so for input. -It has no way to regulate input to different jobs, -so if you use the redirection from -.CW /dev/tty -I mentioned earlier, you must be careful not to run two of the jobs at once. -.xH 2 Writing and Debugging a Makefile -.LP -Now you know most of what's in a makefile, what do you do next? There -are two choices: (1) use one of the uncommonly-available makefile -generators or (2) write your own makefile (I leave out the third choice of -ignoring PMake and doing everything by hand as being beyond the bounds -of common sense). -.LP -When faced with the writing of a makefile, it is usually best to start -from first principles: just what -.I are -you trying to do? What do you want the makefile finally to produce? -.LP -To begin with a somewhat traditional example, let's say you need to -write a makefile to create a program, -.CW expr , -that takes standard infix expressions and converts them to prefix form (for -no readily apparent reason). You've got three source files, in C, that -make up the program: -.CW main.c , -.CW parse.c , -and -.CW output.c . -Harking back to my pithy advice about dependency lines, you write the -first line of the file: -.DS -expr : main.o parse.o output.o -.DE -because you remember -.CW expr -is made from -.CW .o -files, not -.CW .c -files. Similarly for the -.CW .o -files you produce the lines: -.DS -main.o : main.c -parse.o : parse.c -output.o : output.c -main.o parse.o output.o : defs.h -.DE -.LP -Great. You've now got the dependencies specified. What you need now is -commands. These commands, remember, must produce the target on the -dependency line, usually by using the sources you've listed. -You remember about local variables? Good, so it should come -to you as no surprise when you write -.DS -expr : main.o parse.o output.o - cc -o $(.TARGET) $(.ALLSRC) -.DE -Why use the variables? If your program grows to produce postfix -expressions too (which, of course, requires a name change or two), it -is one fewer place you have to change the file. You cannot do this for -the object files, however, because they depend on their corresponding -source files -.I and -.CW defs.h , -thus if you said -.DS - cc -c $(.ALLSRC) -.DE -you'd get (for -.CW main.o ): -.DS - cc -c main.c defs.h -.DE -which is wrong. So you round out the makefile with these lines: -.DS -main.o : main.c - cc -c main.c -parse.o : parse.c - cc -c parse.c -output.o : output.c - cc -c output.c -.DE -.LP -The makefile is now complete and will, in fact, create the program you -want it to without unnecessary compilations or excessive typing on -your part. There are two things wrong with it, however (aside from it -being altogether too long, something I'll address in chapter 3): -.IP 1) -The string -.CW "main.o parse.o output.o" '' `` -is repeated twice, necessitating two changes when you add postfix -(you were planning on that, weren't you?). This is in direct violation -of de Boor's First Rule of writing makefiles: -.QP -.I -Anything that needs to be written more than once -should be placed in a variable. -.IP "\&" -I cannot emphasize this enough as being very important to the -maintenance of a makefile and its program. -.IP 2) -There is no way to alter the way compilations are performed short of -editing the makefile and making the change in all places. This is evil -and violates de Boor's Second Rule, which follows directly from the -first: -.QP -.I -Any flags or programs used inside a makefile should be placed in a variable so -they may be changed, temporarily or permanently, with the greatest ease. -.LP -The makefile should more properly read: -.DS -OBJS = main.o parse.o output.o -expr : $(OBJS) - $(CC) $(CFLAGS) -o $(.TARGET) $(.ALLSRC) -main.o : main.c - $(CC) $(CFLAGS) -c main.c -parse.o : parse.c - $(CC) $(CFLAGS) -c parse.c -output.o : output.c - $(CC) $(CFLAGS) -c output.c -$(OBJS) : defs.h -.DE -Alternatively, if you like the idea of dynamic sources mentioned in -section 2.3.1, -.Rm 0 2.3.1 -.Rd 4 -.Ix 0 ref "dynamic source" -.Ix 0 ref source dynamic -you could write it like this: -.DS -OBJS = main.o parse.o output.o -expr : $(OBJS) - $(CC) $(CFLAGS) -o $(.TARGET) $(.ALLSRC) -$(OBJS) : $(.PREFIX).c defs.h - $(CC) $(CFLAGS) -c $(.PREFIX).c -.DE -These two rules and examples lead to de Boor's First Corollary: -.QP -.I -Variables are your friends. -.LP -Once you've written the makefile comes the sometimes-difficult task of -.Ix 0 ref debugging -making sure the darn thing works. Your most helpful tool to make sure -the makefile is at least syntactically correct is the -.B \-n -.Ix 0 ref flags -n -flag, which allows you to see if PMake will choke on the makefile. The -second thing the -.B \-n -flag lets you do is see what PMake would do without it actually doing -it, thus you can make sure the right commands would be executed were -you to give PMake its head. -.LP -When you find your makefile isn't behaving as you hoped, the first -question that comes to mind (after ``What time is it, anyway?'') is -``Why not?'' In answering this, two flags will serve you well: -.CW "-d m" '' `` -.Ix 0 ref flags -d -and -.CW "-p 2" .'' `` -.Ix 0 ref flags -p -The first causes PMake to tell you as it examines each target in the -makefile and indicate why it is deciding whatever it is deciding. You -can then use the information printed for other targets to see where -you went wrong. The -.CW "-p 2" '' `` -flag makes PMake print out its internal state when it is done, -allowing you to see that you forgot to make that one chapter depend on -that file of macros you just got a new version of. The output from -.CW "-p 2" '' `` -is intended to resemble closely a real makefile, but with additional -information provided and with variables expanded in those commands -PMake actually printed or executed. -.LP -Something to be especially careful about is circular dependencies. -.Ix 0 def dependency circular -E.g. -.DS -a : b -b : c d -d : a -.DE -In this case, because of how PMake works, -.CW c -is the only thing PMake will examine, because -.CW d -and -.CW a -will effectively fall off the edge of the universe, making it -impossible to examine -.CW b -(or them, for that matter). -PMake will tell you (if run in its normal mode) all the targets -involved in any cycle it looked at (i.e. if you have two cycles in the -graph (naughty, naughty), but only try to make a target in one of -them, PMake will only tell you about that one. You'll have to try to -make the other to find the second cycle). When run as Make, it will -only print the first target in the cycle. -.xH 2 Invoking PMake -.LP -.Ix 0 ref flags -.Ix 0 ref arguments -.Ix 0 ref usage -PMake comes with a wide variety of flags to choose from. -They may appear in any order, interspersed with command-line variable -assignments and targets to create. -The flags are as follows: -.IP "\fB\-d\fP \fIwhat\fP" -.Ix 0 def flags -d -.Ix 0 ref debugging -This causes PMake to spew out debugging information that -may prove useful to you. If you can't -figure out why PMake is doing what it's doing, you might try using -this flag. The -.I what -parameter is a string of single characters that tell PMake what -aspects you are interested in. Most of what I describe will make -little sense to you, unless you've dealt with Make before. Just -remember where this table is and come back to it as you read on. -The characters and the information they produce are as follows: -.RS -.IP a -Archive searching and caching. -.IP c -Conditional evaluation. -.IP d -The searching and caching of directories. -.IP j -Various snippets of information related to the running of the multiple -shells. Not particularly interesting. -.IP m -The making of each target: what target is being examined; when it was -last modified; whether it is out-of-date; etc. -.IP p -Makefile parsing. -.IP r -Remote execution. -.IP s -The application of suffix-transformation rules. (See chapter 3) -.IP t -The maintenance of the list of targets. -.IP v -Variable assignment. -.RE -.IP "\&" -Of these all, the -.CW m -and -.CW s -letters will be most useful to you. -If the -.B \-d -is the final argument or the argument from which it would get these -key letters (see below for a note about which argument would be used) -begins with a -.B \- , -all of these debugging flags will be set, resulting in massive amounts -of output. -.IP "\fB\-f\fP \fImakefile\fP" -.Ix 0 def flags -f -Specify a makefile to read different from the standard makefiles -.CW Makefile "\&" ( -or -.CW makefile ). -.Ix 0 ref makefile default -.Ix 0 ref makefile other -If -.I makefile -is ``\-'', PMake uses the standard input. This is useful for making -quick and dirty makefiles.\|.\|. -.Ix 0 ref makefile "quick and dirty" -.IP \fB\-h\fP -.Ix 0 def flags -h -Prints out a summary of the various flags PMake accepts. It can also -be used to find out what level of concurrency was compiled into the -version of PMake you are using (look at -.B \-J -and -.B \-L ) -and various other information on how PMake was configured. -.Ix 0 ref configuration -.Ix 0 ref makefile system -.IP \fB\-i\fP -.Ix 0 def flags -i -If you give this flag, PMake will ignore non-zero status returned -by any of its shells. It's like placing a `\-' before all the commands -in the makefile. -.IP \fB\-k\fP -.Ix 0 def flags -k -This is similar to -.B \-i -in that it allows PMake to continue when it sees an error, but unlike -.B \-i , -where PMake continues blithely as if nothing went wrong, -.B \-k -causes it to recognize the error and only continue work on those -things that don't depend on the target, either directly or indirectly (through -depending on something that depends on it), whose creation returned the error. -The `k' is for ``keep going''.\|.\|. -.Ix 0 ref target -.IP \fB\-l\fP -.Ix 0 def flags -l -PMake has the ability to lock a directory against other -people executing it in the same directory (by means of a file called -``LOCK.make'' that it creates and checks for in the directory). This -is a Good Thing because two people doing the same thing in the same place -can be disastrous for the final product (too many cooks and all that). -Whether this locking is the default is up to your system -administrator. If locking is on, -.B \-l -will turn it off, and vice versa. Note that this locking will not -prevent \fIyou\fP from invoking PMake twice in the same place \*- if -you own the lock file, PMake will warn you about it but continue to execute. -.IP "\fB\-m\fP \fIdirectory\fP" -.Ix 0 def flags -m -Tells PMake another place to search for included makefiles via the <...> -style. Several -.B \-m -options can be given to form a search path. If this construct is used the -default system makefile search path is completely overridden. -To be explained in chapter 3, section 3.2. -.Rm 2 3.2 -.IP \fB\-n\fP -.Ix 0 def flags -n -This flag tells PMake not to execute the commands needed to update the -out-of-date targets in the makefile. Rather, PMake will simply print -the commands it would have executed and exit. This is particularly -useful for checking the correctness of a makefile. If PMake doesn't do -what you expect it to, it's a good chance the makefile is wrong. -.IP "\fB\-p\fP \fInumber\fP" -.Ix 0 def flags -p -.Ix 0 ref debugging -This causes PMake to print its input in a reasonable form, though -not necessarily one that would make immediate sense to anyone but me. The -.I number -is a bitwise-or of 1 and 2 where 1 means it should print the input -before doing any processing and 2 says it should print it after -everything has been re-created. Thus -.CW "\-p 3" -would print it twice\*-once before processing and once after (you -might find the difference between the two interesting). This is mostly -useful to me, but you may find it informative in some bizarre circumstances. -.IP \fB\-q\fP -.Ix 0 def flags -q -If you give PMake this flag, it will not try to re-create anything. It -will just see if anything is out-of-date and exit non-zero if so. -.IP \fB\-r\fP -.Ix 0 def flags -r -When PMake starts up, it reads a default makefile that tells it what -sort of system it's on and gives it some idea of what to do if you -don't tell it anything. I'll tell you about it in chapter 3. If you -give this flag, PMake won't read the default makefile. -.IP \fB\-s\fP -.Ix 0 def flags -s -This causes PMake to not print commands before they're executed. It -is the equivalent of putting an `@' before every command in the -makefile. -.IP \fB\-t\fP -.Ix 0 def flags -t -Rather than try to re-create a target, PMake will simply ``touch'' it -so as to make it appear up-to-date. If the target didn't exist before, -it will when PMake finishes, but if the target did exist, it will -appear to have been updated. -.IP \fB\-v\fP -.Ix 0 def flags -v -This is a mixed-compatibility flag intended to mimic the System V -version of Make. It is the same as giving -.B \-B , -and -.B \-V -as well as turning off directory locking. Targets can still be created -in parallel, however. This is the mode PMake will enter if it is -invoked either as -.CW smake '' `` -or -.CW vmake ''. `` -.IP \fB\-x\fP -.Ix 0 def flags -x -This tells PMake it's ok to export jobs to other machines, if they're -available. It is used when running in Make mode, as exporting in this -mode tends to make things run slower than if the commands were just -executed locally. -.IP \fB\-B\fP -.Ix 0 ref compatibility -.Ix 0 def flags -B -Forces PMake to be as backwards-compatible with Make as possible while -still being itself. -This includes: -.RS -.IP \(bu 2 -Executing one shell per shell command -.IP \(bu 2 -Expanding anything that looks even vaguely like a variable, with the -empty string replacing any variable PMake doesn't know. -.IP \(bu 2 -Refusing to allow you to escape a `#' with a backslash. -.IP \(bu 2 -Permitting undefined variables on dependency lines and conditionals -(see below). Normally this causes PMake to abort. -.RE -.IP \fB\-C\fP -.Ix 0 def flags -C -This nullifies any and all compatibility mode flags you may have given -or implied up to the time the -.B \-C -is encountered. It is useful mostly in a makefile that you wrote for PMake -to avoid bad things happening when someone runs PMake as -.CW make '' `` -or has things set in the environment that tell it to be compatible. -.B \-C -is -.I not -placed in the -.CW PMAKE -environment variable or the -.CW .MAKEFLAGS -or -.CW MFLAGS -global variables. -.Ix 0 ref variable environment PMAKE -.Ix 0 ref variable global .MAKEFLAGS -.Ix 0 ref variable global MFLAGS -.Ix 0 ref .MAKEFLAGS variable -.Ix 0 ref MFLAGS -.IP "\fB\-D\fP \fIvariable\fP" -.Ix 0 def flags -D -Allows you to define a variable to have -.CW 1 '' `` -as its value. The variable is a global variable, not a command-line -variable. This is useful mostly for people who are used to the C -compiler arguments and those using conditionals, which I'll get into -in section 4.3 -.Rm 1 4.3 -.IP "\fB\-I\fP \fIdirectory\fP" -.Ix 0 def flags -I -Tells PMake another place to search for included makefiles. Yet -another thing to be explained in chapter 3 (section 3.2, to be -precise). -.Rm 2 3.2 -.IP "\fB\-J\fP \fInumber\fP" -.Ix 0 def flags -J -Gives the absolute maximum number of targets to create at once on both -local and remote machines. -.IP "\fB\-L\fP \fInumber\fP" -.Ix 0 def flags -L -This specifies the maximum number of targets to create on the local -machine at once. This may be 0, though you should be wary of doing -this, as PMake may hang until a remote machine becomes available, if -one is not available when it is started. -.IP \fB\-M\fP -.Ix 0 ref compatibility -.Ix 0 def flags -M -This is the flag that provides absolute, complete, full compatibility -with Make. It still allows you to use all but a few of the features of -PMake, but it is non-parallel. This is the mode PMake enters if you -call it -.CW make .'' `` -.IP \fB\-P\fP -.Ix 0 def flags -P -.Ix 0 ref "output control" -When creating targets in parallel, several shells are executing at -once, each wanting to write its own two cent's-worth to the screen. -This output must be captured by PMake in some way in order to prevent -the screen from being filled with garbage even more indecipherable -than you usually see. PMake has two ways of doing this, one of which -provides for much cleaner output and a clear separation between the -output of different jobs, the other of which provides a more immediate -response so one can tell what is really happening. The former is done -by notifying you when the creation of a target starts, capturing the -output and transferring it to the screen all at once when the job -finishes. The latter is done by catching the output of the shell (and -its children) and buffering it until an entire line is received, then -printing that line preceded by an indication of which job produced -the output. Since I prefer this second method, it is the one used by -default. The first method will be used if you give the -.B \-P -flag to PMake. -.IP \fB\-V\fP -.Ix 0 def flags -V -As mentioned before, the -.B \-V -flag tells PMake to use Make's style of expanding variables, -substituting the empty string for any variable it doesn't know. -.IP \fB\-W\fP -.Ix 0 def flags -W -There are several times when PMake will print a message at you that is -only a warning, i.e. it can continue to work in spite of your having -done something silly (such as forgotten a leading tab for a shell -command). Sometimes you are well aware of silly things you have done -and would like PMake to stop bothering you. This flag tells it to shut -up about anything non-fatal. -.IP \fB\-X\fP -.Ix 0 def flags -X -This flag causes PMake to not attempt to export any jobs to another -machine. -.LP -Several flags may follow a single `\-'. Those flags that require -arguments take them from successive parameters. E.g. -.DS -pmake -fDnI server.mk DEBUG /chip2/X/server/include -.DE -will cause PMake to read -.CW server.mk -as the input makefile, define the variable -.CW DEBUG -as a global variable and look for included makefiles in the directory -.CW /chip2/X/server/include . -.xH 2 Summary -.LP -A makefile is made of four types of lines: -.RS -.IP \(bu 2 -Dependency lines -.IP \(bu 2 -Creation commands -.IP \(bu 2 -Variable assignments -.IP \(bu 2 -Comments, include statements and conditional directives -.RE -.LP -A dependency line is a list of one or more targets, an operator -.CW : ', (` -.CW :: ', ` -or -.CW ! '), ` -and a list of zero or more sources. Sources may contain wildcards and -certain local variables. -.LP -A creation command is a regular shell command preceded by a tab. In -addition, if the first two characters after the tab (and other -whitespace) are a combination of -.CW @ ' ` -or -.CW - ', ` -PMake will cause the command to not be printed (if the character is -.CW @ ') ` -or errors from it to be ignored (if -.CW - '). ` -A blank line, dependency line or variable assignment terminates a -creation script. There may be only one creation script for each target -with a -.CW : ' ` -or -.CW ! ' ` -operator. -.LP -Variables are places to store text. They may be unconditionally -assigned-to using the -.CW = ' ` -.Ix 0 ref = -.Ix 0 ref variable assignment -operator, appended-to using the -.CW += ' ` -.Ix 0 ref += -.Ix 0 ref variable assignment appended -operator, conditionally (if the variable is undefined) assigned-to -with the -.CW ?= ' ` -.Ix 0 ref ?= -.Ix 0 ref variable assignment conditional -operator, and assigned-to with variable expansion with the -.CW := ' ` -.Ix 0 ref := -.Ix 0 ref variable assignment expanded -operator. The output of a shell command may be assigned to a variable -using the -.CW != ' ` -.Ix 0 ref != -.Ix 0 ref variable assignment shell-output -operator. Variables may be expanded (their value inserted) by enclosing -their name in parentheses or curly braces, preceded by a dollar sign. -A dollar sign may be escaped with another dollar sign. Variables are -not expanded if PMake doesn't know about them. There are seven local -variables: -.CW .TARGET , -.CW .ALLSRC , -.CW .OODATE , -.CW .PREFIX , -.CW .IMPSRC , -.CW .ARCHIVE , -and -.CW .MEMBER . -Four of them -.CW .TARGET , ( -.CW .PREFIX , -.CW .ARCHIVE , -and -.CW .MEMBER ) -may be used to specify ``dynamic sources.'' -.Ix 0 ref "dynamic source" -.Ix 0 ref source dynamic -Variables are good. Know them. Love them. Live them. -.LP -Debugging of makefiles is best accomplished using the -.B \-n , -.B "\-d m" , -and -.B "\-p 2" -flags. -.xH 2 Exercises -.ce -\s+4\fBTBA\fP\s0 -.xH 1 Short-cuts and Other Nice Things -.LP -Based on what I've told you so far, you may have gotten the impression -that PMake is just a way of storing away commands and making sure you -don't forget to compile something. Good. That's just what it is. -However, the ways I've described have been inelegant, at best, and -painful, at worst. -This chapter contains things that make the -writing of makefiles easier and the makefiles themselves shorter and -easier to modify (and, occasionally, simpler). In this chapter, I -assume you are somewhat more -familiar with Sprite (or UNIX, if that's what you're using) than I did -in chapter 2, just so you're on your toes. -So without further ado... -.xH 2 Transformation Rules -.LP -As you know, a file's name consists of two parts: a base name, which -gives some hint as to the contents of the file, and a suffix, which -usually indicates the format of the file. -Over the years, as -.UX -has developed, -naming conventions, with regard to suffixes, have also developed that have -become almost as incontrovertible as Law. E.g. a file ending in -.CW .c -is assumed to contain C source code; one with a -.CW .o -suffix is assumed to be a compiled, relocatable object file that may -be linked into any program; a file with a -.CW .ms -suffix is usually a text file to be processed by Troff with the \-ms -macro package, and so on. -One of the best aspects of both Make and PMake comes from their -understanding of how the suffix of a file pertains to its contents and -their ability to do things with a file based solely on its suffix. This -ability comes from something known as a transformation rule. A -transformation rule specifies how to change a file with one suffix -into a file with another suffix. -.LP -A transformation rule looks much like a dependency line, except the -target is made of two known suffixes stuck together. Suffixes are made -known to PMake by placing them as sources on a dependency line whose -target is the special target -.CW .SUFFIXES . -E.g. -.DS -\&.SUFFIXES : .o .c -\&.c.o : - $(CC) $(CFLAGS) -c $(.IMPSRC) -.DE -The creation script attached to the target is used to transform a file with -the first suffix (in this case, -.CW .c ) -into a file with the second suffix (here, -.CW .o ). -In addition, the target inherits whatever attributes have been applied -to the transformation rule. -The simple rule given above says that to transform a C source file -into an object file, you compile it using -.CW cc -with the -.CW \-c -flag. -This rule is taken straight from the system makefile. Many -transformation rules (and suffixes) are defined there, and I refer you -to it for more examples (type -.CW "pmake -h" '' `` -to find out where it is). -.LP -There are several things to note about the transformation rule given -above: -.RS -.IP 1) -The -.CW .IMPSRC -variable. -.Ix 0 def variable local .IMPSRC -.Ix 0 def .IMPSRC -This variable is set to the ``implied source'' (the file from which -the target is being created; the one with the first suffix), which, in this -case, is the .c file. -.IP 2) -The -.CW CFLAGS -variable. Almost all of the transformation rules in the system -makefile are set up using variables that you can alter in your -makefile to tailor the rule to your needs. In this case, if you want -all your C files to be compiled with the -.B \-g -flag, to provide information for -.CW dbx , -you would set the -.CW CFLAGS -variable to contain -.CW -g -.CW "CFLAGS = -g" '') (`` -and PMake would take care of the rest. -.RE -.LP -To give you a quick example, the makefile in 2.3.4 -.Rm 3 2.3.4 -could be changed to this: -.DS -OBJS = a.o b.o c.o -program : $(OBJS) - $(CC) -o $(.TARGET) $(.ALLSRC) -$(OBJS) : defs.h -.DE -The transformation rule I gave above takes the place of the 6 lines\** -.FS -This is also somewhat cleaner, I think, than the dynamic source -solution presented in 2.6 -.FE -.Rm 4 2.6 -.DS -a.o : a.c - cc -c a.c -b.o : b.c - cc -c b.c -c.o : c.c - cc -c c.c -.DE -.LP -Now you may be wondering about the dependency between the -.CW .o -and -.CW .c -files \*- it's not mentioned anywhere in the new makefile. This is -because it isn't needed: one of the effects of applying a -transformation rule is the target comes to depend on the implied -source. That's why it's called the implied -.I source . -.LP -For a more detailed example. Say you have a makefile like this: -.DS -a.out : a.o b.o - $(CC) $(.ALLSRC) -.DE -and a directory set up like this: -.DS -total 4 --rw-rw-r-- 1 deboor 34 Sep 7 00:43 Makefile --rw-rw-r-- 1 deboor 119 Oct 3 19:39 a.c --rw-rw-r-- 1 deboor 201 Sep 7 00:43 a.o --rw-rw-r-- 1 deboor 69 Sep 7 00:43 b.c -.DE -While just typing -.CW pmake '' `` -will do the right thing, it's much more informative to type -.CW "pmake -d s" ''. `` -This will show you what PMake is up to as it processes the files. In -this case, PMake prints the following: -.DS -Suff_FindDeps (a.out) - using existing source a.o - applying .o -> .out to "a.o" -Suff_FindDeps (a.o) - trying a.c...got it - applying .c -> .o to "a.c" -Suff_FindDeps (b.o) - trying b.c...got it - applying .c -> .o to "b.c" -Suff_FindDeps (a.c) - trying a.y...not there - trying a.l...not there - trying a.c,v...not there - trying a.y,v...not there - trying a.l,v...not there -Suff_FindDeps (b.c) - trying b.y...not there - trying b.l...not there - trying b.c,v...not there - trying b.y,v...not there - trying b.l,v...not there ---- a.o --- -cc -c a.c ---- b.o --- -cc -c b.c ---- a.out --- -cc a.o b.o -.DE -.LP -.CW Suff_FindDeps -is the name of a function in PMake that is called to check for implied -sources for a target using transformation rules. -The transformations it tries are, naturally -enough, limited to the ones that have been defined (a transformation -may be defined multiple times, by the way, but only the most recent -one will be used). You will notice, however, that there is a definite -order to the suffixes that are tried. This order is set by the -relative positions of the suffixes on the -.CW .SUFFIXES -line \*- the earlier a suffix appears, the earlier it is checked as -the source of a transformation. Once a suffix has been defined, the -only way to change its position in the pecking order is to remove all -the suffixes (by having a -.CW .SUFFIXES -dependency line with no sources) and redefine them in the order you -want. (Previously-defined transformation rules will be automatically -redefined as the suffixes they involve are re-entered.) -.LP -Another way to affect the search order is to make the dependency -explicit. In the above example, -.CW a.out -depends on -.CW a.o -and -.CW b.o . -Since a transformation exists from -.CW .o -to -.CW .out , -PMake uses that, as indicated by the -.CW "using existing source a.o" '' `` -message. -.LP -The search for a transformation starts from the suffix of the target -and continues through all the defined transformations, in the order -dictated by the suffix ranking, until an existing file with the same -base (the target name minus the suffix and any leading directories) is -found. At that point, one or more transformation rules will have been -found to change the one existing file into the target. -.LP -For example, ignoring what's in the system makefile for now, say you -have a makefile like this: -.DS -\&.SUFFIXES : .out .o .c .y .l -\&.l.c : - lex $(.IMPSRC) - mv lex.yy.c $(.TARGET) -\&.y.c : - yacc $(.IMPSRC) - mv y.tab.c $(.TARGET) -\&.c.o : - cc -c $(.IMPSRC) -\&.o.out : - cc -o $(.TARGET) $(.IMPSRC) -.DE -and the single file -.CW jive.l . -If you were to type -.CW "pmake -rd ms jive.out" ,'' `` -you would get the following output for -.CW jive.out : -.DS -Suff_FindDeps (jive.out) - trying jive.o...not there - trying jive.c...not there - trying jive.y...not there - trying jive.l...got it - applying .l -> .c to "jive.l" - applying .c -> .o to "jive.c" - applying .o -> .out to "jive.o" -.DE -and this is why: PMake starts with the target -.CW jive.out , -figures out its suffix -.CW .out ) ( -and looks for things it can transform to a -.CW .out -file. In this case, it only finds -.CW .o , -so it looks for the file -.CW jive.o . -It fails to find it, so it looks for transformations into a -.CW .o -file. Again it has only one choice: -.CW .c . -So it looks for -.CW jive.c -and, as you know, fails to find it. At this point it has two choices: -it can create the -.CW .c -file from either a -.CW .y -file or a -.CW .l -file. Since -.CW .y -came first on the -.CW .SUFFIXES -line, it checks for -.CW jive.y -first, but can't find it, so it looks for -.CW jive.l -and, lo and behold, there it is. -At this point, it has defined a transformation path as follows: -.CW .l -\(-> -.CW .c -\(-> -.CW .o -\(-> -.CW .out -and applies the transformation rules accordingly. For completeness, -and to give you a better idea of what PMake actually did with this -three-step transformation, this is what PMake printed for the rest of -the process: -.DS -Suff_FindDeps (jive.o) - using existing source jive.c - applying .c -> .o to "jive.c" -Suff_FindDeps (jive.c) - using existing source jive.l - applying .l -> .c to "jive.l" -Suff_FindDeps (jive.l) -Examining jive.l...modified 17:16:01 Oct 4, 1987...up-to-date -Examining jive.c...non-existent...out-of-date ---- jive.c --- -lex jive.l -\&.\|.\|. meaningless lex output deleted .\|.\|. -mv lex.yy.c jive.c -Examining jive.o...non-existent...out-of-date ---- jive.o --- -cc -c jive.c -Examining jive.out...non-existent...out-of-date ---- jive.out --- -cc -o jive.out jive.o -.DE -.LP -One final question remains: what does PMake do with targets that have -no known suffix? PMake simply pretends it actually has a known suffix -and searches for transformations accordingly. -The suffix it chooses is the source for the -.CW .NULL -.Ix 0 ref .NULL -target mentioned later. In the system makefile, -.CW .out -is chosen as the ``null suffix'' -.Ix 0 def suffix null -.Ix 0 def "null suffix" -because most people use PMake to create programs. You are, however, -free and welcome to change it to a suffix of your own choosing. -The null suffix is ignored, however, when PMake is in compatibility -mode (see chapter 4). -.xH 2 Including Other Makefiles -.Ix 0 def makefile inclusion -.Rd 2 -.LP -Just as for programs, it is often useful to extract certain parts of a -makefile into another file and just include it in other makefiles -somehow. Many compilers allow you say something like -.DS -#include "defs.h" -.DE -to include the contents of -.CW defs.h -in the source file. PMake allows you to do the same thing for -makefiles, with the added ability to use variables in the filenames. -An include directive in a makefile looks either like this: -.DS -#include -.DE -or this -.DS -#include "file" -.DE -The difference between the two is where PMake searches for the file: -the first way, PMake will look for -the file only in the system makefile directory (or directories) -(to find out what that directory is, give PMake the -.B \-h -flag). -.Ix 0 ref flags -h -The system makefile directory search path can be overridden via the -.B \-m -option. -.Ix 0 ref flags -m -For files in double-quotes, the search is more complex: -.RS -.IP 1) -The directory of the makefile that's including the file. -.IP 2) -The current directory (the one in which you invoked PMake). -.IP 3) -The directories given by you using -.B \-I -flags, in the order in which you gave them. -.IP 4) -Directories given by -.CW .PATH -dependency lines (see chapter 4). -.IP 5) -The system makefile directory. -.RE -.LP -in that order. -.LP -You are free to use PMake variables in the filename\*-PMake will -expand them before searching for the file. You must specify the -searching method with either angle brackets or double-quotes -.I outside -of a variable expansion. I.e. the following -.DS -SYSTEM = - -#include $(SYSTEM) -.DE -won't work. -.xH 2 Saving Commands -.LP -.Ix 0 def ... -There may come a time when you will want to save certain commands to -be executed when everything else is done. For instance: you're -making several different libraries at one time and you want to create the -members in parallel. Problem is, -.CW ranlib -is another one of those programs that can't be run more than once in -the same directory at the same time (each one creates a file called -.CW __.SYMDEF -into which it stuffs information for the linker to use. Two of them -running at once will overwrite each other's file and the result will -be garbage for both parties). You might want a way to save the ranlib -commands til the end so they can be run one after the other, thus -keeping them from trashing each other's file. PMake allows you to do -this by inserting an ellipsis (``.\|.\|.'') as a command between -commands to be run at once and those to be run later. -.LP -So for the -.CW ranlib -case above, you might do this: -.Rd 5 -.DS -lib1.a : $(LIB1OBJS) - rm -f $(.TARGET) - ar cr $(.TARGET) $(.ALLSRC) - ... - ranlib $(.TARGET) - -lib2.a : $(LIB2OBJS) - rm -f $(.TARGET) - ar cr $(.TARGET) $(.ALLSRC) - ... - ranlib $(.TARGET) -.DE -.Ix 0 ref variable local .TARGET -.Ix 0 ref variable local .ALLSRC -This would save both -.DS -ranlib $(.TARGET) -.DE -commands until the end, when they would run one after the other -(using the correct value for the -.CW .TARGET -variable, of course). -.LP -Commands saved in this manner are only executed if PMake manages to -re-create everything without an error. -.xH 2 Target Attributes -.LP -PMake allows you to give attributes to targets by means of special -sources. Like everything else PMake uses, these sources begin with a -period and are made up of all upper-case letters. There are various -reasons for using them, and I will try to give examples for most of -them. Others you'll have to find uses for yourself. Think of it as ``an -exercise for the reader.'' By placing one (or more) of these as a source on a -dependency line, you are ``marking the target(s) with that -attribute.'' That's just the way I phrase it, so you know. -.LP -Any attributes given as sources for a transformation rule are applied -to the target of the transformation rule when the rule is applied. -.Ix 0 def attributes -.Ix 0 ref source -.Ix 0 ref target -.nr pw 12 -.IP .DONTCARE \n(pw -.Ix 0 def attributes .DONTCARE -.Ix 0 def .DONTCARE -If a target is marked with this attribute and PMake can't figure out -how to create it, it will ignore this fact and assume the file isn't -really needed or actually exists and PMake just can't find it. This may prove -wrong, but the error will be noted later on, not when PMake tries to create -the target so marked. This attribute also prevents PMake from -attempting to touch the target if it is given the -.B \-t -flag. -.Ix 0 ref flags -t -.IP .EXEC \n(pw -.Ix 0 def attributes .EXEC -.Ix 0 def .EXEC -This attribute causes its shell script to be executed while having no -effect on targets that depend on it. This makes the target into a sort -of subroutine. An example. Say you have some LISP files that need to -be compiled and loaded into a LISP process. To do this, you echo LISP -commands into a file and execute a LISP with this file as its input -when everything's done. Say also that you have to load other files -from another system before you can compile your files and further, -that you don't want to go through the loading and dumping unless one -of -.I your -files has changed. Your makefile might look a little bit -like this (remember, this is an educational example, and don't worry -about the -.CW COMPILE -rule, all will soon become clear, grasshopper): -.DS -system : init a.fasl b.fasl c.fasl - for i in $(.ALLSRC); - do - echo -n '(load "' >> input - echo -n ${i} >> input - echo '")' >> input - done - echo '(dump "$(.TARGET)")' >> input - lisp < input - -a.fasl : a.l init COMPILE -b.fasl : b.l init COMPILE -c.fasl : c.l init COMPILE -COMPILE : .USE - echo '(compile "$(.ALLSRC)")' >> input -init : .EXEC - echo '(load-system)' > input -.DE -.Ix 0 ref .USE -.Ix 0 ref attributes .USE -.Ix 0 ref variable local .ALLSRC -.IP "\&" -.CW .EXEC -sources, don't appear in the local variables of targets that depend on -them (nor are they touched if PMake is given the -.B \-t -flag). -.Ix 0 ref flags -t -Note that all the rules, not just that for -.CW system , -include -.CW init -as a source. This is because none of the other targets can be made -until -.CW init -has been made, thus they depend on it. -.IP .EXPORT \n(pw -.Ix 0 def attributes .EXPORT -.Ix 0 def .EXPORT -This is used to mark those targets whose creation should be sent to -another machine if at all possible. This may be used by some -exportation schemes if the exportation is expensive. You should ask -your system administrator if it is necessary. -.IP .EXPORTSAME \n(pw -.Ix 0 def attributes .EXPORTSAME -.Ix 0 def .EXPORTSAME -Tells the export system that the job should be exported to a machine -of the same architecture as the current one. Certain operations (e.g. -running text through -.CW nroff ) -can be performed the same on any architecture (CPU and -operating system type), while others (e.g. compiling a program with -.CW cc ) -must be performed on a machine with the same architecture. Not all -export systems will support this attribute. -.IP .IGNORE \n(pw -.Ix 0 def attributes .IGNORE -.Ix 0 def .IGNORE attribute -Giving a target the -.CW .IGNORE -attribute causes PMake to ignore errors from any of the target's commands, as -if they all had `\-' before them. -.IP .INVISIBLE \n(pw -.Ix 0 def attributes .INVISIBLE -.Ix 0 def .INVISIBLE -This allows you to specify one target as a source for another without -the one affecting the other's local variables. Useful if, say, you -have a makefile that creates two programs, one of which is used to -create the other, so it must exist before the other is created. You -could say -.DS -prog1 : $(PROG1OBJS) prog2 MAKEINSTALL -prog2 : $(PROG2OBJS) .INVISIBLE MAKEINSTALL -.DE -where -.CW MAKEINSTALL -is some complex .USE rule (see below) that depends on the -.Ix 0 ref .USE -.CW .ALLSRC -variable containing the right things. Without the -.CW .INVISIBLE -attribute for -.CW prog2 , -the -.CW MAKEINSTALL -rule couldn't be applied. This is not as useful as it should be, and -the semantics may change (or the whole thing go away) in the -not-too-distant future. -.IP .JOIN \n(pw -.Ix 0 def attributes .JOIN -.Ix 0 def .JOIN -This is another way to avoid performing some operations in parallel -while permitting everything else to be done so. Specifically it -forces the target's shell script to be executed only if one or more of the -sources was out-of-date. In addition, the target's name, -in both its -.CW .TARGET -variable and all the local variables of any target that depends on it, -is replaced by the value of its -.CW .ALLSRC -variable. -As an example, suppose you have a program that has four libraries that -compile in the same directory along with, and at the same time as, the -program. You again have the problem with -.CW ranlib -that I mentioned earlier, only this time it's more severe: you -can't just put the ranlib off to the end since the program -will need those libraries before it can be re-created. You can do -something like this: -.DS -program : $(OBJS) libraries - cc -o $(.TARGET) $(.ALLSRC) - -libraries : lib1.a lib2.a lib3.a lib4.a .JOIN - ranlib $(.OODATE) -.DE -.Ix 0 ref variable local .TARGET -.Ix 0 ref variable local .ALLSRC -.Ix 0 ref variable local .OODATE -.Ix 0 ref .TARGET -.Ix 0 ref .ALLSRC -.Ix 0 ref .OODATE -In this case, PMake will re-create the -.CW $(OBJS) -as necessary, along with -.CW lib1.a , -.CW lib2.a , -.CW lib3.a -and -.CW lib4.a . -It will then execute -.CW ranlib -on any library that was changed and set -.CW program 's -.CW .ALLSRC -variable to contain what's in -.CW $(OBJS) -followed by -.CW "lib1.a lib2.a lib3.a lib4.a" .'' `` -In case you're wondering, it's called -.CW .JOIN -because it joins together different threads of the ``input graph'' at -the target marked with the attribute. -Another aspect of the .JOIN attribute is it keeps the target from -being created if the -.B \-t -flag was given. -.Ix 0 ref flags -t -.IP .MAKE \n(pw -.Ix 0 def attributes .MAKE -.Ix 0 def .MAKE -The -.CW .MAKE -attribute marks its target as being a recursive invocation of PMake. -This forces PMake to execute the script associated with the target (if -it's out-of-date) even if you gave the -.B \-n -or -.B \-t -flag. By doing this, you can start at the top of a system and type -.DS -pmake -n -.DE -and have it descend the directory tree (if your makefiles are set up -correctly), printing what it would have executed if you hadn't -included the -.B \-n -flag. -.IP .NOEXPORT \n(pw -.Ix 0 def attributes .NOEXPORT -.Ix 0 def .NOEXPORT attribute -If possible, PMake will attempt to export the creation of all targets to -another machine (this depends on how PMake was configured). Sometimes, -the creation is so simple, it is pointless to send it to another -machine. If you give the target the -.CW .NOEXPORT -attribute, it will be run locally, even if you've given PMake the -.B "\-L 0" -flag. -.IP .NOTMAIN \n(pw -.Ix 0 def attributes .NOTMAIN -.Ix 0 def .NOTMAIN -Normally, if you do not specify a target to make in any other way, -PMake will take the first target on the first dependency line of a -makefile as the target to create. That target is known as the ``Main -Target'' and is labeled as such if you print the dependencies out -using the -.B \-p -flag. -.Ix 0 ref flags -p -Giving a target this attribute tells PMake that the target is -definitely -.I not -the Main Target. -This allows you to place targets in an included makefile and -have PMake create something else by default. -.IP .PRECIOUS \n(pw -.Ix 0 def attributes .PRECIOUS -.Ix 0 def .PRECIOUS attribute -When PMake is interrupted (you type control-C at the keyboard), it -will attempt to clean up after itself by removing any half-made -targets. If a target has the -.CW .PRECIOUS -attribute, however, PMake will leave it alone. An additional side -effect of the `::' operator is to mark the targets as -.CW .PRECIOUS . -.Ix 0 ref operator double-colon -.Ix 0 ref :: -.IP .SILENT \n(pw -.Ix 0 def attributes .SILENT -.Ix 0 def .SILENT attribute -Marking a target with this attribute keeps its commands from being -printed when they're executed, just as if they had an `@' in front of them. -.IP .USE \n(pw -.Ix 0 def attributes .USE -.Ix 0 def .USE -By giving a target this attribute, you turn it into PMake's equivalent -of a macro. When the target is used as a source for another target, -the other target acquires the commands, sources and attributes (except -.CW .USE ) -of the source. -If the target already has commands, the -.CW .USE -target's commands are added to the end. If more than one .USE-marked -source is given to a target, the rules are applied sequentially. -.IP "\&" \n(pw -The typical .USE rule (as I call them) will use the sources of the -target to which it is applied (as stored in the -.CW .ALLSRC -variable for the target) as its ``arguments,'' if you will. -For example, you probably noticed that the commands for creating -.CW lib1.a -and -.CW lib2.a -in the example in section 3.3 -.Rm 5 3.3 -were exactly the same. You can use the -.CW .USE -attribute to eliminate the repetition, like so: -.DS -lib1.a : $(LIB1OBJS) MAKELIB -lib2.a : $(LIB2OBJS) MAKELIB - -MAKELIB : .USE - rm -f $(.TARGET) - ar cr $(.TARGET) $(.ALLSRC) - ... - ranlib $(.TARGET) -.DE -.Ix 0 ref variable local .TARGET -.Ix 0 ref variable local .ALLSRC -.IP "\&" \n(pw -Several system makefiles (not to be confused with The System Makefile) -make use of these .USE rules to make your -life easier (they're in the default, system makefile directory...take a look). -Note that the .USE rule source itself -.CW MAKELIB ) ( -does not appear in any of the targets's local variables. -There is no limit to the number of times I could use the -.CW MAKELIB -rule. If there were more libraries, I could continue with -.CW "lib3.a : $(LIB3OBJS) MAKELIB" '' `` -and so on and so forth. -.xH 2 Special Targets -.LP -As there were in Make, so there are certain targets that have special -meaning to PMake. When you use one on a dependency line, it is the -only target that may appear on the left-hand-side of the operator. -.Ix 0 ref target -.Ix 0 ref operator -As for the attributes and variables, all the special targets -begin with a period and consist of upper-case letters only. -I won't describe them all in detail because some of them are rather -complex and I'll describe them in more detail than you'll want in -chapter 4. -The targets are as follows: -.nr pw 10 -.IP .BEGIN \n(pw -.Ix 0 def .BEGIN -Any commands attached to this target are executed before anything else -is done. You can use it for any initialization that needs doing. -.IP .DEFAULT \n(pw -.Ix 0 def .DEFAULT -This is sort of a .USE rule for any target (that was used only as a -source) that PMake can't figure out any other way to create. It's only -``sort of'' a .USE rule because only the shell script attached to the -.CW .DEFAULT -target is used. The -.CW .IMPSRC -variable of a target that inherits -.CW .DEFAULT 's -commands is set to the target's own name. -.Ix 0 ref .IMPSRC -.Ix 0 ref variable local .IMPSRC -.IP .END \n(pw -.Ix 0 def .END -This serves a function similar to -.CW .BEGIN , -in that commands attached to it are executed once everything has been -re-created (so long as no errors occurred). It also serves the extra -function of being a place on which PMake can hang commands you put off -to the end. Thus the script for this target will be executed before -any of the commands you save with the ``.\|.\|.''. -.Ix 0 ref ... -.IP .EXPORT \n(pw -The sources for this target are passed to the exportation system compiled -into PMake. Some systems will use these sources to configure -themselves. You should ask your system administrator about this. -.IP .IGNORE \n(pw -.Ix 0 def .IGNORE target -.Ix 0 ref .IGNORE attribute -.Ix 0 ref attributes .IGNORE -This target marks each of its sources with the -.CW .IGNORE -attribute. If you don't give it any sources, then it is like -giving the -.B \-i -flag when you invoke PMake \*- errors are ignored for all commands. -.Ix 0 ref flags -i -.IP .INCLUDES \n(pw -.Ix 0 def .INCLUDES target -.Ix 0 def variable global .INCLUDES -.Ix 0 def .INCLUDES variable -The sources for this target are taken to be suffixes that indicate a -file that can be included in a program source file. -The suffix must have already been declared with -.CW .SUFFIXES -(see below). -Any suffix so marked will have the directories on its search path -(see -.CW .PATH , -below) placed in the -.CW .INCLUDES -variable, each preceded by a -.B \-I -flag. This variable can then be used as an argument for the compiler -in the normal fashion. The -.CW .h -suffix is already marked in this way in the system makefile. -.Ix 0 ref makefile system -E.g. if you have -.DS -\&.SUFFIXES : .bitmap -\&.PATH.bitmap : /usr/local/X/lib/bitmaps -\&.INCLUDES : .bitmap -.DE -PMake will place -.CW "-I/usr/local/X/lib/bitmaps" '' `` -in the -.CW .INCLUDES -variable and you can then say -.DS -cc $(.INCLUDES) -c xprogram.c -.DE -(Note: the -.CW .INCLUDES -variable is not actually filled in until the entire makefile has been read.) -.IP .INTERRUPT \n(pw -.Ix 0 def .INTERRUPT -When PMake is interrupted, -it will execute the commands in the script for this target, if it -exists. -.IP .LIBS \n(pw -.Ix 0 def .LIBS target -.Ix 0 def .LIBS variable -.Ix 0 def variable global .LIBS -This does for libraries what -.CW .INCLUDES -does for include files, except the flag used is -.B \-L , -as required by those linkers that allow you to tell them where to find -libraries. The variable used is -.CW .LIBS . -Be forewarned that PMake may not have been compiled to do this if the -linker on your system doesn't accept the -.B \-L -flag, though the -.CW .LIBS -variable will always be defined once the makefile has been read. -.IP .MAIN \n(pw -.Ix 0 def .MAIN -If you didn't give a target (or targets) to create when you invoked -PMake, it will take the sources of this target as the targets to -create. -.IP .MAKEFLAGS \n(pw -.Ix 0 def .MAKEFLAGS target -This target provides a way for you to always specify flags for PMake -when the makefile is used. The flags are just as they would be typed -to the shell (except you can't use shell variables unless they're in -the environment), -though the -.B \-f -and -.B \-r -flags have no effect. -.IP .NULL \n(pw -.Ix 0 def .NULL -.Ix 0 ref suffix null -.Ix 0 ref "null suffix" -This allows you to specify what suffix PMake should pretend a file has -if, in fact, it has no known suffix. Only one suffix may be so -designated. The last source on the dependency line is the suffix that -is used (you should, however, only give one suffix.\|.\|.). -.IP .PATH \n(pw -.Ix 0 def .PATH -If you give sources for this target, PMake will take them as -directories in which to search for files it cannot find in the current -directory. If you give no sources, it will clear out any directories -added to the search path before. Since the effects of this all get -very complex, I'll leave it til chapter four to give you a complete -explanation. -.IP .PATH\fIsuffix\fP \n(pw -.Ix 0 ref .PATH -This does a similar thing to -.CW .PATH , -but it does it only for files with the given suffix. The suffix must -have been defined already. Look at -.B "Search Paths" -(section 4.1) -.Rm 6 4.1 -for more information. -.IP .PRECIOUS \n(pw -.Ix 0 def .PRECIOUS target -.Ix 0 ref .PRECIOUS attribute -.Ix 0 ref attributes .PRECIOUS -Similar to -.CW .IGNORE , -this gives the -.CW .PRECIOUS -attribute to each source on the dependency line, unless there are no -sources, in which case the -.CW .PRECIOUS -attribute is given to every target in the file. -.IP .RECURSIVE \n(pw -.Ix 0 def .RECURSIVE -.Ix 0 ref attributes .MAKE -.Ix 0 ref .MAKE -This target applies the -.CW .MAKE -attribute to all its sources. It does nothing if you don't give it any sources. -.IP .SHELL \n(pw -.Ix 0 def .SHELL -PMake is not constrained to only using the Bourne shell to execute -the commands you put in the makefile. You can tell it some other shell -to use with this target. Check out -.B "A Shell is a Shell is a Shell" -(section 4.4) -.Rm 7 4.4 -for more information. -.IP .SILENT \n(pw -.Ix 0 def .SILENT target -.Ix 0 ref .SILENT attribute -.Ix 0 ref attributes .SILENT -When you use -.CW .SILENT -as a target, it applies the -.CW .SILENT -attribute to each of its sources. If there are no sources on the -dependency line, then it is as if you gave PMake the -.B \-s -flag and no commands will be echoed. -.IP .SUFFIXES \n(pw -.Ix 0 def .SUFFIXES -This is used to give new file suffixes for PMake to handle. Each -source is a suffix PMake should recognize. If you give a -.CW .SUFFIXES -dependency line with no sources, PMake will forget about all the -suffixes it knew (this also nukes the null suffix). -For those targets that need to have suffixes defined, this is how you do it. -.LP -In addition to these targets, a line of the form -.DS -\fIattribute\fP : \fIsources\fP -.DE -applies the -.I attribute -to all the targets listed as -.I sources . -.xH 2 Modifying Variable Expansion -.LP -.Ix 0 def variable expansion modified -.Ix 0 ref variable expansion -.Ix 0 def variable modifiers -Variables need not always be expanded verbatim. PMake defines several -modifiers that may be applied to a variable's value before it is -expanded. You apply a modifier by placing it after the variable name -with a colon between the two, like so: -.DS -${\fIVARIABLE\fP:\fImodifier\fP} -.DE -Each modifier is a single character followed by something specific to -the modifier itself. -You may apply as many modifiers as you want \*- each one is applied to -the result of the previous and is separated from the previous by -another colon. -.LP -There are seven ways to modify a variable's expansion, most of which -come from the C shell variable modification characters: -.RS -.IP "M\fIpattern\fP" -.Ix 0 def :M -.Ix 0 def modifier match -This is used to select only those words (a word is a series of -characters that are neither spaces nor tabs) that match the given -.I pattern . -The pattern is a wildcard pattern like that used by the shell, where -.CW * -means 0 or more characters of any sort; -.CW ? -is any single character; -.CW [abcd] -matches any single character that is either `a', `b', `c' or `d' -(there may be any number of characters between the brackets); -.CW [0-9] -matches any single character that is between `0' and `9' (i.e. any -digit. This form may be freely mixed with the other bracket form), and -`\\' is used to escape any of the characters `*', `?', `[' or `:', -leaving them as regular characters to match themselves in a word. -For example, the system makefile -.CW -uses -.CW "$(CFLAGS:M-[ID]*)" '' `` -to extract all the -.CW \-I -and -.CW \-D -flags that would be passed to the C compiler. This allows it to -properly locate include files and generate the correct dependencies. -.IP "N\fIpattern\fP" -.Ix 0 def :N -.Ix 0 def modifier nomatch -This is identical to -.CW :M -except it substitutes all words that don't match the given pattern. -.IP "S/\fIsearch-string\fP/\fIreplacement-string\fP/[g]" -.Ix 0 def :S -.Ix 0 def modifier substitute -Causes the first occurrence of -.I search-string -in the variable to be replaced by -.I replacement-string , -unless the -.CW g -flag is given at the end, in which case all occurrences of the string -are replaced. The substitution is performed on each word in the -variable in turn. If -.I search-string -begins with a -.CW ^ , -the string must match starting at the beginning of the word. If -.I search-string -ends with a -.CW $ , -the string must match to the end of the word (these two may be -combined to force an exact match). If a backslash precedes these two -characters, however, they lose their special meaning. Variable -expansion also occurs in the normal fashion inside both the -.I search-string -and the -.I replacement-string , -.B except -that a backslash is used to prevent the expansion of a -.CW $ , -not another dollar sign, as is usual. -Note that -.I search-string -is just a string, not a pattern, so none of the usual -regular-expression/wildcard characters have any special meaning save -.CW ^ -and -.CW $ . -In the replacement string, -the -.CW & -character is replaced by the -.I search-string -unless it is preceded by a backslash. -You are allowed to use any character except -colon or exclamation point to separate the two strings. This so-called -delimiter character may be placed in either string by preceding it -with a backslash. -.IP T -.Ix 0 def :T -.Ix 0 def modifier tail -Replaces each word in the variable expansion by its last -component (its ``tail''). For example, given -.DS -OBJS = ../lib/a.o b /usr/lib/libm.a -TAILS = $(OBJS:T) -.DE -the variable -.CW TAILS -would expand to -.CW "a.o b libm.a" .'' `` -.IP H -.Ix 0 def :H -.Ix 0 def modifier head -This is similar to -.CW :T , -except that every word is replaced by everything but the tail (the -``head''). Using the same definition of -.CW OBJS , -the string -.CW "$(OBJS:H)" '' `` -would expand to -.CW "../lib /usr/lib" .'' `` -Note that the final slash on the heads is removed and -anything without a head is replaced by the empty string. -.IP E -.Ix 0 def :E -.Ix 0 def modifier extension -.Ix 0 def modifier suffix -.Ix 0 ref suffix "variable modifier" -.CW :E -replaces each word by its suffix (``extension''). So -.CW "$(OBJS:E)" '' `` -would give you -.CW ".o .a" .'' `` -.IP R -.Ix 0 def :R -.Ix 0 def modifier root -.Ix 0 def modifier base -This replaces each word by everything but the suffix (the ``root'' of -the word). -.CW "$(OBJS:R)" '' `` -expands to `` -.CW "../lib/a b /usr/lib/libm" .'' -.RE -.LP -In addition, the System V style of substitution is also supported. -This looks like: -.DS -$(\fIVARIABLE\fP:\fIsearch-string\fP=\fIreplacement\fP) -.DE -It must be the last modifier in the chain. The search is anchored at -the end of each word, so only suffixes or whole words may be replaced. -.xH 2 More on Debugging -.xH 2 More Exercises -.IP (3.1) -You've got a set programs, each of which is created from its own -assembly-language source file (suffix -.CW .asm ). -Each program can be assembled into two versions, one with error-checking -code assembled in and one without. You could assemble them into files -with different suffixes -.CW .eobj \& ( -and -.CW .obj , -for instance), but your linker only understands files that end in -.CW .obj . -To top it all off, the final executables -.I must -have the suffix -.CW .exe . -How can you still use transformation rules to make your life easier -(Hint: assume the error-checking versions have -.CW ec -tacked onto their prefix)? -.IP (3.2) -Assume, for a moment or two, you want to perform a sort of -``indirection'' by placing the name of a variable into another one, -then you want to get the value of the first by expanding the second -somehow. Unfortunately, PMake doesn't allow constructs like -.DS I -$($(FOO)) -.DE -What do you do? Hint: no further variable expansion is performed after -modifiers are applied, thus if you cause a $ to occur in the -expansion, that's what will be in the result. -.xH 1 PMake for Gods -.LP -This chapter is devoted to those facilities in PMake that allow you to -do a great deal in a makefile with very little work, as well as do -some things you couldn't do in Make without a great deal of work (and -perhaps the use of other programs). The problem with these features, -is they must be handled with care, or you will end up with a mess. -.LP -Once more, I assume a greater familiarity with -.UX -or Sprite than I did in the previous two chapters. -.xH 2 Search Paths -.Rd 6 -.LP -PMake supports the dispersal of files into multiple directories by -allowing you to specify places to look for sources with -.CW .PATH -targets in the makefile. The directories you give as sources for these -targets make up a ``search path.'' Only those files used exclusively -as sources are actually sought on a search path, the assumption being -that anything listed as a target in the makefile can be created by the -makefile and thus should be in the current directory. -.LP -There are two types of search paths -in PMake: one is used for all types of files (including included -makefiles) and is specified with a plain -.CW .PATH -target (e.g. -.CW ".PATH : RCS" ''), `` -while the other is specific to a certain type of file, as indicated by -the file's suffix. A specific search path is indicated by immediately following -the -.CW .PATH -with the suffix of the file. For instance -.DS -\&.PATH.h : /sprite/lib/include /sprite/att/lib/include -.DE -would tell PMake to look in the directories -.CW /sprite/lib/include -and -.CW /sprite/att/lib/include -for any files whose suffix is -.CW .h . -.LP -The current directory is always consulted first to see if a file -exists. Only if it cannot be found there are the directories in the -specific search path, followed by those in the general search path, -consulted. -.LP -A search path is also used when expanding wildcard characters. If the -pattern has a recognizable suffix on it, the path for that suffix will -be used for the expansion. Otherwise the default search path is employed. -.LP -When a file is found in some directory other than the current one, all -local variables that would have contained the target's name -.CW .ALLSRC , ( -and -.CW .IMPSRC ) -will instead contain the path to the file, as found by PMake. -Thus if you have a file -.CW ../lib/mumble.c -and a makefile -.DS -\&.PATH.c : ../lib -mumble : mumble.c - $(CC) -o $(.TARGET) $(.ALLSRC) -.DE -the command executed to create -.CW mumble -would be -.CW "cc -o mumble ../lib/mumble.c" .'' `` -(As an aside, the command in this case isn't strictly necessary, since -it will be found using transformation rules if it isn't given. This is because -.CW .out -is the null suffix by default and a transformation exists from -.CW .c -to -.CW .out . -Just thought I'd throw that in.) -.LP -If a file exists in two directories on the same search path, the file -in the first directory on the path will be the one PMake uses. So if -you have a large system spread over many directories, it would behoove -you to follow a naming convention that avoids such conflicts. -.LP -Something you should know about the way search paths are implemented -is that each directory is read, and its contents cached, exactly once -\&\*- when it is first encountered \*- so any changes to the -directories while PMake is running will not be noted when searching -for implicit sources, nor will they be found when PMake attempts to -discover when the file was last modified, unless the file was created in the -current directory. While people have suggested that PMake should read -the directories each time, my experience suggests that the caching seldom -causes problems. In addition, not caching the directories slows things -down enormously because of PMake's attempts to apply transformation -rules through non-existent files \*- the number of extra file-system -searches is truly staggering, especially if many files without -suffixes are used and the null suffix isn't changed from -.CW .out . -.xH 2 Archives and Libraries -.LP -.UX -and Sprite allow you to merge files into an archive using the -.CW ar -command. Further, if the files are relocatable object files, you can -run -.CW ranlib -on the archive and get yourself a library that you can link into any -program you want. The main problem with archives is they double the -space you need to store the archived files, since there's one copy in -the archive and one copy out by itself. The problem with libraries is -you usually think of them as -.CW -lm -rather than -.CW /usr/lib/libm.a -and the linker thinks they're out-of-date if you so much as look at -them. -.LP -PMake solves the problem with archives by allowing you to tell it to -examine the files in the archives (so you can remove the individual -files without having to regenerate them later). To handle the problem -with libraries, PMake adds an additional way of deciding if a library -is out-of-date: -.IP \(bu 2 -If the table of contents is older than the library, or is missing, the -library is out-of-date. -.LP -A library is any target that looks like -.CW \-l name'' `` -or that ends in a suffix that was marked as a library using the -.CW .LIBS -target. -.CW .a -is so marked in the system makefile. -.LP -Members of an archive are specified as -``\fIarchive\fP(\fImember\fP[ \fImember\fP...])''. -Thus -.CW libdix.a(window.o) '' ``' -specifies the file -.CW window.o -in the archive -.CW libdix.a . -You may also use wildcards to specify the members of the archive. Just -remember that most the wildcard characters will only find -.I existing -files. -.LP -A file that is a member of an archive is treated specially. If the -file doesn't exist, but it is in the archive, the modification time -recorded in the archive is used for the file when determining if the -file is out-of-date. When figuring out how to make an archived member target -(not the file itself, but the file in the archive \*- the -\fIarchive\fP(\fImember\fP) target), special care is -taken with the transformation rules, as follows: -.IP \(bu 2 -\&\fIarchive\fP(\fImember\fP) is made to depend on \fImember\fP. -.IP \(bu 2 -The transformation from the \fImember\fP's suffix to the -\fIarchive\fP's suffix is applied to the \fIarchive\fP(\fImember\fP) target. -.IP \(bu 2 -The \fIarchive\fP(\fImember\fP)'s -.CW .TARGET -variable is set to the name of the \fImember\fP if \fImember\fP is -actually a target, or the path to the member file if \fImember\fP is -only a source. -.IP \(bu 2 -The -.CW .ARCHIVE -variable for the \fIarchive\fP(\fImember\fP) target is set to the name -of the \fIarchive\fP. -.Ix 0 def variable local .ARCHIVE -.Ix 0 def .ARCHIVE -.IP \(bu 2 -The -.CW .MEMBER -variable is set to the actual string inside the parentheses. In most -cases, this will be the same as the -.CW .TARGET -variable. -.Ix 0 def variable local .MEMBER -.Ix 0 def .MEMBER -.IP \(bu 2 -The \fIarchive\fP(\fImember\fP)'s place in the local variables of the -targets that depend on it is taken by the value of its -.CW .TARGET -variable. -.LP -Thus, a program library could be created with the following makefile: -.DS -\&.o.a : - ... - rm -f $(.TARGET:T) -OBJS = obj1.o obj2.o obj3.o -libprog.a : libprog.a($(OBJS)) - ar cru $(.TARGET) $(.OODATE) - ranlib $(.TARGET) -.DE -This will cause the three object files to be compiled (if the -corresponding source files were modified after the object file or, if -that doesn't exist, the archived object file), the out-of-date ones -archived in -.CW libprog.a , -a table of contents placed in the archive and the newly-archived -object files to be removed. -.LP -All this is used in the -.CW makelib.mk -system makefile to create a single library with ease. This makefile -looks like this: -.DS -.SM -# -# Rules for making libraries. The object files that make up the library -# are removed once they are archived. -# -# To make several libraries in parallel, you should define the variable -# "many_libraries". This will serialize the invocations of ranlib. -# -# To use, do something like this: -# -# OBJECTS = -# -# fish.a: fish.a($(OBJECTS)) MAKELIB -# -# - -#ifndef _MAKELIB_MK -_MAKELIB_MK = - -#include - -\&.po.a .o.a : - ... - rm -f $(.MEMBER) - -ARFLAGS ?= crl - -# -# Re-archive the out-of-date members and recreate the library's table of -# contents using ranlib. If many_libraries is defined, put the ranlib -# off til the end so many libraries can be made at once. -# -MAKELIB : .USE .PRECIOUS - ar $(ARFLAGS) $(.TARGET) $(.OODATE) -#ifndef no_ranlib -# ifdef many_libraries - ... -# endif /* many_libraries */ - ranlib $(.TARGET) -#endif /* no_ranlib */ - -#endif /* _MAKELIB_MK */ -.DE -.xH 2 On the Condition... -.Rd 1 -.LP -Like the C compiler before it, PMake allows you to configure the makefile, -based on the current environment, using conditional statements. A -conditional looks like this: -.DS -#if \fIboolean expression\fP -\fIlines\fP -#elif \fIanother boolean expression\fP -\fImore lines\fP -#else -\fIstill more lines\fP -#endif -.DE -They may be nested to a maximum depth of 30 and may occur anywhere -(except in a comment, of course). The -.CW # '' `` -must the very first character on the line. -.LP -Each -.I "boolean expression" -is made up of terms that look like function calls, the standard C -boolean operators -.CW && , -.CW || , -and -.CW ! , -and the standard relational operators -.CW == , -.CW != , -.CW > , -.CW >= , -.CW < , -and -.CW <= , -with -.CW == -and -.CW != -being overloaded to allow string comparisons as well. -.CW && -represents logical AND; -.CW || -is logical OR and -.CW ! -is logical NOT. The arithmetic and string operators take precedence -over all three of these operators, while NOT takes precedence over -AND, which takes precedence over OR. This precedence may be -overridden with parentheses, and an expression may be parenthesized to -your heart's content. Each term looks like a call on one of four -functions: -.nr pw 9 -.Ix 0 def make -.Ix 0 def conditional make -.Ix 0 def if make -.IP make \n(pw -The syntax is -.CW make( \fItarget\fP\c -.CW ) -where -.I target -is a target in the makefile. This is true if the given target was -specified on the command line, or as the source for a -.CW .MAIN -target (note that the sources for -.CW .MAIN -are only used if no targets were given on the command line). -.IP defined \n(pw -.Ix 0 def defined -.Ix 0 def conditional defined -.Ix 0 def if defined -The syntax is -.CW defined( \fIvariable\fP\c -.CW ) -and is true if -.I variable -is defined. Certain variables are defined in the system makefile that -identify the system on which PMake is being run. -.IP exists \n(pw -.Ix 0 def exists -.Ix 0 def conditional exists -.Ix 0 def if exists -The syntax is -.CW exists( \fIfile\fP\c -.CW ) -and is true if the file can be found on the global search path -(i.e. that defined by -.CW .PATH -targets, not by -.CW .PATH \fIsuffix\fP -targets). -.IP empty \n(pw -.Ix 0 def empty -.Ix 0 def conditional empty -.Ix 0 def if empty -This syntax is much like the others, except the string inside the -parentheses is of the same form as you would put between parentheses -when expanding a variable, complete with modifiers and everything. The -function returns true if the resulting string is empty (NOTE: an undefined -variable in this context will cause at the very least a warning -message about a malformed conditional, and at the worst will cause the -process to stop once it has read the makefile. If you want to check -for a variable being defined or empty, use the expression -.CW !defined( \fIvar\fP\c `` -.CW ") || empty(" \fIvar\fP\c -.CW ) '' -as the definition of -.CW || -will prevent the -.CW empty() -from being evaluated and causing an error, if the variable is -undefined). This can be used to see if a variable contains a given -word, for example: -.DS -#if !empty(\fIvar\fP:M\fIword\fP) -.DE -.LP -The arithmetic and string operators may only be used to test the value -of a variable. The lefthand side must contain the variable expansion, -while the righthand side contains either a string, enclosed in -double-quotes, or a number. The standard C numeric conventions (except -for specifying an octal number) apply to both sides. E.g. -.DS -#if $(OS) == 4.3 - -#if $(MACHINE) == "sun3" - -#if $(LOAD_ADDR) < 0xc000 -.DE -are all valid conditionals. In addition, the numeric value of a -variable can be tested as a boolean as follows: -.DS -#if $(LOAD) -.DE -would see if -.CW LOAD -contains a non-zero value and -.DS -#if !$(LOAD) -.DE -would test if -.CW LOAD -contains a zero value. -.LP -In addition to the bare -.CW #if ,'' `` -there are other forms that apply one of the first two functions to each -term. They are as follows: -.DS - ifdef \fRdefined\fP - ifndef \fR!defined\fP - ifmake \fRmake\fP - ifnmake \fR!make\fP -.DE -There are also the ``else if'' forms: -.CW elif , -.CW elifdef , -.CW elifndef , -.CW elifmake , -and -.CW elifnmake . -.LP -For instance, if you wish to create two versions of a program, one of which -is optimized (the production version) and the other of which is for debugging -(has symbols for dbx), you have two choices: you can create two -makefiles, one of which uses the -.CW \-g -flag for the compilation, while the other uses the -.CW \-O -flag, or you can use another target (call it -.CW debug ) -to create the debug version. The construct below will take care of -this for you. I have also made it so defining the variable -.CW DEBUG -(say with -.CW "pmake -D DEBUG" ) -will also cause the debug version to be made. -.DS -#if defined(DEBUG) || make(debug) -CFLAGS += -g -#else -CFLAGS += -O -#endif -.DE -There are, of course, problems with this approach. The most glaring -annoyance is that if you want to go from making a debug version to -making a production version, you have to remove all the object files, -or you will get some optimized and some debug versions in the same -program. Another annoyance is you have to be careful not to make two -targets that ``conflict'' because of some conditionals in the -makefile. For instance -.DS -#if make(print) -FORMATTER = ditroff -Plaser_printer -#endif -#if make(draft) -FORMATTER = nroff -Pdot_matrix_printer -#endif -.DE -would wreak havoc if you tried -.CW "pmake draft print" '' `` -since you would use the same formatter for each target. As I said, -this all gets somewhat complicated. -.xH 2 A Shell is a Shell is a Shell -.Rd 7 -.LP -In normal operation, the Bourne Shell (better known as -.CW sh '') `` -is used to execute the commands to re-create targets. PMake also allows you -to specify a different shell for it to use when executing these -commands. There are several things PMake must know about the shell you -wish to use. These things are specified as the sources for the -.CW .SHELL -.Ix 0 ref .SHELL -.Ix 0 ref target .SHELL -target by keyword, as follows: -.IP "\fBpath=\fP\fIpath\fP" -PMake needs to know where the shell actually resides, so it can -execute it. If you specify this and nothing else, PMake will use the -last component of the path and look in its table of the shells it -knows and use the specification it finds, if any. Use this if you just -want to use a different version of the Bourne or C Shell (yes, PMake knows -how to use the C Shell too). -.IP "\fBname=\fP\fIname\fP" -This is the name by which the shell is to be known. It is a single -word and, if no other keywords are specified (other than -.B path ), -it is the name by which PMake attempts to find a specification for -it (as mentioned above). You can use this if you would just rather use -the C Shell than the Bourne Shell -.CW ".SHELL: name=csh" '' (`` -will do it). -.IP "\fBquiet=\fP\fIecho-off command\fP" -As mentioned before, PMake actually controls whether commands are -printed by introducing commands into the shell's input stream. This -keyword, and the next two, control what those commands are. The -.B quiet -keyword is the command used to turn echoing off. Once it is turned -off, echoing is expected to remain off until the echo-on command is given. -.IP "\fBecho=\fP\fIecho-on command\fP" -The command PMake should give to turn echoing back on again. -.IP "\fBfilter=\fP\fIprinted echo-off command\fP" -Many shells will echo the echo-off command when it is given. This -keyword tells PMake in what format the shell actually prints the -echo-off command. Wherever PMake sees this string in the shell's -output, it will delete it and any following whitespace, up to and -including the next newline. See the example at the end of this section -for more details. -.IP "\fBechoFlag=\fP\fIflag to turn echoing on\fP" -Unless a target has been marked -.CW .SILENT , -PMake wants to start the shell running with echoing on. To do this, it -passes this flag to the shell as one of its arguments. If either this -or the next flag begins with a `\-', the flags will be passed to the -shell as separate arguments. Otherwise, the two will be concatenated -(if they are used at the same time, of course). -.IP "\fBerrFlag=\fP\fIflag to turn error checking on\fP" -Likewise, unless a target is marked -.CW .IGNORE , -PMake wishes error-checking to be on from the very start. To this end, -it will pass this flag to the shell as an argument. The same rules for -an initial `\-' apply as for the -.B echoFlag . -.IP "\fBcheck=\fP\fIcommand to turn error checking on\fP" -Just as for echo-control, error-control is achieved by inserting -commands into the shell's input stream. This is the command to make -the shell check for errors. It also serves another purpose if the -shell doesn't have error-control as commands, but I'll get into that -in a minute. Again, once error checking has been turned on, it is -expected to remain on until it is turned off again. -.IP "\fBignore=\fP\fIcommand to turn error checking off\fP" -This is the command PMake uses to turn error checking off. It has -another use if the shell doesn't do error-control, but I'll tell you -about that.\|.\|.\|now. -.IP "\fBhasErrCtl=\fP\fIyes or no\fP" -This takes a value that is either -.B yes -or -.B no . -Now you might think that the existence of the -.B check -and -.B ignore -keywords would be enough to tell PMake if the shell can do -error-control, but you'd be wrong. If -.B hasErrCtl -is -.B yes , -PMake uses the check and ignore commands in a straight-forward manner. -If this is -.B no , -however, their use is rather different. In this case, the check -command is used as a template, in which the string -.B %s -is replaced by the command that's about to be executed, to produce a -command for the shell that will echo the command to be executed. The -ignore command is also used as a template, again with -.B %s -replaced by the command to be executed, to produce a command that will -execute the command to be executed and ignore any error it returns. -When these strings are used as templates, you must provide newline(s) -.CW \en '') (`` -in the appropriate place(s). -.LP -The strings that follow these keywords may be enclosed in single or -double quotes (the quotes will be stripped off) and may contain the -usual C backslash-characters (\en is newline, \er is return, \eb is -backspace, \e' escapes a single-quote inside single-quotes, \e" -escapes a double-quote inside double-quotes). Now for an example. -.LP -This is actually the contents of the -.CW -system makefile, and causes PMake to use the Bourne Shell in such a -way that each command is printed as it is executed. That is, if more -than one command is given on a line, each will be printed separately. -Similarly, each time the body of a loop is executed, the commands -within that loop will be printed, etc. The specification runs like -this: -.DS -# -# This is a shell specification to have the Bourne shell echo -# the commands just before executing them, rather than when it reads -# them. Useful if you want to see how variables are being expanded, etc. -# -\&.SHELL : path=/bin/sh \e - quiet="set -" \e - echo="set -x" \e - filter="+ set - " \e - echoFlag=x \e - errFlag=e \e - hasErrCtl=yes \e - check="set -e" \e - ignore="set +e" -.DE -.LP -It tells PMake the following: -.Bp -The shell is located in the file -.CW /bin/sh . -It need not tell PMake that the name of the shell is -.CW sh -as PMake can figure that out for itself (it's the last component of -the path). -.Bp -The command to stop echoing is -.CW "set -" . -.Bp -The command to start echoing is -.CW "set -x" . -.Bp -When the echo off command is executed, the shell will print -.CW "+ set - " -(The `+' comes from using the -.CW \-x -flag (rather than the -.CW \-v -flag PMake usually uses)). PMake will remove all occurrences of this -string from the output, so you don't notice extra commands you didn't -put there. -.Bp -The flag the Bourne Shell will take to start echoing in this way is -the -.CW \-x -flag. The Bourne Shell will only take its flag arguments concatenated -as its first argument, so neither this nor the -.B errFlag -specification begins with a \-. -.Bp -The flag to use to turn error-checking on from the start is -.CW \-e . -.Bp -The shell can turn error-checking on and off, and the commands to do -so are -.CW "set +e" -and -.CW "set -e" , -respectively. -.LP -I should note that this specification is for Bourne Shells that are -not part of Berkeley -.UX , -as shells from Berkeley don't do error control. You can get a similar -effect, however, by changing the last three lines to be: -.DS - hasErrCtl=no \e - check="echo \e"+ %s\e"\en" \e - ignore="sh -c '%s || exit 0\en" -.DE -.LP -This will cause PMake to execute the two commands -.DS -echo "+ \fIcmd\fP" -sh -c '\fIcmd\fP || true' -.DE -for each command for which errors are to be ignored. (In case you are -wondering, the thing for -.CW ignore -tells the shell to execute another shell without error checking on and -always exit 0, since the -.B || -causes the -.CW "exit 0" -to be executed only if the first command exited non-zero, and if the -first command exited zero, the shell will also exit zero, since that's -the last command it executed). -.xH 2 Compatibility -.Ix 0 ref compatibility -.LP -There are three (well, 3 \(12) levels of backwards-compatibility built -into PMake. Most makefiles will need none at all. Some may need a -little bit of work to operate correctly when run in parallel. Each -level encompasses the previous levels (e.g. -.B \-B -(one shell per command) implies -.B \-V ) -The three levels are described in the following three sections. -.xH 3 DEFCON 3 \*- Variable Expansion -.Ix 0 ref compatibility -.LP -As noted before, PMake will not expand a variable unless it knows of a -value for it. This can cause problems for makefiles that expect to -leave variables undefined except in special circumstances (e.g. if -more flags need to be passed to the C compiler or the output from a -text processor should be sent to a different printer). If the -variables are enclosed in curly braces -.CW ${PRINTER} ''), (`` -the shell will let them pass. If they are enclosed in parentheses, -however, the shell will declare a syntax error and the make will come -to a grinding halt. -.LP -You have two choices: change the makefile to define the variables -(their values can be overridden on the command line, since that's -where they would have been set if you used Make, anyway) or always give the -.B \-V -flag (this can be done with the -.CW .MAKEFLAGS -target, if you want). -.xH 3 DEFCON 2 \*- The Number of the Beast -.Ix 0 ref compatibility -.LP -Then there are the makefiles that expect certain commands, such as -changing to a different directory, to not affect other commands in a -target's creation script. You can solve this is either by going -back to executing one shell per command (which is what the -.B \-B -flag forces PMake to do), which slows the process down a good bit and -requires you to use semicolons and escaped newlines for shell constructs, or -by changing the makefile to execute the offending command(s) in a subshell -(by placing the line inside parentheses), like so: -.DS -install :: .MAKE - (cd src; $(.PMAKE) install) - (cd lib; $(.PMAKE) install) - (cd man; $(.PMAKE) install) -.DE -.Ix 0 ref operator double-colon -.Ix 0 ref variable global .PMAKE -.Ix 0 ref .PMAKE -.Ix 0 ref .MAKE -.Ix 0 ref attribute .MAKE -This will always execute the three makes (even if the -.B \-n -flag was given) because of the combination of the ``::'' operator and -the -.CW .MAKE -attribute. Each command will change to the proper directory to perform -the install, leaving the main shell in the directory in which it started. -.xH 3 "DEFCON 1 \*- Imitation is the Not the Highest Form of Flattery" -.Ix 0 ref compatibility -.LP -The final category of makefile is the one where every command requires -input, the dependencies are incompletely specified, or you simply -cannot create more than one target at a time, as mentioned earlier. In -addition, you may not have the time or desire to upgrade the makefile -to run smoothly with PMake. If you are the conservative sort, this is -the compatibility mode for you. It is entered either by giving PMake -the -.B \-M -flag (for Make), or by executing PMake as -.CW make .'' `` -In either case, PMake performs things exactly like Make (while still -supporting most of the nice new features PMake provides). This -includes: -.IP \(bu 2 -No parallel execution. -.IP \(bu 2 -Targets are made in the exact order specified by the makefile. The -sources for each target are made in strict left-to-right order, etc. -.IP \(bu 2 -A single Bourne shell is used to execute each command, thus the -shell's -.CW $$ -variable is useless, changing directories doesn't work across command -lines, etc. -.IP \(bu 2 -If no special characters exist in a command line, PMake will break the -command into words itself and execute the command directly, without -executing a shell first. The characters that cause PMake to execute a -shell are: -.CW # , -.CW = , -.CW | , -.CW ^ , -.CW ( , -.CW ) , -.CW { , -.CW } , -.CW ; , -.CW & , -.CW < , -.CW > , -.CW * , -.CW ? , -.CW [ , -.CW ] , -.CW : , -.CW $ , -.CW ` , -and -.CW \e . -You should notice that these are all the characters that are given -special meaning by the shell (except -.CW ' -and -.CW " , -which PMake deals with all by its lonesome). -.IP \(bu 2 -The use of the null suffix is turned off. -.Ix 0 ref "null suffix" -.Ix 0 ref suffix null -.xH 2 The Way Things Work -.LP -When PMake reads the makefile, it parses sources and targets into -nodes in a graph. The graph is directed only in the sense that PMake -knows which way is up. Each node contains not only links to all its -parents and children (the nodes that depend on it and those on which -it depends, respectively), but also a count of the number of its -children that have already been processed. -.LP -The most important thing to know about how PMake uses this graph is -that the traversal is breadth-first and occurs in two passes. -.LP -After PMake has parsed the makefile, it begins with the nodes the user -has told it to make (either on the command line, or via a -.CW .MAIN -target, or by the target being the first in the file not labeled with -the -.CW .NOTMAIN -attribute) placed in a queue. It continues to take the node off the -front of the queue, mark it as something that needs to be made, pass -the node to -.CW Suff_FindDeps -(mentioned earlier) to find any implicit sources for the node, and -place all the node's children that have yet to be marked at the end of -the queue. If any of the children is a -.CW .USE -rule, its attributes are applied to the parent, then its commands are -appended to the parent's list of commands and its children are linked -to its parent. The parent's unmade children counter is then decremented -(since the -.CW .USE -node has been processed). You will note that this allows a -.CW .USE -node to have children that are -.CW .USE -nodes and the rules will be applied in sequence. -If the node has no children, it is placed at the end of -another queue to be examined in the second pass. This process -continues until the first queue is empty. -.LP -At this point, all the leaves of the graph are in the examination -queue. PMake removes the node at the head of the queue and sees if it -is out-of-date. If it is, it is passed to a function that will execute -the commands for the node asynchronously. When the commands have -completed, all the node's parents have their unmade children counter -decremented and, if the counter is then 0, they are placed on the -examination queue. Likewise, if the node is up-to-date. Only those -parents that were marked on the downward pass are processed in this -way. Thus PMake traverses the graph back up to the nodes the user -instructed it to create. When the examination queue is empty and no -shells are running to create a target, PMake is finished. -.LP -Once all targets have been processed, PMake executes the commands -attached to the -.CW .END -target, either explicitly or through the use of an ellipsis in a shell -script. If there were no errors during the entire process but there -are still some targets unmade (PMake keeps a running count of how many -targets are left to be made), there is a cycle in the graph. PMake does -a depth-first traversal of the graph to find all the targets that -weren't made and prints them out one by one. -.xH 1 Answers to Exercises -.IP (3.1) -This is something of a trick question, for which I apologize. The -trick comes from the UNIX definition of a suffix, which PMake doesn't -necessarily share. You will have noticed that all the suffixes used in -this tutorial (and in UNIX in general) begin with a period -.CW .ms , ( -.CW .c , -etc.). Now, PMake's idea of a suffix is more like English's: it's the -characters at the end of a word. With this in mind, one possible -.Ix 0 def suffix -solution to this problem goes as follows: -.DS I -\&.SUFFIXES : ec.exe .exe ec.obj .obj .asm -ec.objec.exe .obj.exe : - link -o $(.TARGET) $(.IMPSRC) -\&.asmec.obj : - asm -o $(.TARGET) -DDO_ERROR_CHECKING $(.IMPSRC) -\&.asm.obj : - asm -o $(.TARGET) $(.IMPSRC) -.DE -.IP (3.2) -The trick to this one lies in the ``:='' variable-assignment operator -and the ``:S'' variable-expansion modifier. -.Ix 0 ref variable assignment expanded -.Ix 0 ref variable expansion modified -.Ix 0 ref modifier substitute -.Ix 0 ref :S -.Ix 0 ref := -Basically what you want is to take the pointer variable, so to speak, -and transform it into an invocation of the variable at which it -points. You might try something like -.DS I -$(PTR:S/^/\e$(/:S/$/)) -.DE -which places -.CW $( '' `` -at the front of the variable name and -.CW ) '' `` -at the end, thus transforming -.CW VAR ,'' `` -for example, into -.CW $(VAR) ,'' `` -which is just what we want. Unfortunately (as you know if you've tried -it), since, as it says in the hint, PMake does no further substitution -on the result of a modified expansion, that's \fIall\fP you get. The -solution is to make use of ``:='' to place that string into yet -another variable, then invoke the other variable directly: -.DS I -*PTR := $(PTR:S/^/\e$(/:S/$/)/) -.DE -You can then use -.CW $(*PTR) '' `` -to your heart's content. -.de Gp -.XP -\&\fB\\$1:\fP -.. -.xH 1 Glossary of Jargon -.Gp "attribute" -A property given to a target that causes PMake to treat it differently. -.Gp "command script" -The lines immediately following a dependency line that specify -commands to execute to create each of the targets on the dependency -line. Each line in the command script must begin with a tab. -.Gp "command-line variable" -A variable defined in an argument when PMake is first executed. -Overrides all assignments to the same variable name in the makefile. -.Gp "conditional" -A construct much like that used in C that allows a makefile to be -configured on the fly based on the local environment, or on what is being -made by that invocation of PMake. -.Gp "creation script" -Commands used to create a target. See ``command script.'' -.Gp "dependency" -The relationship between a source and a target. This comes in three -flavors, as indicated by the operator between the target and the -source. `:' gives a straight time-wise dependency (if the target is -older than the source, the target is out-of-date), while `!' provides -simply an ordering and always considers the target out-of-date. `::' -is much like `:', save it creates multiple instances of a target each -of which depends on its own list of sources. -.Gp "dynamic source" -This refers to a source that has a local variable invocation in it. It -allows a single dependency line to specify a different source for each -target on the line. -.Gp "global variable" -Any variable defined in a makefile. Takes precedence over variables -defined in the environment, but not over command-line or local variables. -.Gp "input graph" -What PMake constructs from a makefile. Consists of nodes made of the -targets in the makefile, and the links between them (the -dependencies). The links are directed (from source to target) and -there may not be any cycles (loops) in the graph. -.Gp "local variable" -A variable defined by PMake visible only in a target's shell script. -There are seven local variables, not all of which are defined for -every target: -.CW .TARGET , -.CW .ALLSRC , -.CW .OODATE , -.CW .PREFIX , -.CW .IMPSRC , -.CW .ARCHIVE , -and -.CW .MEMBER . -.CW .TARGET , -.CW .PREFIX , -.CW .ARCHIVE , -and -.CW .MEMBER -may be used on dependency lines to create ``dynamic sources.'' -.Gp "makefile" -A file that describes how a system is built. If you don't know what it -is after reading this tutorial.\|.\|.\|. -.Gp "modifier" -A letter, following a colon, used to alter how a variable is expanded. -It has no effect on the variable itself. -.Gp "operator" -What separates a source from a target (on a dependency line) and specifies -the relationship between the two. There are three: -.CW : ', ` -.CW :: ', ` -and -.CW ! '. ` -.Gp "search path" -A list of directories in which a file should be sought. PMake's view -of the contents of directories in a search path does not change once -the makefile has been read. A file is sought on a search path only if -it is exclusively a source. -.Gp "shell" -A program to which commands are passed in order to create targets. -.Gp "source" -Anything to the right of an operator on a dependency line. Targets on -the dependency line are usually created from the sources. -.Gp "special target" -A target that causes PMake to do special things when it's encountered. -.Gp "suffix" -The tail end of a file name. Usually begins with a period, -.CW .c -or -.CW .ms , -e.g. -.Gp "target" -A word to the left of the operator on a dependency line. More -generally, any file that PMake might create. A file may be (and often -is) both a target and a source (what it is depends on how PMake is -looking at it at the time \*- sort of like the wave/particle duality -of light, you know). -.Gp "transformation rule" -A special construct in a makefile that specifies how to create a file -of one type from a file of another, as indicated by their suffixes. -.Gp "variable expansion" -The process of substituting the value of a variable for a reference to -it. Expansion may be altered by means of modifiers. -.Gp "variable" -A place in which to store text that may be retrieved later. Also used -to define the local environment. Conditionals exist that test whether -a variable is defined or not. -.bp -.\" Output table of contents last, with an entry for the index, making -.\" sure to save and restore the last real page number for the index... -.nr @n \n(PN+1 -.\" We are not generating an index -.\" .XS \n(@n -.\" Index -.\" .XE -.nr %% \n% -.PX -.nr % \n(%% diff --git a/external/bsd/bmake/dist/README b/external/bsd/bmake/dist/README deleted file mode 100644 index fb688a33bc65..000000000000 --- a/external/bsd/bmake/dist/README +++ /dev/null @@ -1,47 +0,0 @@ - bmake - -This directory contains a port of the BSD make tool (from NetBSD) -I have run it on SunOS,Solaris,HP-UX,AIX,IRIX,FreeBSD and Linux. - -Version 3 was re-worked from scratch to better facilitate -importing newer make(1) versions from NetBSD. The original code base -was NetBSD-1.0, so version 3 was built by doing a fresh import of the -NetBSD-1.0 usr.bin/make, adding the autoconf and other portability -patches to sync it with bmake v2, and then NetBSD's make -of Feb 20, 2000 was imported and conflicts dealt with. -NetBSD's make was again imported on June 6 and December 15, 2000. - -In 2003 bmake switched to a date based version (first was 20030714) -which generally represents the date it was last merged with NetBSD's -make. Since then, NetBSD's make is imported within a week of any -interesting changes, so that bmake tracks it very closely. - -Building: - -The prefered way to bootstrap bmake is: - -./bmake/boot-strap - -there are a number of args - most of which get passed to configure, -eg. - -./bmake/boot-strap --prefix=/opt - -see the boot-strap script for details. - -To make much use of bmake you will need the bsd.*.mk macros or my -portable *.mk macros. See -http://www.crufty.net/ftp/pub/sjg/mk.tar.gz -which will be links to the latest versions. - -On a non-BSD system, you would want to unpack mk[-YYYYmmdd].tar.gz in -the same directory as bmake (so ./mk and ./bmake exist), and -./bmake/boot-strap will do the rest. - -If you want to do it all by hand then read boot-strap first to get the -idea. - -Even if you have an earlier version of bmake installed, use boot-strap -to ensure that all goes well. - ---sjg diff --git a/external/bsd/bmake/dist/aclocal.m4 b/external/bsd/bmake/dist/aclocal.m4 deleted file mode 100644 index 2adafba3dac5..000000000000 --- a/external/bsd/bmake/dist/aclocal.m4 +++ /dev/null @@ -1,77 +0,0 @@ -dnl RCSid: -dnl $Id: aclocal.m4,v 1.5 2003/03/06 21:21:30 sjg Exp $ -dnl - -dnl -dnl AC_CHECK_HEADER_HAS(HEADER, PATTERN, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])) - -AC_DEFUN(AC_CHECK_HEADER_HAS, -[dnl first check if header exists and if so, see if it contains PATTERN -ac_has_hdr=`echo "ac_cv_header_$1" | sed 'y%./+-%__p_%'` -ac_has_it=`echo "ac_cv_header_$1"_$2 | sed 'y%./+-%__p_%'` -if eval "test \"`echo x'$'$ac_has_hdr`\" = x"; then - AC_CHECK_HEADER($1) -fi -if eval "test \"`echo '$'$ac_has_hdr`\" = yes"; then - ac_x=HAVE_`echo "$1" | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` - AC_DEFINE_UNQUOTED($ac_x) - AC_MSG_CHECKING([if $1 has $2]) - AC_CACHE_VAL($ac_has_it, - [eval $ac_has_it=no - AC_EGREP_HEADER($2, $1, eval "$ac_has_it=yes")]) - - if eval "test \"`echo '$'$ac_has_it`\" = yes"; then - AC_MSG_RESULT(yes) - ac_x=HAVE_`echo "$1"_$2 | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` - AC_DEFINE_UNQUOTED($ac_x) - ifelse([$3], , :, [$3]) - else - AC_MSG_RESULT(no) - ifelse([$4], , , [$4 -])dnl - fi -fi -]) - -dnl AC_EGREP(PATTERN, FILE, ACTION-IF-FOUND [, -dnl ACTION-IF-NOT-FOUND]) -AC_DEFUN(AC_EGREP, -[ -dnl Prevent m4 from eating character classes: -changequote(, )dnl -if egrep "$1" $2 >/dev/null 2>&1; then -changequote([, ])dnl - ifelse([$3], , :, [$3]) -ifelse([$4], , , [else - $4 -])dnl -fi -]) - -dnl -dnl Test for __attribute__ -dnl - -AC_DEFUN(AC_C___ATTRIBUTE__, [ -AC_MSG_CHECKING(for __attribute__) -AC_CACHE_VAL(ac_cv___attribute__, [ -AC_TRY_COMPILE([ -#include -], -[ -static void foo(void) __attribute__ ((noreturn)); - -static void -foo(void) -{ - exit(1); -} -], -ac_cv___attribute__=yes, -ac_cv___attribute__=no)]) -if test "$ac_cv___attribute__" = "yes"; then - AC_DEFINE(HAVE___ATTRIBUTE__, 1, [define if your compiler has __attribute__]) -fi -AC_MSG_RESULT($ac_cv___attribute__) -]) - diff --git a/external/bsd/bmake/dist/arch.c b/external/bsd/bmake/dist/arch.c deleted file mode 100644 index 943f41ee8392..000000000000 --- a/external/bsd/bmake/dist/arch.c +++ /dev/null @@ -1,1403 +0,0 @@ -/* $NetBSD: arch.c,v 1.63 2012/06/12 19:21:50 joerg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: arch.c,v 1.63 2012/06/12 19:21:50 joerg Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)arch.c 8.2 (Berkeley) 1/2/94"; -#else -__RCSID("$NetBSD: arch.c,v 1.63 2012/06/12 19:21:50 joerg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * arch.c -- - * Functions to manipulate libraries, archives and their members. - * - * Once again, cacheing/hashing comes into play in the manipulation - * of archives. The first time an archive is referenced, all of its members' - * headers are read and hashed and the archive closed again. All hashed - * archives are kept on a list which is searched each time an archive member - * is referenced. - * - * The interface to this module is: - * Arch_ParseArchive Given an archive specification, return a list - * of GNode's, one for each member in the spec. - * FAILURE is returned if the specification is - * invalid for some reason. - * - * Arch_Touch Alter the modification time of the archive - * member described by the given node to be - * the current time. - * - * Arch_TouchLib Update the modification time of the library - * described by the given node. This is special - * because it also updates the modification time - * of the library's table of contents. - * - * Arch_MTime Find the modification time of a member of - * an archive *in the archive*. The time is also - * placed in the member's GNode. Returns the - * modification time. - * - * Arch_MemTime Find the modification time of a member of - * an archive. Called when the member doesn't - * already exist. Looks in the archive for the - * modification time. Returns the modification - * time. - * - * Arch_FindLib Search for a library along a path. The - * library name in the GNode should be in - * -l format. - * - * Arch_LibOODate Special function to decide if a library node - * is out-of-date. - * - * Arch_Init Initialize this module. - * - * Arch_End Cleanup this module. - */ - -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif -#include -#include -#include -#include -#include -#ifdef HAVE_AR_H -#include -#else -struct ar_hdr { - char ar_name[16]; /* name */ - char ar_date[12]; /* modification time */ - char ar_uid[6]; /* user id */ - char ar_gid[6]; /* group id */ - char ar_mode[8]; /* octal file permissions */ - char ar_size[10]; /* size in bytes */ -#ifndef ARFMAG -#define ARFMAG "`\n" -#endif - char ar_fmag[2]; /* consistency check */ -}; -#endif -#if defined(HAVE_RANLIB_H) && !(defined(__ELF__) || defined(NO_RANLIB)) -#include -#endif -#include -#include -#include -#ifdef HAVE_UTIME_H -#include -#endif - -#include "make.h" -#include "hash.h" -#include "dir.h" - -#ifdef TARGET_MACHINE -#undef MAKE_MACHINE -#define MAKE_MACHINE TARGET_MACHINE -#endif -#ifdef TARGET_MACHINE_ARCH -#undef MAKE_MACHINE_ARCH -#define MAKE_MACHINE_ARCH TARGET_MACHINE_ARCH -#endif - -static Lst archives; /* Lst of archives we've already examined */ - -typedef struct Arch { - char *name; /* Name of archive */ - Hash_Table members; /* All the members of the archive described - * by key/value pairs */ - char *fnametab; /* Extended name table strings */ - size_t fnamesize; /* Size of the string table */ -} Arch; - -static int ArchFindArchive(const void *, const void *); -#ifdef CLEANUP -static void ArchFree(void *); -#endif -static struct ar_hdr *ArchStatMember(char *, char *, Boolean); -static FILE *ArchFindMember(char *, char *, struct ar_hdr *, const char *); -#if defined(__svr4__) || defined(__SVR4) || defined(__ELF__) -#define SVR4ARCHIVES -static int ArchSVR4Entry(Arch *, char *, size_t, FILE *); -#endif - - -#if defined(_AIX) -# define AR_NAME _ar_name.ar_name -# define AR_FMAG _ar_name.ar_fmag -# define SARMAG SAIAMAG -# define ARMAG AIAMAG -# define ARFMAG AIAFMAG -#endif -#ifndef AR_NAME -# define AR_NAME ar_name -#endif -#ifndef AR_DATE -# define AR_DATE ar_date -#endif -#ifndef AR_SIZE -# define AR_SIZE ar_size -#endif -#ifndef AR_FMAG -# define AR_FMAG ar_fmag -#endif -#ifndef ARMAG -# define ARMAG "!\n" -#endif -#ifndef SARMAG -# define SARMAG 8 -#endif - -#define AR_MAX_NAME_LEN (sizeof(arh.AR_NAME)-1) - -#ifdef CLEANUP -/*- - *----------------------------------------------------------------------- - * ArchFree -- - * Free memory used by an archive - * - * Results: - * None. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static void -ArchFree(void *ap) -{ - Arch *a = (Arch *)ap; - Hash_Search search; - Hash_Entry *entry; - - /* Free memory from hash entries */ - for (entry = Hash_EnumFirst(&a->members, &search); - entry != NULL; - entry = Hash_EnumNext(&search)) - free(Hash_GetValue(entry)); - - free(a->name); - if (a->fnametab) - free(a->fnametab); - Hash_DeleteTable(&a->members); - free(a); -} -#endif - - -/*- - *----------------------------------------------------------------------- - * Arch_ParseArchive -- - * Parse the archive specification in the given line and find/create - * the nodes for the specified archive members, placing their nodes - * on the given list. - * - * Input: - * linePtr Pointer to start of specification - * nodeLst Lst on which to place the nodes - * ctxt Context in which to expand variables - * - * Results: - * SUCCESS if it was a valid specification. The linePtr is updated - * to point to the first non-space after the archive spec. The - * nodes for the members are placed on the given list. - * - * Side Effects: - * Some nodes may be created. The given list is extended. - * - *----------------------------------------------------------------------- - */ -ReturnStatus -Arch_ParseArchive(char **linePtr, Lst nodeLst, GNode *ctxt) -{ - char *cp; /* Pointer into line */ - GNode *gn; /* New node */ - char *libName; /* Library-part of specification */ - char *memName; /* Member-part of specification */ - char *nameBuf; /* temporary place for node name */ - char saveChar; /* Ending delimiter of member-name */ - Boolean subLibName; /* TRUE if libName should have/had - * variable substitution performed on it */ - - libName = *linePtr; - - subLibName = FALSE; - - for (cp = libName; *cp != '(' && *cp != '\0'; cp++) { - if (*cp == '$') { - /* - * Variable spec, so call the Var module to parse the puppy - * so we can safely advance beyond it... - */ - int length; - void *freeIt; - char *result; - - result = Var_Parse(cp, ctxt, TRUE, &length, &freeIt); - if (freeIt) - free(freeIt); - if (result == var_Error) { - return(FAILURE); - } else { - subLibName = TRUE; - } - - cp += length-1; - } - } - - *cp++ = '\0'; - if (subLibName) { - libName = Var_Subst(NULL, libName, ctxt, TRUE); - } - - - for (;;) { - /* - * First skip to the start of the member's name, mark that - * place and skip to the end of it (either white-space or - * a close paren). - */ - Boolean doSubst = FALSE; /* TRUE if need to substitute in memName */ - - while (*cp != '\0' && *cp != ')' && isspace ((unsigned char)*cp)) { - cp++; - } - memName = cp; - while (*cp != '\0' && *cp != ')' && !isspace ((unsigned char)*cp)) { - if (*cp == '$') { - /* - * Variable spec, so call the Var module to parse the puppy - * so we can safely advance beyond it... - */ - int length; - void *freeIt; - char *result; - - result = Var_Parse(cp, ctxt, TRUE, &length, &freeIt); - if (freeIt) - free(freeIt); - if (result == var_Error) { - return(FAILURE); - } else { - doSubst = TRUE; - } - - cp += length; - } else { - cp++; - } - } - - /* - * If the specification ends without a closing parenthesis, - * chances are there's something wrong (like a missing backslash), - * so it's better to return failure than allow such things to happen - */ - if (*cp == '\0') { - printf("No closing parenthesis in archive specification\n"); - return (FAILURE); - } - - /* - * If we didn't move anywhere, we must be done - */ - if (cp == memName) { - break; - } - - saveChar = *cp; - *cp = '\0'; - - /* - * XXX: This should be taken care of intelligently by - * SuffExpandChildren, both for the archive and the member portions. - */ - /* - * If member contains variables, try and substitute for them. - * This will slow down archive specs with dynamic sources, of course, - * since we'll be (non-)substituting them three times, but them's - * the breaks -- we need to do this since SuffExpandChildren calls - * us, otherwise we could assume the thing would be taken care of - * later. - */ - if (doSubst) { - char *buf; - char *sacrifice; - char *oldMemName = memName; - size_t sz; - - memName = Var_Subst(NULL, memName, ctxt, TRUE); - - /* - * Now form an archive spec and recurse to deal with nested - * variables and multi-word variable values.... The results - * are just placed at the end of the nodeLst we're returning. - */ - sz = strlen(memName)+strlen(libName)+3; - buf = sacrifice = bmake_malloc(sz); - - snprintf(buf, sz, "%s(%s)", libName, memName); - - if (strchr(memName, '$') && strcmp(memName, oldMemName) == 0) { - /* - * Must contain dynamic sources, so we can't deal with it now. - * Just create an ARCHV node for the thing and let - * SuffExpandChildren handle it... - */ - gn = Targ_FindNode(buf, TARG_CREATE); - - if (gn == NULL) { - free(buf); - return(FAILURE); - } else { - gn->type |= OP_ARCHV; - (void)Lst_AtEnd(nodeLst, gn); - } - } else if (Arch_ParseArchive(&sacrifice, nodeLst, ctxt)!=SUCCESS) { - /* - * Error in nested call -- free buffer and return FAILURE - * ourselves. - */ - free(buf); - return(FAILURE); - } - /* - * Free buffer and continue with our work. - */ - free(buf); - } else if (Dir_HasWildcards(memName)) { - Lst members = Lst_Init(FALSE); - char *member; - size_t sz = MAXPATHLEN, nsz; - nameBuf = bmake_malloc(sz); - - Dir_Expand(memName, dirSearchPath, members); - while (!Lst_IsEmpty(members)) { - member = (char *)Lst_DeQueue(members); - nsz = strlen(libName) + strlen(member) + 3; - if (sz > nsz) - nameBuf = bmake_realloc(nameBuf, sz = nsz * 2); - - snprintf(nameBuf, sz, "%s(%s)", libName, member); - free(member); - gn = Targ_FindNode(nameBuf, TARG_CREATE); - if (gn == NULL) { - free(nameBuf); - return (FAILURE); - } else { - /* - * We've found the node, but have to make sure the rest of - * the world knows it's an archive member, without having - * to constantly check for parentheses, so we type the - * thing with the OP_ARCHV bit before we place it on the - * end of the provided list. - */ - gn->type |= OP_ARCHV; - (void)Lst_AtEnd(nodeLst, gn); - } - } - Lst_Destroy(members, NULL); - free(nameBuf); - } else { - size_t sz = strlen(libName) + strlen(memName) + 3; - nameBuf = bmake_malloc(sz); - snprintf(nameBuf, sz, "%s(%s)", libName, memName); - gn = Targ_FindNode(nameBuf, TARG_CREATE); - free(nameBuf); - if (gn == NULL) { - return (FAILURE); - } else { - /* - * We've found the node, but have to make sure the rest of the - * world knows it's an archive member, without having to - * constantly check for parentheses, so we type the thing with - * the OP_ARCHV bit before we place it on the end of the - * provided list. - */ - gn->type |= OP_ARCHV; - (void)Lst_AtEnd(nodeLst, gn); - } - } - if (doSubst) { - free(memName); - } - - *cp = saveChar; - } - - /* - * If substituted libName, free it now, since we need it no longer. - */ - if (subLibName) { - free(libName); - } - - /* - * We promised the pointer would be set up at the next non-space, so - * we must advance cp there before setting *linePtr... (note that on - * entrance to the loop, cp is guaranteed to point at a ')') - */ - do { - cp++; - } while (*cp != '\0' && isspace ((unsigned char)*cp)); - - *linePtr = cp; - return (SUCCESS); -} - -/*- - *----------------------------------------------------------------------- - * ArchFindArchive -- - * See if the given archive is the one we are looking for. Called - * From ArchStatMember and ArchFindMember via Lst_Find. - * - * Input: - * ar Current list element - * archName Name we want - * - * Results: - * 0 if it is, non-zero if it isn't. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static int -ArchFindArchive(const void *ar, const void *archName) -{ - return (strcmp(archName, ((const Arch *)ar)->name)); -} - -/*- - *----------------------------------------------------------------------- - * ArchStatMember -- - * Locate a member of an archive, given the path of the archive and - * the path of the desired member. - * - * Input: - * archive Path to the archive - * member Name of member. If it is a path, only the last - * component is used. - * hash TRUE if archive should be hashed if not already so. - * - * Results: - * A pointer to the current struct ar_hdr structure for the member. Note - * That no position is returned, so this is not useful for touching - * archive members. This is mostly because we have no assurances that - * The archive will remain constant after we read all the headers, so - * there's not much point in remembering the position... - * - * Side Effects: - * - *----------------------------------------------------------------------- - */ -static struct ar_hdr * -ArchStatMember(char *archive, char *member, Boolean hash) -{ - FILE * arch; /* Stream to archive */ - int size; /* Size of archive member */ - char *cp; /* Useful character pointer */ - char magic[SARMAG]; - LstNode ln; /* Lst member containing archive descriptor */ - Arch *ar; /* Archive descriptor */ - Hash_Entry *he; /* Entry containing member's description */ - struct ar_hdr arh; /* archive-member header for reading archive */ - char memName[MAXPATHLEN+1]; - /* Current member name while hashing. */ - - /* - * Because of space constraints and similar things, files are archived - * using their final path components, not the entire thing, so we need - * to point 'member' to the final component, if there is one, to make - * the comparisons easier... - */ - cp = strrchr(member, '/'); - if (cp != NULL) { - member = cp + 1; - } - - ln = Lst_Find(archives, archive, ArchFindArchive); - if (ln != NULL) { - ar = (Arch *)Lst_Datum(ln); - - he = Hash_FindEntry(&ar->members, member); - - if (he != NULL) { - return ((struct ar_hdr *)Hash_GetValue(he)); - } else { - /* Try truncated name */ - char copy[AR_MAX_NAME_LEN+1]; - size_t len = strlen(member); - - if (len > AR_MAX_NAME_LEN) { - len = AR_MAX_NAME_LEN; - strncpy(copy, member, AR_MAX_NAME_LEN); - copy[AR_MAX_NAME_LEN] = '\0'; - } - if ((he = Hash_FindEntry(&ar->members, copy)) != NULL) - return ((struct ar_hdr *)Hash_GetValue(he)); - return NULL; - } - } - - if (!hash) { - /* - * Caller doesn't want the thing hashed, just use ArchFindMember - * to read the header for the member out and close down the stream - * again. Since the archive is not to be hashed, we assume there's - * no need to allocate extra room for the header we're returning, - * so just declare it static. - */ - static struct ar_hdr sarh; - - arch = ArchFindMember(archive, member, &sarh, "r"); - - if (arch == NULL) { - return NULL; - } else { - fclose(arch); - return (&sarh); - } - } - - /* - * We don't have this archive on the list yet, so we want to find out - * everything that's in it and cache it so we can get at it quickly. - */ - arch = fopen(archive, "r"); - if (arch == NULL) { - return NULL; - } - - /* - * We use the ARMAG string to make sure this is an archive we - * can handle... - */ - if ((fread(magic, SARMAG, 1, arch) != 1) || - (strncmp(magic, ARMAG, SARMAG) != 0)) { - fclose(arch); - return NULL; - } - - ar = bmake_malloc(sizeof(Arch)); - ar->name = bmake_strdup(archive); - ar->fnametab = NULL; - ar->fnamesize = 0; - Hash_InitTable(&ar->members, -1); - memName[AR_MAX_NAME_LEN] = '\0'; - - while (fread((char *)&arh, sizeof(struct ar_hdr), 1, arch) == 1) { - if (strncmp( arh.AR_FMAG, ARFMAG, sizeof(arh.AR_FMAG)) != 0) { - /* - * The header is bogus, so the archive is bad - * and there's no way we can recover... - */ - goto badarch; - } else { - /* - * We need to advance the stream's pointer to the start of the - * next header. Files are padded with newlines to an even-byte - * boundary, so we need to extract the size of the file from the - * 'size' field of the header and round it up during the seek. - */ - arh.AR_SIZE[sizeof(arh.AR_SIZE)-1] = '\0'; - size = (int)strtol(arh.AR_SIZE, NULL, 10); - - (void)strncpy(memName, arh.AR_NAME, sizeof(arh.AR_NAME)); - for (cp = &memName[AR_MAX_NAME_LEN]; *cp == ' '; cp--) { - continue; - } - cp[1] = '\0'; - -#ifdef SVR4ARCHIVES - /* - * svr4 names are slash terminated. Also svr4 extended AR format. - */ - if (memName[0] == '/') { - /* - * svr4 magic mode; handle it - */ - switch (ArchSVR4Entry(ar, memName, size, arch)) { - case -1: /* Invalid data */ - goto badarch; - case 0: /* List of files entry */ - continue; - default: /* Got the entry */ - break; - } - } - else { - if (cp[0] == '/') - cp[0] = '\0'; - } -#endif - -#ifdef AR_EFMT1 - /* - * BSD 4.4 extended AR format: #1/, with name as the - * first bytes of the file - */ - if (strncmp(memName, AR_EFMT1, sizeof(AR_EFMT1) - 1) == 0 && - isdigit((unsigned char)memName[sizeof(AR_EFMT1) - 1])) { - - unsigned int elen = atoi(&memName[sizeof(AR_EFMT1)-1]); - - if (elen > MAXPATHLEN) - goto badarch; - if (fread(memName, elen, 1, arch) != 1) - goto badarch; - memName[elen] = '\0'; - fseek(arch, -elen, SEEK_CUR); - if (DEBUG(ARCH) || DEBUG(MAKE)) { - fprintf(debug_file, "ArchStat: Extended format entry for %s\n", memName); - } - } -#endif - - he = Hash_CreateEntry(&ar->members, memName, NULL); - Hash_SetValue(he, bmake_malloc(sizeof(struct ar_hdr))); - memcpy(Hash_GetValue(he), &arh, sizeof(struct ar_hdr)); - } - fseek(arch, (size + 1) & ~1, SEEK_CUR); - } - - fclose(arch); - - (void)Lst_AtEnd(archives, ar); - - /* - * Now that the archive has been read and cached, we can look into - * the hash table to find the desired member's header. - */ - he = Hash_FindEntry(&ar->members, member); - - if (he != NULL) { - return ((struct ar_hdr *)Hash_GetValue(he)); - } else { - return NULL; - } - -badarch: - fclose(arch); - Hash_DeleteTable(&ar->members); - if (ar->fnametab) - free(ar->fnametab); - free(ar); - return NULL; -} - -#ifdef SVR4ARCHIVES -/*- - *----------------------------------------------------------------------- - * ArchSVR4Entry -- - * Parse an SVR4 style entry that begins with a slash. - * If it is "//", then load the table of filenames - * If it is "/", then try to substitute the long file name - * from offset of a table previously read. - * - * Results: - * -1: Bad data in archive - * 0: A table was loaded from the file - * 1: Name was successfully substituted from table - * 2: Name was not successfully substituted from table - * - * Side Effects: - * If a table is read, the file pointer is moved to the next archive - * member - * - *----------------------------------------------------------------------- - */ -static int -ArchSVR4Entry(Arch *ar, char *name, size_t size, FILE *arch) -{ -#define ARLONGNAMES1 "//" -#define ARLONGNAMES2 "/ARFILENAMES" - size_t entry; - char *ptr, *eptr; - - if (strncmp(name, ARLONGNAMES1, sizeof(ARLONGNAMES1) - 1) == 0 || - strncmp(name, ARLONGNAMES2, sizeof(ARLONGNAMES2) - 1) == 0) { - - if (ar->fnametab != NULL) { - if (DEBUG(ARCH)) { - fprintf(debug_file, "Attempted to redefine an SVR4 name table\n"); - } - return -1; - } - - /* - * This is a table of archive names, so we build one for - * ourselves - */ - ar->fnametab = bmake_malloc(size); - ar->fnamesize = size; - - if (fread(ar->fnametab, size, 1, arch) != 1) { - if (DEBUG(ARCH)) { - fprintf(debug_file, "Reading an SVR4 name table failed\n"); - } - return -1; - } - eptr = ar->fnametab + size; - for (entry = 0, ptr = ar->fnametab; ptr < eptr; ptr++) - switch (*ptr) { - case '/': - entry++; - *ptr = '\0'; - break; - - case '\n': - break; - - default: - break; - } - if (DEBUG(ARCH)) { - fprintf(debug_file, "Found svr4 archive name table with %lu entries\n", - (u_long)entry); - } - return 0; - } - - if (name[1] == ' ' || name[1] == '\0') - return 2; - - entry = (size_t)strtol(&name[1], &eptr, 0); - if ((*eptr != ' ' && *eptr != '\0') || eptr == &name[1]) { - if (DEBUG(ARCH)) { - fprintf(debug_file, "Could not parse SVR4 name %s\n", name); - } - return 2; - } - if (entry >= ar->fnamesize) { - if (DEBUG(ARCH)) { - fprintf(debug_file, "SVR4 entry offset %s is greater than %lu\n", - name, (u_long)ar->fnamesize); - } - return 2; - } - - if (DEBUG(ARCH)) { - fprintf(debug_file, "Replaced %s with %s\n", name, &ar->fnametab[entry]); - } - - (void)strncpy(name, &ar->fnametab[entry], MAXPATHLEN); - name[MAXPATHLEN] = '\0'; - return 1; -} -#endif - - -/*- - *----------------------------------------------------------------------- - * ArchFindMember -- - * Locate a member of an archive, given the path of the archive and - * the path of the desired member. If the archive is to be modified, - * the mode should be "r+", if not, it should be "r". - * - * Input: - * archive Path to the archive - * member Name of member. If it is a path, only the last - * component is used. - * arhPtr Pointer to header structure to be filled in - * mode The mode for opening the stream - * - * Results: - * An FILE *, opened for reading and writing, positioned at the - * start of the member's struct ar_hdr, or NULL if the member was - * nonexistent. The current struct ar_hdr for member. - * - * Side Effects: - * The passed struct ar_hdr structure is filled in. - * - *----------------------------------------------------------------------- - */ -static FILE * -ArchFindMember(char *archive, char *member, struct ar_hdr *arhPtr, - const char *mode) -{ - FILE * arch; /* Stream to archive */ - int size; /* Size of archive member */ - char *cp; /* Useful character pointer */ - char magic[SARMAG]; - size_t len, tlen; - - arch = fopen(archive, mode); - if (arch == NULL) { - return NULL; - } - - /* - * We use the ARMAG string to make sure this is an archive we - * can handle... - */ - if ((fread(magic, SARMAG, 1, arch) != 1) || - (strncmp(magic, ARMAG, SARMAG) != 0)) { - fclose(arch); - return NULL; - } - - /* - * Because of space constraints and similar things, files are archived - * using their final path components, not the entire thing, so we need - * to point 'member' to the final component, if there is one, to make - * the comparisons easier... - */ - cp = strrchr(member, '/'); - if (cp != NULL) { - member = cp + 1; - } - len = tlen = strlen(member); - if (len > sizeof(arhPtr->AR_NAME)) { - tlen = sizeof(arhPtr->AR_NAME); - } - - while (fread((char *)arhPtr, sizeof(struct ar_hdr), 1, arch) == 1) { - if (strncmp(arhPtr->AR_FMAG, ARFMAG, sizeof(arhPtr->AR_FMAG) ) != 0) { - /* - * The header is bogus, so the archive is bad - * and there's no way we can recover... - */ - fclose(arch); - return NULL; - } else if (strncmp(member, arhPtr->AR_NAME, tlen) == 0) { - /* - * If the member's name doesn't take up the entire 'name' field, - * we have to be careful of matching prefixes. Names are space- - * padded to the right, so if the character in 'name' at the end - * of the matched string is anything but a space, this isn't the - * member we sought. - */ - if (tlen != sizeof(arhPtr->AR_NAME) && arhPtr->AR_NAME[tlen] != ' '){ - goto skip; - } else { - /* - * To make life easier, we reposition the file at the start - * of the header we just read before we return the stream. - * In a more general situation, it might be better to leave - * the file at the actual member, rather than its header, but - * not here... - */ - fseek(arch, -sizeof(struct ar_hdr), SEEK_CUR); - return (arch); - } - } else -#ifdef AR_EFMT1 - /* - * BSD 4.4 extended AR format: #1/, with name as the - * first bytes of the file - */ - if (strncmp(arhPtr->AR_NAME, AR_EFMT1, - sizeof(AR_EFMT1) - 1) == 0 && - isdigit((unsigned char)arhPtr->AR_NAME[sizeof(AR_EFMT1) - 1])) { - - unsigned int elen = atoi(&arhPtr->AR_NAME[sizeof(AR_EFMT1)-1]); - char ename[MAXPATHLEN + 1]; - - if (elen > MAXPATHLEN) { - fclose(arch); - return NULL; - } - if (fread(ename, elen, 1, arch) != 1) { - fclose(arch); - return NULL; - } - ename[elen] = '\0'; - if (DEBUG(ARCH) || DEBUG(MAKE)) { - fprintf(debug_file, "ArchFind: Extended format entry for %s\n", ename); - } - if (strncmp(ename, member, len) == 0) { - /* Found as extended name */ - fseek(arch, -sizeof(struct ar_hdr) - elen, SEEK_CUR); - return (arch); - } - fseek(arch, -elen, SEEK_CUR); - goto skip; - } else -#endif - { -skip: - /* - * This isn't the member we're after, so we need to advance the - * stream's pointer to the start of the next header. Files are - * padded with newlines to an even-byte boundary, so we need to - * extract the size of the file from the 'size' field of the - * header and round it up during the seek. - */ - arhPtr->ar_size[sizeof(arhPtr->AR_SIZE)-1] = '\0'; - size = (int)strtol(arhPtr->AR_SIZE, NULL, 10); - fseek(arch, (size + 1) & ~1, SEEK_CUR); - } - } - - /* - * We've looked everywhere, but the member is not to be found. Close the - * archive and return NULL -- an error. - */ - fclose(arch); - return NULL; -} - -/*- - *----------------------------------------------------------------------- - * Arch_Touch -- - * Touch a member of an archive. - * - * Input: - * gn Node of member to touch - * - * Results: - * The 'time' field of the member's header is updated. - * - * Side Effects: - * The modification time of the entire archive is also changed. - * For a library, this could necessitate the re-ranlib'ing of the - * whole thing. - * - *----------------------------------------------------------------------- - */ -void -Arch_Touch(GNode *gn) -{ - FILE * arch; /* Stream open to archive, positioned properly */ - struct ar_hdr arh; /* Current header describing member */ - char *p1, *p2; - - arch = ArchFindMember(Var_Value(ARCHIVE, gn, &p1), - Var_Value(MEMBER, gn, &p2), - &arh, "r+"); - if (p1) - free(p1); - if (p2) - free(p2); - snprintf(arh.AR_DATE, sizeof(arh.AR_DATE), "%-12ld", (long) now); - - if (arch != NULL) { - (void)fwrite((char *)&arh, sizeof(struct ar_hdr), 1, arch); - fclose(arch); - } -} - -/*- - *----------------------------------------------------------------------- - * Arch_TouchLib -- - * Given a node which represents a library, touch the thing, making - * sure that the table of contents also is touched. - * - * Input: - * gn The node of the library to touch - * - * Results: - * None. - * - * Side Effects: - * Both the modification time of the library and of the RANLIBMAG - * member are set to 'now'. - * - *----------------------------------------------------------------------- - */ -void -#if !defined(RANLIBMAG) -Arch_TouchLib(GNode *gn MAKE_ATTR_UNUSED) -#else -Arch_TouchLib(GNode *gn) -#endif -{ -#ifdef RANLIBMAG - FILE * arch; /* Stream open to archive */ - struct ar_hdr arh; /* Header describing table of contents */ - struct utimbuf times; /* Times for utime() call */ - - arch = ArchFindMember(gn->path, UNCONST(RANLIBMAG), &arh, "r+"); - snprintf(arh.AR_DATE, sizeof(arh.AR_DATE), "%-12ld", (long) now); - - if (arch != NULL) { - (void)fwrite((char *)&arh, sizeof(struct ar_hdr), 1, arch); - fclose(arch); - - times.actime = times.modtime = now; - utime(gn->path, ×); - } -#endif -} - -/*- - *----------------------------------------------------------------------- - * Arch_MTime -- - * Return the modification time of a member of an archive. - * - * Input: - * gn Node describing archive member - * - * Results: - * The modification time(seconds). - * - * Side Effects: - * The mtime field of the given node is filled in with the value - * returned by the function. - * - *----------------------------------------------------------------------- - */ -time_t -Arch_MTime(GNode *gn) -{ - struct ar_hdr *arhPtr; /* Header of desired member */ - time_t modTime; /* Modification time as an integer */ - char *p1, *p2; - - arhPtr = ArchStatMember(Var_Value(ARCHIVE, gn, &p1), - Var_Value(MEMBER, gn, &p2), - TRUE); - if (p1) - free(p1); - if (p2) - free(p2); - - if (arhPtr != NULL) { - modTime = (time_t)strtol(arhPtr->AR_DATE, NULL, 10); - } else { - modTime = 0; - } - - gn->mtime = modTime; - return (modTime); -} - -/*- - *----------------------------------------------------------------------- - * Arch_MemMTime -- - * Given a non-existent archive member's node, get its modification - * time from its archived form, if it exists. - * - * Results: - * The modification time. - * - * Side Effects: - * The mtime field is filled in. - * - *----------------------------------------------------------------------- - */ -time_t -Arch_MemMTime(GNode *gn) -{ - LstNode ln; - GNode *pgn; - char *nameStart, - *nameEnd; - - if (Lst_Open(gn->parents) != SUCCESS) { - gn->mtime = 0; - return (0); - } - while ((ln = Lst_Next(gn->parents)) != NULL) { - pgn = (GNode *)Lst_Datum(ln); - - if (pgn->type & OP_ARCHV) { - /* - * If the parent is an archive specification and is being made - * and its member's name matches the name of the node we were - * given, record the modification time of the parent in the - * child. We keep searching its parents in case some other - * parent requires this child to exist... - */ - nameStart = strchr(pgn->name, '(') + 1; - nameEnd = strchr(nameStart, ')'); - - if ((pgn->flags & REMAKE) && - strncmp(nameStart, gn->name, nameEnd - nameStart) == 0) { - gn->mtime = Arch_MTime(pgn); - } - } else if (pgn->flags & REMAKE) { - /* - * Something which isn't a library depends on the existence of - * this target, so it needs to exist. - */ - gn->mtime = 0; - break; - } - } - - Lst_Close(gn->parents); - - return (gn->mtime); -} - -/*- - *----------------------------------------------------------------------- - * Arch_FindLib -- - * Search for a library along the given search path. - * - * Input: - * gn Node of library to find - * path Search path - * - * Results: - * None. - * - * Side Effects: - * The node's 'path' field is set to the found path (including the - * actual file name, not -l...). If the system can handle the -L - * flag when linking (or we cannot find the library), we assume that - * the user has placed the .LIBRARIES variable in the final linking - * command (or the linker will know where to find it) and set the - * TARGET variable for this node to be the node's name. Otherwise, - * we set the TARGET variable to be the full path of the library, - * as returned by Dir_FindFile. - * - *----------------------------------------------------------------------- - */ -void -Arch_FindLib(GNode *gn, Lst path) -{ - char *libName; /* file name for archive */ - size_t sz = strlen(gn->name) + 6 - 2; - - libName = bmake_malloc(sz); - snprintf(libName, sz, "lib%s.a", &gn->name[2]); - - gn->path = Dir_FindFile(libName, path); - - free(libName); - -#ifdef LIBRARIES - Var_Set(TARGET, gn->name, gn, 0); -#else - Var_Set(TARGET, gn->path == NULL ? gn->name : gn->path, gn, 0); -#endif /* LIBRARIES */ -} - -/*- - *----------------------------------------------------------------------- - * Arch_LibOODate -- - * Decide if a node with the OP_LIB attribute is out-of-date. Called - * from Make_OODate to make its life easier. - * - * There are several ways for a library to be out-of-date that are - * not available to ordinary files. In addition, there are ways - * that are open to regular files that are not available to - * libraries. A library that is only used as a source is never - * considered out-of-date by itself. This does not preclude the - * library's modification time from making its parent be out-of-date. - * A library will be considered out-of-date for any of these reasons, - * given that it is a target on a dependency line somewhere: - * Its modification time is less than that of one of its - * sources (gn->mtime < gn->cmgn->mtime). - * Its modification time is greater than the time at which the - * make began (i.e. it's been modified in the course - * of the make, probably by archiving). - * The modification time of one of its sources is greater than - * the one of its RANLIBMAG member (i.e. its table of contents - * is out-of-date). We don't compare of the archive time - * vs. TOC time because they can be too close. In my - * opinion we should not bother with the TOC at all since - * this is used by 'ar' rules that affect the data contents - * of the archive, not by ranlib rules, which affect the - * TOC. - * - * Input: - * gn The library's graph node - * - * Results: - * TRUE if the library is out-of-date. FALSE otherwise. - * - * Side Effects: - * The library will be hashed if it hasn't been already. - * - *----------------------------------------------------------------------- - */ -Boolean -Arch_LibOODate(GNode *gn) -{ - Boolean oodate; - - if (gn->type & OP_PHONY) { - oodate = TRUE; - } else if (OP_NOP(gn->type) && Lst_IsEmpty(gn->children)) { - oodate = FALSE; - } else if ((!Lst_IsEmpty(gn->children) && gn->cmgn == NULL) || - (gn->mtime > now) || - (gn->cmgn != NULL && gn->mtime < gn->cmgn->mtime)) { - oodate = TRUE; - } else { -#ifdef RANLIBMAG - struct ar_hdr *arhPtr; /* Header for __.SYMDEF */ - int modTimeTOC; /* The table-of-contents's mod time */ - - arhPtr = ArchStatMember(gn->path, UNCONST(RANLIBMAG), FALSE); - - if (arhPtr != NULL) { - modTimeTOC = (int)strtol(arhPtr->AR_DATE, NULL, 10); - - if (DEBUG(ARCH) || DEBUG(MAKE)) { - fprintf(debug_file, "%s modified %s...", RANLIBMAG, Targ_FmtTime(modTimeTOC)); - } - oodate = (gn->cmgn == NULL || gn->cmgn->mtime > modTimeTOC); - } else { - /* - * A library w/o a table of contents is out-of-date - */ - if (DEBUG(ARCH) || DEBUG(MAKE)) { - fprintf(debug_file, "No t.o.c...."); - } - oodate = TRUE; - } -#else - oodate = FALSE; -#endif - } - return (oodate); -} - -/*- - *----------------------------------------------------------------------- - * Arch_Init -- - * Initialize things for this module. - * - * Results: - * None. - * - * Side Effects: - * The 'archives' list is initialized. - * - *----------------------------------------------------------------------- - */ -void -Arch_Init(void) -{ - archives = Lst_Init(FALSE); -} - - - -/*- - *----------------------------------------------------------------------- - * Arch_End -- - * Cleanup things for this module. - * - * Results: - * None. - * - * Side Effects: - * The 'archives' list is freed - * - *----------------------------------------------------------------------- - */ -void -Arch_End(void) -{ -#ifdef CLEANUP - Lst_Destroy(archives, ArchFree); -#endif -} - -/*- - *----------------------------------------------------------------------- - * Arch_IsLib -- - * Check if the node is a library - * - * Results: - * True or False. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -int -Arch_IsLib(GNode *gn) -{ - static const char armag[] = "!\n"; - char buf[sizeof(armag)-1]; - int fd; - - if ((fd = open(gn->path, O_RDONLY)) == -1) - return FALSE; - - if (read(fd, buf, sizeof(buf)) != sizeof(buf)) { - (void)close(fd); - return FALSE; - } - - (void)close(fd); - - return memcmp(buf, armag, sizeof(buf)) == 0; -} diff --git a/external/bsd/bmake/dist/bmake.1 b/external/bsd/bmake/dist/bmake.1 deleted file mode 100644 index 0bb377ae4967..000000000000 --- a/external/bsd/bmake/dist/bmake.1 +++ /dev/null @@ -1,2043 +0,0 @@ -.\" $NetBSD: make.1,v 1.204 2012/04/24 20:12:16 sjg Exp $ -.\" -.\" Copyright (c) 1990, 1993 -.\" The Regents of the University of California. All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" 3. Neither the name of the University nor the names of its contributors -.\" may be used to endorse or promote products derived from this software -.\" without specific prior written permission. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -.\" SUCH DAMAGE. -.\" -.\" from: @(#)make.1 8.4 (Berkeley) 3/19/94 -.\" -.Dd April 24, 2012 -.Dt MAKE 1 -.Os -.Sh NAME -.Nm bmake -.Nd maintain program dependencies -.Sh SYNOPSIS -.Nm -.Op Fl BeikNnqrstWX -.Op Fl C Ar directory -.Op Fl D Ar variable -.Op Fl d Ar flags -.Op Fl f Ar makefile -.Op Fl I Ar directory -.Op Fl J Ar private -.Op Fl j Ar max_jobs -.Op Fl m Ar directory -.Op Fl T Ar file -.Op Fl V Ar variable -.Op Ar variable=value -.Op Ar target ... -.Sh DESCRIPTION -.Nm -is a program designed to simplify the maintenance of other programs. -Its input is a list of specifications as to the files upon which programs -and other files depend. -If no -.Fl f Ar makefile -makefile option is given, -.Nm -will try to open -.Ql Pa makefile -then -.Ql Pa Makefile -in order to find the specifications. -If the file -.Ql Pa .depend -exists, it is read (see -.Xr mkdep 1 ) . -.Pp -This manual page is intended as a reference document only. -For a more thorough description of -.Nm -and makefiles, please refer to -.%T "PMake \- A Tutorial" . -.Pp -.Nm -will prepend the contents of the -.Va MAKEFLAGS -environment variable to the command line arguments before parsing them. -.Pp -The options are as follows: -.Bl -tag -width Ds -.It Fl B -Try to be backwards compatible by executing a single shell per command and -by executing the commands to make the sources of a dependency line in sequence. -.It Fl C Ar directory -Change to -.Ar directory -before reading the makefiles or doing anything else. -If multiple -.Fl C -options are specified, each is interpreted relative to the previous one: -.Fl C Pa / Fl C Pa etc -is equivalent to -.Fl C Pa /etc . -.It Fl D Ar variable -Define -.Ar variable -to be 1, in the global context. -.It Fl d Ar [-]flags -Turn on debugging, and specify which portions of -.Nm -are to print debugging information. -Unless the flags are preceded by -.Ql \- -they are added to the -.Va MAKEFLAGS -environment variable and will be processed by any child make processes. -By default, debugging information is printed to standard error, -but this can be changed using the -.Ar F -debugging flag. -The debugging output is always unbuffered; in addition, if debugging -is enabled but debugging output is not directed to standard output, -then the standard output is line buffered. -.Ar Flags -is one or more of the following: -.Bl -tag -width Ds -.It Ar A -Print all possible debugging information; -equivalent to specifying all of the debugging flags. -.It Ar a -Print debugging information about archive searching and caching. -.It Ar C -Print debugging information about current working directory. -.It Ar c -Print debugging information about conditional evaluation. -.It Ar d -Print debugging information about directory searching and caching. -.It Ar e -Print debugging information about failed commands and targets. -.It Ar F Ns Oo Sy \&+ Oc Ns Ar filename -Specify where debugging output is written. -This must be the last flag, because it consumes the remainder of -the argument. -If the character immediately after the -.Ql F -flag is -.Ql \&+ , -then the file will be opened in append mode; -otherwise the file will be overwritten. -If the file name is -.Ql stdout -or -.Ql stderr -then debugging output will be written to the -standard output or standard error output file descriptors respectively -(and the -.Ql \&+ -option has no effect). -Otherwise, the output will be written to the named file. -If the file name ends -.Ql .%d -then the -.Ql %d -is replaced by the pid. -.It Ar f -Print debugging information about loop evaluation. -.It Ar "g1" -Print the input graph before making anything. -.It Ar "g2" -Print the input graph after making everything, or before exiting -on error. -.It Ar "g3" -Print the input graph before exiting on error. -.It Ar j -Print debugging information about running multiple shells. -.It Ar l -Print commands in Makefiles regardless of whether or not they are prefixed by -.Ql @ -or other "quiet" flags. -Also known as "loud" behavior. -.It Ar M -Print debugging information about "meta" mode decisions about targets. -.It Ar m -Print debugging information about making targets, including modification -dates. -.It Ar n -Don't delete the temporary command scripts created when running commands. -These temporary scripts are created in the directory -referred to by the -.Ev TMPDIR -environment variable, or in -.Pa /tmp -if -.Ev TMPDIR -is unset or set to the empty string. -The temporary scripts are created by -.Xr mkstemp 3 , -and have names of the form -.Pa makeXXXXXX . -.Em NOTE : -This can create many files in -.Ev TMPDIR -or -.Pa /tmp , -so use with care. -.It Ar p -Print debugging information about makefile parsing. -.It Ar s -Print debugging information about suffix-transformation rules. -.It Ar t -Print debugging information about target list maintenance. -.It Ar v -Print debugging information about variable assignment. -.It Ar x -Run shell commands with -.Fl x -so the actual commands are printed as they are executed. -.El -.It Fl e -Specify that environment variables override macro assignments within -makefiles. -.It Fl f Ar makefile -Specify a makefile to read instead of the default -.Ql Pa makefile . -If -.Ar makefile -is -.Ql Fl , -standard input is read. -Multiple makefiles may be specified, and are read in the order specified. -.It Fl I Ar directory -Specify a directory in which to search for makefiles and included makefiles. -The system makefile directory (or directories, see the -.Fl m -option) is automatically included as part of this list. -.It Fl i -Ignore non-zero exit of shell commands in the makefile. -Equivalent to specifying -.Ql Fl -before each command line in the makefile. -.It Fl J Ar private -This option should -.Em not -be specified by the user. -.Pp -When the -.Ar j -option is in use in a recursive build, this option is passed by a make -to child makes to allow all the make processes in the build to -cooperate to avoid overloading the system. -.It Fl j Ar max_jobs -Specify the maximum number of jobs that -.Nm -may have running at any one time. -The value is saved in -.Va .MAKE.JOBS . -Turns compatibility mode off, unless the -.Ar B -flag is also specified. -When compatibility mode is off, all commands associated with a -target are executed in a single shell invocation as opposed to the -traditional one shell invocation per line. -This can break traditional scripts which change directories on each -command invocation and then expect to start with a fresh environment -on the next line. -It is more efficient to correct the scripts rather than turn backwards -compatibility on. -.It Fl k -Continue processing after errors are encountered, but only on those targets -that do not depend on the target whose creation caused the error. -.It Fl m Ar directory -Specify a directory in which to search for sys.mk and makefiles included -via the -.Ao Ar file Ac Ns -style -include statement. -The -.Fl m -option can be used multiple times to form a search path. -This path will override the default system include path: /usr/share/mk. -Furthermore the system include path will be appended to the search path used -for -.Qo Ar file Qc Ns -style -include statements (see the -.Fl I -option). -.Pp -If a file or directory name in the -.Fl m -argument (or the -.Ev MAKESYSPATH -environment variable) starts with the string -.Qq \&.../ -then -.Nm -will search for the specified file or directory named in the remaining part -of the argument string. -The search starts with the current directory of -the Makefile and then works upward towards the root of the filesystem. -If the search is successful, then the resulting directory replaces the -.Qq \&.../ -specification in the -.Fl m -argument. -If used, this feature allows -.Nm -to easily search in the current source tree for customized sys.mk files -(e.g., by using -.Qq \&.../mk/sys.mk -as an argument). -.It Fl n -Display the commands that would have been executed, but do not -actually execute them unless the target depends on the .MAKE special -source (see below). -.It Fl N -Display the commands which would have been executed, but do not -actually execute any of them; useful for debugging top-level makefiles -without descending into subdirectories. -.It Fl q -Do not execute any commands, but exit 0 if the specified targets are -up-to-date and 1, otherwise. -.It Fl r -Do not use the built-in rules specified in the system makefile. -.It Fl s -Do not echo any commands as they are executed. -Equivalent to specifying -.Ql Ic @ -before each command line in the makefile. -.It Fl T Ar tracefile -When used with the -.Fl j -flag, -append a trace record to -.Ar tracefile -for each job started and completed. -.It Fl t -Rather than re-building a target as specified in the makefile, create it -or update its modification time to make it appear up-to-date. -.It Fl V Ar variable -Print -.Nm Ns 's -idea of the value of -.Ar variable , -in the global context. -Do not build any targets. -Multiple instances of this option may be specified; -the variables will be printed one per line, -with a blank line for each null or undefined variable. -If -.Ar variable -contains a -.Ql \&$ -then the value will be expanded before printing. -.It Fl W -Treat any warnings during makefile parsing as errors. -.It Fl X -Don't export variables passed on the command line to the environment -individually. -Variables passed on the command line are still exported -via the -.Va MAKEFLAGS -environment variable. -This option may be useful on systems which have a small limit on the -size of command arguments. -.It Ar variable=value -Set the value of the variable -.Ar variable -to -.Ar value . -Normally, all values passed on the command line are also exported to -sub-makes in the environment. -The -.Fl X -flag disables this behavior. -Variable assignments should follow options for POSIX compatibility -but no ordering is enforced. -.El -.Pp -There are seven different types of lines in a makefile: file dependency -specifications, shell commands, variable assignments, include statements, -conditional directives, for loops, and comments. -.Pp -In general, lines may be continued from one line to the next by ending -them with a backslash -.Pq Ql \e . -The trailing newline character and initial whitespace on the following -line are compressed into a single space. -.Sh FILE DEPENDENCY SPECIFICATIONS -Dependency lines consist of one or more targets, an operator, and zero -or more sources. -This creates a relationship where the targets -.Dq depend -on the sources -and are usually created from them. -The exact relationship between the target and the source is determined -by the operator that separates them. -The three operators are as follows: -.Bl -tag -width flag -.It Ic \&: -A target is considered out-of-date if its modification time is less than -those of any of its sources. -Sources for a target accumulate over dependency lines when this operator -is used. -The target is removed if -.Nm -is interrupted. -.It Ic \&! -Targets are always re-created, but not until all sources have been -examined and re-created as necessary. -Sources for a target accumulate over dependency lines when this operator -is used. -The target is removed if -.Nm -is interrupted. -.It Ic \&:: -If no sources are specified, the target is always re-created. -Otherwise, a target is considered out-of-date if any of its sources has -been modified more recently than the target. -Sources for a target do not accumulate over dependency lines when this -operator is used. -The target will not be removed if -.Nm -is interrupted. -.El -.Pp -Targets and sources may contain the shell wildcard values -.Ql \&? , -.Ql * , -.Ql [] , -and -.Ql {} . -The values -.Ql \&? , -.Ql * , -and -.Ql [] -may only be used as part of the final -component of the target or source, and must be used to describe existing -files. -The value -.Ql {} -need not necessarily be used to describe existing files. -Expansion is in directory order, not alphabetically as done in the shell. -.Sh SHELL COMMANDS -Each target may have associated with it a series of shell commands, normally -used to create the target. -Each of the commands in this script -.Em must -be preceded by a tab. -While any target may appear on a dependency line, only one of these -dependencies may be followed by a creation script, unless the -.Ql Ic \&:: -operator is used. -.Pp -If the first characters of the command line are any combination of -.Ql Ic @ , -.Ql Ic + , -or -.Ql Ic \- , -the command is treated specially. -A -.Ql Ic @ -causes the command not to be echoed before it is executed. -A -.Ql Ic + -causes the command to be executed even when -.Fl n -is given. -This is similar to the effect of the .MAKE special source, -except that the effect can be limited to a single line of a script. -A -.Ql Ic \- -causes any non-zero exit status of the command line to be ignored. -.Sh VARIABLE ASSIGNMENTS -Variables in make are much like variables in the shell, and, by tradition, -consist of all upper-case letters. -.Ss Variable assignment modifiers -The five operators that can be used to assign values to variables are as -follows: -.Bl -tag -width Ds -.It Ic \&= -Assign the value to the variable. -Any previous value is overridden. -.It Ic \&+= -Append the value to the current value of the variable. -.It Ic \&?= -Assign the value to the variable if it is not already defined. -.It Ic \&:= -Assign with expansion, i.e. expand the value before assigning it -to the variable. -Normally, expansion is not done until the variable is referenced. -.Em NOTE : -References to undefined variables are -.Em not -expanded. -This can cause problems when variable modifiers are used. -.It Ic \&!= -Expand the value and pass it to the shell for execution and assign -the result to the variable. -Any newlines in the result are replaced with spaces. -.El -.Pp -Any white-space before the assigned -.Ar value -is removed; if the value is being appended, a single space is inserted -between the previous contents of the variable and the appended value. -.Pp -Variables are expanded by surrounding the variable name with either -curly braces -.Pq Ql {} -or parentheses -.Pq Ql () -and preceding it with -a dollar sign -.Pq Ql \&$ . -If the variable name contains only a single letter, the surrounding -braces or parentheses are not required. -This shorter form is not recommended. -.Pp -If the variable name contains a dollar, then the name itself is expanded first. -This allows almost arbitrary variable names, however names containing dollar, -braces, parenthesis, or whitespace are really best avoided! -.Pp -If the result of expanding a variable contains a dollar sign -.Pq Ql \&$ -the string is expanded again. -.Pp -Variable substitution occurs at three distinct times, depending on where -the variable is being used. -.Bl -enum -.It -Variables in dependency lines are expanded as the line is read. -.It -Variables in shell commands are expanded when the shell command is -executed. -.It -.Dq .for -loop index variables are expanded on each loop iteration. -Note that other variables are not expanded inside loops so -the following example code: -.Bd -literal -offset indent - -.Dv .for i in 1 2 3 -a+= ${i} -j= ${i} -b+= ${j} -.Dv .endfor - -all: - @echo ${a} - @echo ${b} - -.Ed -will print: -.Bd -literal -offset indent -1 2 3 -3 3 3 - -.Ed -Because while ${a} contains -.Dq 1 2 3 -after the loop is executed, ${b} -contains -.Dq ${j} ${j} ${j} -which expands to -.Dq 3 3 3 -since after the loop completes ${j} contains -.Dq 3 . -.El -.Ss Variable classes -The four different classes of variables (in order of increasing precedence) -are: -.Bl -tag -width Ds -.It Environment variables -Variables defined as part of -.Nm Ns 's -environment. -.It Global variables -Variables defined in the makefile or in included makefiles. -.It Command line variables -Variables defined as part of the command line. -.It Local variables -Variables that are defined specific to a certain target. -The seven local variables are as follows: -.Bl -tag -width ".ARCHIVE" -.It Va .ALLSRC -The list of all sources for this target; also known as -.Ql Va \&\*[Gt] . -.It Va .ARCHIVE -The name of the archive file. -.It Va .IMPSRC -In suffix-transformation rules, the name/path of the source from which the -target is to be transformed (the -.Dq implied -source); also known as -.Ql Va \&\*[Lt] . -It is not defined in explicit rules. -.It Va .MEMBER -The name of the archive member. -.It Va .OODATE -The list of sources for this target that were deemed out-of-date; also -known as -.Ql Va \&? . -.It Va .PREFIX -The file prefix of the target, containing only the file portion, no suffix -or preceding directory components; also known as -.Ql Va * . -.It Va .TARGET -The name of the target; also known as -.Ql Va @ . -.El -.Pp -The shorter forms -.Ql Va @ , -.Ql Va \&? , -.Ql Va \&\*[Lt] , -.Ql Va \&\*[Gt] , -and -.Ql Va * -are permitted for backward -compatibility with historical makefiles and are not recommended. -The six variables -.Ql Va "@F" , -.Ql Va "@D" , -.Ql Va "\*[Lt]F" , -.Ql Va "\*[Lt]D" , -.Ql Va "*F" , -and -.Ql Va "*D" -are permitted for compatibility with -.At V -makefiles and are not recommended. -.Pp -Four of the local variables may be used in sources on dependency lines -because they expand to the proper value for each target on the line. -These variables are -.Ql Va .TARGET , -.Ql Va .PREFIX , -.Ql Va .ARCHIVE , -and -.Ql Va .MEMBER . -.El -.Ss Additional built-in variables -In addition, -.Nm -sets or knows about the following variables: -.Bl -tag -width .MAKEOVERRIDES -.It Va \&$ -A single dollar sign -.Ql \&$ , -i.e. -.Ql \&$$ -expands to a single dollar -sign. -.It Va .ALLTARGETS -The list of all targets encountered in the Makefile. -If evaluated during -Makefile parsing, lists only those targets encountered thus far. -.It Va .CURDIR -A path to the directory where -.Nm -was executed. -Refer to the description of -.Ql Ev PWD -for more details. -.It Ev MAKE -The name that -.Nm -was executed with -.Pq Va argv[0] . -For compatibility -.Nm -also sets -.Va .MAKE -with the same value. -The preferred variable to use is the environment variable -.Ev MAKE -because it is more compatible with other versions of -.Nm -and cannot be confused with the special target with the same name. -.It Va .MAKE.DEPENDFILE -Names the makefile (default -.Ql Pa .depend ) -from which generated dependencies are read. -.It Va .MAKE.EXPORTED -The list of variables exported by -.Nm . -.It Va .MAKE.JOBS -The argument to the -.Fl j -option. -.It Va .MAKE.JOB.PREFIX -If -.Nm -is run with -.Ar j -then output for each target is prefixed with a token -.Ql --- target --- -the first part of which can be controlled via -.Va .MAKE.JOB.PREFIX . -.br -For example: -.Li .MAKE.JOB.PREFIX=${.newline}---${.MAKE:T}[${.MAKE.PID}] -would produce tokens like -.Ql ---make[1234] target --- -making it easier to track the degree of parallelism being achieved. -.It Ev MAKEFLAGS -The environment variable -.Ql Ev MAKEFLAGS -may contain anything that -may be specified on -.Nm Ns 's -command line. -Anything specified on -.Nm Ns 's -command line is appended to the -.Ql Ev MAKEFLAGS -variable which is then -entered into the environment for all programs which -.Nm -executes. -.It Va .MAKE.LEVEL -The recursion depth of -.Nm . -The initial instance of -.Nm -will be 0, and an incremented value is put into the environment -to be seen by the next generation. -This allows tests like: -.Li .if ${.MAKE.LEVEL} == 0 -to protect things which should only be evaluated in the initial instance of -.Nm . -.It Va .MAKE.MAKEFILE_PREFERENCE -The ordered list of makefile names -(default -.Ql Pa makefile , -.Ql Pa Makefile ) -that -.Nm -will look for. -.It Va .MAKE.MAKEFILES -The list of makefiles read by -.Nm , -which is useful for tracking dependencies. -Each makefile is recorded only once, regardless of the number of times read. -.It Va .MAKE.MODE -Processed after reading all makefiles. -Can affect the mode that -.Nm -runs in. -It can contain a number of keywords: -.Bl -hang -width ignore-cmd -.It Pa compat -Like -.Fl B , -puts -.Nm -into "compat" mode. -.It Pa meta -Puts -.Nm -into "meta" mode, where meta files are created for each target -to capture the command run, the output generated and if -.Xr filemon 4 -is available, the system calls which are of interest to -.Nm . -The captured output can be very useful when diagnosing errors. -.It Pa curdirOk= Ar bf -Normally -.Nm -will not create .meta files in -.Ql Va .CURDIR . -This can be overridden by setting -.Va bf -to a value which represents True. -.It Pa env -For debugging, it can be useful to inlcude the environment -in the .meta file. -.It Pa verbose -If in "meta" mode, print a clue about the target being built. -This is useful if the build is otherwise running silently. -The message printed the value of: -.Va .MAKE.META.PREFIX . -.It Pa ignore-cmd -Some makefiles have commands which are simply not stable. -This keyword causes them to be ignored for -determining whether a target is out of date in "meta" mode. -See also -.Ic .NOMETA_CMP . -.It Pa silent= Ar bf -If -.Va bf -is True, when a .meta file is created, mark the target -.Ic .SILENT . -.El -.It Va .MAKE.META.BAILIWICK -In "meta" mode, provides a list of prefixes which -match the directories controlled by -.Nm . -If a file that was generated outside of -.Va .OBJDIR -but within said bailiwick is missing, -the current target is considered out-of-date. -.It Va .MAKE.META.CREATED -In "meta" mode, this variable contains a list of all the meta files -updated. -If not empty, it can be used to trigger processing of -.Va .MAKE.META.FILES . -.It Va .MAKE.META.FILES -In "meta" mode, this variable contains a list of all the meta files -used (updated or not). -This list can be used to process the meta files to extract dependency -information. -.It Va .MAKE.META.PREFIX -Defines the message printed for each meta file updated in "meta verbose" mode. -The default value is: -.Dl Building ${.TARGET:H:tA}/${.TARGET:T} -.It Va .MAKEOVERRIDES -This variable is used to record the names of variables assigned to -on the command line, so that they may be exported as part of -.Ql Ev MAKEFLAGS . -This behaviour can be disabled by assigning an empty value to -.Ql Va .MAKEOVERRIDES -within a makefile. -Extra variables can be exported from a makefile -by appending their names to -.Ql Va .MAKEOVERRIDES . -.Ql Ev MAKEFLAGS -is re-exported whenever -.Ql Va .MAKEOVERRIDES -is modified. -.It Va .MAKE.PID -The process-id of -.Nm . -.It Va .MAKE.PPID -The parent process-id of -.Nm . -.It Va MAKE_PRINT_VAR_ON_ERROR -When -.Nm -stops due to an error, it prints its name and the value of -.Ql Va .CURDIR -as well as the value of any variables named in -.Ql Va MAKE_PRINT_VAR_ON_ERROR . -.It Va .newline -This variable is simply assigned a newline character as its value. -This allows expansions using the -.Cm \&:@ -modifier to put a newline between -iterations of the loop rather than a space. -For example, the printing of -.Ql Va MAKE_PRINT_VAR_ON_ERROR -could be done as ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@}. -.It Va .OBJDIR -A path to the directory where the targets are built. -Its value is determined by trying to -.Xr chdir 2 -to the following directories in order and using the first match: -.Bl -enum -.It -.Ev ${MAKEOBJDIRPREFIX}${.CURDIR} -.Pp -(Only if -.Ql Ev MAKEOBJDIRPREFIX -is set in the environment or on the command line.) -.It -.Ev ${MAKEOBJDIR} -.Pp -(Only if -.Ql Ev MAKEOBJDIR -is set in the environment or on the command line.) -.It -.Ev ${.CURDIR} Ns Pa /obj. Ns Ev ${MACHINE} -.It -.Ev ${.CURDIR} Ns Pa /obj -.It -.Pa /usr/obj/ Ns Ev ${.CURDIR} -.It -.Ev ${.CURDIR} -.El -.Pp -Variable expansion is performed on the value before it's used, -so expressions such as -.Dl ${.CURDIR:S,^/usr/src,/var/obj,} -may be used. -This is especially useful with -.Ql Ev MAKEOBJDIR . -.Pp -.Ql Va .OBJDIR -may be modified in the makefile as a global variable. -In all cases, -.Nm -will -.Xr chdir 2 -to -.Ql Va .OBJDIR -and set -.Ql Ev PWD -to that directory before executing any targets. -. -.It Va .PARSEDIR -A path to the directory of the current -.Ql Pa Makefile -being parsed. -.It Va .PARSEFILE -The basename of the current -.Ql Pa Makefile -being parsed. -This variable and -.Ql Va .PARSEDIR -are both set only while the -.Ql Pa Makefiles -are being parsed. -If you want to retain their current values, assign them to a variable -using assignment with expansion: -.Pq Ql Cm \&:= . -.It Va .PATH -A variable that represents the list of directories that -.Nm -will search for files. -The search list should be updated using the target -.Ql Va .PATH -rather than the variable. -.It Ev PWD -Alternate path to the current directory. -.Nm -normally sets -.Ql Va .CURDIR -to the canonical path given by -.Xr getcwd 3 . -However, if the environment variable -.Ql Ev PWD -is set and gives a path to the current directory, then -.Nm -sets -.Ql Va .CURDIR -to the value of -.Ql Ev PWD -instead. -This behaviour is disabled if -.Ql Ev MAKEOBJDIRPREFIX -is set or -.Ql Ev MAKEOBJDIR -contains a variable transform. -.Ql Ev PWD -is set to the value of -.Ql Va .OBJDIR -for all programs which -.Nm -executes. -.It Ev .TARGETS -The list of targets explicitly specified on the command line, if any. -.It Ev VPATH -Colon-separated -.Pq Dq \&: -lists of directories that -.Nm -will search for files. -The variable is supported for compatibility with old make programs only, -use -.Ql Va .PATH -instead. -.El -.Ss Variable modifiers -Variable expansion may be modified to select or modify each word of the -variable (where a -.Dq word -is white-space delimited sequence of characters). -The general format of a variable expansion is as follows: -.Pp -.Dl ${variable[:modifier[:...]]} -.Pp -Each modifier begins with a colon, -which may be escaped with a backslash -.Pq Ql \e . -.Pp -A set of modifiers can be specified via a variable, as follows: -.Pp -.Dl modifier_variable=modifier[:...] -.Dl ${variable:${modifier_variable}[:...]} -.Pp -In this case the first modifier in the modifier_variable does not -start with a colon, since that must appear in the referencing -variable. -If any of the modifiers in the modifier_variable contain a dollar sign -.Pq Ql $ , -these must be doubled to avoid early expansion. -.Pp -The supported modifiers are: -.Bl -tag -width EEE -.It Cm \&:E -Replaces each word in the variable with its suffix. -.It Cm \&:H -Replaces each word in the variable with everything but the last component. -.It Cm \&:M Ns Ar pattern -Select only those words that match -.Ar pattern . -The standard shell wildcard characters -.Pf ( Ql * , -.Ql \&? , -and -.Ql Oo Oc ) -may -be used. -The wildcard characters may be escaped with a backslash -.Pq Ql \e . -.It Cm \&:N Ns Ar pattern -This is identical to -.Ql Cm \&:M , -but selects all words which do not match -.Ar pattern . -.It Cm \&:O -Order every word in variable alphabetically. -To sort words in -reverse order use the -.Ql Cm \&:O:[-1..1] -combination of modifiers. -.It Cm \&:Ox -Randomize words in variable. -The results will be different each time you are referring to the -modified variable; use the assignment with expansion -.Pq Ql Cm \&:= -to prevent such behaviour. -For example, -.Bd -literal -offset indent -LIST= uno due tre quattro -RANDOM_LIST= ${LIST:Ox} -STATIC_RANDOM_LIST:= ${LIST:Ox} - -all: - @echo "${RANDOM_LIST}" - @echo "${RANDOM_LIST}" - @echo "${STATIC_RANDOM_LIST}" - @echo "${STATIC_RANDOM_LIST}" -.Ed -may produce output similar to: -.Bd -literal -offset indent -quattro due tre uno -tre due quattro uno -due uno quattro tre -due uno quattro tre -.Ed -.It Cm \&:Q -Quotes every shell meta-character in the variable, so that it can be passed -safely through recursive invocations of -.Nm . -.It Cm \&:R -Replaces each word in the variable with everything but its suffix. -.It Cm \&:gmtime -The value is a format string for -.Xr strftime 3 , -using the current -.Xr gmtime 3 . -.It Cm \&:hash -Compute a 32bit hash of the value and encode it as hex digits. -.It Cm \&:localtime -The value is a format string for -.Xr strftime 3 , -using the current -.Xr localtime 3 . -.It Cm \&:tA -Attempt to convert variable to an absolute path using -.Xr realpath 3 , -if that fails, the value is unchanged. -.It Cm \&:tl -Converts variable to lower-case letters. -.It Cm \&:ts Ns Ar c -Words in the variable are normally separated by a space on expansion. -This modifier sets the separator to the character -.Ar c . -If -.Ar c -is omitted, then no separator is used. -The common escapes (including octal numeric codes), work as expected. -.It Cm \&:tu -Converts variable to upper-case letters. -.It Cm \&:tW -Causes the value to be treated as a single word -(possibly containing embedded white space). -See also -.Ql Cm \&:[*] . -.It Cm \&:tw -Causes the value to be treated as a sequence of -words delimited by white space. -See also -.Ql Cm \&:[@] . -.Sm off -.It Cm \&:S No \&/ Ar old_string No \&/ Ar new_string No \&/ Op Cm 1gW -.Sm on -Modify the first occurrence of -.Ar old_string -in the variable's value, replacing it with -.Ar new_string . -If a -.Ql g -is appended to the last slash of the pattern, all occurrences -in each word are replaced. -If a -.Ql 1 -is appended to the last slash of the pattern, only the first word -is affected. -If a -.Ql W -is appended to the last slash of the pattern, -then the value is treated as a single word -(possibly containing embedded white space). -If -.Ar old_string -begins with a caret -.Pq Ql ^ , -.Ar old_string -is anchored at the beginning of each word. -If -.Ar old_string -ends with a dollar sign -.Pq Ql \&$ , -it is anchored at the end of each word. -Inside -.Ar new_string , -an ampersand -.Pq Ql \*[Am] -is replaced by -.Ar old_string -(without any -.Ql ^ -or -.Ql \&$ ) . -Any character may be used as a delimiter for the parts of the modifier -string. -The anchoring, ampersand and delimiter characters may be escaped with a -backslash -.Pq Ql \e . -.Pp -Variable expansion occurs in the normal fashion inside both -.Ar old_string -and -.Ar new_string -with the single exception that a backslash is used to prevent the expansion -of a dollar sign -.Pq Ql \&$ , -not a preceding dollar sign as is usual. -.Sm off -.It Cm \&:C No \&/ Ar pattern No \&/ Ar replacement No \&/ Op Cm 1gW -.Sm on -The -.Cm \&:C -modifier is just like the -.Cm \&:S -modifier except that the old and new strings, instead of being -simple strings, are a regular expression (see -.Xr regex 3 ) -string -.Ar pattern -and an -.Xr ed 1 Ns \-style -string -.Ar replacement . -Normally, the first occurrence of the pattern -.Ar pattern -in each word of the value is substituted with -.Ar replacement . -The -.Ql 1 -modifier causes the substitution to apply to at most one word; the -.Ql g -modifier causes the substitution to apply to as many instances of the -search pattern -.Ar pattern -as occur in the word or words it is found in; the -.Ql W -modifier causes the value to be treated as a single word -(possibly containing embedded white space). -Note that -.Ql 1 -and -.Ql g -are orthogonal; the former specifies whether multiple words are -potentially affected, the latter whether multiple substitutions can -potentially occur within each affected word. -.It Cm \&:T -Replaces each word in the variable with its last component. -.It Cm \&:u -Remove adjacent duplicate words (like -.Xr uniq 1 ) . -.Sm off -.It Cm \&:\&? Ar true_string Cm \&: Ar false_string -.Sm on -If the variable name (not its value), when parsed as a .if conditional -expression, evaluates to true, return as its value the -.Ar true_string , -otherwise return the -.Ar false_string . -Since the variable name is used as the expression, \&:\&? must be the -first modifier after the variable name itself - which will, of course, -usually contain variable expansions. -A common error is trying to use expressions like -.Dl ${NUMBERS:M42:?match:no} -which actually tests defined(NUMBERS), -to determine is any words match "42" you need to use something like: -.Dl ${"${NUMBERS:M42}" != \&"\&":?match:no} . -.It Ar :old_string=new_string -This is the -.At V -style variable substitution. -It must be the last modifier specified. -If -.Ar old_string -or -.Ar new_string -do not contain the pattern matching character -.Ar % -then it is assumed that they are -anchored at the end of each word, so only suffixes or entire -words may be replaced. -Otherwise -.Ar % -is the substring of -.Ar old_string -to be replaced in -.Ar new_string . -.Pp -Variable expansion occurs in the normal fashion inside both -.Ar old_string -and -.Ar new_string -with the single exception that a backslash is used to prevent the -expansion of a dollar sign -.Pq Ql \&$ , -not a preceding dollar sign as is usual. -.Sm off -.It Cm \&:@ Ar temp Cm @ Ar string Cm @ -.Sm on -This is the loop expansion mechanism from the OSF Development -Environment (ODE) make. -Unlike -.Cm \&.for -loops expansion occurs at the time of -reference. -Assign -.Ar temp -to each word in the variable and evaluate -.Ar string . -The ODE convention is that -.Ar temp -should start and end with a period. -For example. -.Dl ${LINKS:@.LINK.@${LN} ${TARGET} ${.LINK.}@} -.Pp -However a single character varaiable is often more readable: -.Dl ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@} -.It Cm \&:U Ns Ar newval -If the variable is undefined -.Ar newval -is the value. -If the variable is defined, the existing value is returned. -This is another ODE make feature. -It is handy for setting per-target CFLAGS for instance: -.Dl ${_${.TARGET:T}_CFLAGS:U${DEF_CFLAGS}} -If a value is only required if the variable is undefined, use: -.Dl ${VAR:D:Unewval} -.It Cm \&:D Ns Ar newval -If the variable is defined -.Ar newval -is the value. -.It Cm \&:L -The name of the variable is the value. -.It Cm \&:P -The path of the node which has the same name as the variable -is the value. -If no such node exists or its path is null, then the -name of the variable is used. -In order for this modifier to work, the name (node) must at least have -appeared on the rhs of a dependency. -.Sm off -.It Cm \&:\&! Ar cmd Cm \&! -.Sm on -The output of running -.Ar cmd -is the value. -.It Cm \&:sh -If the variable is non-empty it is run as a command and the output -becomes the new value. -.It Cm \&::= Ns Ar str -The variable is assigned the value -.Ar str -after substitution. -This modifier and its variations are useful in -obscure situations such as wanting to set a variable when shell commands -are being parsed. -These assignment modifiers always expand to -nothing, so if appearing in a rule line by themselves should be -preceded with something to keep -.Nm -happy. -.Pp -The -.Ql Cm \&:: -helps avoid false matches with the -.At V -style -.Cm \&:= -modifier and since substitution always occurs the -.Cm \&::= -form is vaguely appropriate. -.It Cm \&::?= Ns Ar str -As for -.Cm \&::= -but only if the variable does not already have a value. -.It Cm \&::+= Ns Ar str -Append -.Ar str -to the variable. -.It Cm \&::!= Ns Ar cmd -Assign the output of -.Ar cmd -to the variable. -.It Cm \&:\&[ Ns Ar range Ns Cm \&] -Selects one or more words from the value, -or performs other operations related to the way in which the -value is divided into words. -.Pp -Ordinarily, a value is treated as a sequence of words -delimited by white space. -Some modifiers suppress this behaviour, -causing a value to be treated as a single word -(possibly containing embedded white space). -An empty value, or a value that consists entirely of white-space, -is treated as a single word. -For the purposes of the -.Ql Cm \&:[] -modifier, the words are indexed both forwards using positive integers -(where index 1 represents the first word), -and backwards using negative integers -(where index \-1 represents the last word). -.Pp -The -.Ar range -is subjected to variable expansion, and the expanded result is -then interpreted as follows: -.Bl -tag -width index -.\" :[n] -.It Ar index -Selects a single word from the value. -.\" :[start..end] -.It Ar start Ns Cm \&.. Ns Ar end -Selects all words from -.Ar start -to -.Ar end , -inclusive. -For example, -.Ql Cm \&:[2..-1] -selects all words from the second word to the last word. -If -.Ar start -is greater than -.Ar end , -then the words are output in reverse order. -For example, -.Ql Cm \&:[-1..1] -selects all the words from last to first. -.\" :[*] -.It Cm \&* -Causes subsequent modifiers to treat the value as a single word -(possibly containing embedded white space). -Analogous to the effect of -\&"$*\&" -in Bourne shell. -.\" :[0] -.It 0 -Means the same as -.Ql Cm \&:[*] . -.\" :[*] -.It Cm \&@ -Causes subsequent modifiers to treat the value as a sequence of words -delimited by white space. -Analogous to the effect of -\&"$@\&" -in Bourne shell. -.\" :[#] -.It Cm \&# -Returns the number of words in the value. -.El \" :[range] -.El -.Sh INCLUDE STATEMENTS, CONDITIONALS AND FOR LOOPS -Makefile inclusion, conditional structures and for loops reminiscent -of the C programming language are provided in -.Nm . -All such structures are identified by a line beginning with a single -dot -.Pq Ql \&. -character. -Files are included with either -.Cm \&.include Aq Ar file -or -.Cm \&.include Pf \*q Ar file Ns \*q . -Variables between the angle brackets or double quotes are expanded -to form the file name. -If angle brackets are used, the included makefile is expected to be in -the system makefile directory. -If double quotes are used, the including makefile's directory and any -directories specified using the -.Fl I -option are searched before the system -makefile directory. -For compatibility with other versions of -.Nm -.Ql include file ... -is also accepted. -If the include statement is written as -.Cm .-include -or as -.Cm .sinclude -then errors locating and/or opening include files are ignored. -.Pp -Conditional expressions are also preceded by a single dot as the first -character of a line. -The possible conditionals are as follows: -.Bl -tag -width Ds -.It Ic .error Ar message -The message is printed along with the name of the makefile and line number, -then -.Nm -will exit. -.It Ic .export Ar variable ... -Export the specified global variable. -If no variable list is provided, all globals are exported -except for internal variables (those that start with -.Ql \&. ) . -This is not affected by the -.Fl X -flag, so should be used with caution. -For compatibility with other -.Nm -programs -.Ql export variable=value -is also accepted. -.Pp -Appending a variable name to -.Va .MAKE.EXPORTED -is equivalent to exporting a variable. -.It Ic .export-env Ar variable ... -The same as -.Ql .export , -except that the variable is not appended to -.Va .MAKE.EXPORTED . -This allows exporting a value to the environment which is different from that -used by -.Nm -internally. -.It Ic .info Ar message -The message is printed along with the name of the makefile and line number. -.It Ic .undef Ar variable -Un-define the specified global variable. -Only global variables may be un-defined. -.It Ic .unexport Ar variable ... -The opposite of -.Ql .export . -The specified global -.Va variable -will be removed from -.Va .MAKE.EXPORTED . -If no variable list is provided, all globals are unexported, -and -.Va .MAKE.EXPORTED -deleted. -.It Ic .unexport-env -Unexport all globals previously exported and -clear the environment inherited from the parent. -This operation will cause a memory leak of the original environment, -so should be used sparingly. -Testing for -.Va .MAKE.LEVEL -being 0, would make sense. -Also note that any variables which originated in the parent environment -should be explicitly preserved if desired. -For example: -.Bd -literal -offset indent -.Li .if ${.MAKE.LEVEL} == 0 -PATH := ${PATH} -.Li .unexport-env -.Li .export PATH -.Li .endif -.Pp -.Ed -Would result in an environment containing only -.Ql Ev PATH , -which is the minimal useful environment. -Actually -.Ql Ev .MAKE.LEVEL -will also be pushed into the new environment. -.It Ic .warning Ar message -The message prefixed by -.Ql Pa warning: -is printed along with the name of the makefile and line number. -.It Ic \&.if Oo \&! Oc Ns Ar expression Op Ar operator expression ... -Test the value of an expression. -.It Ic .ifdef Oo \&! Oc Ns Ar variable Op Ar operator variable ... -Test the value of a variable. -.It Ic .ifndef Oo \&! Oc Ns Ar variable Op Ar operator variable ... -Test the value of a variable. -.It Ic .ifmake Oo \&! Oc Ns Ar target Op Ar operator target ... -Test the target being built. -.It Ic .ifnmake Oo \&! Ns Oc Ar target Op Ar operator target ... -Test the target being built. -.It Ic .else -Reverse the sense of the last conditional. -.It Ic .elif Oo \&! Ns Oc Ar expression Op Ar operator expression ... -A combination of -.Ql Ic .else -followed by -.Ql Ic .if . -.It Ic .elifdef Oo \&! Oc Ns Ar variable Op Ar operator variable ... -A combination of -.Ql Ic .else -followed by -.Ql Ic .ifdef . -.It Ic .elifndef Oo \&! Oc Ns Ar variable Op Ar operator variable ... -A combination of -.Ql Ic .else -followed by -.Ql Ic .ifndef . -.It Ic .elifmake Oo \&! Oc Ns Ar target Op Ar operator target ... -A combination of -.Ql Ic .else -followed by -.Ql Ic .ifmake . -.It Ic .elifnmake Oo \&! Oc Ns Ar target Op Ar operator target ... -A combination of -.Ql Ic .else -followed by -.Ql Ic .ifnmake . -.It Ic .endif -End the body of the conditional. -.El -.Pp -The -.Ar operator -may be any one of the following: -.Bl -tag -width "Cm XX" -.It Cm \&|\&| -Logical OR. -.It Cm \&\*[Am]\*[Am] -Logical -.Tn AND ; -of higher precedence than -.Dq \&|\&| . -.El -.Pp -As in C, -.Nm -will only evaluate a conditional as far as is necessary to determine -its value. -Parentheses may be used to change the order of evaluation. -The boolean operator -.Ql Ic \&! -may be used to logically negate an entire -conditional. -It is of higher precedence than -.Ql Ic \&\*[Am]\*[Am] . -.Pp -The value of -.Ar expression -may be any of the following: -.Bl -tag -width defined -.It Ic defined -Takes a variable name as an argument and evaluates to true if the variable -has been defined. -.It Ic make -Takes a target name as an argument and evaluates to true if the target -was specified as part of -.Nm Ns 's -command line or was declared the default target (either implicitly or -explicitly, see -.Va .MAIN ) -before the line containing the conditional. -.It Ic empty -Takes a variable, with possible modifiers, and evaluates to true if -the expansion of the variable would result in an empty string. -.It Ic exists -Takes a file name as an argument and evaluates to true if the file exists. -The file is searched for on the system search path (see -.Va .PATH ) . -.It Ic target -Takes a target name as an argument and evaluates to true if the target -has been defined. -.It Ic commands -Takes a target name as an argument and evaluates to true if the target -has been defined and has commands associated with it. -.El -.Pp -.Ar Expression -may also be an arithmetic or string comparison. -Variable expansion is -performed on both sides of the comparison, after which the integral -values are compared. -A value is interpreted as hexadecimal if it is -preceded by 0x, otherwise it is decimal; octal numbers are not supported. -The standard C relational operators are all supported. -If after -variable expansion, either the left or right hand side of a -.Ql Ic == -or -.Ql Ic "!=" -operator is not an integral value, then -string comparison is performed between the expanded -variables. -If no relational operator is given, it is assumed that the expanded -variable is being compared against 0 or an empty string in the case -of a string comparison. -.Pp -When -.Nm -is evaluating one of these conditional expressions, and it encounters -a (white-space separated) word it doesn't recognize, either the -.Dq make -or -.Dq defined -expression is applied to it, depending on the form of the conditional. -If the form is -.Ql Ic .ifdef , -.Ql Ic .ifndef , -or -.Ql Ic .if -the -.Dq defined -expression is applied. -Similarly, if the form is -.Ql Ic .ifmake -or -.Ql Ic .ifnmake , the -.Dq make -expression is applied. -.Pp -If the conditional evaluates to true the parsing of the makefile continues -as before. -If it evaluates to false, the following lines are skipped. -In both cases this continues until a -.Ql Ic .else -or -.Ql Ic .endif -is found. -.Pp -For loops are typically used to apply a set of rules to a list of files. -The syntax of a for loop is: -.Pp -.Bl -tag -compact -width Ds -.It Ic \&.for Ar variable Oo Ar variable ... Oc Ic in Ar expression -.It Aq make-rules -.It Ic \&.endfor -.El -.Pp -After the for -.Ic expression -is evaluated, it is split into words. -On each iteration of the loop, one word is taken and assigned to each -.Ic variable , -in order, and these -.Ic variables -are substituted into the -.Ic make-rules -inside the body of the for loop. -The number of words must come out even; that is, if there are three -iteration variables, the number of words provided must be a multiple -of three. -.Sh COMMENTS -Comments begin with a hash -.Pq Ql \&# -character, anywhere but in a shell -command line, and continue to the end of an unescaped new line. -.Sh SPECIAL SOURCES (ATTRIBUTES) -.Bl -tag -width .IGNOREx -.It Ic .EXEC -Target is never out of date, but always execute commands anyway. -.It Ic .IGNORE -Ignore any errors from the commands associated with this target, exactly -as if they all were preceded by a dash -.Pq Ql \- . -.\" .It Ic .INVISIBLE -.\" XXX -.\" .It Ic .JOIN -.\" XXX -.It Ic .MADE -Mark all sources of this target as being up-to-date. -.It Ic .MAKE -Execute the commands associated with this target even if the -.Fl n -or -.Fl t -options were specified. -Normally used to mark recursive -.Nm Ns 's . -.It Ic .META -Create a meta file for the target, even if it is flagged as -.Ic .PHONY , -.Ic .MAKE , -or -.Ic .SPECIAL . -Usage in conjunction with -.Ic .MAKE -is the most likely case. -In "meta" mode, the target is out-of-date if the meta file is missing. -.It Ic .NOMETA -Do not create a meta file for the target. -Meta files are also not created for -.Ic .PHONY , -.Ic .MAKE , -or -.Ic .SPECIAL -targets. -.It Ic .NOMETA_CMP -Ignore differences in commands when deciding if target is out of date. -This is useful if the command contains a value which always changes. -If the number of commands change, though, the target will still be out of date. -.It Ic .NOPATH -Do not search for the target in the directories specified by -.Ic .PATH . -.It Ic .NOTMAIN -Normally -.Nm -selects the first target it encounters as the default target to be built -if no target was specified. -This source prevents this target from being selected. -.It Ic .OPTIONAL -If a target is marked with this attribute and -.Nm -can't figure out how to create it, it will ignore this fact and assume -the file isn't needed or already exists. -.It Ic .PHONY -The target does not -correspond to an actual file; it is always considered to be out of date, -and will not be created with the -.Fl t -option. -Suffix-transformation rules are not applied to -.Ic .PHONY -targets. -.It Ic .PRECIOUS -When -.Nm -is interrupted, it normally removes any partially made targets. -This source prevents the target from being removed. -.It Ic .RECURSIVE -Synonym for -.Ic .MAKE . -.It Ic .SILENT -Do not echo any of the commands associated with this target, exactly -as if they all were preceded by an at sign -.Pq Ql @ . -.It Ic .USE -Turn the target into -.Nm Ns 's -version of a macro. -When the target is used as a source for another target, the other target -acquires the commands, sources, and attributes (except for -.Ic .USE ) -of the -source. -If the target already has commands, the -.Ic .USE -target's commands are appended -to them. -.It Ic .USEBEFORE -Exactly like -.Ic .USE , -but prepend the -.Ic .USEBEFORE -target commands to the target. -.It Ic .WAIT -If -.Ic .WAIT -appears in a dependency line, the sources that precede it are -made before the sources that succeed it in the line. -Since the dependents of files are not made until the file itself -could be made, this also stops the dependents being built unless they -are needed for another branch of the dependency tree. -So given: -.Bd -literal -x: a .WAIT b - echo x -a: - echo a -b: b1 - echo b -b1: - echo b1 - -.Ed -the output is always -.Ql a , -.Ql b1 , -.Ql b , -.Ql x . -.br -The ordering imposed by -.Ic .WAIT -is only relevant for parallel makes. -.El -.Sh SPECIAL TARGETS -Special targets may not be included with other targets, i.e. they must be -the only target specified. -.Bl -tag -width .BEGINx -.It Ic .BEGIN -Any command lines attached to this target are executed before anything -else is done. -.It Ic .DEFAULT -This is sort of a -.Ic .USE -rule for any target (that was used only as a -source) that -.Nm -can't figure out any other way to create. -Only the shell script is used. -The -.Ic .IMPSRC -variable of a target that inherits -.Ic .DEFAULT Ns 's -commands is set -to the target's own name. -.It Ic .END -Any command lines attached to this target are executed after everything -else is done. -.It Ic .ERROR -Any command lines attached to this target are executed when another target fails. -The -.Ic .ERROR_TARGET -variable is set to the target that failed. -See also -.Ic MAKE_PRINT_VAR_ON_ERROR . -.It Ic .IGNORE -Mark each of the sources with the -.Ic .IGNORE -attribute. -If no sources are specified, this is the equivalent of specifying the -.Fl i -option. -.It Ic .INTERRUPT -If -.Nm -is interrupted, the commands for this target will be executed. -.It Ic .MAIN -If no target is specified when -.Nm -is invoked, this target will be built. -.It Ic .MAKEFLAGS -This target provides a way to specify flags for -.Nm -when the makefile is used. -The flags are as if typed to the shell, though the -.Fl f -option will have -no effect. -.\" XXX: NOT YET!!!! -.\" .It Ic .NOTPARALLEL -.\" The named targets are executed in non parallel mode. -.\" If no targets are -.\" specified, then all targets are executed in non parallel mode. -.It Ic .NOPATH -Apply the -.Ic .NOPATH -attribute to any specified sources. -.It Ic .NOTPARALLEL -Disable parallel mode. -.It Ic .NO_PARALLEL -Synonym for -.Ic .NOTPARALLEL , -for compatibility with other pmake variants. -.It Ic .ORDER -The named targets are made in sequence. -This ordering does not add targets to the list of targets to be made. -Since the dependents of a target do not get built until the target itself -could be built, unless -.Ql a -is built by another part of the dependency graph, -the following is a dependency loop: -.Bd -literal -\&.ORDER: b a -b: a -.Ed -.Pp -The ordering imposed by -.Ic .ORDER -is only relevant for parallel makes. -.\" XXX: NOT YET!!!! -.\" .It Ic .PARALLEL -.\" The named targets are executed in parallel mode. -.\" If no targets are -.\" specified, then all targets are executed in parallel mode. -.It Ic .PATH -The sources are directories which are to be searched for files not -found in the current directory. -If no sources are specified, any previously specified directories are -deleted. -If the source is the special -.Ic .DOTLAST -target, then the current working -directory is searched last. -.It Ic .PHONY -Apply the -.Ic .PHONY -attribute to any specified sources. -.It Ic .PRECIOUS -Apply the -.Ic .PRECIOUS -attribute to any specified sources. -If no sources are specified, the -.Ic .PRECIOUS -attribute is applied to every -target in the file. -.It Ic .SHELL -Sets the shell that -.Nm -will use to execute commands. -The sources are a set of -.Ar field=value -pairs. -.Bl -tag -width hasErrCtls -.It Ar name -This is the minimal specification, used to select one of the builtin -shell specs; -.Ar sh , -.Ar ksh , -and -.Ar csh . -.It Ar path -Specifies the path to the shell. -.It Ar hasErrCtl -Indicates whether the shell supports exit on error. -.It Ar check -The command to turn on error checking. -.It Ar ignore -The command to disable error checking. -.It Ar echo -The command to turn on echoing of commands executed. -.It Ar quiet -The command to turn off echoing of commands executed. -.It Ar filter -The output to filter after issuing the -.Ar quiet -command. -It is typically identical to -.Ar quiet . -.It Ar errFlag -The flag to pass the shell to enable error checking. -.It Ar echoFlag -The flag to pass the shell to enable command echoing. -.It Ar newline -The string literal to pass the shell that results in a single newline -character when used outside of any quoting characters. -.El -Example: -.Bd -literal -\&.SHELL: name=ksh path=/bin/ksh hasErrCtl=true \e - check="set \-e" ignore="set +e" \e - echo="set \-v" quiet="set +v" filter="set +v" \e - echoFlag=v errFlag=e newline="'\en'" -.Ed -.It Ic .SILENT -Apply the -.Ic .SILENT -attribute to any specified sources. -If no sources are specified, the -.Ic .SILENT -attribute is applied to every -command in the file. -.It Ic .SUFFIXES -Each source specifies a suffix to -.Nm . -If no sources are specified, any previously specified suffixes are deleted. -It allows the creation of suffix-transformation rules. -.Pp -Example: -.Bd -literal -\&.SUFFIXES: .o -\&.c.o: - cc \-o ${.TARGET} \-c ${.IMPSRC} -.Ed -.El -.Sh ENVIRONMENT -.Nm -uses the following environment variables, if they exist: -.Ev MACHINE , -.Ev MACHINE_ARCH , -.Ev MAKE , -.Ev MAKEFLAGS , -.Ev MAKEOBJDIR , -.Ev MAKEOBJDIRPREFIX , -.Ev MAKESYSPATH , -.Ev PWD , -and -.Ev TMPDIR . -.Pp -.Ev MAKEOBJDIRPREFIX -and -.Ev MAKEOBJDIR -may only be set in the environment or on the command line to -.Nm -and not as makefile variables; -see the description of -.Ql Va .OBJDIR -for more details. -.Sh FILES -.Bl -tag -width /usr/share/mk -compact -.It .depend -list of dependencies -.It Makefile -list of dependencies -.It makefile -list of dependencies -.It sys.mk -system makefile -.It /usr/share/mk -system makefile directory -.El -.Sh COMPATIBILITY -The basic make syntax is compatible between different versions of make, -however the special variables, variable modifiers and conditionals are not. -.Pp -The way that parallel makes are scheduled changed in -NetBSD 4.0 -so that .ORDER and .WAIT apply recursively to the dependent nodes. -The algorithms used may change again in the future. -.Pp -The way that .for loop variables are substituted changed after -NetBSD 5.0 -so that they still appear to be variable expansions. -In particular this stops them being treated as syntax, and removes some -obscure problems using them in .if statements. -.Pp -Unlike other -.Nm -programs, this implementation by default executes all commands for a given -target using a single shell invocation. -This is done for both efficiency and to simplify error handling in remote -command invocations. -Typically this is transparent to the user, unless the target commands change -the current working directory using -.Dq cd -or -.Dq chdir . -To be compatible with Makefiles that do this, one can use -.Fl B -to disable this behavior. -.Sh SEE ALSO -.Xr mkdep 1 -.Sh HISTORY -.Nm -is derived from NetBSD -.Xr make 1 . -It uses autoconf to facilitate portability to other platforms. diff --git a/external/bsd/bmake/dist/bmake.cat1 b/external/bsd/bmake/dist/bmake.cat1 deleted file mode 100644 index 7624c43e6599..000000000000 --- a/external/bsd/bmake/dist/bmake.cat1 +++ /dev/null @@ -1,1305 +0,0 @@ -MAKE(1) NetBSD General Commands Manual MAKE(1) - -NNAAMMEE - bbmmaakkee -- maintain program dependencies - -SSYYNNOOPPSSIISS - bbmmaakkee [--BBeeiikkNNnnqqrrssttWWXX] [--CC _d_i_r_e_c_t_o_r_y] [--DD _v_a_r_i_a_b_l_e] [--dd _f_l_a_g_s] - [--ff _m_a_k_e_f_i_l_e] [--II _d_i_r_e_c_t_o_r_y] [--JJ _p_r_i_v_a_t_e] [--jj _m_a_x___j_o_b_s] - [--mm _d_i_r_e_c_t_o_r_y] [--TT _f_i_l_e] [--VV _v_a_r_i_a_b_l_e] [_v_a_r_i_a_b_l_e_=_v_a_l_u_e] - [_t_a_r_g_e_t _._._.] - -DDEESSCCRRIIPPTTIIOONN - bbmmaakkee is a program designed to simplify the maintenance of other pro- - grams. Its input is a list of specifications as to the files upon which - programs and other files depend. If no --ff _m_a_k_e_f_i_l_e makefile option is - given, bbmmaakkee will try to open `_m_a_k_e_f_i_l_e' then `_M_a_k_e_f_i_l_e' in order to find - the specifications. If the file `_._d_e_p_e_n_d' exists, it is read (see - mkdep(1)). - - This manual page is intended as a reference document only. For a more - thorough description of bbmmaakkee and makefiles, please refer to _P_M_a_k_e _- _A - _T_u_t_o_r_i_a_l. - - bbmmaakkee will prepend the contents of the _M_A_K_E_F_L_A_G_S environment variable to - the command line arguments before parsing them. - - The options are as follows: - - --BB Try to be backwards compatible by executing a single shell per - command and by executing the commands to make the sources of a - dependency line in sequence. - - --CC _d_i_r_e_c_t_o_r_y - Change to _d_i_r_e_c_t_o_r_y before reading the makefiles or doing any- - thing else. If multiple --CC options are specified, each is inter- - preted relative to the previous one: --CC _/ --CC _e_t_c is equivalent to - --CC _/_e_t_c. - - --DD _v_a_r_i_a_b_l_e - Define _v_a_r_i_a_b_l_e to be 1, in the global context. - - --dd _[_-_]_f_l_a_g_s - Turn on debugging, and specify which portions of bbmmaakkee are to - print debugging information. Unless the flags are preceded by - `-' they are added to the _M_A_K_E_F_L_A_G_S environment variable and will - be processed by any child make processes. By default, debugging - information is printed to standard error, but this can be changed - using the _F debugging flag. The debugging output is always - unbuffered; in addition, if debugging is enabled but debugging - output is not directed to standard output, then the standard out- - put is line buffered. _F_l_a_g_s is one or more of the following: - - _A Print all possible debugging information; equivalent to - specifying all of the debugging flags. - - _a Print debugging information about archive searching and - caching. - - _C Print debugging information about current working direc- - tory. - - _c Print debugging information about conditional evaluation. - - _d Print debugging information about directory searching and - caching. - - _e Print debugging information about failed commands and - targets. - - _F[++]_f_i_l_e_n_a_m_e - Specify where debugging output is written. This must be - the last flag, because it consumes the remainder of the - argument. If the character immediately after the `F' - flag is `+', then the file will be opened in append mode; - otherwise the file will be overwritten. If the file name - is `stdout' or `stderr' then debugging output will be - written to the standard output or standard error output - file descriptors respectively (and the `+' option has no - effect). Otherwise, the output will be written to the - named file. If the file name ends `.%d' then the `%d' is - replaced by the pid. - - _f Print debugging information about loop evaluation. - - _g_1 Print the input graph before making anything. - - _g_2 Print the input graph after making everything, or before - exiting on error. - - _g_3 Print the input graph before exiting on error. - - _j Print debugging information about running multiple - shells. - - _l Print commands in Makefiles regardless of whether or not - they are prefixed by `@' or other "quiet" flags. Also - known as "loud" behavior. - - _M Print debugging information about "meta" mode decisions - about targets. - - _m Print debugging information about making targets, includ- - ing modification dates. - - _n Don't delete the temporary command scripts created when - running commands. These temporary scripts are created in - the directory referred to by the TMPDIR environment vari- - able, or in _/_t_m_p if TMPDIR is unset or set to the empty - string. The temporary scripts are created by mkstemp(3), - and have names of the form _m_a_k_e_X_X_X_X_X_X. _N_O_T_E: This can - create many files in TMPDIR or _/_t_m_p, so use with care. - - _p Print debugging information about makefile parsing. - - _s Print debugging information about suffix-transformation - rules. - - _t Print debugging information about target list mainte- - nance. - - _v Print debugging information about variable assignment. - - _x Run shell commands with --xx so the actual commands are - printed as they are executed. - - --ee Specify that environment variables override macro assignments - within makefiles. - - --ff _m_a_k_e_f_i_l_e - Specify a makefile to read instead of the default `_m_a_k_e_f_i_l_e'. If - _m_a_k_e_f_i_l_e is `--', standard input is read. Multiple makefiles may - be specified, and are read in the order specified. - - --II _d_i_r_e_c_t_o_r_y - Specify a directory in which to search for makefiles and included - makefiles. The system makefile directory (or directories, see - the --mm option) is automatically included as part of this list. - - --ii Ignore non-zero exit of shell commands in the makefile. Equiva- - lent to specifying `--' before each command line in the makefile. - - --JJ _p_r_i_v_a_t_e - This option should _n_o_t be specified by the user. - - When the _j option is in use in a recursive build, this option is - passed by a make to child makes to allow all the make processes - in the build to cooperate to avoid overloading the system. - - --jj _m_a_x___j_o_b_s - Specify the maximum number of jobs that bbmmaakkee may have running at - any one time. The value is saved in _._M_A_K_E_._J_O_B_S. Turns compati- - bility mode off, unless the _B flag is also specified. When com- - patibility mode is off, all commands associated with a target are - executed in a single shell invocation as opposed to the tradi- - tional one shell invocation per line. This can break traditional - scripts which change directories on each command invocation and - then expect to start with a fresh environment on the next line. - It is more efficient to correct the scripts rather than turn - backwards compatibility on. - - --kk Continue processing after errors are encountered, but only on - those targets that do not depend on the target whose creation - caused the error. - - --mm _d_i_r_e_c_t_o_r_y - Specify a directory in which to search for sys.mk and makefiles - included via the <_f_i_l_e>-style include statement. The --mm option - can be used multiple times to form a search path. This path will - override the default system include path: /usr/share/mk. Fur- - thermore the system include path will be appended to the search - path used for "_f_i_l_e"-style include statements (see the --II - option). - - If a file or directory name in the --mm argument (or the - MAKESYSPATH environment variable) starts with the string ".../" - then bbmmaakkee will search for the specified file or directory named - in the remaining part of the argument string. The search starts - with the current directory of the Makefile and then works upward - towards the root of the filesystem. If the search is successful, - then the resulting directory replaces the ".../" specification in - the --mm argument. If used, this feature allows bbmmaakkee to easily - search in the current source tree for customized sys.mk files - (e.g., by using ".../mk/sys.mk" as an argument). - - --nn Display the commands that would have been executed, but do not - actually execute them unless the target depends on the .MAKE spe- - cial source (see below). - - --NN Display the commands which would have been executed, but do not - actually execute any of them; useful for debugging top-level - makefiles without descending into subdirectories. - - --qq Do not execute any commands, but exit 0 if the specified targets - are up-to-date and 1, otherwise. - - --rr Do not use the built-in rules specified in the system makefile. - - --ss Do not echo any commands as they are executed. Equivalent to - specifying `@@' before each command line in the makefile. - - --TT _t_r_a_c_e_f_i_l_e - When used with the --jj flag, append a trace record to _t_r_a_c_e_f_i_l_e - for each job started and completed. - - --tt Rather than re-building a target as specified in the makefile, - create it or update its modification time to make it appear up- - to-date. - - --VV _v_a_r_i_a_b_l_e - Print bbmmaakkee's idea of the value of _v_a_r_i_a_b_l_e, in the global con- - text. Do not build any targets. Multiple instances of this - option may be specified; the variables will be printed one per - line, with a blank line for each null or undefined variable. If - _v_a_r_i_a_b_l_e contains a `$' then the value will be expanded before - printing. - - --WW Treat any warnings during makefile parsing as errors. - - --XX Don't export variables passed on the command line to the environ- - ment individually. Variables passed on the command line are - still exported via the _M_A_K_E_F_L_A_G_S environment variable. This - option may be useful on systems which have a small limit on the - size of command arguments. - - _v_a_r_i_a_b_l_e_=_v_a_l_u_e - Set the value of the variable _v_a_r_i_a_b_l_e to _v_a_l_u_e. Normally, all - values passed on the command line are also exported to sub-makes - in the environment. The --XX flag disables this behavior. Vari- - able assignments should follow options for POSIX compatibility - but no ordering is enforced. - - There are seven different types of lines in a makefile: file dependency - specifications, shell commands, variable assignments, include statements, - conditional directives, for loops, and comments. - - In general, lines may be continued from one line to the next by ending - them with a backslash (`\'). The trailing newline character and initial - whitespace on the following line are compressed into a single space. - -FFIILLEE DDEEPPEENNDDEENNCCYY SSPPEECCIIFFIICCAATTIIOONNSS - Dependency lines consist of one or more targets, an operator, and zero or - more sources. This creates a relationship where the targets ``depend'' - on the sources and are usually created from them. The exact relationship - between the target and the source is determined by the operator that sep- - arates them. The three operators are as follows: - - :: A target is considered out-of-date if its modification time is less - than those of any of its sources. Sources for a target accumulate - over dependency lines when this operator is used. The target is - removed if bbmmaakkee is interrupted. - - !! Targets are always re-created, but not until all sources have been - examined and re-created as necessary. Sources for a target accumu- - late over dependency lines when this operator is used. The target - is removed if bbmmaakkee is interrupted. - - :::: If no sources are specified, the target is always re-created. Oth- - erwise, a target is considered out-of-date if any of its sources - has been modified more recently than the target. Sources for a - target do not accumulate over dependency lines when this operator - is used. The target will not be removed if bbmmaakkee is interrupted. - - Targets and sources may contain the shell wildcard values `?', `*', `[]', - and `{}'. The values `?', `*', and `[]' may only be used as part of the - final component of the target or source, and must be used to describe - existing files. The value `{}' need not necessarily be used to describe - existing files. Expansion is in directory order, not alphabetically as - done in the shell. - -SSHHEELLLL CCOOMMMMAANNDDSS - Each target may have associated with it a series of shell commands, nor- - mally used to create the target. Each of the commands in this script - _m_u_s_t be preceded by a tab. While any target may appear on a dependency - line, only one of these dependencies may be followed by a creation - script, unless the `::::' operator is used. - - If the first characters of the command line are any combination of `@@', - `++', or `--', the command is treated specially. A `@@' causes the command - not to be echoed before it is executed. A `++' causes the command to be - executed even when --nn is given. This is similar to the effect of the - .MAKE special source, except that the effect can be limited to a single - line of a script. A `--' causes any non-zero exit status of the command - line to be ignored. - -VVAARRIIAABBLLEE AASSSSIIGGNNMMEENNTTSS - Variables in make are much like variables in the shell, and, by tradi- - tion, consist of all upper-case letters. - - VVaarriiaabbllee aassssiiggnnmmeenntt mmooddiiffiieerrss - The five operators that can be used to assign values to variables are as - follows: - - == Assign the value to the variable. Any previous value is overrid- - den. - - ++== Append the value to the current value of the variable. - - ??== Assign the value to the variable if it is not already defined. - - ::== Assign with expansion, i.e. expand the value before assigning it - to the variable. Normally, expansion is not done until the vari- - able is referenced. _N_O_T_E: References to undefined variables are - _n_o_t expanded. This can cause problems when variable modifiers - are used. - - !!== Expand the value and pass it to the shell for execution and - assign the result to the variable. Any newlines in the result - are replaced with spaces. - - Any white-space before the assigned _v_a_l_u_e is removed; if the value is - being appended, a single space is inserted between the previous contents - of the variable and the appended value. - - Variables are expanded by surrounding the variable name with either curly - braces (`{}') or parentheses (`()') and preceding it with a dollar sign - (`$'). If the variable name contains only a single letter, the surround- - ing braces or parentheses are not required. This shorter form is not - recommended. - - If the variable name contains a dollar, then the name itself is expanded - first. This allows almost arbitrary variable names, however names con- - taining dollar, braces, parenthesis, or whitespace are really best - avoided! - - If the result of expanding a variable contains a dollar sign (`$') the - string is expanded again. - - Variable substitution occurs at three distinct times, depending on where - the variable is being used. - - 1. Variables in dependency lines are expanded as the line is read. - - 2. Variables in shell commands are expanded when the shell command is - executed. - - 3. ``.for'' loop index variables are expanded on each loop iteration. - Note that other variables are not expanded inside loops so the fol- - lowing example code: - - - .for i in 1 2 3 - a+= ${i} - j= ${i} - b+= ${j} - .endfor - - all: - @echo ${a} - @echo ${b} - - will print: - - 1 2 3 - 3 3 3 - - Because while ${a} contains ``1 2 3'' after the loop is executed, - ${b} contains ``${j} ${j} ${j}'' which expands to ``3 3 3'' since - after the loop completes ${j} contains ``3''. - - VVaarriiaabbllee ccllaasssseess - The four different classes of variables (in order of increasing prece- - dence) are: - - Environment variables - Variables defined as part of bbmmaakkee's environment. - - Global variables - Variables defined in the makefile or in included makefiles. - - Command line variables - Variables defined as part of the command line. - - Local variables - Variables that are defined specific to a certain target. The - seven local variables are as follows: - - _._A_L_L_S_R_C The list of all sources for this target; also known as - `_>'. - - _._A_R_C_H_I_V_E The name of the archive file. - - _._I_M_P_S_R_C In suffix-transformation rules, the name/path of the - source from which the target is to be transformed (the - ``implied'' source); also known as `_<'. It is not - defined in explicit rules. - - _._M_E_M_B_E_R The name of the archive member. - - _._O_O_D_A_T_E The list of sources for this target that were deemed - out-of-date; also known as `_?'. - - _._P_R_E_F_I_X The file prefix of the target, containing only the file - portion, no suffix or preceding directory components; - also known as `_*'. - - _._T_A_R_G_E_T The name of the target; also known as `_@'. - - The shorter forms `_@', `_?', `_<', `_>', and `_*' are permitted for - backward compatibility with historical makefiles and are not rec- - ommended. The six variables `_@_F', `_@_D', `_<_F', `_<_D', `_*_F', and - `_*_D' are permitted for compatibility with AT&T System V UNIX - makefiles and are not recommended. - - Four of the local variables may be used in sources on dependency - lines because they expand to the proper value for each target on - the line. These variables are `_._T_A_R_G_E_T', `_._P_R_E_F_I_X', `_._A_R_C_H_I_V_E', - and `_._M_E_M_B_E_R'. - - AAddddiittiioonnaall bbuuiilltt--iinn vvaarriiaabblleess - In addition, bbmmaakkee sets or knows about the following variables: - - _$ A single dollar sign `$', i.e. `$$' expands to a single - dollar sign. - - _._A_L_L_T_A_R_G_E_T_S The list of all targets encountered in the Makefile. If - evaluated during Makefile parsing, lists only those tar- - gets encountered thus far. - - _._C_U_R_D_I_R A path to the directory where bbmmaakkee was executed. Refer - to the description of `PWD' for more details. - - MAKE The name that bbmmaakkee was executed with (_a_r_g_v_[_0_]). For - compatibility bbmmaakkee also sets _._M_A_K_E with the same value. - The preferred variable to use is the environment variable - MAKE because it is more compatible with other versions of - bbmmaakkee and cannot be confused with the special target with - the same name. - - _._M_A_K_E_._D_E_P_E_N_D_F_I_L_E - Names the makefile (default `_._d_e_p_e_n_d') from which gener- - ated dependencies are read. - - _._M_A_K_E_._E_X_P_O_R_T_E_D The list of variables exported by bbmmaakkee. - - _._M_A_K_E_._J_O_B_S The argument to the --jj option. - - _._M_A_K_E_._J_O_B_._P_R_E_F_I_X - If bbmmaakkee is run with _j then output for each target is - prefixed with a token `--- target ---' the first part of - which can be controlled via _._M_A_K_E_._J_O_B_._P_R_E_F_I_X. - For example: - .MAKE.JOB.PREFIX=${.newline}---${.MAKE:T}[${.MAKE.PID}] - would produce tokens like `---make[1234] target ---' mak- - ing it easier to track the degree of parallelism being - achieved. - - MAKEFLAGS The environment variable `MAKEFLAGS' may contain anything - that may be specified on bbmmaakkee's command line. Anything - specified on bbmmaakkee's command line is appended to the - `MAKEFLAGS' variable which is then entered into the envi- - ronment for all programs which bbmmaakkee executes. - - _._M_A_K_E_._L_E_V_E_L The recursion depth of bbmmaakkee. The initial instance of - bbmmaakkee will be 0, and an incremented value is put into the - environment to be seen by the next generation. This - allows tests like: .if ${.MAKE.LEVEL} == 0 to protect - things which should only be evaluated in the initial - instance of bbmmaakkee. - - _._M_A_K_E_._M_A_K_E_F_I_L_E___P_R_E_F_E_R_E_N_C_E - The ordered list of makefile names (default `_m_a_k_e_f_i_l_e', - `_M_a_k_e_f_i_l_e') that bbmmaakkee will look for. - - _._M_A_K_E_._M_A_K_E_F_I_L_E_S - The list of makefiles read by bbmmaakkee, which is useful for - tracking dependencies. Each makefile is recorded only - once, regardless of the number of times read. - - _._M_A_K_E_._M_O_D_E Processed after reading all makefiles. Can affect the - mode that bbmmaakkee runs in. It can contain a number of key- - words: - - _c_o_m_p_a_t Like --BB, puts bbmmaakkee into "compat" mode. - - _m_e_t_a Puts bbmmaakkee into "meta" mode, where meta files - are created for each target to capture the - command run, the output generated and if - filemon(4) is available, the system calls - which are of interest to bbmmaakkee. The captured - output can be very useful when diagnosing - errors. - - _c_u_r_d_i_r_O_k_= _b_f Normally bbmmaakkee will not create .meta files - in `_._C_U_R_D_I_R'. This can be overridden by set- - ting _b_f to a value which represents True. - - _e_n_v For debugging, it can be useful to inlcude - the environment in the .meta file. - - _v_e_r_b_o_s_e If in "meta" mode, print a clue about the - target being built. This is useful if the - build is otherwise running silently. The - message printed the value of: - _._M_A_K_E_._M_E_T_A_._P_R_E_F_I_X. - - _i_g_n_o_r_e_-_c_m_d Some makefiles have commands which are simply - not stable. This keyword causes them to be - ignored for determining whether a target is - out of date in "meta" mode. See also - ..NNOOMMEETTAA__CCMMPP. - - _s_i_l_e_n_t_= _b_f If _b_f is True, when a .meta file is created, - mark the target ..SSIILLEENNTT. - - _._M_A_K_E_._M_E_T_A_._B_A_I_L_I_W_I_C_K - In "meta" mode, provides a list of prefixes which match - the directories controlled by bbmmaakkee. If a file that was - generated outside of _._O_B_J_D_I_R but within said bailiwick is - missing, the current target is considered out-of-date. - - _._M_A_K_E_._M_E_T_A_._C_R_E_A_T_E_D - In "meta" mode, this variable contains a list of all the - meta files updated. If not empty, it can be used to - trigger processing of _._M_A_K_E_._M_E_T_A_._F_I_L_E_S. - - _._M_A_K_E_._M_E_T_A_._F_I_L_E_S - In "meta" mode, this variable contains a list of all the - meta files used (updated or not). This list can be used - to process the meta files to extract dependency informa- - tion. - - _._M_A_K_E_._M_E_T_A_._P_R_E_F_I_X - Defines the message printed for each meta file updated in - "meta verbose" mode. The default value is: - Building ${.TARGET:H:tA}/${.TARGET:T} - - _._M_A_K_E_O_V_E_R_R_I_D_E_S This variable is used to record the names of variables - assigned to on the command line, so that they may be - exported as part of `MAKEFLAGS'. This behaviour can be - disabled by assigning an empty value to `_._M_A_K_E_O_V_E_R_R_I_D_E_S' - within a makefile. Extra variables can be exported from - a makefile by appending their names to `_._M_A_K_E_O_V_E_R_R_I_D_E_S'. - `MAKEFLAGS' is re-exported whenever `_._M_A_K_E_O_V_E_R_R_I_D_E_S' is - modified. - - _._M_A_K_E_._P_I_D The process-id of bbmmaakkee. - - _._M_A_K_E_._P_P_I_D The parent process-id of bbmmaakkee. - - _M_A_K_E___P_R_I_N_T___V_A_R___O_N___E_R_R_O_R - When bbmmaakkee stops due to an error, it prints its name and - the value of `_._C_U_R_D_I_R' as well as the value of any vari- - ables named in `_M_A_K_E___P_R_I_N_T___V_A_R___O_N___E_R_R_O_R'. - - _._n_e_w_l_i_n_e This variable is simply assigned a newline character as - its value. This allows expansions using the ::@@ modifier - to put a newline between iterations of the loop rather - than a space. For example, the printing of - `_M_A_K_E___P_R_I_N_T___V_A_R___O_N___E_R_R_O_R' could be done as - ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@}. - - _._O_B_J_D_I_R A path to the directory where the targets are built. Its - value is determined by trying to chdir(2) to the follow- - ing directories in order and using the first match: - - 1. ${MAKEOBJDIRPREFIX}${.CURDIR} - - (Only if `MAKEOBJDIRPREFIX' is set in the environ- - ment or on the command line.) - - 2. ${MAKEOBJDIR} - - (Only if `MAKEOBJDIR' is set in the environment or - on the command line.) - - 3. ${.CURDIR}_/_o_b_j_.${MACHINE} - - 4. ${.CURDIR}_/_o_b_j - - 5. _/_u_s_r_/_o_b_j_/${.CURDIR} - - 6. ${.CURDIR} - - Variable expansion is performed on the value before it's - used, so expressions such as - ${.CURDIR:S,^/usr/src,/var/obj,} - may be used. This is especially useful with - `MAKEOBJDIR'. - - `_._O_B_J_D_I_R' may be modified in the makefile as a global - variable. In all cases, bbmmaakkee will chdir(2) to `_._O_B_J_D_I_R' - and set `PWD' to that directory before executing any tar- - gets. - - _._P_A_R_S_E_D_I_R A path to the directory of the current `_M_a_k_e_f_i_l_e' being - parsed. - - _._P_A_R_S_E_F_I_L_E The basename of the current `_M_a_k_e_f_i_l_e' being parsed. - This variable and `_._P_A_R_S_E_D_I_R' are both set only while the - `_M_a_k_e_f_i_l_e_s' are being parsed. If you want to retain - their current values, assign them to a variable using - assignment with expansion: (`::=='). - - _._P_A_T_H A variable that represents the list of directories that - bbmmaakkee will search for files. The search list should be - updated using the target `_._P_A_T_H' rather than the vari- - able. - - PWD Alternate path to the current directory. bbmmaakkee normally - sets `_._C_U_R_D_I_R' to the canonical path given by getcwd(3). - However, if the environment variable `PWD' is set and - gives a path to the current directory, then bbmmaakkee sets - `_._C_U_R_D_I_R' to the value of `PWD' instead. This behaviour - is disabled if `MAKEOBJDIRPREFIX' is set or `MAKEOBJDIR' - contains a variable transform. `PWD' is set to the value - of `_._O_B_J_D_I_R' for all programs which bbmmaakkee executes. - - .TARGETS The list of targets explicitly specified on the command - line, if any. - - VPATH Colon-separated (``:'') lists of directories that bbmmaakkee - will search for files. The variable is supported for - compatibility with old make programs only, use `_._P_A_T_H' - instead. - - VVaarriiaabbllee mmooddiiffiieerrss - Variable expansion may be modified to select or modify each word of the - variable (where a ``word'' is white-space delimited sequence of charac- - ters). The general format of a variable expansion is as follows: - - ${variable[:modifier[:...]]} - - Each modifier begins with a colon, which may be escaped with a backslash - (`\'). - - A set of modifiers can be specified via a variable, as follows: - - modifier_variable=modifier[:...] - ${variable:${modifier_variable}[:...]} - - In this case the first modifier in the modifier_variable does not start - with a colon, since that must appear in the referencing variable. If any - of the modifiers in the modifier_variable contain a dollar sign (`$'), - these must be doubled to avoid early expansion. - - The supported modifiers are: - - ::EE Replaces each word in the variable with its suffix. - - ::HH Replaces each word in the variable with everything but the last com- - ponent. - - ::MM_p_a_t_t_e_r_n - Select only those words that match _p_a_t_t_e_r_n. The standard shell - wildcard characters (`*', `?', and `[]') may be used. The wildcard - characters may be escaped with a backslash (`\'). - - ::NN_p_a_t_t_e_r_n - This is identical to `::MM', but selects all words which do not match - _p_a_t_t_e_r_n. - - ::OO Order every word in variable alphabetically. To sort words in - reverse order use the `::OO::[[--11....11]]' combination of modifiers. - - ::OOxx Randomize words in variable. The results will be different each - time you are referring to the modified variable; use the assignment - with expansion (`::==') to prevent such behaviour. For example, - - LIST= uno due tre quattro - RANDOM_LIST= ${LIST:Ox} - STATIC_RANDOM_LIST:= ${LIST:Ox} - - all: - @echo "${RANDOM_LIST}" - @echo "${RANDOM_LIST}" - @echo "${STATIC_RANDOM_LIST}" - @echo "${STATIC_RANDOM_LIST}" - may produce output similar to: - - quattro due tre uno - tre due quattro uno - due uno quattro tre - due uno quattro tre - - ::QQ Quotes every shell meta-character in the variable, so that it can be - passed safely through recursive invocations of bbmmaakkee. - - ::RR Replaces each word in the variable with everything but its suffix. - - ::ggmmttiimmee - The value is a format string for strftime(3), using the current - gmtime(3). - - ::hhaasshh - Compute a 32bit hash of the value and encode it as hex digits. - - ::llooccaallttiimmee - The value is a format string for strftime(3), using the current - localtime(3). - - ::ttAA Attempt to convert variable to an absolute path using realpath(3), - if that fails, the value is unchanged. - - ::ttll Converts variable to lower-case letters. - - ::ttss_c - Words in the variable are normally separated by a space on expan- - sion. This modifier sets the separator to the character _c. If _c is - omitted, then no separator is used. The common escapes (including - octal numeric codes), work as expected. - - ::ttuu Converts variable to upper-case letters. - - ::ttWW Causes the value to be treated as a single word (possibly containing - embedded white space). See also `::[[**]]'. - - ::ttww Causes the value to be treated as a sequence of words delimited by - white space. See also `::[[@@]]'. - - ::SS/_o_l_d___s_t_r_i_n_g/_n_e_w___s_t_r_i_n_g/[11ggWW] - Modify the first occurrence of _o_l_d___s_t_r_i_n_g in the variable's value, - replacing it with _n_e_w___s_t_r_i_n_g. If a `g' is appended to the last - slash of the pattern, all occurrences in each word are replaced. If - a `1' is appended to the last slash of the pattern, only the first - word is affected. If a `W' is appended to the last slash of the - pattern, then the value is treated as a single word (possibly con- - taining embedded white space). If _o_l_d___s_t_r_i_n_g begins with a caret - (`^'), _o_l_d___s_t_r_i_n_g is anchored at the beginning of each word. If - _o_l_d___s_t_r_i_n_g ends with a dollar sign (`$'), it is anchored at the end - of each word. Inside _n_e_w___s_t_r_i_n_g, an ampersand (`&') is replaced by - _o_l_d___s_t_r_i_n_g (without any `^' or `$'). Any character may be used as a - delimiter for the parts of the modifier string. The anchoring, - ampersand and delimiter characters may be escaped with a backslash - (`\'). - - Variable expansion occurs in the normal fashion inside both - _o_l_d___s_t_r_i_n_g and _n_e_w___s_t_r_i_n_g with the single exception that a backslash - is used to prevent the expansion of a dollar sign (`$'), not a pre- - ceding dollar sign as is usual. - - ::CC/_p_a_t_t_e_r_n/_r_e_p_l_a_c_e_m_e_n_t/[11ggWW] - The ::CC modifier is just like the ::SS modifier except that the old and - new strings, instead of being simple strings, are a regular expres- - sion (see regex(3)) string _p_a_t_t_e_r_n and an ed(1)-style string - _r_e_p_l_a_c_e_m_e_n_t. Normally, the first occurrence of the pattern _p_a_t_t_e_r_n - in each word of the value is substituted with _r_e_p_l_a_c_e_m_e_n_t. The `1' - modifier causes the substitution to apply to at most one word; the - `g' modifier causes the substitution to apply to as many instances - of the search pattern _p_a_t_t_e_r_n as occur in the word or words it is - found in; the `W' modifier causes the value to be treated as a sin- - gle word (possibly containing embedded white space). Note that `1' - and `g' are orthogonal; the former specifies whether multiple words - are potentially affected, the latter whether multiple substitutions - can potentially occur within each affected word. - - ::TT Replaces each word in the variable with its last component. - - ::uu Remove adjacent duplicate words (like uniq(1)). - - ::??_t_r_u_e___s_t_r_i_n_g::_f_a_l_s_e___s_t_r_i_n_g - If the variable name (not its value), when parsed as a .if condi- - tional expression, evaluates to true, return as its value the - _t_r_u_e___s_t_r_i_n_g, otherwise return the _f_a_l_s_e___s_t_r_i_n_g. Since the variable - name is used as the expression, :? must be the first modifier after - the variable name itself - which will, of course, usually contain - variable expansions. A common error is trying to use expressions - like - ${NUMBERS:M42:?match:no} - which actually tests defined(NUMBERS), to determine is any words - match "42" you need to use something like: - ${"${NUMBERS:M42}" != "":?match:no}. - - _:_o_l_d___s_t_r_i_n_g_=_n_e_w___s_t_r_i_n_g - This is the AT&T System V UNIX style variable substitution. It must - be the last modifier specified. If _o_l_d___s_t_r_i_n_g or _n_e_w___s_t_r_i_n_g do not - contain the pattern matching character _% then it is assumed that - they are anchored at the end of each word, so only suffixes or - entire words may be replaced. Otherwise _% is the substring of - _o_l_d___s_t_r_i_n_g to be replaced in _n_e_w___s_t_r_i_n_g. - - Variable expansion occurs in the normal fashion inside both - _o_l_d___s_t_r_i_n_g and _n_e_w___s_t_r_i_n_g with the single exception that a backslash - is used to prevent the expansion of a dollar sign (`$'), not a pre- - ceding dollar sign as is usual. - - ::@@_t_e_m_p@@_s_t_r_i_n_g@@ - This is the loop expansion mechanism from the OSF Development Envi- - ronment (ODE) make. Unlike ..ffoorr loops expansion occurs at the time - of reference. Assign _t_e_m_p to each word in the variable and evaluate - _s_t_r_i_n_g. The ODE convention is that _t_e_m_p should start and end with a - period. For example. - ${LINKS:@.LINK.@${LN} ${TARGET} ${.LINK.}@} - - However a single character varaiable is often more readable: - ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@} - - ::UU_n_e_w_v_a_l - If the variable is undefined _n_e_w_v_a_l is the value. If the variable - is defined, the existing value is returned. This is another ODE - make feature. It is handy for setting per-target CFLAGS for - instance: - ${_${.TARGET:T}_CFLAGS:U${DEF_CFLAGS}} - If a value is only required if the variable is undefined, use: - ${VAR:D:Unewval} - - ::DD_n_e_w_v_a_l - If the variable is defined _n_e_w_v_a_l is the value. - - ::LL The name of the variable is the value. - - ::PP The path of the node which has the same name as the variable is the - value. If no such node exists or its path is null, then the name of - the variable is used. In order for this modifier to work, the name - (node) must at least have appeared on the rhs of a dependency. - - ::!!_c_m_d!! - The output of running _c_m_d is the value. - - ::sshh If the variable is non-empty it is run as a command and the output - becomes the new value. - - ::::==_s_t_r - The variable is assigned the value _s_t_r after substitution. This - modifier and its variations are useful in obscure situations such as - wanting to set a variable when shell commands are being parsed. - These assignment modifiers always expand to nothing, so if appearing - in a rule line by themselves should be preceded with something to - keep bbmmaakkee happy. - - The `::::' helps avoid false matches with the AT&T System V UNIX style - ::== modifier and since substitution always occurs the ::::== form is - vaguely appropriate. - - ::::??==_s_t_r - As for ::::== but only if the variable does not already have a value. - - ::::++==_s_t_r - Append _s_t_r to the variable. - - ::::!!==_c_m_d - Assign the output of _c_m_d to the variable. - - ::[[_r_a_n_g_e]] - Selects one or more words from the value, or performs other opera- - tions related to the way in which the value is divided into words. - - Ordinarily, a value is treated as a sequence of words delimited by - white space. Some modifiers suppress this behaviour, causing a - value to be treated as a single word (possibly containing embedded - white space). An empty value, or a value that consists entirely of - white-space, is treated as a single word. For the purposes of the - `::[[]]' modifier, the words are indexed both forwards using positive - integers (where index 1 represents the first word), and backwards - using negative integers (where index -1 represents the last word). - - The _r_a_n_g_e is subjected to variable expansion, and the expanded - result is then interpreted as follows: - - _i_n_d_e_x Selects a single word from the value. - - _s_t_a_r_t...._e_n_d - Selects all words from _s_t_a_r_t to _e_n_d, inclusive. For example, - `::[[22....--11]]' selects all words from the second word to the last - word. If _s_t_a_r_t is greater than _e_n_d, then the words are out- - put in reverse order. For example, `::[[--11....11]]' selects all - the words from last to first. - - ** Causes subsequent modifiers to treat the value as a single - word (possibly containing embedded white space). Analogous - to the effect of "$*" in Bourne shell. - - 0 Means the same as `::[[**]]'. - - @@ Causes subsequent modifiers to treat the value as a sequence - of words delimited by white space. Analogous to the effect - of "$@" in Bourne shell. - - ## Returns the number of words in the value. - -IINNCCLLUUDDEE SSTTAATTEEMMEENNTTSS,, CCOONNDDIITTIIOONNAALLSS AANNDD FFOORR LLOOOOPPSS - Makefile inclusion, conditional structures and for loops reminiscent of - the C programming language are provided in bbmmaakkee. All such structures - are identified by a line beginning with a single dot (`.') character. - Files are included with either ..iinncclluuddee <_f_i_l_e> or ..iinncclluuddee "_f_i_l_e". Vari- - ables between the angle brackets or double quotes are expanded to form - the file name. If angle brackets are used, the included makefile is - expected to be in the system makefile directory. If double quotes are - used, the including makefile's directory and any directories specified - using the --II option are searched before the system makefile directory. - For compatibility with other versions of bbmmaakkee `include file ...' is also - accepted. If the include statement is written as ..--iinncclluuddee or as - ..ssiinncclluuddee then errors locating and/or opening include files are ignored. - - Conditional expressions are also preceded by a single dot as the first - character of a line. The possible conditionals are as follows: - - ..eerrrroorr _m_e_s_s_a_g_e - The message is printed along with the name of the makefile and - line number, then bbmmaakkee will exit. - - ..eexxppoorrtt _v_a_r_i_a_b_l_e _._._. - Export the specified global variable. If no variable list is - provided, all globals are exported except for internal variables - (those that start with `.'). This is not affected by the --XX - flag, so should be used with caution. For compatibility with - other bbmmaakkee programs `export variable=value' is also accepted. - - Appending a variable name to _._M_A_K_E_._E_X_P_O_R_T_E_D is equivalent to - exporting a variable. - - ..eexxppoorrtt--eennvv _v_a_r_i_a_b_l_e _._._. - The same as `.export', except that the variable is not appended - to _._M_A_K_E_._E_X_P_O_R_T_E_D. This allows exporting a value to the environ- - ment which is different from that used by bbmmaakkee internally. - - ..iinnffoo _m_e_s_s_a_g_e - The message is printed along with the name of the makefile and - line number. - - ..uunnddeeff _v_a_r_i_a_b_l_e - Un-define the specified global variable. Only global variables - may be un-defined. - - ..uunneexxppoorrtt _v_a_r_i_a_b_l_e _._._. - The opposite of `.export'. The specified global _v_a_r_i_a_b_l_e will be - removed from _._M_A_K_E_._E_X_P_O_R_T_E_D. If no variable list is provided, - all globals are unexported, and _._M_A_K_E_._E_X_P_O_R_T_E_D deleted. - - ..uunneexxppoorrtt--eennvv - Unexport all globals previously exported and clear the environ- - ment inherited from the parent. This operation will cause a mem- - ory leak of the original environment, so should be used spar- - ingly. Testing for _._M_A_K_E_._L_E_V_E_L being 0, would make sense. Also - note that any variables which originated in the parent environ- - ment should be explicitly preserved if desired. For example: - - .if ${.MAKE.LEVEL} == 0 - PATH := ${PATH} - .unexport-env - .export PATH - .endif - - Would result in an environment containing only `PATH', which is - the minimal useful environment. Actually `.MAKE.LEVEL' will also - be pushed into the new environment. - - ..wwaarrnniinngg _m_e_s_s_a_g_e - The message prefixed by `_w_a_r_n_i_n_g_:' is printed along with the name - of the makefile and line number. - - ..iiff [!]_e_x_p_r_e_s_s_i_o_n [_o_p_e_r_a_t_o_r _e_x_p_r_e_s_s_i_o_n _._._.] - Test the value of an expression. - - ..iiffddeeff [!]_v_a_r_i_a_b_l_e [_o_p_e_r_a_t_o_r _v_a_r_i_a_b_l_e _._._.] - Test the value of a variable. - - ..iiffnnddeeff [!]_v_a_r_i_a_b_l_e [_o_p_e_r_a_t_o_r _v_a_r_i_a_b_l_e _._._.] - Test the value of a variable. - - ..iiffmmaakkee [!]_t_a_r_g_e_t [_o_p_e_r_a_t_o_r _t_a_r_g_e_t _._._.] - Test the target being built. - - ..iiffnnmmaakkee [!] _t_a_r_g_e_t [_o_p_e_r_a_t_o_r _t_a_r_g_e_t _._._.] - Test the target being built. - - ..eellssee Reverse the sense of the last conditional. - - ..eelliiff [!] _e_x_p_r_e_s_s_i_o_n [_o_p_e_r_a_t_o_r _e_x_p_r_e_s_s_i_o_n _._._.] - A combination of `..eellssee' followed by `..iiff'. - - ..eelliiffddeeff [!]_v_a_r_i_a_b_l_e [_o_p_e_r_a_t_o_r _v_a_r_i_a_b_l_e _._._.] - A combination of `..eellssee' followed by `..iiffddeeff'. - - ..eelliiffnnddeeff [!]_v_a_r_i_a_b_l_e [_o_p_e_r_a_t_o_r _v_a_r_i_a_b_l_e _._._.] - A combination of `..eellssee' followed by `..iiffnnddeeff'. - - ..eelliiffmmaakkee [!]_t_a_r_g_e_t [_o_p_e_r_a_t_o_r _t_a_r_g_e_t _._._.] - A combination of `..eellssee' followed by `..iiffmmaakkee'. - - ..eelliiffnnmmaakkee [!]_t_a_r_g_e_t [_o_p_e_r_a_t_o_r _t_a_r_g_e_t _._._.] - A combination of `..eellssee' followed by `..iiffnnmmaakkee'. - - ..eennddiiff End the body of the conditional. - - The _o_p_e_r_a_t_o_r may be any one of the following: - - |||| Logical OR. - - &&&& Logical AND; of higher precedence than ``||''. - - As in C, bbmmaakkee will only evaluate a conditional as far as is necessary to - determine its value. Parentheses may be used to change the order of - evaluation. The boolean operator `!!' may be used to logically negate an - entire conditional. It is of higher precedence than `&&&&'. - - The value of _e_x_p_r_e_s_s_i_o_n may be any of the following: - - ddeeffiinneedd Takes a variable name as an argument and evaluates to true if - the variable has been defined. - - mmaakkee Takes a target name as an argument and evaluates to true if the - target was specified as part of bbmmaakkee's command line or was - declared the default target (either implicitly or explicitly, - see _._M_A_I_N) before the line containing the conditional. - - eemmppttyy Takes a variable, with possible modifiers, and evaluates to true - if the expansion of the variable would result in an empty - string. - - eexxiissttss Takes a file name as an argument and evaluates to true if the - file exists. The file is searched for on the system search path - (see _._P_A_T_H). - - ttaarrggeett Takes a target name as an argument and evaluates to true if the - target has been defined. - - ccoommmmaannddss - Takes a target name as an argument and evaluates to true if the - target has been defined and has commands associated with it. - - _E_x_p_r_e_s_s_i_o_n may also be an arithmetic or string comparison. Variable - expansion is performed on both sides of the comparison, after which the - integral values are compared. A value is interpreted as hexadecimal if - it is preceded by 0x, otherwise it is decimal; octal numbers are not sup- - ported. The standard C relational operators are all supported. If after - variable expansion, either the left or right hand side of a `====' or `!!==' - operator is not an integral value, then string comparison is performed - between the expanded variables. If no relational operator is given, it - is assumed that the expanded variable is being compared against 0 or an - empty string in the case of a string comparison. - - When bbmmaakkee is evaluating one of these conditional expressions, and it - encounters a (white-space separated) word it doesn't recognize, either - the ``make'' or ``defined'' expression is applied to it, depending on the - form of the conditional. If the form is `..iiffddeeff', `..iiffnnddeeff', or `..iiff' - the ``defined'' expression is applied. Similarly, if the form is - `..iiffmmaakkee' or `..iiffnnmmaakkee, tthhee' ``make'' expression is applied. - - If the conditional evaluates to true the parsing of the makefile contin- - ues as before. If it evaluates to false, the following lines are - skipped. In both cases this continues until a `..eellssee' or `..eennddiiff' is - found. - - For loops are typically used to apply a set of rules to a list of files. - The syntax of a for loop is: - - ..ffoorr _v_a_r_i_a_b_l_e [_v_a_r_i_a_b_l_e _._._.] iinn _e_x_p_r_e_s_s_i_o_n - - ..eennddffoorr - - After the for eexxpprreessssiioonn is evaluated, it is split into words. On each - iteration of the loop, one word is taken and assigned to each vvaarriiaabbllee, - in order, and these vvaarriiaabblleess are substituted into the mmaakkee--rruulleess inside - the body of the for loop. The number of words must come out even; that - is, if there are three iteration variables, the number of words provided - must be a multiple of three. - -CCOOMMMMEENNTTSS - Comments begin with a hash (`#') character, anywhere but in a shell com- - mand line, and continue to the end of an unescaped new line. - -SSPPEECCIIAALL SSOOUURRCCEESS ((AATTTTRRIIBBUUTTEESS)) - ..EEXXEECC Target is never out of date, but always execute commands any- - way. - - ..IIGGNNOORREE Ignore any errors from the commands associated with this tar- - get, exactly as if they all were preceded by a dash (`-'). - - ..MMAADDEE Mark all sources of this target as being up-to-date. - - ..MMAAKKEE Execute the commands associated with this target even if the --nn - or --tt options were specified. Normally used to mark recursive - bbmmaakkee's. - - ..MMEETTAA Create a meta file for the target, even if it is flagged as - ..PPHHOONNYY, ..MMAAKKEE, or ..SSPPEECCIIAALL. Usage in conjunction with ..MMAAKKEE is - the most likely case. In "meta" mode, the target is out-of- - date if the meta file is missing. - - ..NNOOMMEETTAA Do not create a meta file for the target. Meta files are also - not created for ..PPHHOONNYY, ..MMAAKKEE, or ..SSPPEECCIIAALL targets. - - ..NNOOMMEETTAA__CCMMPP - Ignore differences in commands when deciding if target is out - of date. This is useful if the command contains a value which - always changes. If the number of commands change, though, the - target will still be out of date. - - ..NNOOPPAATTHH Do not search for the target in the directories specified by - ..PPAATTHH. - - ..NNOOTTMMAAIINN Normally bbmmaakkee selects the first target it encounters as the - default target to be built if no target was specified. This - source prevents this target from being selected. - - ..OOPPTTIIOONNAALL - If a target is marked with this attribute and bbmmaakkee can't fig- - ure out how to create it, it will ignore this fact and assume - the file isn't needed or already exists. - - ..PPHHOONNYY The target does not correspond to an actual file; it is always - considered to be out of date, and will not be created with the - --tt option. Suffix-transformation rules are not applied to - ..PPHHOONNYY targets. - - ..PPRREECCIIOOUUSS - When bbmmaakkee is interrupted, it normally removes any partially - made targets. This source prevents the target from being - removed. - - ..RREECCUURRSSIIVVEE - Synonym for ..MMAAKKEE. - - ..SSIILLEENNTT Do not echo any of the commands associated with this target, - exactly as if they all were preceded by an at sign (`@'). - - ..UUSSEE Turn the target into bbmmaakkee's version of a macro. When the tar- - get is used as a source for another target, the other target - acquires the commands, sources, and attributes (except for - ..UUSSEE) of the source. If the target already has commands, the - ..UUSSEE target's commands are appended to them. - - ..UUSSEEBBEEFFOORREE - Exactly like ..UUSSEE, but prepend the ..UUSSEEBBEEFFOORREE target commands - to the target. - - ..WWAAIITT If ..WWAAIITT appears in a dependency line, the sources that precede - it are made before the sources that succeed it in the line. - Since the dependents of files are not made until the file - itself could be made, this also stops the dependents being - built unless they are needed for another branch of the depen- - dency tree. So given: - - x: a .WAIT b - echo x - a: - echo a - b: b1 - echo b - b1: - echo b1 - - the output is always `a', `b1', `b', `x'. - The ordering imposed by ..WWAAIITT is only relevant for parallel - makes. - -SSPPEECCIIAALL TTAARRGGEETTSS - Special targets may not be included with other targets, i.e. they must be - the only target specified. - - ..BBEEGGIINN Any command lines attached to this target are executed before - anything else is done. - - ..DDEEFFAAUULLTT - This is sort of a ..UUSSEE rule for any target (that was used only - as a source) that bbmmaakkee can't figure out any other way to cre- - ate. Only the shell script is used. The ..IIMMPPSSRRCC variable of a - target that inherits ..DDEEFFAAUULLTT's commands is set to the target's - own name. - - ..EENNDD Any command lines attached to this target are executed after - everything else is done. - - ..EERRRROORR Any command lines attached to this target are executed when - another target fails. The ..EERRRROORR__TTAARRGGEETT variable is set to the - target that failed. See also MMAAKKEE__PPRRIINNTT__VVAARR__OONN__EERRRROORR. - - ..IIGGNNOORREE Mark each of the sources with the ..IIGGNNOORREE attribute. If no - sources are specified, this is the equivalent of specifying the - --ii option. - - ..IINNTTEERRRRUUPPTT - If bbmmaakkee is interrupted, the commands for this target will be - executed. - - ..MMAAIINN If no target is specified when bbmmaakkee is invoked, this target - will be built. - - ..MMAAKKEEFFLLAAGGSS - This target provides a way to specify flags for bbmmaakkee when the - makefile is used. The flags are as if typed to the shell, - though the --ff option will have no effect. - - ..NNOOPPAATTHH Apply the ..NNOOPPAATTHH attribute to any specified sources. - - ..NNOOTTPPAARRAALLLLEELL - Disable parallel mode. - - ..NNOO__PPAARRAALLLLEELL - Synonym for ..NNOOTTPPAARRAALLLLEELL, for compatibility with other pmake - variants. - - ..OORRDDEERR The named targets are made in sequence. This ordering does not - add targets to the list of targets to be made. Since the depen- - dents of a target do not get built until the target itself could - be built, unless `a' is built by another part of the dependency - graph, the following is a dependency loop: - - .ORDER: b a - b: a - - The ordering imposed by ..OORRDDEERR is only relevant for parallel - makes. - - ..PPAATTHH The sources are directories which are to be searched for files - not found in the current directory. If no sources are speci- - fied, any previously specified directories are deleted. If the - source is the special ..DDOOTTLLAASSTT target, then the current working - directory is searched last. - - ..PPHHOONNYY Apply the ..PPHHOONNYY attribute to any specified sources. - - ..PPRREECCIIOOUUSS - Apply the ..PPRREECCIIOOUUSS attribute to any specified sources. If no - sources are specified, the ..PPRREECCIIOOUUSS attribute is applied to - every target in the file. - - ..SSHHEELLLL Sets the shell that bbmmaakkee will use to execute commands. The - sources are a set of _f_i_e_l_d_=_v_a_l_u_e pairs. - - _n_a_m_e This is the minimal specification, used to select - one of the builtin shell specs; _s_h, _k_s_h, and _c_s_h. - - _p_a_t_h Specifies the path to the shell. - - _h_a_s_E_r_r_C_t_l Indicates whether the shell supports exit on error. - - _c_h_e_c_k The command to turn on error checking. - - _i_g_n_o_r_e The command to disable error checking. - - _e_c_h_o The command to turn on echoing of commands executed. - - _q_u_i_e_t The command to turn off echoing of commands exe- - cuted. - - _f_i_l_t_e_r The output to filter after issuing the _q_u_i_e_t com- - mand. It is typically identical to _q_u_i_e_t. - - _e_r_r_F_l_a_g The flag to pass the shell to enable error checking. - - _e_c_h_o_F_l_a_g The flag to pass the shell to enable command echo- - ing. - - _n_e_w_l_i_n_e The string literal to pass the shell that results in - a single newline character when used outside of any - quoting characters. - Example: - - .SHELL: name=ksh path=/bin/ksh hasErrCtl=true \ - check="set -e" ignore="set +e" \ - echo="set -v" quiet="set +v" filter="set +v" \ - echoFlag=v errFlag=e newline="'\n'" - - ..SSIILLEENNTT Apply the ..SSIILLEENNTT attribute to any specified sources. If no - sources are specified, the ..SSIILLEENNTT attribute is applied to every - command in the file. - - ..SSUUFFFFIIXXEESS - Each source specifies a suffix to bbmmaakkee. If no sources are - specified, any previously specified suffixes are deleted. It - allows the creation of suffix-transformation rules. - - Example: - - .SUFFIXES: .o - .c.o: - cc -o ${.TARGET} -c ${.IMPSRC} - -EENNVVIIRROONNMMEENNTT - bbmmaakkee uses the following environment variables, if they exist: MACHINE, - MACHINE_ARCH, MAKE, MAKEFLAGS, MAKEOBJDIR, MAKEOBJDIRPREFIX, MAKESYSPATH, - PWD, and TMPDIR. - - MAKEOBJDIRPREFIX and MAKEOBJDIR may only be set in the environment or on - the command line to bbmmaakkee and not as makefile variables; see the descrip- - tion of `_._O_B_J_D_I_R' for more details. - -FFIILLEESS - .depend list of dependencies - Makefile list of dependencies - makefile list of dependencies - sys.mk system makefile - /usr/share/mk system makefile directory - -CCOOMMPPAATTIIBBIILLIITTYY - The basic make syntax is compatible between different versions of make, - however the special variables, variable modifiers and conditionals are - not. - - The way that parallel makes are scheduled changed in NetBSD 4.0 so that - .ORDER and .WAIT apply recursively to the dependent nodes. The algo- - rithms used may change again in the future. - - The way that .for loop variables are substituted changed after NetBSD 5.0 - so that they still appear to be variable expansions. In particular this - stops them being treated as syntax, and removes some obscure problems - using them in .if statements. - - Unlike other bbmmaakkee programs, this implementation by default executes all - commands for a given target using a single shell invocation. This is - done for both efficiency and to simplify error handling in remote command - invocations. Typically this is transparent to the user, unless the tar- - get commands change the current working directory using ``cd'' or - ``chdir''. To be compatible with Makefiles that do this, one can use --BB - to disable this behavior. - -SSEEEE AALLSSOO - mkdep(1) - -HHIISSTTOORRYY - bbmmaakkee is derived from NetBSD make(1). It uses autoconf to facilitate - portability to other platforms. - -NetBSD 5.1 April 24, 2012 NetBSD 5.1 diff --git a/external/bsd/bmake/dist/boot-strap b/external/bsd/bmake/dist/boot-strap deleted file mode 100755 index 660b7667dd52..000000000000 --- a/external/bsd/bmake/dist/boot-strap +++ /dev/null @@ -1,388 +0,0 @@ -: -# NAME: -# boot-strap -# -# SYNOPSIS: -# boot-strap [--"configure_arg" ... ][-s "srcdir"][-m "mksrc"]\\ -# ["prefix" ["bmakesrc" ["mksrc"]]] -# -# DESCRIPTION: -# This script is used to configure/build bmake it builds for -# each OS in a subdir to keep the src clean. -# On successful completion it echos commands to put the new -# bmake binary into the /configs tree (if it exists) -# (http://www.crufty.net/FreeWare/configs.html), $prefix/bin -# and a suitable ~/*bin directory. -# -# Options: -# -# -c "rc" -# Pick up settings from "rc". -# We look for '.bmake-boot-strap.rc' before processing -# options. -# -# --share "share_dir" -# Where to put man pages and mk files. -# If $prefix ends in $HOST_TARGET, and $prefix/../share -# exits, the default will be that rather than $prefix/share. -# -# --mksrc "mksrc" -# Indicate where the mk files can be found. -# Default is ./mk or ../mk, set to 'none' to force -# building without "mksrc" but in that case a sys.mk -# needs to exist in the default syspath ($share_dir/mk) -# -# Possibly useful configure_args: -# -# --without-meta -# disable use of meta mode. -# -# --without-filemon -# disable use of filemon(9) which is currently only -# available for NetBSD and FreeBSD. -# -# --with-filemon="path/to/filemon.h" -# enables use of filemon(9) by meta mode. -# -# --with-machine="machine" -# set "machine" to override that determined by -# machine.sh -# -# --with-force-machine="machine" -# force "machine" even if uname(3) provides a value. -# -# --with-machine_arch="machine_arch" -# set "machine_arch" to override that determined by -# machine.sh -# -# --with-default-sys-path="syspath" -# set an explicit default "syspath" which is where bmake -# will look for sys.mk and friends. -# -# AUTHOR: -# Simon J. Gerraty - -# RCSid: -# $Id: boot-strap,v 1.39 2012/03/26 17:08:22 sjg Exp $ -# -# @(#) Copyright (c) 2001 Simon J. Gerraty -# -# This file is provided in the hope that it will -# be of use. There is absolutely NO WARRANTY. -# Permission to copy, redistribute or otherwise -# use this file is hereby granted provided that -# the above copyright notice and this notice are -# left intact. -# -# Please send copies of changes and bug-fixes to: -# sjg@crufty.net -# - -Mydir=`dirname $0` -. "$Mydir/os.sh" -case "$Mydir" in -/*) ;; -*) Mydir=`cd "$Mydir" && 'pwd'`;; -esac - - -Usage() { - [ "$1" ] && echo "ERROR: $@" >&2 - echo "Usage:" >&2 - echo "$0 [-- ...][-s ][-m ][ [[] []]]" >&2 - exit 1 -} - -Error() { - echo "ERROR: $@" >&2 - exit 1 -} - -source_rc() { - rc="$1"; shift - for d in ${*:-""} - do - r="${d:+$d/}$rc" - [ -f "$r" -a -s "$r" ] || continue - echo "NOTE: reading $r" - . "$r" - break - done -} - -CONFIGURE_ARGS= -MAKESYSPATH= -# pick a useful default prefix (for me at least ;-) -for prefix in /opt/$HOST_TARGET "$HOME/$HOST_TARGET" /usr/pkg /usr/local "" -do - [ -d "${prefix:-.}" ] && break -done -srcdir= -mksrc= -objdir= -quiet=: - -source_rc .bmake-boot-strap.rc . "$Mydir/.." "$HOME" - -get_optarg() { - expr "x$1" : "x[^=]*=\\(.*\\)" -} - -while : -do - case "$1" in - --) shift; break;; - --prefix) prefix="$2"; shift;; - --prefix=*) prefix=`get_optarg "$1"`;; - --src=*) srcdir=`get_optarg "$1"`;; - --with-mksrc=*|--mksrc=*) mksrc=`get_optarg "$1"`;; - --share=*) share_dir=`get_optarg "$1"`;; - --share) share_dir="$2"; shift;; - --with-default-sys-path=*) - CONFIGURE_ARGS="$1" - MAKESYSPATH=`get_optarg "$1"`;; - --with-default-sys-path) - CONFIGURE_ARGS="$1 $2" - MAKESYSPATH="$2"; shift;; - -s|--src) srcdir="$2"; shift;; - -m|--mksrc) mksrc="$2"; shift;; - -o|--objdir) objdir="$2"; shift;; - -q) quiet=;; - -c) source_rc "$2"; shift;; - --*) CONFIGURE_ARGS="$CONFIGURE_ARGS $1";; - *=*) eval "$1"; export `expr "x$1" : "x\\(.[^=]*\\)=.*"`;; - *) break;; - esac - shift -done - -AddConfigure() { - case " $CONFIGURE_ARGS " in - *" $1"*) ;; - *) CONFIGURE_ARGS="$CONFIGURE_ARGS $1$2";; - esac -} - -GetDir() { - match="$1" - shift - fmatch="$1" - shift - for dir in $* - do - [ -d "$dir" ] || continue - case "/$dir/" in - *$match*) ;; - *) continue;; - esac - case "$fmatch" in - .) ;; - *) [ -s $dir/$fmatch ] || continue;; - esac - case "$dir/" in - *./*) cd "$dir" && 'pwd';; - /*) echo $dir;; - *) cd "$dir" && 'pwd';; - esac - break - done -} - -FindHereOrAbove() { - ( - _t=-s - while : - do - case "$1" in - -C) cd "$2"; shift; shift;; - -?) _t=$1; shift;; - *) break;; - esac - done - case "$1" in - /*) # we shouldn't be here - [ $_t "$1" ] && echo "$1" - return - ;; - .../*) want=`echo "$1" | sed 's,^.../*,,'`;; - *) want="$1";; - esac - here=`'pwd'` - while : - do - if [ $_t "./$want" ]; then - echo "$here/$want" - return - fi - cd .. - here=`'pwd'` - case "$here" in - /) return;; - esac - done - ) -} - -# is $1 missing from $2 (or PATH) ? -no_path() { - eval "__p=\$${2:-PATH}" - case ":$__p:" in *:"$1":*) return 1;; *) return 0;; esac -} - -# if $1 exists and is not in path, append it -add_path () { - case "$1" in - -?) t=$1; shift;; - *) t=-d;; - esac - case "$2,$1" in - MAKESYSPATH,.../*) ;; - *) [ $t ${1:-.} ] || return;; - esac - no_path $* && eval ${2:-PATH}="$__p${__p:+:}$1" -} - - -srcdir=`GetDir /bmake make-bootstrap.sh.in "$srcdir" "$2" "$Mydir" ./bmake* "$Mydir"/../bmake*` -[ -d "${srcdir:-/dev/null}" ] || Usage -case "$mksrc" in -none|-) # we don't want it - mksrc= - ;; -.../*) # find here or above - mksrc=`FindHereOrAbove -C "$Mydir" -s "$mksrc/sys.mk"` - # that found a file - mksrc=`dirname $mksrc` - ;; -*) # guess we want mksrc... - mksrc=`GetDir /mk sys.mk "$mksrc" "$3" ./mk* "$srcdir"/mk* "$srcdir"/../mk*` - [ -d "${mksrc:-/dev/null}" ] || Usage "Use '-m none' to build without mksrc" - ;; -esac - -# Ok, get to work... -objdir="${objdir:-$OS}" -[ -d "$objdir" ] || mkdir -p "$objdir" -[ -d "$objdir" ] || mkdir "$objdir" -cd "$objdir" || exit 1 -# make it absolute -objdir=`'pwd'` - -ShareDir() { - case "/$1" in - /) [ -d /share ] || return;; - */$HOST_TARGET) - if [ -d "$1/../share" ]; then - echo `dirname "$1"`/share - return - fi - ;; - esac - echo $1/share -} - -# make it easy to force prefix to use $HOST_TARGET -: looking at "$prefix" -case "$prefix" in -*/host?target) prefix=`echo "$prefix" | sed "s,host.target,${HOST_TARGET},"`;; -esac - -share_dir="${share_dir:-`ShareDir $prefix`}" - -AddConfigure --prefix= "$prefix" -case "$CONFIGURE_ARGS" in -*--with-*-sys-path*) ;; # skip -*) [ "$share_dir" ] && AddConfigure --with-default-sys-path= "$share_dir/mk";; -esac -if [ "$mksrc" ]; then - AddConfigure --with-mksrc= "$mksrc" - # not all cc's support this - CFLAGS_MF= CFLAGS_MD= - export CFLAGS_MF CFLAGS_MD -fi - -$srcdir/configure $CONFIGURE_ARGS || exit 1 -chmod 755 make-bootstrap.sh || exit 1 -./make-bootstrap.sh || exit 1 -if [ -z "$MAKESYSPATH" ]; then - add_path "${share_dir:-...}/mk" MAKESYSPATH - case "$HOST_TARGET" in - netbsd*) add_path /usr/share/mk MAKESYSPATH;; - esac -fi -if [ -s "${mksrc:-/dev/null}/install-mk" ]; then - sh "${mksrc}/install-mk" "$objdir/mk" - case "$MAKESYSPATH" in - .../mk*) ;; - *) MAKESYSPATH=".../mk:${MAKESYSPATH}";; - esac -fi -# make sure test below uses the same diff that configure did -TOOL_DIFF=`type diff | sed 's,[()],,g;s,^[^/][^/]*,,;q'` -export MAKESYSPATH TOOL_DIFF -if [ "$mksrc" ]; then - $objdir/bmake test || exit 1 -else - # assume nothing - $objdir/bmake -r -m / test || exit 1 -fi -# If -q given, we don't want all the install instructions -$quiet exit 0 - -make_version=`./bmake -r -m / -f ./Makefile -V MAKE_VERSION | ( read one two; echo $one )` -bmake_version=bmake-$make_version - -if [ -s /usr/share/tmac/andoc.tmac ]; then - # this should be ok - man_subdir=man1 - man_src=$srcdir/bmake.1 -else - # guess not - man_subdir=cat1 - man_src=$srcdir/bmake.cat1 -fi - -install_prefix() { - ( - bin_dir= - share_dir= - man_dir= - mk_dir= - while : - do - case "$1" in - *=*) eval "$1"; shift;; - *) break;; - esac - done - bin_dir=${bin_dir:-$1/bin} - share_dir=${share_dir:-`ShareDir "$1"`} - man_dir=${man_dir:-$share_dir/man} - mk_dir=${mk_dir:-$share_dir/mk} - echo - echo Commands to install into $1/ - echo - echo mkdir -p $bin_dir - echo cp $objdir/bmake $bin_dir/$bmake_version - echo rm -f $bin_dir/bmake - echo ln -s $bmake_version $bin_dir/bmake - echo mkdir -p $man_dir/$man_subdir - echo cp $man_src $man_dir/$man_subdir/bmake.1 - if [ "$mksrc" ]; then - ev=`env | grep '_MK='` - echo $ev sh $mksrc/install-mk $mk_dir - fi - ) -} - -case "$prefix/" in -"$HOME"/*) ;; -*) CONFIGS=${CONFIGS:-/configs} - [ -d $CONFIGS ] && - install_prefix mksrc= "$CONFIGS/$OS/$OSMAJOR.X/$MACHINE_ARCH$prefix" - # I like to keep a copy here... - install_prefix share_dir="$HOME/share" "$HOME/$HOST_TARGET" - ;; -esac - -install_prefix "$prefix" diff --git a/external/bsd/bmake/dist/bsd.after-import.mk b/external/bsd/bmake/dist/bsd.after-import.mk deleted file mode 100644 index e87026fbf146..000000000000 --- a/external/bsd/bmake/dist/bsd.after-import.mk +++ /dev/null @@ -1,105 +0,0 @@ -# $Id: bsd.after-import.mk,v 1.6 2012/06/27 18:23:32 sjg Exp $ - -# This makefile is for use when integrating bmake into a BSD build -# system. Use this makefile after importing bmake. -# It will bootstrap the new version, -# capture the generated files we need, and add an after-import -# target to allow the process to be easily repeated. - -# The goal is to allow the benefits of autoconf without -# the overhead of running configure. - -all: _makefile -all: after-import - -# we rely on bmake -.if !defined(.MAKE.LEVEL) -.error this makefile requires bmake -.endif - -_this := ${MAKEFILE:tA} -BMAKE_SRC := ${.PARSEDIR} - -# it helps to know where the top of the tree is. -.if !defined(SRCTOP) -srctop := ${.MAKE.MAKEFILES:M*src/share/mk/sys.mk:H:H:H} -.if empty(srctop) -# likely locations? -.for d in contrib/bmake external/bsd/bmake/dist -.if ${BMAKE_SRC:M*/$d} != "" -srctop := ${BMAKE_SRC:tA:S,/$d,,} -.endif -.endfor -.endif -.if !empty(srctop) -SRCTOP := ${srctop} -.endif -.endif - -# This lets us match what boot-strap does -.if !defined(HOST_OS) -HOST_OS!= uname -.endif - -# .../share/mk will find ${SRCTOP}/share/mk -# if we are within ${SRCTOP} -DEFAULT_SYS_PATH= .../share/mk:/usr/share/mk - -BOOTSTRAP_ARGS = \ - --with-default-sys-path='${DEFAULT_SYS_PATH}' \ - --prefix /usr \ - --share /usr/share \ - --mksrc none - -# run boot-strap with minimal influence -bootstrap: ${BMAKE_SRC}/boot-strap ${MAKEFILE} - HOME=/ ${BMAKE_SRC}/boot-strap ${BOOTSTRAP_ARGS} ${BOOTSTRAP_XTRAS} - touch ${.TARGET} - -# Makefiles need a little more tweaking than say config.h -MAKEFILE_SED = sed -e '/^MACHINE/d' \ - -e '/^PROG/s,bmake,${.CURDIR:T},' \ - -e 's,^.-include,.sinclude,' \ - -e 's,${SRCTOP},$${SRCTOP},g' - -# These are the simple files we want to capture -configured_files= config.h unit-tests/Makefile - -after-import: bootstrap ${MAKEFILE} -.for f in ${configured_files:N*Makefile} - @echo Capturing $f - @mkdir -p ${${.CURDIR}/$f:L:H} - @cmp -s ${.CURDIR}/$f ${HOST_OS}/$f || \ - cp ${HOST_OS}/$f ${.CURDIR}/$f -.endfor -.for f in ${configured_files:M*Makefile} - @echo Capturing $f - @mkdir -p ${${.CURDIR}/$f:L:H} - @${MAKEFILE_SED} ${HOST_OS}/$f > ${.CURDIR}/$f -.endfor - -# this needs the most work -_makefile: bootstrap ${MAKEFILE} - @echo Generating ${.CURDIR}/Makefile - @(echo '# This is a generated file, do NOT edit!'; \ - echo '# See ${_this:S,${SRCTOP}/,,}'; \ - echo '#'; echo '# $$${OS}$$'; echo; \ - echo 'SRCTOP?= $${.CURDIR:${.CURDIR:S,${SRCTOP}/,,:C,[^/]+,H,g:S,/,:,g}}'; echo; \ - echo; echo '# look here first for config.h'; \ - echo 'CFLAGS+= -I$${.CURDIR}'; echo; \ - ${MAKEFILE_SED} ${HOST_OS}/Makefile; \ - echo; echo '# override some simple things'; \ - echo 'BINDIR= /usr/bin'; \ - echo 'MANDIR= /usr/share/man'; \ - echo; echo '# make sure we get this'; \ - echo 'CFLAGS+= $${COPTS.$${.IMPSRC:T}}'; \ - echo 'CLEANFILES+= bootstrap'; \ - echo; echo 'after-import: ${_this:S,${SRCTOP},\${SRCTOP},}'; \ - echo ' cd $${.CURDIR} && $${.MAKE} -f ${_this:S,${SRCTOP},\${SRCTOP},}'; \ - echo; echo '.sinclude "Makefile.inc"'; \ - echo ) > ${.TARGET} - @cmp -s ${.TARGET} ${.CURDIR}/Makefile || \ - mv ${.TARGET} ${.CURDIR}/Makefile - -.include - diff --git a/external/bsd/bmake/dist/buf.c b/external/bsd/bmake/dist/buf.c deleted file mode 100644 index ac95c16c1586..000000000000 --- a/external/bsd/bmake/dist/buf.c +++ /dev/null @@ -1,291 +0,0 @@ -/* $NetBSD: buf.c,v 1.25 2012/04/24 20:26:58 sjg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: buf.c,v 1.25 2012/04/24 20:26:58 sjg Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)buf.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: buf.c,v 1.25 2012/04/24 20:26:58 sjg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * buf.c -- - * Functions for automatically-expanded buffers. - */ - -#include "make.h" -#include "buf.h" - -#ifndef max -#define max(a,b) ((a) > (b) ? (a) : (b)) -#endif - -#define BUF_DEF_SIZE 256 /* Default buffer size */ - -/*- - *----------------------------------------------------------------------- - * Buf_Expand_1 -- - * Extend buffer for single byte add. - * - *----------------------------------------------------------------------- - */ -void -Buf_Expand_1(Buffer *bp) -{ - bp->size += max(bp->size, 16); - bp->buffer = bmake_realloc(bp->buffer, bp->size); -} - -/*- - *----------------------------------------------------------------------- - * Buf_AddBytes -- - * Add a number of bytes to the buffer. - * - * Results: - * None. - * - * Side Effects: - * Guess what? - * - *----------------------------------------------------------------------- - */ -void -Buf_AddBytes(Buffer *bp, int numBytes, const Byte *bytesPtr) -{ - int count = bp->count; - Byte *ptr; - - if (__predict_false(count + numBytes >= bp->size)) { - bp->size += max(bp->size, numBytes + 16); - bp->buffer = bmake_realloc(bp->buffer, bp->size); - } - - ptr = bp->buffer + count; - bp->count = count + numBytes; - ptr[numBytes] = 0; - memcpy(ptr, bytesPtr, numBytes); -} - -/*- - *----------------------------------------------------------------------- - * Buf_GetAll -- - * Get all the available data at once. - * - * Results: - * A pointer to the data and the number of bytes available. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -Byte * -Buf_GetAll(Buffer *bp, int *numBytesPtr) -{ - - if (numBytesPtr != NULL) - *numBytesPtr = bp->count; - - return (bp->buffer); -} - -/*- - *----------------------------------------------------------------------- - * Buf_Empty -- - * Throw away bytes in a buffer. - * - * Results: - * None. - * - * Side Effects: - * The bytes are discarded. - * - *----------------------------------------------------------------------- - */ -void -Buf_Empty(Buffer *bp) -{ - - bp->count = 0; - *bp->buffer = 0; -} - -/*- - *----------------------------------------------------------------------- - * Buf_Init -- - * Initialize a buffer. If no initial size is given, a reasonable - * default is used. - * - * Input: - * size Initial size for the buffer - * - * Results: - * A buffer to be given to other functions in this library. - * - * Side Effects: - * The buffer is created, the space allocated and pointers - * initialized. - * - *----------------------------------------------------------------------- - */ -void -Buf_Init(Buffer *bp, int size) -{ - if (size <= 0) { - size = BUF_DEF_SIZE; - } - bp->size = size; - bp->count = 0; - bp->buffer = bmake_malloc(size); - *bp->buffer = 0; -} - -/*- - *----------------------------------------------------------------------- - * Buf_Destroy -- - * Nuke a buffer and all its resources. - * - * Input: - * buf Buffer to destroy - * freeData TRUE if the data should be destroyed - * - * Results: - * Data buffer, NULL if freed - * - * Side Effects: - * The buffer is freed. - * - *----------------------------------------------------------------------- - */ -Byte * -Buf_Destroy(Buffer *buf, Boolean freeData) -{ - Byte *data; - - data = buf->buffer; - if (freeData) { - free(data); - data = NULL; - } - - buf->size = 0; - buf->count = 0; - buf->buffer = NULL; - - return data; -} - - -/*- - *----------------------------------------------------------------------- - * Buf_DestroyCompact -- - * Nuke a buffer and return its data. - * - * Input: - * buf Buffer to destroy - * - * Results: - * Data buffer - * - * Side Effects: - * If the buffer size is much greater than its content, - * a new buffer will be allocated and the old one freed. - * - *----------------------------------------------------------------------- - */ -#ifndef BUF_COMPACT_LIMIT -# define BUF_COMPACT_LIMIT 128 /* worthwhile saving */ -#endif - -Byte * -Buf_DestroyCompact(Buffer *buf) -{ -#if BUF_COMPACT_LIMIT > 0 - Byte *data; - - if (buf->size - buf->count >= BUF_COMPACT_LIMIT) { - /* We trust realloc to be smart */ - data = bmake_realloc(buf->buffer, buf->count + 1); - if (data) { - data[buf->count] = 0; - Buf_Destroy(buf, FALSE); - return data; - } - } -#endif - return Buf_Destroy(buf, FALSE); -} diff --git a/external/bsd/bmake/dist/buf.h b/external/bsd/bmake/dist/buf.h deleted file mode 100644 index 25be67d79afb..000000000000 --- a/external/bsd/bmake/dist/buf.h +++ /dev/null @@ -1,119 +0,0 @@ -/* $NetBSD: buf.h,v 1.17 2012/04/24 20:26:58 sjg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)buf.h 8.1 (Berkeley) 6/6/93 - */ - -/* - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)buf.h 8.1 (Berkeley) 6/6/93 - */ - -/*- - * buf.h -- - * Header for users of the buf library. - */ - -#ifndef _BUF_H -#define _BUF_H - -typedef char Byte; - -typedef struct Buffer { - int size; /* Current size of the buffer */ - int count; /* Number of bytes in buffer */ - Byte *buffer; /* The buffer itself (zero terminated) */ -} Buffer; - -/* If we aren't on netbsd, __predict_false() might not be defined. */ -#ifndef __predict_false -#define __predict_false(x) (x) -#endif - -/* Buf_AddByte adds a single byte to a buffer. */ -#define Buf_AddByte(bp, byte) do { \ - int _count = ++(bp)->count; \ - char *_ptr; \ - if (__predict_false(_count >= (bp)->size)) \ - Buf_Expand_1(bp); \ - _ptr = (bp)->buffer + _count; \ - _ptr[-1] = (byte); \ - _ptr[0] = 0; \ - } while (0) - -#define BUF_ERROR 256 - -#define Buf_Size(bp) ((bp)->count) - -void Buf_Expand_1(Buffer *); -void Buf_AddBytes(Buffer *, int, const Byte *); -Byte *Buf_GetAll(Buffer *, int *); -void Buf_Empty(Buffer *); -void Buf_Init(Buffer *, int); -Byte *Buf_Destroy(Buffer *, Boolean); -Byte *Buf_DestroyCompact(Buffer *); - -#endif /* _BUF_H */ diff --git a/external/bsd/bmake/dist/compat.c b/external/bsd/bmake/dist/compat.c deleted file mode 100644 index 7f715ccbe386..000000000000 --- a/external/bsd/bmake/dist/compat.c +++ /dev/null @@ -1,764 +0,0 @@ -/* $NetBSD: compat.c,v 1.89 2012/06/10 21:44:01 wiz Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: compat.c,v 1.89 2012/06/10 21:44:01 wiz Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)compat.c 8.2 (Berkeley) 3/19/94"; -#else -__RCSID("$NetBSD: compat.c,v 1.89 2012/06/10 21:44:01 wiz Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * compat.c -- - * The routines in this file implement the full-compatibility - * mode of PMake. Most of the special functionality of PMake - * is available in this mode. Things not supported: - * - different shells. - * - friendly variable substitution. - * - * Interface: - * Compat_Run Initialize things for this module and recreate - * thems as need creatin' - */ - -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif -#include -#include -#include "wait.h" - -#include -#include -#include -#include - -#include "make.h" -#include "hash.h" -#include "dir.h" -#include "job.h" -#include "pathnames.h" - -/* - * The following array is used to make a fast determination of which - * characters are interpreted specially by the shell. If a command - * contains any of these characters, it is executed by the shell, not - * directly by us. - */ - -static char meta[256]; - -static GNode *curTarg = NULL; -static GNode *ENDNode; -static void CompatInterrupt(int); - -static void -Compat_Init(void) -{ - const char *cp; - - Shell_Init(); /* setup default shell */ - - for (cp = "#=|^(){};&<>*?[]:$`\\\n"; *cp != '\0'; cp++) { - meta[(unsigned char) *cp] = 1; - } - /* - * The null character serves as a sentinel in the string. - */ - meta[0] = 1; -} - -/*- - *----------------------------------------------------------------------- - * CompatInterrupt -- - * Interrupt the creation of the current target and remove it if - * it ain't precious. - * - * Results: - * None. - * - * Side Effects: - * The target is removed and the process exits. If .INTERRUPT exists, - * its commands are run first WITH INTERRUPTS IGNORED.. - * - *----------------------------------------------------------------------- - */ -static void -CompatInterrupt(int signo) -{ - GNode *gn; - - if ((curTarg != NULL) && !Targ_Precious (curTarg)) { - char *p1; - char *file = Var_Value(TARGET, curTarg, &p1); - - if (!noExecute && eunlink(file) != -1) { - Error("*** %s removed", file); - } - if (p1) - free(p1); - - /* - * Run .INTERRUPT only if hit with interrupt signal - */ - if (signo == SIGINT) { - gn = Targ_FindNode(".INTERRUPT", TARG_NOCREATE); - if (gn != NULL) { - Compat_Make(gn, gn); - } - } - - } - if (signo == SIGQUIT) - _exit(signo); - bmake_signal(signo, SIG_DFL); - kill(myPid, signo); -} - -/*- - *----------------------------------------------------------------------- - * CompatRunCommand -- - * Execute the next command for a target. If the command returns an - * error, the node's made field is set to ERROR and creation stops. - * - * Input: - * cmdp Command to execute - * gnp Node from which the command came - * - * Results: - * 0 if the command succeeded, 1 if an error occurred. - * - * Side Effects: - * The node's 'made' field may be set to ERROR. - * - *----------------------------------------------------------------------- - */ -int -CompatRunCommand(void *cmdp, void *gnp) -{ - char *cmdStart; /* Start of expanded command */ - char *cp, *bp; - Boolean silent, /* Don't print command */ - doIt; /* Execute even if -n */ - volatile Boolean errCheck; /* Check errors */ - WAIT_T reason; /* Reason for child's death */ - int status; /* Description of child's death */ - pid_t cpid; /* Child actually found */ - pid_t retstat; /* Result of wait */ - LstNode cmdNode; /* Node where current command is located */ - const char ** volatile av; /* Argument vector for thing to exec */ - char ** volatile mav;/* Copy of the argument vector for freeing */ - int argc; /* Number of arguments in av or 0 if not - * dynamically allocated */ - Boolean local; /* TRUE if command should be executed - * locally */ - Boolean useShell; /* TRUE if command should be executed - * using a shell */ - char * volatile cmd = (char *)cmdp; - GNode *gn = (GNode *)gnp; - - silent = gn->type & OP_SILENT; - errCheck = !(gn->type & OP_IGNORE); - doIt = FALSE; - - cmdNode = Lst_Member(gn->commands, cmd); - cmdStart = Var_Subst(NULL, cmd, gn, FALSE); - - /* - * brk_string will return an argv with a NULL in av[0], thus causing - * execvp to choke and die horribly. Besides, how can we execute a null - * command? In any case, we warn the user that the command expanded to - * nothing (is this the right thing to do?). - */ - - if (*cmdStart == '\0') { - free(cmdStart); - Error("%s expands to empty string", cmd); - return(0); - } - cmd = cmdStart; - Lst_Replace(cmdNode, cmdStart); - - if ((gn->type & OP_SAVE_CMDS) && (gn != ENDNode)) { - (void)Lst_AtEnd(ENDNode->commands, cmdStart); - return(0); - } - if (strcmp(cmdStart, "...") == 0) { - gn->type |= OP_SAVE_CMDS; - return(0); - } - - while ((*cmd == '@') || (*cmd == '-') || (*cmd == '+')) { - switch (*cmd) { - case '@': - silent = DEBUG(LOUD) ? FALSE : TRUE; - break; - case '-': - errCheck = FALSE; - break; - case '+': - doIt = TRUE; - if (!meta[0]) /* we came here from jobs */ - Compat_Init(); - break; - } - cmd++; - } - - while (isspace((unsigned char)*cmd)) - cmd++; - - /* - * If we did not end up with a command, just skip it. - */ - if (!*cmd) - return (0); - -#if !defined(MAKE_NATIVE) - /* - * In a non-native build, the host environment might be weird enough - * that it's necessary to go through a shell to get the correct - * behaviour. Or perhaps the shell has been replaced with something - * that does extra logging, and that should not be bypassed. - */ - useShell = TRUE; -#else - /* - * Search for meta characters in the command. If there are no meta - * characters, there's no need to execute a shell to execute the - * command. - */ - for (cp = cmd; !meta[(unsigned char)*cp]; cp++) { - continue; - } - useShell = (*cp != '\0'); -#endif - - /* - * Print the command before echoing if we're not supposed to be quiet for - * this one. We also print the command if -n given. - */ - if (!silent || NoExecute(gn)) { - printf("%s\n", cmd); - fflush(stdout); - } - - /* - * If we're not supposed to execute any commands, this is as far as - * we go... - */ - if (!doIt && NoExecute(gn)) { - return (0); - } - if (DEBUG(JOB)) - fprintf(debug_file, "Execute: '%s'\n", cmd); - -again: - if (useShell) { - /* - * We need to pass the command off to the shell, typically - * because the command contains a "meta" character. - */ - static const char *shargv[4]; - - shargv[0] = shellPath; - /* - * The following work for any of the builtin shell specs. - */ - if (DEBUG(SHELL)) - shargv[1] = "-xc"; - else - shargv[1] = "-c"; - shargv[2] = cmd; - shargv[3] = NULL; - av = shargv; - argc = 0; - bp = NULL; - mav = NULL; - } else { - /* - * No meta-characters, so no need to exec a shell. Break the command - * into words to form an argument vector we can execute. - */ - mav = brk_string(cmd, &argc, TRUE, &bp); - if (mav == NULL) { - useShell = 1; - goto again; - } - av = (void *)mav; - } - - local = TRUE; - -#ifdef USE_META - if (useMeta) { - meta_compat_start(); - } -#endif - - /* - * Fork and execute the single command. If the fork fails, we abort. - */ - cpid = vFork(); - if (cpid < 0) { - Fatal("Could not fork"); - } - if (cpid == 0) { - Check_Cwd(av); - Var_ExportVars(); -#ifdef USE_META - if (useMeta) { - meta_compat_child(); - } -#endif - if (local) - (void)execvp(av[0], (char *const *)UNCONST(av)); - else - (void)execv(av[0], (char *const *)UNCONST(av)); - execError("exec", av[0]); - _exit(1); - } - if (mav) - free(mav); - if (bp) - free(bp); - Lst_Replace(cmdNode, NULL); - -#ifdef USE_META - if (useMeta) { - meta_compat_parent(); - } -#endif - - /* - * The child is off and running. Now all we can do is wait... - */ - while (1) { - - while ((retstat = wait(&reason)) != cpid) { - if (retstat > 0) - JobReapChild(retstat, reason, FALSE); /* not ours? */ - if (retstat == -1 && errno != EINTR) { - break; - } - } - - if (retstat > -1) { - if (WIFSTOPPED(reason)) { - status = WSTOPSIG(reason); /* stopped */ - } else if (WIFEXITED(reason)) { - status = WEXITSTATUS(reason); /* exited */ -#if defined(USE_META) && defined(USE_FILEMON_ONCE) - if (useMeta) { - meta_cmd_finish(NULL); - } -#endif - if (status != 0) { - if (DEBUG(ERROR)) { - fprintf(debug_file, "\n*** Failed target: %s\n*** Failed command: ", - gn->name); - for (cp = cmd; *cp; ) { - if (isspace((unsigned char)*cp)) { - fprintf(debug_file, " "); - while (isspace((unsigned char)*cp)) - cp++; - } else { - fprintf(debug_file, "%c", *cp); - cp++; - } - } - fprintf(debug_file, "\n"); - } - printf("*** Error code %d", status); - } - } else { - status = WTERMSIG(reason); /* signaled */ - printf("*** Signal %d", status); - } - - - if (!WIFEXITED(reason) || (status != 0)) { - if (errCheck) { -#ifdef USE_META - if (useMeta) { - meta_job_error(NULL, gn, 0, status); - } -#endif - gn->made = ERROR; - if (keepgoing) { - /* - * Abort the current target, but let others - * continue. - */ - printf(" (continuing)\n"); - } - } else { - /* - * Continue executing commands for this target. - * If we return 0, this will happen... - */ - printf(" (ignored)\n"); - status = 0; - } - } - break; - } else { - Fatal("error in wait: %d: %s", retstat, strerror(errno)); - /*NOTREACHED*/ - } - } - free(cmdStart); - - return (status); -} - -/*- - *----------------------------------------------------------------------- - * Compat_Make -- - * Make a target. - * - * Input: - * gnp The node to make - * pgnp Parent to abort if necessary - * - * Results: - * 0 - * - * Side Effects: - * If an error is detected and not being ignored, the process exits. - * - *----------------------------------------------------------------------- - */ -int -Compat_Make(void *gnp, void *pgnp) -{ - GNode *gn = (GNode *)gnp; - GNode *pgn = (GNode *)pgnp; - - if (!meta[0]) /* we came here from jobs */ - Compat_Init(); - if (gn->made == UNMADE && (gn == pgn || (pgn->type & OP_MADE) == 0)) { - /* - * First mark ourselves to be made, then apply whatever transformations - * the suffix module thinks are necessary. Once that's done, we can - * descend and make all our children. If any of them has an error - * but the -k flag was given, our 'make' field will be set FALSE again. - * This is our signal to not attempt to do anything but abort our - * parent as well. - */ - gn->flags |= REMAKE; - gn->made = BEINGMADE; - if ((gn->type & OP_MADE) == 0) - Suff_FindDeps(gn); - Lst_ForEach(gn->children, Compat_Make, gn); - if ((gn->flags & REMAKE) == 0) { - gn->made = ABORTED; - pgn->flags &= ~REMAKE; - goto cohorts; - } - - if (Lst_Member(gn->iParents, pgn) != NULL) { - char *p1; - Var_Set(IMPSRC, Var_Value(TARGET, gn, &p1), pgn, 0); - if (p1) - free(p1); - } - - /* - * All the children were made ok. Now cmgn->mtime contains the - * modification time of the newest child, we need to find out if we - * exist and when we were modified last. The criteria for datedness - * are defined by the Make_OODate function. - */ - if (DEBUG(MAKE)) { - fprintf(debug_file, "Examining %s...", gn->name); - } - if (! Make_OODate(gn)) { - gn->made = UPTODATE; - if (DEBUG(MAKE)) { - fprintf(debug_file, "up-to-date.\n"); - } - goto cohorts; - } else if (DEBUG(MAKE)) { - fprintf(debug_file, "out-of-date.\n"); - } - - /* - * If the user is just seeing if something is out-of-date, exit now - * to tell him/her "yes". - */ - if (queryFlag) { - exit(1); - } - - /* - * We need to be re-made. We also have to make sure we've got a $? - * variable. To be nice, we also define the $> variable using - * Make_DoAllVar(). - */ - Make_DoAllVar(gn); - - /* - * Alter our type to tell if errors should be ignored or things - * should not be printed so CompatRunCommand knows what to do. - */ - if (Targ_Ignore(gn)) { - gn->type |= OP_IGNORE; - } - if (Targ_Silent(gn)) { - gn->type |= OP_SILENT; - } - - if (Job_CheckCommands(gn, Fatal)) { - /* - * Our commands are ok, but we still have to worry about the -t - * flag... - */ - if (!touchFlag || (gn->type & OP_MAKE)) { - curTarg = gn; -#ifdef USE_META - if (useMeta && !NoExecute(gn)) { - meta_job_start(NULL, gn); - } -#endif - Lst_ForEach(gn->commands, CompatRunCommand, gn); - curTarg = NULL; - } else { - Job_Touch(gn, gn->type & OP_SILENT); - } - } else { - gn->made = ERROR; - } -#ifdef USE_META - if (useMeta && !NoExecute(gn)) { - meta_job_finish(NULL); - } -#endif - - if (gn->made != ERROR) { - /* - * If the node was made successfully, mark it so, update - * its modification time and timestamp all its parents. Note - * that for .ZEROTIME targets, the timestamping isn't done. - * This is to keep its state from affecting that of its parent. - */ - gn->made = MADE; - pgn->flags |= Make_Recheck(gn) == 0 ? FORCE : 0; - if (!(gn->type & OP_EXEC)) { - pgn->flags |= CHILDMADE; - Make_TimeStamp(pgn, gn); - } - } else if (keepgoing) { - pgn->flags &= ~REMAKE; - } else { - PrintOnError(gn, "\n\nStop."); - exit(1); - } - } else if (gn->made == ERROR) { - /* - * Already had an error when making this beastie. Tell the parent - * to abort. - */ - pgn->flags &= ~REMAKE; - } else { - if (Lst_Member(gn->iParents, pgn) != NULL) { - char *p1; - Var_Set(IMPSRC, Var_Value(TARGET, gn, &p1), pgn, 0); - if (p1) - free(p1); - } - switch(gn->made) { - case BEINGMADE: - Error("Graph cycles through %s", gn->name); - gn->made = ERROR; - pgn->flags &= ~REMAKE; - break; - case MADE: - if ((gn->type & OP_EXEC) == 0) { - pgn->flags |= CHILDMADE; - Make_TimeStamp(pgn, gn); - } - break; - case UPTODATE: - if ((gn->type & OP_EXEC) == 0) { - Make_TimeStamp(pgn, gn); - } - break; - default: - break; - } - } - -cohorts: - Lst_ForEach(gn->cohorts, Compat_Make, pgnp); - return (0); -} - -/*- - *----------------------------------------------------------------------- - * Compat_Run -- - * Initialize this mode and start making. - * - * Input: - * targs List of target nodes to re-create - * - * Results: - * None. - * - * Side Effects: - * Guess what? - * - *----------------------------------------------------------------------- - */ -void -Compat_Run(Lst targs) -{ - GNode *gn = NULL;/* Current root target */ - int errors; /* Number of targets not remade due to errors */ - - Compat_Init(); - - if (bmake_signal(SIGINT, SIG_IGN) != SIG_IGN) { - bmake_signal(SIGINT, CompatInterrupt); - } - if (bmake_signal(SIGTERM, SIG_IGN) != SIG_IGN) { - bmake_signal(SIGTERM, CompatInterrupt); - } - if (bmake_signal(SIGHUP, SIG_IGN) != SIG_IGN) { - bmake_signal(SIGHUP, CompatInterrupt); - } - if (bmake_signal(SIGQUIT, SIG_IGN) != SIG_IGN) { - bmake_signal(SIGQUIT, CompatInterrupt); - } - - ENDNode = Targ_FindNode(".END", TARG_CREATE); - ENDNode->type = OP_SPECIAL; - /* - * If the user has defined a .BEGIN target, execute the commands attached - * to it. - */ - if (!queryFlag) { - gn = Targ_FindNode(".BEGIN", TARG_NOCREATE); - if (gn != NULL) { - Compat_Make(gn, gn); - if (gn->made == ERROR) { - PrintOnError(gn, "\n\nStop."); - exit(1); - } - } - } - - /* - * Expand .USE nodes right now, because they can modify the structure - * of the tree. - */ - Make_ExpandUse(targs); - - /* - * For each entry in the list of targets to create, call Compat_Make on - * it to create the thing. Compat_Make will leave the 'made' field of gn - * in one of several states: - * UPTODATE gn was already up-to-date - * MADE gn was recreated successfully - * ERROR An error occurred while gn was being created - * ABORTED gn was not remade because one of its inferiors - * could not be made due to errors. - */ - errors = 0; - while (!Lst_IsEmpty (targs)) { - gn = (GNode *)Lst_DeQueue(targs); - Compat_Make(gn, gn); - - if (gn->made == UPTODATE) { - printf("`%s' is up to date.\n", gn->name); - } else if (gn->made == ABORTED) { - printf("`%s' not remade because of errors.\n", gn->name); - errors += 1; - } - } - - /* - * If the user has defined a .END target, run its commands. - */ - if (errors == 0) { - Compat_Make(ENDNode, ENDNode); - if (gn->made == ERROR) { - PrintOnError(gn, "\n\nStop."); - exit(1); - } - } -} diff --git a/external/bsd/bmake/dist/cond.c b/external/bsd/bmake/dist/cond.c deleted file mode 100644 index 6d0b965e6841..000000000000 --- a/external/bsd/bmake/dist/cond.c +++ /dev/null @@ -1,1410 +0,0 @@ -/* $NetBSD: cond.c,v 1.64 2012/06/12 19:21:50 joerg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: cond.c,v 1.64 2012/06/12 19:21:50 joerg Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)cond.c 8.2 (Berkeley) 1/2/94"; -#else -__RCSID("$NetBSD: cond.c,v 1.64 2012/06/12 19:21:50 joerg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * cond.c -- - * Functions to handle conditionals in a makefile. - * - * Interface: - * Cond_Eval Evaluate the conditional in the passed line. - * - */ - -#include -#include /* For strtoul() error checking */ - -#include "make.h" -#include "hash.h" -#include "dir.h" -#include "buf.h" - -/* - * The parsing of conditional expressions is based on this grammar: - * E -> F || E - * E -> F - * F -> T && F - * F -> T - * T -> defined(variable) - * T -> make(target) - * T -> exists(file) - * T -> empty(varspec) - * T -> target(name) - * T -> commands(name) - * T -> symbol - * T -> $(varspec) op value - * T -> $(varspec) == "string" - * T -> $(varspec) != "string" - * T -> "string" - * T -> ( E ) - * T -> ! T - * op -> == | != | > | < | >= | <= - * - * 'symbol' is some other symbol to which the default function (condDefProc) - * is applied. - * - * Tokens are scanned from the 'condExpr' string. The scanner (CondToken) - * will return TOK_AND for '&' and '&&', TOK_OR for '|' and '||', - * TOK_NOT for '!', TOK_LPAREN for '(', TOK_RPAREN for ')' and will evaluate - * the other terminal symbols, using either the default function or the - * function given in the terminal, and return the result as either TOK_TRUE - * or TOK_FALSE. - * - * TOK_FALSE is 0 and TOK_TRUE 1 so we can directly assign C comparisons. - * - * All Non-Terminal functions (CondE, CondF and CondT) return TOK_ERROR on - * error. - */ -typedef enum { - TOK_FALSE = 0, TOK_TRUE = 1, TOK_AND, TOK_OR, TOK_NOT, - TOK_LPAREN, TOK_RPAREN, TOK_EOF, TOK_NONE, TOK_ERROR -} Token; - -/*- - * Structures to handle elegantly the different forms of #if's. The - * last two fields are stored in condInvert and condDefProc, respectively. - */ -static void CondPushBack(Token); -static int CondGetArg(char **, char **, const char *); -static Boolean CondDoDefined(int, const char *); -static int CondStrMatch(const void *, const void *); -static Boolean CondDoMake(int, const char *); -static Boolean CondDoExists(int, const char *); -static Boolean CondDoTarget(int, const char *); -static Boolean CondDoCommands(int, const char *); -static Boolean CondCvtArg(char *, double *); -static Token CondToken(Boolean); -static Token CondT(Boolean); -static Token CondF(Boolean); -static Token CondE(Boolean); -static int do_Cond_EvalExpression(Boolean *); - -static const struct If { - const char *form; /* Form of if */ - int formlen; /* Length of form */ - Boolean doNot; /* TRUE if default function should be negated */ - Boolean (*defProc)(int, const char *); /* Default function to apply */ -} ifs[] = { - { "def", 3, FALSE, CondDoDefined }, - { "ndef", 4, TRUE, CondDoDefined }, - { "make", 4, FALSE, CondDoMake }, - { "nmake", 5, TRUE, CondDoMake }, - { "", 0, FALSE, CondDoDefined }, - { NULL, 0, FALSE, NULL } -}; - -static const struct If *if_info; /* Info for current statement */ -static char *condExpr; /* The expression to parse */ -static Token condPushBack=TOK_NONE; /* Single push-back token used in - * parsing */ - -static unsigned int cond_depth = 0; /* current .if nesting level */ -static unsigned int cond_min_depth = 0; /* depth at makefile open */ - -static int -istoken(const char *str, const char *tok, size_t len) -{ - return strncmp(str, tok, len) == 0 && !isalpha((unsigned char)str[len]); -} - -/*- - *----------------------------------------------------------------------- - * CondPushBack -- - * Push back the most recent token read. We only need one level of - * this, so the thing is just stored in 'condPushback'. - * - * Input: - * t Token to push back into the "stream" - * - * Results: - * None. - * - * Side Effects: - * condPushback is overwritten. - * - *----------------------------------------------------------------------- - */ -static void -CondPushBack(Token t) -{ - condPushBack = t; -} - -/*- - *----------------------------------------------------------------------- - * CondGetArg -- - * Find the argument of a built-in function. - * - * Input: - * parens TRUE if arg should be bounded by parens - * - * Results: - * The length of the argument and the address of the argument. - * - * Side Effects: - * The pointer is set to point to the closing parenthesis of the - * function call. - * - *----------------------------------------------------------------------- - */ -static int -CondGetArg(char **linePtr, char **argPtr, const char *func) -{ - char *cp; - int argLen; - Buffer buf; - int paren_depth; - char ch; - - cp = *linePtr; - if (func != NULL) - /* Skip opening '(' - verfied by caller */ - cp++; - - if (*cp == '\0') { - /* - * No arguments whatsoever. Because 'make' and 'defined' aren't really - * "reserved words", we don't print a message. I think this is better - * than hitting the user with a warning message every time s/he uses - * the word 'make' or 'defined' at the beginning of a symbol... - */ - *argPtr = NULL; - return (0); - } - - while (*cp == ' ' || *cp == '\t') { - cp++; - } - - /* - * Create a buffer for the argument and start it out at 16 characters - * long. Why 16? Why not? - */ - Buf_Init(&buf, 16); - - paren_depth = 0; - for (;;) { - ch = *cp; - if (ch == 0 || ch == ' ' || ch == '\t') - break; - if ((ch == '&' || ch == '|') && paren_depth == 0) - break; - if (*cp == '$') { - /* - * Parse the variable spec and install it as part of the argument - * if it's valid. We tell Var_Parse to complain on an undefined - * variable, so we don't do it too. Nor do we return an error, - * though perhaps we should... - */ - char *cp2; - int len; - void *freeIt; - - cp2 = Var_Parse(cp, VAR_CMD, TRUE, &len, &freeIt); - Buf_AddBytes(&buf, strlen(cp2), cp2); - if (freeIt) - free(freeIt); - cp += len; - continue; - } - if (ch == '(') - paren_depth++; - else - if (ch == ')' && --paren_depth < 0) - break; - Buf_AddByte(&buf, *cp); - cp++; - } - - *argPtr = Buf_GetAll(&buf, &argLen); - Buf_Destroy(&buf, FALSE); - - while (*cp == ' ' || *cp == '\t') { - cp++; - } - - if (func != NULL && *cp++ != ')') { - Parse_Error(PARSE_WARNING, "Missing closing parenthesis for %s()", - func); - return (0); - } - - *linePtr = cp; - return (argLen); -} - -/*- - *----------------------------------------------------------------------- - * CondDoDefined -- - * Handle the 'defined' function for conditionals. - * - * Results: - * TRUE if the given variable is defined. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static Boolean -CondDoDefined(int argLen MAKE_ATTR_UNUSED, const char *arg) -{ - char *p1; - Boolean result; - - if (Var_Value(arg, VAR_CMD, &p1) != NULL) { - result = TRUE; - } else { - result = FALSE; - } - if (p1) - free(p1); - return (result); -} - -/*- - *----------------------------------------------------------------------- - * CondStrMatch -- - * Front-end for Str_Match so it returns 0 on match and non-zero - * on mismatch. Callback function for CondDoMake via Lst_Find - * - * Results: - * 0 if string matches pattern - * - * Side Effects: - * None - * - *----------------------------------------------------------------------- - */ -static int -CondStrMatch(const void *string, const void *pattern) -{ - return(!Str_Match(string, pattern)); -} - -/*- - *----------------------------------------------------------------------- - * CondDoMake -- - * Handle the 'make' function for conditionals. - * - * Results: - * TRUE if the given target is being made. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static Boolean -CondDoMake(int argLen MAKE_ATTR_UNUSED, const char *arg) -{ - return Lst_Find(create, arg, CondStrMatch) != NULL; -} - -/*- - *----------------------------------------------------------------------- - * CondDoExists -- - * See if the given file exists. - * - * Results: - * TRUE if the file exists and FALSE if it does not. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static Boolean -CondDoExists(int argLen MAKE_ATTR_UNUSED, const char *arg) -{ - Boolean result; - char *path; - - path = Dir_FindFile(arg, dirSearchPath); - if (DEBUG(COND)) { - fprintf(debug_file, "exists(%s) result is \"%s\"\n", - arg, path ? path : ""); - } - if (path != NULL) { - result = TRUE; - free(path); - } else { - result = FALSE; - } - return (result); -} - -/*- - *----------------------------------------------------------------------- - * CondDoTarget -- - * See if the given node exists and is an actual target. - * - * Results: - * TRUE if the node exists as a target and FALSE if it does not. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static Boolean -CondDoTarget(int argLen MAKE_ATTR_UNUSED, const char *arg) -{ - GNode *gn; - - gn = Targ_FindNode(arg, TARG_NOCREATE); - return (gn != NULL) && !OP_NOP(gn->type); -} - -/*- - *----------------------------------------------------------------------- - * CondDoCommands -- - * See if the given node exists and is an actual target with commands - * associated with it. - * - * Results: - * TRUE if the node exists as a target and has commands associated with - * it and FALSE if it does not. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static Boolean -CondDoCommands(int argLen MAKE_ATTR_UNUSED, const char *arg) -{ - GNode *gn; - - gn = Targ_FindNode(arg, TARG_NOCREATE); - return (gn != NULL) && !OP_NOP(gn->type) && !Lst_IsEmpty(gn->commands); -} - -/*- - *----------------------------------------------------------------------- - * CondCvtArg -- - * Convert the given number into a double. - * We try a base 10 or 16 integer conversion first, if that fails - * then we try a floating point conversion instead. - * - * Results: - * Sets 'value' to double value of string. - * Returns 'true' if the convertion suceeded - * - *----------------------------------------------------------------------- - */ -static Boolean -CondCvtArg(char *str, double *value) -{ - char *eptr, ech; - unsigned long l_val; - double d_val; - - errno = 0; - l_val = strtoul(str, &eptr, str[1] == 'x' ? 16 : 10); - ech = *eptr; - if (ech == 0 && errno != ERANGE) { - d_val = str[0] == '-' ? -(double)-l_val : (double)l_val; - } else { - if (ech != 0 && ech != '.' && ech != 'e' && ech != 'E') - return FALSE; - d_val = strtod(str, &eptr); - if (*eptr) - return FALSE; - } - - *value = d_val; - return TRUE; -} - -/*- - *----------------------------------------------------------------------- - * CondGetString -- - * Get a string from a variable reference or an optionally quoted - * string. This is called for the lhs and rhs of string compares. - * - * Results: - * Sets freeIt if needed, - * Sets quoted if string was quoted, - * Returns NULL on error, - * else returns string - absent any quotes. - * - * Side Effects: - * Moves condExpr to end of this token. - * - * - *----------------------------------------------------------------------- - */ -/* coverity:[+alloc : arg-*2] */ -static char * -CondGetString(Boolean doEval, Boolean *quoted, void **freeIt) -{ - Buffer buf; - char *cp; - char *str; - int len; - int qt; - char *start; - - Buf_Init(&buf, 0); - str = NULL; - *freeIt = NULL; - *quoted = qt = *condExpr == '"' ? 1 : 0; - if (qt) - condExpr++; - for (start = condExpr; *condExpr && str == NULL; condExpr++) { - switch (*condExpr) { - case '\\': - if (condExpr[1] != '\0') { - condExpr++; - Buf_AddByte(&buf, *condExpr); - } - break; - case '"': - if (qt) { - condExpr++; /* we don't want the quotes */ - goto got_str; - } else - Buf_AddByte(&buf, *condExpr); /* likely? */ - break; - case ')': - case '!': - case '=': - case '>': - case '<': - case ' ': - case '\t': - if (!qt) - goto got_str; - else - Buf_AddByte(&buf, *condExpr); - break; - case '$': - /* if we are in quotes, then an undefined variable is ok */ - str = Var_Parse(condExpr, VAR_CMD, (qt ? 0 : doEval), - &len, freeIt); - if (str == var_Error) { - if (*freeIt) { - free(*freeIt); - *freeIt = NULL; - } - /* - * Even if !doEval, we still report syntax errors, which - * is what getting var_Error back with !doEval means. - */ - str = NULL; - goto cleanup; - } - condExpr += len; - /* - * If the '$' was first char (no quotes), and we are - * followed by space, the operator or end of expression, - * we are done. - */ - if ((condExpr == start + len) && - (*condExpr == '\0' || - isspace((unsigned char) *condExpr) || - strchr("!=><)", *condExpr))) { - goto cleanup; - } - /* - * Nope, we better copy str to buf - */ - for (cp = str; *cp; cp++) { - Buf_AddByte(&buf, *cp); - } - if (*freeIt) { - free(*freeIt); - *freeIt = NULL; - } - str = NULL; /* not finished yet */ - condExpr--; /* don't skip over next char */ - break; - default: - Buf_AddByte(&buf, *condExpr); - break; - } - } - got_str: - str = Buf_GetAll(&buf, NULL); - *freeIt = str; - cleanup: - Buf_Destroy(&buf, FALSE); - return str; -} - -/*- - *----------------------------------------------------------------------- - * CondToken -- - * Return the next token from the input. - * - * Results: - * A Token for the next lexical token in the stream. - * - * Side Effects: - * condPushback will be set back to TOK_NONE if it is used. - * - *----------------------------------------------------------------------- - */ -static Token -compare_expression(Boolean doEval) -{ - Token t; - char *lhs; - char *rhs; - char *op; - void *lhsFree; - void *rhsFree; - Boolean lhsQuoted; - Boolean rhsQuoted; - double left, right; - - t = TOK_ERROR; - rhs = NULL; - lhsFree = rhsFree = FALSE; - lhsQuoted = rhsQuoted = FALSE; - - /* - * Parse the variable spec and skip over it, saving its - * value in lhs. - */ - lhs = CondGetString(doEval, &lhsQuoted, &lhsFree); - if (!lhs) - goto done; - - /* - * Skip whitespace to get to the operator - */ - while (isspace((unsigned char) *condExpr)) - condExpr++; - - /* - * Make sure the operator is a valid one. If it isn't a - * known relational operator, pretend we got a - * != 0 comparison. - */ - op = condExpr; - switch (*condExpr) { - case '!': - case '=': - case '<': - case '>': - if (condExpr[1] == '=') { - condExpr += 2; - } else { - condExpr += 1; - } - break; - default: - if (!doEval) { - t = TOK_FALSE; - goto done; - } - /* For .ifxxx "..." check for non-empty string. */ - if (lhsQuoted) { - t = lhs[0] != 0; - goto done; - } - /* For .ifxxx compare against zero */ - if (CondCvtArg(lhs, &left)) { - t = left != 0.0; - goto done; - } - /* For .if ${...} check for non-empty string (defProc is ifdef). */ - if (if_info->form[0] == 0) { - t = lhs[0] != 0; - goto done; - } - /* Otherwise action default test ... */ - t = if_info->defProc(strlen(lhs), lhs) != if_info->doNot; - goto done; - } - - while (isspace((unsigned char)*condExpr)) - condExpr++; - - if (*condExpr == '\0') { - Parse_Error(PARSE_WARNING, - "Missing right-hand-side of operator"); - goto done; - } - - rhs = CondGetString(doEval, &rhsQuoted, &rhsFree); - if (!rhs) - goto done; - - if (rhsQuoted || lhsQuoted) { -do_string_compare: - if (((*op != '!') && (*op != '=')) || (op[1] != '=')) { - Parse_Error(PARSE_WARNING, - "String comparison operator should be either == or !="); - goto done; - } - - if (DEBUG(COND)) { - fprintf(debug_file, "lhs = \"%s\", rhs = \"%s\", op = %.2s\n", - lhs, rhs, op); - } - /* - * Null-terminate rhs and perform the comparison. - * t is set to the result. - */ - if (*op == '=') { - t = strcmp(lhs, rhs) == 0; - } else { - t = strcmp(lhs, rhs) != 0; - } - } else { - /* - * rhs is either a float or an integer. Convert both the - * lhs and the rhs to a double and compare the two. - */ - - if (!CondCvtArg(lhs, &left) || !CondCvtArg(rhs, &right)) - goto do_string_compare; - - if (DEBUG(COND)) { - fprintf(debug_file, "left = %f, right = %f, op = %.2s\n", left, - right, op); - } - switch(op[0]) { - case '!': - if (op[1] != '=') { - Parse_Error(PARSE_WARNING, - "Unknown operator"); - goto done; - } - t = (left != right); - break; - case '=': - if (op[1] != '=') { - Parse_Error(PARSE_WARNING, - "Unknown operator"); - goto done; - } - t = (left == right); - break; - case '<': - if (op[1] == '=') { - t = (left <= right); - } else { - t = (left < right); - } - break; - case '>': - if (op[1] == '=') { - t = (left >= right); - } else { - t = (left > right); - } - break; - } - } - -done: - if (lhsFree) - free(lhsFree); - if (rhsFree) - free(rhsFree); - return t; -} - -static int -get_mpt_arg(char **linePtr, char **argPtr, const char *func MAKE_ATTR_UNUSED) -{ - /* - * Use Var_Parse to parse the spec in parens and return - * TOK_TRUE if the resulting string is empty. - */ - int length; - void *freeIt; - char *val; - char *cp = *linePtr; - - /* We do all the work here and return the result as the length */ - *argPtr = NULL; - - val = Var_Parse(cp - 1, VAR_CMD, FALSE, &length, &freeIt); - /* - * Advance *linePtr to beyond the closing ). Note that - * we subtract one because 'length' is calculated from 'cp - 1'. - */ - *linePtr = cp - 1 + length; - - if (val == var_Error) { - free(freeIt); - return -1; - } - - /* A variable is empty when it just contains spaces... 4/15/92, christos */ - while (isspace(*(unsigned char *)val)) - val++; - - /* - * For consistency with the other functions we can't generate the - * true/false here. - */ - length = *val ? 2 : 1; - if (freeIt) - free(freeIt); - return length; -} - -static Boolean -CondDoEmpty(int arglen, const char *arg MAKE_ATTR_UNUSED) -{ - return arglen == 1; -} - -static Token -compare_function(Boolean doEval) -{ - static const struct fn_def { - const char *fn_name; - int fn_name_len; - int (*fn_getarg)(char **, char **, const char *); - Boolean (*fn_proc)(int, const char *); - } fn_defs[] = { - { "defined", 7, CondGetArg, CondDoDefined }, - { "make", 4, CondGetArg, CondDoMake }, - { "exists", 6, CondGetArg, CondDoExists }, - { "empty", 5, get_mpt_arg, CondDoEmpty }, - { "target", 6, CondGetArg, CondDoTarget }, - { "commands", 8, CondGetArg, CondDoCommands }, - { NULL, 0, NULL, NULL }, - }; - const struct fn_def *fn_def; - Token t; - char *arg = NULL; - int arglen; - char *cp = condExpr; - char *cp1; - - for (fn_def = fn_defs; fn_def->fn_name != NULL; fn_def++) { - if (!istoken(cp, fn_def->fn_name, fn_def->fn_name_len)) - continue; - cp += fn_def->fn_name_len; - /* There can only be whitespace before the '(' */ - while (isspace(*(unsigned char *)cp)) - cp++; - if (*cp != '(') - break; - - arglen = fn_def->fn_getarg(&cp, &arg, fn_def->fn_name); - if (arglen <= 0) { - condExpr = cp; - return arglen < 0 ? TOK_ERROR : TOK_FALSE; - } - /* Evaluate the argument using the required function. */ - t = !doEval || fn_def->fn_proc(arglen, arg); - if (arg) - free(arg); - condExpr = cp; - return t; - } - - /* Push anything numeric through the compare expression */ - cp = condExpr; - if (isdigit((unsigned char)cp[0]) || strchr("+-", cp[0])) - return compare_expression(doEval); - - /* - * Most likely we have a naked token to apply the default function to. - * However ".if a == b" gets here when the "a" is unquoted and doesn't - * start with a '$'. This surprises people. - * If what follows the function argument is a '=' or '!' then the syntax - * would be invalid if we did "defined(a)" - so instead treat as an - * expression. - */ - arglen = CondGetArg(&cp, &arg, NULL); - for (cp1 = cp; isspace(*(unsigned char *)cp1); cp1++) - continue; - if (*cp1 == '=' || *cp1 == '!') - return compare_expression(doEval); - condExpr = cp; - - /* - * Evaluate the argument using the default function. - * This path always treats .if as .ifdef. To get here the character - * after .if must have been taken literally, so the argument cannot - * be empty - even if it contained a variable expansion. - */ - t = !doEval || if_info->defProc(arglen, arg) != if_info->doNot; - if (arg) - free(arg); - return t; -} - -static Token -CondToken(Boolean doEval) -{ - Token t; - - t = condPushBack; - if (t != TOK_NONE) { - condPushBack = TOK_NONE; - return t; - } - - while (*condExpr == ' ' || *condExpr == '\t') { - condExpr++; - } - - switch (*condExpr) { - - case '(': - condExpr++; - return TOK_LPAREN; - - case ')': - condExpr++; - return TOK_RPAREN; - - case '|': - if (condExpr[1] == '|') { - condExpr++; - } - condExpr++; - return TOK_OR; - - case '&': - if (condExpr[1] == '&') { - condExpr++; - } - condExpr++; - return TOK_AND; - - case '!': - condExpr++; - return TOK_NOT; - - case '#': - case '\n': - case '\0': - return TOK_EOF; - - case '"': - case '$': - return compare_expression(doEval); - - default: - return compare_function(doEval); - } -} - -/*- - *----------------------------------------------------------------------- - * CondT -- - * Parse a single term in the expression. This consists of a terminal - * symbol or TOK_NOT and a terminal symbol (not including the binary - * operators): - * T -> defined(variable) | make(target) | exists(file) | symbol - * T -> ! T | ( E ) - * - * Results: - * TOK_TRUE, TOK_FALSE or TOK_ERROR. - * - * Side Effects: - * Tokens are consumed. - * - *----------------------------------------------------------------------- - */ -static Token -CondT(Boolean doEval) -{ - Token t; - - t = CondToken(doEval); - - if (t == TOK_EOF) { - /* - * If we reached the end of the expression, the expression - * is malformed... - */ - t = TOK_ERROR; - } else if (t == TOK_LPAREN) { - /* - * T -> ( E ) - */ - t = CondE(doEval); - if (t != TOK_ERROR) { - if (CondToken(doEval) != TOK_RPAREN) { - t = TOK_ERROR; - } - } - } else if (t == TOK_NOT) { - t = CondT(doEval); - if (t == TOK_TRUE) { - t = TOK_FALSE; - } else if (t == TOK_FALSE) { - t = TOK_TRUE; - } - } - return (t); -} - -/*- - *----------------------------------------------------------------------- - * CondF -- - * Parse a conjunctive factor (nice name, wot?) - * F -> T && F | T - * - * Results: - * TOK_TRUE, TOK_FALSE or TOK_ERROR - * - * Side Effects: - * Tokens are consumed. - * - *----------------------------------------------------------------------- - */ -static Token -CondF(Boolean doEval) -{ - Token l, o; - - l = CondT(doEval); - if (l != TOK_ERROR) { - o = CondToken(doEval); - - if (o == TOK_AND) { - /* - * F -> T && F - * - * If T is TOK_FALSE, the whole thing will be TOK_FALSE, but we have to - * parse the r.h.s. anyway (to throw it away). - * If T is TOK_TRUE, the result is the r.h.s., be it an TOK_ERROR or no. - */ - if (l == TOK_TRUE) { - l = CondF(doEval); - } else { - (void)CondF(FALSE); - } - } else { - /* - * F -> T - */ - CondPushBack(o); - } - } - return (l); -} - -/*- - *----------------------------------------------------------------------- - * CondE -- - * Main expression production. - * E -> F || E | F - * - * Results: - * TOK_TRUE, TOK_FALSE or TOK_ERROR. - * - * Side Effects: - * Tokens are, of course, consumed. - * - *----------------------------------------------------------------------- - */ -static Token -CondE(Boolean doEval) -{ - Token l, o; - - l = CondF(doEval); - if (l != TOK_ERROR) { - o = CondToken(doEval); - - if (o == TOK_OR) { - /* - * E -> F || E - * - * A similar thing occurs for ||, except that here we make sure - * the l.h.s. is TOK_FALSE before we bother to evaluate the r.h.s. - * Once again, if l is TOK_FALSE, the result is the r.h.s. and once - * again if l is TOK_TRUE, we parse the r.h.s. to throw it away. - */ - if (l == TOK_FALSE) { - l = CondE(doEval); - } else { - (void)CondE(FALSE); - } - } else { - /* - * E -> F - */ - CondPushBack(o); - } - } - return (l); -} - -/*- - *----------------------------------------------------------------------- - * Cond_EvalExpression -- - * Evaluate an expression in the passed line. The expression - * consists of &&, ||, !, make(target), defined(variable) - * and parenthetical groupings thereof. - * - * Results: - * COND_PARSE if the condition was valid grammatically - * COND_INVALID if not a valid conditional. - * - * (*value) is set to the boolean value of the condition - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -int -Cond_EvalExpression(const struct If *info, char *line, Boolean *value, int eprint) -{ - static const struct If *dflt_info; - const struct If *sv_if_info = if_info; - char *sv_condExpr = condExpr; - Token sv_condPushBack = condPushBack; - int rval; - - while (*line == ' ' || *line == '\t') - line++; - - if (info == NULL && (info = dflt_info) == NULL) { - /* Scan for the entry for .if - it can't be first */ - for (info = ifs; ; info++) - if (info->form[0] == 0) - break; - dflt_info = info; - } - - if_info = info != NULL ? info : ifs + 4; - condExpr = line; - condPushBack = TOK_NONE; - - rval = do_Cond_EvalExpression(value); - - if (rval == COND_INVALID && eprint) - Parse_Error(PARSE_FATAL, "Malformed conditional (%s)", line); - - if_info = sv_if_info; - condExpr = sv_condExpr; - condPushBack = sv_condPushBack; - - return rval; -} - -static int -do_Cond_EvalExpression(Boolean *value) -{ - - switch (CondE(TRUE)) { - case TOK_TRUE: - if (CondToken(TRUE) == TOK_EOF) { - *value = TRUE; - return COND_PARSE; - } - break; - case TOK_FALSE: - if (CondToken(TRUE) == TOK_EOF) { - *value = FALSE; - return COND_PARSE; - } - break; - default: - case TOK_ERROR: - break; - } - - return COND_INVALID; -} - - -/*- - *----------------------------------------------------------------------- - * Cond_Eval -- - * Evaluate the conditional in the passed line. The line - * looks like this: - * . - * where is any of if, ifmake, ifnmake, ifdef, - * ifndef, elif, elifmake, elifnmake, elifdef, elifndef - * and consists of &&, ||, !, make(target), defined(variable) - * and parenthetical groupings thereof. - * - * Input: - * line Line to parse - * - * Results: - * COND_PARSE if should parse lines after the conditional - * COND_SKIP if should skip lines after the conditional - * COND_INVALID if not a valid conditional. - * - * Side Effects: - * None. - * - * Note that the states IF_ACTIVE and ELSE_ACTIVE are only different in order - * to detect splurious .else lines (as are SKIP_TO_ELSE and SKIP_TO_ENDIF) - * otherwise .else could be treated as '.elif 1'. - * - *----------------------------------------------------------------------- - */ -int -Cond_Eval(char *line) -{ - #define MAXIF 128 /* maximum depth of .if'ing */ - enum if_states { - IF_ACTIVE, /* .if or .elif part active */ - ELSE_ACTIVE, /* .else part active */ - SEARCH_FOR_ELIF, /* searching for .elif/else to execute */ - SKIP_TO_ELSE, /* has been true, but not seen '.else' */ - SKIP_TO_ENDIF /* nothing else to execute */ - }; - static enum if_states cond_state[MAXIF + 1] = { IF_ACTIVE }; - - const struct If *ifp; - Boolean isElif; - Boolean value; - int level; /* Level at which to report errors. */ - enum if_states state; - - level = PARSE_FATAL; - - /* skip leading character (the '.') and any whitespace */ - for (line++; *line == ' ' || *line == '\t'; line++) - continue; - - /* Find what type of if we're dealing with. */ - if (line[0] == 'e') { - if (line[1] != 'l') { - if (!istoken(line + 1, "ndif", 4)) - return COND_INVALID; - /* End of conditional section */ - if (cond_depth == cond_min_depth) { - Parse_Error(level, "if-less endif"); - return COND_PARSE; - } - /* Return state for previous conditional */ - cond_depth--; - if (cond_depth > MAXIF) - return COND_SKIP; - return cond_state[cond_depth] <= ELSE_ACTIVE ? COND_PARSE : COND_SKIP; - } - - /* Quite likely this is 'else' or 'elif' */ - line += 2; - if (istoken(line, "se", 2)) { - /* It is else... */ - if (cond_depth == cond_min_depth) { - Parse_Error(level, "if-less else"); - return COND_PARSE; - } - - if (cond_depth > MAXIF) - return COND_SKIP; - state = cond_state[cond_depth]; - switch (state) { - case SEARCH_FOR_ELIF: - state = ELSE_ACTIVE; - break; - case ELSE_ACTIVE: - case SKIP_TO_ENDIF: - Parse_Error(PARSE_WARNING, "extra else"); - /* FALLTHROUGH */ - default: - case IF_ACTIVE: - case SKIP_TO_ELSE: - state = SKIP_TO_ENDIF; - break; - } - cond_state[cond_depth] = state; - return state <= ELSE_ACTIVE ? COND_PARSE : COND_SKIP; - } - /* Assume for now it is an elif */ - isElif = TRUE; - } else - isElif = FALSE; - - if (line[0] != 'i' || line[1] != 'f') - /* Not an ifxxx or elifxxx line */ - return COND_INVALID; - - /* - * Figure out what sort of conditional it is -- what its default - * function is, etc. -- by looking in the table of valid "ifs" - */ - line += 2; - for (ifp = ifs; ; ifp++) { - if (ifp->form == NULL) - return COND_INVALID; - if (istoken(ifp->form, line, ifp->formlen)) { - line += ifp->formlen; - break; - } - } - - /* Now we know what sort of 'if' it is... */ - - if (isElif) { - if (cond_depth == cond_min_depth) { - Parse_Error(level, "if-less elif"); - return COND_PARSE; - } - if (cond_depth > MAXIF) - /* Error reported when we saw the .if ... */ - return COND_SKIP; - state = cond_state[cond_depth]; - if (state == SKIP_TO_ENDIF || state == ELSE_ACTIVE) { - Parse_Error(PARSE_WARNING, "extra elif"); - cond_state[cond_depth] = SKIP_TO_ENDIF; - return COND_SKIP; - } - if (state != SEARCH_FOR_ELIF) { - /* Either just finished the 'true' block, or already SKIP_TO_ELSE */ - cond_state[cond_depth] = SKIP_TO_ELSE; - return COND_SKIP; - } - } else { - /* Normal .if */ - if (cond_depth >= MAXIF) { - cond_depth++; - Parse_Error(PARSE_FATAL, "Too many nested if's. %d max.", MAXIF); - return COND_SKIP; - } - state = cond_state[cond_depth]; - cond_depth++; - if (state > ELSE_ACTIVE) { - /* If we aren't parsing the data, treat as always false */ - cond_state[cond_depth] = SKIP_TO_ELSE; - return COND_SKIP; - } - } - - /* And evaluate the conditional expresssion */ - if (Cond_EvalExpression(ifp, line, &value, 1) == COND_INVALID) { - /* Syntax error in conditional, error message already output. */ - /* Skip everything to matching .endif */ - cond_state[cond_depth] = SKIP_TO_ELSE; - return COND_SKIP; - } - - if (!value) { - cond_state[cond_depth] = SEARCH_FOR_ELIF; - return COND_SKIP; - } - cond_state[cond_depth] = IF_ACTIVE; - return COND_PARSE; -} - - - -/*- - *----------------------------------------------------------------------- - * Cond_End -- - * Make sure everything's clean at the end of a makefile. - * - * Results: - * None. - * - * Side Effects: - * Parse_Error will be called if open conditionals are around. - * - *----------------------------------------------------------------------- - */ -void -Cond_restore_depth(unsigned int saved_depth) -{ - int open_conds = cond_depth - cond_min_depth; - - if (open_conds != 0 || saved_depth > cond_depth) { - Parse_Error(PARSE_FATAL, "%d open conditional%s", open_conds, - open_conds == 1 ? "" : "s"); - cond_depth = cond_min_depth; - } - - cond_min_depth = saved_depth; -} - -unsigned int -Cond_save_depth(void) -{ - int depth = cond_min_depth; - - cond_min_depth = cond_depth; - return depth; -} diff --git a/external/bsd/bmake/dist/config.h.in b/external/bsd/bmake/dist/config.h.in deleted file mode 100644 index 7108dcf2f67b..000000000000 --- a/external/bsd/bmake/dist/config.h.in +++ /dev/null @@ -1,314 +0,0 @@ -/* config.h.in. Generated from configure.in by autoheader. */ - -/* Define if building universal (internal helper macro) */ -#undef AC_APPLE_UNIVERSAL_BUILD - -/* Path of default shell */ -#undef DEFSHELL_CUSTOM - -/* Shell spec to use by default */ -#undef DEFSHELL_INDEX - -/* Define to 1 if you have the header file. */ -#undef HAVE_AR_H - -/* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you - don't. */ -#undef HAVE_DECL_SYS_SIGLIST - -/* Define to 1 if you have the header file, and it defines `DIR'. - */ -#undef HAVE_DIRENT_H - -/* Define to 1 if you have the `dirname' function. */ -#undef HAVE_DIRNAME - -/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */ -#undef HAVE_DOPRNT - -/* Define to 1 if you have the `err' function. */ -#undef HAVE_ERR - -/* Define to 1 if you have the `errx' function. */ -#undef HAVE_ERRX - -/* Define to 1 if you have the header file. */ -#undef HAVE_ERR_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_FCNTL_H - -/* Define to 1 if you have the `fork' function. */ -#undef HAVE_FORK - -/* Define to 1 if you have the `getcwd' function. */ -#undef HAVE_GETCWD - -/* Define to 1 if you have the `getenv' function. */ -#undef HAVE_GETENV - -/* Define to 1 if you have the `getopt' function. */ -#undef HAVE_GETOPT - -/* Define to 1 if you have the `getwd' function. */ -#undef HAVE_GETWD - -/* Define to 1 if you have the header file. */ -#undef HAVE_INTTYPES_H - -/* Define to 1 if you have the `killpg' function. */ -#undef HAVE_KILLPG - -/* Define to 1 if you have the header file. */ -#undef HAVE_MEMORY_H - -/* Define to 1 if you have the `mmap' function. */ -#undef HAVE_MMAP - -/* Define to 1 if you have the header file, and it defines `DIR'. */ -#undef HAVE_NDIR_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_PATHS_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_POLL_H - -/* Define to 1 if you have the `putenv' function. */ -#undef HAVE_PUTENV - -/* Define to 1 if you have the header file. */ -#undef HAVE_RANLIB_H - -/* Define to 1 if you have the `realpath' function. */ -#undef HAVE_REALPATH - -/* Define to 1 if you have the `select' function. */ -#undef HAVE_SELECT - -/* Define to 1 if you have the `setenv' function. */ -#undef HAVE_SETENV - -/* Define to 1 if you have the `setpgid' function. */ -#undef HAVE_SETPGID - -/* Define to 1 if you have the `setsid' function. */ -#undef HAVE_SETSID - -/* Define to 1 if you have the `sigaction' function. */ -#undef HAVE_SIGACTION - -/* Define to 1 if you have the `sigvec' function. */ -#undef HAVE_SIGVEC - -/* Define to 1 if you have the `snprintf' function. */ -#undef HAVE_SNPRINTF - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDLIB_H - -/* Define to 1 if you have the `strerror' function. */ -#undef HAVE_STRERROR - -/* Define to 1 if you have the `stresep' function. */ -#undef HAVE_STRESEP - -/* Define to 1 if you have the `strftime' function. */ -#undef HAVE_STRFTIME - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRING_H - -/* Define to 1 if you have the `strlcpy' function. */ -#undef HAVE_STRLCPY - -/* Define to 1 if you have the `strsep' function. */ -#undef HAVE_STRSEP - -/* Define to 1 if you have the `strtod' function. */ -#undef HAVE_STRTOD - -/* Define to 1 if you have the `strtol' function. */ -#undef HAVE_STRTOL - -/* Define to 1 if `struct stat' is a member of `st_rdev'. */ -#undef HAVE_STRUCT_STAT_ST_RDEV - -/* Define to 1 if your `struct stat' has `st_rdev'. Deprecated, use - `HAVE_STRUCT_STAT_ST_RDEV' instead. */ -#undef HAVE_ST_RDEV - -/* Define to 1 if you have the header file, and it defines `DIR'. - */ -#undef HAVE_SYS_DIR_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_MMAN_H - -/* Define to 1 if you have the header file, and it defines `DIR'. - */ -#undef HAVE_SYS_NDIR_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_SELECT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_SOCKET_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_STAT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TIME_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TYPES_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_UIO_H - -/* Define to 1 if you have that is POSIX.1 compatible. */ -#undef HAVE_SYS_WAIT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Define to 1 if you have the `unsetenv' function. */ -#undef HAVE_UNSETENV - -/* Define to 1 if you have the header file. */ -#undef HAVE_UTIME_H - -/* Define to 1 if you have the `vfork' function. */ -#undef HAVE_VFORK - -/* Define to 1 if you have the header file. */ -#undef HAVE_VFORK_H - -/* Define to 1 if you have the `vprintf' function. */ -#undef HAVE_VPRINTF - -/* Define to 1 if you have the `vsnprintf' function. */ -#undef HAVE_VSNPRINTF - -/* Define to 1 if you have the `wait3' function. */ -#undef HAVE_WAIT3 - -/* Define to 1 if you have the `wait4' function. */ -#undef HAVE_WAIT4 - -/* Define to 1 if you have the `waitpid' function. */ -#undef HAVE_WAITPID - -/* Define to 1 if you have the `warn' function. */ -#undef HAVE_WARN - -/* Define to 1 if you have the `warnx' function. */ -#undef HAVE_WARNX - -/* Define to 1 if `fork' works. */ -#undef HAVE_WORKING_FORK - -/* Define to 1 if `vfork' works. */ -#undef HAVE_WORKING_VFORK - -/* define if your compiler has __attribute__ */ -#undef HAVE___ATTRIBUTE__ - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the home page for this package. */ -#undef PACKAGE_URL - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - -/* Define as the return type of signal handlers (`int' or `void'). */ -#undef RETSIGTYPE - -/* Define to 1 if the `S_IS*' macros in do not work properly. */ -#undef STAT_MACROS_BROKEN - -/* Define to 1 if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Define to 1 if you can safely include both and . */ -#undef TIME_WITH_SYS_TIME - -/* Define to 1 if your declares `struct tm'. */ -#undef TM_IN_SYS_TIME - -/* Enable extensions on AIX 3, Interix. */ -#ifndef _ALL_SOURCE -# undef _ALL_SOURCE -#endif -/* Enable GNU extensions on systems that have them. */ -#ifndef _GNU_SOURCE -# undef _GNU_SOURCE -#endif -/* Enable threading extensions on Solaris. */ -#ifndef _POSIX_PTHREAD_SEMANTICS -# undef _POSIX_PTHREAD_SEMANTICS -#endif -/* Enable extensions on HP NonStop. */ -#ifndef _TANDEM_SOURCE -# undef _TANDEM_SOURCE -#endif -/* Enable general extensions on Solaris. */ -#ifndef __EXTENSIONS__ -# undef __EXTENSIONS__ -#endif - - -/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most - significant byte first (like Motorola and SPARC, unlike Intel). */ -#if defined AC_APPLE_UNIVERSAL_BUILD -# if defined __BIG_ENDIAN__ -# define WORDS_BIGENDIAN 1 -# endif -#else -# ifndef WORDS_BIGENDIAN -# undef WORDS_BIGENDIAN -# endif -#endif - -/* Define to 1 if on MINIX. */ -#undef _MINIX - -/* Define to 2 if the system does not provide POSIX.1 features except with - this defined. */ -#undef _POSIX_1_SOURCE - -/* Define to 1 if you need to in order for `stat' and other things to work. */ -#undef _POSIX_SOURCE - -/* Define to empty if `const' does not conform to ANSI C. */ -#undef const - -/* Define to `long int' if does not define. */ -#undef off_t - -/* Define to `int' if does not define. */ -#undef pid_t - -/* Define to `unsigned int' if does not define. */ -#undef size_t - -/* Define as `fork' if `vfork' does not work. */ -#undef vfork diff --git a/external/bsd/bmake/dist/configure b/external/bsd/bmake/dist/configure deleted file mode 100755 index ee479f1dcd0f..000000000000 --- a/external/bsd/bmake/dist/configure +++ /dev/null @@ -1,7134 +0,0 @@ -#! /bin/sh -# Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.64 for bmake 20120620. -# -# Report bugs to . -# -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software -# Foundation, Inc. -# -# This configure script is free software; the Free Software Foundation -# gives unlimited permission to copy, distribute and modify it. -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -if test "x$CONFIG_SHELL" = x; then - as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which - # is contrary to our usage. Disable this feature. - alias -g '\${1+\"\$@\"}'='\"\$@\"' - setopt NO_GLOB_SUBST -else - case \`(set -o) 2>/dev/null\` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi -" - as_required="as_fn_return () { (exit \$1); } -as_fn_success () { as_fn_return 0; } -as_fn_failure () { as_fn_return 1; } -as_fn_ret_success () { return 0; } -as_fn_ret_failure () { return 1; } - -exitcode=0 -as_fn_success || { exitcode=1; echo as_fn_success failed.; } -as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } -as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } -as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : - -else - exitcode=1; echo positional parameters were not saved. -fi -test x\$exitcode = x0 || exit 1" - as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO - as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO - eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && - test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 -test \$(( 1 + 1 )) = 2 || exit 1" - if (eval "$as_required") 2>/dev/null; then : - as_have_required=yes -else - as_have_required=no -fi - if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : - -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -as_found=false -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - as_found=: - case $as_dir in #( - /*) - for as_base in sh bash ksh sh5; do - # Try only shells that exist, to save several forks. - as_shell=$as_dir/$as_base - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : - CONFIG_SHELL=$as_shell as_have_required=yes - if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : - break 2 -fi -fi - done;; - esac - as_found=false -done -$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : - CONFIG_SHELL=$SHELL as_have_required=yes -fi; } -IFS=$as_save_IFS - - - if test "x$CONFIG_SHELL" != x; then : - # We cannot yet assume a decent shell, so we have to provide a - # neutralization value for shells without unset; and this also - # works around shells that cannot unset nonexistent variables. - BASH_ENV=/dev/null - ENV=/dev/null - (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} -fi - - if test x$as_have_required = xno; then : - $as_echo "$0: This script requires a shell more modern than all" - $as_echo "$0: the shells that I found on your system." - if test x${ZSH_VERSION+set} = xset ; then - $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" - $as_echo "$0: be upgraded to zsh 4.3.4 or later." - else - $as_echo "$0: Please tell bug-autoconf@gnu.org and sjg@NetBSD.org -$0: about your system, including any error possibly output -$0: before this message. Then install a modern shell, or -$0: manually run the script under such a shell if you do -$0: have one." - fi - exit 1 -fi -fi -fi -SHELL=${CONFIG_SHELL-/bin/sh} -export SHELL -# Unset more variables known to interfere with behavior of common tools. -CLICOLOR_FORCE= GREP_OPTIONS= -unset CLICOLOR_FORCE GREP_OPTIONS - -## --------------------- ## -## M4sh Shell Functions. ## -## --------------------- ## -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" - - -} # as_fn_mkdir_p -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -# as_fn_error ERROR [LINENO LOG_FD] -# --------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with status $?, using 1 if that was 0. -as_fn_error () -{ - as_status=$?; test $as_status -eq 0 && as_status=1 - if test "$3"; then - as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 - fi - $as_echo "$as_me: error: $1" >&2 - as_fn_exit $as_status -} # as_fn_error - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - - - as_lineno_1=$LINENO as_lineno_1a=$LINENO - as_lineno_2=$LINENO as_lineno_2a=$LINENO - eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && - test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { - # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -p' - fi -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in #( - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 7<&0 &1 - -# Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_clean_files= -ac_config_libobj_dir=. -LIBOBJS= -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= - -# Identity of this package. -PACKAGE_NAME='bmake' -PACKAGE_TARNAME='bmake' -PACKAGE_VERSION='20120620' -PACKAGE_STRING='bmake 20120620' -PACKAGE_BUGREPORT='sjg@NetBSD.org' -PACKAGE_URL='' - -# Factoring default headers for most tests. -ac_includes_default="\ -#include -#ifdef HAVE_SYS_TYPES_H -# include -#endif -#ifdef HAVE_SYS_STAT_H -# include -#endif -#ifdef STDC_HEADERS -# include -# include -#else -# ifdef HAVE_STDLIB_H -# include -# endif -#endif -#ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -# include -# endif -# include -#endif -#ifdef HAVE_STRINGS_H -# include -#endif -#ifdef HAVE_INTTYPES_H -# include -#endif -#ifdef HAVE_STDINT_H -# include -#endif -#ifdef HAVE_UNISTD_H -# include -#endif" - -ac_subst_vars='LTLIBOBJS -filemon_h -use_meta -diff_u -GCC -INSTALL -default_sys_path -mksrc -machine_arch -force_machine -machine -LIBOBJS -ac_exe_suffix -INSTALL_DATA -INSTALL_SCRIPT -INSTALL_PROGRAM -EGREP -GREP -CPP -OBJEXT -EXEEXT -ac_ct_CC -CPPFLAGS -LDFLAGS -CFLAGS -CC -target_alias -host_alias -build_alias -LIBS -ECHO_T -ECHO_N -ECHO_C -DEFS -mandir -localedir -libdir -psdir -pdfdir -dvidir -htmldir -infodir -docdir -oldincludedir -includedir -localstatedir -sharedstatedir -sysconfdir -datadir -datarootdir -libexecdir -sbindir -bindir -program_transform_name -prefix -exec_prefix -PACKAGE_URL -PACKAGE_BUGREPORT -PACKAGE_STRING -PACKAGE_VERSION -PACKAGE_TARNAME -PACKAGE_NAME -PATH_SEPARATOR -SHELL' -ac_subst_files='' -ac_user_opts=' -enable_option_checking -with_defshell -with_meta -with_filemon -with_machine -with_force_machine -with_force_machine_arch -with_machine_arch -with_default_sys_path -with_path_objdirprefix -enable_pwd_override -enable_check_make_chdir -with_mksrc -' - ac_precious_vars='build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -LIBS -CPPFLAGS -CPP' - - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -ac_unrecognized_opts= -ac_unrecognized_sep= -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -# (The list follows the same order as the GNU Coding Standards.) -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datarootdir='${prefix}/share' -datadir='${datarootdir}' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -includedir='${prefix}/include' -oldincludedir='/usr/include' -docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -infodir='${datarootdir}/info' -htmldir='${docdir}' -dvidir='${docdir}' -pdfdir='${docdir}' -psdir='${docdir}' -libdir='${exec_prefix}/lib' -localedir='${datarootdir}/locale' -mandir='${datarootdir}/man' - -ac_prev= -ac_dashdash= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval $ac_prev=\$ac_option - ac_prev= - continue - fi - - case $ac_option in - *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *) ac_optarg=yes ;; - esac - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_dashdash$ac_option in - --) - ac_dashdash=yes ;; - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=*) - datadir=$ac_optarg ;; - - -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ - | --dataroo | --dataro | --datar) - ac_prev=datarootdir ;; - -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ - | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) - datarootdir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=no ;; - - -docdir | --docdir | --docdi | --doc | --do) - ac_prev=docdir ;; - -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) - docdir=$ac_optarg ;; - - -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) - ac_prev=dvidir ;; - -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) - dvidir=$ac_optarg ;; - - -enable-* | --enable-*) - ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=\$ac_optarg ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) - ac_prev=htmldir ;; - -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ - | --ht=*) - htmldir=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localedir | --localedir | --localedi | --localed | --locale) - ac_prev=localedir ;; - -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) - localedir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst | --locals) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) - ac_prev=pdfdir ;; - -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) - pdfdir=$ac_optarg ;; - - -psdir | --psdir | --psdi | --psd | --ps) - ac_prev=psdir ;; - -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) - psdir=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=\$ac_optarg ;; - - -without-* | --without-*) - ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=no ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) as_fn_error "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information." - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - case $ac_envvar in #( - '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error "invalid variable name: \`$ac_envvar'" ;; - esac - eval $ac_envvar=\$ac_optarg - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error "missing argument to $ac_option" -fi - -if test -n "$ac_unrecognized_opts"; then - case $enable_option_checking in - no) ;; - fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; - *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; - esac -fi - -# Check all directory arguments for consistency. -for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ - datadir sysconfdir sharedstatedir localstatedir includedir \ - oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir -do - eval ac_val=\$$ac_var - # Remove trailing slashes. - case $ac_val in - */ ) - ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` - eval $ac_var=\$ac_val;; - esac - # Be sure to have absolute directory names. - case $ac_val in - [\\/$]* | ?:[\\/]* ) continue;; - NONE | '' ) case $ac_var in *prefix ) continue;; esac;; - esac - as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used." >&2 - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -ac_pwd=`pwd` && test -n "$ac_pwd" && -ac_ls_di=`ls -di .` && -ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error "working directory cannot be determined" -test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error "pwd does not report name of working directory" - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$as_myself" || -$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_myself" : 'X\(//\)[^/]' \| \ - X"$as_myself" : 'X\(//\)$' \| \ - X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_myself" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r "$srcdir/$ac_unique_file"; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r "$srcdir/$ac_unique_file"; then - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" -fi -ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" - pwd)` -# When building in place, set srcdir=. -if test "$ac_abs_confdir" = "$ac_pwd"; then - srcdir=. -fi -# Remove unnecessary trailing slashes from srcdir. -# Double slashes in file names in object file debugging info -# mess up M-x gdb in Emacs. -case $srcdir in -*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -esac -for ac_var in $ac_precious_vars; do - eval ac_env_${ac_var}_set=\${${ac_var}+set} - eval ac_env_${ac_var}_value=\$${ac_var} - eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} - eval ac_cv_env_${ac_var}_value=\$${ac_var} -done - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures bmake 20120620 to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root [DATAROOTDIR/doc/bmake] - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] -_ACEOF - - cat <<\_ACEOF -_ACEOF -fi - -if test -n "$ac_init_help"; then - case $ac_init_help in - short | recursive ) echo "Configuration of bmake 20120620:";; - esac - cat <<\_ACEOF - -Optional Features: - --disable-option-checking ignore unrecognized --enable/--with options - --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) - --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --disable-pwd-override disable \$PWD overriding getcwd() - --disable-check-make-chdir disable make trying to guess - when it should automatically cd \${.CURDIR} - -Optional Packages: - --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] - --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-defshell=SHELL use SHELL by default - must be sh compatible, use sh or ksh to pick the internal definitions - --without-meta dissable use of meta-mode - --with-filemon=path/filemon.h indicate path to filemon.h for meta-mode - --with-machine=MACHINE explicitly set MACHINE - --with-force-machine=MACHINE set FORCE_MACHINE - --with-force-machine-arch=MACHINE set FORCE_MACHINE_ARCH - --with-machine_arch=MACHINE_ARCH explicitly set MACHINE_ARCH - --with-default-sys-path=PATH:DIR:LIST use an explicit _PATH_DEFSYSPATH - MAKESYSPATH is a ':' separated list of directories - that bmake will search for system .mk files. - _PATH_DEFSYSPATH is its default value. - --with-path-objdirprefix=PATH override _PATH_OBJDIRPREFIX - --with-mksrc=PATH tell makefile.boot where to find mk src - -Some influential environment variables: - CC C compiler command - CFLAGS C compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - LIBS libraries to pass to the linker, e.g. -l - CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if - you have headers in a nonstandard directory - CPP C preprocessor - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -Report bugs to . -_ACEOF -ac_status=$? -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || - { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || - continue - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. - if test -f "$ac_srcdir/configure.gnu"; then - echo && - $SHELL "$ac_srcdir/configure.gnu" --help=recursive - elif test -f "$ac_srcdir/configure"; then - echo && - $SHELL "$ac_srcdir/configure" --help=recursive - else - $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi || ac_status=$? - cd "$ac_pwd" || { ac_status=$?; break; } - done -fi - -test -n "$ac_init_help" && exit $ac_status -if $ac_init_version; then - cat <<\_ACEOF -bmake configure 20120620 -generated by GNU Autoconf 2.64 - -Copyright (C) 2009 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit -fi - -## ------------------------ ## -## Autoconf initialization. ## -## ------------------------ ## - -# ac_fn_c_try_compile LINENO -# -------------------------- -# Try to compile conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval - -} # ac_fn_c_try_compile - -# ac_fn_c_try_cpp LINENO -# ---------------------- -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval - -} # ac_fn_c_try_cpp - -# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists, giving a warning if it cannot be compiled using -# the include files in INCLUDES and setting the cache variable VAR -# accordingly. -ac_fn_c_check_header_mongrel () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_header_compiler=yes -else - ac_header_compiler=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <$2> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - ac_header_preproc=yes -else - ac_header_preproc=no -fi -rm -f conftest.err conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( - yes:no: ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; - no:yes:* ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 -$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( cat <<\_ASBOX -## ----------------------------- ## -## Report this to sjg@NetBSD.org ## -## ----------------------------- ## -_ASBOX - ) | sed "s/^/$as_me: WARNING: /" >&2 - ;; -esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=\$ac_header_compiler" -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - -} # ac_fn_c_check_header_mongrel - -# ac_fn_c_try_run LINENO -# ---------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes -# that executables *can* be run. -ac_fn_c_try_run () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then : - ac_retval=0 -else - $as_echo "$as_me: program exited with status $ac_status" >&5 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=$ac_status -fi - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval - -} # ac_fn_c_try_run - -# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists and can be compiled using the include files in -# INCLUDES, setting the cache variable VAR accordingly. -ac_fn_c_check_header_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - -} # ac_fn_c_check_header_compile - -# ac_fn_c_try_link LINENO -# ----------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval - -} # ac_fn_c_try_link - -# ac_fn_c_check_type LINENO TYPE VAR INCLUDES -# ------------------------------------------- -# Tests whether TYPE exists after having included INCLUDES, setting cache -# variable VAR accordingly. -ac_fn_c_check_type () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=no" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -if (sizeof ($2)) - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -if (sizeof (($2))) - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - eval "$3=yes" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - -} # ac_fn_c_check_type - -# ac_fn_c_check_decl LINENO SYMBOL VAR -# ------------------------------------ -# Tests whether SYMBOL is declared, setting cache variable VAR accordingly. -ac_fn_c_check_decl () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $2 is declared" >&5 -$as_echo_n "checking whether $2 is declared... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -#ifndef $2 - (void) $2; -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - -} # ac_fn_c_check_decl - -# ac_fn_c_check_func LINENO FUNC VAR -# ---------------------------------- -# Tests whether FUNC exists, setting the cache variable VAR accordingly -ac_fn_c_check_func () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -/* Define $2 to an innocuous variant, in case declares $2. - For example, HP-UX 11i declares gettimeofday. */ -#define $2 innocuous_$2 - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $2 (); below. - Prefer to if __STDC__ is defined, since - exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include -#else -# include -#endif - -#undef $2 - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $2 (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$2 || defined __stub___$2 -choke me -#endif - -int -main () -{ -return $2 (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - -} # ac_fn_c_check_func - -# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES -# ---------------------------------------------------- -# Tries to find if the field MEMBER exists in type AGGR, after including -# INCLUDES, setting cache variable VAR accordingly. -ac_fn_c_check_member () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 -$as_echo_n "checking for $2.$3... " >&6; } -if { as_var=$4; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$5 -int -main () -{ -static $2 ac_aggr; -if (ac_aggr.$3) -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$4=yes" -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$5 -int -main () -{ -static $2 ac_aggr; -if (sizeof ac_aggr.$3) -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$4=yes" -else - eval "$4=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$4 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - -} # ac_fn_c_check_member -cat >config.log <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by bmake $as_me 20120620, which was -generated by GNU Autoconf 2.64. Invocation command line was - - $ $0 $@ - -_ACEOF -exec 5>>config.log -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - $as_echo "PATH: $as_dir" - done -IFS=$as_save_IFS - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *\'*) - ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; - 2) - as_fn_append ac_configure_args1 " '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - as_fn_append ac_configure_args " '$ac_arg'" - ;; - esac - done -done -{ ac_configure_args0=; unset ac_configure_args0;} -{ ac_configure_args1=; unset ac_configure_args1;} - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Use '\'' to represent an apostrophe within the trap. -# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - cat <<\_ASBOX -## ---------------- ## -## Cache variables. ## -## ---------------- ## -_ASBOX - echo - # The following way of writing the cache mishandles newlines in values, -( - for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - (set) 2>&1 | - case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - sed -n \ - "s/'\''/'\''\\\\'\'''\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" - ;; #( - *) - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) - echo - - cat <<\_ASBOX -## ----------------- ## -## Output variables. ## -## ----------------- ## -_ASBOX - echo - for ac_var in $ac_subst_vars - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - - if test -n "$ac_subst_files"; then - cat <<\_ASBOX -## ------------------- ## -## File substitutions. ## -## ------------------- ## -_ASBOX - echo - for ac_var in $ac_subst_files - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - fi - - if test -s confdefs.h; then - cat <<\_ASBOX -## ----------- ## -## confdefs.h. ## -## ----------- ## -_ASBOX - echo - cat confdefs.h - echo - fi - test "$ac_signal" != 0 && - $as_echo "$as_me: caught signal $ac_signal" - $as_echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core core.conftest.* && - rm -f -r conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status -' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -f -r conftest* confdefs.h - -$as_echo "/* confdefs.h */" > confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_URL "$PACKAGE_URL" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer an explicitly selected file to automatically selected ones. -ac_site_file1=NONE -ac_site_file2=NONE -if test -n "$CONFIG_SITE"; then - ac_site_file1=$CONFIG_SITE -elif test "x$prefix" != xNONE; then - ac_site_file1=$prefix/share/config.site - ac_site_file2=$prefix/etc/config.site -else - ac_site_file1=$ac_default_prefix/share/config.site - ac_site_file2=$ac_default_prefix/etc/config.site -fi -for ac_site_file in "$ac_site_file1" "$ac_site_file2" -do - test "x$ac_site_file" = xNONE && continue - if test -r "$ac_site_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 -$as_echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" - fi -done - -if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special - # files actually), so we avoid doing that. - if test -f "$cache_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 -$as_echo "$as_me: loading cache $cache_file" >&6;} - case $cache_file in - [\\/]* | ?:[\\/]* ) . "$cache_file";; - *) . "./$cache_file";; - esac - fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 -$as_echo "$as_me: creating cache $cache_file" >&6;} - >$cache_file -fi - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val=\$ac_cv_env_${ac_var}_value - eval ac_new_val=\$ac_env_${ac_var}_value - case $ac_old_set,$ac_new_set in - set,) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - # differences in whitespace do not lead to failure. - ac_old_val_w=`echo x $ac_old_val` - ac_new_val_w=`echo x $ac_new_val` - if test "$ac_old_val_w" != "$ac_new_val_w"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 -$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - ac_cache_corrupted=: - else - { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 -$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} - eval $ac_var=\$ac_old_val - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 -$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 -$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) as_fn_append ac_configure_args " '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 -$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 -fi -## -------------------- ## -## Main body of script. ## -## -------------------- ## - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -ac_config_headers="$ac_config_headers config.h" - - - -# Check whether --with-defshell was given. -if test "${with_defshell+set}" = set; then : - withval=$with_defshell; case "${withval}" in -yes) as_fn_error "bad value ${withval} given for bmake DEFSHELL" "$LINENO" 5 ;; -no) ;; -*) case "$with_defshell" in - sh) DEFSHELL_INDEX=DEFSHELL_INDEX_SH;; # it's the default anyway - ksh) DEFSHELL_INDEX=DEFSHELL_INDEX_KSH;; - csh) DEFSHELL_INDEX=DEFSHELL_INDEX_CSH;; # kidding right? - *) defshell_path=$with_defshell;; # better be sh compatible! - esac - ;; - esac -fi - -use_meta=yes - -# Check whether --with-meta was given. -if test "${with_meta+set}" = set; then : - withval=$with_meta; case "${withval}" in -yes|no) use_meta=${withval};; -*) as_fn_error "bad value ${withval} given for meta" "$LINENO" 5 ;; -esac -fi - - -# Check whether --with-filemon was given. -if test "${with_filemon+set}" = set; then : - withval=$with_filemon; case "/${withval}" in -/no|*/filemon.h) filemon_h="${withval}";; -*/filemon*) filemon_h="${withval}/filemon.h";; -*) as_fn_error "bad value ${withval} given for filemon" "$LINENO" 5 ;; -esac -else - -OS=`uname -s` -for d in "/usr/include/dev/filemon" "$prefix/include/dev/filemon" "$srcdir/filemon" "$srcdir/../filemon" "$srcdir/../../sys/dev/filemon" -do - for x in "/$OS" "" - do - filemon_h="$d$x/filemon.h" - test -s "$filemon_h" && break - done - test -s "$filemon_h" && break -done -test -s "${filemon_h:-/dev/null}" || filemon_h=no - -fi - -case "$use_meta" in -yes) - case "$filemon_h" in - *.h) echo "Using: filemon=$filemon_h" >&6;; - esac - ;; -esac -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "no acceptable C compiler found in \$PATH -See \`config.log' for more details." "$LINENO" 5; } - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - rm -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -FILE *f = fopen ("conftest.out", "w"); - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out conftest.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -$as_echo_n "checking for C compiler default output file name... " >&6; } -ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` - -# The possible output files: -ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" - -ac_rmfiles= -for ac_file in $ac_files -do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - * ) ac_rmfiles="$ac_rmfiles $ac_file";; - esac -done -rm -f $ac_rmfiles - -if { { ac_try="$ac_link_default" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link_default") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -# in a Makefile. We should not override ac_cv_exeext if it was cached, -# so that the user can short-circuit this test for compilers unknown to -# Autoconf. -for ac_file in $ac_files '' -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; - then :; else - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - fi - # We set ac_cv_exeext here because the later test for it is not - # safe: cross compilers may not add the suffix if given an `-o' - # argument, so we may need to know it at that point already. - # Even if this section looks crufty: it has the advantage of - # actually working. - break;; - * ) - break;; - esac -done -test "$ac_cv_exeext" = no && ac_cv_exeext= - -else - ac_file='' -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } -if test -z "$ac_file"; then : - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "C compiler cannot create executables -See \`config.log' for more details." "$LINENO" 5; }; } -fi -ac_exeext=$ac_cv_exeext - -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&6; } -# If not cross compiling, check that we can run a simple program. -if test "$cross_compiling" != yes; then - if { ac_try='./$ac_file' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." "$LINENO" 5; } - fi - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out conftest.out -ac_clean_files=$ac_clean_files_save -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -$as_echo_n "checking for suffix of executables... " >&6; } -if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - break;; - * ) break;; - esac -done -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." "$LINENO" 5; } -fi -rm -f conftest$ac_cv_exeext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -$as_echo "$ac_cv_exeext" >&6; } - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -$as_echo_n "checking for suffix of object files... " >&6; } -if test "${ac_cv_objext+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - for ac_file in conftest.o conftest.obj conftest.*; do - test -f "$ac_file" || continue; - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot compute suffix of object files: cannot compile -See \`config.log' for more details." "$LINENO" 5; } -fi -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -$as_echo "$ac_cv_objext" >&6; } -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if test "${ac_cv_c_compiler_gnu+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GCC=yes -else - GCC= -fi -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if test "${ac_cv_prog_cc_g+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -else - CFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if test "${ac_cv_prog_cc_c89+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_c89=$ac_arg -fi -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then : - -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -$as_echo_n "checking how to run the C preprocessor... " >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= -fi -if test -z "$CPP"; then - if test "${ac_cv_prog_CPP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CPP=$CPP - -fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -$as_echo "$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." "$LINENO" 5; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if test "${ac_cv_path_GREP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$GREP"; then - ac_path_GREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue -# Check for GNU ac_path_GREP and select it if it is found. - # Check for GNU $ac_path_GREP -case `"$ac_path_GREP" --version 2>&1` in -*GNU*) - ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'GREP' >> "conftest.nl" - "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_GREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_GREP="$ac_path_GREP" - ac_path_GREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_GREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_GREP"; then - as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_GREP=$GREP -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -$as_echo "$ac_cv_path_GREP" >&6; } - GREP="$ac_cv_path_GREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -$as_echo_n "checking for egrep... " >&6; } -if test "${ac_cv_path_EGREP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 - then ac_cv_path_EGREP="$GREP -E" - else - if test -z "$EGREP"; then - ac_path_EGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue -# Check for GNU ac_path_EGREP and select it if it is found. - # Check for GNU $ac_path_EGREP -case `"$ac_path_EGREP" --version 2>&1` in -*GNU*) - ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'EGREP' >> "conftest.nl" - "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_EGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_EGREP="$ac_path_EGREP" - ac_path_EGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_EGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_EGREP"; then - as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_EGREP=$EGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -$as_echo "$ac_cv_path_EGREP" >&6; } - EGREP="$ac_cv_path_EGREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if test "${ac_cv_header_stdc+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes -else - ac_cv_header_stdc=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - -else - ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then - -$as_echo "#define STDC_HEADERS 1" >>confdefs.h - -fi - -# On IRIX 5.3, sys/types and inttypes.h are conflicting. -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -" -eval as_val=\$$as_ac_Header - if test "x$as_val" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - - - ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" -if test "x$ac_cv_header_minix_config_h" = x""yes; then : - MINIX=yes -else - MINIX= -fi - - - if test "$MINIX" = yes; then - -$as_echo "#define _POSIX_SOURCE 1" >>confdefs.h - - -$as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h - - -$as_echo "#define _MINIX 1" >>confdefs.h - - fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 -$as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } -if test "${ac_cv_safe_to_define___extensions__+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -# define __EXTENSIONS__ 1 - $ac_includes_default -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_safe_to_define___extensions__=yes -else - ac_cv_safe_to_define___extensions__=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 -$as_echo "$ac_cv_safe_to_define___extensions__" >&6; } - test $ac_cv_safe_to_define___extensions__ = yes && - $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h - - $as_echo "#define _ALL_SOURCE 1" >>confdefs.h - - $as_echo "#define _GNU_SOURCE 1" >>confdefs.h - - $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h - - $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "no acceptable C compiler found in \$PATH -See \`config.log' for more details." "$LINENO" 5; } - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - rm -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if test "${ac_cv_c_compiler_gnu+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GCC=yes -else - GCC= -fi -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if test "${ac_cv_prog_cc_g+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -else - CFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if test "${ac_cv_prog_cc_c89+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_c89=$ac_arg -fi -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then : - -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -if test $ac_cv_c_compiler_gnu = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC needs -traditional" >&5 -$as_echo_n "checking whether $CC needs -traditional... " >&6; } -if test "${ac_cv_prog_gcc_traditional+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_pattern="Autoconf.*'x'" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -Autoconf TIOCGETP -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "$ac_pattern" >/dev/null 2>&1; then : - ac_cv_prog_gcc_traditional=yes -else - ac_cv_prog_gcc_traditional=no -fi -rm -f conftest* - - - if test $ac_cv_prog_gcc_traditional = no; then - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -Autoconf TCGETA -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "$ac_pattern" >/dev/null 2>&1; then : - ac_cv_prog_gcc_traditional=yes -fi -rm -f conftest* - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_gcc_traditional" >&5 -$as_echo "$ac_cv_prog_gcc_traditional" >&6; } - if test $ac_cv_prog_gcc_traditional = yes; then - CC="$CC -traditional" - fi -fi - -ac_aux_dir= -for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do - for ac_t in install-sh install.sh shtool; do - if test -f "$ac_dir/$ac_t"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/$ac_t -c" - break 2 - fi - done -done -if test -z "$ac_aux_dir"; then - as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 -fi - -# These three variables are undocumented and unsupported, -# and are intended to be withdrawn in a future Autoconf release. -# They can cause serious problems if a builder's source tree is in a directory -# whose full name contains unusual characters. -ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. - - -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -# Reject install programs that cannot install multiple files. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 -$as_echo_n "checking for a BSD-compatible install... " >&6; } -if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in #(( - ./ | .// | /[cC]/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - rm -rf conftest.one conftest.two conftest.dir - echo one > conftest.one - echo two > conftest.two - mkdir conftest.dir - if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && - test -s conftest.one && test -s conftest.two && - test -s conftest.dir/conftest.one && - test -s conftest.dir/conftest.two - then - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - fi - done - done - ;; -esac - - done -IFS=$as_save_IFS - -rm -rf conftest.one conftest.two conftest.dir - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. Don't cache a - # value for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - INSTALL=$ac_install_sh - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 -$as_echo "$INSTALL" >&6; } - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - - -echo $ECHO_N "checking if sh will pass .MAKE. variables... $ECHO_C" >&6 -ok=`env .MAKE.LEVEL=1 /bin/sh -c env | grep LEVEL=` -case "$ok" in -"") echo no >&6; CPPFLAGS="${CPPFLAGS} -DNEED_MAKE_LEVEL_SAFE";; -*) echo yes >&6;; -esac - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if test "${ac_cv_header_stdc+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes -else - ac_cv_header_stdc=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - -else - ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then - -$as_echo "#define STDC_HEADERS 1" >>confdefs.h - -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5 -$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } -if test "${ac_cv_header_sys_wait_h+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#ifndef WEXITSTATUS -# define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8) -#endif -#ifndef WIFEXITED -# define WIFEXITED(stat_val) (((stat_val) & 255) == 0) -#endif - -int -main () -{ - int s; - wait (&s); - s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_sys_wait_h=yes -else - ac_cv_header_sys_wait_h=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_sys_wait_h" >&5 -$as_echo "$ac_cv_header_sys_wait_h" >&6; } -if test $ac_cv_header_sys_wait_h = yes; then - -$as_echo "#define HAVE_SYS_WAIT_H 1" >>confdefs.h - -fi - -ac_header_dirent=no -for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do - as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5 -$as_echo_n "checking for $ac_hdr that defines DIR... " >&6; } -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include <$ac_hdr> - -int -main () -{ -if ((DIR *) 0) -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$as_ac_Header=yes" -else - eval "$as_ac_Header=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$as_ac_Header - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -eval as_val=\$$as_ac_Header - if test "x$as_val" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 -_ACEOF - -ac_header_dirent=$ac_hdr; break -fi - -done -# Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. -if test $ac_header_dirent = dirent.h; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5 -$as_echo_n "checking for library containing opendir... " >&6; } -if test "${ac_cv_search_opendir+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_func_search_save_LIBS=$LIBS -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char opendir (); -int -main () -{ -return opendir (); - ; - return 0; -} -_ACEOF -for ac_lib in '' dir; do - if test -z "$ac_lib"; then - ac_res="none required" - else - ac_res=-l$ac_lib - LIBS="-l$ac_lib $ac_func_search_save_LIBS" - fi - if ac_fn_c_try_link "$LINENO"; then : - ac_cv_search_opendir=$ac_res -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext - if test "${ac_cv_search_opendir+set}" = set; then : - break -fi -done -if test "${ac_cv_search_opendir+set}" = set; then : - -else - ac_cv_search_opendir=no -fi -rm conftest.$ac_ext -LIBS=$ac_func_search_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_opendir" >&5 -$as_echo "$ac_cv_search_opendir" >&6; } -ac_res=$ac_cv_search_opendir -if test "$ac_res" != no; then : - test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" - -fi - -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5 -$as_echo_n "checking for library containing opendir... " >&6; } -if test "${ac_cv_search_opendir+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_func_search_save_LIBS=$LIBS -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char opendir (); -int -main () -{ -return opendir (); - ; - return 0; -} -_ACEOF -for ac_lib in '' x; do - if test -z "$ac_lib"; then - ac_res="none required" - else - ac_res=-l$ac_lib - LIBS="-l$ac_lib $ac_func_search_save_LIBS" - fi - if ac_fn_c_try_link "$LINENO"; then : - ac_cv_search_opendir=$ac_res -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext - if test "${ac_cv_search_opendir+set}" = set; then : - break -fi -done -if test "${ac_cv_search_opendir+set}" = set; then : - -else - ac_cv_search_opendir=no -fi -rm conftest.$ac_ext -LIBS=$ac_func_search_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_opendir" >&5 -$as_echo "$ac_cv_search_opendir" >&6; } -ac_res=$ac_cv_search_opendir -if test "$ac_res" != no; then : - test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" - -fi - -fi - -for ac_header in \ - ar.h \ - err.h \ - fcntl.h \ - paths.h \ - poll.h \ - ranlib.h \ - string.h \ - sys/mman.h \ - sys/select.h \ - sys/socket.h \ - sys/time.h \ - sys/uio.h \ - unistd.h \ - utime.h \ - -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -eval as_val=\$$as_ac_Header - if test "x$as_val" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -ac_fn_c_check_header_mongrel "$LINENO" "sys/cdefs.h" "ac_cv_header_sys_cdefs_h" "$ac_includes_default" -if test "x$ac_cv_header_sys_cdefs_h" = x""yes; then : - echo $ECHO_N "checking whether sys/cdefs.h is compatible... $ECHO_C" >&6 -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#ifdef __RCSID -yes -#endif - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "yes" >/dev/null 2>&1; then : - echo yes >&6 -else - echo no >&6; CPPFLAGS="${CPPFLAGS} -I`cd ${srcdir}/missing && pwd` -DNEED_HOST_CDEFS_H" -fi -rm -f conftest* - -else - CPPFLAGS="${CPPFLAGS} -I`cd ${srcdir}/missing && pwd`" -fi - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __attribute__" >&5 -$as_echo_n "checking for __attribute__... " >&6; } -if test "${ac_cv___attribute__+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#include - -int -main () -{ - -static void foo(void) __attribute__ ((noreturn)); - -static void -foo(void) -{ - exit(1); -} - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv___attribute__=yes -else - ac_cv___attribute__=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi - -if test "$ac_cv___attribute__" = "yes"; then - -$as_echo "#define HAVE___ATTRIBUTE__ 1" >>confdefs.h - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv___attribute__" >&5 -$as_echo "$ac_cv___attribute__" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 -$as_echo_n "checking whether byte ordering is bigendian... " >&6; } -if test "${ac_cv_c_bigendian+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_c_bigendian=unknown - # See if we're dealing with a universal compiler. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifndef __APPLE_CC__ - not a universal capable compiler - #endif - typedef int dummy; - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - - # Check for potential -arch flags. It is not universal unless - # there are at least two -arch flags with different values. - ac_arch= - ac_prev= - for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do - if test -n "$ac_prev"; then - case $ac_word in - i?86 | x86_64 | ppc | ppc64) - if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then - ac_arch=$ac_word - else - ac_cv_c_bigendian=universal - break - fi - ;; - esac - ac_prev= - elif test "x$ac_word" = "x-arch"; then - ac_prev=arch - fi - done -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - if test $ac_cv_c_bigendian = unknown; then - # See if sys/param.h defines the BYTE_ORDER macro. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - #include - -int -main () -{ -#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \ - && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \ - && LITTLE_ENDIAN) - bogus endian macros - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - # It does; now see whether it defined to BIG_ENDIAN or not. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - #include - -int -main () -{ -#if BYTE_ORDER != BIG_ENDIAN - not big endian - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_c_bigendian=yes -else - ac_cv_c_bigendian=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - fi - if test $ac_cv_c_bigendian = unknown; then - # See if defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -int -main () -{ -#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) - bogus endian macros - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - # It does; now see whether it defined to _BIG_ENDIAN or not. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -int -main () -{ -#ifndef _BIG_ENDIAN - not big endian - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_c_bigendian=yes -else - ac_cv_c_bigendian=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - fi - if test $ac_cv_c_bigendian = unknown; then - # Compile a test program. - if test "$cross_compiling" = yes; then : - # Try to guess by grepping values from an object file. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -short int ascii_mm[] = - { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; - short int ascii_ii[] = - { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; - int use_ascii (int i) { - return ascii_mm[i] + ascii_ii[i]; - } - short int ebcdic_ii[] = - { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; - short int ebcdic_mm[] = - { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; - int use_ebcdic (int i) { - return ebcdic_mm[i] + ebcdic_ii[i]; - } - extern int foo; - -int -main () -{ -return use_ascii (foo) == use_ebcdic (foo); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then - ac_cv_c_bigendian=yes - fi - if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then - if test "$ac_cv_c_bigendian" = unknown; then - ac_cv_c_bigendian=no - else - # finding both strings is unlikely to happen, but who knows? - ac_cv_c_bigendian=unknown - fi - fi -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ - - /* Are we little or big endian? From Harbison&Steele. */ - union - { - long int l; - char c[sizeof (long int)]; - } u; - u.l = 1; - return u.c[sizeof (long int) - 1] == 1; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - ac_cv_c_bigendian=no -else - ac_cv_c_bigendian=yes -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5 -$as_echo "$ac_cv_c_bigendian" >&6; } - case $ac_cv_c_bigendian in #( - yes) - $as_echo "#define WORDS_BIGENDIAN 1" >>confdefs.h -;; #( - no) - ;; #( - universal) - -$as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h - - ;; #( - *) - as_fn_error "unknown endianness - presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; - esac - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 -$as_echo_n "checking for an ANSI C-conforming const... " >&6; } -if test "${ac_cv_c_const+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -/* FIXME: Include the comments suggested by Paul. */ -#ifndef __cplusplus - /* Ultrix mips cc rejects this. */ - typedef int charset[2]; - const charset cs; - /* SunOS 4.1.1 cc rejects this. */ - char const *const *pcpcc; - char **ppc; - /* NEC SVR4.0.2 mips cc rejects this. */ - struct point {int x, y;}; - static struct point const zero = {0,0}; - /* AIX XL C 1.02.0.0 rejects this. - It does not let you subtract one const X* pointer from another in - an arm of an if-expression whose if-part is not a constant - expression */ - const char *g = "string"; - pcpcc = &g + (g ? g-g : 0); - /* HPUX 7.0 cc rejects these. */ - ++pcpcc; - ppc = (char**) pcpcc; - pcpcc = (char const *const *) ppc; - { /* SCO 3.2v4 cc rejects this. */ - char *t; - char const *s = 0 ? (char *) 0 : (char const *) 0; - - *t++ = 0; - if (s) return 0; - } - { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ - int x[] = {25, 17}; - const int *foo = &x[0]; - ++foo; - } - { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ - typedef const int *iptr; - iptr p = 0; - ++p; - } - { /* AIX XL C 1.02.0.0 rejects this saying - "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ - struct s { int j; const int *ap[3]; }; - struct s *b; b->j = 5; - } - { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ - const int foo = 10; - if (!foo) return 0; - } - return !cs[0] && !zero.x; -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_c_const=yes -else - ac_cv_c_const=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 -$as_echo "$ac_cv_c_const" >&6; } -if test $ac_cv_c_const = no; then - -$as_echo "#define const /**/" >>confdefs.h - -fi - -ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default" -if test "x$ac_cv_type_off_t" = x""yes; then : - -else - -cat >>confdefs.h <<_ACEOF -#define off_t long int -_ACEOF - -fi - -ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" -if test "x$ac_cv_type_pid_t" = x""yes; then : - -else - -cat >>confdefs.h <<_ACEOF -#define pid_t int -_ACEOF - -fi - -ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" -if test "x$ac_cv_type_size_t" = x""yes; then : - -else - -cat >>confdefs.h <<_ACEOF -#define size_t unsigned int -_ACEOF - -fi - -ac_fn_c_check_decl "$LINENO" "sys_siglist" "ac_cv_have_decl_sys_siglist" "#include -/* NetBSD declares sys_siglist in unistd.h. */ -#ifdef HAVE_UNISTD_H -# include -#endif - -" -if test "x$ac_cv_have_decl_sys_siglist" = x""yes; then : - ac_have_decl=1 -else - ac_have_decl=0 -fi - -cat >>confdefs.h <<_ACEOF -#define HAVE_DECL_SYS_SIGLIST $ac_have_decl -_ACEOF - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5 -$as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } -if test "${ac_cv_header_time+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include - -int -main () -{ -if ((struct tm *) 0) -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_time=yes -else - ac_cv_header_time=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_time" >&5 -$as_echo "$ac_cv_header_time" >&6; } -if test $ac_cv_header_time = yes; then - -$as_echo "#define TIME_WITH_SYS_TIME 1" >>confdefs.h - -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5 -$as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; } -if test "${ac_cv_struct_tm+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include - -int -main () -{ -struct tm tm; - int *p = &tm.tm_sec; - return !p; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_struct_tm=time.h -else - ac_cv_struct_tm=sys/time.h -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_tm" >&5 -$as_echo "$ac_cv_struct_tm" >&6; } -if test $ac_cv_struct_tm = sys/time.h; then - -$as_echo "#define TM_IN_SYS_TIME 1" >>confdefs.h - -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 -$as_echo_n "checking return type of signal handlers... " >&6; } -if test "${ac_cv_type_signal+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include - -int -main () -{ -return *(signal (0, 0)) (0) == 1; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_type_signal=int -else - ac_cv_type_signal=void -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_signal" >&5 -$as_echo "$ac_cv_type_signal" >&6; } - -cat >>confdefs.h <<_ACEOF -#define RETSIGTYPE $ac_cv_type_signal -_ACEOF - - -for ac_header in vfork.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "vfork.h" "ac_cv_header_vfork_h" "$ac_includes_default" -if test "x$ac_cv_header_vfork_h" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_VFORK_H 1 -_ACEOF - -fi - -done - -for ac_func in fork vfork -do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -eval as_val=\$$as_ac_var - if test "x$as_val" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - -fi -done - -if test "x$ac_cv_func_fork" = xyes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fork" >&5 -$as_echo_n "checking for working fork... " >&6; } -if test "${ac_cv_func_fork_works+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - ac_cv_func_fork_works=cross -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ - - /* By Ruediger Kuhlmann. */ - return fork () < 0; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - ac_cv_func_fork_works=yes -else - ac_cv_func_fork_works=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fork_works" >&5 -$as_echo "$ac_cv_func_fork_works" >&6; } - -else - ac_cv_func_fork_works=$ac_cv_func_fork -fi -if test "x$ac_cv_func_fork_works" = xcross; then - case $host in - *-*-amigaos* | *-*-msdosdjgpp*) - # Override, as these systems have only a dummy fork() stub - ac_cv_func_fork_works=no - ;; - *) - ac_cv_func_fork_works=yes - ;; - esac - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&5 -$as_echo "$as_me: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&2;} -fi -ac_cv_func_vfork_works=$ac_cv_func_vfork -if test "x$ac_cv_func_vfork" = xyes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working vfork" >&5 -$as_echo_n "checking for working vfork... " >&6; } -if test "${ac_cv_func_vfork_works+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - ac_cv_func_vfork_works=cross -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -/* Thanks to Paul Eggert for this test. */ -$ac_includes_default -#include -#ifdef HAVE_VFORK_H -# include -#endif -/* On some sparc systems, changes by the child to local and incoming - argument registers are propagated back to the parent. The compiler - is told about this with #include , but some compilers - (e.g. gcc -O) don't grok . Test for this by using a - static variable whose address is put into a register that is - clobbered by the vfork. */ -static void -#ifdef __cplusplus -sparc_address_test (int arg) -# else -sparc_address_test (arg) int arg; -#endif -{ - static pid_t child; - if (!child) { - child = vfork (); - if (child < 0) { - perror ("vfork"); - _exit(2); - } - if (!child) { - arg = getpid(); - write(-1, "", 0); - _exit (arg); - } - } -} - -int -main () -{ - pid_t parent = getpid (); - pid_t child; - - sparc_address_test (0); - - child = vfork (); - - if (child == 0) { - /* Here is another test for sparc vfork register problems. This - test uses lots of local variables, at least as many local - variables as main has allocated so far including compiler - temporaries. 4 locals are enough for gcc 1.40.3 on a Solaris - 4.1.3 sparc, but we use 8 to be safe. A buggy compiler should - reuse the register of parent for one of the local variables, - since it will think that parent can't possibly be used any more - in this routine. Assigning to the local variable will thus - munge parent in the parent process. */ - pid_t - p = getpid(), p1 = getpid(), p2 = getpid(), p3 = getpid(), - p4 = getpid(), p5 = getpid(), p6 = getpid(), p7 = getpid(); - /* Convince the compiler that p..p7 are live; otherwise, it might - use the same hardware register for all 8 local variables. */ - if (p != p1 || p != p2 || p != p3 || p != p4 - || p != p5 || p != p6 || p != p7) - _exit(1); - - /* On some systems (e.g. IRIX 3.3), vfork doesn't separate parent - from child file descriptors. If the child closes a descriptor - before it execs or exits, this munges the parent's descriptor - as well. Test for this by closing stdout in the child. */ - _exit(close(fileno(stdout)) != 0); - } else { - int status; - struct stat st; - - while (wait(&status) != child) - ; - return ( - /* Was there some problem with vforking? */ - child < 0 - - /* Did the child fail? (This shouldn't happen.) */ - || status - - /* Did the vfork/compiler bug occur? */ - || parent != getpid() - - /* Did the file descriptor bug occur? */ - || fstat(fileno(stdout), &st) != 0 - ); - } -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - ac_cv_func_vfork_works=yes -else - ac_cv_func_vfork_works=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_vfork_works" >&5 -$as_echo "$ac_cv_func_vfork_works" >&6; } - -fi; -if test "x$ac_cv_func_fork_works" = xcross; then - ac_cv_func_vfork_works=$ac_cv_func_vfork - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&5 -$as_echo "$as_me: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&2;} -fi - -if test "x$ac_cv_func_vfork_works" = xyes; then - -$as_echo "#define HAVE_WORKING_VFORK 1" >>confdefs.h - -else - -$as_echo "#define vfork fork" >>confdefs.h - -fi -if test "x$ac_cv_func_fork_works" = xyes; then - -$as_echo "#define HAVE_WORKING_FORK 1" >>confdefs.h - -fi - -for ac_func in vprintf -do : - ac_fn_c_check_func "$LINENO" "vprintf" "ac_cv_func_vprintf" -if test "x$ac_cv_func_vprintf" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_VPRINTF 1 -_ACEOF - -ac_fn_c_check_func "$LINENO" "_doprnt" "ac_cv_func__doprnt" -if test "x$ac_cv_func__doprnt" = x""yes; then : - -$as_echo "#define HAVE_DOPRNT 1" >>confdefs.h - -fi - -fi -done - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for wait3 that fills in rusage" >&5 -$as_echo_n "checking for wait3 that fills in rusage... " >&6; } -if test "${ac_cv_func_wait3_rusage+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - ac_cv_func_wait3_rusage=no -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$ac_includes_default -#include -#include -#include -/* HP-UX has wait3 but does not fill in rusage at all. */ -int -main () -{ - struct rusage r; - int i; - /* Use a field that we can force nonzero -- - voluntary context switches. - For systems like NeXT and OSF/1 that don't set it, - also use the system CPU time. And page faults (I/O) for Linux. */ - r.ru_nvcsw = 0; - r.ru_stime.tv_sec = 0; - r.ru_stime.tv_usec = 0; - r.ru_majflt = r.ru_minflt = 0; - switch (fork ()) - { - case 0: /* Child. */ - sleep(1); /* Give up the CPU. */ - _exit(0); - break; - case -1: /* What can we do? */ - _exit(0); - break; - default: /* Parent. */ - wait3(&i, 0, &r); - /* Avoid "text file busy" from rm on fast HP-UX machines. */ - sleep(2); - return (r.ru_nvcsw == 0 && r.ru_majflt == 0 && r.ru_minflt == 0 - && r.ru_stime.tv_sec == 0 && r.ru_stime.tv_usec == 0); - } -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - ac_cv_func_wait3_rusage=yes -else - ac_cv_func_wait3_rusage=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_wait3_rusage" >&5 -$as_echo "$ac_cv_func_wait3_rusage" >&6; } -if test $ac_cv_func_wait3_rusage = yes; then - -$as_echo "#define HAVE_WAIT3 1" >>confdefs.h - -fi - -for ac_func in \ - err \ - errx \ - getcwd \ - getenv \ - getopt \ - getwd \ - killpg \ - mmap \ - putenv \ - select \ - setenv \ - setpgid \ - setsid \ - sigaction \ - sigvec \ - snprintf \ - strerror \ - strftime \ - strsep \ - strtod \ - strtol \ - unsetenv \ - vsnprintf \ - wait3 \ - wait4 \ - waitpid \ - warn \ - warnx \ - -do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -eval as_val=\$$as_ac_var - if test "x$as_val" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - -fi -done - - -for ac_func in \ - realpath \ - dirname \ - stresep \ - strlcpy \ - -do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -eval as_val=\$$as_ac_var - if test "x$as_val" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - -else - case " $LIBOBJS " in - *" $ac_func.$ac_objext "* ) ;; - *) LIBOBJS="$LIBOBJS $ac_func.$ac_objext" - ;; -esac - -fi -done - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for emalloc in -lutil" >&5 -$as_echo_n "checking for emalloc in -lutil... " >&6; } -if test "${ac_cv_lib_util_emalloc+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lutil $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char emalloc (); -int -main () -{ -return emalloc (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_util_emalloc=yes -else - ac_cv_lib_util_emalloc=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_emalloc" >&5 -$as_echo "$ac_cv_lib_util_emalloc" >&6; } -if test "x$ac_cv_lib_util_emalloc" = x""yes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for erealloc in -lutil" >&5 -$as_echo_n "checking for erealloc in -lutil... " >&6; } -if test "${ac_cv_lib_util_erealloc+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lutil $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char erealloc (); -int -main () -{ -return erealloc (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_util_erealloc=yes -else - ac_cv_lib_util_erealloc=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_erealloc" >&5 -$as_echo "$ac_cv_lib_util_erealloc" >&6; } -if test "x$ac_cv_lib_util_erealloc" = x""yes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for estrdup in -lutil" >&5 -$as_echo_n "checking for estrdup in -lutil... " >&6; } -if test "${ac_cv_lib_util_estrdup+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lutil $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char estrdup (); -int -main () -{ -return estrdup (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_util_estrdup=yes -else - ac_cv_lib_util_estrdup=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_estrdup" >&5 -$as_echo "$ac_cv_lib_util_estrdup" >&6; } -if test "x$ac_cv_lib_util_estrdup" = x""yes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for estrndup in -lutil" >&5 -$as_echo_n "checking for estrndup in -lutil... " >&6; } -if test "${ac_cv_lib_util_estrndup+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lutil $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char estrndup (); -int -main () -{ -return estrndup (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_util_estrndup=yes -else - ac_cv_lib_util_estrndup=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_estrndup" >&5 -$as_echo "$ac_cv_lib_util_estrndup" >&6; } -if test "x$ac_cv_lib_util_estrndup" = x""yes; then : - LIBS="$LIBS -lutil" - CPPFLAGS="$CPPFLAGS -DUSE_EMALLOC" -fi - -fi - -fi - -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat file-mode macros are broken" >&5 -$as_echo_n "checking whether stat file-mode macros are broken... " >&6; } -if test "${ac_cv_header_stat_broken+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include - -#if defined S_ISBLK && defined S_IFDIR -extern char c1[S_ISBLK (S_IFDIR) ? -1 : 1]; -#endif - -#if defined S_ISBLK && defined S_IFCHR -extern char c2[S_ISBLK (S_IFCHR) ? -1 : 1]; -#endif - -#if defined S_ISLNK && defined S_IFREG -extern char c3[S_ISLNK (S_IFREG) ? -1 : 1]; -#endif - -#if defined S_ISSOCK && defined S_IFREG -extern char c4[S_ISSOCK (S_IFREG) ? -1 : 1]; -#endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stat_broken=no -else - ac_cv_header_stat_broken=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stat_broken" >&5 -$as_echo "$ac_cv_header_stat_broken" >&6; } -if test $ac_cv_header_stat_broken = yes; then - -$as_echo "#define STAT_MACROS_BROKEN 1" >>confdefs.h - -fi - -ac_fn_c_check_member "$LINENO" "struct stat" "st_rdev" "ac_cv_member_struct_stat_st_rdev" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_rdev" = x""yes; then : - -cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_RDEV 1 -_ACEOF - - -$as_echo "#define HAVE_ST_RDEV 1" >>confdefs.h - -fi - - -echo $ECHO_N "checking if diff -u works... $ECHO_C" >&6 -if diff -u /dev/null /dev/null > /dev/null 2>&1; then - diff_u=-u - echo yes >&6 -else - diff_u= - echo no >&6 -fi -echo "checking for MACHINE & MACHINE_ARCH..." >&6 -cat > conftest.$ac_ext < -#ifdef MACHINE -machine=MACHINE -#endif -#ifdef MACHINE_ARCH -machine_arch=MACHINE_ARCH -#endif -EOF - -default_machine=`(eval "$ac_cpp conftest.$ac_ext") 2>&5 | - egrep machine= | tr -d ' "'` -rm -rf conftest* -if test "$default_machine"; then - eval "$default_machine" -fi -machine=${machine:-`$srcdir/machine.sh`} -machine_arch=${machine_arch:-`$srcdir/machine.sh arch`} -echo "defaults: MACHINE=$machine, MACHINE_ARCH=$machine_arch" 1>&6 - -# Check whether --with-machine was given. -if test "${with_machine+set}" = set; then : - withval=$with_machine; case "${withval}" in -yes) as_fn_error "bad value ${withval} given for bmake MACHINE" "$LINENO" 5 ;; -no) ;; -generic) machine=`$srcdir/machine.sh`;; -*) machine=$with_machine;; -esac -fi - -force_machine= - -# Check whether --with-force_machine was given. -if test "${with_force_machine+set}" = set; then : - withval=$with_force_machine; case "${withval}" in -yes) force_machine=FORCE_;; -no) ;; -*) force_machine=FORCE_; machine=$with_force_machine;; -esac -fi - -force_machine_arch= - -# Check whether --with-force_machine_arch was given. -if test "${with_force_machine_arch+set}" = set; then : - withval=$with_force_machine_arch; case "${withval}" in -yes) force_machine_arch=FORCE_;; -no) ;; -*) force_machine_arch=FORCE_; machine_arch=$with_force_machine;; -esac -fi - - -# Check whether --with-machine_arch was given. -if test "${with_machine_arch+set}" = set; then : - withval=$with_machine_arch; case "${withval}" in -yes) as_fn_error "bad value ${withval} given for bmake MACHINE_ARCH" "$LINENO" 5 ;; -no) ;; -*) machine_arch=$with_machine_arch;; -esac -fi - -echo "Using: ${force_machine}MACHINE=$machine, MACHINE_ARCH=$machine_arch" 1>&6 -default_sys_path=\${prefix}/share/mk - -# Check whether --with-default-sys-path was given. -if test "${with_default_sys_path+set}" = set; then : - withval=$with_default_sys_path; case "${withval}" in -yes) as_fn_error "bad value ${withval} given for bmake _PATH_DEFSYSPATH" "$LINENO" 5 ;; -no) ;; -*) default_sys_path="$with_default_sys_path" - ;; -esac -fi - - -# Check whether --with-path-objdirprefix was given. -if test "${with_path_objdirprefix+set}" = set; then : - withval=$with_path_objdirprefix; case "${withval}" in -yes) as_fn_error "bad value ${withval} given for bmake _PATH_OBJDIRPREFIX" "$LINENO" 5 ;; -no) CPPFLAGS="$CPPFLAGS -DNO_PATH_OBJDIRPREFIX" ;; -*) CPPFLAGS="$CPPFLAGS \"-D_PATH_OBJDIRPREFIX=\\\"$with_path-objdir\\\"\"" ;; -esac -fi - -# Check whether --enable-pwd-override was given. -if test "${enable_pwd_override+set}" = set; then : - enableval=$enable_pwd_override; case "${enableval}" in -yes) ;; -no) CPPFLAGS="$CPPFLAGS -DNO_PWD_OVERRIDE" ;; -*) as_fn_error "bad value ${enableval} given for pwd-override option" "$LINENO" 5 ;; -esac -fi - -# Check whether --enable-check-make-chdir was given. -if test "${enable_check_make_chdir+set}" = set; then : - enableval=$enable_check_make_chdir; case "${enableval}" in -yes) ;; -no) CPPFLAGS="$CPPFLAGS -DNO_CHECK_MAKE_CHDIR" ;; -*) as_fn_error "bad value ${enableval} given for check-make-chdir option" "$LINENO" 5 ;; -esac -fi - - -# Check whether --with-mksrc was given. -if test "${with_mksrc+set}" = set; then : - withval=$with_mksrc; case "${withval}" in -""|yes|no) ;; -*) test -s $withval/install-mk && mksrc=$withval || -as_fn_error "bad value ${withval} given for mksrc cannot find install-mk" "$LINENO" 5 -;; -esac - -fi - -srcdir=`cd $srcdir && pwd` -for mksrc in $mksrc $srcdir/mk $srcdir/../mk mk -do - test -s $mksrc/install-mk || continue - mksrc=`cd $mksrc && pwd` - break -done -mksrc=`echo $mksrc | sed "s,$srcdir,\\\${srcdir},"` -echo "Using: MKSRC=$mksrc" 1>&6 -if test -x /usr/xpg4/bin/sh; then - defshell_path=${defshell_path:-/usr/xpg4/bin/sh} -fi -if test -n "$defshell_path"; then - echo "Using: SHELL=$defshell_path" >&6 - -cat >>confdefs.h <<_ACEOF -#define DEFSHELL_CUSTOM "$defshell_path" -_ACEOF - -fi -if test -n "$DEFSHELL_INDEX"; then - -cat >>confdefs.h <<_ACEOF -#define DEFSHELL_INDEX $DEFSHELL_INDEX -_ACEOF - -fi - - - - - - - - - - -ac_config_files="$ac_config_files Makefile make-bootstrap.sh unit-tests/Makefile" - -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems. If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, we kill variables containing newlines. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -( - for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - - (set) 2>&1 | - case $as_nl`(ac_space=' '; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - # `set' does not quote correctly, so add quotes: double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \. - sed -n \ - "s/'/'\\\\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" - ;; #( - *) - # `set' quotes correctly as required by POSIX, so do not add quotes. - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) | - sed ' - /^ac_cv_env_/b end - t clear - :clear - s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ - t end - s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ - :end' >>confcache -if diff "$cache_file" confcache >/dev/null 2>&1; then :; else - if test -w "$cache_file"; then - test "x$cache_file" != "x/dev/null" && - { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -$as_echo "$as_me: updating cache $cache_file" >&6;} - cat confcache >$cache_file - else - { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} - fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' - ac_i=`$as_echo "$ac_i" | sed "$ac_script"` - # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR - # will be set to the directory where LIBOBJS objects are built. - as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" - as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' -done -LIBOBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - - - -: ${CONFIG_STATUS=./config.status} -ac_write_fail=0 -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} -as_write_fail=0 -cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false - -SHELL=\${CONFIG_SHELL-$SHELL} -export SHELL -_ASEOF -cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - - -# as_fn_error ERROR [LINENO LOG_FD] -# --------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with status $?, using 1 if that was 0. -as_fn_error () -{ - as_status=$?; test $as_status -eq 0 && as_status=1 - if test "$3"; then - as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 - fi - $as_echo "$as_me: error: $1" >&2 - as_fn_exit $as_status -} # as_fn_error - - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -p' - fi -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" - - -} # as_fn_mkdir_p -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in #( - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 -## ----------------------------------- ## -## Main body of $CONFIG_STATUS script. ## -## ----------------------------------- ## -_ASEOF -test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# Save the log message, to keep $0 and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by bmake $as_me 20120620, which was -generated by GNU Autoconf 2.64. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -_ACEOF - -case $ac_config_files in *" -"*) set x $ac_config_files; shift; ac_config_files=$*;; -esac - -case $ac_config_headers in *" -"*) set x $ac_config_headers; shift; ac_config_headers=$*;; -esac - - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# Files that config.status was made for. -config_files="$ac_config_files" -config_headers="$ac_config_headers" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -ac_cs_usage="\ -\`$as_me' instantiates files and other configuration actions -from templates according to the current configuration. Unless the files -and actions are specified as TAGs, all are instantiated by default. - -Usage: $0 [OPTION]... [TAG]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - -q, --quiet, --silent - do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Report bugs to ." - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_cs_version="\\ -bmake config.status 20120620 -configured by $0, generated by GNU Autoconf 2.64, - with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" - -Copyright (C) 2009 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='$ac_pwd' -srcdir='$srcdir' -INSTALL='$INSTALL' -test -n "\$AWK" || AWK=awk -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# The default lists apply if the user does not specify any file. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - $as_echo "$ac_cs_version"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append CONFIG_FILES " '$ac_optarg'" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append CONFIG_HEADERS " '$ac_optarg'" - ac_need_defaults=false;; - --he | --h) - # Conflict between --help and --header - as_fn_error "ambiguous option: \`$1' -Try \`$0 --help' for more information.";; - --help | --hel | -h ) - $as_echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) as_fn_error "unrecognized option: \`$1' -Try \`$0 --help' for more information." ;; - - *) as_fn_append ac_config_targets " $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -if \$ac_cs_recheck; then - set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion - shift - \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 - CONFIG_SHELL='$SHELL' - export CONFIG_SHELL - exec "\$@" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX - $as_echo "$ac_log" -} >&5 - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "make-bootstrap.sh") CONFIG_FILES="$CONFIG_FILES make-bootstrap.sh" ;; - "unit-tests/Makefile") CONFIG_FILES="$CONFIG_FILES unit-tests/Makefile" ;; - - *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= - trap 'exit_status=$? - { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status -' 0 - trap 'as_fn_exit 1' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -n "$tmp" && test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 - -# Set up the scripts for CONFIG_FILES section. -# No need to generate them if there are no CONFIG_FILES. -# This happens for instance with `./config.status config.h'. -if test -n "$CONFIG_FILES"; then - - -ac_cr=`echo X | tr X '\015'` -# On cygwin, bash can eat \r inside `` if the user requested igncr. -# But we know of no other shell where ac_cr would be empty at this -# point, so we can use a bashism as a fallback. -if test "x$ac_cr" = x; then - eval ac_cr=\$\'\\r\' -fi -ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` -if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\r' -else - ac_cs_awk_cr=$ac_cr -fi - -echo 'BEGIN {' >"$tmp/subs1.awk" && -_ACEOF - - -{ - echo "cat >conf$$subs.awk <<_ACEOF" && - echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && - echo "_ACEOF" -} >conf$$subs.sh || - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` -ac_delim='%!_!# ' -for ac_last_try in false false false false false :; do - . ./conf$$subs.sh || - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 - - ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` - if test $ac_delim_n = $ac_delim_num; then - break - elif $ac_last_try; then - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done -rm -f conf$$subs.sh - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -cat >>"\$tmp/subs1.awk" <<\\_ACAWK && -_ACEOF -sed -n ' -h -s/^/S["/; s/!.*/"]=/ -p -g -s/^[^!]*!// -:repl -t repl -s/'"$ac_delim"'$// -t delim -:nl -h -s/\(.\{148\}\).*/\1/ -t more1 -s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ -p -n -b repl -:more1 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t nl -:delim -h -s/\(.\{148\}\).*/\1/ -t more2 -s/["\\]/\\&/g; s/^/"/; s/$/"/ -p -b -:more2 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t delim -' >$CONFIG_STATUS || ac_write_fail=1 -rm -f conf$$subs.awk -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -_ACAWK -cat >>"\$tmp/subs1.awk" <<_ACAWK && - for (key in S) S_is_set[key] = 1 - FS = "" - -} -{ - line = $ 0 - nfields = split(line, field, "@") - substed = 0 - len = length(field[1]) - for (i = 2; i < nfields; i++) { - key = field[i] - keylen = length(key) - if (S_is_set[key]) { - value = S[key] - line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) - len += length(value) + length(field[++i]) - substed = 1 - } else - len += 1 + keylen - } - - print line -} - -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then - sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" -else - cat -fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ - || as_fn_error "could not setup config files machinery" "$LINENO" 5 -_ACEOF - -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/ -s/:*\${srcdir}:*/:/ -s/:*@srcdir@:*/:/ -s/^\([^=]*=[ ]*\):*/\1/ -s/:*$// -s/^[^=]*=[ ]*$// -}' -fi - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -fi # test -n "$CONFIG_FILES" - -# Set up the scripts for CONFIG_HEADERS section. -# No need to generate them if there are no CONFIG_HEADERS. -# This happens for instance with `./config.status Makefile'. -if test -n "$CONFIG_HEADERS"; then -cat >"$tmp/defines.awk" <<\_ACAWK || -BEGIN { -_ACEOF - -# Transform confdefs.h into an awk script `defines.awk', embedded as -# here-document in config.status, that substitutes the proper values into -# config.h.in to produce config.h. - -# Create a delimiter string that does not exist in confdefs.h, to ease -# handling of long lines. -ac_delim='%!_!# ' -for ac_last_try in false false :; do - ac_t=`sed -n "/$ac_delim/p" confdefs.h` - if test -z "$ac_t"; then - break - elif $ac_last_try; then - as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done - -# For the awk script, D is an array of macro values keyed by name, -# likewise P contains macro parameters if any. Preserve backslash -# newline sequences. - -ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -sed -n ' -s/.\{148\}/&'"$ac_delim"'/g -t rset -:rset -s/^[ ]*#[ ]*define[ ][ ]*/ / -t def -d -:def -s/\\$// -t bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3"/p -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p -d -:bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3\\\\\\n"\\/p -t cont -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p -t cont -d -:cont -n -s/.\{148\}/&'"$ac_delim"'/g -t clear -:clear -s/\\$// -t bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/"/p -d -:bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p -b cont -' >$CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - for (key in D) D_is_set[key] = 1 - FS = "" -} -/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { - line = \$ 0 - split(line, arg, " ") - if (arg[1] == "#") { - defundef = arg[2] - mac1 = arg[3] - } else { - defundef = substr(arg[1], 2) - mac1 = arg[2] - } - split(mac1, mac2, "(") #) - macro = mac2[1] - prefix = substr(line, 1, index(line, defundef) - 1) - if (D_is_set[macro]) { - # Preserve the white space surrounding the "#". - print prefix "define", macro P[macro] D[macro] - next - } else { - # Replace #undef with comments. This is necessary, for example, - # in the case of _POSIX_SOURCE, which is predefined and required - # on some systems where configure will not decide to define it. - if (defundef == "undef") { - print "/*", prefix defundef, macro, "*/" - next - } - } -} -{ print } -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - as_fn_error "could not setup config headers machinery" "$LINENO" 5 -fi # test -n "$CONFIG_HEADERS" - - -eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS " -shift -for ac_tag -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; - esac - case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac - as_fn_append ac_file_inputs " '$ac_f'" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input='Generated from '` - $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' - `' by configure.' - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -$as_echo "$as_me: creating $ac_file" >&6;} - fi - # Neutralize special characters interpreted by sed in replacement strings. - case $configure_input in #( - *\&* | *\|* | *\\* ) - ac_sed_conf_input=`$as_echo "$configure_input" | - sed 's/[\\\\&|]/\\\\&/g'`;; #( - *) ac_sed_conf_input=$configure_input;; - esac - - case $ac_tag in - *:-:* | *:-) cat >"$tmp/stdin" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir="$ac_dir"; as_fn_mkdir_p - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; - esac -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= -ac_sed_dataroot=' -/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p' -case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - ac_datarootdir_hack=' - s&@datadir@&$datadir&g - s&@docdir@&$docdir&g - s&@infodir@&$infodir&g - s&@localedir@&$localedir&g - s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; -esac -_ACEOF - -# Neutralize VPATH when `$srcdir' = `.'. -# Shell code in configure.ac might set extrasub. -# FIXME: do we really want to maintain this feature? -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_sed_extra="$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s|@configure_input@|$ac_sed_conf_input|;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@top_build_prefix@&$ac_top_build_prefix&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -s&@INSTALL@&$ac_INSTALL&;t t -$ac_datarootdir_hack -" -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&5 -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&2;} - - rm -f "$tmp/stdin" - case $ac_file in - -) cat "$tmp/out" && rm -f "$tmp/out";; - *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; - esac \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 - ;; - :H) - # - # CONFIG_HEADER - # - if test x"$ac_file" != x-; then - { - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" - } >"$tmp/config.h" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then - { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -$as_echo "$as_me: $ac_file is unchanged" >&6;} - else - rm -f "$ac_file" - mv "$tmp/config.h" "$ac_file" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 - fi - else - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error "could not create -" "$LINENO" 5 - fi - ;; - - - esac - -done # for ac_tag - - -as_fn_exit 0 -_ACEOF -ac_clean_files=$ac_clean_files_save - -test $ac_write_fail = 0 || - as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit $? -fi -if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 -$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} -fi - - -cat <&6 -case "$use_meta" in -yes) - case "$filemon_h" in - *.h) echo "Using: filemon=$filemon_h" >&6;; - esac - ;; -esac -dnl -dnl Check for OS problems -dnl Solaris's signal.h only privides sigset_t etc if one of -dnl _EXTENSIONS_ _POSIX_C_SOURCE or _XOPEN_SOURCE are defined. -dnl The later two seem to cause more problems than they solve so if we -dnl see _EXTENSIONS_ we use it. -AC_USE_SYSTEM_EXTENSIONS -dnl Checks for programs. -AC_PROG_CC -AC_PROG_GCC_TRADITIONAL -AC_PROG_INSTALL -dnl Executable suffix - normally empty; .exe on os2. -AC_SUBST(ac_exe_suffix)dnl - -dnl -dnl Check if /bin/sh will pass .MAKE.LEVEL -echo $ECHO_N "checking if sh will pass .MAKE. variables... $ECHO_C" >&6 -ok=`env .MAKE.LEVEL=1 /bin/sh -c env | grep LEVEL=` -case "$ok" in -"") echo no >&6; CPPFLAGS="${CPPFLAGS} -DNEED_MAKE_LEVEL_SAFE";; -*) echo yes >&6;; -esac - -dnl -dnl AC_C_CROSS -dnl - -dnl Checks for header files. -AC_HEADER_STDC -AC_HEADER_SYS_WAIT -AC_HEADER_DIRENT -dnl Keep this list sorted -AC_CHECK_HEADERS( \ - ar.h \ - err.h \ - fcntl.h \ - paths.h \ - poll.h \ - ranlib.h \ - string.h \ - sys/mman.h \ - sys/select.h \ - sys/socket.h \ - sys/time.h \ - sys/uio.h \ - unistd.h \ - utime.h \ - ) - -dnl Both *BSD and Linux have sys/cdefs.h, most do not. -dnl If it is missing, we add -I${srcdir}/missing to CFLAGS -dnl also if sys/cdefs.h does not have __RCSID we need to use ours -dnl but we need to include the host's one too *sigh* -AC_CHECK_HEADER(sys/cdefs.h, -echo $ECHO_N "checking whether sys/cdefs.h is compatible... $ECHO_C" >&6 -AC_EGREP_CPP(yes, -[#include -#ifdef __RCSID -yes -#endif -], -echo yes >&6, -echo no >&6; CPPFLAGS="${CPPFLAGS} -I`cd ${srcdir}/missing && pwd` -DNEED_HOST_CDEFS_H"), -CPPFLAGS="${CPPFLAGS} -I`cd ${srcdir}/missing && pwd`") - -dnl Checks for typedefs, structures, and compiler characteristics. -AC_C___ATTRIBUTE__ -AC_C_BIGENDIAN -AC_C_CONST -AC_TYPE_OFF_T -AC_TYPE_PID_T -AC_TYPE_SIZE_T -AC_DECL_SYS_SIGLIST -AC_HEADER_TIME -AC_STRUCT_TM - -dnl Checks for library functions. -AC_TYPE_SIGNAL -AC_FUNC_VFORK -AC_FUNC_VPRINTF -AC_FUNC_WAIT3 -dnl Keep this list sorted -AC_CHECK_FUNCS( \ - err \ - errx \ - getcwd \ - getenv \ - getopt \ - getwd \ - killpg \ - mmap \ - putenv \ - select \ - setenv \ - setpgid \ - setsid \ - sigaction \ - sigvec \ - snprintf \ - strerror \ - strftime \ - strsep \ - strtod \ - strtol \ - unsetenv \ - vsnprintf \ - wait3 \ - wait4 \ - waitpid \ - warn \ - warnx \ - ) - -dnl functions which we may need to provide -AC_REPLACE_FUNCS( \ - realpath \ - dirname \ - stresep \ - strlcpy \ - ) - -AC_CHECK_LIB([util], [emalloc], - [ AC_CHECK_LIB([util], [erealloc], - [ AC_CHECK_LIB([util], [estrdup], - [ AC_CHECK_LIB([util], [estrndup], - [ LIBS="$LIBS -lutil" - CPPFLAGS="$CPPFLAGS -DUSE_EMALLOC" ])])])]) - -dnl -dnl Structures -dnl -AC_HEADER_STAT -AC_STRUCT_ST_RDEV -dnl -dnl we want this for unit-tests/Makefile -echo $ECHO_N "checking if diff -u works... $ECHO_C" >&6 -if diff -u /dev/null /dev/null > /dev/null 2>&1; then - diff_u=-u - echo yes >&6 -else - diff_u= - echo no >&6 -fi -dnl -dnl AC_* don't quite cut it. -dnl -echo "checking for MACHINE & MACHINE_ARCH..." >&6 -cat > conftest.$ac_ext < -#ifdef MACHINE -machine=MACHINE -#endif -#ifdef MACHINE_ARCH -machine_arch=MACHINE_ARCH -#endif -EOF - -default_machine=`(eval "$ac_cpp conftest.$ac_ext") 2>&5 | - egrep machine= | tr -d ' "'` -rm -rf conftest* -if test "$default_machine"; then - eval "$default_machine" -fi -machine=${machine:-`$srcdir/machine.sh`} -machine_arch=${machine_arch:-`$srcdir/machine.sh arch`} -echo "defaults: MACHINE=$machine, MACHINE_ARCH=$machine_arch" 1>&6 -dnl -dnl now allow overrides -dnl -AC_ARG_WITH(machine, -[ --with-machine=MACHINE explicitly set MACHINE], -[case "${withval}" in -yes) AC_MSG_ERROR(bad value ${withval} given for bmake MACHINE) ;; -no) ;; -generic) machine=`$srcdir/machine.sh`;; -*) machine=$with_machine;; -esac]) -force_machine= -AC_ARG_WITH(force_machine, -[ --with-force-machine=MACHINE set FORCE_MACHINE], -[case "${withval}" in -yes) force_machine=FORCE_;; -no) ;; -*) force_machine=FORCE_; machine=$with_force_machine;; -esac]) -dnl -force_machine_arch= -AC_ARG_WITH(force_machine_arch, -[ --with-force-machine-arch=MACHINE set FORCE_MACHINE_ARCH], -[case "${withval}" in -yes) force_machine_arch=FORCE_;; -no) ;; -*) force_machine_arch=FORCE_; machine_arch=$with_force_machine;; -esac]) -dnl -AC_ARG_WITH(machine_arch, -[ --with-machine_arch=MACHINE_ARCH explicitly set MACHINE_ARCH], -[case "${withval}" in -yes) AC_MSG_ERROR(bad value ${withval} given for bmake MACHINE_ARCH) ;; -no) ;; -*) machine_arch=$with_machine_arch;; -esac]) -dnl -dnl Tell them what we ended up with -dnl -echo "Using: ${force_machine}MACHINE=$machine, MACHINE_ARCH=$machine_arch" 1>&6 -dnl -dnl Allow folk to control _PATH_DEFSYSPATH -dnl -default_sys_path=\${prefix}/share/mk -AC_ARG_WITH(default-sys-path, -[ --with-default-sys-path=PATH:DIR:LIST use an explicit _PATH_DEFSYSPATH - MAKESYSPATH is a ':' separated list of directories - that bmake will search for system .mk files. - _PATH_DEFSYSPATH is its default value.], -[case "${withval}" in -yes) AC_MSG_ERROR(bad value ${withval} given for bmake _PATH_DEFSYSPATH) ;; -no) ;; -*) default_sys_path="$with_default_sys_path" - ;; -esac]) -dnl -dnl Some folk don't like this one -dnl -AC_ARG_WITH(path-objdirprefix, -[ --with-path-objdirprefix=PATH override _PATH_OBJDIRPREFIX], -[case "${withval}" in -yes) AC_MSG_ERROR(bad value ${withval} given for bmake _PATH_OBJDIRPREFIX) ;; -no) CPPFLAGS="$CPPFLAGS -DNO_PATH_OBJDIRPREFIX" ;; -*) CPPFLAGS="$CPPFLAGS \"-D_PATH_OBJDIRPREFIX=\\\"$with_path-objdir\\\"\"" ;; -esac]) -dnl -dnl And this can be handy to do with out. -dnl -AC_ARG_ENABLE(pwd-override, -[ --disable-pwd-override disable \$PWD overriding getcwd()], -[case "${enableval}" in -yes) ;; -no) CPPFLAGS="$CPPFLAGS -DNO_PWD_OVERRIDE" ;; -*) AC_MSG_ERROR(bad value ${enableval} given for pwd-override option) ;; -esac]) -dnl -dnl Just for grins -dnl -AC_ARG_ENABLE(check-make-chdir, -[ --disable-check-make-chdir disable make trying to guess - when it should automatically cd \${.CURDIR}], -[case "${enableval}" in -yes) ;; -no) CPPFLAGS="$CPPFLAGS -DNO_CHECK_MAKE_CHDIR" ;; -*) AC_MSG_ERROR(bad value ${enableval} given for check-make-chdir option) ;; -esac]) -dnl -dnl On non-BSD systems, bootstrap won't work without mk -dnl -AC_ARG_WITH(mksrc, -[ --with-mksrc=PATH tell makefile.boot where to find mk src], -[case "${withval}" in -""|yes|no) ;; -*) test -s $withval/install-mk && mksrc=$withval || -AC_MSG_ERROR(bad value ${withval} given for mksrc cannot find install-mk) -;; -esac -]) -dnl -dnl Now make sure we have a value -dnl -srcdir=`cd $srcdir && pwd` -for mksrc in $mksrc $srcdir/mk $srcdir/../mk mk -do - test -s $mksrc/install-mk || continue - mksrc=`cd $mksrc && pwd` - break -done -mksrc=`echo $mksrc | sed "s,$srcdir,\\\${srcdir},"` -echo "Using: MKSRC=$mksrc" 1>&6 -dnl On some systems we want a different default shell by default -if test -x /usr/xpg4/bin/sh; then - defshell_path=${defshell_path:-/usr/xpg4/bin/sh} -fi -if test -n "$defshell_path"; then - echo "Using: SHELL=$defshell_path" >&6 - AC_DEFINE_UNQUOTED(DEFSHELL_CUSTOM, "$defshell_path", Path of default shell) -fi -if test -n "$DEFSHELL_INDEX"; then - AC_DEFINE_UNQUOTED(DEFSHELL_INDEX, $DEFSHELL_INDEX, Shell spec to use by default) -fi -dnl -AC_SUBST(machine) -AC_SUBST(force_machine) -AC_SUBST(machine_arch) -AC_SUBST(mksrc) -AC_SUBST(default_sys_path) -AC_SUBST(INSTALL) -AC_SUBST(GCC) -AC_SUBST(diff_u) -AC_SUBST(use_meta) -AC_SUBST(filemon_h) -AC_OUTPUT(Makefile make-bootstrap.sh unit-tests/Makefile) - -cat < -#ifndef lint -#if 0 -static char sccsid[] = "@(#)dir.c 8.2 (Berkeley) 1/2/94"; -#else -__RCSID("$NetBSD: dir.c,v 1.65 2012/06/12 19:21:50 joerg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * dir.c -- - * Directory searching using wildcards and/or normal names... - * Used both for source wildcarding in the Makefile and for finding - * implicit sources. - * - * The interface for this module is: - * Dir_Init Initialize the module. - * - * Dir_InitCur Set the cur Path. - * - * Dir_InitDot Set the dot Path. - * - * Dir_End Cleanup the module. - * - * Dir_SetPATH Set ${.PATH} to reflect state of dirSearchPath. - * - * Dir_HasWildcards Returns TRUE if the name given it needs to - * be wildcard-expanded. - * - * Dir_Expand Given a pattern and a path, return a Lst of names - * which match the pattern on the search path. - * - * Dir_FindFile Searches for a file on a given search path. - * If it exists, the entire path is returned. - * Otherwise NULL is returned. - * - * Dir_FindHereOrAbove Search for a path in the current directory and - * then all the directories above it in turn until - * the path is found or we reach the root ("/"). - * - * Dir_MTime Return the modification time of a node. The file - * is searched for along the default search path. - * The path and mtime fields of the node are filled - * in. - * - * Dir_AddDir Add a directory to a search path. - * - * Dir_MakeFlags Given a search path and a command flag, create - * a string with each of the directories in the path - * preceded by the command flag and all of them - * separated by a space. - * - * Dir_Destroy Destroy an element of a search path. Frees up all - * things that can be freed for the element as long - * as the element is no longer referenced by any other - * search path. - * Dir_ClearPath Resets a search path to the empty list. - * - * For debugging: - * Dir_PrintDirectories Print stats about the directory cache. - */ - -#include -#include - -#include -#include -#include - -#include "make.h" -#include "hash.h" -#include "dir.h" - -/* - * A search path consists of a Lst of Path structures. A Path structure - * has in it the name of the directory and a hash table of all the files - * in the directory. This is used to cut down on the number of system - * calls necessary to find implicit dependents and their like. Since - * these searches are made before any actions are taken, we need not - * worry about the directory changing due to creation commands. If this - * hampers the style of some makefiles, they must be changed. - * - * A list of all previously-read directories is kept in the - * openDirectories Lst. This list is checked first before a directory - * is opened. - * - * The need for the caching of whole directories is brought about by - * the multi-level transformation code in suff.c, which tends to search - * for far more files than regular make does. In the initial - * implementation, the amount of time spent performing "stat" calls was - * truly astronomical. The problem with hashing at the start is, - * of course, that pmake doesn't then detect changes to these directories - * during the course of the make. Three possibilities suggest themselves: - * - * 1) just use stat to test for a file's existence. As mentioned - * above, this is very inefficient due to the number of checks - * engendered by the multi-level transformation code. - * 2) use readdir() and company to search the directories, keeping - * them open between checks. I have tried this and while it - * didn't slow down the process too much, it could severely - * affect the amount of parallelism available as each directory - * open would take another file descriptor out of play for - * handling I/O for another job. Given that it is only recently - * that UNIX OS's have taken to allowing more than 20 or 32 - * file descriptors for a process, this doesn't seem acceptable - * to me. - * 3) record the mtime of the directory in the Path structure and - * verify the directory hasn't changed since the contents were - * hashed. This will catch the creation or deletion of files, - * but not the updating of files. However, since it is the - * creation and deletion that is the problem, this could be - * a good thing to do. Unfortunately, if the directory (say ".") - * were fairly large and changed fairly frequently, the constant - * rehashing could seriously degrade performance. It might be - * good in such cases to keep track of the number of rehashes - * and if the number goes over a (small) limit, resort to using - * stat in its place. - * - * An additional thing to consider is that pmake is used primarily - * to create C programs and until recently pcc-based compilers refused - * to allow you to specify where the resulting object file should be - * placed. This forced all objects to be created in the current - * directory. This isn't meant as a full excuse, just an explanation of - * some of the reasons for the caching used here. - * - * One more note: the location of a target's file is only performed - * on the downward traversal of the graph and then only for terminal - * nodes in the graph. This could be construed as wrong in some cases, - * but prevents inadvertent modification of files when the "installed" - * directory for a file is provided in the search path. - * - * Another data structure maintained by this module is an mtime - * cache used when the searching of cached directories fails to find - * a file. In the past, Dir_FindFile would simply perform an access() - * call in such a case to determine if the file could be found using - * just the name given. When this hit, however, all that was gained - * was the knowledge that the file existed. Given that an access() is - * essentially a stat() without the copyout() call, and that the same - * filesystem overhead would have to be incurred in Dir_MTime, it made - * sense to replace the access() with a stat() and record the mtime - * in a cache for when Dir_MTime was actually called. - */ - -Lst dirSearchPath; /* main search path */ - -static Lst openDirectories; /* the list of all open directories */ - -/* - * Variables for gathering statistics on the efficiency of the hashing - * mechanism. - */ -static int hits, /* Found in directory cache */ - misses, /* Sad, but not evil misses */ - nearmisses, /* Found under search path */ - bigmisses; /* Sought by itself */ - -static Path *dot; /* contents of current directory */ -static Path *cur; /* contents of current directory, if not dot */ -static Path *dotLast; /* a fake path entry indicating we need to - * look for . last */ -static Hash_Table mtimes; /* Results of doing a last-resort stat in - * Dir_FindFile -- if we have to go to the - * system to find the file, we might as well - * have its mtime on record. XXX: If this is done - * way early, there's a chance other rules will - * have already updated the file, in which case - * we'll update it again. Generally, there won't - * be two rules to update a single file, so this - * should be ok, but... */ - - -static int DirFindName(const void *, const void *); -static int DirMatchFiles(const char *, Path *, Lst); -static void DirExpandCurly(const char *, const char *, Lst, Lst); -static void DirExpandInt(const char *, Lst, Lst); -static int DirPrintWord(void *, void *); -static int DirPrintDir(void *, void *); -static char *DirLookup(Path *, const char *, const char *, Boolean); -static char *DirLookupSubdir(Path *, const char *); -static char *DirFindDot(Boolean, const char *, const char *); -static char *DirLookupAbs(Path *, const char *, const char *); - -/*- - *----------------------------------------------------------------------- - * Dir_Init -- - * initialize things for this module - * - * Results: - * none - * - * Side Effects: - * some directories may be opened. - *----------------------------------------------------------------------- - */ -void -Dir_Init(const char *cdname) -{ - dirSearchPath = Lst_Init(FALSE); - openDirectories = Lst_Init(FALSE); - Hash_InitTable(&mtimes, 0); - - Dir_InitCur(cdname); - - dotLast = bmake_malloc(sizeof(Path)); - dotLast->refCount = 1; - dotLast->hits = 0; - dotLast->name = bmake_strdup(".DOTLAST"); - Hash_InitTable(&dotLast->files, -1); -} - -/* - * Called by Dir_Init() and whenever .CURDIR is assigned to. - */ -void -Dir_InitCur(const char *cdname) -{ - Path *p; - - if (cdname != NULL) { - /* - * Our build directory is not the same as our source directory. - * Keep this one around too. - */ - if ((p = Dir_AddDir(NULL, cdname))) { - p->refCount += 1; - if (cur && cur != p) { - /* - * We've been here before, cleanup. - */ - cur->refCount -= 1; - Dir_Destroy(cur); - } - cur = p; - } - } -} - -/*- - *----------------------------------------------------------------------- - * Dir_InitDot -- - * (re)initialize "dot" (current/object directory) path hash - * - * Results: - * none - * - * Side Effects: - * some directories may be opened. - *----------------------------------------------------------------------- - */ -void -Dir_InitDot(void) -{ - if (dot != NULL) { - LstNode ln; - - /* Remove old entry from openDirectories, but do not destroy. */ - ln = Lst_Member(openDirectories, dot); - (void)Lst_Remove(openDirectories, ln); - } - - dot = Dir_AddDir(NULL, "."); - - if (dot == NULL) { - Error("Cannot open `.' (%s)", strerror(errno)); - exit(1); - } - - /* - * We always need to have dot around, so we increment its reference count - * to make sure it's not destroyed. - */ - dot->refCount += 1; - Dir_SetPATH(); /* initialize */ -} - -/*- - *----------------------------------------------------------------------- - * Dir_End -- - * cleanup things for this module - * - * Results: - * none - * - * Side Effects: - * none - *----------------------------------------------------------------------- - */ -void -Dir_End(void) -{ -#ifdef CLEANUP - if (cur) { - cur->refCount -= 1; - Dir_Destroy(cur); - } - dot->refCount -= 1; - dotLast->refCount -= 1; - Dir_Destroy(dotLast); - Dir_Destroy(dot); - Dir_ClearPath(dirSearchPath); - Lst_Destroy(dirSearchPath, NULL); - Dir_ClearPath(openDirectories); - Lst_Destroy(openDirectories, NULL); - Hash_DeleteTable(&mtimes); -#endif -} - -/* - * We want ${.PATH} to indicate the order in which we will actually - * search, so we rebuild it after any .PATH: target. - * This is the simplest way to deal with the effect of .DOTLAST. - */ -void -Dir_SetPATH(void) -{ - LstNode ln; /* a list element */ - Path *p; - Boolean hasLastDot = FALSE; /* true we should search dot last */ - - Var_Delete(".PATH", VAR_GLOBAL); - - if (Lst_Open(dirSearchPath) == SUCCESS) { - if ((ln = Lst_First(dirSearchPath)) != NULL) { - p = (Path *)Lst_Datum(ln); - if (p == dotLast) { - hasLastDot = TRUE; - Var_Append(".PATH", dotLast->name, VAR_GLOBAL); - } - } - - if (!hasLastDot) { - if (dot) - Var_Append(".PATH", dot->name, VAR_GLOBAL); - if (cur) - Var_Append(".PATH", cur->name, VAR_GLOBAL); - } - - while ((ln = Lst_Next(dirSearchPath)) != NULL) { - p = (Path *)Lst_Datum(ln); - if (p == dotLast) - continue; - if (p == dot && hasLastDot) - continue; - Var_Append(".PATH", p->name, VAR_GLOBAL); - } - - if (hasLastDot) { - if (dot) - Var_Append(".PATH", dot->name, VAR_GLOBAL); - if (cur) - Var_Append(".PATH", cur->name, VAR_GLOBAL); - } - Lst_Close(dirSearchPath); - } -} - -/*- - *----------------------------------------------------------------------- - * DirFindName -- - * See if the Path structure describes the same directory as the - * given one by comparing their names. Called from Dir_AddDir via - * Lst_Find when searching the list of open directories. - * - * Input: - * p Current name - * dname Desired name - * - * Results: - * 0 if it is the same. Non-zero otherwise - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -static int -DirFindName(const void *p, const void *dname) -{ - return (strcmp(((const Path *)p)->name, dname)); -} - -/*- - *----------------------------------------------------------------------- - * Dir_HasWildcards -- - * see if the given name has any wildcard characters in it - * be careful not to expand unmatching brackets or braces. - * XXX: This code is not 100% correct. ([^]] fails etc.) - * I really don't think that make(1) should be expanding - * patterns, because then you have to set a mechanism for - * escaping the expansion! - * - * Input: - * name name to check - * - * Results: - * returns TRUE if the word should be expanded, FALSE otherwise - * - * Side Effects: - * none - *----------------------------------------------------------------------- - */ -Boolean -Dir_HasWildcards(char *name) -{ - char *cp; - int wild = 0, brace = 0, bracket = 0; - - for (cp = name; *cp; cp++) { - switch(*cp) { - case '{': - brace++; - wild = 1; - break; - case '}': - brace--; - break; - case '[': - bracket++; - wild = 1; - break; - case ']': - bracket--; - break; - case '?': - case '*': - wild = 1; - break; - default: - break; - } - } - return wild && bracket == 0 && brace == 0; -} - -/*- - *----------------------------------------------------------------------- - * DirMatchFiles -- - * Given a pattern and a Path structure, see if any files - * match the pattern and add their names to the 'expansions' list if - * any do. This is incomplete -- it doesn't take care of patterns like - * src / *src / *.c properly (just *.c on any of the directories), but it - * will do for now. - * - * Input: - * pattern Pattern to look for - * p Directory to search - * expansion Place to store the results - * - * Results: - * Always returns 0 - * - * Side Effects: - * File names are added to the expansions lst. The directory will be - * fully hashed when this is done. - *----------------------------------------------------------------------- - */ -static int -DirMatchFiles(const char *pattern, Path *p, Lst expansions) -{ - Hash_Search search; /* Index into the directory's table */ - Hash_Entry *entry; /* Current entry in the table */ - Boolean isDot; /* TRUE if the directory being searched is . */ - - isDot = (*p->name == '.' && p->name[1] == '\0'); - - for (entry = Hash_EnumFirst(&p->files, &search); - entry != NULL; - entry = Hash_EnumNext(&search)) - { - /* - * See if the file matches the given pattern. Note we follow the UNIX - * convention that dot files will only be found if the pattern - * begins with a dot (note also that as a side effect of the hashing - * scheme, .* won't match . or .. since they aren't hashed). - */ - if (Str_Match(entry->name, pattern) && - ((entry->name[0] != '.') || - (pattern[0] == '.'))) - { - (void)Lst_AtEnd(expansions, - (isDot ? bmake_strdup(entry->name) : - str_concat(p->name, entry->name, - STR_ADDSLASH))); - } - } - return (0); -} - -/*- - *----------------------------------------------------------------------- - * DirExpandCurly -- - * Expand curly braces like the C shell. Does this recursively. - * Note the special case: if after the piece of the curly brace is - * done there are no wildcard characters in the result, the result is - * placed on the list WITHOUT CHECKING FOR ITS EXISTENCE. - * - * Input: - * word Entire word to expand - * brace First curly brace in it - * path Search path to use - * expansions Place to store the expansions - * - * Results: - * None. - * - * Side Effects: - * The given list is filled with the expansions... - * - *----------------------------------------------------------------------- - */ -static void -DirExpandCurly(const char *word, const char *brace, Lst path, Lst expansions) -{ - const char *end; /* Character after the closing brace */ - const char *cp; /* Current position in brace clause */ - const char *start; /* Start of current piece of brace clause */ - int bracelevel; /* Number of braces we've seen. If we see a - * right brace when this is 0, we've hit the - * end of the clause. */ - char *file; /* Current expansion */ - int otherLen; /* The length of the other pieces of the - * expansion (chars before and after the - * clause in 'word') */ - char *cp2; /* Pointer for checking for wildcards in - * expansion before calling Dir_Expand */ - - start = brace+1; - - /* - * Find the end of the brace clause first, being wary of nested brace - * clauses. - */ - for (end = start, bracelevel = 0; *end != '\0'; end++) { - if (*end == '{') { - bracelevel++; - } else if ((*end == '}') && (bracelevel-- == 0)) { - break; - } - } - if (*end == '\0') { - Error("Unterminated {} clause \"%s\"", start); - return; - } else { - end++; - } - otherLen = brace - word + strlen(end); - - for (cp = start; cp < end; cp++) { - /* - * Find the end of this piece of the clause. - */ - bracelevel = 0; - while (*cp != ',') { - if (*cp == '{') { - bracelevel++; - } else if ((*cp == '}') && (bracelevel-- <= 0)) { - break; - } - cp++; - } - /* - * Allocate room for the combination and install the three pieces. - */ - file = bmake_malloc(otherLen + cp - start + 1); - if (brace != word) { - strncpy(file, word, brace-word); - } - if (cp != start) { - strncpy(&file[brace-word], start, cp-start); - } - strcpy(&file[(brace-word)+(cp-start)], end); - - /* - * See if the result has any wildcards in it. If we find one, call - * Dir_Expand right away, telling it to place the result on our list - * of expansions. - */ - for (cp2 = file; *cp2 != '\0'; cp2++) { - switch(*cp2) { - case '*': - case '?': - case '{': - case '[': - Dir_Expand(file, path, expansions); - goto next; - } - } - if (*cp2 == '\0') { - /* - * Hit the end w/o finding any wildcards, so stick the expansion - * on the end of the list. - */ - (void)Lst_AtEnd(expansions, file); - } else { - next: - free(file); - } - start = cp+1; - } -} - - -/*- - *----------------------------------------------------------------------- - * DirExpandInt -- - * Internal expand routine. Passes through the directories in the - * path one by one, calling DirMatchFiles for each. NOTE: This still - * doesn't handle patterns in directories... - * - * Input: - * word Word to expand - * path Path on which to look - * expansions Place to store the result - * - * Results: - * None. - * - * Side Effects: - * Things are added to the expansions list. - * - *----------------------------------------------------------------------- - */ -static void -DirExpandInt(const char *word, Lst path, Lst expansions) -{ - LstNode ln; /* Current node */ - Path *p; /* Directory in the node */ - - if (Lst_Open(path) == SUCCESS) { - while ((ln = Lst_Next(path)) != NULL) { - p = (Path *)Lst_Datum(ln); - DirMatchFiles(word, p, expansions); - } - Lst_Close(path); - } -} - -/*- - *----------------------------------------------------------------------- - * DirPrintWord -- - * Print a word in the list of expansions. Callback for Dir_Expand - * when DEBUG(DIR), via Lst_ForEach. - * - * Results: - * === 0 - * - * Side Effects: - * The passed word is printed, followed by a space. - * - *----------------------------------------------------------------------- - */ -static int -DirPrintWord(void *word, void *dummy) -{ - fprintf(debug_file, "%s ", (char *)word); - - return(dummy ? 0 : 0); -} - -/*- - *----------------------------------------------------------------------- - * Dir_Expand -- - * Expand the given word into a list of words by globbing it looking - * in the directories on the given search path. - * - * Input: - * word the word to expand - * path the list of directories in which to find the - * resulting files - * expansions the list on which to place the results - * - * Results: - * A list of words consisting of the files which exist along the search - * path matching the given pattern. - * - * Side Effects: - * Directories may be opened. Who knows? - *----------------------------------------------------------------------- - */ -void -Dir_Expand(const char *word, Lst path, Lst expansions) -{ - const char *cp; - - if (DEBUG(DIR)) { - fprintf(debug_file, "Expanding \"%s\"... ", word); - } - - cp = strchr(word, '{'); - if (cp) { - DirExpandCurly(word, cp, path, expansions); - } else { - cp = strchr(word, '/'); - if (cp) { - /* - * The thing has a directory component -- find the first wildcard - * in the string. - */ - for (cp = word; *cp; cp++) { - if (*cp == '?' || *cp == '[' || *cp == '*' || *cp == '{') { - break; - } - } - if (*cp == '{') { - /* - * This one will be fun. - */ - DirExpandCurly(word, cp, path, expansions); - return; - } else if (*cp != '\0') { - /* - * Back up to the start of the component - */ - char *dirpath; - - while (cp > word && *cp != '/') { - cp--; - } - if (cp != word) { - char sc; - /* - * If the glob isn't in the first component, try and find - * all the components up to the one with a wildcard. - */ - sc = cp[1]; - ((char *)UNCONST(cp))[1] = '\0'; - dirpath = Dir_FindFile(word, path); - ((char *)UNCONST(cp))[1] = sc; - /* - * dirpath is null if can't find the leading component - * XXX: Dir_FindFile won't find internal components. - * i.e. if the path contains ../Etc/Object and we're - * looking for Etc, it won't be found. Ah well. - * Probably not important. - */ - if (dirpath != NULL) { - char *dp = &dirpath[strlen(dirpath) - 1]; - if (*dp == '/') - *dp = '\0'; - path = Lst_Init(FALSE); - (void)Dir_AddDir(path, dirpath); - DirExpandInt(cp+1, path, expansions); - Lst_Destroy(path, NULL); - } - } else { - /* - * Start the search from the local directory - */ - DirExpandInt(word, path, expansions); - } - } else { - /* - * Return the file -- this should never happen. - */ - DirExpandInt(word, path, expansions); - } - } else { - /* - * First the files in dot - */ - DirMatchFiles(word, dot, expansions); - - /* - * Then the files in every other directory on the path. - */ - DirExpandInt(word, path, expansions); - } - } - if (DEBUG(DIR)) { - Lst_ForEach(expansions, DirPrintWord, NULL); - fprintf(debug_file, "\n"); - } -} - -/*- - *----------------------------------------------------------------------- - * DirLookup -- - * Find if the file with the given name exists in the given path. - * - * Results: - * The path to the file or NULL. This path is guaranteed to be in a - * different part of memory than name and so may be safely free'd. - * - * Side Effects: - * None. - *----------------------------------------------------------------------- - */ -static char * -DirLookup(Path *p, const char *name MAKE_ATTR_UNUSED, const char *cp, - Boolean hasSlash MAKE_ATTR_UNUSED) -{ - char *file; /* the current filename to check */ - - if (DEBUG(DIR)) { - fprintf(debug_file, " %s ...\n", p->name); - } - - if (Hash_FindEntry(&p->files, cp) == NULL) - return NULL; - - file = str_concat(p->name, cp, STR_ADDSLASH); - if (DEBUG(DIR)) { - fprintf(debug_file, " returning %s\n", file); - } - p->hits += 1; - hits += 1; - return file; -} - - -/*- - *----------------------------------------------------------------------- - * DirLookupSubdir -- - * Find if the file with the given name exists in the given path. - * - * Results: - * The path to the file or NULL. This path is guaranteed to be in a - * different part of memory than name and so may be safely free'd. - * - * Side Effects: - * If the file is found, it is added in the modification times hash - * table. - *----------------------------------------------------------------------- - */ -static char * -DirLookupSubdir(Path *p, const char *name) -{ - struct stat stb; /* Buffer for stat, if necessary */ - Hash_Entry *entry; /* Entry for mtimes table */ - char *file; /* the current filename to check */ - - if (p != dot) { - file = str_concat(p->name, name, STR_ADDSLASH); - } else { - /* - * Checking in dot -- DON'T put a leading ./ on the thing. - */ - file = bmake_strdup(name); - } - - if (DEBUG(DIR)) { - fprintf(debug_file, "checking %s ...\n", file); - } - - if (stat(file, &stb) == 0) { - if (stb.st_mtime == 0) - stb.st_mtime = 1; - /* - * Save the modification time so if it's needed, we don't have - * to fetch it again. - */ - if (DEBUG(DIR)) { - fprintf(debug_file, " Caching %s for %s\n", Targ_FmtTime(stb.st_mtime), - file); - } - entry = Hash_CreateEntry(&mtimes, file, NULL); - Hash_SetTimeValue(entry, stb.st_mtime); - nearmisses += 1; - return (file); - } - free(file); - return NULL; -} - -/*- - *----------------------------------------------------------------------- - * DirLookupAbs -- - * Find if the file with the given name exists in the given path. - * - * Results: - * The path to the file, the empty string or NULL. If the file is - * the empty string, the search should be terminated. - * This path is guaranteed to be in a different part of memory - * than name and so may be safely free'd. - * - * Side Effects: - * None. - *----------------------------------------------------------------------- - */ -static char * -DirLookupAbs(Path *p, const char *name, const char *cp) -{ - char *p1; /* pointer into p->name */ - const char *p2; /* pointer into name */ - - if (DEBUG(DIR)) { - fprintf(debug_file, " %s ...\n", p->name); - } - - /* - * If the file has a leading path component and that component - * exactly matches the entire name of the current search - * directory, we can attempt another cache lookup. And if we don't - * have a hit, we can safely assume the file does not exist at all. - */ - for (p1 = p->name, p2 = name; *p1 && *p1 == *p2; p1++, p2++) { - continue; - } - if (*p1 != '\0' || p2 != cp - 1) { - return NULL; - } - - if (Hash_FindEntry(&p->files, cp) == NULL) { - if (DEBUG(DIR)) { - fprintf(debug_file, " must be here but isn't -- returning\n"); - } - /* Return empty string: terminates search */ - return bmake_strdup(""); - } - - p->hits += 1; - hits += 1; - if (DEBUG(DIR)) { - fprintf(debug_file, " returning %s\n", name); - } - return (bmake_strdup(name)); -} - -/*- - *----------------------------------------------------------------------- - * DirFindDot -- - * Find the file given on "." or curdir - * - * Results: - * The path to the file or NULL. This path is guaranteed to be in a - * different part of memory than name and so may be safely free'd. - * - * Side Effects: - * Hit counts change - *----------------------------------------------------------------------- - */ -static char * -DirFindDot(Boolean hasSlash MAKE_ATTR_UNUSED, const char *name, const char *cp) -{ - - if (Hash_FindEntry(&dot->files, cp) != NULL) { - if (DEBUG(DIR)) { - fprintf(debug_file, " in '.'\n"); - } - hits += 1; - dot->hits += 1; - return (bmake_strdup(name)); - } - if (cur && - Hash_FindEntry(&cur->files, cp) != NULL) { - if (DEBUG(DIR)) { - fprintf(debug_file, " in ${.CURDIR} = %s\n", cur->name); - } - hits += 1; - cur->hits += 1; - return str_concat(cur->name, cp, STR_ADDSLASH); - } - - return NULL; -} - -/*- - *----------------------------------------------------------------------- - * Dir_FindFile -- - * Find the file with the given name along the given search path. - * - * Input: - * name the file to find - * path the Lst of directories to search - * - * Results: - * The path to the file or NULL. This path is guaranteed to be in a - * different part of memory than name and so may be safely free'd. - * - * Side Effects: - * If the file is found in a directory which is not on the path - * already (either 'name' is absolute or it is a relative path - * [ dir1/.../dirn/file ] which exists below one of the directories - * already on the search path), its directory is added to the end - * of the path on the assumption that there will be more files in - * that directory later on. Sometimes this is true. Sometimes not. - *----------------------------------------------------------------------- - */ -char * -Dir_FindFile(const char *name, Lst path) -{ - LstNode ln; /* a list element */ - char *file; /* the current filename to check */ - Path *p; /* current path member */ - const char *cp; /* Terminal name of file */ - Boolean hasLastDot = FALSE; /* true we should search dot last */ - Boolean hasSlash; /* true if 'name' contains a / */ - struct stat stb; /* Buffer for stat, if necessary */ - Hash_Entry *entry; /* Entry for mtimes table */ - const char *trailing_dot = "."; - - /* - * Find the final component of the name and note whether it has a - * slash in it (the name, I mean) - */ - cp = strrchr(name, '/'); - if (cp) { - hasSlash = TRUE; - cp += 1; - } else { - hasSlash = FALSE; - cp = name; - } - - if (DEBUG(DIR)) { - fprintf(debug_file, "Searching for %s ...", name); - } - - if (Lst_Open(path) == FAILURE) { - if (DEBUG(DIR)) { - fprintf(debug_file, "couldn't open path, file not found\n"); - } - misses += 1; - return NULL; - } - - if ((ln = Lst_First(path)) != NULL) { - p = (Path *)Lst_Datum(ln); - if (p == dotLast) { - hasLastDot = TRUE; - if (DEBUG(DIR)) - fprintf(debug_file, "[dot last]..."); - } - } - if (DEBUG(DIR)) { - fprintf(debug_file, "\n"); - } - - /* - * If there's no leading directory components or if the leading - * directory component is exactly `./', consult the cached contents - * of each of the directories on the search path. - */ - if (!hasSlash || (cp - name == 2 && *name == '.')) { - /* - * We look through all the directories on the path seeking one which - * contains the final component of the given name. If such a beast - * is found, we concatenate the directory name and the final - * component and return the resulting string. If we don't find any - * such thing, we go on to phase two... - * - * No matter what, we always look for the file in the current - * directory before anywhere else (unless we found the magic - * DOTLAST path, in which case we search it last) and we *do not* - * add the ./ to it if it exists. - * This is so there are no conflicts between what the user - * specifies (fish.c) and what pmake finds (./fish.c). - */ - if (!hasLastDot && - (file = DirFindDot(hasSlash, name, cp)) != NULL) { - Lst_Close(path); - return file; - } - - while ((ln = Lst_Next(path)) != NULL) { - p = (Path *)Lst_Datum(ln); - if (p == dotLast) - continue; - if ((file = DirLookup(p, name, cp, hasSlash)) != NULL) { - Lst_Close(path); - return file; - } - } - - if (hasLastDot && - (file = DirFindDot(hasSlash, name, cp)) != NULL) { - Lst_Close(path); - return file; - } - } - Lst_Close(path); - - /* - * We didn't find the file on any directory in the search path. - * If the name doesn't contain a slash, that means it doesn't exist. - * If it *does* contain a slash, however, there is still hope: it - * could be in a subdirectory of one of the members of the search - * path. (eg. /usr/include and sys/types.h. The above search would - * fail to turn up types.h in /usr/include, but it *is* in - * /usr/include/sys/types.h). - * [ This no longer applies: If we find such a beast, we assume there - * will be more (what else can we assume?) and add all but the last - * component of the resulting name onto the search path (at the - * end).] - * This phase is only performed if the file is *not* absolute. - */ - if (!hasSlash) { - if (DEBUG(DIR)) { - fprintf(debug_file, " failed.\n"); - } - misses += 1; - return NULL; - } - - if (*cp == '\0') { - /* we were given a trailing "/" */ - cp = trailing_dot; - } - - if (name[0] != '/') { - Boolean checkedDot = FALSE; - - if (DEBUG(DIR)) { - fprintf(debug_file, " Trying subdirectories...\n"); - } - - if (!hasLastDot) { - if (dot) { - checkedDot = TRUE; - if ((file = DirLookupSubdir(dot, name)) != NULL) - return file; - } - if (cur && (file = DirLookupSubdir(cur, name)) != NULL) - return file; - } - - (void)Lst_Open(path); - while ((ln = Lst_Next(path)) != NULL) { - p = (Path *)Lst_Datum(ln); - if (p == dotLast) - continue; - if (p == dot) { - if (checkedDot) - continue; - checkedDot = TRUE; - } - if ((file = DirLookupSubdir(p, name)) != NULL) { - Lst_Close(path); - return file; - } - } - Lst_Close(path); - - if (hasLastDot) { - if (dot && !checkedDot) { - checkedDot = TRUE; - if ((file = DirLookupSubdir(dot, name)) != NULL) - return file; - } - if (cur && (file = DirLookupSubdir(cur, name)) != NULL) - return file; - } - - if (checkedDot) { - /* - * Already checked by the given name, since . was in the path, - * so no point in proceeding... - */ - if (DEBUG(DIR)) { - fprintf(debug_file, " Checked . already, returning NULL\n"); - } - return NULL; - } - - } else { /* name[0] == '/' */ - - /* - * For absolute names, compare directory path prefix against the - * the directory path of each member on the search path for an exact - * match. If we have an exact match on any member of the search path, - * use the cached contents of that member to lookup the final file - * component. If that lookup fails we can safely assume that the - * file does not exist at all. This is signified by DirLookupAbs() - * returning an empty string. - */ - if (DEBUG(DIR)) { - fprintf(debug_file, " Trying exact path matches...\n"); - } - - if (!hasLastDot && cur && (file = DirLookupAbs(cur, name, cp)) != NULL) - return *file?file:NULL; - - (void)Lst_Open(path); - while ((ln = Lst_Next(path)) != NULL) { - p = (Path *)Lst_Datum(ln); - if (p == dotLast) - continue; - if ((file = DirLookupAbs(p, name, cp)) != NULL) { - Lst_Close(path); - return *file?file:NULL; - } - } - Lst_Close(path); - - if (hasLastDot && cur && (file = DirLookupAbs(cur, name, cp)) != NULL) - return *file?file:NULL; - } - - /* - * Didn't find it that way, either. Sigh. Phase 3. Add its directory - * onto the search path in any case, just in case, then look for the - * thing in the hash table. If we find it, grand. We return a new - * copy of the name. Otherwise we sadly return a NULL pointer. Sigh. - * Note that if the directory holding the file doesn't exist, this will - * do an extra search of the final directory on the path. Unless something - * weird happens, this search won't succeed and life will be groovy. - * - * Sigh. We cannot add the directory onto the search path because - * of this amusing case: - * $(INSTALLDIR)/$(FILE): $(FILE) - * - * $(FILE) exists in $(INSTALLDIR) but not in the current one. - * When searching for $(FILE), we will find it in $(INSTALLDIR) - * b/c we added it here. This is not good... - */ -#ifdef notdef - if (cp == traling_dot) { - cp = strrchr(name, '/'); - cp += 1; - } - cp[-1] = '\0'; - (void)Dir_AddDir(path, name); - cp[-1] = '/'; - - bigmisses += 1; - ln = Lst_Last(path); - if (ln == NULL) { - return NULL; - } else { - p = (Path *)Lst_Datum(ln); - } - - if (Hash_FindEntry(&p->files, cp) != NULL) { - return (bmake_strdup(name)); - } else { - return NULL; - } -#else /* !notdef */ - if (DEBUG(DIR)) { - fprintf(debug_file, " Looking for \"%s\" ...\n", name); - } - - bigmisses += 1; - entry = Hash_FindEntry(&mtimes, name); - if (entry != NULL) { - if (DEBUG(DIR)) { - fprintf(debug_file, " got it (in mtime cache)\n"); - } - return(bmake_strdup(name)); - } else if (stat(name, &stb) == 0) { - if (stb.st_mtime == 0) - stb.st_mtime = 1; - entry = Hash_CreateEntry(&mtimes, name, NULL); - if (DEBUG(DIR)) { - fprintf(debug_file, " Caching %s for %s\n", Targ_FmtTime(stb.st_mtime), - name); - } - Hash_SetTimeValue(entry, stb.st_mtime); - return (bmake_strdup(name)); - } else { - if (DEBUG(DIR)) { - fprintf(debug_file, " failed. Returning NULL\n"); - } - return NULL; - } -#endif /* notdef */ -} - - -/*- - *----------------------------------------------------------------------- - * Dir_FindHereOrAbove -- - * search for a path starting at a given directory and then working - * our way up towards the root. - * - * Input: - * here starting directory - * search_path the path we are looking for - * result the result of a successful search is placed here - * rlen the length of the result buffer - * (typically MAXPATHLEN + 1) - * - * Results: - * 0 on failure, 1 on success [in which case the found path is put - * in the result buffer]. - * - * Side Effects: - *----------------------------------------------------------------------- - */ -int -Dir_FindHereOrAbove(char *here, char *search_path, char *result, int rlen) { - - struct stat st; - char dirbase[MAXPATHLEN + 1], *db_end; - char try[MAXPATHLEN + 1], *try_end; - - /* copy out our starting point */ - snprintf(dirbase, sizeof(dirbase), "%s", here); - db_end = dirbase + strlen(dirbase); - - /* loop until we determine a result */ - while (1) { - - /* try and stat(2) it ... */ - snprintf(try, sizeof(try), "%s/%s", dirbase, search_path); - if (stat(try, &st) != -1) { - /* - * success! if we found a file, chop off - * the filename so we return a directory. - */ - if ((st.st_mode & S_IFMT) != S_IFDIR) { - try_end = try + strlen(try); - while (try_end > try && *try_end != '/') - try_end--; - if (try_end > try) - *try_end = 0; /* chop! */ - } - - /* - * done! - */ - snprintf(result, rlen, "%s", try); - return(1); - } - - /* - * nope, we didn't find it. if we used up dirbase we've - * reached the root and failed. - */ - if (db_end == dirbase) - break; /* failed! */ - - /* - * truncate dirbase from the end to move up a dir - */ - while (db_end > dirbase && *db_end != '/') - db_end--; - *db_end = 0; /* chop! */ - - } /* while (1) */ - - /* - * we failed... - */ - return(0); -} - -/*- - *----------------------------------------------------------------------- - * Dir_MTime -- - * Find the modification time of the file described by gn along the - * search path dirSearchPath. - * - * Input: - * gn the file whose modification time is desired - * - * Results: - * The modification time or 0 if it doesn't exist - * - * Side Effects: - * The modification time is placed in the node's mtime slot. - * If the node didn't have a path entry before, and Dir_FindFile - * found one for it, the full name is placed in the path slot. - *----------------------------------------------------------------------- - */ -int -Dir_MTime(GNode *gn, Boolean recheck) -{ - char *fullName; /* the full pathname of name */ - struct stat stb; /* buffer for finding the mod time */ - Hash_Entry *entry; - - if (gn->type & OP_ARCHV) { - return Arch_MTime(gn); - } else if (gn->type & OP_PHONY) { - gn->mtime = 0; - return 0; - } else if (gn->path == NULL) { - if (gn->type & OP_NOPATH) - fullName = NULL; - else { - fullName = Dir_FindFile(gn->name, Suff_FindPath(gn)); - if (fullName == NULL && gn->flags & FROM_DEPEND && - !Lst_IsEmpty(gn->iParents)) { - char *cp; - - cp = strrchr(gn->name, '/'); - if (cp) { - /* - * This is an implied source, and it may have moved, - * see if we can find it via the current .PATH - */ - cp++; - - fullName = Dir_FindFile(cp, Suff_FindPath(gn)); - if (fullName) { - /* - * Put the found file in gn->path - * so that we give that to the compiler. - */ - gn->path = bmake_strdup(fullName); - fprintf(stdout, - "%s: ignoring stale %s for %s, found %s\n", - progname, makeDependfile, gn->name, fullName); - } - } - } - if (DEBUG(DIR)) - fprintf(debug_file, "Found '%s' as '%s'\n", - gn->name, fullName ? fullName : "(not found)" ); - } - } else { - fullName = gn->path; - } - - if (fullName == NULL) { - fullName = bmake_strdup(gn->name); - } - - if (!recheck) - entry = Hash_FindEntry(&mtimes, fullName); - else - entry = NULL; - if (entry != NULL) { - if (DEBUG(DIR)) { - fprintf(debug_file, "Using cached time %s for %s\n", - Targ_FmtTime(Hash_GetTimeValue(entry)), fullName); - } - stb.st_mtime = Hash_GetTimeValue(entry); - } else if (stat(fullName, &stb) < 0) { - if (gn->type & OP_MEMBER) { - if (fullName != gn->path) - free(fullName); - return Arch_MemMTime(gn); - } else { - stb.st_mtime = 0; - } - } else { - if (stb.st_mtime == 0) { - /* - * 0 handled specially by the code, if the time is really 0, - * return something else instead - */ - stb.st_mtime = 1; - } - entry = Hash_CreateEntry(&mtimes, fullName, NULL); - Hash_SetTimeValue(entry, stb.st_mtime); - } - - if (fullName && gn->path == NULL) { - gn->path = fullName; - } - - gn->mtime = stb.st_mtime; - return (gn->mtime); -} - -/*- - *----------------------------------------------------------------------- - * Dir_AddDir -- - * Add the given name to the end of the given path. The order of - * the arguments is backwards so ParseDoDependency can do a - * Lst_ForEach of its list of paths... - * - * Input: - * path the path to which the directory should be - * added - * name the name of the directory to add - * - * Results: - * none - * - * Side Effects: - * A structure is added to the list and the directory is - * read and hashed. - *----------------------------------------------------------------------- - */ -Path * -Dir_AddDir(Lst path, const char *name) -{ - LstNode ln = NULL; /* node in case Path structure is found */ - Path *p = NULL; /* pointer to new Path structure */ - DIR *d; /* for reading directory */ - struct dirent *dp; /* entry in directory */ - - if (strcmp(name, ".DOTLAST") == 0) { - ln = Lst_Find(path, name, DirFindName); - if (ln != NULL) - return (Path *)Lst_Datum(ln); - else { - dotLast->refCount += 1; - (void)Lst_AtFront(path, dotLast); - } - } - - if (path) - ln = Lst_Find(openDirectories, name, DirFindName); - if (ln != NULL) { - p = (Path *)Lst_Datum(ln); - if (path && Lst_Member(path, p) == NULL) { - p->refCount += 1; - (void)Lst_AtEnd(path, p); - } - } else { - if (DEBUG(DIR)) { - fprintf(debug_file, "Caching %s ...", name); - } - - if ((d = opendir(name)) != NULL) { - p = bmake_malloc(sizeof(Path)); - p->name = bmake_strdup(name); - p->hits = 0; - p->refCount = 1; - Hash_InitTable(&p->files, -1); - - while ((dp = readdir(d)) != NULL) { -#if defined(sun) && defined(d_ino) /* d_ino is a sunos4 #define for d_fileno */ - /* - * The sun directory library doesn't check for a 0 inode - * (0-inode slots just take up space), so we have to do - * it ourselves. - */ - if (dp->d_fileno == 0) { - continue; - } -#endif /* sun && d_ino */ - (void)Hash_CreateEntry(&p->files, dp->d_name, NULL); - } - (void)closedir(d); - (void)Lst_AtEnd(openDirectories, p); - if (path != NULL) - (void)Lst_AtEnd(path, p); - } - if (DEBUG(DIR)) { - fprintf(debug_file, "done\n"); - } - } - return p; -} - -/*- - *----------------------------------------------------------------------- - * Dir_CopyDir -- - * Callback function for duplicating a search path via Lst_Duplicate. - * Ups the reference count for the directory. - * - * Results: - * Returns the Path it was given. - * - * Side Effects: - * The refCount of the path is incremented. - * - *----------------------------------------------------------------------- - */ -void * -Dir_CopyDir(void *p) -{ - ((Path *)p)->refCount += 1; - - return (p); -} - -/*- - *----------------------------------------------------------------------- - * Dir_MakeFlags -- - * Make a string by taking all the directories in the given search - * path and preceding them by the given flag. Used by the suffix - * module to create variables for compilers based on suffix search - * paths. - * - * Input: - * flag flag which should precede each directory - * path list of directories - * - * Results: - * The string mentioned above. Note that there is no space between - * the given flag and each directory. The empty string is returned if - * Things don't go well. - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -char * -Dir_MakeFlags(const char *flag, Lst path) -{ - char *str; /* the string which will be returned */ - char *s1, *s2;/* the current directory preceded by 'flag' */ - LstNode ln; /* the node of the current directory */ - Path *p; /* the structure describing the current directory */ - - str = bmake_strdup(""); - - if (Lst_Open(path) == SUCCESS) { - while ((ln = Lst_Next(path)) != NULL) { - p = (Path *)Lst_Datum(ln); - s2 = str_concat(flag, p->name, 0); - str = str_concat(s1 = str, s2, STR_ADDSPACE); - free(s1); - free(s2); - } - Lst_Close(path); - } - - return (str); -} - -/*- - *----------------------------------------------------------------------- - * Dir_Destroy -- - * Nuke a directory descriptor, if possible. Callback procedure - * for the suffixes module when destroying a search path. - * - * Input: - * pp The directory descriptor to nuke - * - * Results: - * None. - * - * Side Effects: - * If no other path references this directory (refCount == 0), - * the Path and all its data are freed. - * - *----------------------------------------------------------------------- - */ -void -Dir_Destroy(void *pp) -{ - Path *p = (Path *)pp; - p->refCount -= 1; - - if (p->refCount == 0) { - LstNode ln; - - ln = Lst_Member(openDirectories, p); - (void)Lst_Remove(openDirectories, ln); - - Hash_DeleteTable(&p->files); - free(p->name); - free(p); - } -} - -/*- - *----------------------------------------------------------------------- - * Dir_ClearPath -- - * Clear out all elements of the given search path. This is different - * from destroying the list, notice. - * - * Input: - * path Path to clear - * - * Results: - * None. - * - * Side Effects: - * The path is set to the empty list. - * - *----------------------------------------------------------------------- - */ -void -Dir_ClearPath(Lst path) -{ - Path *p; - while (!Lst_IsEmpty(path)) { - p = (Path *)Lst_DeQueue(path); - Dir_Destroy(p); - } -} - - -/*- - *----------------------------------------------------------------------- - * Dir_Concat -- - * Concatenate two paths, adding the second to the end of the first. - * Makes sure to avoid duplicates. - * - * Input: - * path1 Dest - * path2 Source - * - * Results: - * None - * - * Side Effects: - * Reference counts for added dirs are upped. - * - *----------------------------------------------------------------------- - */ -void -Dir_Concat(Lst path1, Lst path2) -{ - LstNode ln; - Path *p; - - for (ln = Lst_First(path2); ln != NULL; ln = Lst_Succ(ln)) { - p = (Path *)Lst_Datum(ln); - if (Lst_Member(path1, p) == NULL) { - p->refCount += 1; - (void)Lst_AtEnd(path1, p); - } - } -} - -/********** DEBUG INFO **********/ -void -Dir_PrintDirectories(void) -{ - LstNode ln; - Path *p; - - fprintf(debug_file, "#*** Directory Cache:\n"); - fprintf(debug_file, "# Stats: %d hits %d misses %d near misses %d losers (%d%%)\n", - hits, misses, nearmisses, bigmisses, - (hits+bigmisses+nearmisses ? - hits * 100 / (hits + bigmisses + nearmisses) : 0)); - fprintf(debug_file, "# %-20s referenced\thits\n", "directory"); - if (Lst_Open(openDirectories) == SUCCESS) { - while ((ln = Lst_Next(openDirectories)) != NULL) { - p = (Path *)Lst_Datum(ln); - fprintf(debug_file, "# %-20s %10d\t%4d\n", p->name, p->refCount, p->hits); - } - Lst_Close(openDirectories); - } -} - -static int -DirPrintDir(void *p, void *dummy) -{ - fprintf(debug_file, "%s ", ((Path *)p)->name); - return (dummy ? 0 : 0); -} - -void -Dir_PrintPath(Lst path) -{ - Lst_ForEach(path, DirPrintDir, NULL); -} diff --git a/external/bsd/bmake/dist/dir.h b/external/bsd/bmake/dist/dir.h deleted file mode 100644 index aa004504a5bc..000000000000 --- a/external/bsd/bmake/dist/dir.h +++ /dev/null @@ -1,108 +0,0 @@ -/* $NetBSD: dir.h,v 1.15 2012/04/07 18:29:08 christos Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)dir.h 8.1 (Berkeley) 6/6/93 - */ - -/* - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)dir.h 8.1 (Berkeley) 6/6/93 - */ - -/* dir.h -- - */ - -#ifndef _DIR -#define _DIR - -typedef struct Path { - char *name; /* Name of directory */ - int refCount; /* Number of paths with this directory */ - int hits; /* the number of times a file in this - * directory has been found */ - Hash_Table files; /* Hash table of files in directory */ -} Path; - -void Dir_Init(const char *); -void Dir_InitCur(const char *); -void Dir_InitDot(void); -void Dir_End(void); -void Dir_SetPATH(void); -Boolean Dir_HasWildcards(char *); -void Dir_Expand(const char *, Lst, Lst); -char *Dir_FindFile(const char *, Lst); -int Dir_FindHereOrAbove(char *, char *, char *, int); -int Dir_MTime(GNode *, Boolean); -Path *Dir_AddDir(Lst, const char *); -char *Dir_MakeFlags(const char *, Lst); -void Dir_ClearPath(Lst); -void Dir_Concat(Lst, Lst); -void Dir_PrintDirectories(void); -void Dir_PrintPath(Lst); -void Dir_Destroy(void *); -void * Dir_CopyDir(void *); - -#endif /* _DIR */ diff --git a/external/bsd/bmake/dist/dirname.c b/external/bsd/bmake/dist/dirname.c deleted file mode 100644 index 8b6b6c3d44de..000000000000 --- a/external/bsd/bmake/dist/dirname.c +++ /dev/null @@ -1,95 +0,0 @@ -/* $NetBSD: dirname.c,v 1.11 2009/11/24 13:34:20 tnozaki Exp $ */ - -/*- - * Copyright (c) 1997, 2002 The NetBSD Foundation, Inc. - * All rights reserved. - * - * This code is derived from software contributed to The NetBSD Foundation - * by Klaus Klein and Jason R. Thorpe. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif -#ifndef HAVE_DIRNAME - -#include - -#ifdef HAVE_LIMITS_H -#include -#endif -#ifdef HAVE_STRING_H -#include -#endif -#ifndef PATH_MAX -# define PATH_MAX 1024 -#endif - -char * -dirname(char *path) -{ - static char result[PATH_MAX]; - const char *lastp; - size_t len; - - /* - * If `path' is a null pointer or points to an empty string, - * return a pointer to the string ".". - */ - if ((path == NULL) || (*path == '\0')) - goto singledot; - - - /* Strip trailing slashes, if any. */ - lastp = path + strlen(path) - 1; - while (lastp != path && *lastp == '/') - lastp--; - - /* Terminate path at the last occurence of '/'. */ - do { - if (*lastp == '/') { - /* Strip trailing slashes, if any. */ - while (lastp != path && *lastp == '/') - lastp--; - - /* ...and copy the result into the result buffer. */ - len = (lastp - path) + 1 /* last char */; - if (len > (PATH_MAX - 1)) - len = PATH_MAX - 1; - - memcpy(result, path, len); - result[len] = '\0'; - - return (result); - } - } while (--lastp >= path); - - /* No /'s found, return a pointer to the string ".". */ -singledot: - result[0] = '.'; - result[1] = '\0'; - - return (result); -} -#endif diff --git a/external/bsd/bmake/dist/find_lib.sh b/external/bsd/bmake/dist/find_lib.sh deleted file mode 100755 index 3c2e4af2f251..000000000000 --- a/external/bsd/bmake/dist/find_lib.sh +++ /dev/null @@ -1,13 +0,0 @@ -: -re=$1; shift - -for lib in $* -do - found=`nm $lib | egrep "$re"` - case "$found" in - "") ;; - *) echo "$lib: $found";; - esac -done - - diff --git a/external/bsd/bmake/dist/for.c b/external/bsd/bmake/dist/for.c deleted file mode 100644 index 33bcf1392b8e..000000000000 --- a/external/bsd/bmake/dist/for.c +++ /dev/null @@ -1,496 +0,0 @@ -/* $NetBSD: for.c,v 1.49 2012/06/03 04:29:40 sjg Exp $ */ - -/* - * Copyright (c) 1992, The Regents of the University of California. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: for.c,v 1.49 2012/06/03 04:29:40 sjg Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)for.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: for.c,v 1.49 2012/06/03 04:29:40 sjg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * for.c -- - * Functions to handle loops in a makefile. - * - * Interface: - * For_Eval Evaluate the loop in the passed line. - * For_Run Run accumulated loop - * - */ - -#include -#include - -#include "make.h" -#include "hash.h" -#include "dir.h" -#include "buf.h" -#include "strlist.h" - -#define FOR_SUB_ESCAPE_CHAR 1 -#define FOR_SUB_ESCAPE_BRACE 2 -#define FOR_SUB_ESCAPE_PAREN 4 - -/* - * For statements are of the form: - * - * .for in - * ... - * .endfor - * - * The trick is to look for the matching end inside for for loop - * To do that, we count the current nesting level of the for loops. - * and the .endfor statements, accumulating all the statements between - * the initial .for loop and the matching .endfor; - * then we evaluate the for loop for each variable in the varlist. - * - * Note that any nested fors are just passed through; they get handled - * recursively in For_Eval when we're expanding the enclosing for in - * For_Run. - */ - -static int forLevel = 0; /* Nesting level */ - -/* - * State of a for loop. - */ -typedef struct _For { - Buffer buf; /* Body of loop */ - strlist_t vars; /* Iteration variables */ - strlist_t items; /* Substitution items */ - char *parse_buf; - int short_var; - int sub_next; -} For; - -static For *accumFor; /* Loop being accumulated */ - - - -static char * -make_str(const char *ptr, int len) -{ - char *new_ptr; - - new_ptr = bmake_malloc(len + 1); - memcpy(new_ptr, ptr, len); - new_ptr[len] = 0; - return new_ptr; -} - -static void -For_Free(For *arg) -{ - Buf_Destroy(&arg->buf, TRUE); - strlist_clean(&arg->vars); - strlist_clean(&arg->items); - free(arg->parse_buf); - - free(arg); -} - -/*- - *----------------------------------------------------------------------- - * For_Eval -- - * Evaluate the for loop in the passed line. The line - * looks like this: - * .for in - * - * Input: - * line Line to parse - * - * Results: - * 0: Not a .for statement, parse the line - * 1: We found a for loop - * -1: A .for statement with a bad syntax error, discard. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -int -For_Eval(char *line) -{ - For *new_for; - char *ptr = line, *sub; - int len; - int escapes; - unsigned char ch; - char **words, *word_buf; - int n, nwords; - - /* Skip the '.' and any following whitespace */ - for (ptr++; *ptr && isspace((unsigned char) *ptr); ptr++) - continue; - - /* - * If we are not in a for loop quickly determine if the statement is - * a for. - */ - if (ptr[0] != 'f' || ptr[1] != 'o' || ptr[2] != 'r' || - !isspace((unsigned char) ptr[3])) { - if (ptr[0] == 'e' && strncmp(ptr+1, "ndfor", 5) == 0) { - Parse_Error(PARSE_FATAL, "for-less endfor"); - return -1; - } - return 0; - } - ptr += 3; - - /* - * we found a for loop, and now we are going to parse it. - */ - - new_for = bmake_malloc(sizeof *new_for); - memset(new_for, 0, sizeof *new_for); - - /* Grab the variables. Terminate on "in". */ - for (;; ptr += len) { - while (*ptr && isspace((unsigned char) *ptr)) - ptr++; - if (*ptr == '\0') { - Parse_Error(PARSE_FATAL, "missing `in' in for"); - For_Free(new_for); - return -1; - } - for (len = 1; ptr[len] && !isspace((unsigned char)ptr[len]); len++) - continue; - if (len == 2 && ptr[0] == 'i' && ptr[1] == 'n') { - ptr += 2; - break; - } - if (len == 1) - new_for->short_var = 1; - strlist_add_str(&new_for->vars, make_str(ptr, len), len); - } - - if (strlist_num(&new_for->vars) == 0) { - Parse_Error(PARSE_FATAL, "no iteration variables in for"); - For_Free(new_for); - return -1; - } - - while (*ptr && isspace((unsigned char) *ptr)) - ptr++; - - /* - * Make a list with the remaining words - * The values are substituted as ${:U...} so we must \ escape - * characters that break that syntax. - * Variables are fully expanded - so it is safe for escape $. - * We can't do the escapes here - because we don't know whether - * we are substuting into ${...} or $(...). - */ - sub = Var_Subst(NULL, ptr, VAR_GLOBAL, FALSE); - - /* - * Split into words allowing for quoted strings. - */ - words = brk_string(sub, &nwords, FALSE, &word_buf); - - free(sub); - - if (words != NULL) { - for (n = 0; n < nwords; n++) { - ptr = words[n]; - if (!*ptr) - continue; - escapes = 0; - while ((ch = *ptr++)) { - switch(ch) { - case ':': - case '$': - case '\\': - escapes |= FOR_SUB_ESCAPE_CHAR; - break; - case ')': - escapes |= FOR_SUB_ESCAPE_PAREN; - break; - case /*{*/ '}': - escapes |= FOR_SUB_ESCAPE_BRACE; - break; - } - } - /* - * We have to dup words[n] to maintain the semantics of - * strlist. - */ - strlist_add_str(&new_for->items, bmake_strdup(words[n]), escapes); - } - - free(words); - free(word_buf); - - if ((len = strlist_num(&new_for->items)) > 0 && - len % (n = strlist_num(&new_for->vars))) { - Parse_Error(PARSE_FATAL, - "Wrong number of words (%d) in .for substitution list" - " with %d vars", len, n); - /* - * Return 'success' so that the body of the .for loop is - * accumulated. - * Remove all items so that the loop doesn't iterate. - */ - strlist_clean(&new_for->items); - } - } - - Buf_Init(&new_for->buf, 0); - accumFor = new_for; - forLevel = 1; - return 1; -} - -/* - * Add another line to a .for loop. - * Returns 0 when the matching .endfor is reached. - */ - -int -For_Accum(char *line) -{ - char *ptr = line; - - if (*ptr == '.') { - - for (ptr++; *ptr && isspace((unsigned char) *ptr); ptr++) - continue; - - if (strncmp(ptr, "endfor", 6) == 0 && - (isspace((unsigned char) ptr[6]) || !ptr[6])) { - if (DEBUG(FOR)) - (void)fprintf(debug_file, "For: end for %d\n", forLevel); - if (--forLevel <= 0) - return 0; - } else if (strncmp(ptr, "for", 3) == 0 && - isspace((unsigned char) ptr[3])) { - forLevel++; - if (DEBUG(FOR)) - (void)fprintf(debug_file, "For: new loop %d\n", forLevel); - } - } - - Buf_AddBytes(&accumFor->buf, strlen(line), line); - Buf_AddByte(&accumFor->buf, '\n'); - return 1; -} - - -/*- - *----------------------------------------------------------------------- - * For_Run -- - * Run the for loop, imitating the actions of an include file - * - * Results: - * None. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ - -static int -for_var_len(const char *var) -{ - char ch, var_start, var_end; - int depth; - int len; - - var_start = *var; - if (var_start == 0) - /* just escape the $ */ - return 0; - - if (var_start == '(') - var_end = ')'; - else if (var_start == '{') - var_end = '}'; - else - /* Single char variable */ - return 1; - - depth = 1; - for (len = 1; (ch = var[len++]) != 0;) { - if (ch == var_start) - depth++; - else if (ch == var_end && --depth == 0) - return len; - } - - /* Variable end not found, escape the $ */ - return 0; -} - -static void -for_substitute(Buffer *cmds, strlist_t *items, unsigned int item_no, char ech) -{ - const char *item = strlist_str(items, item_no); - int len; - char ch; - - /* If there were no escapes, or the only escape is the other variable - * terminator, then just substitute the full string */ - if (!(strlist_info(items, item_no) & - (ech == ')' ? ~FOR_SUB_ESCAPE_BRACE : ~FOR_SUB_ESCAPE_PAREN))) { - Buf_AddBytes(cmds, strlen(item), item); - return; - } - - /* Escape ':', '$', '\\' and 'ech' - removed by :U processing */ - while ((ch = *item++) != 0) { - if (ch == '$') { - len = for_var_len(item); - if (len != 0) { - Buf_AddBytes(cmds, len + 1, item - 1); - item += len; - continue; - } - Buf_AddByte(cmds, '\\'); - } else if (ch == ':' || ch == '\\' || ch == ech) - Buf_AddByte(cmds, '\\'); - Buf_AddByte(cmds, ch); - } -} - -static char * -For_Iterate(void *v_arg, size_t *ret_len) -{ - For *arg = v_arg; - int i, len; - char *var; - char *cp; - char *cmd_cp; - char *body_end; - char ch; - Buffer cmds; - - if (arg->sub_next + strlist_num(&arg->vars) > strlist_num(&arg->items)) { - /* No more iterations */ - For_Free(arg); - return NULL; - } - - free(arg->parse_buf); - arg->parse_buf = NULL; - - /* - * Scan the for loop body and replace references to the loop variables - * with variable references that expand to the required text. - * Using variable expansions ensures that the .for loop can't generate - * syntax, and that the later parsing will still see a variable. - * We assume that the null variable will never be defined. - * - * The detection of substitions of the loop control variable is naive. - * Many of the modifiers use \ to escape $ (not $) so it is possible - * to contrive a makefile where an unwanted substitution happens. - */ - - cmd_cp = Buf_GetAll(&arg->buf, &len); - body_end = cmd_cp + len; - Buf_Init(&cmds, len + 256); - for (cp = cmd_cp; (cp = strchr(cp, '$')) != NULL;) { - char ech; - ch = *++cp; - if ((ch == '(' && (ech = ')')) || (ch == '{' && (ech = '}'))) { - cp++; - /* Check variable name against the .for loop variables */ - STRLIST_FOREACH(var, &arg->vars, i) { - len = strlist_info(&arg->vars, i); - if (memcmp(cp, var, len) != 0) - continue; - if (cp[len] != ':' && cp[len] != ech && cp[len] != '\\') - continue; - /* Found a variable match. Replace with :U */ - Buf_AddBytes(&cmds, cp - cmd_cp, cmd_cp); - Buf_AddBytes(&cmds, 2, ":U"); - cp += len; - cmd_cp = cp; - for_substitute(&cmds, &arg->items, arg->sub_next + i, ech); - break; - } - continue; - } - if (ch == 0) - break; - /* Probably a single character name, ignore $$ and stupid ones. {*/ - if (!arg->short_var || strchr("}):$", ch) != NULL) { - cp++; - continue; - } - STRLIST_FOREACH(var, &arg->vars, i) { - if (var[0] != ch || var[1] != 0) - continue; - /* Found a variable match. Replace with ${:U} */ - Buf_AddBytes(&cmds, cp - cmd_cp, cmd_cp); - Buf_AddBytes(&cmds, 3, "{:U"); - cmd_cp = ++cp; - for_substitute(&cmds, &arg->items, arg->sub_next + i, /*{*/ '}'); - Buf_AddBytes(&cmds, 1, "}"); - break; - } - } - Buf_AddBytes(&cmds, body_end - cmd_cp, cmd_cp); - - cp = Buf_Destroy(&cmds, FALSE); - if (DEBUG(FOR)) - (void)fprintf(debug_file, "For: loop body:\n%s", cp); - - arg->sub_next += strlist_num(&arg->vars); - - arg->parse_buf = cp; - *ret_len = strlen(cp); - return cp; -} - -void -For_Run(int lineno) -{ - For *arg; - - arg = accumFor; - accumFor = NULL; - - if (strlist_num(&arg->items) == 0) { - /* Nothing to expand - possibly due to an earlier syntax error. */ - For_Free(arg); - return; - } - - Parse_SetInput(NULL, lineno, -1, For_Iterate, arg); -} diff --git a/external/bsd/bmake/dist/getopt.c b/external/bsd/bmake/dist/getopt.c deleted file mode 100644 index c40bc1356d8c..000000000000 --- a/external/bsd/bmake/dist/getopt.c +++ /dev/null @@ -1,179 +0,0 @@ -/* - * Copyright (c) 1987, 1993, 1994 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif -#if !defined(HAVE_GETOPT) || defined(WANT_GETOPT_LONG) || defined(BROKEN_GETOPT) - -#if defined(LIBC_SCCS) && !defined(lint) -/* static char sccsid[] = "from: @(#)getopt.c 8.2 (Berkeley) 4/2/94"; */ -static char *rcsid = "$Id: getopt.c,v 1.3 1999/01/08 02:14:18 sjg Exp $"; -#endif /* LIBC_SCCS and not lint */ - -#include -#include -#include - - -#define BADCH (int)'?' -#define BADARG (int)':' -#define EMSG "" - -int opterr = 1, /* if error message should be printed */ - optind = 1, /* index into parent argv vector */ - optopt = BADCH, /* character checked for validity */ - optreset; /* reset getopt */ -char *optarg; /* argument associated with option */ - -/* - * getopt -- - * Parse argc/argv argument vector. - */ -int -getopt(nargc, nargv, ostr) - int nargc; - char * const *nargv; - const char *ostr; -{ - extern char *__progname; - static char *place = EMSG; /* option letter processing */ - char *oli; /* option letter list index */ - -#ifndef BSD4_4 - if (!__progname) { - if (__progname = strrchr(nargv[0], '/')) - ++__progname; - else - __progname = nargv[0]; - } -#endif - - if (optreset || !*place) { /* update scanning pointer */ - optreset = 0; - if (optind >= nargc || *(place = nargv[optind]) != '-') { - place = EMSG; - return (-1); - } - if (place[1] && *++place == '-' /* found "--" */ - && !place[1]) { /* and not "--foo" */ - ++optind; - place = EMSG; - return (-1); - } - } /* option letter okay? */ - if ((optopt = (int)*place++) == (int)':' || - !(oli = strchr(ostr, optopt))) { - /* - * if the user didn't specify '-' as an option, - * assume it means -1. - */ - if (optopt == (int)'-') - return (-1); - if (!*place) - ++optind; - if (opterr && *ostr != ':') - (void)fprintf(stderr, - "%s: illegal option -- %c\n", __progname, optopt); - return (BADCH); - } - if (*++oli != ':') { /* don't need argument */ - optarg = NULL; - if (!*place) - ++optind; - } - else { /* need an argument */ - if (*place) /* no white space */ - optarg = place; - else if (nargc <= ++optind) { /* no arg */ - place = EMSG; - if (*ostr == ':') - return (BADARG); - if (opterr) - (void)fprintf(stderr, - "%s: option requires an argument -- %c\n", - __progname, optopt); - return (BADCH); - } - else /* white space */ - optarg = nargv[optind]; - place = EMSG; - ++optind; - } - return (optopt); /* dump back option letter */ -} -#endif -#ifdef MAIN -#ifndef BSD4_4 -char *__progname; -#endif - -int -main(argc, argv) - int argc; - char *argv[]; -{ - int c; - char *opts = argv[1]; - - --argc; - ++argv; - - while ((c = getopt(argc, argv, opts)) != EOF) { - switch (c) { - case '-': - if (optarg) - printf("--%s ", optarg); - break; - case '?': - exit(1); - break; - default: - if (optarg) - printf("-%c %s ", c, optarg); - else - printf("-%c ", c); - break; - } - } - - if (optind < argc) { - printf("-- "); - for (; optind < argc; ++optind) { - printf("%s ", argv[optind]); - } - } - printf("\n"); - exit(0); -} -#endif diff --git a/external/bsd/bmake/dist/hash.c b/external/bsd/bmake/dist/hash.c deleted file mode 100644 index a22e2f2aa26e..000000000000 --- a/external/bsd/bmake/dist/hash.c +++ /dev/null @@ -1,463 +0,0 @@ -/* $NetBSD: hash.c,v 1.19 2009/01/24 10:59:09 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: hash.c,v 1.19 2009/01/24 10:59:09 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)hash.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: hash.c,v 1.19 2009/01/24 10:59:09 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/* hash.c -- - * - * This module contains routines to manipulate a hash table. - * See hash.h for a definition of the structure of the hash - * table. Hash tables grow automatically as the amount of - * information increases. - */ -#include "sprite.h" -#include "make.h" -#include "hash.h" - -/* - * Forward references to local procedures that are used before they're - * defined: - */ - -static void RebuildTable(Hash_Table *); - -/* - * The following defines the ratio of # entries to # buckets - * at which we rebuild the table to make it larger. - */ - -#define rebuildLimit 3 - -/* - *--------------------------------------------------------- - * - * Hash_InitTable -- - * - * This routine just sets up the hash table. - * - * Input: - * t Structure to to hold table. - * numBuckets How many buckets to create for starters. This - * number is rounded up to a power of two. If - * <= 0, a reasonable default is chosen. The - * table will grow in size later as needed. - * - * Results: - * None. - * - * Side Effects: - * Memory is allocated for the initial bucket area. - * - *--------------------------------------------------------- - */ - -void -Hash_InitTable(Hash_Table *t, int numBuckets) -{ - int i; - struct Hash_Entry **hp; - - /* - * Round up the size to a power of two. - */ - if (numBuckets <= 0) - i = 16; - else { - for (i = 2; i < numBuckets; i <<= 1) - continue; - } - t->numEntries = 0; - t->size = i; - t->mask = i - 1; - t->bucketPtr = hp = bmake_malloc(sizeof(*hp) * i); - while (--i >= 0) - *hp++ = NULL; -} - -/* - *--------------------------------------------------------- - * - * Hash_DeleteTable -- - * - * This routine removes everything from a hash table - * and frees up the memory space it occupied (except for - * the space in the Hash_Table structure). - * - * Results: - * None. - * - * Side Effects: - * Lots of memory is freed up. - * - *--------------------------------------------------------- - */ - -void -Hash_DeleteTable(Hash_Table *t) -{ - struct Hash_Entry **hp, *h, *nexth = NULL; - int i; - - for (hp = t->bucketPtr, i = t->size; --i >= 0;) { - for (h = *hp++; h != NULL; h = nexth) { - nexth = h->next; - free(h); - } - } - free(t->bucketPtr); - - /* - * Set up the hash table to cause memory faults on any future access - * attempts until re-initialization. - */ - t->bucketPtr = NULL; -} - -/* - *--------------------------------------------------------- - * - * Hash_FindEntry -- - * - * Searches a hash table for an entry corresponding to key. - * - * Input: - * t Hash table to search. - * key A hash key. - * - * Results: - * The return value is a pointer to the entry for key, - * if key was present in the table. If key was not - * present, NULL is returned. - * - * Side Effects: - * None. - * - *--------------------------------------------------------- - */ - -Hash_Entry * -Hash_FindEntry(Hash_Table *t, const char *key) -{ - Hash_Entry *e; - unsigned h; - const char *p; - - for (h = 0, p = key; *p;) - h = (h << 5) - h + *p++; - p = key; - for (e = t->bucketPtr[h & t->mask]; e != NULL; e = e->next) - if (e->namehash == h && strcmp(e->name, p) == 0) - return (e); - return NULL; -} - -/* - *--------------------------------------------------------- - * - * Hash_CreateEntry -- - * - * Searches a hash table for an entry corresponding to - * key. If no entry is found, then one is created. - * - * Input: - * t Hash table to search. - * key A hash key. - * newPtr Filled in with TRUE if new entry created, - * FALSE otherwise. - * - * Results: - * The return value is a pointer to the entry. If *newPtr - * isn't NULL, then *newPtr is filled in with TRUE if a - * new entry was created, and FALSE if an entry already existed - * with the given key. - * - * Side Effects: - * Memory may be allocated, and the hash buckets may be modified. - *--------------------------------------------------------- - */ - -Hash_Entry * -Hash_CreateEntry(Hash_Table *t, const char *key, Boolean *newPtr) -{ - Hash_Entry *e; - unsigned h; - const char *p; - int keylen; - struct Hash_Entry **hp; - - /* - * Hash the key. As a side effect, save the length (strlen) of the - * key in case we need to create the entry. - */ - for (h = 0, p = key; *p;) - h = (h << 5) - h + *p++; - keylen = p - key; - p = key; - for (e = t->bucketPtr[h & t->mask]; e != NULL; e = e->next) { - if (e->namehash == h && strcmp(e->name, p) == 0) { - if (newPtr != NULL) - *newPtr = FALSE; - return (e); - } - } - - /* - * The desired entry isn't there. Before allocating a new entry, - * expand the table if necessary (and this changes the resulting - * bucket chain). - */ - if (t->numEntries >= rebuildLimit * t->size) - RebuildTable(t); - e = bmake_malloc(sizeof(*e) + keylen); - hp = &t->bucketPtr[h & t->mask]; - e->next = *hp; - *hp = e; - Hash_SetValue(e, NULL); - e->namehash = h; - (void)strcpy(e->name, p); - t->numEntries++; - - if (newPtr != NULL) - *newPtr = TRUE; - return (e); -} - -/* - *--------------------------------------------------------- - * - * Hash_DeleteEntry -- - * - * Delete the given hash table entry and free memory associated with - * it. - * - * Results: - * None. - * - * Side Effects: - * Hash chain that entry lives in is modified and memory is freed. - * - *--------------------------------------------------------- - */ - -void -Hash_DeleteEntry(Hash_Table *t, Hash_Entry *e) -{ - Hash_Entry **hp, *p; - - if (e == NULL) - return; - for (hp = &t->bucketPtr[e->namehash & t->mask]; - (p = *hp) != NULL; hp = &p->next) { - if (p == e) { - *hp = p->next; - free(p); - t->numEntries--; - return; - } - } - (void)write(2, "bad call to Hash_DeleteEntry\n", 29); - abort(); -} - -/* - *--------------------------------------------------------- - * - * Hash_EnumFirst -- - * This procedure sets things up for a complete search - * of all entries recorded in the hash table. - * - * Input: - * t Table to be searched. - * searchPtr Area in which to keep state about search. - * - * Results: - * The return value is the address of the first entry in - * the hash table, or NULL if the table is empty. - * - * Side Effects: - * The information in searchPtr is initialized so that successive - * calls to Hash_Next will return successive HashEntry's - * from the table. - * - *--------------------------------------------------------- - */ - -Hash_Entry * -Hash_EnumFirst(Hash_Table *t, Hash_Search *searchPtr) -{ - searchPtr->tablePtr = t; - searchPtr->nextIndex = 0; - searchPtr->hashEntryPtr = NULL; - return Hash_EnumNext(searchPtr); -} - -/* - *--------------------------------------------------------- - * - * Hash_EnumNext -- - * This procedure returns successive entries in the hash table. - * - * Input: - * searchPtr Area used to keep state about search. - * - * Results: - * The return value is a pointer to the next HashEntry - * in the table, or NULL when the end of the table is - * reached. - * - * Side Effects: - * The information in searchPtr is modified to advance to the - * next entry. - * - *--------------------------------------------------------- - */ - -Hash_Entry * -Hash_EnumNext(Hash_Search *searchPtr) -{ - Hash_Entry *e; - Hash_Table *t = searchPtr->tablePtr; - - /* - * The hashEntryPtr field points to the most recently returned - * entry, or is nil if we are starting up. If not nil, we have - * to start at the next one in the chain. - */ - e = searchPtr->hashEntryPtr; - if (e != NULL) - e = e->next; - /* - * If the chain ran out, or if we are starting up, we need to - * find the next nonempty chain. - */ - while (e == NULL) { - if (searchPtr->nextIndex >= t->size) - return NULL; - e = t->bucketPtr[searchPtr->nextIndex++]; - } - searchPtr->hashEntryPtr = e; - return (e); -} - -/* - *--------------------------------------------------------- - * - * RebuildTable -- - * This local routine makes a new hash table that - * is larger than the old one. - * - * Results: - * None. - * - * Side Effects: - * The entire hash table is moved, so any bucket numbers - * from the old table are invalid. - * - *--------------------------------------------------------- - */ - -static void -RebuildTable(Hash_Table *t) -{ - Hash_Entry *e, *next = NULL, **hp, **xp; - int i, mask; - Hash_Entry **oldhp; - int oldsize; - - oldhp = t->bucketPtr; - oldsize = i = t->size; - i <<= 1; - t->size = i; - t->mask = mask = i - 1; - t->bucketPtr = hp = bmake_malloc(sizeof(*hp) * i); - while (--i >= 0) - *hp++ = NULL; - for (hp = oldhp, i = oldsize; --i >= 0;) { - for (e = *hp++; e != NULL; e = next) { - next = e->next; - xp = &t->bucketPtr[e->namehash & mask]; - e->next = *xp; - *xp = e; - } - } - free(oldhp); -} diff --git a/external/bsd/bmake/dist/hash.h b/external/bsd/bmake/dist/hash.h deleted file mode 100644 index 31d2ff1ea757..000000000000 --- a/external/bsd/bmake/dist/hash.h +++ /dev/null @@ -1,154 +0,0 @@ -/* $NetBSD: hash.h,v 1.10 2009/01/24 10:59:09 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)hash.h 8.1 (Berkeley) 6/6/93 - */ - -/* - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)hash.h 8.1 (Berkeley) 6/6/93 - */ - -/* hash.h -- - * - * This file contains definitions used by the hash module, - * which maintains hash tables. - */ - -#ifndef _HASH -#define _HASH - -/* - * The following defines one entry in the hash table. - */ - -typedef struct Hash_Entry { - struct Hash_Entry *next; /* Used to link together all the - * entries associated with the same - * bucket. */ - union { - void *clientPtr; /* Arbitrary pointer */ - time_t clientTime; /* Arbitrary Time */ - } clientInfo; - unsigned namehash; /* hash value of key */ - char name[1]; /* key string */ -} Hash_Entry; - -typedef struct Hash_Table { - struct Hash_Entry **bucketPtr;/* Pointers to Hash_Entry, one - * for each bucket in the table. */ - int size; /* Actual size of array. */ - int numEntries; /* Number of entries in the table. */ - int mask; /* Used to select bits for hashing. */ -} Hash_Table; - -/* - * The following structure is used by the searching routines - * to record where we are in the search. - */ - -typedef struct Hash_Search { - Hash_Table *tablePtr; /* Table being searched. */ - int nextIndex; /* Next bucket to check (after current). */ - Hash_Entry *hashEntryPtr; /* Next entry to check in current bucket. */ -} Hash_Search; - -/* - * Macros. - */ - -/* - * void * Hash_GetValue(h) - * Hash_Entry *h; - */ - -#define Hash_GetValue(h) ((h)->clientInfo.clientPtr) -#define Hash_GetTimeValue(h) ((h)->clientInfo.clientTime) - -/* - * Hash_SetValue(h, val); - * Hash_Entry *h; - * char *val; - */ - -#define Hash_SetValue(h, val) ((h)->clientInfo.clientPtr = (val)) -#define Hash_SetTimeValue(h, val) ((h)->clientInfo.clientTime = (val)) - -/* - * Hash_Size(n) returns the number of words in an object of n bytes - */ - -#define Hash_Size(n) (((n) + sizeof (int) - 1) / sizeof (int)) - -void Hash_InitTable(Hash_Table *, int); -void Hash_DeleteTable(Hash_Table *); -Hash_Entry *Hash_FindEntry(Hash_Table *, const char *); -Hash_Entry *Hash_CreateEntry(Hash_Table *, const char *, Boolean *); -void Hash_DeleteEntry(Hash_Table *, Hash_Entry *); -Hash_Entry *Hash_EnumFirst(Hash_Table *, Hash_Search *); -Hash_Entry *Hash_EnumNext(Hash_Search *); - -#endif /* _HASH */ diff --git a/external/bsd/bmake/dist/install-sh b/external/bsd/bmake/dist/install-sh deleted file mode 100755 index a2473298efcb..000000000000 --- a/external/bsd/bmake/dist/install-sh +++ /dev/null @@ -1,201 +0,0 @@ -: -# NAME: -# install.sh - portable version of install(1) -# -# SYNOPSIS: -# install [-CNcs] [-f flags] [-i errs] [-o owner] [-g group] [-m mode] file1 file2 ... -# install -d [-i errs] [-o owner] [-g group] [-m mode] directory ... -# -# DESCRIPTION: -# Compatible with BSD install(1). Except that '-c' is always -# true and we always move an already installed target aside as -# this is important on many systems. Recent BSD install(1) -# versions have a '-b' option for this. -# -# -# OPTIONS: -# -b move previous target file aside (always true). -# -# -B "suffix" -# use "suffix" instead of .old for saving existing target. -# -# -c copy rather than move the file into place (always true). -# -# -C compare. Only install if target is missing or -# different. -# -# -N newer. Only install if target is missing or older. -# -# -s strip target -# -# -o "owner" -# make target owned by "owner" -# -# -g "group" -# make target group owned by "group" -# -# -m "mode" -# set permissions to "mode" -# -# -f "flags" -# Pass "flags" onto chflags(1) -# -# -i "errs" -# Ignore errors from steps indicated by "errs" (``s,o,g,m''). -# -# BUGS: -# The '-i' option is to save your sanity when 'bsd.prog.mk' -# insists on haveing a '-o' "owner" option which is doomed to -# fail on many systems. We ignore '-b', '-B' and '-c' options. -# -# AUTHOR: -# Simon J. Gerraty -# - -# RCSid: -# $Id: install-sh,v 1.18 2001/03/16 17:33:02 sjg Exp $ -# -# @(#) Copyright (c) 1993 Simon J. Gerraty -# -# This file is provided in the hope that it will -# be of use. There is absolutely NO WARRANTY. -# Permission to copy, redistribute or otherwise -# use this file is hereby granted provided that -# the above copyright notice and this notice are -# left intact. -# -# Please send copies of changes and bug-fixes to: -# sjg@quick.com.au -# - -set -- `getopt B:bpxCNcsdo:g:m:i:f: $*` - -Mydir=`dirname $0` -[ -s $Mydir/.installrc ] && . $Mydir/.installrc - -owner=: -group=: -mode=: -strip=: -mkdirs= -compare=: -newer=: -chflags=: -LS1= -CP_P= - -while [ $# -gt 1 ] -do - case $1 in - --) shift; break;; - -p) CP_P=-p;; - -x) set -x;; - -B) OLD_EXT=$2; shift;; - -C) compare=Different;; - -N) newer=Newer; - # check if /bin/ls supports -1 - /bin/ls -1 $0 >/dev/null 2>&1 && LS1=1 - ;; - -o) owner="${CHOWN:-chown} $2 "; shift;; - -g) group="${CHGRP:-chgrp} $2 "; shift;; - -m) mode="${CHMOD:-chmod} $2 "; shift;; - -s) strip=${STRIP:-strip};; - -d) mkdirs="mkdir -p";; - -i) ignore_err="$ignore_err$2"; shift;; - -f) chflags="${CHFLAGS:-chflags} $2 "; shift;; - esac - shift -done - -Newer() { - n=`/bin/ls -t$LS1 $* 2>/dev/null | head -1` - [ $1 = $n ] -} - -Different() { - cmp -s $* - [ $? != 0 ] -} - -Err() { - case "$ignore_err" in - *$1*) ;; - *) exit 1;; - esac -} - -Setem() { - # the order is important - if [ ! -d $1 ]; then - $strip $1 || Err s - fi - $group $1 || Err g - $owner $1 || Err o - $mode $1 || Err m - $chflags $1 || Err f - return 0 -} - -# a bug in HP-UX's /bin/sh, means we need to re-set $* -# after any calls to add_path() -args="$*" - -# all this just for chown! -add_path () { [ -d $1 ] && eval ${2:-PATH}="\$${2:-PATH}:$1"; } -add_path /etc -add_path /usr/etc -add_path /sbin -add_path /usr/sbin - -# restore saved $* -set -- $args - -# make directories if needed -# and ensure mode etc are as desired -if [ "$mkdirs" ]; then - for d in $* - do - [ ! -d $d ] && $mkdirs $d - Setem $d - done - exit 0 # that's all we do -fi - -# install files -if [ $# -gt 2 ]; then - dest_dir=yes -elif [ $# -eq 1 ]; then - echo "what should I do with $*?" >&2 - exit 1 -fi - -# get list of files -while [ $# -gt 1 ] -do - files="$files $1" - shift -done -# last one is dest -dest=$1 -shift - - -if [ "$dest_dir" = yes -a ! -d $dest ]; then - echo "no directory $dest" >&2 - exit 1 -fi - -for f in $files -do - b=`basename $f` - if [ -d $dest ]; then - t=$dest/$b - else - t=$dest - fi - $newer $f $t || continue - $compare $f $t || continue - [ -f $t ] && { mv -f $t $t.old || exit 1; } - { cp $CP_P $f $t && Setem $t; } || exit 1 -done -exit 0 diff --git a/external/bsd/bmake/dist/job.c b/external/bsd/bmake/dist/job.c deleted file mode 100644 index 99e05d5cd720..000000000000 --- a/external/bsd/bmake/dist/job.c +++ /dev/null @@ -1,2994 +0,0 @@ -/* $NetBSD: job.c,v 1.163 2012/07/03 21:03:40 sjg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: job.c,v 1.163 2012/07/03 21:03:40 sjg Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)job.c 8.2 (Berkeley) 3/19/94"; -#else -__RCSID("$NetBSD: job.c,v 1.163 2012/07/03 21:03:40 sjg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * job.c -- - * handle the creation etc. of our child processes. - * - * Interface: - * Job_Make Start the creation of the given target. - * - * Job_CatchChildren Check for and handle the termination of any - * children. This must be called reasonably - * frequently to keep the whole make going at - * a decent clip, since job table entries aren't - * removed until their process is caught this way. - * - * Job_CatchOutput Print any output our children have produced. - * Should also be called fairly frequently to - * keep the user informed of what's going on. - * If no output is waiting, it will block for - * a time given by the SEL_* constants, below, - * or until output is ready. - * - * Job_Init Called to intialize this module. in addition, - * any commands attached to the .BEGIN target - * are executed before this function returns. - * Hence, the makefile must have been parsed - * before this function is called. - * - * Job_End Cleanup any memory used. - * - * Job_ParseShell Given the line following a .SHELL target, parse - * the line as a shell specification. Returns - * FAILURE if the spec was incorrect. - * - * Job_Finish Perform any final processing which needs doing. - * This includes the execution of any commands - * which have been/were attached to the .END - * target. It should only be called when the - * job table is empty. - * - * Job_AbortAll Abort all currently running jobs. It doesn't - * handle output or do anything for the jobs, - * just kills them. It should only be called in - * an emergency, as it were. - * - * Job_CheckCommands Verify that the commands for a target are - * ok. Provide them if necessary and possible. - * - * Job_Touch Update a target without really updating it. - * - * Job_Wait Wait for all currently-running jobs to finish. - */ - -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif -#include -#include -#include -#include -#include "wait.h" - -#include -#include -#if !defined(USE_SELECT) && defined(HAVE_POLL_H) -#include -#else -#ifndef USE_SELECT /* no poll.h */ -# define USE_SELECT -#endif -#if defined(HAVE_SYS_SELECT_H) -# include -#endif -#endif -#include -#include -#include -#include -#if defined(HAVE_SYS_SOCKET_H) -# include -#endif - -#include "make.h" -#include "hash.h" -#include "dir.h" -#include "job.h" -#include "pathnames.h" -#include "trace.h" -# define STATIC static - -/* - * error handling variables - */ -static int errors = 0; /* number of errors reported */ -static int aborting = 0; /* why is the make aborting? */ -#define ABORT_ERROR 1 /* Because of an error */ -#define ABORT_INTERRUPT 2 /* Because it was interrupted */ -#define ABORT_WAIT 3 /* Waiting for jobs to finish */ -#define JOB_TOKENS "+EI+" /* Token to requeue for each abort state */ - -/* - * this tracks the number of tokens currently "out" to build jobs. - */ -int jobTokensRunning = 0; -int not_parallel = 0; /* set if .NOT_PARALLEL */ - -/* - * XXX: Avoid SunOS bug... FILENO() is fp->_file, and file - * is a char! So when we go above 127 we turn negative! - */ -#define FILENO(a) ((unsigned) fileno(a)) - -/* - * post-make command processing. The node postCommands is really just the - * .END target but we keep it around to avoid having to search for it - * all the time. - */ -static GNode *postCommands = NULL; - /* node containing commands to execute when - * everything else is done */ -static int numCommands; /* The number of commands actually printed - * for a target. Should this number be - * 0, no shell will be executed. */ - -/* - * Return values from JobStart. - */ -#define JOB_RUNNING 0 /* Job is running */ -#define JOB_ERROR 1 /* Error in starting the job */ -#define JOB_FINISHED 2 /* The job is already finished */ - -/* - * Descriptions for various shells. - * - * The build environment may set DEFSHELL_INDEX to one of - * DEFSHELL_INDEX_SH, DEFSHELL_INDEX_KSH, or DEFSHELL_INDEX_CSH, to - * select one of the prefedined shells as the default shell. - * - * Alternatively, the build environment may set DEFSHELL_CUSTOM to the - * name or the full path of a sh-compatible shell, which will be used as - * the default shell. - * - * ".SHELL" lines in Makefiles can choose the default shell from the - # set defined here, or add additional shells. - */ - -#ifdef DEFSHELL_CUSTOM -#define DEFSHELL_INDEX_CUSTOM 0 -#define DEFSHELL_INDEX_SH 1 -#define DEFSHELL_INDEX_KSH 2 -#define DEFSHELL_INDEX_CSH 3 -#else /* !DEFSHELL_CUSTOM */ -#define DEFSHELL_INDEX_SH 0 -#define DEFSHELL_INDEX_KSH 1 -#define DEFSHELL_INDEX_CSH 2 -#endif /* !DEFSHELL_CUSTOM */ - -#ifndef DEFSHELL_INDEX -#define DEFSHELL_INDEX 0 /* DEFSHELL_INDEX_CUSTOM or DEFSHELL_INDEX_SH */ -#endif /* !DEFSHELL_INDEX */ - -static Shell shells[] = { -#ifdef DEFSHELL_CUSTOM - /* - * An sh-compatible shell with a non-standard name. - * - * Keep this in sync with the "sh" description below, but avoid - * non-portable features that might not be supplied by all - * sh-compatible shells. - */ -{ - DEFSHELL_CUSTOM, - FALSE, "", "", "", 0, - FALSE, "echo \"%s\"\n", "%s\n", "{ %s \n} || exit $?\n", "'\n'", '#', - "", - "", -}, -#endif /* DEFSHELL_CUSTOM */ - /* - * SH description. Echo control is also possible and, under - * sun UNIX anyway, one can even control error checking. - */ -{ - "sh", - FALSE, "", "", "", 0, - FALSE, "echo \"%s\"\n", "%s\n", "{ %s \n} || exit $?\n", "'\n'", '#', -#if defined(MAKE_NATIVE) && defined(__NetBSD__) - "q", -#else - "", -#endif - "", -}, - /* - * KSH description. - */ -{ - "ksh", - TRUE, "set +v", "set -v", "set +v", 6, - FALSE, "echo \"%s\"\n", "%s\n", "{ %s \n} || exit $?\n", "'\n'", '#', - "v", - "", -}, - /* - * CSH description. The csh can do echo control by playing - * with the setting of the 'echo' shell variable. Sadly, - * however, it is unable to do error control nicely. - */ -{ - "csh", - TRUE, "unset verbose", "set verbose", "unset verbose", 10, - FALSE, "echo \"%s\"\n", "csh -c \"%s || exit 0\"\n", "", "'\\\n'", '#', - "v", "e", -}, - /* - * UNKNOWN. - */ -{ - NULL, - FALSE, NULL, NULL, NULL, 0, - FALSE, NULL, NULL, NULL, NULL, 0, - NULL, NULL, -} -}; -static Shell *commandShell = &shells[DEFSHELL_INDEX]; /* this is the shell to - * which we pass all - * commands in the Makefile. - * It is set by the - * Job_ParseShell function */ -const char *shellPath = NULL, /* full pathname of - * executable image */ - *shellName = NULL; /* last component of shell */ -static const char *shellArgv = NULL; /* Custom shell args */ - - -STATIC Job *job_table; /* The structures that describe them */ -STATIC Job *job_table_end; /* job_table + maxJobs */ -static int wantToken; /* we want a token */ -static int lurking_children = 0; -static int make_suspended = 0; /* non-zero if we've seen a SIGTSTP (etc) */ - -/* - * Set of descriptors of pipes connected to - * the output channels of children - */ -static struct pollfd *fds = NULL; -static Job **jobfds = NULL; -static int nfds = 0; -static void watchfd(Job *); -static void clearfd(Job *); -static int readyfd(Job *); - -STATIC GNode *lastNode; /* The node for which output was most recently - * produced. */ -static char *targPrefix = NULL; /* What we print at the start of TARG_FMT */ -static Job tokenWaitJob; /* token wait pseudo-job */ - -static Job childExitJob; /* child exit pseudo-job */ -#define CHILD_EXIT "." -#define DO_JOB_RESUME "R" - -#define TARG_FMT "%s %s ---\n" /* Default format */ -#define MESSAGE(fp, gn) \ - if (maxJobs != 1) \ - (void)fprintf(fp, TARG_FMT, targPrefix, gn->name) - -static sigset_t caught_signals; /* Set of signals we handle */ -#if defined(SYSV) -#define KILLPG(pid, sig) kill(-(pid), (sig)) -#else -#define KILLPG(pid, sig) killpg((pid), (sig)) -#endif - -static void JobChildSig(int); -static void JobContinueSig(int); -static Job *JobFindPid(int, int, Boolean); -static int JobPrintCommand(void *, void *); -static int JobSaveCommand(void *, void *); -static void JobClose(Job *); -static void JobExec(Job *, char **); -static void JobMakeArgv(Job *, char **); -static int JobStart(GNode *, int); -static char *JobOutput(Job *, char *, char *, int); -static void JobDoOutput(Job *, Boolean); -static Shell *JobMatchShell(const char *); -static void JobInterrupt(int, int) MAKE_ATTR_DEAD; -static void JobRestartJobs(void); -static void JobTokenAdd(void); -static void JobSigLock(sigset_t *); -static void JobSigUnlock(sigset_t *); -static void JobSigReset(void); - -const char *malloc_options="A"; - -static void -job_table_dump(const char *where) -{ - Job *job; - - fprintf(debug_file, "job table @ %s\n", where); - for (job = job_table; job < job_table_end; job++) { - fprintf(debug_file, "job %d, status %d, flags %d, pid %d\n", - (int)(job - job_table), job->job_state, job->flags, job->pid); - } -} - -/* - * JobSigLock/JobSigUnlock - * - * Signal lock routines to get exclusive access. Currently used to - * protect `jobs' and `stoppedJobs' list manipulations. - */ -static void JobSigLock(sigset_t *omaskp) -{ - if (sigprocmask(SIG_BLOCK, &caught_signals, omaskp) != 0) { - Punt("JobSigLock: sigprocmask: %s", strerror(errno)); - sigemptyset(omaskp); - } -} - -static void JobSigUnlock(sigset_t *omaskp) -{ - (void)sigprocmask(SIG_SETMASK, omaskp, NULL); -} - -static void -JobCreatePipe(Job *job, int minfd) -{ - int i, fd; - - if (pipe(job->jobPipe) == -1) - Punt("Cannot create pipe: %s", strerror(errno)); - - /* Set close-on-exec flag for both */ - (void)fcntl(job->jobPipe[0], F_SETFD, 1); - (void)fcntl(job->jobPipe[1], F_SETFD, 1); - - /* - * We mark the input side of the pipe non-blocking; we poll(2) the - * pipe when we're waiting for a job token, but we might lose the - * race for the token when a new one becomes available, so the read - * from the pipe should not block. - */ - fcntl(job->jobPipe[0], F_SETFL, - fcntl(job->jobPipe[0], F_GETFL, 0) | O_NONBLOCK); - - for (i = 0; i < 2; i++) { - /* Avoid using low numbered fds */ - fd = fcntl(job->jobPipe[i], F_DUPFD, minfd); - if (fd != -1) { - close(job->jobPipe[i]); - job->jobPipe[i] = fd; - } - } -} - -/*- - *----------------------------------------------------------------------- - * JobCondPassSig -- - * Pass a signal to a job - * - * Input: - * signop Signal to send it - * - * Side Effects: - * None, except the job may bite it. - * - *----------------------------------------------------------------------- - */ -static void -JobCondPassSig(int signo) -{ - Job *job; - - if (DEBUG(JOB)) { - (void)fprintf(debug_file, "JobCondPassSig(%d) called.\n", signo); - } - - for (job = job_table; job < job_table_end; job++) { - if (job->job_state != JOB_ST_RUNNING) - continue; - if (DEBUG(JOB)) { - (void)fprintf(debug_file, - "JobCondPassSig passing signal %d to child %d.\n", - signo, job->pid); - } - KILLPG(job->pid, signo); - } -} - -/*- - *----------------------------------------------------------------------- - * JobChldSig -- - * SIGCHLD handler. - * - * Input: - * signo The signal number we've received - * - * Results: - * None. - * - * Side Effects: - * Sends a token on the child exit pipe to wake us up from - * select()/poll(). - * - *----------------------------------------------------------------------- - */ -static void -JobChildSig(int signo MAKE_ATTR_UNUSED) -{ - write(childExitJob.outPipe, CHILD_EXIT, 1); -} - - -/*- - *----------------------------------------------------------------------- - * JobContinueSig -- - * Resume all stopped jobs. - * - * Input: - * signo The signal number we've received - * - * Results: - * None. - * - * Side Effects: - * Jobs start running again. - * - *----------------------------------------------------------------------- - */ -static void -JobContinueSig(int signo MAKE_ATTR_UNUSED) -{ - /* - * Defer sending to SIGCONT to our stopped children until we return - * from the signal handler. - */ - write(childExitJob.outPipe, DO_JOB_RESUME, 1); -} - -/*- - *----------------------------------------------------------------------- - * JobPassSig -- - * Pass a signal on to all jobs, then resend to ourselves. - * - * Input: - * signo The signal number we've received - * - * Results: - * None. - * - * Side Effects: - * We die by the same signal. - * - *----------------------------------------------------------------------- - */ -MAKE_ATTR_DEAD static void -JobPassSig_int(int signo) -{ - /* Run .INTERRUPT target then exit */ - JobInterrupt(TRUE, signo); -} - -MAKE_ATTR_DEAD static void -JobPassSig_term(int signo) -{ - /* Dont run .INTERRUPT target then exit */ - JobInterrupt(FALSE, signo); -} - -static void -JobPassSig_suspend(int signo) -{ - sigset_t nmask, omask; - struct sigaction act; - - /* Suppress job started/continued messages */ - make_suspended = 1; - - /* Pass the signal onto every job */ - JobCondPassSig(signo); - - /* - * Send ourselves the signal now we've given the message to everyone else. - * Note we block everything else possible while we're getting the signal. - * This ensures that all our jobs get continued when we wake up before - * we take any other signal. - */ - sigfillset(&nmask); - sigdelset(&nmask, signo); - (void)sigprocmask(SIG_SETMASK, &nmask, &omask); - - act.sa_handler = SIG_DFL; - sigemptyset(&act.sa_mask); - act.sa_flags = 0; - (void)sigaction(signo, &act, NULL); - - if (DEBUG(JOB)) { - (void)fprintf(debug_file, - "JobPassSig passing signal %d to self.\n", signo); - } - - (void)kill(getpid(), signo); - - /* - * We've been continued. - * - * A whole host of signals continue to happen! - * SIGCHLD for any processes that actually suspended themselves. - * SIGCHLD for any processes that exited while we were alseep. - * The SIGCONT that actually caused us to wakeup. - * - * Since we defer passing the SIGCONT on to our children until - * the main processing loop, we can be sure that all the SIGCHLD - * events will have happened by then - and that the waitpid() will - * collect the child 'suspended' events. - * For correct sequencing we just need to ensure we process the - * waitpid() before passign on the SIGCONT. - * - * In any case nothing else is needed here. - */ - - /* Restore handler and signal mask */ - act.sa_handler = JobPassSig_suspend; - (void)sigaction(signo, &act, NULL); - (void)sigprocmask(SIG_SETMASK, &omask, NULL); -} - -/*- - *----------------------------------------------------------------------- - * JobFindPid -- - * Compare the pid of the job with the given pid and return 0 if they - * are equal. This function is called from Job_CatchChildren - * to find the job descriptor of the finished job. - * - * Input: - * job job to examine - * pid process id desired - * - * Results: - * Job with matching pid - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -static Job * -JobFindPid(int pid, int status, Boolean isJobs) -{ - Job *job; - - for (job = job_table; job < job_table_end; job++) { - if ((job->job_state == status) && job->pid == pid) - return job; - } - if (DEBUG(JOB) && isJobs) - job_table_dump("no pid"); - return NULL; -} - -/*- - *----------------------------------------------------------------------- - * JobPrintCommand -- - * Put out another command for the given job. If the command starts - * with an @ or a - we process it specially. In the former case, - * so long as the -s and -n flags weren't given to make, we stick - * a shell-specific echoOff command in the script. In the latter, - * we ignore errors for the entire job, unless the shell has error - * control. - * If the command is just "..." we take all future commands for this - * job to be commands to be executed once the entire graph has been - * made and return non-zero to signal that the end of the commands - * was reached. These commands are later attached to the postCommands - * node and executed by Job_End when all things are done. - * This function is called from JobStart via Lst_ForEach. - * - * Input: - * cmdp command string to print - * jobp job for which to print it - * - * Results: - * Always 0, unless the command was "..." - * - * Side Effects: - * If the command begins with a '-' and the shell has no error control, - * the JOB_IGNERR flag is set in the job descriptor. - * If the command is "..." and we're not ignoring such things, - * tailCmds is set to the successor node of the cmd. - * numCommands is incremented if the command is actually printed. - *----------------------------------------------------------------------- - */ -static int -JobPrintCommand(void *cmdp, void *jobp) -{ - Boolean noSpecials; /* true if we shouldn't worry about - * inserting special commands into - * the input stream. */ - Boolean shutUp = FALSE; /* true if we put a no echo command - * into the command file */ - Boolean errOff = FALSE; /* true if we turned error checking - * off before printing the command - * and need to turn it back on */ - const char *cmdTemplate; /* Template to use when printing the - * command */ - char *cmdStart; /* Start of expanded command */ - char *escCmd = NULL; /* Command with quotes/backticks escaped */ - char *cmd = (char *)cmdp; - Job *job = (Job *)jobp; - char *cp, *tmp; - int i, j; - - noSpecials = NoExecute(job->node); - - if (strcmp(cmd, "...") == 0) { - job->node->type |= OP_SAVE_CMDS; - if ((job->flags & JOB_IGNDOTS) == 0) { - job->tailCmds = Lst_Succ(Lst_Member(job->node->commands, - cmd)); - return 1; - } - return 0; - } - -#define DBPRINTF(fmt, arg) if (DEBUG(JOB)) { \ - (void)fprintf(debug_file, fmt, arg); \ - } \ - (void)fprintf(job->cmdFILE, fmt, arg); \ - (void)fflush(job->cmdFILE); - - numCommands += 1; - - cmdStart = cmd = Var_Subst(NULL, cmd, job->node, FALSE); - - cmdTemplate = "%s\n"; - - /* - * Check for leading @' and -'s to control echoing and error checking. - */ - while (*cmd == '@' || *cmd == '-' || (*cmd == '+')) { - switch (*cmd) { - case '@': - shutUp = DEBUG(LOUD) ? FALSE : TRUE; - break; - case '-': - job->flags |= JOB_IGNERR; - errOff = TRUE; - break; - case '+': - if (noSpecials) { - /* - * We're not actually executing anything... - * but this one needs to be - use compat mode just for it. - */ - CompatRunCommand(cmdp, job->node); - return 0; - } - break; - } - cmd++; - } - - while (isspace((unsigned char) *cmd)) - cmd++; - - /* - * If the shell doesn't have error control the alternate echo'ing will - * be done (to avoid showing additional error checking code) - * and this will need the characters '$ ` \ "' escaped - */ - - if (!commandShell->hasErrCtl) { - /* Worst that could happen is every char needs escaping. */ - escCmd = bmake_malloc((strlen(cmd) * 2) + 1); - for (i = 0, j= 0; cmd[i] != '\0'; i++, j++) { - if (cmd[i] == '$' || cmd[i] == '`' || cmd[i] == '\\' || - cmd[i] == '"') - escCmd[j++] = '\\'; - escCmd[j] = cmd[i]; - } - escCmd[j] = 0; - } - - if (shutUp) { - if (!(job->flags & JOB_SILENT) && !noSpecials && - commandShell->hasEchoCtl) { - DBPRINTF("%s\n", commandShell->echoOff); - } else { - if (commandShell->hasErrCtl) - shutUp = FALSE; - } - } - - if (errOff) { - if (!noSpecials) { - if (commandShell->hasErrCtl) { - /* - * we don't want the error-control commands showing - * up either, so we turn off echoing while executing - * them. We could put another field in the shell - * structure to tell JobDoOutput to look for this - * string too, but why make it any more complex than - * it already is? - */ - if (!(job->flags & JOB_SILENT) && !shutUp && - commandShell->hasEchoCtl) { - DBPRINTF("%s\n", commandShell->echoOff); - DBPRINTF("%s\n", commandShell->ignErr); - DBPRINTF("%s\n", commandShell->echoOn); - } else { - DBPRINTF("%s\n", commandShell->ignErr); - } - } else if (commandShell->ignErr && - (*commandShell->ignErr != '\0')) - { - /* - * The shell has no error control, so we need to be - * weird to get it to ignore any errors from the command. - * If echoing is turned on, we turn it off and use the - * errCheck template to echo the command. Leave echoing - * off so the user doesn't see the weirdness we go through - * to ignore errors. Set cmdTemplate to use the weirdness - * instead of the simple "%s\n" template. - */ - if (!(job->flags & JOB_SILENT) && !shutUp) { - if (commandShell->hasEchoCtl) { - DBPRINTF("%s\n", commandShell->echoOff); - } - DBPRINTF(commandShell->errCheck, escCmd); - shutUp = TRUE; - } else { - if (!shutUp) { - DBPRINTF(commandShell->errCheck, escCmd); - } - } - cmdTemplate = commandShell->ignErr; - /* - * The error ignoration (hee hee) is already taken care - * of by the ignErr template, so pretend error checking - * is still on. - */ - errOff = FALSE; - } else { - errOff = FALSE; - } - } else { - errOff = FALSE; - } - } else { - - /* - * If errors are being checked and the shell doesn't have error control - * but does supply an errOut template, then setup commands to run - * through it. - */ - - if (!commandShell->hasErrCtl && commandShell->errOut && - (*commandShell->errOut != '\0')) { - if (!(job->flags & JOB_SILENT) && !shutUp) { - if (commandShell->hasEchoCtl) { - DBPRINTF("%s\n", commandShell->echoOff); - } - DBPRINTF(commandShell->errCheck, escCmd); - shutUp = TRUE; - } - /* If it's a comment line or blank, treat as an ignored error */ - if ((escCmd[0] == commandShell->commentChar) || - (escCmd[0] == 0)) - cmdTemplate = commandShell->ignErr; - else - cmdTemplate = commandShell->errOut; - errOff = FALSE; - } - } - - if (DEBUG(SHELL) && strcmp(shellName, "sh") == 0 && - (job->flags & JOB_TRACED) == 0) { - DBPRINTF("set -%s\n", "x"); - job->flags |= JOB_TRACED; - } - - if ((cp = Check_Cwd_Cmd(cmd)) != NULL) { - DBPRINTF("test -d %s && ", cp); - DBPRINTF("cd %s\n", cp); - } - - DBPRINTF(cmdTemplate, cmd); - free(cmdStart); - if (escCmd) - free(escCmd); - if (errOff) { - /* - * If echoing is already off, there's no point in issuing the - * echoOff command. Otherwise we issue it and pretend it was on - * for the whole command... - */ - if (!shutUp && !(job->flags & JOB_SILENT) && commandShell->hasEchoCtl){ - DBPRINTF("%s\n", commandShell->echoOff); - shutUp = TRUE; - } - DBPRINTF("%s\n", commandShell->errCheck); - } - if (shutUp && commandShell->hasEchoCtl) { - DBPRINTF("%s\n", commandShell->echoOn); - } - if (cp != NULL) { - DBPRINTF("test -d %s && ", cp); - DBPRINTF("cd %s\n", Var_Value(".OBJDIR", VAR_GLOBAL, &tmp)); - } - return 0; -} - -/*- - *----------------------------------------------------------------------- - * JobSaveCommand -- - * Save a command to be executed when everything else is done. - * Callback function for JobFinish... - * - * Results: - * Always returns 0 - * - * Side Effects: - * The command is tacked onto the end of postCommands's commands list. - * - *----------------------------------------------------------------------- - */ -static int -JobSaveCommand(void *cmd, void *gn) -{ - cmd = Var_Subst(NULL, (char *)cmd, (GNode *)gn, FALSE); - (void)Lst_AtEnd(postCommands->commands, cmd); - return(0); -} - - -/*- - *----------------------------------------------------------------------- - * JobClose -- - * Called to close both input and output pipes when a job is finished. - * - * Results: - * Nada - * - * Side Effects: - * The file descriptors associated with the job are closed. - * - *----------------------------------------------------------------------- - */ -static void -JobClose(Job *job) -{ - clearfd(job); - (void)close(job->outPipe); - job->outPipe = -1; - - JobDoOutput(job, TRUE); - (void)close(job->inPipe); - job->inPipe = -1; -} - -/*- - *----------------------------------------------------------------------- - * JobFinish -- - * Do final processing for the given job including updating - * parents and starting new jobs as available/necessary. Note - * that we pay no attention to the JOB_IGNERR flag here. - * This is because when we're called because of a noexecute flag - * or something, jstat.w_status is 0 and when called from - * Job_CatchChildren, the status is zeroed if it s/b ignored. - * - * Input: - * job job to finish - * status sub-why job went away - * - * Results: - * None - * - * Side Effects: - * Final commands for the job are placed on postCommands. - * - * If we got an error and are aborting (aborting == ABORT_ERROR) and - * the job list is now empty, we are done for the day. - * If we recognized an error (errors !=0), we set the aborting flag - * to ABORT_ERROR so no more jobs will be started. - *----------------------------------------------------------------------- - */ -/*ARGSUSED*/ -static void -JobFinish (Job *job, WAIT_T status) -{ - Boolean done, return_job_token; - - if (DEBUG(JOB)) { - fprintf(debug_file, "Jobfinish: %d [%s], status %d\n", - job->pid, job->node->name, status); - } - - if ((WIFEXITED(status) && - (((WEXITSTATUS(status) != 0) && !(job->flags & JOB_IGNERR)))) || - WIFSIGNALED(status)) - { - /* - * If it exited non-zero and either we're doing things our - * way or we're not ignoring errors, the job is finished. - * Similarly, if the shell died because of a signal - * the job is also finished. In these - * cases, finish out the job's output before printing the exit - * status... - */ - JobClose(job); - if (job->cmdFILE != NULL && job->cmdFILE != stdout) { - (void)fclose(job->cmdFILE); - job->cmdFILE = NULL; - } - done = TRUE; - } else if (WIFEXITED(status)) { - /* - * Deal with ignored errors in -B mode. We need to print a message - * telling of the ignored error as well as setting status.w_status - * to 0 so the next command gets run. To do this, we set done to be - * TRUE if in -B mode and the job exited non-zero. - */ - done = WEXITSTATUS(status) != 0; - /* - * Old comment said: "Note we don't - * want to close down any of the streams until we know we're at the - * end." - * But we do. Otherwise when are we going to print the rest of the - * stuff? - */ - JobClose(job); - } else { - /* - * No need to close things down or anything. - */ - done = FALSE; - } - - if (done) { - if (WIFEXITED(status)) { - if (DEBUG(JOB)) { - (void)fprintf(debug_file, "Process %d [%s] exited.\n", - job->pid, job->node->name); - } - if (WEXITSTATUS(status) != 0) { - if (job->node != lastNode) { - MESSAGE(stdout, job->node); - lastNode = job->node; - } -#ifdef USE_META - if (useMeta) { - meta_job_error(job, job->node, job->flags, WEXITSTATUS(status)); - } -#endif - (void)printf("*** [%s] Error code %d%s\n", - job->node->name, - WEXITSTATUS(status), - (job->flags & JOB_IGNERR) ? " (ignored)" : ""); - if (job->flags & JOB_IGNERR) { - WAIT_STATUS(status) = 0; - } else { - PrintOnError(job->node, NULL); - } - } else if (DEBUG(JOB)) { - if (job->node != lastNode) { - MESSAGE(stdout, job->node); - lastNode = job->node; - } - (void)printf("*** [%s] Completed successfully\n", - job->node->name); - } - } else { - if (job->node != lastNode) { - MESSAGE(stdout, job->node); - lastNode = job->node; - } - (void)printf("*** [%s] Signal %d\n", - job->node->name, WTERMSIG(status)); - } - (void)fflush(stdout); - } - -#ifdef USE_META - if (useMeta) { - meta_job_finish(job); - } -#endif - - return_job_token = FALSE; - - Trace_Log(JOBEND, job); - if (!(job->flags & JOB_SPECIAL)) { - if ((WAIT_STATUS(status) != 0) || - (aborting == ABORT_ERROR) || - (aborting == ABORT_INTERRUPT)) - return_job_token = TRUE; - } - - if ((aborting != ABORT_ERROR) && (aborting != ABORT_INTERRUPT) && - (WAIT_STATUS(status) == 0)) { - /* - * As long as we aren't aborting and the job didn't return a non-zero - * status that we shouldn't ignore, we call Make_Update to update - * the parents. In addition, any saved commands for the node are placed - * on the .END target. - */ - if (job->tailCmds != NULL) { - Lst_ForEachFrom(job->node->commands, job->tailCmds, - JobSaveCommand, - job->node); - } - job->node->made = MADE; - if (!(job->flags & JOB_SPECIAL)) - return_job_token = TRUE; - Make_Update(job->node); - job->job_state = JOB_ST_FREE; - } else if (WAIT_STATUS(status)) { - errors += 1; - job->job_state = JOB_ST_FREE; - } - - /* - * Set aborting if any error. - */ - if (errors && !keepgoing && (aborting != ABORT_INTERRUPT)) { - /* - * If we found any errors in this batch of children and the -k flag - * wasn't given, we set the aborting flag so no more jobs get - * started. - */ - aborting = ABORT_ERROR; - } - - if (return_job_token) - Job_TokenReturn(); - - if (aborting == ABORT_ERROR && jobTokensRunning == 0) { - /* - * If we are aborting and the job table is now empty, we finish. - */ - Finish(errors); - } -} - -/*- - *----------------------------------------------------------------------- - * Job_Touch -- - * Touch the given target. Called by JobStart when the -t flag was - * given - * - * Input: - * gn the node of the file to touch - * silent TRUE if should not print message - * - * Results: - * None - * - * Side Effects: - * The data modification of the file is changed. In addition, if the - * file did not exist, it is created. - *----------------------------------------------------------------------- - */ -void -Job_Touch(GNode *gn, Boolean silent) -{ - int streamID; /* ID of stream opened to do the touch */ - struct utimbuf times; /* Times for utime() call */ - - if (gn->type & (OP_JOIN|OP_USE|OP_USEBEFORE|OP_EXEC|OP_OPTIONAL| - OP_SPECIAL|OP_PHONY)) { - /* - * .JOIN, .USE, .ZEROTIME and .OPTIONAL targets are "virtual" targets - * and, as such, shouldn't really be created. - */ - return; - } - - if (!silent || NoExecute(gn)) { - (void)fprintf(stdout, "touch %s\n", gn->name); - (void)fflush(stdout); - } - - if (NoExecute(gn)) { - return; - } - - if (gn->type & OP_ARCHV) { - Arch_Touch(gn); - } else if (gn->type & OP_LIB) { - Arch_TouchLib(gn); - } else { - char *file = gn->path ? gn->path : gn->name; - - times.actime = times.modtime = now; - if (utime(file, ×) < 0){ - streamID = open(file, O_RDWR | O_CREAT, 0666); - - if (streamID >= 0) { - char c; - - /* - * Read and write a byte to the file to change the - * modification time, then close the file. - */ - if (read(streamID, &c, 1) == 1) { - (void)lseek(streamID, (off_t)0, SEEK_SET); - (void)write(streamID, &c, 1); - } - - (void)close(streamID); - } else { - (void)fprintf(stdout, "*** couldn't touch %s: %s", - file, strerror(errno)); - (void)fflush(stdout); - } - } - } -} - -/*- - *----------------------------------------------------------------------- - * Job_CheckCommands -- - * Make sure the given node has all the commands it needs. - * - * Input: - * gn The target whose commands need verifying - * abortProc Function to abort with message - * - * Results: - * TRUE if the commands list is/was ok. - * - * Side Effects: - * The node will have commands from the .DEFAULT rule added to it - * if it needs them. - *----------------------------------------------------------------------- - */ -Boolean -Job_CheckCommands(GNode *gn, void (*abortProc)(const char *, ...)) -{ - if (OP_NOP(gn->type) && Lst_IsEmpty(gn->commands) && - ((gn->type & OP_LIB) == 0 || Lst_IsEmpty(gn->children))) { - /* - * No commands. Look for .DEFAULT rule from which we might infer - * commands - */ - if ((DEFAULT != NULL) && !Lst_IsEmpty(DEFAULT->commands) && - (gn->type & OP_SPECIAL) == 0) { - char *p1; - /* - * Make only looks for a .DEFAULT if the node was never the - * target of an operator, so that's what we do too. If - * a .DEFAULT was given, we substitute its commands for gn's - * commands and set the IMPSRC variable to be the target's name - * The DEFAULT node acts like a transformation rule, in that - * gn also inherits any attributes or sources attached to - * .DEFAULT itself. - */ - Make_HandleUse(DEFAULT, gn); - Var_Set(IMPSRC, Var_Value(TARGET, gn, &p1), gn, 0); - if (p1) - free(p1); - } else if (Dir_MTime(gn, 0) == 0 && (gn->type & OP_SPECIAL) == 0) { - /* - * The node wasn't the target of an operator we have no .DEFAULT - * rule to go on and the target doesn't already exist. There's - * nothing more we can do for this branch. If the -k flag wasn't - * given, we stop in our tracks, otherwise we just don't update - * this node's parents so they never get examined. - */ - static const char msg[] = ": don't know how to make"; - - if (gn->flags & FROM_DEPEND) { - fprintf(stdout, "%s: ignoring stale %s for %s\n", - progname, makeDependfile, gn->name); - return TRUE; - } - - if (gn->type & OP_OPTIONAL) { - (void)fprintf(stdout, "%s%s %s (ignored)\n", progname, - msg, gn->name); - (void)fflush(stdout); - } else if (keepgoing) { - (void)fprintf(stdout, "%s%s %s (continuing)\n", progname, - msg, gn->name); - (void)fflush(stdout); - return FALSE; - } else { - (*abortProc)("%s%s %s. Stop", progname, msg, gn->name); - return FALSE; - } - } - } - return TRUE; -} - -/*- - *----------------------------------------------------------------------- - * JobExec -- - * Execute the shell for the given job. Called from JobStart - * - * Input: - * job Job to execute - * - * Results: - * None. - * - * Side Effects: - * A shell is executed, outputs is altered and the Job structure added - * to the job table. - * - *----------------------------------------------------------------------- - */ -static void -JobExec(Job *job, char **argv) -{ - int cpid; /* ID of new child */ - sigset_t mask; - - job->flags &= ~JOB_TRACED; - - if (DEBUG(JOB)) { - int i; - - (void)fprintf(debug_file, "Running %s %sly\n", job->node->name, "local"); - (void)fprintf(debug_file, "\tCommand: "); - for (i = 0; argv[i] != NULL; i++) { - (void)fprintf(debug_file, "%s ", argv[i]); - } - (void)fprintf(debug_file, "\n"); - } - - /* - * Some jobs produce no output and it's disconcerting to have - * no feedback of their running (since they produce no output, the - * banner with their name in it never appears). This is an attempt to - * provide that feedback, even if nothing follows it. - */ - if ((lastNode != job->node) && !(job->flags & JOB_SILENT)) { - MESSAGE(stdout, job->node); - lastNode = job->node; - } - - /* No interruptions until this job is on the `jobs' list */ - JobSigLock(&mask); - - /* Pre-emptively mark job running, pid still zero though */ - job->job_state = JOB_ST_RUNNING; - - cpid = vFork(); - if (cpid == -1) - Punt("Cannot vfork: %s", strerror(errno)); - - if (cpid == 0) { - /* Child */ - sigset_t tmask; - -#ifdef USE_META - if (useMeta) { - meta_job_child(job); - } -#endif - /* - * Reset all signal handlers; this is necessary because we also - * need to unblock signals before we exec(2). - */ - JobSigReset(); - - /* Now unblock signals */ - sigemptyset(&tmask); - JobSigUnlock(&tmask); - - /* - * Must duplicate the input stream down to the child's input and - * reset it to the beginning (again). Since the stream was marked - * close-on-exec, we must clear that bit in the new input. - */ - if (dup2(FILENO(job->cmdFILE), 0) == -1) { - execError("dup2", "job->cmdFILE"); - _exit(1); - } - (void)fcntl(0, F_SETFD, 0); - (void)lseek(0, (off_t)0, SEEK_SET); - - if (job->node->type & OP_MAKE) { - /* - * Pass job token pipe to submakes. - */ - fcntl(tokenWaitJob.inPipe, F_SETFD, 0); - fcntl(tokenWaitJob.outPipe, F_SETFD, 0); - } - - /* - * Set up the child's output to be routed through the pipe - * we've created for it. - */ - if (dup2(job->outPipe, 1) == -1) { - execError("dup2", "job->outPipe"); - _exit(1); - } - /* - * The output channels are marked close on exec. This bit was - * duplicated by the dup2(on some systems), so we have to clear - * it before routing the shell's error output to the same place as - * its standard output. - */ - (void)fcntl(1, F_SETFD, 0); - if (dup2(1, 2) == -1) { - execError("dup2", "1, 2"); - _exit(1); - } - - /* - * We want to switch the child into a different process family so - * we can kill it and all its descendants in one fell swoop, - * by killing its process family, but not commit suicide. - */ -#if defined(HAVE_SETPGID) - (void)setpgid(0, getpid()); -#else -#if defined(HAVE_SETSID) - /* XXX: dsl - I'm sure this should be setpgrp()... */ - (void)setsid(); -#else - (void)setpgrp(0, getpid()); -#endif -#endif - - Var_ExportVars(); - - (void)execv(shellPath, argv); - execError("exec", shellPath); - _exit(1); - } - - /* Parent, continuing after the child exec */ - job->pid = cpid; - - Trace_Log(JOBSTART, job); - - /* - * Set the current position in the buffer to the beginning - * and mark another stream to watch in the outputs mask - */ - job->curPos = 0; - - watchfd(job); - - if (job->cmdFILE != NULL && job->cmdFILE != stdout) { - (void)fclose(job->cmdFILE); - job->cmdFILE = NULL; - } - - /* - * Now the job is actually running, add it to the table. - */ - if (DEBUG(JOB)) { - fprintf(debug_file, "JobExec(%s): pid %d added to jobs table\n", - job->node->name, job->pid); - job_table_dump("job started"); - } - JobSigUnlock(&mask); -} - -/*- - *----------------------------------------------------------------------- - * JobMakeArgv -- - * Create the argv needed to execute the shell for a given job. - * - * - * Results: - * - * Side Effects: - * - *----------------------------------------------------------------------- - */ -static void -JobMakeArgv(Job *job, char **argv) -{ - int argc; - static char args[10]; /* For merged arguments */ - - argv[0] = UNCONST(shellName); - argc = 1; - - if ((commandShell->exit && (*commandShell->exit != '-')) || - (commandShell->echo && (*commandShell->echo != '-'))) - { - /* - * At least one of the flags doesn't have a minus before it, so - * merge them together. Have to do this because the *(&(@*#*&#$# - * Bourne shell thinks its second argument is a file to source. - * Grrrr. Note the ten-character limitation on the combined arguments. - */ - (void)snprintf(args, sizeof(args), "-%s%s", - ((job->flags & JOB_IGNERR) ? "" : - (commandShell->exit ? commandShell->exit : "")), - ((job->flags & JOB_SILENT) ? "" : - (commandShell->echo ? commandShell->echo : ""))); - - if (args[1]) { - argv[argc] = args; - argc++; - } - } else { - if (!(job->flags & JOB_IGNERR) && commandShell->exit) { - argv[argc] = UNCONST(commandShell->exit); - argc++; - } - if (!(job->flags & JOB_SILENT) && commandShell->echo) { - argv[argc] = UNCONST(commandShell->echo); - argc++; - } - } - argv[argc] = NULL; -} - -/*- - *----------------------------------------------------------------------- - * JobStart -- - * Start a target-creation process going for the target described - * by the graph node gn. - * - * Input: - * gn target to create - * flags flags for the job to override normal ones. - * e.g. JOB_SPECIAL or JOB_IGNDOTS - * previous The previous Job structure for this node, if any. - * - * Results: - * JOB_ERROR if there was an error in the commands, JOB_FINISHED - * if there isn't actually anything left to do for the job and - * JOB_RUNNING if the job has been started. - * - * Side Effects: - * A new Job node is created and added to the list of running - * jobs. PMake is forked and a child shell created. - * - * NB: I'm fairly sure that this code is never called with JOB_SPECIAL set - * JOB_IGNDOTS is never set (dsl) - * Also the return value is ignored by everyone. - *----------------------------------------------------------------------- - */ -static int -JobStart(GNode *gn, int flags) -{ - Job *job; /* new job descriptor */ - char *argv[10]; /* Argument vector to shell */ - Boolean cmdsOK; /* true if the nodes commands were all right */ - Boolean noExec; /* Set true if we decide not to run the job */ - int tfd; /* File descriptor to the temp file */ - - for (job = job_table; job < job_table_end; job++) { - if (job->job_state == JOB_ST_FREE) - break; - } - if (job >= job_table_end) - Punt("JobStart no job slots vacant"); - - memset(job, 0, sizeof *job); - job->job_state = JOB_ST_SETUP; - if (gn->type & OP_SPECIAL) - flags |= JOB_SPECIAL; - - job->node = gn; - job->tailCmds = NULL; - - /* - * Set the initial value of the flags for this job based on the global - * ones and the node's attributes... Any flags supplied by the caller - * are also added to the field. - */ - job->flags = 0; - if (Targ_Ignore(gn)) { - job->flags |= JOB_IGNERR; - } - if (Targ_Silent(gn)) { - job->flags |= JOB_SILENT; - } - job->flags |= flags; - - /* - * Check the commands now so any attributes from .DEFAULT have a chance - * to migrate to the node - */ - cmdsOK = Job_CheckCommands(gn, Error); - - job->inPollfd = NULL; - /* - * If the -n flag wasn't given, we open up OUR (not the child's) - * temporary file to stuff commands in it. The thing is rd/wr so we don't - * need to reopen it to feed it to the shell. If the -n flag *was* given, - * we just set the file to be stdout. Cute, huh? - */ - if (((gn->type & OP_MAKE) && !(noRecursiveExecute)) || - (!noExecute && !touchFlag)) { - /* - * tfile is the name of a file into which all shell commands are - * put. It is removed before the child shell is executed, unless - * DEBUG(SCRIPT) is set. - */ - char *tfile; - sigset_t mask; - /* - * We're serious here, but if the commands were bogus, we're - * also dead... - */ - if (!cmdsOK) { - PrintOnError(gn, NULL); /* provide some clue */ - DieHorribly(); - } - - JobSigLock(&mask); - tfd = mkTempFile(TMPPAT, &tfile); - if (!DEBUG(SCRIPT)) - (void)eunlink(tfile); - JobSigUnlock(&mask); - - job->cmdFILE = fdopen(tfd, "w+"); - if (job->cmdFILE == NULL) { - Punt("Could not fdopen %s", tfile); - } - (void)fcntl(FILENO(job->cmdFILE), F_SETFD, 1); - /* - * Send the commands to the command file, flush all its buffers then - * rewind and remove the thing. - */ - noExec = FALSE; - -#ifdef USE_META - if (useMeta) { - meta_job_start(job, gn); - if (Targ_Silent(gn)) { /* might have changed */ - job->flags |= JOB_SILENT; - } - } -#endif - /* - * We can do all the commands at once. hooray for sanity - */ - numCommands = 0; - Lst_ForEach(gn->commands, JobPrintCommand, job); - - /* - * If we didn't print out any commands to the shell script, - * there's not much point in executing the shell, is there? - */ - if (numCommands == 0) { - noExec = TRUE; - } - - free(tfile); - } else if (NoExecute(gn)) { - /* - * Not executing anything -- just print all the commands to stdout - * in one fell swoop. This will still set up job->tailCmds correctly. - */ - if (lastNode != gn) { - MESSAGE(stdout, gn); - lastNode = gn; - } - job->cmdFILE = stdout; - /* - * Only print the commands if they're ok, but don't die if they're - * not -- just let the user know they're bad and keep going. It - * doesn't do any harm in this case and may do some good. - */ - if (cmdsOK) { - Lst_ForEach(gn->commands, JobPrintCommand, job); - } - /* - * Don't execute the shell, thank you. - */ - noExec = TRUE; - } else { - /* - * Just touch the target and note that no shell should be executed. - * Set cmdFILE to stdout to make life easier. Check the commands, too, - * but don't die if they're no good -- it does no harm to keep working - * up the graph. - */ - job->cmdFILE = stdout; - Job_Touch(gn, job->flags&JOB_SILENT); - noExec = TRUE; - } - /* Just in case it isn't already... */ - (void)fflush(job->cmdFILE); - - /* - * If we're not supposed to execute a shell, don't. - */ - if (noExec) { - if (!(job->flags & JOB_SPECIAL)) - Job_TokenReturn(); - /* - * Unlink and close the command file if we opened one - */ - if (job->cmdFILE != stdout) { - if (job->cmdFILE != NULL) { - (void)fclose(job->cmdFILE); - job->cmdFILE = NULL; - } - } - - /* - * We only want to work our way up the graph if we aren't here because - * the commands for the job were no good. - */ - if (cmdsOK && aborting == 0) { - if (job->tailCmds != NULL) { - Lst_ForEachFrom(job->node->commands, job->tailCmds, - JobSaveCommand, - job->node); - } - job->node->made = MADE; - Make_Update(job->node); - } - job->job_state = JOB_ST_FREE; - return cmdsOK ? JOB_FINISHED : JOB_ERROR; - } - - /* - * Set up the control arguments to the shell. This is based on the flags - * set earlier for this job. - */ - JobMakeArgv(job, argv); - - /* Create the pipe by which we'll get the shell's output. */ - JobCreatePipe(job, 3); - - JobExec(job, argv); - return(JOB_RUNNING); -} - -static char * -JobOutput(Job *job, char *cp, char *endp, int msg) -{ - char *ecp; - - if (commandShell->noPrint) { - ecp = Str_FindSubstring(cp, commandShell->noPrint); - while (ecp != NULL) { - if (cp != ecp) { - *ecp = '\0'; - if (!beSilent && msg && job->node != lastNode) { - MESSAGE(stdout, job->node); - lastNode = job->node; - } - /* - * The only way there wouldn't be a newline after - * this line is if it were the last in the buffer. - * however, since the non-printable comes after it, - * there must be a newline, so we don't print one. - */ - (void)fprintf(stdout, "%s", cp); - (void)fflush(stdout); - } - cp = ecp + commandShell->noPLen; - if (cp != endp) { - /* - * Still more to print, look again after skipping - * the whitespace following the non-printable - * command.... - */ - cp++; - while (*cp == ' ' || *cp == '\t' || *cp == '\n') { - cp++; - } - ecp = Str_FindSubstring(cp, commandShell->noPrint); - } else { - return cp; - } - } - } - return cp; -} - -/*- - *----------------------------------------------------------------------- - * JobDoOutput -- - * This function is called at different times depending on - * whether the user has specified that output is to be collected - * via pipes or temporary files. In the former case, we are called - * whenever there is something to read on the pipe. We collect more - * output from the given job and store it in the job's outBuf. If - * this makes up a line, we print it tagged by the job's identifier, - * as necessary. - * If output has been collected in a temporary file, we open the - * file and read it line by line, transfering it to our own - * output channel until the file is empty. At which point we - * remove the temporary file. - * In both cases, however, we keep our figurative eye out for the - * 'noPrint' line for the shell from which the output came. If - * we recognize a line, we don't print it. If the command is not - * alone on the line (the character after it is not \0 or \n), we - * do print whatever follows it. - * - * Input: - * job the job whose output needs printing - * finish TRUE if this is the last time we'll be called - * for this job - * - * Results: - * None - * - * Side Effects: - * curPos may be shifted as may the contents of outBuf. - *----------------------------------------------------------------------- - */ -STATIC void -JobDoOutput(Job *job, Boolean finish) -{ - Boolean gotNL = FALSE; /* true if got a newline */ - Boolean fbuf; /* true if our buffer filled up */ - int nr; /* number of bytes read */ - int i; /* auxiliary index into outBuf */ - int max; /* limit for i (end of current data) */ - int nRead; /* (Temporary) number of bytes read */ - - /* - * Read as many bytes as will fit in the buffer. - */ -end_loop: - gotNL = FALSE; - fbuf = FALSE; - - nRead = read(job->inPipe, &job->outBuf[job->curPos], - JOB_BUFSIZE - job->curPos); - if (nRead < 0) { - if (errno == EAGAIN) - return; - if (DEBUG(JOB)) { - perror("JobDoOutput(piperead)"); - } - nr = 0; - } else { - nr = nRead; - } - - /* - * If we hit the end-of-file (the job is dead), we must flush its - * remaining output, so pretend we read a newline if there's any - * output remaining in the buffer. - * Also clear the 'finish' flag so we stop looping. - */ - if ((nr == 0) && (job->curPos != 0)) { - job->outBuf[job->curPos] = '\n'; - nr = 1; - finish = FALSE; - } else if (nr == 0) { - finish = FALSE; - } - - /* - * Look for the last newline in the bytes we just got. If there is - * one, break out of the loop with 'i' as its index and gotNL set - * TRUE. - */ - max = job->curPos + nr; - for (i = job->curPos + nr - 1; i >= job->curPos; i--) { - if (job->outBuf[i] == '\n') { - gotNL = TRUE; - break; - } else if (job->outBuf[i] == '\0') { - /* - * Why? - */ - job->outBuf[i] = ' '; - } - } - - if (!gotNL) { - job->curPos += nr; - if (job->curPos == JOB_BUFSIZE) { - /* - * If we've run out of buffer space, we have no choice - * but to print the stuff. sigh. - */ - fbuf = TRUE; - i = job->curPos; - } - } - if (gotNL || fbuf) { - /* - * Need to send the output to the screen. Null terminate it - * first, overwriting the newline character if there was one. - * So long as the line isn't one we should filter (according - * to the shell description), we print the line, preceded - * by a target banner if this target isn't the same as the - * one for which we last printed something. - * The rest of the data in the buffer are then shifted down - * to the start of the buffer and curPos is set accordingly. - */ - job->outBuf[i] = '\0'; - if (i >= job->curPos) { - char *cp; - - cp = JobOutput(job, job->outBuf, &job->outBuf[i], FALSE); - - /* - * There's still more in that thar buffer. This time, though, - * we know there's no newline at the end, so we add one of - * our own free will. - */ - if (*cp != '\0') { - if (!beSilent && job->node != lastNode) { - MESSAGE(stdout, job->node); - lastNode = job->node; - } -#ifdef USE_META - if (useMeta) { - meta_job_output(job, cp, gotNL ? "\n" : ""); - } -#endif - (void)fprintf(stdout, "%s%s", cp, gotNL ? "\n" : ""); - (void)fflush(stdout); - } - } - if (i < max - 1) { - /* shift the remaining characters down */ - (void)memcpy(job->outBuf, &job->outBuf[i + 1], max - (i + 1)); - job->curPos = max - (i + 1); - - } else { - /* - * We have written everything out, so we just start over - * from the start of the buffer. No copying. No nothing. - */ - job->curPos = 0; - } - } - if (finish) { - /* - * If the finish flag is true, we must loop until we hit - * end-of-file on the pipe. This is guaranteed to happen - * eventually since the other end of the pipe is now closed - * (we closed it explicitly and the child has exited). When - * we do get an EOF, finish will be set FALSE and we'll fall - * through and out. - */ - goto end_loop; - } -} - -static void -JobRun(GNode *targ) -{ -#ifdef notyet - /* - * Unfortunately it is too complicated to run .BEGIN, .END, - * and .INTERRUPT job in the parallel job module. This has - * the nice side effect that it avoids a lot of other problems. - */ - Lst lst = Lst_Init(FALSE); - Lst_AtEnd(lst, targ); - (void)Make_Run(lst); - Lst_Destroy(lst, NULL); - JobStart(targ, JOB_SPECIAL); - while (jobTokensRunning) { - Job_CatchOutput(); - } -#else - Compat_Make(targ, targ); - if (targ->made == ERROR) { - PrintOnError(targ, "\n\nStop."); - exit(1); - } -#endif -} - -/*- - *----------------------------------------------------------------------- - * Job_CatchChildren -- - * Handle the exit of a child. Called from Make_Make. - * - * Input: - * block TRUE if should block on the wait - * - * Results: - * none. - * - * Side Effects: - * The job descriptor is removed from the list of children. - * - * Notes: - * We do waits, blocking or not, according to the wisdom of our - * caller, until there are no more children to report. For each - * job, call JobFinish to finish things off. - * - *----------------------------------------------------------------------- - */ - -void -Job_CatchChildren(void) -{ - int pid; /* pid of dead child */ - WAIT_T status; /* Exit/termination status */ - - /* - * Don't even bother if we know there's no one around. - */ - if (jobTokensRunning == 0) - return; - - while ((pid = waitpid((pid_t) -1, &status, WNOHANG | WUNTRACED)) > 0) { - if (DEBUG(JOB)) { - (void)fprintf(debug_file, "Process %d exited/stopped status %x.\n", pid, - WAIT_STATUS(status)); - } - JobReapChild(pid, status, TRUE); - } -} - -/* - * It is possible that wait[pid]() was called from elsewhere, - * this lets us reap jobs regardless. - */ -void -JobReapChild(pid_t pid, WAIT_T status, Boolean isJobs) -{ - Job *job; /* job descriptor for dead child */ - - /* - * Don't even bother if we know there's no one around. - */ - if (jobTokensRunning == 0) - return; - - job = JobFindPid(pid, JOB_ST_RUNNING, isJobs); - if (job == NULL) { - if (isJobs) { - if (!lurking_children) - Error("Child (%d) status %x not in table?", pid, status); - } - return; /* not ours */ - } - if (WIFSTOPPED(status)) { - if (DEBUG(JOB)) { - (void)fprintf(debug_file, "Process %d (%s) stopped.\n", - job->pid, job->node->name); - } - if (!make_suspended) { - switch (WSTOPSIG(status)) { - case SIGTSTP: - (void)printf("*** [%s] Suspended\n", job->node->name); - break; - case SIGSTOP: - (void)printf("*** [%s] Stopped\n", job->node->name); - break; - default: - (void)printf("*** [%s] Stopped -- signal %d\n", - job->node->name, WSTOPSIG(status)); - } - job->job_suspended = 1; - } - (void)fflush(stdout); - return; - } - - job->job_state = JOB_ST_FINISHED; - job->exit_status = WAIT_STATUS(status); - - JobFinish(job, status); -} - -/*- - *----------------------------------------------------------------------- - * Job_CatchOutput -- - * Catch the output from our children, if we're using - * pipes do so. Otherwise just block time until we get a - * signal(most likely a SIGCHLD) since there's no point in - * just spinning when there's nothing to do and the reaping - * of a child can wait for a while. - * - * Results: - * None - * - * Side Effects: - * Output is read from pipes if we're piping. - * ----------------------------------------------------------------------- - */ -void -Job_CatchOutput(void) -{ - int nready; - Job *job; - int i; - - (void)fflush(stdout); - - /* The first fd in the list is the job token pipe */ - nready = poll(fds + 1 - wantToken, nfds - 1 + wantToken, POLL_MSEC); - - if (nready < 0 || readyfd(&childExitJob)) { - char token = 0; - nready -= 1; - (void)read(childExitJob.inPipe, &token, 1); - if (token == DO_JOB_RESUME[0]) - /* Complete relay requested from our SIGCONT handler */ - JobRestartJobs(); - Job_CatchChildren(); - } - - if (nready <= 0) - return; - - if (wantToken && readyfd(&tokenWaitJob)) - nready--; - - for (i = 2; i < nfds; i++) { - if (!fds[i].revents) - continue; - job = jobfds[i]; - if (job->job_state != JOB_ST_RUNNING) - continue; - JobDoOutput(job, FALSE); - } -} - -/*- - *----------------------------------------------------------------------- - * Job_Make -- - * Start the creation of a target. Basically a front-end for - * JobStart used by the Make module. - * - * Results: - * None. - * - * Side Effects: - * Another job is started. - * - *----------------------------------------------------------------------- - */ -void -Job_Make(GNode *gn) -{ - (void)JobStart(gn, 0); -} - -void -Shell_Init(void) -{ - if (shellPath == NULL) { - /* - * We are using the default shell, which may be an absolute - * path if DEFSHELL_CUSTOM is defined. - */ - shellName = commandShell->name; -#ifdef DEFSHELL_CUSTOM - if (*shellName == '/') { - shellPath = shellName; - shellName = strrchr(shellPath, '/'); - shellName++; - } else -#endif - shellPath = str_concat(_PATH_DEFSHELLDIR, shellName, STR_ADDSLASH); - } - if (commandShell->exit == NULL) { - commandShell->exit = ""; - } - if (commandShell->echo == NULL) { - commandShell->echo = ""; - } -} - -/*- - * Returns the string literal that is used in the current command shell - * to produce a newline character. - */ -const char * -Shell_GetNewline(void) -{ - - return commandShell->newline; -} - -void -Job_SetPrefix(void) -{ - - if (targPrefix) { - free(targPrefix); - } else if (!Var_Exists(MAKE_JOB_PREFIX, VAR_GLOBAL)) { - Var_Set(MAKE_JOB_PREFIX, "---", VAR_GLOBAL, 0); - } - - targPrefix = Var_Subst(NULL, "${" MAKE_JOB_PREFIX "}", VAR_GLOBAL, 0); -} - -/*- - *----------------------------------------------------------------------- - * Job_Init -- - * Initialize the process module - * - * Input: - * - * Results: - * none - * - * Side Effects: - * lists and counters are initialized - *----------------------------------------------------------------------- - */ -void -Job_Init(void) -{ - GNode *begin; /* node for commands to do at the very start */ - - /* Allocate space for all the job info */ - job_table = bmake_malloc(maxJobs * sizeof *job_table); - memset(job_table, 0, maxJobs * sizeof *job_table); - job_table_end = job_table + maxJobs; - wantToken = 0; - - aborting = 0; - errors = 0; - - lastNode = NULL; - - /* - * There is a non-zero chance that we already have children. - * eg after 'make -f- < 0) - continue; - if (rval == 0) - lurking_children = 1; - break; - } - - Shell_Init(); - - JobCreatePipe(&childExitJob, 3); - - /* We can only need to wait for tokens, children and output from each job */ - fds = bmake_malloc(sizeof (*fds) * (2 + maxJobs)); - jobfds = bmake_malloc(sizeof (*jobfds) * (2 + maxJobs)); - - /* These are permanent entries and take slots 0 and 1 */ - watchfd(&tokenWaitJob); - watchfd(&childExitJob); - - sigemptyset(&caught_signals); - /* - * Install a SIGCHLD handler. - */ - (void)bmake_signal(SIGCHLD, JobChildSig); - sigaddset(&caught_signals, SIGCHLD); - -#define ADDSIG(s,h) \ - if (bmake_signal(s, SIG_IGN) != SIG_IGN) { \ - sigaddset(&caught_signals, s); \ - (void)bmake_signal(s, h); \ - } - - /* - * Catch the four signals that POSIX specifies if they aren't ignored. - * JobPassSig will take care of calling JobInterrupt if appropriate. - */ - ADDSIG(SIGINT, JobPassSig_int) - ADDSIG(SIGHUP, JobPassSig_term) - ADDSIG(SIGTERM, JobPassSig_term) - ADDSIG(SIGQUIT, JobPassSig_term) - - /* - * There are additional signals that need to be caught and passed if - * either the export system wants to be told directly of signals or if - * we're giving each job its own process group (since then it won't get - * signals from the terminal driver as we own the terminal) - */ - ADDSIG(SIGTSTP, JobPassSig_suspend) - ADDSIG(SIGTTOU, JobPassSig_suspend) - ADDSIG(SIGTTIN, JobPassSig_suspend) - ADDSIG(SIGWINCH, JobCondPassSig) - ADDSIG(SIGCONT, JobContinueSig) -#undef ADDSIG - - begin = Targ_FindNode(".BEGIN", TARG_NOCREATE); - - if (begin != NULL) { - JobRun(begin); - if (begin->made == ERROR) { - PrintOnError(begin, "\n\nStop."); - exit(1); - } - } - postCommands = Targ_FindNode(".END", TARG_CREATE); -} - -static void JobSigReset(void) -{ -#define DELSIG(s) \ - if (sigismember(&caught_signals, s)) { \ - (void)bmake_signal(s, SIG_DFL); \ - } - - DELSIG(SIGINT) - DELSIG(SIGHUP) - DELSIG(SIGQUIT) - DELSIG(SIGTERM) - DELSIG(SIGTSTP) - DELSIG(SIGTTOU) - DELSIG(SIGTTIN) - DELSIG(SIGWINCH) - DELSIG(SIGCONT) -#undef DELSIG - (void)bmake_signal(SIGCHLD, SIG_DFL); -} - -/*- - *----------------------------------------------------------------------- - * JobMatchShell -- - * Find a shell in 'shells' given its name. - * - * Results: - * A pointer to the Shell structure. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static Shell * -JobMatchShell(const char *name) -{ - Shell *sh; - - for (sh = shells; sh->name != NULL; sh++) { - if (strcmp(name, sh->name) == 0) - return (sh); - } - return NULL; -} - -/*- - *----------------------------------------------------------------------- - * Job_ParseShell -- - * Parse a shell specification and set up commandShell, shellPath - * and shellName appropriately. - * - * Input: - * line The shell spec - * - * Results: - * FAILURE if the specification was incorrect. - * - * Side Effects: - * commandShell points to a Shell structure (either predefined or - * created from the shell spec), shellPath is the full path of the - * shell described by commandShell, while shellName is just the - * final component of shellPath. - * - * Notes: - * A shell specification consists of a .SHELL target, with dependency - * operator, followed by a series of blank-separated words. Double - * quotes can be used to use blanks in words. A backslash escapes - * anything (most notably a double-quote and a space) and - * provides the functionality it does in C. Each word consists of - * keyword and value separated by an equal sign. There should be no - * unnecessary spaces in the word. The keywords are as follows: - * name Name of shell. - * path Location of shell. - * quiet Command to turn off echoing. - * echo Command to turn echoing on - * filter Result of turning off echoing that shouldn't be - * printed. - * echoFlag Flag to turn echoing on at the start - * errFlag Flag to turn error checking on at the start - * hasErrCtl True if shell has error checking control - * newline String literal to represent a newline char - * check Command to turn on error checking if hasErrCtl - * is TRUE or template of command to echo a command - * for which error checking is off if hasErrCtl is - * FALSE. - * ignore Command to turn off error checking if hasErrCtl - * is TRUE or template of command to execute a - * command so as to ignore any errors it returns if - * hasErrCtl is FALSE. - * - *----------------------------------------------------------------------- - */ -ReturnStatus -Job_ParseShell(char *line) -{ - char **words; - char **argv; - int argc; - char *path; - Shell newShell; - Boolean fullSpec = FALSE; - Shell *sh; - - while (isspace((unsigned char)*line)) { - line++; - } - - if (shellArgv) - free(UNCONST(shellArgv)); - - memset(&newShell, 0, sizeof(newShell)); - - /* - * Parse the specification by keyword - */ - words = brk_string(line, &argc, TRUE, &path); - if (words == NULL) { - Error("Unterminated quoted string [%s]", line); - return FAILURE; - } - shellArgv = path; - - for (path = NULL, argv = words; argc != 0; argc--, argv++) { - if (strncmp(*argv, "path=", 5) == 0) { - path = &argv[0][5]; - } else if (strncmp(*argv, "name=", 5) == 0) { - newShell.name = &argv[0][5]; - } else { - if (strncmp(*argv, "quiet=", 6) == 0) { - newShell.echoOff = &argv[0][6]; - } else if (strncmp(*argv, "echo=", 5) == 0) { - newShell.echoOn = &argv[0][5]; - } else if (strncmp(*argv, "filter=", 7) == 0) { - newShell.noPrint = &argv[0][7]; - newShell.noPLen = strlen(newShell.noPrint); - } else if (strncmp(*argv, "echoFlag=", 9) == 0) { - newShell.echo = &argv[0][9]; - } else if (strncmp(*argv, "errFlag=", 8) == 0) { - newShell.exit = &argv[0][8]; - } else if (strncmp(*argv, "hasErrCtl=", 10) == 0) { - char c = argv[0][10]; - newShell.hasErrCtl = !((c != 'Y') && (c != 'y') && - (c != 'T') && (c != 't')); - } else if (strncmp(*argv, "newline=", 8) == 0) { - newShell.newline = &argv[0][8]; - } else if (strncmp(*argv, "check=", 6) == 0) { - newShell.errCheck = &argv[0][6]; - } else if (strncmp(*argv, "ignore=", 7) == 0) { - newShell.ignErr = &argv[0][7]; - } else if (strncmp(*argv, "errout=", 7) == 0) { - newShell.errOut = &argv[0][7]; - } else if (strncmp(*argv, "comment=", 8) == 0) { - newShell.commentChar = argv[0][8]; - } else { - Parse_Error(PARSE_FATAL, "Unknown keyword \"%s\"", - *argv); - free(words); - return(FAILURE); - } - fullSpec = TRUE; - } - } - - if (path == NULL) { - /* - * If no path was given, the user wants one of the pre-defined shells, - * yes? So we find the one s/he wants with the help of JobMatchShell - * and set things up the right way. shellPath will be set up by - * Shell_Init. - */ - if (newShell.name == NULL) { - Parse_Error(PARSE_FATAL, "Neither path nor name specified"); - free(words); - return(FAILURE); - } else { - if ((sh = JobMatchShell(newShell.name)) == NULL) { - Parse_Error(PARSE_WARNING, "%s: No matching shell", - newShell.name); - free(words); - return(FAILURE); - } - commandShell = sh; - shellName = newShell.name; - if (shellPath) { - /* Shell_Init has already been called! Do it again. */ - free(UNCONST(shellPath)); - shellPath = NULL; - Shell_Init(); - } - } - } else { - /* - * The user provided a path. If s/he gave nothing else (fullSpec is - * FALSE), try and find a matching shell in the ones we know of. - * Else we just take the specification at its word and copy it - * to a new location. In either case, we need to record the - * path the user gave for the shell. - */ - shellPath = path; - path = strrchr(path, '/'); - if (path == NULL) { - path = UNCONST(shellPath); - } else { - path += 1; - } - if (newShell.name != NULL) { - shellName = newShell.name; - } else { - shellName = path; - } - if (!fullSpec) { - if ((sh = JobMatchShell(shellName)) == NULL) { - Parse_Error(PARSE_WARNING, "%s: No matching shell", - shellName); - free(words); - return(FAILURE); - } - commandShell = sh; - } else { - commandShell = bmake_malloc(sizeof(Shell)); - *commandShell = newShell; - } - } - - if (commandShell->echoOn && commandShell->echoOff) { - commandShell->hasEchoCtl = TRUE; - } - - if (!commandShell->hasErrCtl) { - if (commandShell->errCheck == NULL) { - commandShell->errCheck = ""; - } - if (commandShell->ignErr == NULL) { - commandShell->ignErr = "%s\n"; - } - } - - /* - * Do not free up the words themselves, since they might be in use by the - * shell specification. - */ - free(words); - return SUCCESS; -} - -/*- - *----------------------------------------------------------------------- - * JobInterrupt -- - * Handle the receipt of an interrupt. - * - * Input: - * runINTERRUPT Non-zero if commands for the .INTERRUPT target - * should be executed - * signo signal received - * - * Results: - * None - * - * Side Effects: - * All children are killed. Another job will be started if the - * .INTERRUPT target was given. - *----------------------------------------------------------------------- - */ -static void -JobInterrupt(int runINTERRUPT, int signo) -{ - Job *job; /* job descriptor in that element */ - GNode *interrupt; /* the node describing the .INTERRUPT target */ - sigset_t mask; - GNode *gn; - - aborting = ABORT_INTERRUPT; - - JobSigLock(&mask); - - for (job = job_table; job < job_table_end; job++) { - if (job->job_state != JOB_ST_RUNNING) - continue; - - gn = job->node; - - if ((gn->type & (OP_JOIN|OP_PHONY)) == 0 && !Targ_Precious(gn)) { - char *file = (gn->path == NULL ? gn->name : gn->path); - if (!noExecute && eunlink(file) != -1) { - Error("*** %s removed", file); - } - } - if (job->pid) { - if (DEBUG(JOB)) { - (void)fprintf(debug_file, - "JobInterrupt passing signal %d to child %d.\n", - signo, job->pid); - } - KILLPG(job->pid, signo); - } - } - - JobSigUnlock(&mask); - - if (runINTERRUPT && !touchFlag) { - interrupt = Targ_FindNode(".INTERRUPT", TARG_NOCREATE); - if (interrupt != NULL) { - ignoreErrors = FALSE; - JobRun(interrupt); - } - } - Trace_Log(MAKEINTR, 0); - exit(signo); -} - -/* - *----------------------------------------------------------------------- - * Job_Finish -- - * Do final processing such as the running of the commands - * attached to the .END target. - * - * Results: - * Number of errors reported. - * - * Side Effects: - * None. - *----------------------------------------------------------------------- - */ -int -Job_Finish(void) -{ - if (postCommands != NULL && - (!Lst_IsEmpty(postCommands->commands) || - !Lst_IsEmpty(postCommands->children))) { - if (errors) { - Error("Errors reported so .END ignored"); - } else { - JobRun(postCommands); - } - } - return(errors); -} - -/*- - *----------------------------------------------------------------------- - * Job_End -- - * Cleanup any memory used by the jobs module - * - * Results: - * None. - * - * Side Effects: - * Memory is freed - *----------------------------------------------------------------------- - */ -void -Job_End(void) -{ -#ifdef CLEANUP - if (shellArgv) - free(shellArgv); -#endif -} - -/*- - *----------------------------------------------------------------------- - * Job_Wait -- - * Waits for all running jobs to finish and returns. Sets 'aborting' - * to ABORT_WAIT to prevent other jobs from starting. - * - * Results: - * None. - * - * Side Effects: - * Currently running jobs finish. - * - *----------------------------------------------------------------------- - */ -void -Job_Wait(void) -{ - aborting = ABORT_WAIT; - while (jobTokensRunning != 0) { - Job_CatchOutput(); - } - aborting = 0; -} - -/*- - *----------------------------------------------------------------------- - * Job_AbortAll -- - * Abort all currently running jobs without handling output or anything. - * This function is to be called only in the event of a major - * error. Most definitely NOT to be called from JobInterrupt. - * - * Results: - * None - * - * Side Effects: - * All children are killed, not just the firstborn - *----------------------------------------------------------------------- - */ -void -Job_AbortAll(void) -{ - Job *job; /* the job descriptor in that element */ - WAIT_T foo; - - aborting = ABORT_ERROR; - - if (jobTokensRunning) { - for (job = job_table; job < job_table_end; job++) { - if (job->job_state != JOB_ST_RUNNING) - continue; - /* - * kill the child process with increasingly drastic signals to make - * darn sure it's dead. - */ - KILLPG(job->pid, SIGINT); - KILLPG(job->pid, SIGKILL); - } - } - - /* - * Catch as many children as want to report in at first, then give up - */ - while (waitpid((pid_t) -1, &foo, WNOHANG) > 0) - continue; -} - - -/*- - *----------------------------------------------------------------------- - * JobRestartJobs -- - * Tries to restart stopped jobs if there are slots available. - * Called in process context in response to a SIGCONT. - * - * Results: - * None. - * - * Side Effects: - * Resumes jobs. - * - *----------------------------------------------------------------------- - */ -static void -JobRestartJobs(void) -{ - Job *job; - - for (job = job_table; job < job_table_end; job++) { - if (job->job_state == JOB_ST_RUNNING && - (make_suspended || job->job_suspended)) { - if (DEBUG(JOB)) { - (void)fprintf(debug_file, "Restarting stopped job pid %d.\n", - job->pid); - } - if (job->job_suspended) { - (void)printf("*** [%s] Continued\n", job->node->name); - (void)fflush(stdout); - } - job->job_suspended = 0; - if (KILLPG(job->pid, SIGCONT) != 0 && DEBUG(JOB)) { - fprintf(debug_file, "Failed to send SIGCONT to %d\n", job->pid); - } - } - if (job->job_state == JOB_ST_FINISHED) - /* Job exit deferred after calling waitpid() in a signal handler */ - JobFinish(job, job->exit_status); - } - make_suspended = 0; -} - -static void -watchfd(Job *job) -{ - if (job->inPollfd != NULL) - Punt("Watching watched job"); - - fds[nfds].fd = job->inPipe; - fds[nfds].events = POLLIN; - jobfds[nfds] = job; - job->inPollfd = &fds[nfds]; - nfds++; -} - -static void -clearfd(Job *job) -{ - int i; - if (job->inPollfd == NULL) - Punt("Unwatching unwatched job"); - i = job->inPollfd - fds; - nfds--; - /* - * Move last job in table into hole made by dead job. - */ - if (nfds != i) { - fds[i] = fds[nfds]; - jobfds[i] = jobfds[nfds]; - jobfds[i]->inPollfd = &fds[i]; - } - job->inPollfd = NULL; -} - -static int -readyfd(Job *job) -{ - if (job->inPollfd == NULL) - Punt("Polling unwatched job"); - return (job->inPollfd->revents & POLLIN) != 0; -} - -/*- - *----------------------------------------------------------------------- - * JobTokenAdd -- - * Put a token into the job pipe so that some make process can start - * another job. - * - * Side Effects: - * Allows more build jobs to be spawned somewhere. - * - *----------------------------------------------------------------------- - */ - -static void -JobTokenAdd(void) -{ - char tok = JOB_TOKENS[aborting], tok1; - - /* If we are depositing an error token flush everything else */ - while (tok != '+' && read(tokenWaitJob.inPipe, &tok1, 1) == 1) - continue; - - if (DEBUG(JOB)) - fprintf(debug_file, "(%d) aborting %d, deposit token %c\n", - getpid(), aborting, JOB_TOKENS[aborting]); - write(tokenWaitJob.outPipe, &tok, 1); -} - -/*- - *----------------------------------------------------------------------- - * Job_ServerStartTokenAdd -- - * Prep the job token pipe in the root make process. - * - *----------------------------------------------------------------------- - */ - -void -Job_ServerStart(int max_tokens, int jp_0, int jp_1) -{ - int i; - char jobarg[64]; - - if (jp_0 >= 0 && jp_1 >= 0) { - /* Pipe passed in from parent */ - tokenWaitJob.inPipe = jp_0; - tokenWaitJob.outPipe = jp_1; - return; - } - - JobCreatePipe(&tokenWaitJob, 15); - - snprintf(jobarg, sizeof(jobarg), "%d,%d", - tokenWaitJob.inPipe, tokenWaitJob.outPipe); - - Var_Append(MAKEFLAGS, "-J", VAR_GLOBAL); - Var_Append(MAKEFLAGS, jobarg, VAR_GLOBAL); - - /* - * Preload the job pipe with one token per job, save the one - * "extra" token for the primary job. - * - * XXX should clip maxJobs against PIPE_BUF -- if max_tokens is - * larger than the write buffer size of the pipe, we will - * deadlock here. - */ - for (i = 1; i < max_tokens; i++) - JobTokenAdd(); -} - -/*- - *----------------------------------------------------------------------- - * Job_TokenReturn -- - * Return a withdrawn token to the pool. - * - *----------------------------------------------------------------------- - */ - -void -Job_TokenReturn(void) -{ - jobTokensRunning--; - if (jobTokensRunning < 0) - Punt("token botch"); - if (jobTokensRunning || JOB_TOKENS[aborting] != '+') - JobTokenAdd(); -} - -/*- - *----------------------------------------------------------------------- - * Job_TokenWithdraw -- - * Attempt to withdraw a token from the pool. - * - * Results: - * Returns TRUE if a token was withdrawn, and FALSE if the pool - * is currently empty. - * - * Side Effects: - * If pool is empty, set wantToken so that we wake up - * when a token is released. - * - *----------------------------------------------------------------------- - */ - - -Boolean -Job_TokenWithdraw(void) -{ - char tok, tok1; - int count; - - wantToken = 0; - if (DEBUG(JOB)) - fprintf(debug_file, "Job_TokenWithdraw(%d): aborting %d, running %d\n", - getpid(), aborting, jobTokensRunning); - - if (aborting || (jobTokensRunning >= maxJobs)) - return FALSE; - - count = read(tokenWaitJob.inPipe, &tok, 1); - if (count == 0) - Fatal("eof on job pipe!"); - if (count < 0 && jobTokensRunning != 0) { - if (errno != EAGAIN) { - Fatal("job pipe read: %s", strerror(errno)); - } - if (DEBUG(JOB)) - fprintf(debug_file, "(%d) blocked for token\n", getpid()); - wantToken = 1; - return FALSE; - } - - if (count == 1 && tok != '+') { - /* make being abvorted - remove any other job tokens */ - if (DEBUG(JOB)) - fprintf(debug_file, "(%d) aborted by token %c\n", getpid(), tok); - while (read(tokenWaitJob.inPipe, &tok1, 1) == 1) - continue; - /* And put the stopper back */ - write(tokenWaitJob.outPipe, &tok, 1); - Fatal("A failure has been detected in another branch of the parallel make"); - } - - if (count == 1 && jobTokensRunning == 0) - /* We didn't want the token really */ - write(tokenWaitJob.outPipe, &tok, 1); - - jobTokensRunning++; - if (DEBUG(JOB)) - fprintf(debug_file, "(%d) withdrew token\n", getpid()); - return TRUE; -} - -#ifdef USE_SELECT -int -emul_poll(struct pollfd *fd, int nfd, int timeout) -{ - fd_set rfds, wfds; - int i, maxfd, nselect, npoll; - struct timeval tv, *tvp; - long usecs; - - FD_ZERO(&rfds); - FD_ZERO(&wfds); - - maxfd = -1; - for (i = 0; i < nfd; i++) { - fd[i].revents = 0; - - if (fd[i].events & POLLIN) - FD_SET(fd[i].fd, &rfds); - - if (fd[i].events & POLLOUT) - FD_SET(fd[i].fd, &wfds); - - if (fd[i].fd > maxfd) - maxfd = fd[i].fd; - } - - if (maxfd >= FD_SETSIZE) { - Punt("Ran out of fd_set slots; " - "recompile with a larger FD_SETSIZE."); - } - - if (timeout < 0) { - tvp = NULL; - } else { - usecs = timeout * 1000; - tv.tv_sec = usecs / 1000000; - tv.tv_usec = usecs % 1000000; - tvp = &tv; - } - - nselect = select(maxfd + 1, &rfds, &wfds, 0, tvp); - - if (nselect <= 0) - return nselect; - - npoll = 0; - for (i = 0; i < nfd; i++) { - if (FD_ISSET(fd[i].fd, &rfds)) - fd[i].revents |= POLLIN; - - if (FD_ISSET(fd[i].fd, &wfds)) - fd[i].revents |= POLLOUT; - - if (fd[i].revents) - npoll++; - } - - return npoll; -} -#endif /* USE_SELECT */ diff --git a/external/bsd/bmake/dist/job.h b/external/bsd/bmake/dist/job.h deleted file mode 100644 index 560b70bf7326..000000000000 --- a/external/bsd/bmake/dist/job.h +++ /dev/null @@ -1,272 +0,0 @@ -/* $NetBSD: job.h,v 1.40 2010/09/13 15:36:57 sjg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)job.h 8.1 (Berkeley) 6/6/93 - */ - -/* - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)job.h 8.1 (Berkeley) 6/6/93 - */ - -/*- - * job.h -- - * Definitions pertaining to the running of jobs in parallel mode. - */ -#ifndef _JOB_H_ -#define _JOB_H_ - -#define TMPPAT "makeXXXXXX" /* relative to tmpdir */ - -#ifdef USE_SELECT -/* - * Emulate poll() in terms of select(). This is not a complete - * emulation but it is sufficient for make's purposes. - */ - -#define poll emul_poll -#define pollfd emul_pollfd - -struct emul_pollfd { - int fd; - short events; - short revents; -}; - -#define POLLIN 0x0001 -#define POLLOUT 0x0004 - -int -emul_poll(struct pollfd *fd, int nfd, int timeout); -#endif - -/* - * The POLL_MSEC constant determines the maximum number of milliseconds spent - * in poll before coming out to see if a child has finished. - */ -#define POLL_MSEC 5000 - - -/*- - * Job Table definitions. - * - * Each job has several things associated with it: - * 1) The process id of the child shell - * 2) The graph node describing the target being made by this job - * 3) A LstNode for the first command to be saved after the job - * completes. This is NULL if there was no "..." in the job's - * commands. - * 4) An FILE* for writing out the commands. This is only - * used before the job is actually started. - * 5) The output is being caught via a pipe and - * the descriptors of our pipe, an array in which output is line - * buffered and the current position in that buffer are all - * maintained for each job. - * 6) A word of flags which determine how the module handles errors, - * echoing, etc. for the job - * - * When a job is finished, the Make_Update function is called on each of the - * parents of the node which was just remade. This takes care of the upward - * traversal of the dependency graph. - */ -struct pollfd; - - -#ifdef USE_META -# include "meta.h" -#endif - -#define JOB_BUFSIZE 1024 -typedef struct Job { - int pid; /* The child's process ID */ - GNode *node; /* The target the child is making */ - LstNode tailCmds; /* The node of the first command to be - * saved when the job has been run */ - FILE *cmdFILE; /* When creating the shell script, this is - * where the commands go */ - int exit_status; /* from wait4() in signal handler */ - char job_state; /* status of the job entry */ -#define JOB_ST_FREE 0 /* Job is available */ -#define JOB_ST_SETUP 1 /* Job is allocated but otherwise invalid */ -#define JOB_ST_RUNNING 3 /* Job is running, pid valid */ -#define JOB_ST_FINISHED 4 /* Job is done (ie after SIGCHILD) */ - char job_suspended; - short flags; /* Flags to control treatment of job */ -#define JOB_IGNERR 0x001 /* Ignore non-zero exits */ -#define JOB_SILENT 0x002 /* no output */ -#define JOB_SPECIAL 0x004 /* Target is a special one. i.e. run it locally - * if we can't export it and maxLocal is 0 */ -#define JOB_IGNDOTS 0x008 /* Ignore "..." lines when processing - * commands */ -#define JOB_TRACED 0x400 /* we've sent 'set -x' */ - - int jobPipe[2]; /* Pipe for readind output from job */ - struct pollfd *inPollfd; /* pollfd associated with inPipe */ - char outBuf[JOB_BUFSIZE + 1]; - /* Buffer for storing the output of the - * job, line by line */ - int curPos; /* Current position in op_outBuf */ - -#ifdef USE_META - struct BuildMon bm; -#endif -} Job; - -#define inPipe jobPipe[0] -#define outPipe jobPipe[1] - - -/*- - * Shell Specifications: - * Each shell type has associated with it the following information: - * 1) The string which must match the last character of the shell name - * for the shell to be considered of this type. The longest match - * wins. - * 2) A command to issue to turn off echoing of command lines - * 3) A command to issue to turn echoing back on again - * 4) What the shell prints, and its length, when given the echo-off - * command. This line will not be printed when received from the shell - * 5) A boolean to tell if the shell has the ability to control - * error checking for individual commands. - * 6) The string to turn this checking on. - * 7) The string to turn it off. - * 8) The command-flag to give to cause the shell to start echoing - * commands right away. - * 9) The command-flag to cause the shell to Lib_Exit when an error is - * detected in one of the commands. - * - * Some special stuff goes on if a shell doesn't have error control. In such - * a case, errCheck becomes a printf template for echoing the command, - * should echoing be on and ignErr becomes another printf template for - * executing the command while ignoring the return status. Finally errOut - * is a printf template for running the command and causing the shell to - * exit on error. If any of these strings are empty when hasErrCtl is FALSE, - * the command will be executed anyway as is and if it causes an error, so be - * it. Any templates setup to echo the command will escape any '$ ` \ "'i - * characters in the command string to avoid common problems with - * echo "%s\n" as a template. - */ -typedef struct Shell { - const char *name; /* the name of the shell. For Bourne and C - * shells, this is used only to find the - * shell description when used as the single - * source of a .SHELL target. For user-defined - * shells, this is the full path of the shell. - */ - Boolean hasEchoCtl; /* True if both echoOff and echoOn defined */ - const char *echoOff; /* command to turn off echo */ - const char *echoOn; /* command to turn it back on again */ - const char *noPrint; /* command to skip when printing output from - * shell. This is usually the command which - * was executed to turn off echoing */ - int noPLen; /* length of noPrint command */ - Boolean hasErrCtl; /* set if can control error checking for - * individual commands */ - const char *errCheck; /* string to turn error checking on */ - const char *ignErr; /* string to turn off error checking */ - const char *errOut; /* string to use for testing exit code */ - const char *newline; /* string literal that results in a newline - * character when it appears outside of any - * 'quote' or "quote" characters */ - char commentChar; /* character used by shell for comment lines */ - - /* - * command-line flags - */ - const char *echo; /* echo commands */ - const char *exit; /* exit on error */ -} Shell; - -extern const char *shellPath; -extern const char *shellName; - -extern int jobTokensRunning; /* tokens currently "out" */ -extern int maxJobs; /* Max jobs we can run */ - -void Shell_Init(void); -const char *Shell_GetNewline(void); -void Job_Touch(GNode *, Boolean); -Boolean Job_CheckCommands(GNode *, void (*abortProc )(const char *, ...)); -#define CATCH_BLOCK 1 -void Job_CatchChildren(void); -void Job_CatchOutput(void); -void Job_Make(GNode *); -void Job_Init(void); -Boolean Job_Full(void); -Boolean Job_Empty(void); -ReturnStatus Job_ParseShell(char *); -int Job_Finish(void); -void Job_End(void); -void Job_Wait(void); -void Job_AbortAll(void); -void JobFlagForMigration(int); -void Job_TokenReturn(void); -Boolean Job_TokenWithdraw(void); -void Job_ServerStart(int, int, int); -void Job_SetPrefix(void); - -#endif /* _JOB_H_ */ diff --git a/external/bsd/bmake/dist/lst.h b/external/bsd/bmake/dist/lst.h deleted file mode 100644 index e0674071a98f..000000000000 --- a/external/bsd/bmake/dist/lst.h +++ /dev/null @@ -1,189 +0,0 @@ -/* $NetBSD: lst.h,v 1.18 2009/01/23 21:58:27 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)lst.h 8.1 (Berkeley) 6/6/93 - */ - -/* - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)lst.h 8.1 (Berkeley) 6/6/93 - */ - -/*- - * lst.h -- - * Header for using the list library - */ -#ifndef _LST_H_ -#define _LST_H_ - -#include -#include - -#include "sprite.h" - -/* - * basic typedef. This is what the Lst_ functions handle - */ - -typedef struct List *Lst; -typedef struct ListNode *LstNode; - -typedef void *DuplicateProc(void *); -typedef void FreeProc(void *); - -#define LST_CONCNEW 0 /* create new LstNode's when using Lst_Concat */ -#define LST_CONCLINK 1 /* relink LstNode's when using Lst_Concat */ - -/* - * Creation/destruction functions - */ -/* Create a new list */ -Lst Lst_Init(Boolean); -/* Duplicate an existing list */ -Lst Lst_Duplicate(Lst, DuplicateProc *); -/* Destroy an old one */ -void Lst_Destroy(Lst, FreeProc *); -/* True if list is empty */ -Boolean Lst_IsEmpty(Lst); - -/* - * Functions to modify a list - */ -/* Insert an element before another */ -ReturnStatus Lst_InsertBefore(Lst, LstNode, void *); -/* Insert an element after another */ -ReturnStatus Lst_InsertAfter(Lst, LstNode, void *); -/* Place an element at the front of a lst. */ -ReturnStatus Lst_AtFront(Lst, void *); -/* Place an element at the end of a lst. */ -ReturnStatus Lst_AtEnd(Lst, void *); -/* Remove an element */ -ReturnStatus Lst_Remove(Lst, LstNode); -/* Replace a node with a new value */ -ReturnStatus Lst_Replace(LstNode, void *); -/* Concatenate two lists */ -ReturnStatus Lst_Concat(Lst, Lst, int); - -/* - * Node-specific functions - */ -/* Return first element in list */ -LstNode Lst_First(Lst); -/* Return last element in list */ -LstNode Lst_Last(Lst); -/* Return successor to given element */ -LstNode Lst_Succ(LstNode); -/* Return predecessor to given element */ -LstNode Lst_Prev(LstNode); -/* Get datum from LstNode */ -void *Lst_Datum(LstNode); - -/* - * Functions for entire lists - */ -/* Find an element in a list */ -LstNode Lst_Find(Lst, const void *, int (*)(const void *, const void *)); -/* Find an element starting from somewhere */ -LstNode Lst_FindFrom(Lst, LstNode, const void *, - int (*cProc)(const void *, const void *)); -/* - * See if the given datum is on the list. Returns the LstNode containing - * the datum - */ -LstNode Lst_Member(Lst, void *); -/* Apply a function to all elements of a lst */ -int Lst_ForEach(Lst, int (*)(void *, void *), void *); -/* - * Apply a function to all elements of a lst starting from a certain point. - * If the list is circular, the application will wrap around to the - * beginning of the list again. - */ -int Lst_ForEachFrom(Lst, LstNode, int (*)(void *, void *), - void *); -/* - * these functions are for dealing with a list as a table, of sorts. - * An idea of the "current element" is kept and used by all the functions - * between Lst_Open() and Lst_Close(). - */ -/* Open the list */ -ReturnStatus Lst_Open(Lst); -/* Next element please */ -LstNode Lst_Next(Lst); -/* Done yet? */ -Boolean Lst_IsAtEnd(Lst); -/* Finish table access */ -void Lst_Close(Lst); - -/* - * for using the list as a queue - */ -/* Place an element at tail of queue */ -ReturnStatus Lst_EnQueue(Lst, void *); -/* Remove an element from head of queue */ -void *Lst_DeQueue(Lst); - -#endif /* _LST_H_ */ diff --git a/external/bsd/bmake/dist/lst.lib/Makefile b/external/bsd/bmake/dist/lst.lib/Makefile deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/external/bsd/bmake/dist/lst.lib/lstAppend.c b/external/bsd/bmake/dist/lst.lib/lstAppend.c deleted file mode 100644 index 4dafe831450e..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstAppend.c +++ /dev/null @@ -1,122 +0,0 @@ -/* $NetBSD: lstAppend.c,v 1.14 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstAppend.c,v 1.14 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstAppend.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstAppend.c,v 1.14 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstAppend.c -- - * Add a new node with a new datum after an existing node - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_InsertAfter -- - * Create a new node and add it to the given list after the given node. - * - * Input: - * l affected list - * ln node after which to append the datum - * d said datum - * - * Results: - * SUCCESS if all went well. - * - * Side Effects: - * A new ListNode is created and linked in to the List. The lastPtr - * field of the List will be altered if ln is the last node in the - * list. lastPtr and firstPtr will alter if the list was empty and - * ln was NULL. - * - *----------------------------------------------------------------------- - */ -ReturnStatus -Lst_InsertAfter(Lst l, LstNode ln, void *d) -{ - List list; - ListNode lNode; - ListNode nLNode; - - if (LstValid (l) && (ln == NULL && LstIsEmpty (l))) { - goto ok; - } - - if (!LstValid (l) || LstIsEmpty (l) || ! LstNodeValid (ln, l)) { - return (FAILURE); - } - ok: - - list = l; - lNode = ln; - - PAlloc (nLNode, ListNode); - nLNode->datum = d; - nLNode->useCount = nLNode->flags = 0; - - if (lNode == NULL) { - if (list->isCirc) { - nLNode->nextPtr = nLNode->prevPtr = nLNode; - } else { - nLNode->nextPtr = nLNode->prevPtr = NULL; - } - list->firstPtr = list->lastPtr = nLNode; - } else { - nLNode->prevPtr = lNode; - nLNode->nextPtr = lNode->nextPtr; - - lNode->nextPtr = nLNode; - if (nLNode->nextPtr != NULL) { - nLNode->nextPtr->prevPtr = nLNode; - } - - if (lNode == list->lastPtr) { - list->lastPtr = nLNode; - } - } - - return (SUCCESS); -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstAtEnd.c b/external/bsd/bmake/dist/lst.lib/lstAtEnd.c deleted file mode 100644 index 10f191a2060c..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstAtEnd.c +++ /dev/null @@ -1,79 +0,0 @@ -/* $NetBSD: lstAtEnd.c,v 1.13 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstAtEnd.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstAtEnd.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstAtEnd.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstAtEnd.c -- - * Add a node at the end of the list - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_AtEnd -- - * Add a node to the end of the given list - * - * Input: - * l List to which to add the datum - * d Datum to add - * - * Results: - * SUCCESS if life is good. - * - * Side Effects: - * A new ListNode is created and added to the list. - * - *----------------------------------------------------------------------- - */ -ReturnStatus -Lst_AtEnd(Lst l, void *d) -{ - LstNode end; - - end = Lst_Last(l); - return (Lst_InsertAfter(l, end, d)); -} diff --git a/external/bsd/bmake/dist/lst.lib/lstAtFront.c b/external/bsd/bmake/dist/lst.lib/lstAtFront.c deleted file mode 100644 index d8be16647387..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstAtFront.c +++ /dev/null @@ -1,76 +0,0 @@ -/* $NetBSD: lstAtFront.c,v 1.13 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstAtFront.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstAtFront.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstAtFront.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstAtFront.c -- - * Add a node at the front of the list - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_AtFront -- - * Place a piece of data at the front of a list - * - * Results: - * SUCCESS or FAILURE - * - * Side Effects: - * A new ListNode is created and stuck at the front of the list. - * hence, firstPtr (and possible lastPtr) in the list are altered. - * - *----------------------------------------------------------------------- - */ -ReturnStatus -Lst_AtFront(Lst l, void *d) -{ - LstNode front; - - front = Lst_First(l); - return (Lst_InsertBefore(l, front, d)); -} diff --git a/external/bsd/bmake/dist/lst.lib/lstClose.c b/external/bsd/bmake/dist/lst.lib/lstClose.c deleted file mode 100644 index 06b68c5c038a..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstClose.c +++ /dev/null @@ -1,86 +0,0 @@ -/* $NetBSD: lstClose.c,v 1.11 2006/10/27 21:37:25 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstClose.c,v 1.11 2006/10/27 21:37:25 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstClose.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstClose.c,v 1.11 2006/10/27 21:37:25 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstClose.c -- - * Close a list for sequential access. - * The sequential functions access the list in a slightly different way. - * CurPtr points to their idea of the current node in the list and they - * access the list based on it. Because the list is circular, Lst_Next - * and Lst_Prev will go around the list forever. Lst_IsAtEnd must be - * used to determine when to stop. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Close -- - * Close a list which was opened for sequential access. - * - * Input: - * l The list to close - * - * Results: - * None. - * - * Side Effects: - * The list is closed. - * - *----------------------------------------------------------------------- - */ -void -Lst_Close(Lst l) -{ - List list = l; - - if (LstValid(l) == TRUE) { - list->isOpen = FALSE; - list->atEnd = Unknown; - } -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstConcat.c b/external/bsd/bmake/dist/lst.lib/lstConcat.c deleted file mode 100644 index 534d34e45424..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstConcat.c +++ /dev/null @@ -1,185 +0,0 @@ -/* $NetBSD: lstConcat.c,v 1.16 2008/12/13 15:19:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstConcat.c,v 1.16 2008/12/13 15:19:29 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstConcat.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstConcat.c,v 1.16 2008/12/13 15:19:29 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * listConcat.c -- - * Function to concatentate two lists. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Concat -- - * Concatenate two lists. New elements are created to hold the data - * elements, if specified, but the elements themselves are not copied. - * If the elements should be duplicated to avoid confusion with another - * list, the Lst_Duplicate function should be called first. - * If LST_CONCLINK is specified, the second list is destroyed since - * its pointers have been corrupted and the list is no longer useable. - * - * Input: - * l1 The list to which l2 is to be appended - * l2 The list to append to l1 - * flags LST_CONCNEW if LstNode's should be duplicated - * LST_CONCLINK if should just be relinked - * - * Results: - * SUCCESS if all went well. FAILURE otherwise. - * - * Side Effects: - * New elements are created and appended the first list. - *----------------------------------------------------------------------- - */ -ReturnStatus -Lst_Concat(Lst l1, Lst l2, int flags) -{ - ListNode ln; /* original LstNode */ - ListNode nln; /* new LstNode */ - ListNode last; /* the last element in the list. Keeps - * bookkeeping until the end */ - List list1 = l1; - List list2 = l2; - - if (!LstValid (l1) || !LstValid (l2)) { - return (FAILURE); - } - - if (flags == LST_CONCLINK) { - if (list2->firstPtr != NULL) { - /* - * We set the nextPtr of the - * last element of list two to be NIL to make the loop easier and - * so we don't need an extra case should the first list turn - * out to be non-circular -- the final element will already point - * to NIL space and the first element will be untouched if it - * existed before and will also point to NIL space if it didn't. - */ - list2->lastPtr->nextPtr = NULL; - /* - * So long as the second list isn't empty, we just link the - * first element of the second list to the last element of the - * first list. If the first list isn't empty, we then link the - * last element of the list to the first element of the second list - * The last element of the second list, if it exists, then becomes - * the last element of the first list. - */ - list2->firstPtr->prevPtr = list1->lastPtr; - if (list1->lastPtr != NULL) { - list1->lastPtr->nextPtr = list2->firstPtr; - } else { - list1->firstPtr = list2->firstPtr; - } - list1->lastPtr = list2->lastPtr; - } - if (list1->isCirc && list1->firstPtr != NULL) { - /* - * If the first list is supposed to be circular and it is (now) - * non-empty, we must make sure it's circular by linking the - * first element to the last and vice versa - */ - list1->firstPtr->prevPtr = list1->lastPtr; - list1->lastPtr->nextPtr = list1->firstPtr; - } - free(l2); - } else if (list2->firstPtr != NULL) { - /* - * We set the nextPtr of the last element of list 2 to be nil to make - * the loop less difficult. The loop simply goes through the entire - * second list creating new LstNodes and filling in the nextPtr, and - * prevPtr to fit into l1 and its datum field from the - * datum field of the corresponding element in l2. The 'last' node - * follows the last of the new nodes along until the entire l2 has - * been appended. Only then does the bookkeeping catch up with the - * changes. During the first iteration of the loop, if 'last' is nil, - * the first list must have been empty so the newly-created node is - * made the first node of the list. - */ - list2->lastPtr->nextPtr = NULL; - for (last = list1->lastPtr, ln = list2->firstPtr; - ln != NULL; - ln = ln->nextPtr) - { - PAlloc (nln, ListNode); - nln->datum = ln->datum; - if (last != NULL) { - last->nextPtr = nln; - } else { - list1->firstPtr = nln; - } - nln->prevPtr = last; - nln->flags = nln->useCount = 0; - last = nln; - } - - /* - * Finish bookkeeping. The last new element becomes the last element - * of list one. - */ - list1->lastPtr = last; - - /* - * The circularity of both list one and list two must be corrected - * for -- list one because of the new nodes added to it; list two - * because of the alteration of list2->lastPtr's nextPtr to ease the - * above for loop. - */ - if (list1->isCirc) { - list1->lastPtr->nextPtr = list1->firstPtr; - list1->firstPtr->prevPtr = list1->lastPtr; - } else { - last->nextPtr = NULL; - } - - if (list2->isCirc) { - list2->lastPtr->nextPtr = list2->firstPtr; - } - } - - return (SUCCESS); -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstDatum.c b/external/bsd/bmake/dist/lst.lib/lstDatum.c deleted file mode 100644 index 6e2d9ad0e73b..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstDatum.c +++ /dev/null @@ -1,77 +0,0 @@ -/* $NetBSD: lstDatum.c,v 1.13 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstDatum.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstDatum.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstDatum.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstDatum.c -- - * Return the datum associated with a list node. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Datum -- - * Return the datum stored in the given node. - * - * Results: - * The datum or NULL if the node is invalid. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -void * -Lst_Datum(LstNode ln) -{ - if (ln != NULL) { - return ((ln)->datum); - } else { - return NULL; - } -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstDeQueue.c b/external/bsd/bmake/dist/lst.lib/lstDeQueue.c deleted file mode 100644 index bdb05cc1168d..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstDeQueue.c +++ /dev/null @@ -1,87 +0,0 @@ -/* $NetBSD: lstDeQueue.c,v 1.14 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstDeQueue.c,v 1.14 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstDeQueue.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstDeQueue.c,v 1.14 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstDeQueue.c -- - * Remove the node and return its datum from the head of the list - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_DeQueue -- - * Remove and return the datum at the head of the given list. - * - * Results: - * The datum in the node at the head or NULL if the list - * is empty. - * - * Side Effects: - * The head node is removed from the list. - * - *----------------------------------------------------------------------- - */ -void * -Lst_DeQueue(Lst l) -{ - void *rd; - ListNode tln; - - tln = Lst_First(l); - if (tln == NULL) { - return NULL; - } - - rd = tln->datum; - if (Lst_Remove(l, tln) == FAILURE) { - return NULL; - } else { - return (rd); - } -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstDestroy.c b/external/bsd/bmake/dist/lst.lib/lstDestroy.c deleted file mode 100644 index 92c5b2b2050c..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstDestroy.c +++ /dev/null @@ -1,101 +0,0 @@ -/* $NetBSD: lstDestroy.c,v 1.16 2008/12/13 15:19:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstDestroy.c,v 1.16 2008/12/13 15:19:29 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstDestroy.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstDestroy.c,v 1.16 2008/12/13 15:19:29 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstDestroy.c -- - * Nuke a list and all its resources - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Destroy -- - * Destroy a list and free all its resources. If the freeProc is - * given, it is called with the datum from each node in turn before - * the node is freed. - * - * Results: - * None. - * - * Side Effects: - * The given list is freed in its entirety. - * - *----------------------------------------------------------------------- - */ -void -Lst_Destroy(Lst list, FreeProc *freeProc) -{ - ListNode ln; - ListNode tln = NULL; - - if (list == NULL) - return; - - /* To ease scanning */ - if (list->lastPtr != NULL) - list->lastPtr->nextPtr = NULL; - else { - free(list); - return; - } - - if (freeProc) { - for (ln = list->firstPtr; ln != NULL; ln = tln) { - tln = ln->nextPtr; - freeProc(ln->datum); - free(ln); - } - } else { - for (ln = list->firstPtr; ln != NULL; ln = tln) { - tln = ln->nextPtr; - free(ln); - } - } - - free(list); -} diff --git a/external/bsd/bmake/dist/lst.lib/lstDupl.c b/external/bsd/bmake/dist/lst.lib/lstDupl.c deleted file mode 100644 index 2174ff782282..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstDupl.c +++ /dev/null @@ -1,107 +0,0 @@ -/* $NetBSD: lstDupl.c,v 1.16 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstDupl.c,v 1.16 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstDupl.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstDupl.c,v 1.16 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * listDupl.c -- - * Duplicate a list. This includes duplicating the individual - * elements. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Duplicate -- - * Duplicate an entire list. If a function to copy a void *is - * given, the individual client elements will be duplicated as well. - * - * Input: - * l the list to duplicate - * copyProc A function to duplicate each void * - * - * Results: - * The new Lst structure or NULL if failure. - * - * Side Effects: - * A new list is created. - *----------------------------------------------------------------------- - */ -Lst -Lst_Duplicate(Lst l, DuplicateProc *copyProc) -{ - Lst nl; - ListNode ln; - List list = l; - - if (!LstValid (l)) { - return NULL; - } - - nl = Lst_Init(list->isCirc); - if (nl == NULL) { - return NULL; - } - - ln = list->firstPtr; - while (ln != NULL) { - if (copyProc != NULL) { - if (Lst_AtEnd(nl, copyProc(ln->datum)) == FAILURE) { - return NULL; - } - } else if (Lst_AtEnd(nl, ln->datum) == FAILURE) { - return NULL; - } - - if (list->isCirc && ln == list->lastPtr) { - ln = NULL; - } else { - ln = ln->nextPtr; - } - } - - return (nl); -} diff --git a/external/bsd/bmake/dist/lst.lib/lstEnQueue.c b/external/bsd/bmake/dist/lst.lib/lstEnQueue.c deleted file mode 100644 index be386c91a512..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstEnQueue.c +++ /dev/null @@ -1,78 +0,0 @@ -/* $NetBSD: lstEnQueue.c,v 1.13 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstEnQueue.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstEnQueue.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstEnQueue.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstEnQueue.c-- - * Treat the list as a queue and place a datum at its end - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_EnQueue -- - * Add the datum to the tail of the given list. - * - * Results: - * SUCCESS or FAILURE as returned by Lst_InsertAfter. - * - * Side Effects: - * the lastPtr field is altered all the time and the firstPtr field - * will be altered if the list used to be empty. - * - *----------------------------------------------------------------------- - */ -ReturnStatus -Lst_EnQueue(Lst l, void *d) -{ - if (LstValid (l) == FALSE) { - return (FAILURE); - } - - return (Lst_InsertAfter(l, Lst_Last(l), d)); -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstFind.c b/external/bsd/bmake/dist/lst.lib/lstFind.c deleted file mode 100644 index d07dbe7f9f8c..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstFind.c +++ /dev/null @@ -1,74 +0,0 @@ -/* $NetBSD: lstFind.c,v 1.15 2009/01/23 21:58:28 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstFind.c,v 1.15 2009/01/23 21:58:28 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstFind.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstFind.c,v 1.15 2009/01/23 21:58:28 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstFind.c -- - * Find a node on a list. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Find -- - * Find a node on the given list using the given comparison function - * and the given datum. - * - * Results: - * The found node or NULL if none matches. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -LstNode -Lst_Find(Lst l, const void *d, int (*cProc)(const void *, const void *)) -{ - return (Lst_FindFrom(l, Lst_First(l), d, cProc)); -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstFindFrom.c b/external/bsd/bmake/dist/lst.lib/lstFindFrom.c deleted file mode 100644 index e2beab6321d5..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstFindFrom.c +++ /dev/null @@ -1,90 +0,0 @@ -/* $NetBSD: lstFindFrom.c,v 1.15 2009/01/23 21:58:28 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstFindFrom.c,v 1.15 2009/01/23 21:58:28 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstFindFrom.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstFindFrom.c,v 1.15 2009/01/23 21:58:28 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstFindFrom.c -- - * Find a node on a list from a given starting point. Used by Lst_Find. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_FindFrom -- - * Search for a node starting and ending with the given one on the - * given list using the passed datum and comparison function to - * determine when it has been found. - * - * Results: - * The found node or NULL - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -LstNode -Lst_FindFrom(Lst l, LstNode ln, const void *d, - int (*cProc)(const void *, const void *)) -{ - ListNode tln; - - if (!LstValid (l) || LstIsEmpty (l) || !LstNodeValid (ln, l)) { - return NULL; - } - - tln = ln; - - do { - if ((*cProc)(tln->datum, d) == 0) - return (tln); - tln = tln->nextPtr; - } while (tln != ln && tln != NULL); - - return NULL; -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstFirst.c b/external/bsd/bmake/dist/lst.lib/lstFirst.c deleted file mode 100644 index 4e8334f8bcc9..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstFirst.c +++ /dev/null @@ -1,77 +0,0 @@ -/* $NetBSD: lstFirst.c,v 1.12 2008/12/13 15:19:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstFirst.c,v 1.12 2008/12/13 15:19:29 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstFirst.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstFirst.c,v 1.12 2008/12/13 15:19:29 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstFirst.c -- - * Return the first node of a list - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_First -- - * Return the first node on the given list. - * - * Results: - * The first node or NULL if the list is empty. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -LstNode -Lst_First(Lst l) -{ - if (!LstValid (l) || LstIsEmpty (l)) { - return NULL; - } else { - return (l->firstPtr); - } -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstForEach.c b/external/bsd/bmake/dist/lst.lib/lstForEach.c deleted file mode 100644 index 917e4ea80236..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstForEach.c +++ /dev/null @@ -1,76 +0,0 @@ -/* $NetBSD: lstForEach.c,v 1.13 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstForEach.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstForEach.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstForEach.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstForeach.c -- - * Perform a given function on all elements of a list. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_ForEach -- - * Apply the given function to each element of the given list. The - * function should return 0 if Lst_ForEach should continue and non- - * zero if it should abort. - * - * Results: - * None. - * - * Side Effects: - * Only those created by the passed-in function. - * - *----------------------------------------------------------------------- - */ -/*VARARGS2*/ -int -Lst_ForEach(Lst l, int (*proc)(void *, void *), void *d) -{ - return Lst_ForEachFrom(l, Lst_First(l), proc, d); -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstForEachFrom.c b/external/bsd/bmake/dist/lst.lib/lstForEachFrom.c deleted file mode 100644 index c7f44adc476a..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstForEachFrom.c +++ /dev/null @@ -1,125 +0,0 @@ -/* $NetBSD: lstForEachFrom.c,v 1.17 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstForEachFrom.c,v 1.17 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstForEachFrom.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstForEachFrom.c,v 1.17 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * lstForEachFrom.c -- - * Perform a given function on all elements of a list starting from - * a given point. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_ForEachFrom -- - * Apply the given function to each element of the given list. The - * function should return 0 if traversal should continue and non- - * zero if it should abort. - * - * Results: - * None. - * - * Side Effects: - * Only those created by the passed-in function. - * - *----------------------------------------------------------------------- - */ -/*VARARGS2*/ -int -Lst_ForEachFrom(Lst l, LstNode ln, int (*proc)(void *, void *), - void *d) -{ - ListNode tln = ln; - List list = l; - ListNode next; - Boolean done; - int result; - - if (!LstValid (list) || LstIsEmpty (list)) { - return 0; - } - - do { - /* - * Take care of having the current element deleted out from under - * us. - */ - - next = tln->nextPtr; - - /* - * We're done with the traversal if - * - the next node to examine is the first in the queue or - * doesn't exist and - * - nothing's been added after the current node (check this - * after proc() has been called). - */ - done = (next == NULL || next == list->firstPtr); - - (void) tln->useCount++; - result = (*proc) (tln->datum, d); - (void) tln->useCount--; - - /* - * Now check whether a node has been added. - * Note: this doesn't work if this node was deleted before - * the new node was added. - */ - if (next != tln->nextPtr) { - next = tln->nextPtr; - done = 0; - } - - if (tln->flags & LN_DELETED) { - free((char *)tln); - } - tln = next; - } while (!result && !LstIsEmpty(list) && !done); - - return result; -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstInit.c b/external/bsd/bmake/dist/lst.lib/lstInit.c deleted file mode 100644 index f98ac42b06a0..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstInit.c +++ /dev/null @@ -1,85 +0,0 @@ -/* $NetBSD: lstInit.c,v 1.12 2008/12/13 15:19:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstInit.c,v 1.12 2008/12/13 15:19:29 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstInit.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstInit.c,v 1.12 2008/12/13 15:19:29 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * init.c -- - * Initialize a new linked list. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Init -- - * Create and initialize a new list. - * - * Input: - * circ TRUE if the list should be made circular - * - * Results: - * The created list. - * - * Side Effects: - * A list is created, what else? - * - *----------------------------------------------------------------------- - */ -Lst -Lst_Init(Boolean circ) -{ - List nList; - - PAlloc (nList, List); - - nList->firstPtr = NULL; - nList->lastPtr = NULL; - nList->isOpen = FALSE; - nList->isCirc = circ; - nList->atEnd = Unknown; - - return (nList); -} diff --git a/external/bsd/bmake/dist/lst.lib/lstInsert.c b/external/bsd/bmake/dist/lst.lib/lstInsert.c deleted file mode 100644 index 77187bb327e2..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstInsert.c +++ /dev/null @@ -1,122 +0,0 @@ -/* $NetBSD: lstInsert.c,v 1.14 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstInsert.c,v 1.14 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstInsert.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstInsert.c,v 1.14 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstInsert.c -- - * Insert a new datum before an old one - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_InsertBefore -- - * Insert a new node with the given piece of data before the given - * node in the given list. - * - * Input: - * l list to manipulate - * ln node before which to insert d - * d datum to be inserted - * - * Results: - * SUCCESS or FAILURE. - * - * Side Effects: - * the firstPtr field will be changed if ln is the first node in the - * list. - * - *----------------------------------------------------------------------- - */ -ReturnStatus -Lst_InsertBefore(Lst l, LstNode ln, void *d) -{ - ListNode nLNode; /* new lnode for d */ - ListNode lNode = ln; - List list = l; - - - /* - * check validity of arguments - */ - if (LstValid (l) && (LstIsEmpty (l) && ln == NULL)) - goto ok; - - if (!LstValid (l) || LstIsEmpty (l) || !LstNodeValid (ln, l)) { - return (FAILURE); - } - - ok: - PAlloc (nLNode, ListNode); - - nLNode->datum = d; - nLNode->useCount = nLNode->flags = 0; - - if (ln == NULL) { - if (list->isCirc) { - nLNode->prevPtr = nLNode->nextPtr = nLNode; - } else { - nLNode->prevPtr = nLNode->nextPtr = NULL; - } - list->firstPtr = list->lastPtr = nLNode; - } else { - nLNode->prevPtr = lNode->prevPtr; - nLNode->nextPtr = lNode; - - if (nLNode->prevPtr != NULL) { - nLNode->prevPtr->nextPtr = nLNode; - } - lNode->prevPtr = nLNode; - - if (lNode == list->firstPtr) { - list->firstPtr = nLNode; - } - } - - return (SUCCESS); -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstInt.h b/external/bsd/bmake/dist/lst.lib/lstInt.h deleted file mode 100644 index 34a2fbdce96a..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstInt.h +++ /dev/null @@ -1,105 +0,0 @@ -/* $NetBSD: lstInt.h,v 1.20 2009/01/24 14:43:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)lstInt.h 8.1 (Berkeley) 6/6/93 - */ - -/*- - * lstInt.h -- - * Internals for the list library - */ -#ifndef _LSTINT_H_ -#define _LSTINT_H_ - -#include "../lst.h" -#include "../make_malloc.h" - -typedef struct ListNode { - struct ListNode *prevPtr; /* previous element in list */ - struct ListNode *nextPtr; /* next in list */ - unsigned int useCount:8, /* Count of functions using the node. - * node may not be deleted until count - * goes to 0 */ - flags:8; /* Node status flags */ - void *datum; /* datum associated with this element */ -} *ListNode; -/* - * Flags required for synchronization - */ -#define LN_DELETED 0x0001 /* List node should be removed when done */ - -typedef enum { - Head, Middle, Tail, Unknown -} Where; - -typedef struct List { - ListNode firstPtr; /* first node in list */ - ListNode lastPtr; /* last node in list */ - Boolean isCirc; /* true if the list should be considered - * circular */ -/* - * fields for sequential access - */ - Where atEnd; /* Where in the list the last access was */ - Boolean isOpen; /* true if list has been Lst_Open'ed */ - ListNode curPtr; /* current node, if open. NULL if - * *just* opened */ - ListNode prevPtr; /* Previous node, if open. Used by - * Lst_Remove */ -} *List; - -/* - * PAlloc (var, ptype) -- - * Allocate a pointer-typedef structure 'ptype' into the variable 'var' - */ -#define PAlloc(var,ptype) var = (ptype) bmake_malloc(sizeof *(var)) - -/* - * LstValid (l) -- - * Return TRUE if the list l is valid - */ -#define LstValid(l) ((Lst)(l) != NULL) - -/* - * LstNodeValid (ln, l) -- - * Return TRUE if the LstNode ln is valid with respect to l - */ -#define LstNodeValid(ln, l) ((ln) != NULL) - -/* - * LstIsEmpty (l) -- - * TRUE if the list l is empty. - */ -#define LstIsEmpty(l) (((List)(l))->firstPtr == NULL) - -#endif /* _LSTINT_H_ */ diff --git a/external/bsd/bmake/dist/lst.lib/lstIsAtEnd.c b/external/bsd/bmake/dist/lst.lib/lstIsAtEnd.c deleted file mode 100644 index 70270d2956c1..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstIsAtEnd.c +++ /dev/null @@ -1,87 +0,0 @@ -/* $NetBSD: lstIsAtEnd.c,v 1.13 2008/02/15 21:29:50 christos Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstIsAtEnd.c,v 1.13 2008/02/15 21:29:50 christos Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstIsAtEnd.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstIsAtEnd.c,v 1.13 2008/02/15 21:29:50 christos Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstIsAtEnd.c -- - * Tell if the current node is at the end of the list. - * The sequential functions access the list in a slightly different way. - * CurPtr points to their idea of the current node in the list and they - * access the list based on it. Because the list is circular, Lst_Next - * and Lst_Prev will go around the list forever. Lst_IsAtEnd must be - * used to determine when to stop. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_IsAtEnd -- - * Return true if have reached the end of the given list. - * - * Results: - * TRUE if at the end of the list (this includes the list not being - * open or being invalid) or FALSE if not. We return TRUE if the list - * is invalid or unopend so as to cause the caller to exit its loop - * asap, the assumption being that the loop is of the form - * while (!Lst_IsAtEnd (l)) { - * ... - * } - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -Boolean -Lst_IsAtEnd(Lst l) -{ - List list = l; - - return (!LstValid (l) || !list->isOpen || - (list->atEnd == Head) || (list->atEnd == Tail)); -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstIsEmpty.c b/external/bsd/bmake/dist/lst.lib/lstIsEmpty.c deleted file mode 100644 index 8b1d6ed0dd91..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstIsEmpty.c +++ /dev/null @@ -1,75 +0,0 @@ -/* $NetBSD: lstIsEmpty.c,v 1.11 2008/12/13 15:19:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstIsEmpty.c,v 1.11 2008/12/13 15:19:29 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstIsEmpty.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstIsEmpty.c,v 1.11 2008/12/13 15:19:29 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstIsEmpty.c -- - * A single function to decide if a list is empty - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_IsEmpty -- - * Return TRUE if the given list is empty. - * - * Results: - * TRUE if the list is empty, FALSE otherwise. - * - * Side Effects: - * None. - * - * A list is considered empty if its firstPtr == NULL (or if - * the list itself is NULL). - *----------------------------------------------------------------------- - */ -Boolean -Lst_IsEmpty(Lst l) -{ - return ( ! LstValid (l) || LstIsEmpty(l)); -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstLast.c b/external/bsd/bmake/dist/lst.lib/lstLast.c deleted file mode 100644 index 096ca24d1372..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstLast.c +++ /dev/null @@ -1,77 +0,0 @@ -/* $NetBSD: lstLast.c,v 1.12 2008/12/13 15:19:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstLast.c,v 1.12 2008/12/13 15:19:29 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstLast.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstLast.c,v 1.12 2008/12/13 15:19:29 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstLast.c -- - * Return the last element of a list - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Last -- - * Return the last node on the list l. - * - * Results: - * The requested node or NULL if the list is empty. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -LstNode -Lst_Last(Lst l) -{ - if (!LstValid(l) || LstIsEmpty (l)) { - return NULL; - } else { - return (l->lastPtr); - } -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstMember.c b/external/bsd/bmake/dist/lst.lib/lstMember.c deleted file mode 100644 index 0ff2ed19d869..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstMember.c +++ /dev/null @@ -1,74 +0,0 @@ -/* $NetBSD: lstMember.c,v 1.13 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstMember.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstMember.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstMember.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * lstMember.c -- - * See if a given datum is on a given list. - */ - -#include "lstInt.h" - -LstNode -Lst_Member(Lst l, void *d) -{ - List list = l; - ListNode lNode; - - lNode = list->firstPtr; - if (lNode == NULL) { - return NULL; - } - - do { - if (lNode->datum == d) { - return lNode; - } - lNode = lNode->nextPtr; - } while (lNode != NULL && lNode != list->firstPtr); - - return NULL; -} diff --git a/external/bsd/bmake/dist/lst.lib/lstNext.c b/external/bsd/bmake/dist/lst.lib/lstNext.c deleted file mode 100644 index 5c2e0eece592..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstNext.c +++ /dev/null @@ -1,120 +0,0 @@ -/* $NetBSD: lstNext.c,v 1.12 2008/12/13 15:19:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstNext.c,v 1.12 2008/12/13 15:19:29 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstNext.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstNext.c,v 1.12 2008/12/13 15:19:29 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstNext.c -- - * Return the next node for a list. - * The sequential functions access the list in a slightly different way. - * CurPtr points to their idea of the current node in the list and they - * access the list based on it. Because the list is circular, Lst_Next - * and Lst_Prev will go around the list forever. Lst_IsAtEnd must be - * used to determine when to stop. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Next -- - * Return the next node for the given list. - * - * Results: - * The next node or NULL if the list has yet to be opened. Also - * if the list is non-circular and the end has been reached, NULL - * is returned. - * - * Side Effects: - * the curPtr field is updated. - * - *----------------------------------------------------------------------- - */ -LstNode -Lst_Next(Lst l) -{ - ListNode tln; - List list = l; - - if ((LstValid (l) == FALSE) || - (list->isOpen == FALSE)) { - return NULL; - } - - list->prevPtr = list->curPtr; - - if (list->curPtr == NULL) { - if (list->atEnd == Unknown) { - /* - * If we're just starting out, atEnd will be Unknown. - * Then we want to start this thing off in the right - * direction -- at the start with atEnd being Middle. - */ - list->curPtr = tln = list->firstPtr; - list->atEnd = Middle; - } else { - tln = NULL; - list->atEnd = Tail; - } - } else { - tln = list->curPtr->nextPtr; - list->curPtr = tln; - - if (tln == list->firstPtr || tln == NULL) { - /* - * If back at the front, then we've hit the end... - */ - list->atEnd = Tail; - } else { - /* - * Reset to Middle if gone past first. - */ - list->atEnd = Middle; - } - } - - return (tln); -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstOpen.c b/external/bsd/bmake/dist/lst.lib/lstOpen.c deleted file mode 100644 index 941293e7abb2..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstOpen.c +++ /dev/null @@ -1,87 +0,0 @@ -/* $NetBSD: lstOpen.c,v 1.12 2008/12/13 15:19:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstOpen.c,v 1.12 2008/12/13 15:19:29 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstOpen.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstOpen.c,v 1.12 2008/12/13 15:19:29 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstOpen.c -- - * Open a list for sequential access. The sequential functions access the - * list in a slightly different way. CurPtr points to their idea of the - * current node in the list and they access the list based on it. - * If the list is circular, Lst_Next and Lst_Prev will go around - * the list forever. Lst_IsAtEnd must be used to determine when to stop. - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Open -- - * Open a list for sequential access. A list can still be searched, - * etc., without confusing these functions. - * - * Results: - * SUCCESS or FAILURE. - * - * Side Effects: - * isOpen is set TRUE and curPtr is set to NULL so the - * other sequential functions no it was just opened and can choose - * the first element accessed based on this. - * - *----------------------------------------------------------------------- - */ -ReturnStatus -Lst_Open(Lst l) -{ - if (LstValid (l) == FALSE) { - return (FAILURE); - } - (l)->isOpen = TRUE; - (l)->atEnd = LstIsEmpty (l) ? Head : Unknown; - (l)->curPtr = NULL; - - return (SUCCESS); -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstPrev.c b/external/bsd/bmake/dist/lst.lib/lstPrev.c deleted file mode 100644 index 0ec865d51652..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstPrev.c +++ /dev/null @@ -1,79 +0,0 @@ -/* $NetBSD: lstPrev.c,v 1.3 2008/12/13 15:19:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstPrev.c,v 1.3 2008/12/13 15:19:29 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstSucc.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstPrev.c,v 1.3 2008/12/13 15:19:29 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstPrev.c -- - * return the predecessor to a given node - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Prev -- - * Return the predecessor to the given node on its list. - * - * Results: - * The predecessor of the node, if it exists (note that on a circular - * list, if the node is the only one in the list, it is its own - * predecessor). - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -LstNode -Lst_Prev(LstNode ln) -{ - if (ln == NULL) { - return NULL; - } else { - return (ln->prevPtr); - } -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstRemove.c b/external/bsd/bmake/dist/lst.lib/lstRemove.c deleted file mode 100644 index 54d7b33df017..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstRemove.c +++ /dev/null @@ -1,136 +0,0 @@ -/* $NetBSD: lstRemove.c,v 1.14 2008/12/13 15:19:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstRemove.c,v 1.14 2008/12/13 15:19:29 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstRemove.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstRemove.c,v 1.14 2008/12/13 15:19:29 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstRemove.c -- - * Remove an element from a list - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Remove -- - * Remove the given node from the given list. - * - * Results: - * SUCCESS or FAILURE. - * - * Side Effects: - * The list's firstPtr will be set to NULL if ln is the last - * node on the list. firsPtr and lastPtr will be altered if ln is - * either the first or last node, respectively, on the list. - * - *----------------------------------------------------------------------- - */ -ReturnStatus -Lst_Remove(Lst l, LstNode ln) -{ - List list = l; - ListNode lNode = ln; - - if (!LstValid (l) || - !LstNodeValid (ln, l)) { - return (FAILURE); - } - - /* - * unlink it from the list - */ - if (lNode->nextPtr != NULL) { - lNode->nextPtr->prevPtr = lNode->prevPtr; - } - if (lNode->prevPtr != NULL) { - lNode->prevPtr->nextPtr = lNode->nextPtr; - } - - /* - * if either the firstPtr or lastPtr of the list point to this node, - * adjust them accordingly - */ - if (list->firstPtr == lNode) { - list->firstPtr = lNode->nextPtr; - } - if (list->lastPtr == lNode) { - list->lastPtr = lNode->prevPtr; - } - - /* - * Sequential access stuff. If the node we're removing is the current - * node in the list, reset the current node to the previous one. If the - * previous one was non-existent (prevPtr == NULL), we set the - * end to be Unknown, since it is. - */ - if (list->isOpen && (list->curPtr == lNode)) { - list->curPtr = list->prevPtr; - if (list->curPtr == NULL) { - list->atEnd = Unknown; - } - } - - /* - * the only way firstPtr can still point to ln is if ln is the last - * node on the list (the list is circular, so lNode->nextptr == lNode in - * this case). The list is, therefore, empty and is marked as such - */ - if (list->firstPtr == lNode) { - list->firstPtr = NULL; - } - - /* - * note that the datum is unmolested. The caller must free it as - * necessary and as expected. - */ - if (lNode->useCount == 0) { - free(ln); - } else { - lNode->flags |= LN_DELETED; - } - - return (SUCCESS); -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstReplace.c b/external/bsd/bmake/dist/lst.lib/lstReplace.c deleted file mode 100644 index 090e91a72c6e..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstReplace.c +++ /dev/null @@ -1,78 +0,0 @@ -/* $NetBSD: lstReplace.c,v 1.13 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstReplace.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstReplace.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstReplace.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstReplace.c -- - * Replace the datum in a node with a new datum - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Replace -- - * Replace the datum in the given node with the new datum - * - * Results: - * SUCCESS or FAILURE. - * - * Side Effects: - * The datum field fo the node is altered. - * - *----------------------------------------------------------------------- - */ -ReturnStatus -Lst_Replace(LstNode ln, void *d) -{ - if (ln == NULL) { - return (FAILURE); - } else { - (ln)->datum = d; - return (SUCCESS); - } -} - diff --git a/external/bsd/bmake/dist/lst.lib/lstSucc.c b/external/bsd/bmake/dist/lst.lib/lstSucc.c deleted file mode 100644 index 3f13aa5e7f66..000000000000 --- a/external/bsd/bmake/dist/lst.lib/lstSucc.c +++ /dev/null @@ -1,79 +0,0 @@ -/* $NetBSD: lstSucc.c,v 1.13 2008/12/13 15:19:29 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstSucc.c,v 1.13 2008/12/13 15:19:29 dsl Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)lstSucc.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: lstSucc.c,v 1.13 2008/12/13 15:19:29 dsl Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * LstSucc.c -- - * return the successor to a given node - */ - -#include "lstInt.h" - -/*- - *----------------------------------------------------------------------- - * Lst_Succ -- - * Return the successor to the given node on its list. - * - * Results: - * The successor of the node, if it exists (note that on a circular - * list, if the node is the only one in the list, it is its own - * successor). - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -LstNode -Lst_Succ(LstNode ln) -{ - if (ln == NULL) { - return NULL; - } else { - return (ln->nextPtr); - } -} - diff --git a/external/bsd/bmake/dist/machine.sh b/external/bsd/bmake/dist/machine.sh deleted file mode 100755 index 32a0f7a1d84d..000000000000 --- a/external/bsd/bmake/dist/machine.sh +++ /dev/null @@ -1,96 +0,0 @@ -: -# derrived from /etc/rc_d/os.sh - -# RCSid: -# $Id: machine.sh,v 1.16 2010/10/17 00:05:51 sjg Exp $ -# -# @(#) Copyright (c) 1994-2002 Simon J. Gerraty -# -# This file is provided in the hope that it will -# be of use. There is absolutely NO WARRANTY. -# Permission to copy, redistribute or otherwise -# use this file is hereby granted provided that -# the above copyright notice and this notice are -# left intact. -# -# Please send copies of changes and bug-fixes to: -# sjg@crufty.net -# - -OS=`uname` -OSREL=`uname -r` -OSMAJOR=`IFS=.; set $OSREL; echo $1` -machine=`uname -p 2>/dev/null || uname -m` -MACHINE= - -# there is at least one case of `uname -p` outputting -# a bunch of usless drivel -case "$machine" in -unknown|*[!A-Za-z0-9_-]*) - machine=`uname -m` - ;; -esac - -# Great! Solaris keeps moving arch(1) -# we need this here, and it is not always available... -Which() { - # some shells cannot correctly handle `IFS` - # in conjunction with the for loop. - _dirs=`IFS=:; echo ${2:-$PATH}` - for d in $_dirs - do - test -x $d/$1 && { echo $d/$1; break; } - done -} - -case $OS in -OpenBSD) - MACHINE=$OS$OSMAJOR.$machine - arch=`Which arch /usr/bin:/usr/ucb:$PATH` - MACHINE_ARCH=`$arch -s`; - ;; -*BSD) - MACHINE=$OS$OSMAJOR.$machine - ;; -SunOS) - arch=`Which arch /usr/bin:/usr/ucb:$PATH` - test "$arch" && machine_arch=`$arch` - - case "$OSREL" in - 4.0*) MACHINE_ARCH=$machine_arch MACHINE=$machine_arch;; - 4*) MACHINE_ARCH=$machine_arch;; - esac - ;; -HP-UX) - MACHINE_ARCH=`IFS="/-."; set $machine; echo $1` - ;; -Interix) - MACHINE=i386 - MACHINE_ARCH=i386 - ;; -UnixWare) - OSREL=`uname -v` - OSMAJOR=`IFS=.; set $OSREL; echo $1` - MACHINE_ARCH=`uname -m` - ;; -Linux) - case "$machine" in - i?86) MACHINE_ARCH=i386;;# does anyone really care about 686 vs 586? - esac - ;; -esac - -MACHINE=${MACHINE:-$OS$OSMAJOR} -MACHINE_ARCH=${MACHINE_ARCH:-$machine} - -( -case "$0" in -arch*) echo $MACHINE_ARCH;; -*) - case "$1" in - "") echo $MACHINE;; - *) echo $MACHINE_ARCH;; - esac - ;; -esac -) | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz diff --git a/external/bsd/bmake/dist/main.c b/external/bsd/bmake/dist/main.c deleted file mode 100644 index 085c534f6a6d..000000000000 --- a/external/bsd/bmake/dist/main.c +++ /dev/null @@ -1,2078 +0,0 @@ -/* $NetBSD: main.c,v 1.200 2012/06/12 19:21:51 joerg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: main.c,v 1.200 2012/06/12 19:21:51 joerg Exp $"; -#else -#include -#ifndef lint -__COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993\ - The Regents of the University of California. All rights reserved."); -#endif /* not lint */ - -#ifndef lint -#if 0 -static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 3/19/94"; -#else -__RCSID("$NetBSD: main.c,v 1.200 2012/06/12 19:21:51 joerg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * main.c -- - * The main file for this entire program. Exit routines etc - * reside here. - * - * Utility functions defined in this file: - * Main_ParseArgLine Takes a line of arguments, breaks them and - * treats them as if they were given when first - * invoked. Used by the parse module to implement - * the .MFLAGS target. - * - * Error Print a tagged error message. The global - * MAKE variable must have been defined. This - * takes a format string and two optional - * arguments for it. - * - * Fatal Print an error message and exit. Also takes - * a format string and two arguments. - * - * Punt Aborts all jobs and exits with a message. Also - * takes a format string and two arguments. - * - * Finish Finish things up by printing the number of - * errors which occurred, as passed to it, and - * exiting. - */ - -#include -#include -#include -#include -#include -#include -#ifdef MAKE_NATIVE -#include -#endif -#include "wait.h" - -#include -#include -#include -#include -#include -#include - -#include "make.h" -#include "hash.h" -#include "dir.h" -#include "job.h" -#include "pathnames.h" -#include "trace.h" - -#ifdef USE_IOVEC -#include -#endif - -#ifndef DEFMAXLOCAL -#define DEFMAXLOCAL DEFMAXJOBS -#endif /* DEFMAXLOCAL */ - -Lst create; /* Targets to be made */ -time_t now; /* Time at start of make */ -GNode *DEFAULT; /* .DEFAULT node */ -Boolean allPrecious; /* .PRECIOUS given on line by itself */ - -static Boolean noBuiltins; /* -r flag */ -static Lst makefiles; /* ordered list of makefiles to read */ -static Boolean printVars; /* print value of one or more vars */ -static Lst variables; /* list of variables to print */ -int maxJobs; /* -j argument */ -static int maxJobTokens; /* -j argument */ -Boolean compatMake; /* -B argument */ -int debug; /* -d argument */ -Boolean noExecute; /* -n flag */ -Boolean noRecursiveExecute; /* -N flag */ -Boolean keepgoing; /* -k flag */ -Boolean queryFlag; /* -q flag */ -Boolean touchFlag; /* -t flag */ -Boolean ignoreErrors; /* -i flag */ -Boolean beSilent; /* -s flag */ -Boolean oldVars; /* variable substitution style */ -Boolean checkEnvFirst; /* -e flag */ -Boolean parseWarnFatal; /* -W flag */ -Boolean jobServer; /* -J flag */ -static int jp_0 = -1, jp_1 = -1; /* ends of parent job pipe */ -Boolean varNoExportEnv; /* -X flag */ -Boolean doing_depend; /* Set while reading .depend */ -static Boolean jobsRunning; /* TRUE if the jobs might be running */ -static const char * tracefile; -#ifndef NO_CHECK_MAKE_CHDIR -static char * Check_Cwd_av(int, char **, int); -#endif -static void MainParseArgs(int, char **); -static int ReadMakefile(const void *, const void *); -static void usage(void) MAKE_ATTR_DEAD; - -static Boolean ignorePWD; /* if we use -C, PWD is meaningless */ -static char objdir[MAXPATHLEN + 1]; /* where we chdir'ed to */ -char curdir[MAXPATHLEN + 1]; /* Startup directory */ -char *progname; /* the program name */ -char *makeDependfile; -pid_t myPid; - -Boolean forceJobs = FALSE; - -/* - * On some systems MACHINE is defined as something other than - * what we want. - */ -#ifdef FORCE_MACHINE -# undef MACHINE -# define MACHINE FORCE_MACHINE -#endif - -extern Lst parseIncPath; - -static void -parse_debug_options(const char *argvalue) -{ - const char *modules; - const char *mode; - char *fname; - int len; - - for (modules = argvalue; *modules; ++modules) { - switch (*modules) { - case 'A': - debug = ~0; - break; - case 'a': - debug |= DEBUG_ARCH; - break; - case 'C': - debug |= DEBUG_CWD; - break; - case 'c': - debug |= DEBUG_COND; - break; - case 'd': - debug |= DEBUG_DIR; - break; - case 'e': - debug |= DEBUG_ERROR; - break; - case 'f': - debug |= DEBUG_FOR; - break; - case 'g': - if (modules[1] == '1') { - debug |= DEBUG_GRAPH1; - ++modules; - } - else if (modules[1] == '2') { - debug |= DEBUG_GRAPH2; - ++modules; - } - else if (modules[1] == '3') { - debug |= DEBUG_GRAPH3; - ++modules; - } - break; - case 'j': - debug |= DEBUG_JOB; - break; - case 'l': - debug |= DEBUG_LOUD; - break; - case 'M': - debug |= DEBUG_META; - break; - case 'm': - debug |= DEBUG_MAKE; - break; - case 'n': - debug |= DEBUG_SCRIPT; - break; - case 'p': - debug |= DEBUG_PARSE; - break; - case 's': - debug |= DEBUG_SUFF; - break; - case 't': - debug |= DEBUG_TARG; - break; - case 'v': - debug |= DEBUG_VAR; - break; - case 'x': - debug |= DEBUG_SHELL; - break; - case 'F': - if (debug_file != stdout && debug_file != stderr) - fclose(debug_file); - if (*++modules == '+') { - modules++; - mode = "a"; - } else - mode = "w"; - if (strcmp(modules, "stdout") == 0) { - debug_file = stdout; - goto debug_setbuf; - } - if (strcmp(modules, "stderr") == 0) { - debug_file = stderr; - goto debug_setbuf; - } - len = strlen(modules); - fname = malloc(len + 20); - memcpy(fname, modules, len + 1); - /* Let the filename be modified by the pid */ - if (strcmp(fname + len - 3, ".%d") == 0) - snprintf(fname + len - 2, 20, "%d", getpid()); - debug_file = fopen(fname, mode); - if (!debug_file) { - fprintf(stderr, "Cannot open debug file %s\n", - fname); - usage(); - } - free(fname); - goto debug_setbuf; - default: - (void)fprintf(stderr, - "%s: illegal argument to d option -- %c\n", - progname, *modules); - usage(); - } - } -debug_setbuf: - /* - * Make the debug_file unbuffered, and make - * stdout line buffered (unless debugfile == stdout). - */ - setvbuf(debug_file, NULL, _IONBF, 0); - if (debug_file != stdout) { - setvbuf(stdout, NULL, _IOLBF, 0); - } -} - -/*- - * MainParseArgs -- - * Parse a given argument vector. Called from main() and from - * Main_ParseArgLine() when the .MAKEFLAGS target is used. - * - * XXX: Deal with command line overriding .MAKEFLAGS in makefile - * - * Results: - * None - * - * Side Effects: - * Various global and local flags will be set depending on the flags - * given - */ -static void -MainParseArgs(int argc, char **argv) -{ - char *p; - int c = '?'; - int arginc; - char *argvalue; - const char *getopt_def; - char *optscan; - Boolean inOption, dashDash = FALSE; - char found_path[MAXPATHLEN + 1]; /* for searching for sys.mk */ - -#define OPTFLAGS "BC:D:I:J:NST:V:WXd:ef:ij:km:nqrst" -/* Can't actually use getopt(3) because rescanning is not portable */ - - getopt_def = OPTFLAGS; -rearg: - inOption = FALSE; - optscan = NULL; - while(argc > 1) { - char *getopt_spec; - if(!inOption) - optscan = argv[1]; - c = *optscan++; - arginc = 0; - if(inOption) { - if(c == '\0') { - ++argv; - --argc; - inOption = FALSE; - continue; - } - } else { - if (c != '-' || dashDash) - break; - inOption = TRUE; - c = *optscan++; - } - /* '-' found at some earlier point */ - getopt_spec = strchr(getopt_def, c); - if(c != '\0' && getopt_spec != NULL && getopt_spec[1] == ':') { - /* - found, and should have an arg */ - inOption = FALSE; - arginc = 1; - argvalue = optscan; - if(*argvalue == '\0') { - if (argc < 3) - goto noarg; - argvalue = argv[2]; - arginc = 2; - } - } else { - argvalue = NULL; - } - switch(c) { - case '\0': - arginc = 1; - inOption = FALSE; - break; - case 'B': - compatMake = TRUE; - Var_Append(MAKEFLAGS, "-B", VAR_GLOBAL); - Var_Set(MAKE_MODE, "compat", VAR_GLOBAL, 0); - break; - case 'C': - if (chdir(argvalue) == -1) { - (void)fprintf(stderr, - "%s: chdir %s: %s\n", - progname, argvalue, - strerror(errno)); - exit(1); - } - if (getcwd(curdir, MAXPATHLEN) == NULL) { - (void)fprintf(stderr, "%s: %s.\n", progname, strerror(errno)); - exit(2); - } - ignorePWD = TRUE; - break; - case 'D': - if (argvalue == NULL || argvalue[0] == 0) goto noarg; - Var_Set(argvalue, "1", VAR_GLOBAL, 0); - Var_Append(MAKEFLAGS, "-D", VAR_GLOBAL); - Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL); - break; - case 'I': - if (argvalue == NULL) goto noarg; - Parse_AddIncludeDir(argvalue); - Var_Append(MAKEFLAGS, "-I", VAR_GLOBAL); - Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL); - break; - case 'J': - if (argvalue == NULL) goto noarg; - if (sscanf(argvalue, "%d,%d", &jp_0, &jp_1) != 2) { - (void)fprintf(stderr, - "%s: internal error -- J option malformed (%s)\n", - progname, argvalue); - usage(); - } - if ((fcntl(jp_0, F_GETFD, 0) < 0) || - (fcntl(jp_1, F_GETFD, 0) < 0)) { -#if 0 - (void)fprintf(stderr, - "%s: ###### warning -- J descriptors were closed!\n", - progname); - exit(2); -#endif - jp_0 = -1; - jp_1 = -1; - compatMake = TRUE; - } else { - Var_Append(MAKEFLAGS, "-J", VAR_GLOBAL); - Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL); - jobServer = TRUE; - } - break; - case 'N': - noExecute = TRUE; - noRecursiveExecute = TRUE; - Var_Append(MAKEFLAGS, "-N", VAR_GLOBAL); - break; - case 'S': - keepgoing = FALSE; - Var_Append(MAKEFLAGS, "-S", VAR_GLOBAL); - break; - case 'T': - if (argvalue == NULL) goto noarg; - tracefile = bmake_strdup(argvalue); - Var_Append(MAKEFLAGS, "-T", VAR_GLOBAL); - Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL); - break; - case 'V': - if (argvalue == NULL) goto noarg; - printVars = TRUE; - (void)Lst_AtEnd(variables, argvalue); - Var_Append(MAKEFLAGS, "-V", VAR_GLOBAL); - Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL); - break; - case 'W': - parseWarnFatal = TRUE; - break; - case 'X': - varNoExportEnv = TRUE; - Var_Append(MAKEFLAGS, "-X", VAR_GLOBAL); - break; - case 'd': - if (argvalue == NULL) goto noarg; - /* If '-d-opts' don't pass to children */ - if (argvalue[0] == '-') - argvalue++; - else { - Var_Append(MAKEFLAGS, "-d", VAR_GLOBAL); - Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL); - } - parse_debug_options(argvalue); - break; - case 'e': - checkEnvFirst = TRUE; - Var_Append(MAKEFLAGS, "-e", VAR_GLOBAL); - break; - case 'f': - if (argvalue == NULL) goto noarg; - (void)Lst_AtEnd(makefiles, argvalue); - break; - case 'i': - ignoreErrors = TRUE; - Var_Append(MAKEFLAGS, "-i", VAR_GLOBAL); - break; - case 'j': - if (argvalue == NULL) goto noarg; - forceJobs = TRUE; - maxJobs = strtol(argvalue, &p, 0); - if (*p != '\0' || maxJobs < 1) { - (void)fprintf(stderr, "%s: illegal argument to -j -- must be positive integer!\n", - progname); - exit(1); - } - Var_Append(MAKEFLAGS, "-j", VAR_GLOBAL); - Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL); - Var_Set(".MAKE.JOBS", argvalue, VAR_GLOBAL, 0); - maxJobTokens = maxJobs; - break; - case 'k': - keepgoing = TRUE; - Var_Append(MAKEFLAGS, "-k", VAR_GLOBAL); - break; - case 'm': - if (argvalue == NULL) goto noarg; - /* look for magic parent directory search string */ - if (strncmp(".../", argvalue, 4) == 0) { - if (!Dir_FindHereOrAbove(curdir, argvalue+4, - found_path, sizeof(found_path))) - break; /* nothing doing */ - (void)Dir_AddDir(sysIncPath, found_path); - } else { - (void)Dir_AddDir(sysIncPath, argvalue); - } - Var_Append(MAKEFLAGS, "-m", VAR_GLOBAL); - Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL); - break; - case 'n': - noExecute = TRUE; - Var_Append(MAKEFLAGS, "-n", VAR_GLOBAL); - break; - case 'q': - queryFlag = TRUE; - /* Kind of nonsensical, wot? */ - Var_Append(MAKEFLAGS, "-q", VAR_GLOBAL); - break; - case 'r': - noBuiltins = TRUE; - Var_Append(MAKEFLAGS, "-r", VAR_GLOBAL); - break; - case 's': - beSilent = TRUE; - Var_Append(MAKEFLAGS, "-s", VAR_GLOBAL); - break; - case 't': - touchFlag = TRUE; - Var_Append(MAKEFLAGS, "-t", VAR_GLOBAL); - break; - case '-': - dashDash = TRUE; - break; - default: - case '?': -#ifndef MAKE_NATIVE - fprintf(stderr, "getopt(%s) -> %d (%c)\n", - OPTFLAGS, c, c); -#endif - usage(); - } - argv += arginc; - argc -= arginc; - } - - oldVars = TRUE; - - /* - * See if the rest of the arguments are variable assignments and - * perform them if so. Else take them to be targets and stuff them - * on the end of the "create" list. - */ - for (; argc > 1; ++argv, --argc) - if (Parse_IsVar(argv[1])) { - Parse_DoVar(argv[1], VAR_CMD); - } else { - if (!*argv[1]) - Punt("illegal (null) argument."); - if (*argv[1] == '-' && !dashDash) - goto rearg; - (void)Lst_AtEnd(create, bmake_strdup(argv[1])); - } - - return; -noarg: - (void)fprintf(stderr, "%s: option requires an argument -- %c\n", - progname, c); - usage(); -} - -/*- - * Main_ParseArgLine -- - * Used by the parse module when a .MFLAGS or .MAKEFLAGS target - * is encountered and by main() when reading the .MAKEFLAGS envariable. - * Takes a line of arguments and breaks it into its - * component words and passes those words and the number of them to the - * MainParseArgs function. - * The line should have all its leading whitespace removed. - * - * Input: - * line Line to fracture - * - * Results: - * None - * - * Side Effects: - * Only those that come from the various arguments. - */ -void -Main_ParseArgLine(const char *line) -{ - char **argv; /* Manufactured argument vector */ - int argc; /* Number of arguments in argv */ - char *args; /* Space used by the args */ - char *buf, *p1; - char *argv0 = Var_Value(".MAKE", VAR_GLOBAL, &p1); - size_t len; - - if (line == NULL) - return; - for (; *line == ' '; ++line) - continue; - if (!*line) - return; - -#ifndef POSIX - { - /* - * $MAKE may simply be naming the make(1) binary - */ - char *cp; - - if (!(cp = strrchr(line, '/'))) - cp = line; - if ((cp = strstr(cp, "make")) && - strcmp(cp, "make") == 0) - return; - } -#endif - buf = bmake_malloc(len = strlen(line) + strlen(argv0) + 2); - (void)snprintf(buf, len, "%s %s", argv0, line); - if (p1) - free(p1); - - argv = brk_string(buf, &argc, TRUE, &args); - if (argv == NULL) { - Error("Unterminated quoted string [%s]", buf); - free(buf); - return; - } - free(buf); - MainParseArgs(argc, argv); - - free(args); - free(argv); -} - -Boolean -Main_SetObjdir(const char *path) -{ - struct stat sb; - char *p = NULL; - char buf[MAXPATHLEN + 1]; - Boolean rc = FALSE; - - /* expand variable substitutions */ - if (strchr(path, '$') != 0) { - snprintf(buf, MAXPATHLEN, "%s", path); - path = p = Var_Subst(NULL, buf, VAR_GLOBAL, 0); - } - - if (path[0] != '/') { - snprintf(buf, MAXPATHLEN, "%s/%s", curdir, path); - path = buf; - } - - /* look for the directory and try to chdir there */ - if (stat(path, &sb) == 0 && S_ISDIR(sb.st_mode)) { - if (chdir(path)) { - (void)fprintf(stderr, "make warning: %s: %s.\n", - path, strerror(errno)); - } else { - strncpy(objdir, path, MAXPATHLEN); - Var_Set(".OBJDIR", objdir, VAR_GLOBAL, 0); - setenv("PWD", objdir, 1); - Dir_InitDot(); - rc = TRUE; - } - } - - if (p) - free(p); - return rc; -} - -/*- - * ReadAllMakefiles -- - * wrapper around ReadMakefile() to read all. - * - * Results: - * TRUE if ok, FALSE on error - */ -static int -ReadAllMakefiles(const void *p, const void *q) -{ - return (ReadMakefile(p, q) == 0); -} - -int -str2Lst_Append(Lst lp, char *str, const char *sep) -{ - char *cp; - int n; - - if (!sep) - sep = " \t"; - - for (n = 0, cp = strtok(str, sep); cp; cp = strtok(NULL, sep)) { - (void)Lst_AtEnd(lp, cp); - n++; - } - return (n); -} - -#ifdef SIGINFO -/*ARGSUSED*/ -static void -siginfo(int signo MAKE_ATTR_UNUSED) -{ - char dir[MAXPATHLEN]; - char str[2 * MAXPATHLEN]; - int len; - if (getcwd(dir, sizeof(dir)) == NULL) - return; - len = snprintf(str, sizeof(str), "%s: Working in: %s\n", progname, dir); - if (len > 0) - (void)write(STDERR_FILENO, str, (size_t)len); -} -#endif - -/* - * Allow makefiles some control over the mode we run in. - */ -void -MakeMode(const char *mode) -{ - char *mp = NULL; - - if (!mode) - mode = mp = Var_Subst(NULL, "${" MAKE_MODE ":tl}", VAR_GLOBAL, 0); - - if (mode && *mode) { - if (strstr(mode, "compat")) { - compatMake = TRUE; - forceJobs = FALSE; - } -#if USE_META - if (strstr(mode, "meta")) - meta_init(mode); -#endif - } - if (mp) - free(mp); -} - -/*- - * main -- - * The main function, for obvious reasons. Initializes variables - * and a few modules, then parses the arguments give it in the - * environment and on the command line. Reads the system makefile - * followed by either Makefile, makefile or the file given by the - * -f argument. Sets the .MAKEFLAGS PMake variable based on all the - * flags it has received by then uses either the Make or the Compat - * module to create the initial list of targets. - * - * Results: - * If -q was given, exits -1 if anything was out-of-date. Else it exits - * 0. - * - * Side Effects: - * The program exits when done. Targets are created. etc. etc. etc. - */ -int -main(int argc, char **argv) -{ - Lst targs; /* target nodes to create -- passed to Make_Init */ - Boolean outOfDate = FALSE; /* FALSE if all targets up to date */ - struct stat sb, sa; - char *p1, *path, *pwd; - char mdpath[MAXPATHLEN]; -#ifdef FORCE_MACHINE - const char *machine = FORCE_MACHINE; -#else - const char *machine = getenv("MACHINE"); -#endif - const char *machine_arch = getenv("MACHINE_ARCH"); - char *syspath = getenv("MAKESYSPATH"); - Lst sysMkPath; /* Path of sys.mk */ - char *cp = NULL, *start; - /* avoid faults on read-only strings */ - static char defsyspath[] = _PATH_DEFSYSPATH; - char found_path[MAXPATHLEN + 1]; /* for searching for sys.mk */ - struct timeval rightnow; /* to initialize random seed */ -#ifdef MAKE_NATIVE - struct utsname utsname; -#endif - - /* default to writing debug to stderr */ - debug_file = stderr; - -#ifdef SIGINFO - (void)bmake_signal(SIGINFO, siginfo); -#endif - /* - * Set the seed to produce a different random sequence - * on each program execution. - */ - gettimeofday(&rightnow, NULL); - srandom(rightnow.tv_sec + rightnow.tv_usec); - - if ((progname = strrchr(argv[0], '/')) != NULL) - progname++; - else - progname = argv[0]; -#ifdef RLIMIT_NOFILE - /* - * get rid of resource limit on file descriptors - */ - { - struct rlimit rl; - if (getrlimit(RLIMIT_NOFILE, &rl) != -1 && - rl.rlim_cur != rl.rlim_max) { - rl.rlim_cur = rl.rlim_max; - (void)setrlimit(RLIMIT_NOFILE, &rl); - } - } -#endif - - /* - * Get the name of this type of MACHINE from utsname - * so we can share an executable for similar machines. - * (i.e. m68k: amiga hp300, mac68k, sun3, ...) - * - * Note that both MACHINE and MACHINE_ARCH are decided at - * run-time. - */ - if (!machine) { -#ifdef MAKE_NATIVE - if (uname(&utsname) == -1) { - (void)fprintf(stderr, "%s: uname failed (%s).\n", progname, - strerror(errno)); - exit(2); - } - machine = utsname.machine; -#else -#ifdef MAKE_MACHINE - machine = MAKE_MACHINE; -#else - machine = "unknown"; -#endif -#endif - } - - if (!machine_arch) { -#ifndef MACHINE_ARCH -#ifdef MAKE_MACHINE_ARCH - machine_arch = MAKE_MACHINE_ARCH; -#else - machine_arch = "unknown"; -#endif -#else - machine_arch = MACHINE_ARCH; -#endif - } - - myPid = getpid(); /* remember this for vFork() */ - - /* - * Just in case MAKEOBJDIR wants us to do something tricky. - */ - Var_Init(); /* Initialize the lists of variables for - * parsing arguments */ - Var_Set("MACHINE", machine, VAR_GLOBAL, 0); - Var_Set("MACHINE_ARCH", machine_arch, VAR_GLOBAL, 0); -#ifdef MAKE_VERSION - Var_Set("MAKE_VERSION", MAKE_VERSION, VAR_GLOBAL, 0); -#endif - Var_Set(".newline", "\n", VAR_GLOBAL, 0); /* handy for :@ loops */ - /* - * This is the traditional preference for makefiles. - */ -#ifndef MAKEFILE_PREFERENCE_LIST -# define MAKEFILE_PREFERENCE_LIST "makefile Makefile" -#endif - Var_Set(MAKEFILE_PREFERENCE, MAKEFILE_PREFERENCE_LIST, - VAR_GLOBAL, 0); - Var_Set(MAKE_DEPENDFILE, ".depend", VAR_GLOBAL, 0); - - create = Lst_Init(FALSE); - makefiles = Lst_Init(FALSE); - printVars = FALSE; - variables = Lst_Init(FALSE); - beSilent = FALSE; /* Print commands as executed */ - ignoreErrors = FALSE; /* Pay attention to non-zero returns */ - noExecute = FALSE; /* Execute all commands */ - noRecursiveExecute = FALSE; /* Execute all .MAKE targets */ - keepgoing = FALSE; /* Stop on error */ - allPrecious = FALSE; /* Remove targets when interrupted */ - queryFlag = FALSE; /* This is not just a check-run */ - noBuiltins = FALSE; /* Read the built-in rules */ - touchFlag = FALSE; /* Actually update targets */ - debug = 0; /* No debug verbosity, please. */ - jobsRunning = FALSE; - - maxJobs = DEFMAXLOCAL; /* Set default local max concurrency */ - maxJobTokens = maxJobs; - compatMake = FALSE; /* No compat mode */ - ignorePWD = FALSE; - - /* - * Initialize the parsing, directory and variable modules to prepare - * for the reading of inclusion paths and variable settings on the - * command line - */ - - /* - * Initialize various variables. - * MAKE also gets this name, for compatibility - * .MAKEFLAGS gets set to the empty string just in case. - * MFLAGS also gets initialized empty, for compatibility. - */ - Parse_Init(); - if (argv[0][0] == '/' || strchr(argv[0], '/') == NULL) { - /* - * Leave alone if it is an absolute path, or if it does - * not contain a '/' in which case we need to find it in - * the path, like execvp(3) and the shells do. - */ - p1 = argv[0]; - } else { - /* - * A relative path, canonicalize it. - */ - p1 = realpath(argv[0], mdpath); - if (!p1 || *p1 != '/' || stat(p1, &sb) < 0) { - p1 = argv[0]; /* realpath failed */ - } - } - Var_Set("MAKE", p1, VAR_GLOBAL, 0); - Var_Set(".MAKE", p1, VAR_GLOBAL, 0); - Var_Set(MAKEFLAGS, "", VAR_GLOBAL, 0); - Var_Set(MAKEOVERRIDES, "", VAR_GLOBAL, 0); - Var_Set("MFLAGS", "", VAR_GLOBAL, 0); - Var_Set(".ALLTARGETS", "", VAR_GLOBAL, 0); - - /* - * Set some other useful macros - */ - { - char tmp[64]; - const char *ep; - - if (!(ep = getenv(MAKE_LEVEL))) { -#ifdef MAKE_LEVEL_SAFE - if (!(ep = getenv(MAKE_LEVEL_SAFE))) -#endif - ep = "0"; - } - Var_Set(MAKE_LEVEL, ep, VAR_GLOBAL, 0); - snprintf(tmp, sizeof(tmp), "%u", myPid); - Var_Set(".MAKE.PID", tmp, VAR_GLOBAL, 0); - snprintf(tmp, sizeof(tmp), "%u", getppid()); - Var_Set(".MAKE.PPID", tmp, VAR_GLOBAL, 0); - } - Job_SetPrefix(); - - /* - * First snag any flags out of the MAKE environment variable. - * (Note this is *not* MAKEFLAGS since /bin/make uses that and it's - * in a different format). - */ -#ifdef POSIX - Main_ParseArgLine(getenv("MAKEFLAGS")); -#else - Main_ParseArgLine(getenv("MAKE")); -#endif - - /* - * Find where we are (now). - * We take care of PWD for the automounter below... - */ - if (getcwd(curdir, MAXPATHLEN) == NULL) { - (void)fprintf(stderr, "%s: getcwd: %s.\n", - progname, strerror(errno)); - exit(2); - } - - MainParseArgs(argc, argv); - - /* - * Verify that cwd is sane. - */ - if (stat(curdir, &sa) == -1) { - (void)fprintf(stderr, "%s: %s: %s.\n", - progname, curdir, strerror(errno)); - exit(2); - } - - /* - * All this code is so that we know where we are when we start up - * on a different machine with pmake. - * Overriding getcwd() with $PWD totally breaks MAKEOBJDIRPREFIX - * since the value of curdir can vary depending on how we got - * here. Ie sitting at a shell prompt (shell that provides $PWD) - * or via subdir.mk in which case its likely a shell which does - * not provide it. - * So, to stop it breaking this case only, we ignore PWD if - * MAKEOBJDIRPREFIX is set or MAKEOBJDIR contains a transform. - */ -#ifndef NO_PWD_OVERRIDE - if (!ignorePWD && - (pwd = getenv("PWD")) != NULL && - getenv("MAKEOBJDIRPREFIX") == NULL) { - const char *makeobjdir = getenv("MAKEOBJDIR"); - - if (makeobjdir == NULL || !strchr(makeobjdir, '$')) { - if (stat(pwd, &sb) == 0 && sa.st_ino == sb.st_ino && - sa.st_dev == sb.st_dev) - (void)strncpy(curdir, pwd, MAXPATHLEN); - } - } -#endif - Var_Set(".CURDIR", curdir, VAR_GLOBAL, 0); - - /* - * Find the .OBJDIR. If MAKEOBJDIRPREFIX, or failing that, - * MAKEOBJDIR is set in the environment, try only that value - * and fall back to .CURDIR if it does not exist. - * - * Otherwise, try _PATH_OBJDIR.MACHINE, _PATH_OBJDIR, and - * finally _PATH_OBJDIRPREFIX`pwd`, in that order. If none - * of these paths exist, just use .CURDIR. - */ - Dir_Init(curdir); - (void)Main_SetObjdir(curdir); - - if ((path = getenv("MAKEOBJDIRPREFIX")) != NULL) { - (void)snprintf(mdpath, MAXPATHLEN, "%s%s", path, curdir); - (void)Main_SetObjdir(mdpath); - } else if ((path = getenv("MAKEOBJDIR")) != NULL) { - (void)Main_SetObjdir(path); - } else { - (void)snprintf(mdpath, MAXPATHLEN, "%s.%s", _PATH_OBJDIR, machine); - if (!Main_SetObjdir(mdpath) && !Main_SetObjdir(_PATH_OBJDIR)) { - (void)snprintf(mdpath, MAXPATHLEN, "%s%s", - _PATH_OBJDIRPREFIX, curdir); - (void)Main_SetObjdir(mdpath); - } - } - - /* - * Be compatible if user did not specify -j and did not explicitly - * turned compatibility on - */ - if (!compatMake && !forceJobs) { - compatMake = TRUE; - } - - /* - * Initialize archive, target and suffix modules in preparation for - * parsing the makefile(s) - */ - Arch_Init(); - Targ_Init(); - Suff_Init(); - Trace_Init(tracefile); - - DEFAULT = NULL; - (void)time(&now); - - Trace_Log(MAKESTART, NULL); - - /* - * Set up the .TARGETS variable to contain the list of targets to be - * created. If none specified, make the variable empty -- the parser - * will fill the thing in with the default or .MAIN target. - */ - if (!Lst_IsEmpty(create)) { - LstNode ln; - - for (ln = Lst_First(create); ln != NULL; - ln = Lst_Succ(ln)) { - char *name = (char *)Lst_Datum(ln); - - Var_Append(".TARGETS", name, VAR_GLOBAL); - } - } else - Var_Set(".TARGETS", "", VAR_GLOBAL, 0); - - - /* - * If no user-supplied system path was given (through the -m option) - * add the directories from the DEFSYSPATH (more than one may be given - * as dir1:...:dirn) to the system include path. - */ - if (syspath == NULL || *syspath == '\0') - syspath = defsyspath; - else - syspath = bmake_strdup(syspath); - - for (start = syspath; *start != '\0'; start = cp) { - for (cp = start; *cp != '\0' && *cp != ':'; cp++) - continue; - if (*cp == ':') { - *cp++ = '\0'; - } - /* look for magic parent directory search string */ - if (strncmp(".../", start, 4) != 0) { - (void)Dir_AddDir(defIncPath, start); - } else { - if (Dir_FindHereOrAbove(curdir, start+4, - found_path, sizeof(found_path))) { - (void)Dir_AddDir(defIncPath, found_path); - } - } - } - if (syspath != defsyspath) - free(syspath); - - /* - * Read in the built-in rules first, followed by the specified - * makefile, if it was (makefile != NULL), or the default - * makefile and Makefile, in that order, if it wasn't. - */ - if (!noBuiltins) { - LstNode ln; - - sysMkPath = Lst_Init(FALSE); - Dir_Expand(_PATH_DEFSYSMK, - Lst_IsEmpty(sysIncPath) ? defIncPath : sysIncPath, - sysMkPath); - if (Lst_IsEmpty(sysMkPath)) - Fatal("%s: no system rules (%s).", progname, - _PATH_DEFSYSMK); - ln = Lst_Find(sysMkPath, NULL, ReadMakefile); - if (ln == NULL) - Fatal("%s: cannot open %s.", progname, - (char *)Lst_Datum(ln)); - } - - if (!Lst_IsEmpty(makefiles)) { - LstNode ln; - - ln = Lst_Find(makefiles, NULL, ReadAllMakefiles); - if (ln != NULL) - Fatal("%s: cannot open %s.", progname, - (char *)Lst_Datum(ln)); - } else { - p1 = Var_Subst(NULL, "${" MAKEFILE_PREFERENCE "}", - VAR_CMD, 0); - if (p1) { - (void)str2Lst_Append(makefiles, p1, NULL); - (void)Lst_Find(makefiles, NULL, ReadMakefile); - free(p1); - } - } - - /* In particular suppress .depend for '-r -V .OBJDIR -f /dev/null' */ - if (!noBuiltins || !printVars) { - makeDependfile = Var_Subst(NULL, "${.MAKE.DEPENDFILE:T}", - VAR_CMD, 0); - doing_depend = TRUE; - (void)ReadMakefile(makeDependfile, NULL); - doing_depend = FALSE; - } - - MakeMode(NULL); - - Var_Append("MFLAGS", Var_Value(MAKEFLAGS, VAR_GLOBAL, &p1), VAR_GLOBAL); - if (p1) - free(p1); - - if (!compatMake) - Job_ServerStart(maxJobTokens, jp_0, jp_1); - if (DEBUG(JOB)) - fprintf(debug_file, "job_pipe %d %d, maxjobs %d, tokens %d, compat %d\n", - jp_0, jp_1, maxJobs, maxJobTokens, compatMake); - - Main_ExportMAKEFLAGS(TRUE); /* initial export */ - -#ifndef NO_CHECK_MAKE_CHDIR - Check_Cwd_av(0, NULL, 0); /* initialize it */ -#endif - - /* - * For compatibility, look at the directories in the VPATH variable - * and add them to the search path, if the variable is defined. The - * variable's value is in the same format as the PATH envariable, i.e. - * ::... - */ - if (Var_Exists("VPATH", VAR_CMD)) { - char *vpath, savec; - /* - * GCC stores string constants in read-only memory, but - * Var_Subst will want to write this thing, so store it - * in an array - */ - static char VPATH[] = "${VPATH}"; - - vpath = Var_Subst(NULL, VPATH, VAR_CMD, FALSE); - path = vpath; - do { - /* skip to end of directory */ - for (cp = path; *cp != ':' && *cp != '\0'; cp++) - continue; - /* Save terminator character so know when to stop */ - savec = *cp; - *cp = '\0'; - /* Add directory to search path */ - (void)Dir_AddDir(dirSearchPath, path); - *cp = savec; - path = cp + 1; - } while (savec == ':'); - free(vpath); - } - - /* - * Now that all search paths have been read for suffixes et al, it's - * time to add the default search path to their lists... - */ - Suff_DoPaths(); - - /* - * Propagate attributes through :: dependency lists. - */ - Targ_Propagate(); - - /* print the initial graph, if the user requested it */ - if (DEBUG(GRAPH1)) - Targ_PrintGraph(1); - - /* print the values of any variables requested by the user */ - if (printVars) { - LstNode ln; - - for (ln = Lst_First(variables); ln != NULL; - ln = Lst_Succ(ln)) { - char *var = (char *)Lst_Datum(ln); - char *value; - - if (strchr(var, '$')) { - value = p1 = Var_Subst(NULL, var, VAR_GLOBAL, 0); - } else { - value = Var_Value(var, VAR_GLOBAL, &p1); - } - printf("%s\n", value ? value : ""); - if (p1) - free(p1); - } - } else { - /* - * Have now read the entire graph and need to make a list of - * targets to create. If none was given on the command line, - * we consult the parsing module to find the main target(s) - * to create. - */ - if (Lst_IsEmpty(create)) - targs = Parse_MainName(); - else - targs = Targ_FindList(create, TARG_CREATE); - - if (!compatMake) { - /* - * Initialize job module before traversing the graph - * now that any .BEGIN and .END targets have been read. - * This is done only if the -q flag wasn't given - * (to prevent the .BEGIN from being executed should - * it exist). - */ - if (!queryFlag) { - Job_Init(); - jobsRunning = TRUE; - } - - /* Traverse the graph, checking on all the targets */ - outOfDate = Make_Run(targs); - } else { - /* - * Compat_Init will take care of creating all the - * targets as well as initializing the module. - */ - Compat_Run(targs); - } - } - -#ifdef CLEANUP - Lst_Destroy(targs, NULL); - Lst_Destroy(variables, NULL); - Lst_Destroy(makefiles, NULL); - Lst_Destroy(create, (FreeProc *)free); -#endif - - /* print the graph now it's been processed if the user requested it */ - if (DEBUG(GRAPH2)) - Targ_PrintGraph(2); - - Trace_Log(MAKEEND, 0); - - Suff_End(); - Targ_End(); - Arch_End(); - Var_End(); - Parse_End(); - Dir_End(); - Job_End(); - Trace_End(); - - return outOfDate ? 1 : 0; -} - -/*- - * ReadMakefile -- - * Open and parse the given makefile. - * - * Results: - * 0 if ok. -1 if couldn't open file. - * - * Side Effects: - * lots - */ -static int -ReadMakefile(const void *p, const void *q MAKE_ATTR_UNUSED) -{ - const char *fname = p; /* makefile to read */ - int fd; - size_t len = MAXPATHLEN; - char *name, *path = bmake_malloc(len); - - if (!strcmp(fname, "-")) { - Parse_File(NULL /*stdin*/, -1); - Var_Set("MAKEFILE", "", VAR_GLOBAL, 0); - } else { - /* if we've chdir'd, rebuild the path name */ - if (strcmp(curdir, objdir) && *fname != '/') { - size_t plen = strlen(curdir) + strlen(fname) + 2; - if (len < plen) - path = bmake_realloc(path, len = 2 * plen); - - (void)snprintf(path, len, "%s/%s", curdir, fname); - fd = open(path, O_RDONLY); - if (fd != -1) { - fname = path; - goto found; - } - - /* If curdir failed, try objdir (ala .depend) */ - plen = strlen(objdir) + strlen(fname) + 2; - if (len < plen) - path = bmake_realloc(path, len = 2 * plen); - (void)snprintf(path, len, "%s/%s", objdir, fname); - fd = open(path, O_RDONLY); - if (fd != -1) { - fname = path; - goto found; - } - } else { - fd = open(fname, O_RDONLY); - if (fd != -1) - goto found; - } - /* look in -I and system include directories. */ - name = Dir_FindFile(fname, parseIncPath); - if (!name) - name = Dir_FindFile(fname, - Lst_IsEmpty(sysIncPath) ? defIncPath : sysIncPath); - if (!name || (fd = open(name, O_RDONLY)) == -1) { - if (name) - free(name); - free(path); - return(-1); - } - fname = name; - /* - * set the MAKEFILE variable desired by System V fans -- the - * placement of the setting here means it gets set to the last - * makefile specified, as it is set by SysV make. - */ -found: - if (!doing_depend) - Var_Set("MAKEFILE", fname, VAR_GLOBAL, 0); - Parse_File(fname, fd); - } - free(path); - return(0); -} - - -/* - * If MAKEOBJDIRPREFIX is in use, make ends up not in .CURDIR - * in situations that would not arrise with ./obj (links or not). - * This tends to break things like: - * - * build: - * ${MAKE} includes - * - * This function spots when ${.MAKE:T} or ${.MAKE} is a command (as - * opposed to an argument) in a command line and if so returns - * ${.CURDIR} so caller can chdir() so that the assumptions made by - * the Makefile hold true. - * - * If ${.MAKE} does not contain any '/', then ${.MAKE:T} is skipped. - * - * The chdir() only happens in the child process, and does nothing if - * MAKEOBJDIRPREFIX and MAKEOBJDIR are not in the environment so it - * should not break anything. Also if NOCHECKMAKECHDIR is set we - * do nothing - to ensure historic semantics can be retained. - */ -#ifdef NO_CHECK_MAKE_CHDIR -char * -Check_Cwd_Cmd(cmd) - char *cmd; -{ - return 0; -} - -void -Check_Cwd(argv) - char **argv; -{ - return; -} - -#else - -static int Check_Cwd_Off = 0; - -static char * -Check_Cwd_av(int ac, char **av, int copy) -{ - static char *make[4]; - static char *cur_dir = NULL; - char **mp; - char *cp; - int is_cmd, next_cmd; - int i; - int n; - - if (Check_Cwd_Off) { - if (DEBUG(CWD)) - fprintf(debug_file, "check_cwd: check is off.\n"); - return NULL; - } - - if (make[0] == NULL) { - if (Var_Exists("NOCHECKMAKECHDIR", VAR_GLOBAL)) { - Check_Cwd_Off = 1; - if (DEBUG(CWD)) - fprintf(debug_file, "check_cwd: turning check off.\n"); - return NULL; - } - - make[1] = Var_Value(".MAKE", VAR_GLOBAL, &cp); - if ((make[0] = strrchr(make[1], '/')) == NULL) { - make[0] = make[1]; - make[1] = NULL; - } else - ++make[0]; - make[2] = NULL; - cur_dir = Var_Value(".CURDIR", VAR_GLOBAL, &cp); - } - if (ac == 0 || av == NULL) { - if (DEBUG(CWD)) - fprintf(debug_file, "check_cwd: empty command.\n"); - return NULL; /* initialization only */ - } - - if (getenv("MAKEOBJDIR") == NULL && - getenv("MAKEOBJDIRPREFIX") == NULL) { - if (DEBUG(CWD)) - fprintf(debug_file, "check_cwd: no obj dirs.\n"); - return NULL; - } - - - next_cmd = 1; - for (i = 0; i < ac; ++i) { - is_cmd = next_cmd; - - n = strlen(av[i]); - cp = &(av[i])[n - 1]; - if (strspn(av[i], "|&;") == (size_t)n) { - next_cmd = 1; - continue; - } else if (*cp == ';' || *cp == '&' || *cp == '|' || *cp == ')') { - next_cmd = 1; - if (copy) { - do { - *cp-- = '\0'; - } while (*cp == ';' || *cp == '&' || *cp == '|' || - *cp == ')' || *cp == '}') ; - } else { - /* - * XXX this should not happen. - */ - fprintf(stderr, "%s: WARNING: raw arg ends in shell meta '%s'\n", - progname, av[i]); - } - } else - next_cmd = 0; - - cp = av[i]; - if (*cp == ';' || *cp == '&' || *cp == '|') - is_cmd = 1; - - if (DEBUG(CWD)) - fprintf(debug_file, "av[%d] == %s '%s'", - i, (is_cmd) ? "cmd" : "arg", av[i]); - if (is_cmd != 0) { - if (*cp == '(' || *cp == '{' || - *cp == ';' || *cp == '&' || *cp == '|') { - do { - ++cp; - } while (*cp == '(' || *cp == '{' || - *cp == ';' || *cp == '&' || *cp == '|'); - if (*cp == '\0') { - next_cmd = 1; - continue; - } - } - if (strcmp(cp, "cd") == 0 || strcmp(cp, "chdir") == 0) { - if (DEBUG(CWD)) - fprintf(debug_file, " == cd, done.\n"); - return NULL; - } - for (mp = make; *mp != NULL; ++mp) { - n = strlen(*mp); - if (strcmp(cp, *mp) == 0) { - if (DEBUG(CWD)) - fprintf(debug_file, " %s == '%s', chdir(%s)\n", - cp, *mp, cur_dir); - return cur_dir; - } - } - } - if (DEBUG(CWD)) - fprintf(debug_file, "\n"); - } - return NULL; -} - -char * -Check_Cwd_Cmd(const char *cmd) -{ - char *cp, *bp; - char **av; - int ac; - - if (Check_Cwd_Off) - return NULL; - - if (cmd) { - av = brk_string(cmd, &ac, TRUE, &bp); - if (DEBUG(CWD)) - fprintf(debug_file, "splitting: '%s' -> %d words\n", - cmd, ac); - } else { - ac = 0; - av = NULL; - bp = NULL; - } - cp = Check_Cwd_av(ac, av, 1); - if (bp) - free(bp); - if (av) - free(av); - return cp; -} - -void -Check_Cwd(const char **argv) -{ - char *cp; - int ac; - - if (Check_Cwd_Off) - return; - - for (ac = 0; argv[ac] != NULL; ++ac) - /* NOTHING */; - if (ac == 3 && *argv[1] == '-') { - cp = Check_Cwd_Cmd(argv[2]); - } else { - cp = Check_Cwd_av(ac, UNCONST(argv), 0); - } - if (cp) { - chdir(cp); - } -} -#endif /* NO_CHECK_MAKE_CHDIR */ - -/*- - * Cmd_Exec -- - * Execute the command in cmd, and return the output of that command - * in a string. - * - * Results: - * A string containing the output of the command, or the empty string - * If errnum is not NULL, it contains the reason for the command failure - * - * Side Effects: - * The string must be freed by the caller. - */ -char * -Cmd_Exec(const char *cmd, const char **errnum) -{ - const char *args[4]; /* Args for invoking the shell */ - int fds[2]; /* Pipe streams */ - int cpid; /* Child PID */ - int pid; /* PID from wait() */ - char *res; /* result */ - WAIT_T status; /* command exit status */ - Buffer buf; /* buffer to store the result */ - char *cp; - int cc; - - - *errnum = NULL; - - if (!shellName) - Shell_Init(); - /* - * Set up arguments for shell - */ - args[0] = shellName; - args[1] = "-c"; - args[2] = cmd; - args[3] = NULL; - - /* - * Open a pipe for fetching its output - */ - if (pipe(fds) == -1) { - *errnum = "Couldn't create pipe for \"%s\""; - goto bad; - } - - /* - * Fork - */ - switch (cpid = vFork()) { - case 0: - /* - * Close input side of pipe - */ - (void)close(fds[0]); - - /* - * Duplicate the output stream to the shell's output, then - * shut the extra thing down. Note we don't fetch the error - * stream...why not? Why? - */ - (void)dup2(fds[1], 1); - (void)close(fds[1]); - - Var_ExportVars(); - - (void)execv(shellPath, UNCONST(args)); - _exit(1); - /*NOTREACHED*/ - - case -1: - *errnum = "Couldn't exec \"%s\""; - goto bad; - - default: - /* - * No need for the writing half - */ - (void)close(fds[1]); - - Buf_Init(&buf, 0); - - do { - char result[BUFSIZ]; - cc = read(fds[0], result, sizeof(result)); - if (cc > 0) - Buf_AddBytes(&buf, cc, result); - } - while (cc > 0 || (cc == -1 && errno == EINTR)); - - /* - * Close the input side of the pipe. - */ - (void)close(fds[0]); - - /* - * Wait for the process to exit. - */ - while(((pid = waitpid(cpid, &status, 0)) != cpid) && (pid >= 0)) { - JobReapChild(pid, status, FALSE); - continue; - } - cc = Buf_Size(&buf); - res = Buf_Destroy(&buf, FALSE); - - if (cc == 0) - *errnum = "Couldn't read shell's output for \"%s\""; - - if (WIFSIGNALED(status)) - *errnum = "\"%s\" exited on a signal"; - else if (WEXITSTATUS(status) != 0) - *errnum = "\"%s\" returned non-zero status"; - - /* - * Null-terminate the result, convert newlines to spaces and - * install it in the variable. - */ - res[cc] = '\0'; - cp = &res[cc]; - - if (cc > 0 && *--cp == '\n') { - /* - * A final newline is just stripped - */ - *cp-- = '\0'; - } - while (cp >= res) { - if (*cp == '\n') { - *cp = ' '; - } - cp--; - } - break; - } - return res; -bad: - res = bmake_malloc(1); - *res = '\0'; - return res; -} - -/*- - * Error -- - * Print an error message given its format. - * - * Results: - * None. - * - * Side Effects: - * The message is printed. - */ -/* VARARGS */ -void -Error(const char *fmt, ...) -{ - va_list ap; - FILE *err_file; - - err_file = debug_file; - if (err_file == stdout) - err_file = stderr; - (void)fflush(stdout); - for (;;) { - va_start(ap, fmt); - fprintf(err_file, "%s: ", progname); - (void)vfprintf(err_file, fmt, ap); - va_end(ap); - (void)fprintf(err_file, "\n"); - (void)fflush(err_file); - if (err_file == stderr) - break; - err_file = stderr; - } -} - -/*- - * Fatal -- - * Produce a Fatal error message. If jobs are running, waits for them - * to finish. - * - * Results: - * None - * - * Side Effects: - * The program exits - */ -/* VARARGS */ -void -Fatal(const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - if (jobsRunning) - Job_Wait(); - - (void)fflush(stdout); - (void)vfprintf(stderr, fmt, ap); - va_end(ap); - (void)fprintf(stderr, "\n"); - (void)fflush(stderr); - - PrintOnError(NULL, NULL); - - if (DEBUG(GRAPH2) || DEBUG(GRAPH3)) - Targ_PrintGraph(2); - Trace_Log(MAKEERROR, 0); - exit(2); /* Not 1 so -q can distinguish error */ -} - -/* - * Punt -- - * Major exception once jobs are being created. Kills all jobs, prints - * a message and exits. - * - * Results: - * None - * - * Side Effects: - * All children are killed indiscriminately and the program Lib_Exits - */ -/* VARARGS */ -void -Punt(const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - (void)fflush(stdout); - (void)fprintf(stderr, "%s: ", progname); - (void)vfprintf(stderr, fmt, ap); - va_end(ap); - (void)fprintf(stderr, "\n"); - (void)fflush(stderr); - - PrintOnError(NULL, NULL); - - DieHorribly(); -} - -/*- - * DieHorribly -- - * Exit without giving a message. - * - * Results: - * None - * - * Side Effects: - * A big one... - */ -void -DieHorribly(void) -{ - if (jobsRunning) - Job_AbortAll(); - if (DEBUG(GRAPH2)) - Targ_PrintGraph(2); - Trace_Log(MAKEERROR, 0); - exit(2); /* Not 1, so -q can distinguish error */ -} - -/* - * Finish -- - * Called when aborting due to errors in child shell to signal - * abnormal exit. - * - * Results: - * None - * - * Side Effects: - * The program exits - */ -void -Finish(int errors) - /* number of errors encountered in Make_Make */ -{ - Fatal("%d error%s", errors, errors == 1 ? "" : "s"); -} - -/* - * enunlink -- - * Remove a file carefully, avoiding directories. - */ -int -eunlink(const char *file) -{ - struct stat st; - - if (lstat(file, &st) == -1) - return -1; - - if (S_ISDIR(st.st_mode)) { - errno = EISDIR; - return -1; - } - return unlink(file); -} - -/* - * execError -- - * Print why exec failed, avoiding stdio. - */ -void -execError(const char *af, const char *av) -{ -#ifdef USE_IOVEC - int i = 0; - struct iovec iov[8]; -#define IOADD(s) \ - (void)(iov[i].iov_base = UNCONST(s), \ - iov[i].iov_len = strlen(iov[i].iov_base), \ - i++) -#else -#define IOADD(s) (void)write(2, s, strlen(s)) -#endif - - IOADD(progname); - IOADD(": "); - IOADD(af); - IOADD("("); - IOADD(av); - IOADD(") failed ("); - IOADD(strerror(errno)); - IOADD(")\n"); - -#ifdef USE_IOVEC - (void)writev(2, iov, 8); -#endif -} - -/* - * usage -- - * exit with usage message - */ -static void -usage(void) -{ - (void)fprintf(stderr, -"usage: %s [-BeikNnqrstWX] \n\ - [-C directory] [-D variable] [-d flags] [-f makefile]\n\ - [-I directory] [-J private] [-j max_jobs] [-m directory] [-T file]\n\ - [-V variable] [variable=value] [target ...]\n", progname); - exit(2); -} - - -int -PrintAddr(void *a, void *b) -{ - printf("%lx ", (unsigned long) a); - return b ? 0 : 0; -} - - - -void -PrintOnError(GNode *gn, const char *s) -{ - static GNode *en = NULL; - char tmp[64]; - char *cp; - - if (s) - printf("%s", s); - - printf("\n%s: stopped in %s\n", progname, curdir); - - if (en) - return; /* we've been here! */ - if (gn) { - /* - * We can print this even if there is no .ERROR target. - */ - Var_Set(".ERROR_TARGET", gn->name, VAR_GLOBAL, 0); - } - strncpy(tmp, "${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'\n@}", - sizeof(tmp) - 1); - cp = Var_Subst(NULL, tmp, VAR_GLOBAL, 0); - if (cp) { - if (*cp) - printf("%s", cp); - free(cp); - } - /* - * Finally, see if there is a .ERROR target, and run it if so. - */ - en = Targ_FindNode(".ERROR", TARG_NOCREATE); - if (en) { - en->type |= OP_SPECIAL; - Compat_Make(en, en); - } -} - -void -Main_ExportMAKEFLAGS(Boolean first) -{ - static int once = 1; - char tmp[64]; - char *s; - - if (once != first) - return; - once = 0; - - strncpy(tmp, "${.MAKEFLAGS} ${.MAKEOVERRIDES:O:u:@v@$v=${$v:Q}@}", - sizeof(tmp)); - s = Var_Subst(NULL, tmp, VAR_CMD, 0); - if (s && *s) { -#ifdef POSIX - setenv("MAKEFLAGS", s, 1); -#else - setenv("MAKE", s, 1); -#endif - } -} - -char * -getTmpdir(void) -{ - static char *tmpdir = NULL; - - if (!tmpdir) { - struct stat st; - - /* - * Honor $TMPDIR but only if it is valid. - * Ensure it ends with /. - */ - tmpdir = Var_Subst(NULL, "${TMPDIR:tA:U" _PATH_TMP "}/", VAR_GLOBAL, 0); - if (stat(tmpdir, &st) < 0 || !S_ISDIR(st.st_mode)) { - free(tmpdir); - tmpdir = bmake_strdup(_PATH_TMP); - } - } - return tmpdir; -} - -/* - * Create and open a temp file using "pattern". - * If "fnamep" is provided set it to a copy of the filename created. - * Otherwise unlink the file once open. - */ -int -mkTempFile(const char *pattern, char **fnamep) -{ - static char *tmpdir = NULL; - char tfile[MAXPATHLEN]; - int fd; - - if (!pattern) - pattern = TMPPAT; - if (!tmpdir) - tmpdir = getTmpdir(); - if (pattern[0] == '/') { - snprintf(tfile, sizeof(tfile), "%s", pattern); - } else { - snprintf(tfile, sizeof(tfile), "%s%s", tmpdir, pattern); - } - if ((fd = mkstemp(tfile)) < 0) - Punt("Could not create temporary file %s: %s", tfile, strerror(errno)); - if (fnamep) { - *fnamep = bmake_strdup(tfile); - } else { - unlink(tfile); /* we just want the descriptor */ - } - return fd; -} diff --git a/external/bsd/bmake/dist/make-bootstrap.sh.in b/external/bsd/bmake/dist/make-bootstrap.sh.in deleted file mode 100755 index d9ff9ff961a0..000000000000 --- a/external/bsd/bmake/dist/make-bootstrap.sh.in +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh - -set -e - -srcdir=@srcdir@ - -DEFAULT_SYS_PATH="@default_sys_path@" - -case "@use_meta@" in -yes) XDEFS="-DUSE_META ${XDEFS}";; -esac - -CC="@CC@" -CFLAGS="@CFLAGS@ -I. -I${srcdir} @DEFS@ @CPPFLAGS@ -DMAKE_NATIVE ${XDEFS}" - -MAKE_VERSION=`sed -n '/^MAKE_VERSION=/s,.*=[^0-9]*,,p' Makefile` - -MDEFS="-DMAKE_VERSION=\"$MAKE_VERSION\" \ --D@force_machine@MACHINE=\"@machine@\" -DMACHINE_ARCH=\"@machine_arch@\" \ --D_PATH_DEFSYSPATH=\"${DEFAULT_SYS_PATH}\"" - - -LDFLAGS="@LDFLAGS@" -LIBS="@LIBS@" - -do_compile2() { - obj="$1"; shift - src="$1"; shift - echo ${CC} -c ${CFLAGS} "$@" -o "$obj" "$src" - ${CC} -c ${CFLAGS} "$@" -o "$obj" "$src" -} - -do_compile() { - obj="$1"; shift - src=`basename "$obj" .o`.c - - for d in "$srcdir" "$srcdir/lst.lib" - do - test -s "$d/$src" || continue - - do_compile2 "$obj" "$d/$src" "$@" || exit 1 - return - done - echo "Unknown object file '$obj'" >&2 - exit 1 -} - -do_link() { - output="$1"; shift - echo ${CC} ${LDSTATIC} ${LDFLAGS} -o "$output" "$@" ${LIBS} - ${CC} ${LDSTATIC} ${LDFLAGS} -o "$output" "$@" ${LIBS} -} - -BASE_OBJECTS="arch.o buf.o compat.o cond.o dir.o for.o getopt hash.o \ -job.o make.o make_malloc.o parse.o sigcompat.o str.o strlist.o \ -suff.o targ.o trace.o var.o util.o" - -LST_OBJECTS="lstAppend.o lstDupl.o lstInit.o lstOpen.o \ -lstAtEnd.o lstEnQueue.o lstInsert.o lstAtFront.o lstIsAtEnd.o \ -lstClose.o lstFind.o lstIsEmpty.o lstRemove.o lstConcat.o \ -lstFindFrom.o lstLast.o lstReplace.o lstFirst.o lstDatum.o \ -lstForEach.o lstMember.o lstSucc.o lstDeQueue.o lstForEachFrom.o \ -lstDestroy.o lstNext.o lstPrev.o" - -LIB_OBJECTS="@LIBOBJS@" - -do_compile main.o ${MDEFS} - -for o in ${BASE_OBJECTS} ${LST_OBJECTS} ${LIB_OBJECTS} -do - do_compile "$o" -done - -case "@use_meta@" in -yes) - case "@filemon_h@" in - */filemon.h) FDEFS="-DHAVE_FILEMON_H -I`dirname @filemon_h@`";; - esac - do_compile meta.o ${FDEFS} - BASE_OBJECTS="meta.o ${BASE_OBJECTS}" - ;; -esac - -do_link bmake main.o ${BASE_OBJECTS} ${LST_OBJECTS} ${LIB_OBJECTS} diff --git a/external/bsd/bmake/dist/make-conf.h b/external/bsd/bmake/dist/make-conf.h deleted file mode 100644 index a85b86d3efb5..000000000000 --- a/external/bsd/bmake/dist/make-conf.h +++ /dev/null @@ -1,162 +0,0 @@ -/* $NetBSD: config.h,v 1.21 2012/03/31 00:12:24 christos Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)config.h 8.1 (Berkeley) 6/6/93 - */ - -/* - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)config.h 8.1 (Berkeley) 6/6/93 - */ - -/* - * DEFMAXJOBS - * DEFMAXLOCAL - * These control the default concurrency. On no occasion will more - * than DEFMAXJOBS targets be created at once (locally or remotely) - * DEFMAXLOCAL is the highest number of targets which will be - * created on the local machine at once. Note that if you set this - * to 0, nothing will ever happen... - */ -#define DEFMAXJOBS 4 -#define DEFMAXLOCAL 1 - -/* - * INCLUDES - * LIBRARIES - * These control the handling of the .INCLUDES and .LIBS variables. - * If INCLUDES is defined, the .INCLUDES variable will be filled - * from the search paths of those suffixes which are marked by - * .INCLUDES dependency lines. Similarly for LIBRARIES and .LIBS - * See suff.c for more details. - */ -#define INCLUDES -#define LIBRARIES - -/* - * LIBSUFF - * Is the suffix used to denote libraries and is used by the Suff module - * to find the search path on which to seek any -l targets. - * - * RECHECK - * If defined, Make_Update will check a target for its current - * modification time after it has been re-made, setting it to the - * starting time of the make only if the target still doesn't exist. - * Unfortunately, under NFS the modification time often doesn't - * get updated in time, so a target will appear to not have been - * re-made, causing later targets to appear up-to-date. On systems - * that don't have this problem, you should defined this. Under - * NFS you probably should not, unless you aren't exporting jobs. - */ -#define LIBSUFF ".a" -#define RECHECK - -/* - * POSIX - * Adhere to the POSIX 1003.2 draft for the make(1) program. - * - Use MAKEFLAGS instead of MAKE to pick arguments from the - * environment. - * - Allow empty command lines if starting with tab. - */ -#define POSIX - -/* - * SYSVINCLUDE - * Recognize system V like include directives [include "filename"] - * SYSVVARSUB - * Recognize system V like ${VAR:x=y} variable substitutions - */ -#define SYSVINCLUDE -#define SYSVVARSUB - -/* - * GMAKEEXPORT - * Recognize gmake like variable export directives [export =] - */ -#define GMAKEEXPORT - -/* - * SUNSHCMD - * Recognize SunOS and Solaris: - * VAR :sh= CMD # Assign VAR to the command substitution of CMD - * ${VAR:sh} # Return the command substitution of the value - * # of ${VAR} - */ -#define SUNSHCMD - -/* - * USE_IOVEC - * We have writev(2) - */ -#ifdef HAVE_SYS_UIO_H -# define USE_IOVEC -#endif - -#if defined(MAKE_NATIVE) && !defined(__ELF__) -# ifndef RANLIBMAG -# define RANLIBMAG "__.SYMDEF" -# endif -#endif diff --git a/external/bsd/bmake/dist/make.1 b/external/bsd/bmake/dist/make.1 deleted file mode 100644 index 86f747b9177c..000000000000 --- a/external/bsd/bmake/dist/make.1 +++ /dev/null @@ -1,2061 +0,0 @@ -.\" $NetBSD: make.1,v 1.204 2012/04/24 20:12:16 sjg Exp $ -.\" -.\" Copyright (c) 1990, 1993 -.\" The Regents of the University of California. All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" 3. Neither the name of the University nor the names of its contributors -.\" may be used to endorse or promote products derived from this software -.\" without specific prior written permission. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -.\" SUCH DAMAGE. -.\" -.\" from: @(#)make.1 8.4 (Berkeley) 3/19/94 -.\" -.Dd April 24, 2012 -.Dt MAKE 1 -.Os -.Sh NAME -.Nm make -.Nd maintain program dependencies -.Sh SYNOPSIS -.Nm -.Op Fl BeikNnqrstWX -.Op Fl C Ar directory -.Op Fl D Ar variable -.Op Fl d Ar flags -.Op Fl f Ar makefile -.Op Fl I Ar directory -.Op Fl J Ar private -.Op Fl j Ar max_jobs -.Op Fl m Ar directory -.Op Fl T Ar file -.Op Fl V Ar variable -.Op Ar variable=value -.Op Ar target ... -.Sh DESCRIPTION -.Nm -is a program designed to simplify the maintenance of other programs. -Its input is a list of specifications as to the files upon which programs -and other files depend. -If no -.Fl f Ar makefile -makefile option is given, -.Nm -will try to open -.Ql Pa makefile -then -.Ql Pa Makefile -in order to find the specifications. -If the file -.Ql Pa .depend -exists, it is read (see -.Xr mkdep 1 ) . -.Pp -This manual page is intended as a reference document only. -For a more thorough description of -.Nm -and makefiles, please refer to -.%T "PMake \- A Tutorial" . -.Pp -.Nm -will prepend the contents of the -.Va MAKEFLAGS -environment variable to the command line arguments before parsing them. -.Pp -The options are as follows: -.Bl -tag -width Ds -.It Fl B -Try to be backwards compatible by executing a single shell per command and -by executing the commands to make the sources of a dependency line in sequence. -.It Fl C Ar directory -Change to -.Ar directory -before reading the makefiles or doing anything else. -If multiple -.Fl C -options are specified, each is interpreted relative to the previous one: -.Fl C Pa / Fl C Pa etc -is equivalent to -.Fl C Pa /etc . -.It Fl D Ar variable -Define -.Ar variable -to be 1, in the global context. -.It Fl d Ar [-]flags -Turn on debugging, and specify which portions of -.Nm -are to print debugging information. -Unless the flags are preceded by -.Ql \- -they are added to the -.Va MAKEFLAGS -environment variable and will be processed by any child make processes. -By default, debugging information is printed to standard error, -but this can be changed using the -.Ar F -debugging flag. -The debugging output is always unbuffered; in addition, if debugging -is enabled but debugging output is not directed to standard output, -then the standard output is line buffered. -.Ar Flags -is one or more of the following: -.Bl -tag -width Ds -.It Ar A -Print all possible debugging information; -equivalent to specifying all of the debugging flags. -.It Ar a -Print debugging information about archive searching and caching. -.It Ar C -Print debugging information about current working directory. -.It Ar c -Print debugging information about conditional evaluation. -.It Ar d -Print debugging information about directory searching and caching. -.It Ar e -Print debugging information about failed commands and targets. -.It Ar F Ns Oo Sy \&+ Oc Ns Ar filename -Specify where debugging output is written. -This must be the last flag, because it consumes the remainder of -the argument. -If the character immediately after the -.Ql F -flag is -.Ql \&+ , -then the file will be opened in append mode; -otherwise the file will be overwritten. -If the file name is -.Ql stdout -or -.Ql stderr -then debugging output will be written to the -standard output or standard error output file descriptors respectively -(and the -.Ql \&+ -option has no effect). -Otherwise, the output will be written to the named file. -If the file name ends -.Ql .%d -then the -.Ql %d -is replaced by the pid. -.It Ar f -Print debugging information about loop evaluation. -.It Ar "g1" -Print the input graph before making anything. -.It Ar "g2" -Print the input graph after making everything, or before exiting -on error. -.It Ar "g3" -Print the input graph before exiting on error. -.It Ar j -Print debugging information about running multiple shells. -.It Ar l -Print commands in Makefiles regardless of whether or not they are prefixed by -.Ql @ -or other "quiet" flags. -Also known as "loud" behavior. -.It Ar M -Print debugging information about "meta" mode decisions about targets. -.It Ar m -Print debugging information about making targets, including modification -dates. -.It Ar n -Don't delete the temporary command scripts created when running commands. -These temporary scripts are created in the directory -referred to by the -.Ev TMPDIR -environment variable, or in -.Pa /tmp -if -.Ev TMPDIR -is unset or set to the empty string. -The temporary scripts are created by -.Xr mkstemp 3 , -and have names of the form -.Pa makeXXXXXX . -.Em NOTE : -This can create many files in -.Ev TMPDIR -or -.Pa /tmp , -so use with care. -.It Ar p -Print debugging information about makefile parsing. -.It Ar s -Print debugging information about suffix-transformation rules. -.It Ar t -Print debugging information about target list maintenance. -.It Ar v -Print debugging information about variable assignment. -.It Ar x -Run shell commands with -.Fl x -so the actual commands are printed as they are executed. -.El -.It Fl e -Specify that environment variables override macro assignments within -makefiles. -.It Fl f Ar makefile -Specify a makefile to read instead of the default -.Ql Pa makefile . -If -.Ar makefile -is -.Ql Fl , -standard input is read. -Multiple makefiles may be specified, and are read in the order specified. -.It Fl I Ar directory -Specify a directory in which to search for makefiles and included makefiles. -The system makefile directory (or directories, see the -.Fl m -option) is automatically included as part of this list. -.It Fl i -Ignore non-zero exit of shell commands in the makefile. -Equivalent to specifying -.Ql Fl -before each command line in the makefile. -.It Fl J Ar private -This option should -.Em not -be specified by the user. -.Pp -When the -.Ar j -option is in use in a recursive build, this option is passed by a make -to child makes to allow all the make processes in the build to -cooperate to avoid overloading the system. -.It Fl j Ar max_jobs -Specify the maximum number of jobs that -.Nm -may have running at any one time. -The value is saved in -.Va .MAKE.JOBS . -Turns compatibility mode off, unless the -.Ar B -flag is also specified. -When compatibility mode is off, all commands associated with a -target are executed in a single shell invocation as opposed to the -traditional one shell invocation per line. -This can break traditional scripts which change directories on each -command invocation and then expect to start with a fresh environment -on the next line. -It is more efficient to correct the scripts rather than turn backwards -compatibility on. -.It Fl k -Continue processing after errors are encountered, but only on those targets -that do not depend on the target whose creation caused the error. -.It Fl m Ar directory -Specify a directory in which to search for sys.mk and makefiles included -via the -.Ao Ar file Ac Ns -style -include statement. -The -.Fl m -option can be used multiple times to form a search path. -This path will override the default system include path: /usr/share/mk. -Furthermore the system include path will be appended to the search path used -for -.Qo Ar file Qc Ns -style -include statements (see the -.Fl I -option). -.Pp -If a file or directory name in the -.Fl m -argument (or the -.Ev MAKESYSPATH -environment variable) starts with the string -.Qq \&.../ -then -.Nm -will search for the specified file or directory named in the remaining part -of the argument string. -The search starts with the current directory of -the Makefile and then works upward towards the root of the filesystem. -If the search is successful, then the resulting directory replaces the -.Qq \&.../ -specification in the -.Fl m -argument. -If used, this feature allows -.Nm -to easily search in the current source tree for customized sys.mk files -(e.g., by using -.Qq \&.../mk/sys.mk -as an argument). -.It Fl n -Display the commands that would have been executed, but do not -actually execute them unless the target depends on the .MAKE special -source (see below). -.It Fl N -Display the commands which would have been executed, but do not -actually execute any of them; useful for debugging top-level makefiles -without descending into subdirectories. -.It Fl q -Do not execute any commands, but exit 0 if the specified targets are -up-to-date and 1, otherwise. -.It Fl r -Do not use the built-in rules specified in the system makefile. -.It Fl s -Do not echo any commands as they are executed. -Equivalent to specifying -.Ql Ic @ -before each command line in the makefile. -.It Fl T Ar tracefile -When used with the -.Fl j -flag, -append a trace record to -.Ar tracefile -for each job started and completed. -.It Fl t -Rather than re-building a target as specified in the makefile, create it -or update its modification time to make it appear up-to-date. -.It Fl V Ar variable -Print -.Nm Ns 's -idea of the value of -.Ar variable , -in the global context. -Do not build any targets. -Multiple instances of this option may be specified; -the variables will be printed one per line, -with a blank line for each null or undefined variable. -If -.Ar variable -contains a -.Ql \&$ -then the value will be expanded before printing. -.It Fl W -Treat any warnings during makefile parsing as errors. -.It Fl X -Don't export variables passed on the command line to the environment -individually. -Variables passed on the command line are still exported -via the -.Va MAKEFLAGS -environment variable. -This option may be useful on systems which have a small limit on the -size of command arguments. -.It Ar variable=value -Set the value of the variable -.Ar variable -to -.Ar value . -Normally, all values passed on the command line are also exported to -sub-makes in the environment. -The -.Fl X -flag disables this behavior. -Variable assignments should follow options for POSIX compatibility -but no ordering is enforced. -.El -.Pp -There are seven different types of lines in a makefile: file dependency -specifications, shell commands, variable assignments, include statements, -conditional directives, for loops, and comments. -.Pp -In general, lines may be continued from one line to the next by ending -them with a backslash -.Pq Ql \e . -The trailing newline character and initial whitespace on the following -line are compressed into a single space. -.Sh FILE DEPENDENCY SPECIFICATIONS -Dependency lines consist of one or more targets, an operator, and zero -or more sources. -This creates a relationship where the targets -.Dq depend -on the sources -and are usually created from them. -The exact relationship between the target and the source is determined -by the operator that separates them. -The three operators are as follows: -.Bl -tag -width flag -.It Ic \&: -A target is considered out-of-date if its modification time is less than -those of any of its sources. -Sources for a target accumulate over dependency lines when this operator -is used. -The target is removed if -.Nm -is interrupted. -.It Ic \&! -Targets are always re-created, but not until all sources have been -examined and re-created as necessary. -Sources for a target accumulate over dependency lines when this operator -is used. -The target is removed if -.Nm -is interrupted. -.It Ic \&:: -If no sources are specified, the target is always re-created. -Otherwise, a target is considered out-of-date if any of its sources has -been modified more recently than the target. -Sources for a target do not accumulate over dependency lines when this -operator is used. -The target will not be removed if -.Nm -is interrupted. -.El -.Pp -Targets and sources may contain the shell wildcard values -.Ql \&? , -.Ql * , -.Ql [] , -and -.Ql {} . -The values -.Ql \&? , -.Ql * , -and -.Ql [] -may only be used as part of the final -component of the target or source, and must be used to describe existing -files. -The value -.Ql {} -need not necessarily be used to describe existing files. -Expansion is in directory order, not alphabetically as done in the shell. -.Sh SHELL COMMANDS -Each target may have associated with it a series of shell commands, normally -used to create the target. -Each of the commands in this script -.Em must -be preceded by a tab. -While any target may appear on a dependency line, only one of these -dependencies may be followed by a creation script, unless the -.Ql Ic \&:: -operator is used. -.Pp -If the first characters of the command line are any combination of -.Ql Ic @ , -.Ql Ic + , -or -.Ql Ic \- , -the command is treated specially. -A -.Ql Ic @ -causes the command not to be echoed before it is executed. -A -.Ql Ic + -causes the command to be executed even when -.Fl n -is given. -This is similar to the effect of the .MAKE special source, -except that the effect can be limited to a single line of a script. -A -.Ql Ic \- -causes any non-zero exit status of the command line to be ignored. -.Sh VARIABLE ASSIGNMENTS -Variables in make are much like variables in the shell, and, by tradition, -consist of all upper-case letters. -.Ss Variable assignment modifiers -The five operators that can be used to assign values to variables are as -follows: -.Bl -tag -width Ds -.It Ic \&= -Assign the value to the variable. -Any previous value is overridden. -.It Ic \&+= -Append the value to the current value of the variable. -.It Ic \&?= -Assign the value to the variable if it is not already defined. -.It Ic \&:= -Assign with expansion, i.e. expand the value before assigning it -to the variable. -Normally, expansion is not done until the variable is referenced. -.Em NOTE : -References to undefined variables are -.Em not -expanded. -This can cause problems when variable modifiers are used. -.It Ic \&!= -Expand the value and pass it to the shell for execution and assign -the result to the variable. -Any newlines in the result are replaced with spaces. -.El -.Pp -Any white-space before the assigned -.Ar value -is removed; if the value is being appended, a single space is inserted -between the previous contents of the variable and the appended value. -.Pp -Variables are expanded by surrounding the variable name with either -curly braces -.Pq Ql {} -or parentheses -.Pq Ql () -and preceding it with -a dollar sign -.Pq Ql \&$ . -If the variable name contains only a single letter, the surrounding -braces or parentheses are not required. -This shorter form is not recommended. -.Pp -If the variable name contains a dollar, then the name itself is expanded first. -This allows almost arbitrary variable names, however names containing dollar, -braces, parenthesis, or whitespace are really best avoided! -.Pp -If the result of expanding a variable contains a dollar sign -.Pq Ql \&$ -the string is expanded again. -.Pp -Variable substitution occurs at three distinct times, depending on where -the variable is being used. -.Bl -enum -.It -Variables in dependency lines are expanded as the line is read. -.It -Variables in shell commands are expanded when the shell command is -executed. -.It -.Dq .for -loop index variables are expanded on each loop iteration. -Note that other variables are not expanded inside loops so -the following example code: -.Bd -literal -offset indent - -.Dv .for i in 1 2 3 -a+= ${i} -j= ${i} -b+= ${j} -.Dv .endfor - -all: - @echo ${a} - @echo ${b} - -.Ed -will print: -.Bd -literal -offset indent -1 2 3 -3 3 3 - -.Ed -Because while ${a} contains -.Dq 1 2 3 -after the loop is executed, ${b} -contains -.Dq ${j} ${j} ${j} -which expands to -.Dq 3 3 3 -since after the loop completes ${j} contains -.Dq 3 . -.El -.Ss Variable classes -The four different classes of variables (in order of increasing precedence) -are: -.Bl -tag -width Ds -.It Environment variables -Variables defined as part of -.Nm Ns 's -environment. -.It Global variables -Variables defined in the makefile or in included makefiles. -.It Command line variables -Variables defined as part of the command line. -.It Local variables -Variables that are defined specific to a certain target. -The seven local variables are as follows: -.Bl -tag -width ".ARCHIVE" -.It Va .ALLSRC -The list of all sources for this target; also known as -.Ql Va \&\*[Gt] . -.It Va .ARCHIVE -The name of the archive file. -.It Va .IMPSRC -In suffix-transformation rules, the name/path of the source from which the -target is to be transformed (the -.Dq implied -source); also known as -.Ql Va \&\*[Lt] . -It is not defined in explicit rules. -.It Va .MEMBER -The name of the archive member. -.It Va .OODATE -The list of sources for this target that were deemed out-of-date; also -known as -.Ql Va \&? . -.It Va .PREFIX -The file prefix of the target, containing only the file portion, no suffix -or preceding directory components; also known as -.Ql Va * . -.It Va .TARGET -The name of the target; also known as -.Ql Va @ . -.El -.Pp -The shorter forms -.Ql Va @ , -.Ql Va \&? , -.Ql Va \&\*[Lt] , -.Ql Va \&\*[Gt] , -and -.Ql Va * -are permitted for backward -compatibility with historical makefiles and are not recommended. -The six variables -.Ql Va "@F" , -.Ql Va "@D" , -.Ql Va "\*[Lt]F" , -.Ql Va "\*[Lt]D" , -.Ql Va "*F" , -and -.Ql Va "*D" -are permitted for compatibility with -.At V -makefiles and are not recommended. -.Pp -Four of the local variables may be used in sources on dependency lines -because they expand to the proper value for each target on the line. -These variables are -.Ql Va .TARGET , -.Ql Va .PREFIX , -.Ql Va .ARCHIVE , -and -.Ql Va .MEMBER . -.El -.Ss Additional built-in variables -In addition, -.Nm -sets or knows about the following variables: -.Bl -tag -width .MAKEOVERRIDES -.It Va \&$ -A single dollar sign -.Ql \&$ , -i.e. -.Ql \&$$ -expands to a single dollar -sign. -.It Va .ALLTARGETS -The list of all targets encountered in the Makefile. -If evaluated during -Makefile parsing, lists only those targets encountered thus far. -.It Va .CURDIR -A path to the directory where -.Nm -was executed. -Refer to the description of -.Ql Ev PWD -for more details. -.It Ev MAKE -The name that -.Nm -was executed with -.Pq Va argv[0] . -For compatibility -.Nm -also sets -.Va .MAKE -with the same value. -The preferred variable to use is the environment variable -.Ev MAKE -because it is more compatible with other versions of -.Nm -and cannot be confused with the special target with the same name. -.It Va .MAKE.DEPENDFILE -Names the makefile (default -.Ql Pa .depend ) -from which generated dependencies are read. -.It Va .MAKE.EXPORTED -The list of variables exported by -.Nm . -.It Va .MAKE.JOBS -The argument to the -.Fl j -option. -.It Va .MAKE.JOB.PREFIX -If -.Nm -is run with -.Ar j -then output for each target is prefixed with a token -.Ql --- target --- -the first part of which can be controlled via -.Va .MAKE.JOB.PREFIX . -.br -For example: -.Li .MAKE.JOB.PREFIX=${.newline}---${.MAKE:T}[${.MAKE.PID}] -would produce tokens like -.Ql ---make[1234] target --- -making it easier to track the degree of parallelism being achieved. -.It Ev MAKEFLAGS -The environment variable -.Ql Ev MAKEFLAGS -may contain anything that -may be specified on -.Nm Ns 's -command line. -Anything specified on -.Nm Ns 's -command line is appended to the -.Ql Ev MAKEFLAGS -variable which is then -entered into the environment for all programs which -.Nm -executes. -.It Va .MAKE.LEVEL -The recursion depth of -.Nm . -The initial instance of -.Nm -will be 0, and an incremented value is put into the environment -to be seen by the next generation. -This allows tests like: -.Li .if ${.MAKE.LEVEL} == 0 -to protect things which should only be evaluated in the initial instance of -.Nm . -.It Va .MAKE.MAKEFILE_PREFERENCE -The ordered list of makefile names -(default -.Ql Pa makefile , -.Ql Pa Makefile ) -that -.Nm -will look for. -.It Va .MAKE.MAKEFILES -The list of makefiles read by -.Nm , -which is useful for tracking dependencies. -Each makefile is recorded only once, regardless of the number of times read. -.It Va .MAKE.MODE -Processed after reading all makefiles. -Can affect the mode that -.Nm -runs in. -It can contain a number of keywords: -.Bl -hang -width ignore-cmd -.It Pa compat -Like -.Fl B , -puts -.Nm -into "compat" mode. -.It Pa meta -Puts -.Nm -into "meta" mode, where meta files are created for each target -to capture the command run, the output generated and if -.Xr filemon 4 -is available, the system calls which are of interest to -.Nm . -The captured output can be very useful when diagnosing errors. -.It Pa curdirOk= Ar bf -Normally -.Nm -will not create .meta files in -.Ql Va .CURDIR . -This can be overridden by setting -.Va bf -to a value which represents True. -.It Pa env -For debugging, it can be useful to inlcude the environment -in the .meta file. -.It Pa verbose -If in "meta" mode, print a clue about the target being built. -This is useful if the build is otherwise running silently. -The message printed the value of: -.Va .MAKE.META.PREFIX . -.It Pa ignore-cmd -Some makefiles have commands which are simply not stable. -This keyword causes them to be ignored for -determining whether a target is out of date in "meta" mode. -See also -.Ic .NOMETA_CMP . -.It Pa silent= Ar bf -If -.Va bf -is True, when a .meta file is created, mark the target -.Ic .SILENT . -.El -.It Va .MAKE.META.BAILIWICK -In "meta" mode, provides a list of prefixes which -match the directories controlled by -.Nm . -If a file that was generated outside of -.Va .OBJDIR -but within said bailiwick is missing, -the current target is considered out-of-date. -.It Va .MAKE.META.CREATED -In "meta" mode, this variable contains a list of all the meta files -updated. -If not empty, it can be used to trigger processing of -.Va .MAKE.META.FILES . -.It Va .MAKE.META.FILES -In "meta" mode, this variable contains a list of all the meta files -used (updated or not). -This list can be used to process the meta files to extract dependency -information. -.It Va .MAKE.META.PREFIX -Defines the message printed for each meta file updated in "meta verbose" mode. -The default value is: -.Dl Building ${.TARGET:H:tA}/${.TARGET:T} -.It Va .MAKEOVERRIDES -This variable is used to record the names of variables assigned to -on the command line, so that they may be exported as part of -.Ql Ev MAKEFLAGS . -This behaviour can be disabled by assigning an empty value to -.Ql Va .MAKEOVERRIDES -within a makefile. -Extra variables can be exported from a makefile -by appending their names to -.Ql Va .MAKEOVERRIDES . -.Ql Ev MAKEFLAGS -is re-exported whenever -.Ql Va .MAKEOVERRIDES -is modified. -.It Va .MAKE.PID -The process-id of -.Nm . -.It Va .MAKE.PPID -The parent process-id of -.Nm . -.It Va MAKE_PRINT_VAR_ON_ERROR -When -.Nm -stops due to an error, it prints its name and the value of -.Ql Va .CURDIR -as well as the value of any variables named in -.Ql Va MAKE_PRINT_VAR_ON_ERROR . -.It Va .newline -This variable is simply assigned a newline character as its value. -This allows expansions using the -.Cm \&:@ -modifier to put a newline between -iterations of the loop rather than a space. -For example, the printing of -.Ql Va MAKE_PRINT_VAR_ON_ERROR -could be done as ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@}. -.It Va .OBJDIR -A path to the directory where the targets are built. -Its value is determined by trying to -.Xr chdir 2 -to the following directories in order and using the first match: -.Bl -enum -.It -.Ev ${MAKEOBJDIRPREFIX}${.CURDIR} -.Pp -(Only if -.Ql Ev MAKEOBJDIRPREFIX -is set in the environment or on the command line.) -.It -.Ev ${MAKEOBJDIR} -.Pp -(Only if -.Ql Ev MAKEOBJDIR -is set in the environment or on the command line.) -.It -.Ev ${.CURDIR} Ns Pa /obj. Ns Ev ${MACHINE} -.It -.Ev ${.CURDIR} Ns Pa /obj -.It -.Pa /usr/obj/ Ns Ev ${.CURDIR} -.It -.Ev ${.CURDIR} -.El -.Pp -Variable expansion is performed on the value before it's used, -so expressions such as -.Dl ${.CURDIR:S,^/usr/src,/var/obj,} -may be used. -This is especially useful with -.Ql Ev MAKEOBJDIR . -.Pp -.Ql Va .OBJDIR -may be modified in the makefile as a global variable. -In all cases, -.Nm -will -.Xr chdir 2 -to -.Ql Va .OBJDIR -and set -.Ql Ev PWD -to that directory before executing any targets. -. -.It Va .PARSEDIR -A path to the directory of the current -.Ql Pa Makefile -being parsed. -.It Va .PARSEFILE -The basename of the current -.Ql Pa Makefile -being parsed. -This variable and -.Ql Va .PARSEDIR -are both set only while the -.Ql Pa Makefiles -are being parsed. -If you want to retain their current values, assign them to a variable -using assignment with expansion: -.Pq Ql Cm \&:= . -.It Va .PATH -A variable that represents the list of directories that -.Nm -will search for files. -The search list should be updated using the target -.Ql Va .PATH -rather than the variable. -.It Ev PWD -Alternate path to the current directory. -.Nm -normally sets -.Ql Va .CURDIR -to the canonical path given by -.Xr getcwd 3 . -However, if the environment variable -.Ql Ev PWD -is set and gives a path to the current directory, then -.Nm -sets -.Ql Va .CURDIR -to the value of -.Ql Ev PWD -instead. -This behaviour is disabled if -.Ql Ev MAKEOBJDIRPREFIX -is set or -.Ql Ev MAKEOBJDIR -contains a variable transform. -.Ql Ev PWD -is set to the value of -.Ql Va .OBJDIR -for all programs which -.Nm -executes. -.It Ev .TARGETS -The list of targets explicitly specified on the command line, if any. -.It Ev VPATH -Colon-separated -.Pq Dq \&: -lists of directories that -.Nm -will search for files. -The variable is supported for compatibility with old make programs only, -use -.Ql Va .PATH -instead. -.El -.Ss Variable modifiers -Variable expansion may be modified to select or modify each word of the -variable (where a -.Dq word -is white-space delimited sequence of characters). -The general format of a variable expansion is as follows: -.Pp -.Dl ${variable[:modifier[:...]]} -.Pp -Each modifier begins with a colon, -which may be escaped with a backslash -.Pq Ql \e . -.Pp -A set of modifiers can be specified via a variable, as follows: -.Pp -.Dl modifier_variable=modifier[:...] -.Dl ${variable:${modifier_variable}[:...]} -.Pp -In this case the first modifier in the modifier_variable does not -start with a colon, since that must appear in the referencing -variable. -If any of the modifiers in the modifier_variable contain a dollar sign -.Pq Ql $ , -these must be doubled to avoid early expansion. -.Pp -The supported modifiers are: -.Bl -tag -width EEE -.It Cm \&:E -Replaces each word in the variable with its suffix. -.It Cm \&:H -Replaces each word in the variable with everything but the last component. -.It Cm \&:M Ns Ar pattern -Select only those words that match -.Ar pattern . -The standard shell wildcard characters -.Pf ( Ql * , -.Ql \&? , -and -.Ql Oo Oc ) -may -be used. -The wildcard characters may be escaped with a backslash -.Pq Ql \e . -.It Cm \&:N Ns Ar pattern -This is identical to -.Ql Cm \&:M , -but selects all words which do not match -.Ar pattern . -.It Cm \&:O -Order every word in variable alphabetically. -To sort words in -reverse order use the -.Ql Cm \&:O:[-1..1] -combination of modifiers. -.It Cm \&:Ox -Randomize words in variable. -The results will be different each time you are referring to the -modified variable; use the assignment with expansion -.Pq Ql Cm \&:= -to prevent such behaviour. -For example, -.Bd -literal -offset indent -LIST= uno due tre quattro -RANDOM_LIST= ${LIST:Ox} -STATIC_RANDOM_LIST:= ${LIST:Ox} - -all: - @echo "${RANDOM_LIST}" - @echo "${RANDOM_LIST}" - @echo "${STATIC_RANDOM_LIST}" - @echo "${STATIC_RANDOM_LIST}" -.Ed -may produce output similar to: -.Bd -literal -offset indent -quattro due tre uno -tre due quattro uno -due uno quattro tre -due uno quattro tre -.Ed -.It Cm \&:Q -Quotes every shell meta-character in the variable, so that it can be passed -safely through recursive invocations of -.Nm . -.It Cm \&:R -Replaces each word in the variable with everything but its suffix. -.It Cm \&:gmtime -The value is a format string for -.Xr strftime 3 , -using the current -.Xr gmtime 3 . -.It Cm \&:hash -Compute a 32bit hash of the value and encode it as hex digits. -.It Cm \&:localtime -The value is a format string for -.Xr strftime 3 , -using the current -.Xr localtime 3 . -.It Cm \&:tA -Attempt to convert variable to an absolute path using -.Xr realpath 3 , -if that fails, the value is unchanged. -.It Cm \&:tl -Converts variable to lower-case letters. -.It Cm \&:ts Ns Ar c -Words in the variable are normally separated by a space on expansion. -This modifier sets the separator to the character -.Ar c . -If -.Ar c -is omitted, then no separator is used. -The common escapes (including octal numeric codes), work as expected. -.It Cm \&:tu -Converts variable to upper-case letters. -.It Cm \&:tW -Causes the value to be treated as a single word -(possibly containing embedded white space). -See also -.Ql Cm \&:[*] . -.It Cm \&:tw -Causes the value to be treated as a sequence of -words delimited by white space. -See also -.Ql Cm \&:[@] . -.Sm off -.It Cm \&:S No \&/ Ar old_string No \&/ Ar new_string No \&/ Op Cm 1gW -.Sm on -Modify the first occurrence of -.Ar old_string -in the variable's value, replacing it with -.Ar new_string . -If a -.Ql g -is appended to the last slash of the pattern, all occurrences -in each word are replaced. -If a -.Ql 1 -is appended to the last slash of the pattern, only the first word -is affected. -If a -.Ql W -is appended to the last slash of the pattern, -then the value is treated as a single word -(possibly containing embedded white space). -If -.Ar old_string -begins with a caret -.Pq Ql ^ , -.Ar old_string -is anchored at the beginning of each word. -If -.Ar old_string -ends with a dollar sign -.Pq Ql \&$ , -it is anchored at the end of each word. -Inside -.Ar new_string , -an ampersand -.Pq Ql \*[Am] -is replaced by -.Ar old_string -(without any -.Ql ^ -or -.Ql \&$ ) . -Any character may be used as a delimiter for the parts of the modifier -string. -The anchoring, ampersand and delimiter characters may be escaped with a -backslash -.Pq Ql \e . -.Pp -Variable expansion occurs in the normal fashion inside both -.Ar old_string -and -.Ar new_string -with the single exception that a backslash is used to prevent the expansion -of a dollar sign -.Pq Ql \&$ , -not a preceding dollar sign as is usual. -.Sm off -.It Cm \&:C No \&/ Ar pattern No \&/ Ar replacement No \&/ Op Cm 1gW -.Sm on -The -.Cm \&:C -modifier is just like the -.Cm \&:S -modifier except that the old and new strings, instead of being -simple strings, are a regular expression (see -.Xr regex 3 ) -string -.Ar pattern -and an -.Xr ed 1 Ns \-style -string -.Ar replacement . -Normally, the first occurrence of the pattern -.Ar pattern -in each word of the value is substituted with -.Ar replacement . -The -.Ql 1 -modifier causes the substitution to apply to at most one word; the -.Ql g -modifier causes the substitution to apply to as many instances of the -search pattern -.Ar pattern -as occur in the word or words it is found in; the -.Ql W -modifier causes the value to be treated as a single word -(possibly containing embedded white space). -Note that -.Ql 1 -and -.Ql g -are orthogonal; the former specifies whether multiple words are -potentially affected, the latter whether multiple substitutions can -potentially occur within each affected word. -.It Cm \&:T -Replaces each word in the variable with its last component. -.It Cm \&:u -Remove adjacent duplicate words (like -.Xr uniq 1 ) . -.Sm off -.It Cm \&:\&? Ar true_string Cm \&: Ar false_string -.Sm on -If the variable name (not its value), when parsed as a .if conditional -expression, evaluates to true, return as its value the -.Ar true_string , -otherwise return the -.Ar false_string . -Since the variable name is used as the expression, \&:\&? must be the -first modifier after the variable name itself - which will, of course, -usually contain variable expansions. -A common error is trying to use expressions like -.Dl ${NUMBERS:M42:?match:no} -which actually tests defined(NUMBERS), -to determine is any words match "42" you need to use something like: -.Dl ${"${NUMBERS:M42}" != \&"\&":?match:no} . -.It Ar :old_string=new_string -This is the -.At V -style variable substitution. -It must be the last modifier specified. -If -.Ar old_string -or -.Ar new_string -do not contain the pattern matching character -.Ar % -then it is assumed that they are -anchored at the end of each word, so only suffixes or entire -words may be replaced. -Otherwise -.Ar % -is the substring of -.Ar old_string -to be replaced in -.Ar new_string . -.Pp -Variable expansion occurs in the normal fashion inside both -.Ar old_string -and -.Ar new_string -with the single exception that a backslash is used to prevent the -expansion of a dollar sign -.Pq Ql \&$ , -not a preceding dollar sign as is usual. -.Sm off -.It Cm \&:@ Ar temp Cm @ Ar string Cm @ -.Sm on -This is the loop expansion mechanism from the OSF Development -Environment (ODE) make. -Unlike -.Cm \&.for -loops expansion occurs at the time of -reference. -Assign -.Ar temp -to each word in the variable and evaluate -.Ar string . -The ODE convention is that -.Ar temp -should start and end with a period. -For example. -.Dl ${LINKS:@.LINK.@${LN} ${TARGET} ${.LINK.}@} -.Pp -However a single character varaiable is often more readable: -.Dl ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@} -.It Cm \&:U Ns Ar newval -If the variable is undefined -.Ar newval -is the value. -If the variable is defined, the existing value is returned. -This is another ODE make feature. -It is handy for setting per-target CFLAGS for instance: -.Dl ${_${.TARGET:T}_CFLAGS:U${DEF_CFLAGS}} -If a value is only required if the variable is undefined, use: -.Dl ${VAR:D:Unewval} -.It Cm \&:D Ns Ar newval -If the variable is defined -.Ar newval -is the value. -.It Cm \&:L -The name of the variable is the value. -.It Cm \&:P -The path of the node which has the same name as the variable -is the value. -If no such node exists or its path is null, then the -name of the variable is used. -In order for this modifier to work, the name (node) must at least have -appeared on the rhs of a dependency. -.Sm off -.It Cm \&:\&! Ar cmd Cm \&! -.Sm on -The output of running -.Ar cmd -is the value. -.It Cm \&:sh -If the variable is non-empty it is run as a command and the output -becomes the new value. -.It Cm \&::= Ns Ar str -The variable is assigned the value -.Ar str -after substitution. -This modifier and its variations are useful in -obscure situations such as wanting to set a variable when shell commands -are being parsed. -These assignment modifiers always expand to -nothing, so if appearing in a rule line by themselves should be -preceded with something to keep -.Nm -happy. -.Pp -The -.Ql Cm \&:: -helps avoid false matches with the -.At V -style -.Cm \&:= -modifier and since substitution always occurs the -.Cm \&::= -form is vaguely appropriate. -.It Cm \&::?= Ns Ar str -As for -.Cm \&::= -but only if the variable does not already have a value. -.It Cm \&::+= Ns Ar str -Append -.Ar str -to the variable. -.It Cm \&::!= Ns Ar cmd -Assign the output of -.Ar cmd -to the variable. -.It Cm \&:\&[ Ns Ar range Ns Cm \&] -Selects one or more words from the value, -or performs other operations related to the way in which the -value is divided into words. -.Pp -Ordinarily, a value is treated as a sequence of words -delimited by white space. -Some modifiers suppress this behaviour, -causing a value to be treated as a single word -(possibly containing embedded white space). -An empty value, or a value that consists entirely of white-space, -is treated as a single word. -For the purposes of the -.Ql Cm \&:[] -modifier, the words are indexed both forwards using positive integers -(where index 1 represents the first word), -and backwards using negative integers -(where index \-1 represents the last word). -.Pp -The -.Ar range -is subjected to variable expansion, and the expanded result is -then interpreted as follows: -.Bl -tag -width index -.\" :[n] -.It Ar index -Selects a single word from the value. -.\" :[start..end] -.It Ar start Ns Cm \&.. Ns Ar end -Selects all words from -.Ar start -to -.Ar end , -inclusive. -For example, -.Ql Cm \&:[2..-1] -selects all words from the second word to the last word. -If -.Ar start -is greater than -.Ar end , -then the words are output in reverse order. -For example, -.Ql Cm \&:[-1..1] -selects all the words from last to first. -.\" :[*] -.It Cm \&* -Causes subsequent modifiers to treat the value as a single word -(possibly containing embedded white space). -Analogous to the effect of -\&"$*\&" -in Bourne shell. -.\" :[0] -.It 0 -Means the same as -.Ql Cm \&:[*] . -.\" :[*] -.It Cm \&@ -Causes subsequent modifiers to treat the value as a sequence of words -delimited by white space. -Analogous to the effect of -\&"$@\&" -in Bourne shell. -.\" :[#] -.It Cm \&# -Returns the number of words in the value. -.El \" :[range] -.El -.Sh INCLUDE STATEMENTS, CONDITIONALS AND FOR LOOPS -Makefile inclusion, conditional structures and for loops reminiscent -of the C programming language are provided in -.Nm . -All such structures are identified by a line beginning with a single -dot -.Pq Ql \&. -character. -Files are included with either -.Cm \&.include Aq Ar file -or -.Cm \&.include Pf \*q Ar file Ns \*q . -Variables between the angle brackets or double quotes are expanded -to form the file name. -If angle brackets are used, the included makefile is expected to be in -the system makefile directory. -If double quotes are used, the including makefile's directory and any -directories specified using the -.Fl I -option are searched before the system -makefile directory. -For compatibility with other versions of -.Nm -.Ql include file ... -is also accepted. -If the include statement is written as -.Cm .-include -or as -.Cm .sinclude -then errors locating and/or opening include files are ignored. -.Pp -Conditional expressions are also preceded by a single dot as the first -character of a line. -The possible conditionals are as follows: -.Bl -tag -width Ds -.It Ic .error Ar message -The message is printed along with the name of the makefile and line number, -then -.Nm -will exit. -.It Ic .export Ar variable ... -Export the specified global variable. -If no variable list is provided, all globals are exported -except for internal variables (those that start with -.Ql \&. ) . -This is not affected by the -.Fl X -flag, so should be used with caution. -For compatibility with other -.Nm -programs -.Ql export variable=value -is also accepted. -.Pp -Appending a variable name to -.Va .MAKE.EXPORTED -is equivalent to exporting a variable. -.It Ic .export-env Ar variable ... -The same as -.Ql .export , -except that the variable is not appended to -.Va .MAKE.EXPORTED . -This allows exporting a value to the environment which is different from that -used by -.Nm -internally. -.It Ic .info Ar message -The message is printed along with the name of the makefile and line number. -.It Ic .undef Ar variable -Un-define the specified global variable. -Only global variables may be un-defined. -.It Ic .unexport Ar variable ... -The opposite of -.Ql .export . -The specified global -.Va variable -will be removed from -.Va .MAKE.EXPORTED . -If no variable list is provided, all globals are unexported, -and -.Va .MAKE.EXPORTED -deleted. -.It Ic .unexport-env -Unexport all globals previously exported and -clear the environment inherited from the parent. -This operation will cause a memory leak of the original environment, -so should be used sparingly. -Testing for -.Va .MAKE.LEVEL -being 0, would make sense. -Also note that any variables which originated in the parent environment -should be explicitly preserved if desired. -For example: -.Bd -literal -offset indent -.Li .if ${.MAKE.LEVEL} == 0 -PATH := ${PATH} -.Li .unexport-env -.Li .export PATH -.Li .endif -.Pp -.Ed -Would result in an environment containing only -.Ql Ev PATH , -which is the minimal useful environment. -Actually -.Ql Ev .MAKE.LEVEL -will also be pushed into the new environment. -.It Ic .warning Ar message -The message prefixed by -.Ql Pa warning: -is printed along with the name of the makefile and line number. -.It Ic \&.if Oo \&! Oc Ns Ar expression Op Ar operator expression ... -Test the value of an expression. -.It Ic .ifdef Oo \&! Oc Ns Ar variable Op Ar operator variable ... -Test the value of a variable. -.It Ic .ifndef Oo \&! Oc Ns Ar variable Op Ar operator variable ... -Test the value of a variable. -.It Ic .ifmake Oo \&! Oc Ns Ar target Op Ar operator target ... -Test the target being built. -.It Ic .ifnmake Oo \&! Ns Oc Ar target Op Ar operator target ... -Test the target being built. -.It Ic .else -Reverse the sense of the last conditional. -.It Ic .elif Oo \&! Ns Oc Ar expression Op Ar operator expression ... -A combination of -.Ql Ic .else -followed by -.Ql Ic .if . -.It Ic .elifdef Oo \&! Oc Ns Ar variable Op Ar operator variable ... -A combination of -.Ql Ic .else -followed by -.Ql Ic .ifdef . -.It Ic .elifndef Oo \&! Oc Ns Ar variable Op Ar operator variable ... -A combination of -.Ql Ic .else -followed by -.Ql Ic .ifndef . -.It Ic .elifmake Oo \&! Oc Ns Ar target Op Ar operator target ... -A combination of -.Ql Ic .else -followed by -.Ql Ic .ifmake . -.It Ic .elifnmake Oo \&! Oc Ns Ar target Op Ar operator target ... -A combination of -.Ql Ic .else -followed by -.Ql Ic .ifnmake . -.It Ic .endif -End the body of the conditional. -.El -.Pp -The -.Ar operator -may be any one of the following: -.Bl -tag -width "Cm XX" -.It Cm \&|\&| -Logical OR. -.It Cm \&\*[Am]\*[Am] -Logical -.Tn AND ; -of higher precedence than -.Dq \&|\&| . -.El -.Pp -As in C, -.Nm -will only evaluate a conditional as far as is necessary to determine -its value. -Parentheses may be used to change the order of evaluation. -The boolean operator -.Ql Ic \&! -may be used to logically negate an entire -conditional. -It is of higher precedence than -.Ql Ic \&\*[Am]\*[Am] . -.Pp -The value of -.Ar expression -may be any of the following: -.Bl -tag -width defined -.It Ic defined -Takes a variable name as an argument and evaluates to true if the variable -has been defined. -.It Ic make -Takes a target name as an argument and evaluates to true if the target -was specified as part of -.Nm Ns 's -command line or was declared the default target (either implicitly or -explicitly, see -.Va .MAIN ) -before the line containing the conditional. -.It Ic empty -Takes a variable, with possible modifiers, and evaluates to true if -the expansion of the variable would result in an empty string. -.It Ic exists -Takes a file name as an argument and evaluates to true if the file exists. -The file is searched for on the system search path (see -.Va .PATH ) . -.It Ic target -Takes a target name as an argument and evaluates to true if the target -has been defined. -.It Ic commands -Takes a target name as an argument and evaluates to true if the target -has been defined and has commands associated with it. -.El -.Pp -.Ar Expression -may also be an arithmetic or string comparison. -Variable expansion is -performed on both sides of the comparison, after which the integral -values are compared. -A value is interpreted as hexadecimal if it is -preceded by 0x, otherwise it is decimal; octal numbers are not supported. -The standard C relational operators are all supported. -If after -variable expansion, either the left or right hand side of a -.Ql Ic == -or -.Ql Ic "!=" -operator is not an integral value, then -string comparison is performed between the expanded -variables. -If no relational operator is given, it is assumed that the expanded -variable is being compared against 0 or an empty string in the case -of a string comparison. -.Pp -When -.Nm -is evaluating one of these conditional expressions, and it encounters -a (white-space separated) word it doesn't recognize, either the -.Dq make -or -.Dq defined -expression is applied to it, depending on the form of the conditional. -If the form is -.Ql Ic .ifdef , -.Ql Ic .ifndef , -or -.Ql Ic .if -the -.Dq defined -expression is applied. -Similarly, if the form is -.Ql Ic .ifmake -or -.Ql Ic .ifnmake , the -.Dq make -expression is applied. -.Pp -If the conditional evaluates to true the parsing of the makefile continues -as before. -If it evaluates to false, the following lines are skipped. -In both cases this continues until a -.Ql Ic .else -or -.Ql Ic .endif -is found. -.Pp -For loops are typically used to apply a set of rules to a list of files. -The syntax of a for loop is: -.Pp -.Bl -tag -compact -width Ds -.It Ic \&.for Ar variable Oo Ar variable ... Oc Ic in Ar expression -.It Aq make-rules -.It Ic \&.endfor -.El -.Pp -After the for -.Ic expression -is evaluated, it is split into words. -On each iteration of the loop, one word is taken and assigned to each -.Ic variable , -in order, and these -.Ic variables -are substituted into the -.Ic make-rules -inside the body of the for loop. -The number of words must come out even; that is, if there are three -iteration variables, the number of words provided must be a multiple -of three. -.Sh COMMENTS -Comments begin with a hash -.Pq Ql \&# -character, anywhere but in a shell -command line, and continue to the end of an unescaped new line. -.Sh SPECIAL SOURCES (ATTRIBUTES) -.Bl -tag -width .IGNOREx -.It Ic .EXEC -Target is never out of date, but always execute commands anyway. -.It Ic .IGNORE -Ignore any errors from the commands associated with this target, exactly -as if they all were preceded by a dash -.Pq Ql \- . -.\" .It Ic .INVISIBLE -.\" XXX -.\" .It Ic .JOIN -.\" XXX -.It Ic .MADE -Mark all sources of this target as being up-to-date. -.It Ic .MAKE -Execute the commands associated with this target even if the -.Fl n -or -.Fl t -options were specified. -Normally used to mark recursive -.Nm Ns 's . -.It Ic .META -Create a meta file for the target, even if it is flagged as -.Ic .PHONY , -.Ic .MAKE , -or -.Ic .SPECIAL . -Usage in conjunction with -.Ic .MAKE -is the most likely case. -In "meta" mode, the target is out-of-date if the meta file is missing. -.It Ic .NOMETA -Do not create a meta file for the target. -Meta files are also not created for -.Ic .PHONY , -.Ic .MAKE , -or -.Ic .SPECIAL -targets. -.It Ic .NOMETA_CMP -Ignore differences in commands when deciding if target is out of date. -This is useful if the command contains a value which always changes. -If the number of commands change, though, the target will still be out of date. -.It Ic .NOPATH -Do not search for the target in the directories specified by -.Ic .PATH . -.It Ic .NOTMAIN -Normally -.Nm -selects the first target it encounters as the default target to be built -if no target was specified. -This source prevents this target from being selected. -.It Ic .OPTIONAL -If a target is marked with this attribute and -.Nm -can't figure out how to create it, it will ignore this fact and assume -the file isn't needed or already exists. -.It Ic .PHONY -The target does not -correspond to an actual file; it is always considered to be out of date, -and will not be created with the -.Fl t -option. -Suffix-transformation rules are not applied to -.Ic .PHONY -targets. -.It Ic .PRECIOUS -When -.Nm -is interrupted, it normally removes any partially made targets. -This source prevents the target from being removed. -.It Ic .RECURSIVE -Synonym for -.Ic .MAKE . -.It Ic .SILENT -Do not echo any of the commands associated with this target, exactly -as if they all were preceded by an at sign -.Pq Ql @ . -.It Ic .USE -Turn the target into -.Nm Ns 's -version of a macro. -When the target is used as a source for another target, the other target -acquires the commands, sources, and attributes (except for -.Ic .USE ) -of the -source. -If the target already has commands, the -.Ic .USE -target's commands are appended -to them. -.It Ic .USEBEFORE -Exactly like -.Ic .USE , -but prepend the -.Ic .USEBEFORE -target commands to the target. -.It Ic .WAIT -If -.Ic .WAIT -appears in a dependency line, the sources that precede it are -made before the sources that succeed it in the line. -Since the dependents of files are not made until the file itself -could be made, this also stops the dependents being built unless they -are needed for another branch of the dependency tree. -So given: -.Bd -literal -x: a .WAIT b - echo x -a: - echo a -b: b1 - echo b -b1: - echo b1 - -.Ed -the output is always -.Ql a , -.Ql b1 , -.Ql b , -.Ql x . -.br -The ordering imposed by -.Ic .WAIT -is only relevant for parallel makes. -.El -.Sh SPECIAL TARGETS -Special targets may not be included with other targets, i.e. they must be -the only target specified. -.Bl -tag -width .BEGINx -.It Ic .BEGIN -Any command lines attached to this target are executed before anything -else is done. -.It Ic .DEFAULT -This is sort of a -.Ic .USE -rule for any target (that was used only as a -source) that -.Nm -can't figure out any other way to create. -Only the shell script is used. -The -.Ic .IMPSRC -variable of a target that inherits -.Ic .DEFAULT Ns 's -commands is set -to the target's own name. -.It Ic .END -Any command lines attached to this target are executed after everything -else is done. -.It Ic .ERROR -Any command lines attached to this target are executed when another target fails. -The -.Ic .ERROR_TARGET -variable is set to the target that failed. -See also -.Ic MAKE_PRINT_VAR_ON_ERROR . -.It Ic .IGNORE -Mark each of the sources with the -.Ic .IGNORE -attribute. -If no sources are specified, this is the equivalent of specifying the -.Fl i -option. -.It Ic .INTERRUPT -If -.Nm -is interrupted, the commands for this target will be executed. -.It Ic .MAIN -If no target is specified when -.Nm -is invoked, this target will be built. -.It Ic .MAKEFLAGS -This target provides a way to specify flags for -.Nm -when the makefile is used. -The flags are as if typed to the shell, though the -.Fl f -option will have -no effect. -.\" XXX: NOT YET!!!! -.\" .It Ic .NOTPARALLEL -.\" The named targets are executed in non parallel mode. -.\" If no targets are -.\" specified, then all targets are executed in non parallel mode. -.It Ic .NOPATH -Apply the -.Ic .NOPATH -attribute to any specified sources. -.It Ic .NOTPARALLEL -Disable parallel mode. -.It Ic .NO_PARALLEL -Synonym for -.Ic .NOTPARALLEL , -for compatibility with other pmake variants. -.It Ic .ORDER -The named targets are made in sequence. -This ordering does not add targets to the list of targets to be made. -Since the dependents of a target do not get built until the target itself -could be built, unless -.Ql a -is built by another part of the dependency graph, -the following is a dependency loop: -.Bd -literal -\&.ORDER: b a -b: a -.Ed -.Pp -The ordering imposed by -.Ic .ORDER -is only relevant for parallel makes. -.\" XXX: NOT YET!!!! -.\" .It Ic .PARALLEL -.\" The named targets are executed in parallel mode. -.\" If no targets are -.\" specified, then all targets are executed in parallel mode. -.It Ic .PATH -The sources are directories which are to be searched for files not -found in the current directory. -If no sources are specified, any previously specified directories are -deleted. -If the source is the special -.Ic .DOTLAST -target, then the current working -directory is searched last. -.It Ic .PHONY -Apply the -.Ic .PHONY -attribute to any specified sources. -.It Ic .PRECIOUS -Apply the -.Ic .PRECIOUS -attribute to any specified sources. -If no sources are specified, the -.Ic .PRECIOUS -attribute is applied to every -target in the file. -.It Ic .SHELL -Sets the shell that -.Nm -will use to execute commands. -The sources are a set of -.Ar field=value -pairs. -.Bl -tag -width hasErrCtls -.It Ar name -This is the minimal specification, used to select one of the builtin -shell specs; -.Ar sh , -.Ar ksh , -and -.Ar csh . -.It Ar path -Specifies the path to the shell. -.It Ar hasErrCtl -Indicates whether the shell supports exit on error. -.It Ar check -The command to turn on error checking. -.It Ar ignore -The command to disable error checking. -.It Ar echo -The command to turn on echoing of commands executed. -.It Ar quiet -The command to turn off echoing of commands executed. -.It Ar filter -The output to filter after issuing the -.Ar quiet -command. -It is typically identical to -.Ar quiet . -.It Ar errFlag -The flag to pass the shell to enable error checking. -.It Ar echoFlag -The flag to pass the shell to enable command echoing. -.It Ar newline -The string literal to pass the shell that results in a single newline -character when used outside of any quoting characters. -.El -Example: -.Bd -literal -\&.SHELL: name=ksh path=/bin/ksh hasErrCtl=true \e - check="set \-e" ignore="set +e" \e - echo="set \-v" quiet="set +v" filter="set +v" \e - echoFlag=v errFlag=e newline="'\en'" -.Ed -.It Ic .SILENT -Apply the -.Ic .SILENT -attribute to any specified sources. -If no sources are specified, the -.Ic .SILENT -attribute is applied to every -command in the file. -.It Ic .SUFFIXES -Each source specifies a suffix to -.Nm . -If no sources are specified, any previously specified suffixes are deleted. -It allows the creation of suffix-transformation rules. -.Pp -Example: -.Bd -literal -\&.SUFFIXES: .o -\&.c.o: - cc \-o ${.TARGET} \-c ${.IMPSRC} -.Ed -.El -.Sh ENVIRONMENT -.Nm -uses the following environment variables, if they exist: -.Ev MACHINE , -.Ev MACHINE_ARCH , -.Ev MAKE , -.Ev MAKEFLAGS , -.Ev MAKEOBJDIR , -.Ev MAKEOBJDIRPREFIX , -.Ev MAKESYSPATH , -.Ev PWD , -and -.Ev TMPDIR . -.Pp -.Ev MAKEOBJDIRPREFIX -and -.Ev MAKEOBJDIR -may only be set in the environment or on the command line to -.Nm -and not as makefile variables; -see the description of -.Ql Va .OBJDIR -for more details. -.Sh FILES -.Bl -tag -width /usr/share/mk -compact -.It .depend -list of dependencies -.It Makefile -list of dependencies -.It makefile -list of dependencies -.It sys.mk -system makefile -.It /usr/share/mk -system makefile directory -.El -.Sh COMPATIBILITY -The basic make syntax is compatible between different versions of make, -however the special variables, variable modifiers and conditionals are not. -.Pp -The way that parallel makes are scheduled changed in -.Nx 4.0 -so that .ORDER and .WAIT apply recursively to the dependent nodes. -The algorithms used may change again in the future. -.Pp -The way that .for loop variables are substituted changed after -.Nx 5.0 -so that they still appear to be variable expansions. -In particular this stops them being treated as syntax, and removes some -obscure problems using them in .if statements. -.Pp -Unlike other -.Nm -programs, this implementation by default executes all commands for a given -target using a single shell invocation. -This is done for both efficiency and to simplify error handling in remote -command invocations. -Typically this is transparent to the user, unless the target commands change -the current working directory using -.Dq cd -or -.Dq chdir . -To be compatible with Makefiles that do this, one can use -.Fl B -to disable this behavior. -.Sh SEE ALSO -.Xr mkdep 1 -.Sh HISTORY -A -.Nm -command appeared in -.At v7 . -This -.Nm -implementation is based on Adam De Boor's pmake program which was written -for Sprint at Berkeley. -It was designed to be a parallel distributed make running jobs on different -machines using a daemon called -.Dq customs . -.Sh BUGS -The -.Nm -syntax is difficult to parse without actually acting of the data. -For instance finding the end of a variable use should involve scanning each -the modifiers using the correct terminator for each field. -In many places -.Nm -just counts {} and () in order to find the end of a variable expansion. -.Pp -There is no way of escaping a space character in a filename. diff --git a/external/bsd/bmake/dist/make.c b/external/bsd/bmake/dist/make.c deleted file mode 100644 index 4fa4ff9ee8e7..000000000000 --- a/external/bsd/bmake/dist/make.c +++ /dev/null @@ -1,1561 +0,0 @@ -/* $NetBSD: make.c,v 1.87 2012/06/12 19:21:51 joerg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: make.c,v 1.87 2012/06/12 19:21:51 joerg Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)make.c 8.1 (Berkeley) 6/6/93"; -#else -__RCSID("$NetBSD: make.c,v 1.87 2012/06/12 19:21:51 joerg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * make.c -- - * The functions which perform the examination of targets and - * their suitability for creation - * - * Interface: - * Make_Run Initialize things for the module and recreate - * whatever needs recreating. Returns TRUE if - * work was (or would have been) done and FALSE - * otherwise. - * - * Make_Update Update all parents of a given child. Performs - * various bookkeeping chores like the updating - * of the cmgn field of the parent, filling - * of the IMPSRC context variable, etc. It will - * place the parent on the toBeMade queue if it - * should be. - * - * Make_TimeStamp Function to set the parent's cmgn field - * based on a child's modification time. - * - * Make_DoAllVar Set up the various local variables for a - * target, including the .ALLSRC variable, making - * sure that any variable that needs to exist - * at the very least has the empty value. - * - * Make_OODate Determine if a target is out-of-date. - * - * Make_HandleUse See if a child is a .USE node for a parent - * and perform the .USE actions if so. - * - * Make_ExpandUse Expand .USE nodes - */ - -#include "make.h" -#include "hash.h" -#include "dir.h" -#include "job.h" - -static unsigned int checked = 1;/* Sequence # to detect recursion */ -static Lst toBeMade; /* The current fringe of the graph. These - * are nodes which await examination by - * MakeOODate. It is added to by - * Make_Update and subtracted from by - * MakeStartJobs */ - -static int MakeAddChild(void *, void *); -static int MakeFindChild(void *, void *); -static int MakeUnmark(void *, void *); -static int MakeAddAllSrc(void *, void *); -static int MakeTimeStamp(void *, void *); -static int MakeHandleUse(void *, void *); -static Boolean MakeStartJobs(void); -static int MakePrintStatus(void *, void *); -static int MakeCheckOrder(void *, void *); -static int MakeBuildChild(void *, void *); -static int MakeBuildParent(void *, void *); - -MAKE_ATTR_DEAD static void -make_abort(GNode *gn, int line) -{ - static int two = 2; - - fprintf(debug_file, "make_abort from line %d\n", line); - Targ_PrintNode(gn, &two); - Lst_ForEach(toBeMade, Targ_PrintNode, &two); - Targ_PrintGraph(3); - abort(); -} - -/*- - *----------------------------------------------------------------------- - * Make_TimeStamp -- - * Set the cmgn field of a parent node based on the mtime stamp in its - * child. Called from MakeOODate via Lst_ForEach. - * - * Input: - * pgn the current parent - * cgn the child we've just examined - * - * Results: - * Always returns 0. - * - * Side Effects: - * The cmgn of the parent node will be changed if the mtime - * field of the child is greater than it. - *----------------------------------------------------------------------- - */ -int -Make_TimeStamp(GNode *pgn, GNode *cgn) -{ - if (pgn->cmgn == NULL || cgn->mtime > pgn->cmgn->mtime) { - pgn->cmgn = cgn; - } - return (0); -} - -/* - * Input: - * pgn the current parent - * cgn the child we've just examined - * - */ -static int -MakeTimeStamp(void *pgn, void *cgn) -{ - return Make_TimeStamp((GNode *)pgn, (GNode *)cgn); -} - -/*- - *----------------------------------------------------------------------- - * Make_OODate -- - * See if a given node is out of date with respect to its sources. - * Used by Make_Run when deciding which nodes to place on the - * toBeMade queue initially and by Make_Update to screen out USE and - * EXEC nodes. In the latter case, however, any other sort of node - * must be considered out-of-date since at least one of its children - * will have been recreated. - * - * Input: - * gn the node to check - * - * Results: - * TRUE if the node is out of date. FALSE otherwise. - * - * Side Effects: - * The mtime field of the node and the cmgn field of its parents - * will/may be changed. - *----------------------------------------------------------------------- - */ -Boolean -Make_OODate(GNode *gn) -{ - Boolean oodate; - - /* - * Certain types of targets needn't even be sought as their datedness - * doesn't depend on their modification time... - */ - if ((gn->type & (OP_JOIN|OP_USE|OP_USEBEFORE|OP_EXEC)) == 0) { - (void)Dir_MTime(gn, 1); - if (DEBUG(MAKE)) { - if (gn->mtime != 0) { - fprintf(debug_file, "modified %s...", Targ_FmtTime(gn->mtime)); - } else { - fprintf(debug_file, "non-existent..."); - } - } - } - - /* - * A target is remade in one of the following circumstances: - * its modification time is smaller than that of its youngest child - * and it would actually be run (has commands or type OP_NOP) - * it's the object of a force operator - * it has no children, was on the lhs of an operator and doesn't exist - * already. - * - * Libraries are only considered out-of-date if the archive module says - * they are. - * - * These weird rules are brought to you by Backward-Compatibility and - * the strange people who wrote 'Make'. - */ - if (gn->type & (OP_USE|OP_USEBEFORE)) { - /* - * If the node is a USE node it is *never* out of date - * no matter *what*. - */ - if (DEBUG(MAKE)) { - fprintf(debug_file, ".USE node..."); - } - oodate = FALSE; - } else if ((gn->type & OP_LIB) && - ((gn->mtime==0) || Arch_IsLib(gn))) { - if (DEBUG(MAKE)) { - fprintf(debug_file, "library..."); - } - - /* - * always out of date if no children and :: target - * or non-existent. - */ - oodate = (gn->mtime == 0 || Arch_LibOODate(gn) || - (gn->cmgn == NULL && (gn->type & OP_DOUBLEDEP))); - } else if (gn->type & OP_JOIN) { - /* - * A target with the .JOIN attribute is only considered - * out-of-date if any of its children was out-of-date. - */ - if (DEBUG(MAKE)) { - fprintf(debug_file, ".JOIN node..."); - } - if (DEBUG(MAKE)) { - fprintf(debug_file, "source %smade...", gn->flags & CHILDMADE ? "" : "not "); - } - oodate = (gn->flags & CHILDMADE) ? TRUE : FALSE; - } else if (gn->type & (OP_FORCE|OP_EXEC|OP_PHONY)) { - /* - * A node which is the object of the force (!) operator or which has - * the .EXEC attribute is always considered out-of-date. - */ - if (DEBUG(MAKE)) { - if (gn->type & OP_FORCE) { - fprintf(debug_file, "! operator..."); - } else if (gn->type & OP_PHONY) { - fprintf(debug_file, ".PHONY node..."); - } else { - fprintf(debug_file, ".EXEC node..."); - } - } - oodate = TRUE; - } else if ((gn->cmgn != NULL && gn->mtime < gn->cmgn->mtime) || - (gn->cmgn == NULL && - ((gn->mtime == 0 && !(gn->type & OP_OPTIONAL)) - || gn->type & OP_DOUBLEDEP))) - { - /* - * A node whose modification time is less than that of its - * youngest child or that has no children (cmgn == NULL) and - * either doesn't exist (mtime == 0) and it isn't optional - * or was the object of a * :: operator is out-of-date. - * Why? Because that's the way Make does it. - */ - if (DEBUG(MAKE)) { - if (gn->cmgn != NULL && gn->mtime < gn->cmgn->mtime) { - fprintf(debug_file, "modified before source %s...", - gn->cmgn->path); - } else if (gn->mtime == 0) { - fprintf(debug_file, "non-existent and no sources..."); - } else { - fprintf(debug_file, ":: operator and no sources..."); - } - } - oodate = TRUE; - } else { - /* - * When a non-existing child with no sources - * (such as a typically used FORCE source) has been made and - * the target of the child (usually a directory) has the same - * timestamp as the timestamp just given to the non-existing child - * after it was considered made. - */ - if (DEBUG(MAKE)) { - if (gn->flags & FORCE) - fprintf(debug_file, "non existing child..."); - } - oodate = (gn->flags & FORCE) ? TRUE : FALSE; - } - -#ifdef USE_META - if (useMeta) { - oodate = meta_oodate(gn, oodate); - } -#endif - - /* - * If the target isn't out-of-date, the parents need to know its - * modification time. Note that targets that appear to be out-of-date - * but aren't, because they have no commands and aren't of type OP_NOP, - * have their mtime stay below their children's mtime to keep parents from - * thinking they're out-of-date. - */ - if (!oodate) { - Lst_ForEach(gn->parents, MakeTimeStamp, gn); - } - - return (oodate); -} - -/*- - *----------------------------------------------------------------------- - * MakeAddChild -- - * Function used by Make_Run to add a child to the list l. - * It will only add the child if its make field is FALSE. - * - * Input: - * gnp the node to add - * lp the list to which to add it - * - * Results: - * Always returns 0 - * - * Side Effects: - * The given list is extended - *----------------------------------------------------------------------- - */ -static int -MakeAddChild(void *gnp, void *lp) -{ - GNode *gn = (GNode *)gnp; - Lst l = (Lst) lp; - - if ((gn->flags & REMAKE) == 0 && !(gn->type & (OP_USE|OP_USEBEFORE))) { - if (DEBUG(MAKE)) - fprintf(debug_file, "MakeAddChild: need to examine %s%s\n", - gn->name, gn->cohort_num); - (void)Lst_EnQueue(l, gn); - } - return (0); -} - -/*- - *----------------------------------------------------------------------- - * MakeFindChild -- - * Function used by Make_Run to find the pathname of a child - * that was already made. - * - * Input: - * gnp the node to find - * - * Results: - * Always returns 0 - * - * Side Effects: - * The path and mtime of the node and the cmgn of the parent are - * updated; the unmade children count of the parent is decremented. - *----------------------------------------------------------------------- - */ -static int -MakeFindChild(void *gnp, void *pgnp) -{ - GNode *gn = (GNode *)gnp; - GNode *pgn = (GNode *)pgnp; - - (void)Dir_MTime(gn, 0); - Make_TimeStamp(pgn, gn); - pgn->unmade--; - - return (0); -} - -/*- - *----------------------------------------------------------------------- - * Make_HandleUse -- - * Function called by Make_Run and SuffApplyTransform on the downward - * pass to handle .USE and transformation nodes. It implements the - * .USE and transformation functionality by copying the node's commands, - * type flags and children to the parent node. - * - * A .USE node is much like an explicit transformation rule, except - * its commands are always added to the target node, even if the - * target already has commands. - * - * Input: - * cgn The .USE node - * pgn The target of the .USE node - * - * Results: - * none - * - * Side Effects: - * Children and commands may be added to the parent and the parent's - * type may be changed. - * - *----------------------------------------------------------------------- - */ -void -Make_HandleUse(GNode *cgn, GNode *pgn) -{ - LstNode ln; /* An element in the children list */ - -#ifdef DEBUG_SRC - if ((cgn->type & (OP_USE|OP_USEBEFORE|OP_TRANSFORM)) == 0) { - fprintf(debug_file, "Make_HandleUse: called for plain node %s\n", cgn->name); - return; - } -#endif - - if ((cgn->type & (OP_USE|OP_USEBEFORE)) || Lst_IsEmpty(pgn->commands)) { - if (cgn->type & OP_USEBEFORE) { - /* - * .USEBEFORE -- - * prepend the child's commands to the parent. - */ - Lst cmds = pgn->commands; - pgn->commands = Lst_Duplicate(cgn->commands, NULL); - (void)Lst_Concat(pgn->commands, cmds, LST_CONCNEW); - Lst_Destroy(cmds, NULL); - } else { - /* - * .USE or target has no commands -- - * append the child's commands to the parent. - */ - (void)Lst_Concat(pgn->commands, cgn->commands, LST_CONCNEW); - } - } - - if (Lst_Open(cgn->children) == SUCCESS) { - while ((ln = Lst_Next(cgn->children)) != NULL) { - GNode *tgn, *gn = (GNode *)Lst_Datum(ln); - - /* - * Expand variables in the .USE node's name - * and save the unexpanded form. - * We don't need to do this for commands. - * They get expanded properly when we execute. - */ - if (gn->uname == NULL) { - gn->uname = gn->name; - } else { - if (gn->name) - free(gn->name); - } - gn->name = Var_Subst(NULL, gn->uname, pgn, FALSE); - if (gn->name && gn->uname && strcmp(gn->name, gn->uname) != 0) { - /* See if we have a target for this node. */ - tgn = Targ_FindNode(gn->name, TARG_NOCREATE); - if (tgn != NULL) - gn = tgn; - } - - (void)Lst_AtEnd(pgn->children, gn); - (void)Lst_AtEnd(gn->parents, pgn); - pgn->unmade += 1; - } - Lst_Close(cgn->children); - } - - pgn->type |= cgn->type & ~(OP_OPMASK|OP_USE|OP_USEBEFORE|OP_TRANSFORM); -} - -/*- - *----------------------------------------------------------------------- - * MakeHandleUse -- - * Callback function for Lst_ForEach, used by Make_Run on the downward - * pass to handle .USE nodes. Should be called before the children - * are enqueued to be looked at by MakeAddChild. - * This function calls Make_HandleUse to copy the .USE node's commands, - * type flags and children to the parent node. - * - * Input: - * cgnp the child we've just examined - * pgnp the current parent - * - * Results: - * returns 0. - * - * Side Effects: - * After expansion, .USE child nodes are removed from the parent - * - *----------------------------------------------------------------------- - */ -static int -MakeHandleUse(void *cgnp, void *pgnp) -{ - GNode *cgn = (GNode *)cgnp; - GNode *pgn = (GNode *)pgnp; - LstNode ln; /* An element in the children list */ - int unmarked; - - unmarked = ((cgn->type & OP_MARK) == 0); - cgn->type |= OP_MARK; - - if ((cgn->type & (OP_USE|OP_USEBEFORE)) == 0) - return (0); - - if (unmarked) - Make_HandleUse(cgn, pgn); - - /* - * This child node is now "made", so we decrement the count of - * unmade children in the parent... We also remove the child - * from the parent's list to accurately reflect the number of decent - * children the parent has. This is used by Make_Run to decide - * whether to queue the parent or examine its children... - */ - if ((ln = Lst_Member(pgn->children, cgn)) != NULL) { - Lst_Remove(pgn->children, ln); - pgn->unmade--; - } - return (0); -} - - -/*- - *----------------------------------------------------------------------- - * Make_Recheck -- - * Check the modification time of a gnode, and update it as described - * in the comments below. - * - * Results: - * returns 0 if the gnode does not exist, or it's filesystem - * time if it does. - * - * Side Effects: - * the gnode's modification time and path name are affected. - * - *----------------------------------------------------------------------- - */ -time_t -Make_Recheck(GNode *gn) -{ - time_t mtime = Dir_MTime(gn, 1); - -#ifndef RECHECK - /* - * We can't re-stat the thing, but we can at least take care of rules - * where a target depends on a source that actually creates the - * target, but only if it has changed, e.g. - * - * parse.h : parse.o - * - * parse.o : parse.y - * yacc -d parse.y - * cc -c y.tab.c - * mv y.tab.o parse.o - * cmp -s y.tab.h parse.h || mv y.tab.h parse.h - * - * In this case, if the definitions produced by yacc haven't changed - * from before, parse.h won't have been updated and gn->mtime will - * reflect the current modification time for parse.h. This is - * something of a kludge, I admit, but it's a useful one.. - * XXX: People like to use a rule like - * - * FRC: - * - * To force things that depend on FRC to be made, so we have to - * check for gn->children being empty as well... - */ - if (!Lst_IsEmpty(gn->commands) || Lst_IsEmpty(gn->children)) { - gn->mtime = now; - } -#else - /* - * This is what Make does and it's actually a good thing, as it - * allows rules like - * - * cmp -s y.tab.h parse.h || cp y.tab.h parse.h - * - * to function as intended. Unfortunately, thanks to the stateless - * nature of NFS (by which I mean the loose coupling of two clients - * using the same file from a common server), there are times - * when the modification time of a file created on a remote - * machine will not be modified before the local stat() implied by - * the Dir_MTime occurs, thus leading us to believe that the file - * is unchanged, wreaking havoc with files that depend on this one. - * - * I have decided it is better to make too much than to make too - * little, so this stuff is commented out unless you're sure it's ok. - * -- ardeb 1/12/88 - */ - /* - * Christos, 4/9/92: If we are saving commands pretend that - * the target is made now. Otherwise archives with ... rules - * don't work! - */ - if (NoExecute(gn) || (gn->type & OP_SAVE_CMDS) || - (mtime == 0 && !(gn->type & OP_WAIT))) { - if (DEBUG(MAKE)) { - fprintf(debug_file, " recheck(%s): update time from %s to now\n", - gn->name, Targ_FmtTime(gn->mtime)); - } - gn->mtime = now; - } - else { - if (DEBUG(MAKE)) { - fprintf(debug_file, " recheck(%s): current update time: %s\n", - gn->name, Targ_FmtTime(gn->mtime)); - } - } -#endif - return mtime; -} - -/*- - *----------------------------------------------------------------------- - * Make_Update -- - * Perform update on the parents of a node. Used by JobFinish once - * a node has been dealt with and by MakeStartJobs if it finds an - * up-to-date node. - * - * Input: - * cgn the child node - * - * Results: - * Always returns 0 - * - * Side Effects: - * The unmade field of pgn is decremented and pgn may be placed on - * the toBeMade queue if this field becomes 0. - * - * If the child was made, the parent's flag CHILDMADE field will be - * set true. - * - * If the child is not up-to-date and still does not exist, - * set the FORCE flag on the parents. - * - * If the child wasn't made, the cmgn field of the parent will be - * altered if the child's mtime is big enough. - * - * Finally, if the child is the implied source for the parent, the - * parent's IMPSRC variable is set appropriately. - * - *----------------------------------------------------------------------- - */ -void -Make_Update(GNode *cgn) -{ - GNode *pgn; /* the parent node */ - char *cname; /* the child's name */ - LstNode ln; /* Element in parents and iParents lists */ - time_t mtime = -1; - char *p1; - Lst parents; - GNode *centurion; - - /* It is save to re-examine any nodes again */ - checked++; - - cname = Var_Value(TARGET, cgn, &p1); - if (p1) - free(p1); - - if (DEBUG(MAKE)) - fprintf(debug_file, "Make_Update: %s%s\n", cgn->name, cgn->cohort_num); - - /* - * If the child was actually made, see what its modification time is - * now -- some rules won't actually update the file. If the file still - * doesn't exist, make its mtime now. - */ - if (cgn->made != UPTODATE) { - mtime = Make_Recheck(cgn); - } - - /* - * If this is a `::' node, we must consult its first instance - * which is where all parents are linked. - */ - if ((centurion = cgn->centurion) != NULL) { - if (!Lst_IsEmpty(cgn->parents)) - Punt("%s%s: cohort has parents", cgn->name, cgn->cohort_num); - centurion->unmade_cohorts -= 1; - if (centurion->unmade_cohorts < 0) - Error("Graph cycles through centurion %s", centurion->name); - } else { - centurion = cgn; - } - parents = centurion->parents; - - /* If this was a .ORDER node, schedule the RHS */ - Lst_ForEach(centurion->order_succ, MakeBuildParent, Lst_First(toBeMade)); - - /* Now mark all the parents as having one less unmade child */ - if (Lst_Open(parents) == SUCCESS) { - while ((ln = Lst_Next(parents)) != NULL) { - pgn = (GNode *)Lst_Datum(ln); - if (DEBUG(MAKE)) - fprintf(debug_file, "inspect parent %s%s: flags %x, " - "type %x, made %d, unmade %d ", - pgn->name, pgn->cohort_num, pgn->flags, - pgn->type, pgn->made, pgn->unmade-1); - - if (!(pgn->flags & REMAKE)) { - /* This parent isn't needed */ - if (DEBUG(MAKE)) - fprintf(debug_file, "- not needed\n"); - continue; - } - if (mtime == 0 && !(cgn->type & OP_WAIT)) - pgn->flags |= FORCE; - - /* - * If the parent has the .MADE attribute, its timestamp got - * updated to that of its newest child, and its unmake - * child count got set to zero in Make_ExpandUse(). - * However other things might cause us to build one of its - * children - and so we mustn't do any processing here when - * the child build finishes. - */ - if (pgn->type & OP_MADE) { - if (DEBUG(MAKE)) - fprintf(debug_file, "- .MADE\n"); - continue; - } - - if ( ! (cgn->type & (OP_EXEC|OP_USE|OP_USEBEFORE))) { - if (cgn->made == MADE) - pgn->flags |= CHILDMADE; - (void)Make_TimeStamp(pgn, cgn); - } - - /* - * A parent must wait for the completion of all instances - * of a `::' dependency. - */ - if (centurion->unmade_cohorts != 0 || centurion->made < MADE) { - if (DEBUG(MAKE)) - fprintf(debug_file, - "- centurion made %d, %d unmade cohorts\n", - centurion->made, centurion->unmade_cohorts); - continue; - } - - /* One more child of this parent is now made */ - pgn->unmade -= 1; - if (pgn->unmade < 0) { - if (DEBUG(MAKE)) { - fprintf(debug_file, "Graph cycles through %s%s\n", - pgn->name, pgn->cohort_num); - Targ_PrintGraph(2); - } - Error("Graph cycles through %s%s", pgn->name, pgn->cohort_num); - } - - /* We must always rescan the parents of .WAIT and .ORDER nodes. */ - if (pgn->unmade != 0 && !(centurion->type & OP_WAIT) - && !(centurion->flags & DONE_ORDER)) { - if (DEBUG(MAKE)) - fprintf(debug_file, "- unmade children\n"); - continue; - } - if (pgn->made != DEFERRED) { - /* - * Either this parent is on a different branch of the tree, - * or it on the RHS of a .WAIT directive - * or it is already on the toBeMade list. - */ - if (DEBUG(MAKE)) - fprintf(debug_file, "- not deferred\n"); - continue; - } - if (pgn->order_pred - && Lst_ForEach(pgn->order_pred, MakeCheckOrder, 0)) { - /* A .ORDER rule stops us building this */ - continue; - } - if (DEBUG(MAKE)) { - static int two = 2; - fprintf(debug_file, "- %s%s made, schedule %s%s (made %d)\n", - cgn->name, cgn->cohort_num, - pgn->name, pgn->cohort_num, pgn->made); - Targ_PrintNode(pgn, &two); - } - /* Ok, we can schedule the parent again */ - pgn->made = REQUESTED; - (void)Lst_EnQueue(toBeMade, pgn); - } - Lst_Close(parents); - } - - /* - * Set the .PREFIX and .IMPSRC variables for all the implied parents - * of this node. - */ - if (Lst_Open(cgn->iParents) == SUCCESS) { - char *cpref = Var_Value(PREFIX, cgn, &p1); - - while ((ln = Lst_Next(cgn->iParents)) != NULL) { - pgn = (GNode *)Lst_Datum(ln); - if (pgn->flags & REMAKE) { - Var_Set(IMPSRC, cname, pgn, 0); - if (cpref != NULL) - Var_Set(PREFIX, cpref, pgn, 0); - } - } - if (p1) - free(p1); - Lst_Close(cgn->iParents); - } -} - -/*- - *----------------------------------------------------------------------- - * MakeAddAllSrc -- - * Add a child's name to the ALLSRC and OODATE variables of the given - * node. Called from Make_DoAllVar via Lst_ForEach. A child is added only - * if it has not been given the .EXEC, .USE or .INVISIBLE attributes. - * .EXEC and .USE children are very rarely going to be files, so... - * If the child is a .JOIN node, its ALLSRC is propagated to the parent. - * - * A child is added to the OODATE variable if its modification time is - * later than that of its parent, as defined by Make, except if the - * parent is a .JOIN node. In that case, it is only added to the OODATE - * variable if it was actually made (since .JOIN nodes don't have - * modification times, the comparison is rather unfair...).. - * - * Results: - * Always returns 0 - * - * Side Effects: - * The ALLSRC variable for the given node is extended. - *----------------------------------------------------------------------- - */ -static int -MakeUnmark(void *cgnp, void *pgnp MAKE_ATTR_UNUSED) -{ - GNode *cgn = (GNode *)cgnp; - - cgn->type &= ~OP_MARK; - return (0); -} - -/* - * Input: - * cgnp The child to add - * pgnp The parent to whose ALLSRC variable it should - * be added - * - */ -static int -MakeAddAllSrc(void *cgnp, void *pgnp) -{ - GNode *cgn = (GNode *)cgnp; - GNode *pgn = (GNode *)pgnp; - - if (cgn->type & OP_MARK) - return (0); - cgn->type |= OP_MARK; - - if ((cgn->type & (OP_EXEC|OP_USE|OP_USEBEFORE|OP_INVISIBLE)) == 0) { - char *child, *allsrc; - char *p1 = NULL, *p2 = NULL; - - if (cgn->type & OP_ARCHV) - child = Var_Value(MEMBER, cgn, &p1); - else - child = cgn->path ? cgn->path : cgn->name; - if (cgn->type & OP_JOIN) { - allsrc = Var_Value(ALLSRC, cgn, &p2); - } else { - allsrc = child; - } - if (allsrc != NULL) - Var_Append(ALLSRC, allsrc, pgn); - if (p2) - free(p2); - if (pgn->type & OP_JOIN) { - if (cgn->made == MADE) { - Var_Append(OODATE, child, pgn); - } - } else if ((pgn->mtime < cgn->mtime) || - (cgn->mtime >= now && cgn->made == MADE)) - { - /* - * It goes in the OODATE variable if the parent is younger than the - * child or if the child has been modified more recently than - * the start of the make. This is to keep pmake from getting - * confused if something else updates the parent after the - * make starts (shouldn't happen, I know, but sometimes it - * does). In such a case, if we've updated the kid, the parent - * is likely to have a modification time later than that of - * the kid and anything that relies on the OODATE variable will - * be hosed. - * - * XXX: This will cause all made children to go in the OODATE - * variable, even if they're not touched, if RECHECK isn't defined, - * since cgn->mtime is set to now in Make_Update. According to - * some people, this is good... - */ - Var_Append(OODATE, child, pgn); - } - if (p1) - free(p1); - } - return (0); -} - -/*- - *----------------------------------------------------------------------- - * Make_DoAllVar -- - * Set up the ALLSRC and OODATE variables. Sad to say, it must be - * done separately, rather than while traversing the graph. This is - * because Make defined OODATE to contain all sources whose modification - * times were later than that of the target, *not* those sources that - * were out-of-date. Since in both compatibility and native modes, - * the modification time of the parent isn't found until the child - * has been dealt with, we have to wait until now to fill in the - * variable. As for ALLSRC, the ordering is important and not - * guaranteed when in native mode, so it must be set here, too. - * - * Results: - * None - * - * Side Effects: - * The ALLSRC and OODATE variables of the given node is filled in. - * If the node is a .JOIN node, its TARGET variable will be set to - * match its ALLSRC variable. - *----------------------------------------------------------------------- - */ -void -Make_DoAllVar(GNode *gn) -{ - if (gn->flags & DONE_ALLSRC) - return; - - Lst_ForEach(gn->children, MakeUnmark, gn); - Lst_ForEach(gn->children, MakeAddAllSrc, gn); - - if (!Var_Exists (OODATE, gn)) { - Var_Set(OODATE, "", gn, 0); - } - if (!Var_Exists (ALLSRC, gn)) { - Var_Set(ALLSRC, "", gn, 0); - } - - if (gn->type & OP_JOIN) { - char *p1; - Var_Set(TARGET, Var_Value(ALLSRC, gn, &p1), gn, 0); - if (p1) - free(p1); - } - gn->flags |= DONE_ALLSRC; -} - -/*- - *----------------------------------------------------------------------- - * MakeStartJobs -- - * Start as many jobs as possible. - * - * Results: - * If the query flag was given to pmake, no job will be started, - * but as soon as an out-of-date target is found, this function - * returns TRUE. At all other times, this function returns FALSE. - * - * Side Effects: - * Nodes are removed from the toBeMade queue and job table slots - * are filled. - * - *----------------------------------------------------------------------- - */ - -static int -MakeCheckOrder(void *v_bn, void *ignore MAKE_ATTR_UNUSED) -{ - GNode *bn = v_bn; - - if (bn->made >= MADE || !(bn->flags & REMAKE)) - return 0; - if (DEBUG(MAKE)) - fprintf(debug_file, "MakeCheckOrder: Waiting for .ORDER node %s%s\n", - bn->name, bn->cohort_num); - return 1; -} - -static int -MakeBuildChild(void *v_cn, void *toBeMade_next) -{ - GNode *cn = v_cn; - - if (DEBUG(MAKE)) - fprintf(debug_file, "MakeBuildChild: inspect %s%s, made %d, type %x\n", - cn->name, cn->cohort_num, cn->made, cn->type); - if (cn->made > DEFERRED) - return 0; - - /* If this node is on the RHS of a .ORDER, check LHSs. */ - if (cn->order_pred && Lst_ForEach(cn->order_pred, MakeCheckOrder, 0)) { - /* Can't build this (or anything else in this child list) yet */ - cn->made = DEFERRED; - return 1; - } - - if (DEBUG(MAKE)) - fprintf(debug_file, "MakeBuildChild: schedule %s%s\n", - cn->name, cn->cohort_num); - - cn->made = REQUESTED; - if (toBeMade_next == NULL) - Lst_AtEnd(toBeMade, cn); - else - Lst_InsertBefore(toBeMade, toBeMade_next, cn); - - if (cn->unmade_cohorts != 0) - Lst_ForEach(cn->cohorts, MakeBuildChild, toBeMade_next); - - /* - * If this node is a .WAIT node with unmade chlidren - * then don't add the next sibling. - */ - return cn->type & OP_WAIT && cn->unmade > 0; -} - -/* When a .ORDER RHS node completes we do this on each LHS */ -static int -MakeBuildParent(void *v_pn, void *toBeMade_next) -{ - GNode *pn = v_pn; - - if (pn->made != DEFERRED) - return 0; - - if (MakeBuildChild(pn, toBeMade_next) == 0) { - /* Mark so that when this node is built we reschedule its parents */ - pn->flags |= DONE_ORDER; - } - - return 0; -} - -static Boolean -MakeStartJobs(void) -{ - GNode *gn; - int have_token = 0; - - while (!Lst_IsEmpty (toBeMade)) { - /* Get token now to avoid cycling job-list when we only have 1 token */ - if (!have_token && !Job_TokenWithdraw()) - break; - have_token = 1; - - gn = (GNode *)Lst_DeQueue(toBeMade); - if (DEBUG(MAKE)) - fprintf(debug_file, "Examining %s%s...\n", - gn->name, gn->cohort_num); - - if (gn->made != REQUESTED) { - if (DEBUG(MAKE)) - fprintf(debug_file, "state %d\n", gn->made); - - make_abort(gn, __LINE__); - } - - if (gn->checked == checked) { - /* We've already looked at this node since a job finished... */ - if (DEBUG(MAKE)) - fprintf(debug_file, "already checked %s%s\n", - gn->name, gn->cohort_num); - gn->made = DEFERRED; - continue; - } - gn->checked = checked; - - if (gn->unmade != 0) { - /* - * We can't build this yet, add all unmade children to toBeMade, - * just before the current first element. - */ - gn->made = DEFERRED; - Lst_ForEach(gn->children, MakeBuildChild, Lst_First(toBeMade)); - /* and drop this node on the floor */ - if (DEBUG(MAKE)) - fprintf(debug_file, "dropped %s%s\n", gn->name, gn->cohort_num); - continue; - } - - gn->made = BEINGMADE; - if (Make_OODate(gn)) { - if (DEBUG(MAKE)) { - fprintf(debug_file, "out-of-date\n"); - } - if (queryFlag) { - return (TRUE); - } - Make_DoAllVar(gn); - Job_Make(gn); - have_token = 0; - } else { - if (DEBUG(MAKE)) { - fprintf(debug_file, "up-to-date\n"); - } - gn->made = UPTODATE; - if (gn->type & OP_JOIN) { - /* - * Even for an up-to-date .JOIN node, we need it to have its - * context variables so references to it get the correct - * value for .TARGET when building up the context variables - * of its parent(s)... - */ - Make_DoAllVar(gn); - } - Make_Update(gn); - } - } - - if (have_token) - Job_TokenReturn(); - - return (FALSE); -} - -/*- - *----------------------------------------------------------------------- - * MakePrintStatus -- - * Print the status of a top-level node, viz. it being up-to-date - * already or not created due to an error in a lower level. - * Callback function for Make_Run via Lst_ForEach. - * - * Input: - * gnp Node to examine - * cyclep True if gn->unmade being non-zero implies a - * cycle in the graph, not an error in an - * inferior. - * - * Results: - * Always returns 0. - * - * Side Effects: - * A message may be printed. - * - *----------------------------------------------------------------------- - */ -static int -MakePrintStatusOrder(void *ognp, void *gnp) -{ - GNode *ogn = ognp; - GNode *gn = gnp; - - if (!(ogn->flags & REMAKE) || ogn->made > REQUESTED) - /* not waiting for this one */ - return 0; - - printf(" `%s%s' has .ORDER dependency against %s%s " - "(made %d, flags %x, type %x)\n", - gn->name, gn->cohort_num, - ogn->name, ogn->cohort_num, ogn->made, ogn->flags, ogn->type); - if (DEBUG(MAKE) && debug_file != stdout) - fprintf(debug_file, " `%s%s' has .ORDER dependency against %s%s " - "(made %d, flags %x, type %x)\n", - gn->name, gn->cohort_num, - ogn->name, ogn->cohort_num, ogn->made, ogn->flags, ogn->type); - return 0; -} - -static int -MakePrintStatus(void *gnp, void *v_errors) -{ - GNode *gn = (GNode *)gnp; - int *errors = v_errors; - - if (gn->flags & DONECYCLE) - /* We've completely processed this node before, don't do it again. */ - return 0; - - if (gn->unmade == 0) { - gn->flags |= DONECYCLE; - switch (gn->made) { - case UPTODATE: - printf("`%s%s' is up to date.\n", gn->name, gn->cohort_num); - break; - case MADE: - break; - case UNMADE: - case DEFERRED: - case REQUESTED: - case BEINGMADE: - (*errors)++; - printf("`%s%s' was not built (made %d, flags %x, type %x)!\n", - gn->name, gn->cohort_num, gn->made, gn->flags, gn->type); - if (DEBUG(MAKE) && debug_file != stdout) - fprintf(debug_file, - "`%s%s' was not built (made %d, flags %x, type %x)!\n", - gn->name, gn->cohort_num, gn->made, gn->flags, gn->type); - /* Most likely problem is actually caused by .ORDER */ - Lst_ForEach(gn->order_pred, MakePrintStatusOrder, gn); - break; - default: - /* Errors - already counted */ - printf("`%s%s' not remade because of errors.\n", - gn->name, gn->cohort_num); - if (DEBUG(MAKE) && debug_file != stdout) - fprintf(debug_file, "`%s%s' not remade because of errors.\n", - gn->name, gn->cohort_num); - break; - } - return 0; - } - - if (DEBUG(MAKE)) - fprintf(debug_file, "MakePrintStatus: %s%s has %d unmade children\n", - gn->name, gn->cohort_num, gn->unmade); - /* - * If printing cycles and came to one that has unmade children, - * print out the cycle by recursing on its children. - */ - if (!(gn->flags & CYCLE)) { - /* Fist time we've seen this node, check all children */ - gn->flags |= CYCLE; - Lst_ForEach(gn->children, MakePrintStatus, errors); - /* Mark that this node needn't be processed again */ - gn->flags |= DONECYCLE; - return 0; - } - - /* Only output the error once per node */ - gn->flags |= DONECYCLE; - Error("Graph cycles through `%s%s'", gn->name, gn->cohort_num); - if ((*errors)++ > 100) - /* Abandon the whole error report */ - return 1; - - /* Reporting for our children will give the rest of the loop */ - Lst_ForEach(gn->children, MakePrintStatus, errors); - return 0; -} - - -/*- - *----------------------------------------------------------------------- - * Make_ExpandUse -- - * Expand .USE nodes and create a new targets list - * - * Input: - * targs the initial list of targets - * - * Side Effects: - *----------------------------------------------------------------------- - */ -void -Make_ExpandUse(Lst targs) -{ - GNode *gn; /* a temporary pointer */ - Lst examine; /* List of targets to examine */ - - examine = Lst_Duplicate(targs, NULL); - - /* - * Make an initial downward pass over the graph, marking nodes to be made - * as we go down. We call Suff_FindDeps to find where a node is and - * to get some children for it if it has none and also has no commands. - * If the node is a leaf, we stick it on the toBeMade queue to - * be looked at in a minute, otherwise we add its children to our queue - * and go on about our business. - */ - while (!Lst_IsEmpty (examine)) { - gn = (GNode *)Lst_DeQueue(examine); - - if (gn->flags & REMAKE) - /* We've looked at this one already */ - continue; - gn->flags |= REMAKE; - if (DEBUG(MAKE)) - fprintf(debug_file, "Make_ExpandUse: examine %s%s\n", - gn->name, gn->cohort_num); - - if ((gn->type & OP_DOUBLEDEP) && !Lst_IsEmpty (gn->cohorts)) { - /* Append all the 'cohorts' to the list of things to examine */ - Lst new; - new = Lst_Duplicate(gn->cohorts, NULL); - Lst_Concat(new, examine, LST_CONCLINK); - examine = new; - } - - /* - * Apply any .USE rules before looking for implicit dependencies - * to make sure everything has commands that should... - * Make sure that the TARGET is set, so that we can make - * expansions. - */ - if (gn->type & OP_ARCHV) { - char *eoa, *eon; - eoa = strchr(gn->name, '('); - eon = strchr(gn->name, ')'); - if (eoa == NULL || eon == NULL) - continue; - *eoa = '\0'; - *eon = '\0'; - Var_Set(MEMBER, eoa + 1, gn, 0); - Var_Set(ARCHIVE, gn->name, gn, 0); - *eoa = '('; - *eon = ')'; - } - - (void)Dir_MTime(gn, 0); - Var_Set(TARGET, gn->path ? gn->path : gn->name, gn, 0); - Lst_ForEach(gn->children, MakeUnmark, gn); - Lst_ForEach(gn->children, MakeHandleUse, gn); - - if ((gn->type & OP_MADE) == 0) - Suff_FindDeps(gn); - else { - /* Pretend we made all this node's children */ - Lst_ForEach(gn->children, MakeFindChild, gn); - if (gn->unmade != 0) - printf("Warning: %s%s still has %d unmade children\n", - gn->name, gn->cohort_num, gn->unmade); - } - - if (gn->unmade != 0) - Lst_ForEach(gn->children, MakeAddChild, examine); - } - - Lst_Destroy(examine, NULL); -} - -/*- - *----------------------------------------------------------------------- - * Make_ProcessWait -- - * Convert .WAIT nodes into dependencies - * - * Input: - * targs the initial list of targets - * - *----------------------------------------------------------------------- - */ - -static int -link_parent(void *cnp, void *pnp) -{ - GNode *cn = cnp; - GNode *pn = pnp; - - Lst_AtEnd(pn->children, cn); - Lst_AtEnd(cn->parents, pn); - pn->unmade++; - return 0; -} - -static int -add_wait_dep(void *v_cn, void *v_wn) -{ - GNode *cn = v_cn; - GNode *wn = v_wn; - - if (cn == wn) - return 1; - - if (cn == NULL || wn == NULL) { - printf("bad wait dep %p %p\n", cn, wn); - exit(4); - } - if (DEBUG(MAKE)) - fprintf(debug_file, ".WAIT: add dependency %s%s -> %s\n", - cn->name, cn->cohort_num, wn->name); - - Lst_AtEnd(wn->children, cn); - wn->unmade++; - Lst_AtEnd(cn->parents, wn); - return 0; -} - -static void -Make_ProcessWait(Lst targs) -{ - GNode *pgn; /* 'parent' node we are examining */ - GNode *cgn; /* Each child in turn */ - LstNode owln; /* Previous .WAIT node */ - Lst examine; /* List of targets to examine */ - LstNode ln; - - /* - * We need all the nodes to have a common parent in order for the - * .WAIT and .ORDER scheduling to work. - * Perhaps this should be done earlier... - */ - - pgn = Targ_NewGN(".MAIN"); - pgn->flags = REMAKE; - pgn->type = OP_PHONY | OP_DEPENDS; - /* Get it displayed in the diag dumps */ - Lst_AtFront(Targ_List(), pgn); - - Lst_ForEach(targs, link_parent, pgn); - - /* Start building with the 'dummy' .MAIN' node */ - MakeBuildChild(pgn, NULL); - - examine = Lst_Init(FALSE); - Lst_AtEnd(examine, pgn); - - while (!Lst_IsEmpty (examine)) { - pgn = Lst_DeQueue(examine); - - /* We only want to process each child-list once */ - if (pgn->flags & DONE_WAIT) - continue; - pgn->flags |= DONE_WAIT; - if (DEBUG(MAKE)) - fprintf(debug_file, "Make_ProcessWait: examine %s\n", pgn->name); - - if ((pgn->type & OP_DOUBLEDEP) && !Lst_IsEmpty (pgn->cohorts)) { - /* Append all the 'cohorts' to the list of things to examine */ - Lst new; - new = Lst_Duplicate(pgn->cohorts, NULL); - Lst_Concat(new, examine, LST_CONCLINK); - examine = new; - } - - owln = Lst_First(pgn->children); - Lst_Open(pgn->children); - for (; (ln = Lst_Next(pgn->children)) != NULL; ) { - cgn = Lst_Datum(ln); - if (cgn->type & OP_WAIT) { - /* Make the .WAIT node depend on the previous children */ - Lst_ForEachFrom(pgn->children, owln, add_wait_dep, cgn); - owln = ln; - } else { - Lst_AtEnd(examine, cgn); - } - } - Lst_Close(pgn->children); - } - - Lst_Destroy(examine, NULL); -} - -/*- - *----------------------------------------------------------------------- - * Make_Run -- - * Initialize the nodes to remake and the list of nodes which are - * ready to be made by doing a breadth-first traversal of the graph - * starting from the nodes in the given list. Once this traversal - * is finished, all the 'leaves' of the graph are in the toBeMade - * queue. - * Using this queue and the Job module, work back up the graph, - * calling on MakeStartJobs to keep the job table as full as - * possible. - * - * Input: - * targs the initial list of targets - * - * Results: - * TRUE if work was done. FALSE otherwise. - * - * Side Effects: - * The make field of all nodes involved in the creation of the given - * targets is set to 1. The toBeMade list is set to contain all the - * 'leaves' of these subgraphs. - *----------------------------------------------------------------------- - */ -Boolean -Make_Run(Lst targs) -{ - int errors; /* Number of errors the Job module reports */ - - /* Start trying to make the current targets... */ - toBeMade = Lst_Init(FALSE); - - Make_ExpandUse(targs); - Make_ProcessWait(targs); - - if (DEBUG(MAKE)) { - fprintf(debug_file, "#***# full graph\n"); - Targ_PrintGraph(1); - } - - if (queryFlag) { - /* - * We wouldn't do any work unless we could start some jobs in the - * next loop... (we won't actually start any, of course, this is just - * to see if any of the targets was out of date) - */ - return (MakeStartJobs()); - } - /* - * Initialization. At the moment, no jobs are running and until some - * get started, nothing will happen since the remaining upward - * traversal of the graph is performed by the routines in job.c upon - * the finishing of a job. So we fill the Job table as much as we can - * before going into our loop. - */ - (void)MakeStartJobs(); - - /* - * Main Loop: The idea here is that the ending of jobs will take - * care of the maintenance of data structures and the waiting for output - * will cause us to be idle most of the time while our children run as - * much as possible. Because the job table is kept as full as possible, - * the only time when it will be empty is when all the jobs which need - * running have been run, so that is the end condition of this loop. - * Note that the Job module will exit if there were any errors unless the - * keepgoing flag was given. - */ - while (!Lst_IsEmpty(toBeMade) || jobTokensRunning > 0) { - Job_CatchOutput(); - (void)MakeStartJobs(); - } - - errors = Job_Finish(); - - /* - * Print the final status of each target. E.g. if it wasn't made - * because some inferior reported an error. - */ - if (DEBUG(MAKE)) - fprintf(debug_file, "done: errors %d\n", errors); - if (errors == 0) { - Lst_ForEach(targs, MakePrintStatus, &errors); - if (DEBUG(MAKE)) { - fprintf(debug_file, "done: errors %d\n", errors); - if (errors) - Targ_PrintGraph(4); - } - } - return errors != 0; -} diff --git a/external/bsd/bmake/dist/make.h b/external/bsd/bmake/dist/make.h deleted file mode 100644 index 384d109877b1..000000000000 --- a/external/bsd/bmake/dist/make.h +++ /dev/null @@ -1,518 +0,0 @@ -/* $NetBSD: make.h,v 1.89 2012/06/12 19:21:51 joerg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)make.h 8.3 (Berkeley) 6/13/95 - */ - -/* - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)make.h 8.3 (Berkeley) 6/13/95 - */ - -/*- - * make.h -- - * The global definitions for pmake - */ - -#ifndef _MAKE_H_ -#define _MAKE_H_ - -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - -#include -#include - -#include -#include -#include -#ifdef HAVE_STRING_H -#include -#else -#include -#endif -#include -#include - -#if defined(__GNUC__) -#define MAKE_GNUC_PREREQ(x, y) \ - ((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) || \ - (__GNUC__ > (x))) -#else /* defined(__GNUC__) */ -#define MAKE_GNUC_PREREQx, y) 0 -#endif /* defined(__GNUC__) */ - -#if MAKE_GNUC_PREREQ(2, 7) -#define MAKE_ATTR_UNUSED __attribute__((__unused__)) -#else -#define MAKE_ATTR_UNUSED /* delete */ -#endif - -#if MAKE_GNUC_PREREQ(2, 5) -#define MAKE_ATTR_DEAD __attribute__((__noreturn__)) -#elif defined(__GNUC__) -#define MAKE_ATTR_DEAD __volatile -#else -#define MAKE_ATTR_DEAD /* delete */ -#endif - -#if MAKE_GNUC_PREREQ(2, 7) -#define MAKE_ATTR_PRINTFLIKE(fmtarg, firstvararg) \ - __attribute__((__format__ (__printf__, fmtarg, firstvararg))) -#else -#define MAKE_ATTR_PRINTFLIKE(fmtarg, firstvararg) /* delete */ -#endif - -#include "sprite.h" -#include "lst.h" -#include "hash.h" -#include "make-conf.h" -#include "buf.h" -#include "make_malloc.h" - -/* - * some vendors don't have this --sjg - */ -#if defined(S_IFDIR) && !defined(S_ISDIR) -# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) -#endif - -#if defined(sun) && (defined(__svr4__) || defined(__SVR4)) -#define POSIX_SIGNALS -#endif - -/*- - * The structure for an individual graph node. Each node has several - * pieces of data associated with it. - * 1) the name of the target it describes - * 2) the location of the target file in the file system. - * 3) the type of operator used to define its sources (qv. parse.c) - * 4) whether it is involved in this invocation of make - * 5) whether the target has been remade - * 6) whether any of its children has been remade - * 7) the number of its children that are, as yet, unmade - * 8) its modification time - * 9) the modification time of its youngest child (qv. make.c) - * 10) a list of nodes for which this is a source (parents) - * 11) a list of nodes on which this depends (children) - * 12) a list of nodes that depend on this, as gleaned from the - * transformation rules (iParents) - * 13) a list of ancestor nodes, which includes parents, iParents, - * and recursive parents of parents - * 14) a list of nodes of the same name created by the :: operator - * 15) a list of nodes that must be made (if they're made) before - * this node can be, but that do not enter into the datedness of - * this node. - * 16) a list of nodes that must be made (if they're made) before - * this node or any child of this node can be, but that do not - * enter into the datedness of this node. - * 17) a list of nodes that must be made (if they're made) after - * this node is, but that do not depend on this node, in the - * normal sense. - * 18) a Lst of ``local'' variables that are specific to this target - * and this target only (qv. var.c [$@ $< $?, etc.]) - * 19) a Lst of strings that are commands to be given to a shell - * to create this target. - */ -typedef struct GNode { - char *name; /* The target's name */ - char *uname; /* The unexpanded name of a .USE node */ - char *path; /* The full pathname of the file */ - int type; /* Its type (see the OP flags, below) */ - - int flags; -#define REMAKE 0x1 /* this target needs to be (re)made */ -#define CHILDMADE 0x2 /* children of this target were made */ -#define FORCE 0x4 /* children don't exist, and we pretend made */ -#define DONE_WAIT 0x8 /* Set by Make_ProcessWait() */ -#define DONE_ORDER 0x10 /* Build requested by .ORDER processing */ -#define FROM_DEPEND 0x20 /* Node created from .depend */ -#define DONE_ALLSRC 0x40 /* We do it once only */ -#define CYCLE 0x1000 /* Used by MakePrintStatus */ -#define DONECYCLE 0x2000 /* Used by MakePrintStatus */ - enum enum_made { - UNMADE, DEFERRED, REQUESTED, BEINGMADE, - MADE, UPTODATE, ERROR, ABORTED - } made; /* Set to reflect the state of processing - * on this node: - * UNMADE - Not examined yet - * DEFERRED - Examined once (building child) - * REQUESTED - on toBeMade list - * BEINGMADE - Target is already being made. - * Indicates a cycle in the graph. - * MADE - Was out-of-date and has been made - * UPTODATE - Was already up-to-date - * ERROR - An error occurred while it was being - * made (used only in compat mode) - * ABORTED - The target was aborted due to - * an error making an inferior (compat). - */ - int unmade; /* The number of unmade children */ - - time_t mtime; /* Its modification time */ - struct GNode *cmgn; /* The youngest child */ - - Lst iParents; /* Links to parents for which this is an - * implied source, if any */ - Lst cohorts; /* Other nodes for the :: operator */ - Lst parents; /* Nodes that depend on this one */ - Lst children; /* Nodes on which this one depends */ - Lst order_pred; /* .ORDER nodes we need made */ - Lst order_succ; /* .ORDER nodes who need us */ - - char cohort_num[8]; /* #n for this cohort */ - int unmade_cohorts;/* # of unmade instances on the - cohorts list */ - struct GNode *centurion; /* Pointer to the first instance of a :: - node; only set when on a cohorts list */ - unsigned int checked; /* Last time we tried to makle this node */ - - Hash_Table context; /* The local variables */ - Lst commands; /* Creation commands */ - - struct _Suff *suffix; /* Suffix for the node (determined by - * Suff_FindDeps and opaque to everyone - * but the Suff module) */ - const char *fname; /* filename where the GNode got defined */ - int lineno; /* line number where the GNode got defined */ -} GNode; - -/* - * The OP_ constants are used when parsing a dependency line as a way of - * communicating to other parts of the program the way in which a target - * should be made. These constants are bitwise-OR'ed together and - * placed in the 'type' field of each node. Any node that has - * a 'type' field which satisfies the OP_NOP function was never never on - * the lefthand side of an operator, though it may have been on the - * righthand side... - */ -#define OP_DEPENDS 0x00000001 /* Execution of commands depends on - * kids (:) */ -#define OP_FORCE 0x00000002 /* Always execute commands (!) */ -#define OP_DOUBLEDEP 0x00000004 /* Execution of commands depends on kids - * per line (::) */ -#define OP_OPMASK (OP_DEPENDS|OP_FORCE|OP_DOUBLEDEP) - -#define OP_OPTIONAL 0x00000008 /* Don't care if the target doesn't - * exist and can't be created */ -#define OP_USE 0x00000010 /* Use associated commands for parents */ -#define OP_EXEC 0x00000020 /* Target is never out of date, but always - * execute commands anyway. Its time - * doesn't matter, so it has none...sort - * of */ -#define OP_IGNORE 0x00000040 /* Ignore errors when creating the node */ -#define OP_PRECIOUS 0x00000080 /* Don't remove the target when - * interrupted */ -#define OP_SILENT 0x00000100 /* Don't echo commands when executed */ -#define OP_MAKE 0x00000200 /* Target is a recursive make so its - * commands should always be executed when - * it is out of date, regardless of the - * state of the -n or -t flags */ -#define OP_JOIN 0x00000400 /* Target is out-of-date only if any of its - * children was out-of-date */ -#define OP_MADE 0x00000800 /* Assume the children of the node have - * been already made */ -#define OP_SPECIAL 0x00001000 /* Special .BEGIN, .END, .INTERRUPT */ -#define OP_USEBEFORE 0x00002000 /* Like .USE, only prepend commands */ -#define OP_INVISIBLE 0x00004000 /* The node is invisible to its parents. - * I.e. it doesn't show up in the parents's - * local variables. */ -#define OP_NOTMAIN 0x00008000 /* The node is exempt from normal 'main - * target' processing in parse.c */ -#define OP_PHONY 0x00010000 /* Not a file target; run always */ -#define OP_NOPATH 0x00020000 /* Don't search for file in the path */ -#define OP_WAIT 0x00040000 /* .WAIT phony node */ -#define OP_NOMETA 0x00080000 /* .NOMETA do not create a .meta file */ -#define OP_META 0x00100000 /* .META we _do_ want a .meta file */ -#define OP_NOMETA_CMP 0x00200000 /* Do not compare commands in .meta file */ -/* Attributes applied by PMake */ -#define OP_TRANSFORM 0x80000000 /* The node is a transformation rule */ -#define OP_MEMBER 0x40000000 /* Target is a member of an archive */ -#define OP_LIB 0x20000000 /* Target is a library */ -#define OP_ARCHV 0x10000000 /* Target is an archive construct */ -#define OP_HAS_COMMANDS 0x08000000 /* Target has all the commands it should. - * Used when parsing to catch multiple - * commands for a target */ -#define OP_SAVE_CMDS 0x04000000 /* Saving commands on .END (Compat) */ -#define OP_DEPS_FOUND 0x02000000 /* Already processed by Suff_FindDeps */ -#define OP_MARK 0x01000000 /* Node found while expanding .ALLSRC */ - -#define NoExecute(gn) ((gn->type & OP_MAKE) ? noRecursiveExecute : noExecute) -/* - * OP_NOP will return TRUE if the node with the given type was not the - * object of a dependency operator - */ -#define OP_NOP(t) (((t) & OP_OPMASK) == 0x00000000) - -#define OP_NOTARGET (OP_NOTMAIN|OP_USE|OP_EXEC|OP_TRANSFORM) - -/* - * The TARG_ constants are used when calling the Targ_FindNode and - * Targ_FindList functions in targ.c. They simply tell the functions what to - * do if the desired node(s) is (are) not found. If the TARG_CREATE constant - * is given, a new, empty node will be created for the target, placed in the - * table of all targets and its address returned. If TARG_NOCREATE is given, - * a NULL pointer will be returned. - */ -#define TARG_NOCREATE 0x00 /* don't create it */ -#define TARG_CREATE 0x01 /* create node if not found */ -#define TARG_NOHASH 0x02 /* don't look in/add to hash table */ - -/* - * These constants are all used by the Str_Concat function to decide how the - * final string should look. If STR_ADDSPACE is given, a space will be - * placed between the two strings. If STR_ADDSLASH is given, a '/' will - * be used instead of a space. If neither is given, no intervening characters - * will be placed between the two strings in the final output. If the - * STR_DOFREE bit is set, the two input strings will be freed before - * Str_Concat returns. - */ -#define STR_ADDSPACE 0x01 /* add a space when Str_Concat'ing */ -#define STR_ADDSLASH 0x02 /* add a slash when Str_Concat'ing */ - -/* - * Error levels for parsing. PARSE_FATAL means the process cannot continue - * once the makefile has been parsed. PARSE_WARNING means it can. Passed - * as the first argument to Parse_Error. - */ -#define PARSE_WARNING 2 -#define PARSE_FATAL 1 - -/* - * Values returned by Cond_Eval. - */ -#define COND_PARSE 0 /* Parse the next lines */ -#define COND_SKIP 1 /* Skip the next lines */ -#define COND_INVALID 2 /* Not a conditional statement */ - -/* - * Definitions for the "local" variables. Used only for clarity. - */ -#define TARGET "@" /* Target of dependency */ -#define OODATE "?" /* All out-of-date sources */ -#define ALLSRC ">" /* All sources */ -#define IMPSRC "<" /* Source implied by transformation */ -#define PREFIX "*" /* Common prefix */ -#define ARCHIVE "!" /* Archive in "archive(member)" syntax */ -#define MEMBER "%" /* Member in "archive(member)" syntax */ - -#define FTARGET "@F" /* file part of TARGET */ -#define DTARGET "@D" /* directory part of TARGET */ -#define FIMPSRC " b) ? a : b) -#endif - -#endif /* _MAKE_H_ */ diff --git a/external/bsd/bmake/dist/make_malloc.c b/external/bsd/bmake/dist/make_malloc.c deleted file mode 100644 index b8ac23f84652..000000000000 --- a/external/bsd/bmake/dist/make_malloc.c +++ /dev/null @@ -1,119 +0,0 @@ -/* $NetBSD: make_malloc.c,v 1.10 2012/06/20 17:46:28 sjg Exp $ */ - -/*- - * Copyright (c) 2009 The NetBSD Foundation, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#ifdef MAKE_NATIVE -#include -__RCSID("$NetBSD: make_malloc.c,v 1.10 2012/06/20 17:46:28 sjg Exp $"); -#endif - -#include -#include -#include -#include - -#include "make.h" - -#ifndef USE_EMALLOC -static void enomem(void) MAKE_ATTR_DEAD; - -/* - * enomem -- - * die when out of memory. - */ -static void -enomem(void) -{ - (void)fprintf(stderr, "%s: %s.\n", progname, strerror(ENOMEM)); - exit(2); -} - -/* - * bmake_malloc -- - * malloc, but die on error. - */ -void * -bmake_malloc(size_t len) -{ - void *p; - - if ((p = malloc(len)) == NULL) - enomem(); - return(p); -} - -/* - * bmake_strdup -- - * strdup, but die on error. - */ -char * -bmake_strdup(const char *str) -{ - size_t len; - char *p; - - len = strlen(str) + 1; - if ((p = malloc(len)) == NULL) - enomem(); - return memcpy(p, str, len); -} - -/* - * bmake_strndup -- - * strndup, but die on error. - */ -char * -bmake_strndup(const char *str, size_t max_len) -{ - size_t len; - char *p; - - if (str == NULL) - return NULL; - - len = strlen(str); - if (len > max_len) - len = max_len; - p = bmake_malloc(len + 1); - memcpy(p, str, len); - p[len] = '\0'; - - return(p); -} - -/* - * bmake_realloc -- - * realloc, but die on error. - */ -void * -bmake_realloc(void *ptr, size_t size) -{ - if ((ptr = realloc(ptr, size)) == NULL) - enomem(); - return(ptr); -} -#endif diff --git a/external/bsd/bmake/dist/make_malloc.h b/external/bsd/bmake/dist/make_malloc.h deleted file mode 100644 index 36d3eff3c027..000000000000 --- a/external/bsd/bmake/dist/make_malloc.h +++ /dev/null @@ -1,41 +0,0 @@ -/* $NetBSD: make_malloc.h,v 1.4 2009/01/24 14:43:29 dsl Exp $ */ - -/*- - * Copyright (c) 2009 The NetBSD Foundation, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef USE_EMALLOC -void *bmake_malloc(size_t); -void *bmake_realloc(void *, size_t); -char *bmake_strdup(const char *); -char *bmake_strndup(const char *, size_t); -#else -#include -#define bmake_malloc(x) emalloc(x) -#define bmake_realloc(x,y) erealloc(x,y) -#define bmake_strdup(x) estrdup(x) -#define bmake_strndup(x,y) estrndup(x,y) -#endif - diff --git a/external/bsd/bmake/dist/meta.c b/external/bsd/bmake/dist/meta.c deleted file mode 100644 index 77af4e8071df..000000000000 --- a/external/bsd/bmake/dist/meta.c +++ /dev/null @@ -1,1346 +0,0 @@ -/* $NetBSD: meta.c,v 1.25 2012/06/27 17:22:58 sjg Exp $ */ - -/* - * Implement 'meta' mode. - * Adapted from John Birrell's patches to FreeBSD make. - * --sjg - */ -/* - * Copyright (c) 2009-2010, Juniper Networks, Inc. - * Portions Copyright (c) 2009, John Birrell. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#if defined(USE_META) - -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif -#include -#include -#include -#include -#include -#if !defined(HAVE_CONFIG_H) || defined(HAVE_ERR_H) -#include -#endif - -#include "make.h" -#include "job.h" - -#ifdef HAVE_FILEMON_H -# include -#endif -#if !defined(USE_FILEMON) && defined(FILEMON_SET_FD) -# define USE_FILEMON -#endif - -static BuildMon Mybm; /* for compat */ -static Lst metaBailiwick; /* our scope of control */ - -Boolean useMeta = FALSE; -static Boolean useFilemon = FALSE; -static Boolean writeMeta = FALSE; -static Boolean metaEnv = FALSE; /* don't save env unless asked */ -static Boolean metaVerbose = FALSE; -static Boolean metaIgnoreCMDs = FALSE; /* ignore CMDs in .meta files */ -static Boolean metaCurdirOk = FALSE; /* write .meta in .CURDIR Ok? */ -static Boolean metaSilent = FALSE; /* if we have a .meta be SILENT */ - -extern Boolean forceJobs; -extern Boolean comatMake; -extern char **environ; - -#define MAKE_META_PREFIX ".MAKE.META.PREFIX" - -#ifndef N2U -# define N2U(n, u) (((n) + ((u) - 1)) / (u)) -#endif -#ifndef ROUNDUP -# define ROUNDUP(n, u) (N2U((n), (u)) * (u)) -#endif - -#if !defined(HAVE_STRSEP) -# define strsep(s, d) stresep((s), (d), 0) -#endif - -/* - * Filemon is a kernel module which snoops certain syscalls. - * - * C chdir - * E exec - * F [v]fork - * L [sym]link - * M rename - * R read - * W write - * S stat - * - * See meta_oodate below - we mainly care about 'E' and 'R'. - * - * We can still use meta mode without filemon, but - * the benefits are more limited. - */ -#ifdef USE_FILEMON -# ifndef _PATH_FILEMON -# define _PATH_FILEMON "/dev/filemon" -# endif - -/* - * Open the filemon device. - */ -static void -filemon_open(BuildMon *pbm) -{ - int retry; - - pbm->mon_fd = pbm->filemon_fd = -1; - if (!useFilemon) - return; - - for (retry = 5; retry >= 0; retry--) { - if ((pbm->filemon_fd = open(_PATH_FILEMON, O_RDWR)) >= 0) - break; - } - - if (pbm->filemon_fd < 0) { - useFilemon = FALSE; - warn("Could not open %s", _PATH_FILEMON); - return; - } - - /* - * We use a file outside of '.' - * to avoid a FreeBSD kernel bug where unlink invalidates - * cwd causing getcwd to do a lot more work. - * We only care about the descriptor. - */ - pbm->mon_fd = mkTempFile("filemon.XXXXXX", NULL); - if (ioctl(pbm->filemon_fd, FILEMON_SET_FD, &pbm->mon_fd) < 0) { - err(1, "Could not set filemon file descriptor!"); - } - /* we don't need these once we exec */ - (void)fcntl(pbm->mon_fd, F_SETFD, 1); - (void)fcntl(pbm->filemon_fd, F_SETFD, 1); -} - -/* - * Read the build monitor output file and write records to the target's - * metadata file. - */ -static void -filemon_read(FILE *mfp, int fd) -{ - FILE *fp; - char buf[BUFSIZ]; - - /* Check if we're not writing to a meta data file.*/ - if (mfp == NULL) { - if (fd >= 0) - close(fd); /* not interested */ - return; - } - /* rewind */ - (void)lseek(fd, (off_t)0, SEEK_SET); - if ((fp = fdopen(fd, "r")) == NULL) - err(1, "Could not read build monitor file '%d'", fd); - - fprintf(mfp, "-- filemon acquired metadata --\n"); - - while (fgets(buf, sizeof(buf), fp)) { - fprintf(mfp, "%s", buf); - } - fflush(mfp); - clearerr(fp); - fclose(fp); -} -#endif - -/* - * when realpath() fails, - * we use this, to clean up ./ and ../ - */ -static void -eat_dots(char *buf, size_t bufsz, int dots) -{ - char *cp; - char *cp2; - const char *eat; - size_t eatlen; - - switch (dots) { - case 1: - eat = "/./"; - eatlen = 2; - break; - case 2: - eat = "/../"; - eatlen = 3; - break; - default: - return; - } - - do { - cp = strstr(buf, eat); - if (cp) { - cp2 = cp + eatlen; - if (dots == 2 && cp > buf) { - do { - cp--; - } while (cp > buf && *cp != '/'); - } - if (*cp == '/') { - strlcpy(cp, cp2, bufsz - (cp - buf)); - } else { - return; /* can't happen? */ - } - } - } while (cp); -} - -static char * -meta_name(struct GNode *gn, char *mname, size_t mnamelen, - const char *dname, - const char *tname) -{ - char buf[MAXPATHLEN]; - char cwd[MAXPATHLEN]; - char *rp; - char *cp; - char *tp; - char *p[4]; /* >= number of possible uses */ - int i; - - i = 0; - if (!dname) - dname = Var_Value(".OBJDIR", gn, &p[i++]); - if (!tname) - tname = Var_Value(TARGET, gn, &p[i++]); - - if (realpath(dname, cwd)) - dname = cwd; - - /* - * Weed out relative paths from the target file name. - * We have to be careful though since if target is a - * symlink, the result will be unstable. - * So we use realpath() just to get the dirname, and leave the - * basename as given to us. - */ - if ((cp = strrchr(tname, '/'))) { - if (realpath(tname, buf)) { - if ((rp = strrchr(buf, '/'))) { - rp++; - cp++; - if (strcmp(cp, rp) != 0) - strlcpy(rp, cp, sizeof(buf) - (rp - buf)); - } - tname = buf; - } else { - /* - * We likely have a directory which is about to be made. - * We pretend realpath() succeeded, to have a chance - * of generating the same meta file name that we will - * next time through. - */ - if (tname[0] == '/') { - strlcpy(buf, tname, sizeof(buf)); - } else { - snprintf(buf, sizeof(buf), "%s/%s", cwd, tname); - } - eat_dots(buf, sizeof(buf), 1); /* ./ */ - eat_dots(buf, sizeof(buf), 2); /* ../ */ - tname = buf; - } - } - /* on some systems dirname may modify its arg */ - tp = bmake_strdup(tname); - if (strcmp(dname, dirname(tp)) == 0) - snprintf(mname, mnamelen, "%s.meta", tname); - else { - snprintf(mname, mnamelen, "%s/%s.meta", dname, tname); - - /* - * Replace path separators in the file name after the - * current object directory path. - */ - cp = mname + strlen(dname) + 1; - - while (*cp != '\0') { - if (*cp == '/') - *cp = '_'; - cp++; - } - } - free(tp); - for (i--; i >= 0; i--) { - if (p[i]) - free(p[i]); - } - return (mname); -} - -/* - * Return true if running ${.MAKE} - * Bypassed if target is flagged .MAKE - */ -static int -is_submake(void *cmdp, void *gnp) -{ - static char *p_make = NULL; - static int p_len; - char *cmd = cmdp; - GNode *gn = gnp; - char *mp = NULL; - char *cp; - char *cp2; - int rc = 0; /* keep looking */ - - if (!p_make) { - p_make = Var_Value(".MAKE", gn, &cp); - p_len = strlen(p_make); - } - cp = strchr(cmd, '$'); - if ((cp)) { - mp = Var_Subst(NULL, cmd, gn, FALSE); - cmd = mp; - } - cp2 = strstr(cmd, p_make); - if ((cp2)) { - switch (cp2[p_len]) { - case '\0': - case ' ': - case '\t': - case '\n': - rc = 1; - break; - } - if (cp2 > cmd && rc > 0) { - switch (cp2[-1]) { - case ' ': - case '\t': - case '\n': - break; - default: - rc = 0; /* no match */ - break; - } - } - } - if (mp) - free(mp); - return (rc); -} - -typedef struct meta_file_s { - FILE *fp; - GNode *gn; -} meta_file_t; - -static int -printCMD(void *cmdp, void *mfpp) -{ - meta_file_t *mfp = mfpp; - char *cmd = cmdp; - char *cp = NULL; - - if (strchr(cmd, '$')) { - cmd = cp = Var_Subst(NULL, cmd, mfp->gn, FALSE); - } - fprintf(mfp->fp, "CMD %s\n", cmd); - if (cp) - free(cp); - return 0; -} - -/* - * Certain node types never get a .meta file - */ -#define SKIP_META_TYPE(_type) do { \ - if ((gn->type & __CONCAT(OP_, _type))) { \ - if (DEBUG(META)) { \ - fprintf(debug_file, "Skipping meta for %s: .%s\n", \ - gn->name, __STRING(_type)); \ - } \ - return (NULL); \ - } \ -} while (0) - -static FILE * -meta_create(BuildMon *pbm, GNode *gn) -{ - meta_file_t mf; - char buf[MAXPATHLEN]; - char objdir[MAXPATHLEN]; - char **ptr; - const char *dname; - const char *tname; - char *fname; - const char *cp; - char *p[4]; /* >= possible uses */ - int i; - struct stat fs; - - - /* This may be a phony node which we don't want meta data for... */ - /* Skip .meta for .BEGIN, .END, .ERROR etc as well. */ - /* Or it may be explicitly flagged as .NOMETA */ - SKIP_META_TYPE(NOMETA); - /* Unless it is explicitly flagged as .META */ - if (!(gn->type & OP_META)) { - SKIP_META_TYPE(PHONY); - SKIP_META_TYPE(SPECIAL); - SKIP_META_TYPE(MAKE); - } - - mf.fp = NULL; - - i = 0; - - dname = Var_Value(".OBJDIR", gn, &p[i++]); - tname = Var_Value(TARGET, gn, &p[i++]); - - /* The object directory may not exist. Check it.. */ - if (stat(dname, &fs) != 0) { - if (DEBUG(META)) - fprintf(debug_file, "Skipping meta for %s: no .OBJDIR\n", - gn->name); - goto out; - } - /* Check if there are no commands to execute. */ - if (Lst_IsEmpty(gn->commands)) { - if (DEBUG(META)) - fprintf(debug_file, "Skipping meta for %s: no commands\n", - gn->name); - goto out; - } - - /* make sure these are canonical */ - if (realpath(dname, objdir)) - dname = objdir; - - /* If we aren't in the object directory, don't create a meta file. */ - if (!metaCurdirOk && strcmp(curdir, dname) == 0) { - if (DEBUG(META)) - fprintf(debug_file, "Skipping meta for %s: .OBJDIR == .CURDIR\n", - gn->name); - goto out; - } - if (!(gn->type & OP_META)) { - /* We do not generate .meta files for sub-makes */ - if (Lst_ForEach(gn->commands, is_submake, gn)) { - if (DEBUG(META)) - fprintf(debug_file, "Skipping meta for %s: .MAKE\n", - gn->name); - goto out; - } - } - - if (metaVerbose) { - char *mp; - - /* Describe the target we are building */ - mp = Var_Subst(NULL, "${" MAKE_META_PREFIX "}", gn, 0); - if (*mp) - fprintf(stdout, "%s\n", mp); - free(mp); - } - /* Get the basename of the target */ - if ((cp = strrchr(tname, '/')) == NULL) { - cp = tname; - } else { - cp++; - } - - fflush(stdout); - - if (strcmp(cp, makeDependfile) == 0) - goto out; - - if (!writeMeta) - /* Don't create meta data. */ - goto out; - - fname = meta_name(gn, pbm->meta_fname, sizeof(pbm->meta_fname), - dname, tname); - -#ifdef DEBUG_META_MODE - if (DEBUG(META)) - fprintf(debug_file, "meta_create: %s\n", fname); -#endif - - if ((mf.fp = fopen(fname, "w")) == NULL) - err(1, "Could not open meta file '%s'", fname); - - fprintf(mf.fp, "# Meta data file %s\n", fname); - - mf.gn = gn; - - Lst_ForEach(gn->commands, printCMD, &mf); - - fprintf(mf.fp, "CWD %s\n", getcwd(buf, sizeof(buf))); - fprintf(mf.fp, "TARGET %s\n", tname); - - if (metaEnv) { - for (ptr = environ; *ptr != NULL; ptr++) - fprintf(mf.fp, "ENV %s\n", *ptr); - } - - fprintf(mf.fp, "-- command output --\n"); - fflush(mf.fp); - - Var_Append(".MAKE.META.FILES", fname, VAR_GLOBAL); - Var_Append(".MAKE.META.CREATED", fname, VAR_GLOBAL); - - gn->type |= OP_META; /* in case anyone wants to know */ - if (metaSilent) { - gn->type |= OP_SILENT; - } - out: - for (i--; i >= 0; i--) { - if (p[i]) - free(p[i]); - } - - return (mf.fp); -} - -static Boolean -boolValue(char *s) -{ - switch(*s) { - case '0': - case 'N': - case 'n': - case 'F': - case 'f': - return FALSE; - } - return TRUE; -} - -void -meta_init(const char *make_mode) -{ - static int once = 0; - char *cp; - - useMeta = TRUE; - useFilemon = TRUE; - writeMeta = TRUE; - - if (make_mode) { - if (strstr(make_mode, "env")) - metaEnv = TRUE; - if (strstr(make_mode, "verb")) - metaVerbose = TRUE; - if (strstr(make_mode, "read")) - writeMeta = FALSE; - if (strstr(make_mode, "nofilemon")) - useFilemon = FALSE; - if ((cp = strstr(make_mode, "curdirok="))) { - metaCurdirOk = boolValue(&cp[9]); - } - if ((cp = strstr(make_mode, "silent="))) { - metaSilent = boolValue(&cp[7]); - } - if (strstr(make_mode, "ignore-cmd")) - metaIgnoreCMDs = TRUE; - /* for backwards compatability */ - Var_Set(".MAKE.META_CREATED", "${.MAKE.META.CREATED}", VAR_GLOBAL, 0); - Var_Set(".MAKE.META_FILES", "${.MAKE.META.FILES}", VAR_GLOBAL, 0); - } - if (metaVerbose && !Var_Exists(MAKE_META_PREFIX, VAR_GLOBAL)) { - /* - * The default value for MAKE_META_PREFIX - * prints the absolute path of the target. - * This works be cause :H will generate '.' if there is no / - * and :tA will resolve that to cwd. - */ - Var_Set(MAKE_META_PREFIX, "Building ${.TARGET:H:tA}/${.TARGET:T}", VAR_GLOBAL, 0); - } - if (once) - return; - once = 1; - memset(&Mybm, 0, sizeof(Mybm)); - /* - * We consider ourselves master of all within ${.MAKE.META.BAILIWICK} - */ - metaBailiwick = Lst_Init(FALSE); - cp = Var_Subst(NULL, "${.MAKE.META.BAILIWICK:O:u:tA}", VAR_GLOBAL, 0); - if (cp) { - str2Lst_Append(metaBailiwick, cp, NULL); - } -} - -/* - * In each case below we allow for job==NULL - */ -void -meta_job_start(Job *job, GNode *gn) -{ - BuildMon *pbm; - - if (job != NULL) { - pbm = &job->bm; - } else { - pbm = &Mybm; - } - pbm->mfp = meta_create(pbm, gn); -#ifdef USE_FILEMON_ONCE - /* compat mode we open the filemon dev once per command */ - if (job == NULL) - return; -#endif -#ifdef USE_FILEMON - if (pbm->mfp != NULL && useFilemon) { - filemon_open(pbm); - } else { - pbm->mon_fd = pbm->filemon_fd = -1; - } -#endif -} - -/* - * The child calls this before doing anything. - * It does not disturb our state. - */ -void -meta_job_child(Job *job) -{ -#ifdef USE_FILEMON - BuildMon *pbm; - pid_t pid; - - if (job != NULL) { - pbm = &job->bm; - } else { - pbm = &Mybm; - } - pid = getpid(); - if (pbm->mfp != NULL && useFilemon) { - if (ioctl(pbm->filemon_fd, FILEMON_SET_PID, &pid) < 0) { - err(1, "Could not set filemon pid!"); - } - } -#endif -} - -void -meta_job_error(Job *job, GNode *gn, int flags, int status) -{ - char cwd[MAXPATHLEN]; - BuildMon *pbm; - - if (job != NULL) { - pbm = &job->bm; - } else { - if (!gn) - gn = job->node; - pbm = &Mybm; - } - if (pbm->mfp != NULL) { - fprintf(pbm->mfp, "*** Error code %d%s\n", - status, - (flags & JOB_IGNERR) ? - "(ignored)" : ""); - } - if (gn) { - Var_Set(".ERROR_TARGET", gn->path ? gn->path : gn->name, VAR_GLOBAL, 0); - } - getcwd(cwd, sizeof(cwd)); - Var_Set(".ERROR_CWD", cwd, VAR_GLOBAL, 0); - if (pbm && pbm->meta_fname[0]) { - Var_Set(".ERROR_META_FILE", pbm->meta_fname, VAR_GLOBAL, 0); - } - meta_job_finish(job); -} - -void -meta_job_output(Job *job, char *cp, const char *nl) -{ - BuildMon *pbm; - - if (job != NULL) { - pbm = &job->bm; - } else { - pbm = &Mybm; - } - if (pbm->mfp != NULL) { - if (metaVerbose) { - static char *meta_prefix = NULL; - static int meta_prefix_len; - - if (!meta_prefix) { - char *cp2; - - meta_prefix = Var_Subst(NULL, "${" MAKE_META_PREFIX "}", VAR_GLOBAL, 0); - if ((cp2 = strchr(meta_prefix, '$'))) - meta_prefix_len = cp2 - meta_prefix; - else - meta_prefix_len = strlen(meta_prefix); - } - if (strncmp(cp, meta_prefix, meta_prefix_len) == 0) { - cp = strchr(cp+1, '\n'); - if (!cp++) - return; - } - } - fprintf(pbm->mfp, "%s%s", cp, nl); - } -} - -void -meta_cmd_finish(void *pbmp) -{ -#ifdef USE_FILEMON - BuildMon *pbm = pbmp; - - if (!pbm) - pbm = &Mybm; - - if (pbm->filemon_fd >= 0) { - close(pbm->filemon_fd); - filemon_read(pbm->mfp, pbm->mon_fd); - pbm->filemon_fd = pbm->mon_fd = -1; - } -#endif -} - -void -meta_job_finish(Job *job) -{ - BuildMon *pbm; - - if (job != NULL) { - pbm = &job->bm; - } else { - pbm = &Mybm; - } - if (pbm->mfp != NULL) { - meta_cmd_finish(pbm); - fclose(pbm->mfp); - pbm->mfp = NULL; - pbm->meta_fname[0] = '\0'; - } -} - -/* - * Fetch a full line from fp - growing bufp if needed - * Return length in bufp. - */ -static int -fgetLine(char **bufp, size_t *szp, int o, FILE *fp) -{ - char *buf = *bufp; - size_t bufsz = *szp; - struct stat fs; - int x; - - if (fgets(&buf[o], bufsz - o, fp) != NULL) { - check_newline: - x = o + strlen(&buf[o]); - if (buf[x - 1] == '\n') - return x; - /* - * We need to grow the buffer. - * The meta file can give us a clue. - */ - if (fstat(fileno(fp), &fs) == 0) { - size_t newsz; - char *p; - - newsz = ROUNDUP((fs.st_size / 2), BUFSIZ); - if (newsz <= bufsz) - newsz = ROUNDUP(fs.st_size, BUFSIZ); - if (DEBUG(META)) - fprintf(debug_file, "growing buffer %u -> %u\n", - (unsigned)bufsz, (unsigned)newsz); - p = bmake_realloc(buf, newsz); - if (p) { - *bufp = buf = p; - *szp = bufsz = newsz; - /* fetch the rest */ - if (!fgets(&buf[x], bufsz - x, fp)) - return x; /* truncated! */ - goto check_newline; - } - } - } - return 0; -} - -static int -prefix_match(void *p, void *q) -{ - const char *prefix = p; - const char *path = q; - size_t n = strlen(prefix); - - return (0 == strncmp(path, prefix, n)); -} - -static int -string_match(const void *p, const void *q) -{ - const char *p1 = p; - const char *p2 = q; - - return strcmp(p1, p2); -} - - -/* - * When running with 'meta' functionality, a target can be out-of-date - * if any of the references in it's meta data file is more recent. - * We have to track the latestdir on a per-process basis. - */ -#define LDIR_VNAME_FMT ".meta.%d.ldir" - -/* - * It is possible that a .meta file is corrupted, - * if we detect this we want to reproduce it. - * Setting oodate TRUE will have that effect. - */ -#define CHECK_VALID_META(p) if (!(p && *p)) { \ - warnx("%s: %d: malformed", fname, lineno); \ - oodate = TRUE; \ - continue; \ - } - -Boolean -meta_oodate(GNode *gn, Boolean oodate) -{ - static char *tmpdir = NULL; - static char cwd[MAXPATHLEN]; - char ldir_vname[64]; - char latestdir[MAXPATHLEN]; - char fname[MAXPATHLEN]; - char fname1[MAXPATHLEN]; - char fname2[MAXPATHLEN]; - char *p; - char *cp; - static size_t cwdlen = 0; - static size_t tmplen = 0; - FILE *fp; - Boolean ignoreOODATE = FALSE; - Lst missingFiles; - - if (oodate) - return oodate; /* we're done */ - - missingFiles = Lst_Init(FALSE); - - /* - * We need to check if the target is out-of-date. This includes - * checking if the expanded command has changed. This in turn - * requires that all variables are set in the same way that they - * would be if the target needs to be re-built. - */ - Make_DoAllVar(gn); - - meta_name(gn, fname, sizeof(fname), NULL, NULL); - -#ifdef DEBUG_META_MODE - if (DEBUG(META)) - fprintf(debug_file, "meta_oodate: %s\n", fname); -#endif - - if ((fp = fopen(fname, "r")) != NULL) { - static char *buf = NULL; - static size_t bufsz; - int lineno = 0; - int lastpid = 0; - int pid; - int f = 0; - int x; - LstNode ln; - struct stat fs; - - if (!buf) { - bufsz = 8 * BUFSIZ; - buf = bmake_malloc(bufsz); - } - - if (!cwdlen) { - if (getcwd(cwd, sizeof(cwd)) == NULL) - err(1, "Could not get current working directory"); - cwdlen = strlen(cwd); - } - - if (!tmpdir) { - tmpdir = getTmpdir(); - tmplen = strlen(tmpdir); - } - - /* we want to track all the .meta we read */ - Var_Append(".MAKE.META.FILES", fname, VAR_GLOBAL); - - ln = Lst_First(gn->commands); - while (!oodate && (x = fgetLine(&buf, &bufsz, 0, fp)) > 0) { - lineno++; - if (buf[x - 1] == '\n') - buf[x - 1] = '\0'; - else { - warnx("%s: %d: line truncated at %u", fname, lineno, x); - oodate = TRUE; - break; - } - /* Find the start of the build monitor section. */ - if (!f) { - if (strncmp(buf, "-- filemon", 10) == 0) { - f = 1; - continue; - } - if (strncmp(buf, "# buildmon", 10) == 0) { - f = 1; - continue; - } - } - - /* Delimit the record type. */ - p = buf; -#ifdef DEBUG_META_MODE - if (DEBUG(META)) - fprintf(debug_file, "%s: %d: %s\n", fname, lineno, buf); -#endif - strsep(&p, " "); - if (f) { - /* - * We are in the 'filemon' output section. - * Each record from filemon follows the general form: - * - * - * - * Where: - * is a single letter, denoting the syscall. - * is the process that made the syscall. - * is the arguments (of interest). - */ - switch(buf[0]) { - case '#': /* comment */ - case 'V': /* version */ - break; - default: - /* - * We need to track pathnames per-process. - * - * Each process run by make, starts off in the 'CWD' - * recorded in the .meta file, if it chdirs ('C') - * elsewhere we need to track that - but only for - * that process. If it forks ('F'), we initialize - * the child to have the same cwd as its parent. - * - * We also need to track the 'latestdir' of - * interest. This is usually the same as cwd, but - * not if a process is reading directories. - * - * Each time we spot a different process ('pid') - * we save the current value of 'latestdir' in a - * variable qualified by 'lastpid', and - * re-initialize 'latestdir' to any pre-saved - * value for the current 'pid' and 'CWD' if none. - */ - CHECK_VALID_META(p); - pid = atoi(p); - if (pid > 0 && pid != lastpid) { - char *ldir; - char *tp; - - if (lastpid > 0) { - /* We need to remember this. */ - Var_Set(ldir_vname, latestdir, VAR_GLOBAL, 0); - } - snprintf(ldir_vname, sizeof(ldir_vname), LDIR_VNAME_FMT, pid); - lastpid = pid; - ldir = Var_Value(ldir_vname, VAR_GLOBAL, &tp); - if (ldir) { - strlcpy(latestdir, ldir, sizeof(latestdir)); - if (tp) - free(tp); - } else - strlcpy(latestdir, cwd, sizeof(latestdir)); - } - /* Skip past the pid. */ - if (strsep(&p, " ") == NULL) - continue; -#ifdef DEBUG_META_MODE - if (DEBUG(META)) - fprintf(debug_file, "%s: %d: cwd=%s ldir=%s\n", fname, lineno, cwd, latestdir); -#endif - break; - } - - CHECK_VALID_META(p); - - /* Process according to record type. */ - switch (buf[0]) { - case 'X': /* eXit */ - Var_Delete(ldir_vname, VAR_GLOBAL); - lastpid = 0; /* no need to save ldir_vname */ - break; - - case 'F': /* [v]Fork */ - { - char cldir[64]; - int child; - - child = atoi(p); - if (child > 0) { - snprintf(cldir, sizeof(cldir), LDIR_VNAME_FMT, child); - Var_Set(cldir, latestdir, VAR_GLOBAL, 0); - } - } - break; - - case 'C': /* Chdir */ - /* Update the latest directory. */ - strlcpy(latestdir, p, sizeof(latestdir)); - break; - - case 'M': /* renaMe */ - if (Lst_IsEmpty(missingFiles)) - break; - /* 'L' and 'M' put single quotes around the args */ - if (*p == '\'') { - char *ep; - - p++; - if ((ep = strchr(p, '\''))) - *ep = '\0'; - } - /* FALLTHROUGH */ - case 'D': /* unlink */ - if (*p == '/' && !Lst_IsEmpty(missingFiles)) { - /* remove p from the missingFiles list if present */ - if ((ln = Lst_Find(missingFiles, p, string_match)) != NULL) { - char *tp = Lst_Datum(ln); - Lst_Remove(missingFiles, ln); - free(tp); - } - } - break; - case 'L': /* Link */ - /* we want the target */ - if (strsep(&p, " ") == NULL) - continue; - CHECK_VALID_META(p); - /* 'L' and 'M' put single quotes around the args */ - if (*p == '\'') { - char *ep; - - p++; - if ((ep = strchr(p, '\''))) - *ep = '\0'; - } - /* FALLTHROUGH */ - case 'W': /* Write */ - /* - * If a file we generated within our bailiwick - * but outside of .OBJDIR is missing, - * we need to do it again. - */ - /* ignore non-absolute paths */ - if (*p != '/') - break; - - if (Lst_IsEmpty(metaBailiwick)) - break; - - /* ignore cwd - normal dependencies handle those */ - if (strncmp(p, cwd, cwdlen) == 0) - break; - - if (!Lst_ForEach(metaBailiwick, prefix_match, p)) - break; - - /* tmpdir might be within */ - if (tmplen > 0 && strncmp(p, tmpdir, tmplen) == 0) - break; - - /* ignore anything containing the string "tmp" */ - if ((strstr("tmp", p))) - break; - - if (stat(p, &fs) < 0) { - Lst_AtEnd(missingFiles, bmake_strdup(p)); - } - break; - case 'R': /* Read */ - case 'E': /* Exec */ - /* - * Check for runtime files that can't - * be part of the dependencies because - * they are _expected_ to change. - */ - if (strncmp(p, "/tmp/", 5) == 0 || - (tmplen > 0 && strncmp(p, tmpdir, tmplen) == 0)) - break; - - if (strncmp(p, "/var/", 5) == 0) - break; - - /* Ignore device files. */ - if (strncmp(p, "/dev/", 5) == 0) - break; - - /* Ignore /etc/ files. */ - if (strncmp(p, "/etc/", 5) == 0) - break; - - if ((cp = strrchr(p, '/'))) { - cp++; - /* - * We don't normally expect to see this, - * but we do expect it to change. - */ - if (strcmp(cp, makeDependfile) == 0) - break; - } - - /* - * The rest of the record is the file name. - * Check if it's not an absolute path. - */ - { - char *sdirs[4]; - char **sdp; - int sdx = 0; - int found = 0; - - if (*p == '/') { - sdirs[sdx++] = p; /* done */ - } else { - if (strcmp(".", p) == 0) - continue; /* no point */ - - /* Check vs latestdir */ - snprintf(fname1, sizeof(fname1), "%s/%s", latestdir, p); - sdirs[sdx++] = fname1; - - if (strcmp(latestdir, cwd) != 0) { - /* Check vs cwd */ - snprintf(fname2, sizeof(fname2), "%s/%s", cwd, p); - sdirs[sdx++] = fname2; - } - } - sdirs[sdx++] = NULL; - - for (sdp = sdirs; *sdp && !found; sdp++) { -#ifdef DEBUG_META_MODE - if (DEBUG(META)) - fprintf(debug_file, "%s: %d: looking for: %s\n", fname, lineno, *sdp); -#endif - if (stat(*sdp, &fs) == 0) { - found = 1; - p = *sdp; - } - } - if (found) { -#ifdef DEBUG_META_MODE - if (DEBUG(META)) - fprintf(debug_file, "%s: %d: found: %s\n", fname, lineno, p); -#endif - if (!S_ISDIR(fs.st_mode) && - fs.st_mtime > gn->mtime) { - if (DEBUG(META)) - fprintf(debug_file, "%s: %d: file '%s' is newer than the target...\n", fname, lineno, p); - oodate = TRUE; - } else if (S_ISDIR(fs.st_mode)) { - /* Update the latest directory. */ - realpath(p, latestdir); - } - } else if (errno == ENOENT && *p == '/' && - strncmp(p, cwd, cwdlen) != 0) { - /* - * A referenced file outside of CWD is missing. - * We cannot catch every eventuality here... - */ - if (DEBUG(META)) - fprintf(debug_file, "%s: %d: file '%s' may have moved?...\n", fname, lineno, p); - oodate = TRUE; - } - } - break; - default: - break; - } - } else if (strcmp(buf, "CMD") == 0) { - /* - * Compare the current command with the one in the - * meta data file. - */ - if (ln == NULL) { - if (DEBUG(META)) - fprintf(debug_file, "%s: %d: there were more build commands in the meta data file than there are now...\n", fname, lineno); - oodate = TRUE; - } else { - char *cmd = (char *)Lst_Datum(ln); - - if (!ignoreOODATE) { - if (strstr(cmd, "$?")) - ignoreOODATE = TRUE; - else if ((cp = strstr(cmd, ".OODATE"))) { - /* check for $[{(].OODATE[)}] */ - if (cp > cmd + 2 && cp[-2] == '$') - ignoreOODATE = TRUE; - } - if (ignoreOODATE && DEBUG(META)) - fprintf(debug_file, "%s: %d: cannot compare commands using .OODATE\n", fname, lineno); - } - cmd = Var_Subst(NULL, cmd, gn, TRUE); - - if ((cp = strchr(cmd, '\n'))) { - int n; - - /* - * This command contains newlines, we need to - * fetch more from the .meta file before we - * attempt a comparison. - */ - /* first put the newline back at buf[x - 1] */ - buf[x - 1] = '\n'; - do { - /* now fetch the next line */ - if ((n = fgetLine(&buf, &bufsz, x, fp)) <= 0) - break; - x = n; - lineno++; - if (buf[x - 1] != '\n') { - warnx("%s: %d: line truncated at %u", fname, lineno, x); - break; - } - cp = strchr(++cp, '\n'); - } while (cp); - if (buf[x - 1] == '\n') - buf[x - 1] = '\0'; - } - if (!ignoreOODATE && - !(gn->type & OP_NOMETA_CMP) && - strcmp(p, cmd) != 0) { - if (DEBUG(META)) - fprintf(debug_file, "%s: %d: a build command has changed\n%s\nvs\n%s\n", fname, lineno, p, cmd); - if (!metaIgnoreCMDs) - oodate = TRUE; - } - free(cmd); - ln = Lst_Succ(ln); - } - } else if (strcmp(buf, "CWD") == 0) { - /* - * Check if there are extra commands now - * that weren't in the meta data file. - */ - if (!oodate && ln != NULL) { - if (DEBUG(META)) - fprintf(debug_file, "%s: %d: there are extra build commands now that weren't in the meta data file\n", fname, lineno); - oodate = TRUE; - } - if (strcmp(p, cwd) != 0) { - if (DEBUG(META)) - fprintf(debug_file, "%s: %d: the current working directory has changed from '%s' to '%s'\n", fname, lineno, p, curdir); - oodate = TRUE; - } - } - } - - fclose(fp); - if (!Lst_IsEmpty(missingFiles)) { - if (DEBUG(META)) - fprintf(debug_file, "%s: missing files: %s...\n", - fname, (char *)Lst_Datum(Lst_First(missingFiles))); - oodate = TRUE; - Lst_Destroy(missingFiles, (FreeProc *)free); - } - } else { - if ((gn->type & OP_META)) { - if (DEBUG(META)) - fprintf(debug_file, "%s: required but missing\n", fname); - oodate = TRUE; - } - } - if (oodate && ignoreOODATE) { - /* - * Target uses .OODATE, so we need to re-compute it. - * We need to clean up what Make_DoAllVar() did. - */ - Var_Delete(ALLSRC, gn); - Var_Delete(OODATE, gn); - gn->flags &= ~DONE_ALLSRC; - } - return oodate; -} - -/* support for compat mode */ - -static int childPipe[2]; - -void -meta_compat_start(void) -{ -#ifdef USE_FILEMON_ONCE - /* - * We need to re-open filemon for each cmd. - */ - BuildMon *pbm = &Mybm; - - if (pbm->mfp != NULL && useFilemon) { - filemon_open(pbm); - } else { - pbm->mon_fd = pbm->filemon_fd = -1; - } -#endif - if (pipe(childPipe) < 0) - Punt("Cannot create pipe: %s", strerror(errno)); - /* Set close-on-exec flag for both */ - (void)fcntl(childPipe[0], F_SETFD, 1); - (void)fcntl(childPipe[1], F_SETFD, 1); -} - -void -meta_compat_child(void) -{ - meta_job_child(NULL); - if (dup2(childPipe[1], 1) < 0 || - dup2(1, 2) < 0) { - execError("dup2", "pipe"); - _exit(1); - } -} - -void -meta_compat_parent(void) -{ - FILE *fp; - char buf[BUFSIZ]; - - close(childPipe[1]); /* child side */ - fp = fdopen(childPipe[0], "r"); - while (fgets(buf, sizeof(buf), fp)) { - meta_job_output(NULL, buf, ""); - printf("%s", buf); - } - fclose(fp); -} - -#endif /* USE_META */ diff --git a/external/bsd/bmake/dist/meta.h b/external/bsd/bmake/dist/meta.h deleted file mode 100644 index 1ce01ca901cb..000000000000 --- a/external/bsd/bmake/dist/meta.h +++ /dev/null @@ -1,54 +0,0 @@ -/* $NetBSD: meta.h,v 1.2 2011/03/30 22:03:49 sjg Exp $ */ - -/* - * Things needed for 'meta' mode. - */ -/* - * Copyright (c) 2009-2010, Juniper Networks, Inc. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the copyright holders nor the names of its - * contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -typedef struct BuildMon { - char meta_fname[MAXPATHLEN]; - int filemon_fd; - int mon_fd; - FILE *mfp; -} BuildMon; - -extern Boolean useMeta; - -struct Job; /* not defined yet */ -void meta_init(const char *); -void meta_job_start(struct Job *, GNode *); -void meta_job_child(struct Job *); -void meta_job_error(struct Job *, GNode *, int, int); -void meta_job_output(struct Job *, char *, const char *); -void meta_cmd_finish(void *); -void meta_job_finish(struct Job *); -Boolean meta_oodate(GNode *, Boolean); -void meta_compat_start(void); -void meta_compat_child(void); -void meta_compat_parent(void); diff --git a/external/bsd/bmake/dist/mkdeps.sh b/external/bsd/bmake/dist/mkdeps.sh deleted file mode 100755 index dd87c4f5020e..000000000000 --- a/external/bsd/bmake/dist/mkdeps.sh +++ /dev/null @@ -1,314 +0,0 @@ -: -# NAME: -# mkdeps - generate dependencies -# -# SYNOPSIS: -# mkdeps [options] file ... -# -# DESCRIPTION: -# This script updates "makefile" with dependencies for -# "file"(s). It borrows ideas from various makedepend scripts -# and should be compatible with most. -# -# By default we use grep to extract include file names from -# source files. We source an "rc" file '$Mydir/.${Myname}rc' which -# can contain variable assignments such as: -#.nf -# -# cpp_c=/usr/lib/cpp -# cpp_cc=g++ -E -# ... -# -#.fi -# If the variable 'cpp_$suffix' is set, we use it as our cpp in -# place of grep. The program referenced by these variables are -# expected to produce output like: -#.nf -# -# # 10 \"/usr/include/stdio.h\" 1 -# -#.fi -# This allows us to skip most of our processing. For lex,yacc -# and other source files, grep is probably just as quick and -# certainly more portable. -# -# If the "rc" file does not exist, we create it and attempt to -# find cpp or an equivalent cc invocation to assign to 'cpp_c'. -# -# AUTHOR: -# Simon J. Gerraty -# - -# RCSid: -# $Id: mkdeps.sh,v 1.23 2002/11/29 06:58:59 sjg Exp $ -# -# @(#) Copyright (c) 1993 Simon J. Gerraty -# -# This file is provided in the hope that it will -# be of use. There is absolutely NO WARRANTY. -# Permission to copy, redistribute or otherwise -# use this file is hereby granted provided that -# the above copyright notice and this notice are -# left intact. -# -# Please send copies of changes and bug-fixes to: -# sjg@zen.void.oz.au -# - -Myname=`basename $0 .sh` -Mydir=`dirname $0` - -case `echo -n .` in --n*) N=; C="\c";; -*) N=-n; C=;; -esac - -cc_include=-I/usr/include - -TF=/tmp/dep.$$ -EF=/tmp/deperr.$$ -> $EF - -case "$*" in -*-n*) # don't use rc file - rc=/dev/null - norc=yes;; -*) - rc=$Mydir/.${Myname}rc - ;; -esac - -update= -Include=include - -if [ x"$norc" = x -a -f $rc ]; then - . $rc -else - # if /usr/lib/cpp or equivalent is available it is better than - # grepping .c files. - # See what (if anything) works on this system... - echo : > $rc - echo "# pre-processor for .c files" >> $rc - # try a couple of sane places first - for d in /usr/libexec /usr/lib /usr/bin /lib /usr/ccs/bin - do - cpp_c=$d/cpp - [ -x $cpp_c ] && break - done - - if [ -x $cpp_c ]; then - echo cpp_c=$cpp_c >> $rc - else - cpp_c= - # rats see if cc can be used - echo "#include " > /tmp/f$$.c - echo "main() { return 0; }" >> /tmp/f$$.c - # try some sensible args to cc - for arg in -E -P -M - do - ok=`${REALCC:-${CC:-cc}} $arg /tmp/f$$.c 2>/dev/null | grep '^#.*stdio.h' | tail -1` - case "$ok" in - "") ;; - *) - cpp_c="${REALCC:-${CC:-cc}} $arg" - echo cpp_c="'$cpp_c'" >> $rc - break;; - esac - done - rm -f /tmp/f$$.c - fi -fi - -clean_up() { - trap "" 2 3 - trap 0 - if [ -s $EF ]; then - egrep -vi "included from|warning" $EF > ${EF}2 - if [ -s ${EF}2 ]; then - cat $EF >&2 - rm -f .depend - ests=1 - fi - fi - rm -f $TF $EF* - exit ${ests:-0} -} - -# this lot does not work on HPsUX - complain to Hp. -trap clean_up 0 -trap exit 2 3 - -get_incs() { - case "$cpp" in - grep) - # set IGNORE="<" to skip system includes - egrep '^#[ ]*include' $* | egrep -v "$IGNORE" | \ - sed -e 's/^.*include[^"<]*["<]//' -e 's/[">].*//g';; - *) - # $cpp (eg. /usr/lib/cpp or cc -E) should produce output like: - # 1 "/usr/include/stdio.h" 2 - # set IGNORE=/usr/include to skip system includes - $cpp $cpp_opts $cc_include $* 2>> $EF | egrep '^#.*\.h"' | sed 's,^#.*"\(.*\)".*,\1,' | - egrep -v "$IGNORE" | sort -u;; - esac -} - -gen_deps() { - llen=$1 - shift - - for ifile in $* - do - case "$cpp" in - grep) - # this lot is not needed if not using grep. - for dir in $srcdir $dirlist /usr/include - do - [ -f "$dir/$ifile" ] && break - done - - if [ ! -f "$dir/$ifile" ]; then - # produce a useful error message (useful to emacs or error) - iline=`grep -n ".*include.*[\"<]$ifile[\">]" $file | cut -d: -f1` - echo "\"$file\", line $iline: cannot find include file \"$ifile\"" >> $EF - # no point adding to dependency list as the resulting makefile - # would not work anyway... - continue - fi - ifile=$dir/$ifile - - # check whether we have done it yet - case `grep "$ifile" $TF` in - "") echo "$ifile" >> $TF;; - *) continue;; # no repeats... - esac - ;; - esac - - len=`expr "$ifile " : '.*'` - if [ "`expr $llen + $len`" -gt ${width:-76} ]; then - echo "\\" >> .depend - echo $N " $C" >> .depend - llen=8 - fi - echo $N "$ifile $C" >> .depend - llen=`expr $llen + $len` - - case "$cpp" in - grep) - # this lot is not needed unless using grep. - ilist=`get_incs $ifile` # recurse needed? - [ "$ilist" ] && llen=`gen_deps $llen $ilist` - ;; - esac - done - echo $llen -} - -for f in makefile Makefile -do - test -s $f && { MAKEFILE=$f; break; } -done - -MAKEFILE=${MAKEFILE:-makefile} -IGNORE=${IGNORE:-"^-"} # won't happen -obj=o -cpp_opts= # incase cpp != grep -vpath= -append= -progDep= - -set -- `getopt "AanNV:s:w:o:I:D:b:f:i:p" "$@"` -for key in "$@" -do - case $key in - --) shift; break;; - -A) Include=;; # cat .depend >> $MAKEFILE - -a) append=yes; shift;; - -n) shift;; # ignore rc - -N) update=no; shift;; # don't update $MAKEFILE - -I) cpp_opts="$cpp_opts$1$2 "; dirlist="$dirlist $2"; shift 2;; - -o) obj=$2; shift 2;; - -s) shift 2;; # can't handle it anyway... - -w) width=$2; shift 2;; - -f) MAKEFILE=$2; shift 2;; - -b) BASEDIR=$2; shift 2;; - -i) IGNORE="$2"; shift 2;; # ignore headers matching this... - -D) cpp_opts="$cpp_opts$1$2 "; shift 2;; - -V) VPATH="$2"; shift 2;; # where to look for files - -p) progDep=yes; shift;; - esac -done - -[ "$VPATH" ] && vpath=`IFS=:; set -- $VPATH; echo $*` - -[ "$append" ] || > .depend - -for file in $* -do - cpp= - suffix=`expr $file : '.*\.\([^.]*\)'` - - eval cpp=\"\${cpp_${suffix}:-grep}\" - - if [ ! -f $file -a "$vpath" ]; then - for d in . $vpath - do - [ -f $d/$file ] && { file=$d/$file; break; } - done - fi - srcdir=`dirname $file` - base=`basename $file .$suffix` - - ilist=`get_incs $file` - - if [ "$ilist" ]; then - > $TF - if [ "$progDep" ]; then - echo "$base: $file \\" >> .depend - else - echo "$base.$obj: $file \\" >> .depend - fi - echo $N " $C" >> .depend - llen=8 - llen=`gen_deps $llen $ilist` - echo >> .depend - echo >> .depend - elif [ "$progDep" ]; then - echo "$base: $file" >> .depend - echo >> .depend - fi -done - -if [ -s .depend ]; then - # ./foo.h looks ugly - mv .depend $TF - { test "$BASEDIR" && sed -e "s;$BASEDIR;\$(BASEDIR);g" $TF || cat $TF; } | - sed 's;\([^.]\)\./;\1;g' > .depend - - # - # Save the manually updated section of the makefile - # - if [ x$update != xno ]; then - trap "" 2 # don't die if we got this far - - # if make doesn't support include, then append our deps... - depended=`grep 'include.*\.depend' $MAKEFILE` - test "$depended" && clean_up - - sed '/^# DO NOT DELETE.*depend.*$/,$d' < $MAKEFILE > $TF - mv $TF $MAKEFILE - cat <> $MAKEFILE -# DO NOT DELETE THIS LINE -- make depend depends on it -# Do not edit anything below, it was added automagically by $Myname. - -! - - case "$Include" in - "") cat .depend >> $MAKEFILE;; - .include) echo '.include ".depend"' >> $MAKEFILE;; - include) echo include .depend >> $MAKEFILE;; - esac - fi -fi -clean_up diff --git a/external/bsd/bmake/dist/nonints.h b/external/bsd/bmake/dist/nonints.h deleted file mode 100644 index eeb197e66491..000000000000 --- a/external/bsd/bmake/dist/nonints.h +++ /dev/null @@ -1,198 +0,0 @@ -/* $NetBSD: nonints.h,v 1.64 2012/06/12 19:21:51 joerg Exp $ */ - -/*- - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)nonints.h 8.3 (Berkeley) 3/19/94 - */ - -/*- - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)nonints.h 8.3 (Berkeley) 3/19/94 - */ - -/* arch.c */ -ReturnStatus Arch_ParseArchive(char **, Lst, GNode *); -void Arch_Touch(GNode *); -void Arch_TouchLib(GNode *); -time_t Arch_MTime(GNode *); -time_t Arch_MemMTime(GNode *); -void Arch_FindLib(GNode *, Lst); -Boolean Arch_LibOODate(GNode *); -void Arch_Init(void); -void Arch_End(void); -int Arch_IsLib(GNode *); - -/* compat.c */ -int CompatRunCommand(void *, void *); -void Compat_Run(Lst); -int Compat_Make(void *, void *); - -/* cond.c */ -struct If; -int Cond_EvalExpression(const struct If *, char *, Boolean *, int); -int Cond_Eval(char *); -void Cond_restore_depth(unsigned int); -unsigned int Cond_save_depth(void); - -/* for.c */ -int For_Eval(char *); -int For_Accum(char *); -void For_Run(int); - -/* job.c */ -#ifdef WAIT_T -void JobReapChild(pid_t, WAIT_T, Boolean); -#endif - -/* main.c */ -void Main_ParseArgLine(const char *); -void MakeMode(const char *); -int main(int, char **); -char *Cmd_Exec(const char *, const char **); -void Error(const char *, ...) MAKE_ATTR_PRINTFLIKE(1, 2); -void Fatal(const char *, ...) MAKE_ATTR_PRINTFLIKE(1, 2) MAKE_ATTR_DEAD; -void Punt(const char *, ...) MAKE_ATTR_PRINTFLIKE(1, 2) MAKE_ATTR_DEAD; -void DieHorribly(void) MAKE_ATTR_DEAD; -int PrintAddr(void *, void *); -void Finish(int) MAKE_ATTR_DEAD; -int eunlink(const char *); -void execError(const char *, const char *); -char *getTmpdir(void); - -/* parse.c */ -void Parse_Error(int, const char *, ...) MAKE_ATTR_PRINTFLIKE(2, 3); -Boolean Parse_AnyExport(void); -Boolean Parse_IsVar(char *); -void Parse_DoVar(char *, GNode *); -void Parse_AddIncludeDir(char *); -void Parse_File(const char *, int); -void Parse_Init(void); -void Parse_End(void); -void Parse_SetInput(const char *, int, int, char *(*)(void *, size_t *), void *); -Lst Parse_MainName(void); - -/* str.c */ -char *str_concat(const char *, const char *, int); -char **brk_string(const char *, int *, Boolean, char **); -char *Str_FindSubstring(const char *, const char *); -int Str_Match(const char *, const char *); -char *Str_SYSVMatch(const char *, const char *, int *len); -void Str_SYSVSubst(Buffer *, char *, char *, int); - -/* suff.c */ -void Suff_ClearSuffixes(void); -Boolean Suff_IsTransform(char *); -GNode *Suff_AddTransform(char *); -int Suff_EndTransform(void *, void *); -void Suff_AddSuffix(char *, GNode **); -Lst Suff_GetPath(char *); -void Suff_DoPaths(void); -void Suff_AddInclude(char *); -void Suff_AddLib(char *); -void Suff_FindDeps(GNode *); -Lst Suff_FindPath(GNode *); -void Suff_SetNull(char *); -void Suff_Init(void); -void Suff_End(void); -void Suff_PrintAll(void); - -/* targ.c */ -void Targ_Init(void); -void Targ_End(void); -Lst Targ_List(void); -GNode *Targ_NewGN(const char *); -GNode *Targ_FindNode(const char *, int); -Lst Targ_FindList(Lst, int); -Boolean Targ_Ignore(GNode *); -Boolean Targ_Silent(GNode *); -Boolean Targ_Precious(GNode *); -void Targ_SetMain(GNode *); -int Targ_PrintCmd(void *, void *); -int Targ_PrintNode(void *, void *); -char *Targ_FmtTime(time_t); -void Targ_PrintType(int); -void Targ_PrintGraph(int); -void Targ_Propagate(void); -void Targ_Propagate_Wait(void); - -/* var.c */ -void Var_Delete(const char *, GNode *); -void Var_Set(const char *, const char *, GNode *, int); -void Var_Append(const char *, const char *, GNode *); -Boolean Var_Exists(const char *, GNode *); -char *Var_Value(const char *, GNode *, char **); -char *Var_Parse(const char *, GNode *, Boolean, int *, void **); -char *Var_Subst(const char *, const char *, GNode *, Boolean); -char *Var_GetTail(const char *); -char *Var_GetHead(const char *); -void Var_Init(void); -void Var_End(void); -void Var_Dump(GNode *); -void Var_ExportVars(void); -void Var_Export(char *, int); -void Var_UnExport(char *); - -/* util.c */ -void (*bmake_signal(int, void (*)(int)))(int); diff --git a/external/bsd/bmake/dist/os.sh b/external/bsd/bmake/dist/os.sh deleted file mode 100755 index 9e45f3792f9e..000000000000 --- a/external/bsd/bmake/dist/os.sh +++ /dev/null @@ -1,228 +0,0 @@ -: -# NAME: -# os.sh - operating system specifics -# -# DESCRIPTION: -# This file is included at the start of processing. Its role is -# to set the variables OS, OSREL, OSMAJOR, MACHINE and MACHINE_ARCH to -# reflect the current system. -# -# It also sets variables such as MAILER, LOCAL_FS, PS_AXC to hide -# certain aspects of different UNIX flavours. -# -# SEE ALSO: -# site.sh,funcs.sh -# -# AUTHOR: -# Simon J. Gerraty - -# RCSid: -# $Id: os.sh,v 1.44 2010/06/29 15:37:21 sjg Exp $ -# -# @(#) Copyright (c) 1994 Simon J. Gerraty -# -# This file is provided in the hope that it will -# be of use. There is absolutely NO WARRANTY. -# Permission to copy, redistribute or otherwise -# use this file is hereby granted provided that -# the above copyright notice and this notice are -# left intact. -# -# Please send copies of changes and bug-fixes to: -# sjg@crufty.net -# - -# this lets us skip sourcing it again -_OS_SH=: - -OS=`uname` -OSREL=`uname -r` -OSMAJOR=`IFS=.; set $OSREL; echo $1` -MACHINE=`uname -m` -MACHINE_ARCH=`uname -p 2>/dev/null || echo $MACHINE` - -# there is at least one case of `uname -p` outputting -# a bunch of usless drivel -case "$MACHINE_ARCH" in -*[!A-Za-z0-9_-]*) MACHINE_ARCH="$MACHINE";; -esac - -# we need this here, and it is not always available... -Which() { - case "$1" in - -*) t=$1; shift;; - *) t=-x;; - esac - case "$1" in - /*) test $t $1 && echo $1;; - *) - # some shells cannot correctly handle `IFS` - # in conjunction with the for loop. - _dirs=`IFS=:; echo ${2:-$PATH}` - for d in $_dirs - do - test $t $d/$1 && { echo $d/$1; break; } - done - ;; - esac -} - -# tr is insanely non-portable wrt char classes, so we need to -# spell out the alphabet. sed y/// would work too. -toUpper() { - ${TR:-tr} abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ -} - -toLower() { - ${TR:-tr} ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz -} - -K= -case $OS in -AIX) # everyone loves to be different... - OSMAJOR=`uname -v` - OSREL="$OSMAJOR.`uname -r`" - LOCAL_FS=jfs - PS_AXC=-e - SHARE_ARCH=$OS/$OSMAJOR.X - ;; -SunOS) - CHOWN=`Which chown /usr/etc:/usr/bin` - export CHOWN - - # Great! Solaris keeps moving arch(1) - # should just bite the bullet and use uname -p - arch=`Which arch /usr/bin:/usr/ucb` - - MAILER=/usr/ucb/Mail - LOCAL_FS=4.2 - - case "$OSREL" in - 4.0*) - # uname -m just says sun which could be anything - # so use arch(1). - MACHINE_ARCH=`arch` - MACHINE=$MACHINE_ARCH - ;; - 4*) - MACHINE_ARCH=`arch` - ;; - 5*) - K=-k - LOCAL_FS=ufs - MAILER=mailx - PS_AXC=-e - # can you believe that ln on Solaris defaults to - # overwriting an existing file!!!!! We want one that works! - test -x /usr/xpg4/bin/ln && LN=${LN:-/usr/xpg4/bin/ln} - # wonderful, 5.8's tr again require's []'s - # but /usr/xpg4/bin/tr causes problems if LC_COLLATE is set! - # use toUpper/toLower instead. - ;; - esac - case "$OS/$MACHINE_ARCH" in - *sun386) SHARE_ARCH=$MACHINE_ARCH;; - esac - ;; -*BSD) - K=-k - MAILER=/usr/bin/Mail - LOCAL_FS=local - case "$-" in - *i*) ;; - *) ENV=;; - esac - # NetBSD at least has good backward compatability - # so NetBSD/i386 is good enough - case $OS in - NetBSD) SHARE_ARCH=$OS/${MACHINE_ARCH:-$MACHINE};; - OpenBSD) - arch=`Which arch /usr/bin:/usr/ucb:$PATH` - MACHINE_ARCH=`$arch -s` - ;; - esac - NAWK=awk - export NAWK - ;; -HP-UX) - TMP_DIRS="/tmp /usr/tmp" - LOCAL_FS=hfs - MAILER=mailx - # don't rely on /bin/sh, its broken - _shell=/bin/ksh; ENV= - # also, no one would be interested in OSMAJOR=A - case "$OSREL" in - ?.09*) OSMAJOR=9; PS_AXC=-e;; - ?.10*) OSMAJOR=10; PS_AXC=-e;; - esac - ;; -IRIX) - LOCAL_FS=efs - ;; -Interix) - MACHINE=i386 - MACHINE_ARCH=i386 - ;; -UnixWare) - OSREL=`uname -v` - OSMAJOR=`IFS=.; set $OSREL; echo $1` - MACHINE_ARCH=`uname -m` - ;; -Linux) - # Not really any such thing as Linux, but - # this covers red-hat and hopefully others. - case $MACHINE in - i?86) MACHINE_ARCH=i386;; # we don't care about i686 vs i586 - esac - LOCAL_FS=ext2 - PS_AXC=axc - [ -x /usr/bin/md5sum ] && { MD5=/usr/bin/md5sum; export MD5; } - ;; -QNX) - case $MACHINE in - x86pc) MACHINE_ARCH=i386;; - esac - ;; -Haiku) - case $MACHINE in - BeBox) MACHINE_ARCH=powerpc;; - BeMac) MACHINE_ARCH=powerpc;; - BePC) MACHINE_ARCH=i386;; - esac - ;; -esac - -HOSTNAME=${HOSTNAME:-`( hostname ) 2>/dev/null`} -HOSTNAME=${HOSTNAME:-`( uname -n ) 2>/dev/null`} -case "$HOSTNAME" in -*.*) HOST=`IFS=.; set -- $HOSTNAME; echo $1`;; -*) HOST=$HOSTNAME;; -esac - -TMP_DIRS=${TMP_DIRS:-"/tmp /var/tmp"} -MACHINE_ARCH=${MACHINE_ARCH:-$MACHINE} -# we mount server:/share/arch/$SHARE_ARCH as /usr/local -SHARE_ARCH=${SHARE_ARCH:-$OS/$OSMAJOR.X/$MACHINE_ARCH} -LN=${LN:-ln} -TR=${TR:-tr} - -# Some people like have /share/$HOST_TARGET/bin etc. -HOST_TARGET=`echo ${OS}${OSMAJOR}-${MACHINE_ARCH} | toLower` -export HOST_TARGET - -case `echo -n .` in -n*) N=; C="\c";; *) N=-n; C=;; esac - -export HOSTNAME HOST -export OS MACHINE MACHINE_ARCH OSREL OSMAJOR LOCAL_FS TMP_DIRS MAILER N C K PS_AXC -export LN SHARE_ARCH TR - -case /$0 in -*/os.sh) - for v in $* - do - eval vv=\$$v - echo "$v='$vv'" - done - ;; -esac - diff --git a/external/bsd/bmake/dist/parse.c b/external/bsd/bmake/dist/parse.c deleted file mode 100644 index 0b18f5d12e68..000000000000 --- a/external/bsd/bmake/dist/parse.c +++ /dev/null @@ -1,3122 +0,0 @@ -/* $NetBSD: parse.c,v 1.185 2012/06/12 19:21:51 joerg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: parse.c,v 1.185 2012/06/12 19:21:51 joerg Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94"; -#else -__RCSID("$NetBSD: parse.c,v 1.185 2012/06/12 19:21:51 joerg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * parse.c -- - * Functions to parse a makefile. - * - * One function, Parse_Init, must be called before any functions - * in this module are used. After that, the function Parse_File is the - * main entry point and controls most of the other functions in this - * module. - * - * Most important structures are kept in Lsts. Directories for - * the .include "..." function are kept in the 'parseIncPath' Lst, while - * those for the .include <...> are kept in the 'sysIncPath' Lst. The - * targets currently being defined are kept in the 'targets' Lst. - * - * The variables 'fname' and 'lineno' are used to track the name - * of the current file and the line number in that file so that error - * messages can be more meaningful. - * - * Interface: - * Parse_Init Initialization function which must be - * called before anything else in this module - * is used. - * - * Parse_End Cleanup the module - * - * Parse_File Function used to parse a makefile. It must - * be given the name of the file, which should - * already have been opened, and a function - * to call to read a character from the file. - * - * Parse_IsVar Returns TRUE if the given line is a - * variable assignment. Used by MainParseArgs - * to determine if an argument is a target - * or a variable assignment. Used internally - * for pretty much the same thing... - * - * Parse_Error Function called when an error occurs in - * parsing. Used by the variable and - * conditional modules. - * Parse_MainName Returns a Lst of the main target to create. - */ - -#include -#include -#include -#include -#include -#include -#include -#include - -#include "make.h" -#include "hash.h" -#include "dir.h" -#include "job.h" -#include "buf.h" -#include "pathnames.h" - -#ifdef HAVE_MMAP -#include - -#ifndef MAP_COPY -#define MAP_COPY MAP_PRIVATE -#endif -#ifndef MAP_FILE -#define MAP_FILE 0 -#endif -#endif - -//////////////////////////////////////////////////////////// -// types and constants - -/* - * Structure for a file being read ("included file") - */ -typedef struct IFile { - const char *fname; /* name of file */ - int lineno; /* current line number in file */ - int first_lineno; /* line number of start of text */ - int cond_depth; /* 'if' nesting when file opened */ - char *P_str; /* point to base of string buffer */ - char *P_ptr; /* point to next char of string buffer */ - char *P_end; /* point to the end of string buffer */ - char *(*nextbuf)(void *, size_t *); /* Function to get more data */ - void *nextbuf_arg; /* Opaque arg for nextbuf() */ - struct loadedfile *lf; /* loadedfile object, if any */ -} IFile; - - -/* - * These values are returned by ParseEOF to tell Parse_File whether to - * CONTINUE parsing, i.e. it had only reached the end of an include file, - * or if it's DONE. - */ -#define CONTINUE 1 -#define DONE 0 - -/* - * Tokens for target attributes - */ -typedef enum { - Begin, /* .BEGIN */ - Default, /* .DEFAULT */ - End, /* .END */ - dotError, /* .ERROR */ - Ignore, /* .IGNORE */ - Includes, /* .INCLUDES */ - Interrupt, /* .INTERRUPT */ - Libs, /* .LIBS */ - Meta, /* .META */ - MFlags, /* .MFLAGS or .MAKEFLAGS */ - Main, /* .MAIN and we don't have anything user-specified to - * make */ - NoExport, /* .NOEXPORT */ - NoMeta, /* .NOMETA */ - NoMetaCmp, /* .NOMETA_CMP */ - NoPath, /* .NOPATH */ - Not, /* Not special */ - NotParallel, /* .NOTPARALLEL */ - Null, /* .NULL */ - ExObjdir, /* .OBJDIR */ - Order, /* .ORDER */ - Parallel, /* .PARALLEL */ - ExPath, /* .PATH */ - Phony, /* .PHONY */ -#ifdef POSIX - Posix, /* .POSIX */ -#endif - Precious, /* .PRECIOUS */ - ExShell, /* .SHELL */ - Silent, /* .SILENT */ - SingleShell, /* .SINGLESHELL */ - Suffixes, /* .SUFFIXES */ - Wait, /* .WAIT */ - Attribute /* Generic attribute */ -} ParseSpecial; - -/* - * Other tokens - */ -#define LPAREN '(' -#define RPAREN ')' - - -//////////////////////////////////////////////////////////// -// result data - -/* - * The main target to create. This is the first target on the first - * dependency line in the first makefile. - */ -static GNode *mainNode; - -//////////////////////////////////////////////////////////// -// eval state - -/* targets we're working on */ -static Lst targets; - -#ifdef CLEANUP -/* command lines for targets */ -static Lst targCmds; -#endif - -/* - * specType contains the SPECial TYPE of the current target. It is - * Not if the target is unspecial. If it *is* special, however, the children - * are linked as children of the parent but not vice versa. This variable is - * set in ParseDoDependency - */ -static ParseSpecial specType; - -/* - * Predecessor node for handling .ORDER. Initialized to NULL when .ORDER - * seen, then set to each successive source on the line. - */ -static GNode *predecessor; - -//////////////////////////////////////////////////////////// -// parser state - -/* true if currently in a dependency line or its commands */ -static Boolean inLine; - -/* number of fatal errors */ -static int fatals = 0; - -/* - * Variables for doing includes - */ - -/* current file being read */ -static IFile *curFile; - -/* stack of IFiles generated by .includes */ -static Lst includes; - -/* include paths (lists of directories) */ -Lst parseIncPath; /* dirs for "..." includes */ -Lst sysIncPath; /* dirs for <...> includes */ -Lst defIncPath; /* default for sysIncPath */ - -//////////////////////////////////////////////////////////// -// parser tables - -/* - * The parseKeywords table is searched using binary search when deciding - * if a target or source is special. The 'spec' field is the ParseSpecial - * type of the keyword ("Not" if the keyword isn't special as a target) while - * the 'op' field is the operator to apply to the list of targets if the - * keyword is used as a source ("0" if the keyword isn't special as a source) - */ -static const struct { - const char *name; /* Name of keyword */ - ParseSpecial spec; /* Type when used as a target */ - int op; /* Operator when used as a source */ -} parseKeywords[] = { -{ ".BEGIN", Begin, 0 }, -{ ".DEFAULT", Default, 0 }, -{ ".END", End, 0 }, -{ ".ERROR", dotError, 0 }, -{ ".EXEC", Attribute, OP_EXEC }, -{ ".IGNORE", Ignore, OP_IGNORE }, -{ ".INCLUDES", Includes, 0 }, -{ ".INTERRUPT", Interrupt, 0 }, -{ ".INVISIBLE", Attribute, OP_INVISIBLE }, -{ ".JOIN", Attribute, OP_JOIN }, -{ ".LIBS", Libs, 0 }, -{ ".MADE", Attribute, OP_MADE }, -{ ".MAIN", Main, 0 }, -{ ".MAKE", Attribute, OP_MAKE }, -{ ".MAKEFLAGS", MFlags, 0 }, -{ ".META", Meta, OP_META }, -{ ".MFLAGS", MFlags, 0 }, -{ ".NOMETA", NoMeta, OP_NOMETA }, -{ ".NOMETA_CMP", NoMetaCmp, OP_NOMETA_CMP }, -{ ".NOPATH", NoPath, OP_NOPATH }, -{ ".NOTMAIN", Attribute, OP_NOTMAIN }, -{ ".NOTPARALLEL", NotParallel, 0 }, -{ ".NO_PARALLEL", NotParallel, 0 }, -{ ".NULL", Null, 0 }, -{ ".OBJDIR", ExObjdir, 0 }, -{ ".OPTIONAL", Attribute, OP_OPTIONAL }, -{ ".ORDER", Order, 0 }, -{ ".PARALLEL", Parallel, 0 }, -{ ".PATH", ExPath, 0 }, -{ ".PHONY", Phony, OP_PHONY }, -#ifdef POSIX -{ ".POSIX", Posix, 0 }, -#endif -{ ".PRECIOUS", Precious, OP_PRECIOUS }, -{ ".RECURSIVE", Attribute, OP_MAKE }, -{ ".SHELL", ExShell, 0 }, -{ ".SILENT", Silent, OP_SILENT }, -{ ".SINGLESHELL", SingleShell, 0 }, -{ ".SUFFIXES", Suffixes, 0 }, -{ ".USE", Attribute, OP_USE }, -{ ".USEBEFORE", Attribute, OP_USEBEFORE }, -{ ".WAIT", Wait, 0 }, -}; - -//////////////////////////////////////////////////////////// -// local functions - -static int ParseIsEscaped(const char *, const char *); -static void ParseErrorInternal(const char *, size_t, int, const char *, ...) - MAKE_ATTR_PRINTFLIKE(4,5); -static void ParseVErrorInternal(FILE *, const char *, size_t, int, const char *, va_list) - MAKE_ATTR_PRINTFLIKE(5, 0); -static int ParseFindKeyword(const char *); -static int ParseLinkSrc(void *, void *); -static int ParseDoOp(void *, void *); -static void ParseDoSrc(int, const char *); -static int ParseFindMain(void *, void *); -static int ParseAddDir(void *, void *); -static int ParseClearPath(void *, void *); -static void ParseDoDependency(char *); -static int ParseAddCmd(void *, void *); -static void ParseHasCommands(void *); -static void ParseDoInclude(char *); -static void ParseSetParseFile(const char *); -#ifdef SYSVINCLUDE -static void ParseTraditionalInclude(char *); -#endif -#ifdef GMAKEEXPORT -static void ParseGmakeExport(char *); -#endif -static int ParseEOF(void); -static char *ParseReadLine(void); -static void ParseFinishLine(void); -static void ParseMark(GNode *); - -//////////////////////////////////////////////////////////// -// file loader - -struct loadedfile { - const char *path; /* name, for error reports */ - char *buf; /* contents buffer */ - size_t len; /* length of contents */ - size_t maplen; /* length of mmap area, or 0 */ - Boolean used; /* XXX: have we used the data yet */ -}; - -/* - * Constructor/destructor for loadedfile - */ -static struct loadedfile * -loadedfile_create(const char *path) -{ - struct loadedfile *lf; - - lf = bmake_malloc(sizeof(*lf)); - lf->path = (path == NULL ? "(stdin)" : path); - lf->buf = NULL; - lf->len = 0; - lf->maplen = 0; - lf->used = FALSE; - return lf; -} - -static void -loadedfile_destroy(struct loadedfile *lf) -{ - if (lf->buf != NULL) { - if (lf->maplen > 0) { -#ifdef HAVE_MMAP - munmap(lf->buf, lf->maplen); -#endif - } else { - free(lf->buf); - } - } - free(lf); -} - -/* - * nextbuf() operation for loadedfile, as needed by the weird and twisted - * logic below. Once that's cleaned up, we can get rid of lf->used... - */ -static char * -loadedfile_nextbuf(void *x, size_t *len) -{ - struct loadedfile *lf = x; - - if (lf->used) { - return NULL; - } - lf->used = TRUE; - *len = lf->len; - return lf->buf; -} - -/* - * Try to get the size of a file. - */ -static ReturnStatus -load_getsize(int fd, size_t *ret) -{ - struct stat st; - - if (fstat(fd, &st) < 0) { - return FAILURE; - } - - if (!S_ISREG(st.st_mode)) { - return FAILURE; - } - - /* - * st_size is an off_t, which is 64 bits signed; *ret is - * size_t, which might be 32 bits unsigned or 64 bits - * unsigned. Rather than being elaborate, just punt on - * files that are more than 2^31 bytes. We should never - * see a makefile that size in practice... - * - * While we're at it reject negative sizes too, just in case. - */ - if (st.st_size < 0 || st.st_size > 0x7fffffff) { - return FAILURE; - } - - *ret = (size_t) st.st_size; - return SUCCESS; -} - -/* - * Read in a file. - * - * Until the path search logic can be moved under here instead of - * being in the caller in another source file, we need to have the fd - * passed in already open. Bleh. - * - * If the path is NULL use stdin and (to insure against fd leaks) - * assert that the caller passed in -1. - */ -static struct loadedfile * -loadfile(const char *path, int fd) -{ - struct loadedfile *lf; -#ifdef HAVE_MMAP - long pagesize; -#endif - ssize_t result; - size_t bufpos; - - lf = loadedfile_create(path); - - if (path == NULL) { - assert(fd == -1); - fd = STDIN_FILENO; - } else { -#if 0 /* notyet */ - fd = open(path, O_RDONLY); - if (fd < 0) { - ... - Error("%s: %s", path, strerror(errno)); - exit(1); - } -#endif - } - -#ifdef HAVE_MMAP - if (load_getsize(fd, &lf->len) == SUCCESS) { - /* found a size, try mmap */ - pagesize = sysconf(_SC_PAGESIZE); - if (pagesize <= 0) { - pagesize = 0x1000; - } - /* round size up to a page */ - lf->maplen = pagesize * ((lf->len + pagesize - 1)/pagesize); - - /* - * XXX hack for dealing with empty files; remove when - * we're no longer limited by interfacing to the old - * logic elsewhere in this file. - */ - if (lf->maplen == 0) { - lf->maplen = pagesize; - } - - /* - * FUTURE: remove PROT_WRITE when the parser no longer - * needs to scribble on the input. - */ - lf->buf = mmap(NULL, lf->maplen, PROT_READ|PROT_WRITE, - MAP_FILE|MAP_COPY, fd, 0); - if (lf->buf != MAP_FAILED) { - /* succeeded */ - if (lf->len == lf->maplen && lf->buf[lf->len - 1] != '\n') { - char *b = malloc(lf->len + 1); - b[lf->len] = '\n'; - memcpy(b, lf->buf, lf->len++); - munmap(lf->buf, lf->maplen); - lf->maplen = 0; - lf->buf = b; - } - goto done; - } - } -#endif - /* cannot mmap; load the traditional way */ - - lf->maplen = 0; - lf->len = 1024; - lf->buf = bmake_malloc(lf->len); - - bufpos = 0; - while (1) { - assert(bufpos <= lf->len); - if (bufpos == lf->len) { - lf->len *= 2; - lf->buf = bmake_realloc(lf->buf, lf->len); - } - result = read(fd, lf->buf + bufpos, lf->len - bufpos); - if (result < 0) { - Error("%s: read error: %s", path, strerror(errno)); - exit(1); - } - if (result == 0) { - break; - } - bufpos += result; - } - assert(bufpos <= lf->len); - lf->len = bufpos; - - /* truncate malloc region to actual length (maybe not useful) */ - if (lf->len > 0) { - lf->buf = bmake_realloc(lf->buf, lf->len); - } - -#ifdef HAVE_MMAP -done: -#endif - if (path != NULL) { - close(fd); - } - return lf; -} - -//////////////////////////////////////////////////////////// -// old code - -/*- - *---------------------------------------------------------------------- - * ParseIsEscaped -- - * Check if the current character is escaped on the current line - * - * Results: - * 0 if the character is not backslash escaped, 1 otherwise - * - * Side Effects: - * None - *---------------------------------------------------------------------- - */ -static int -ParseIsEscaped(const char *line, const char *c) -{ - int active = 0; - for (;;) { - if (line == c) - return active; - if (*--c != '\\') - return active; - active = !active; - } -} - -/*- - *---------------------------------------------------------------------- - * ParseFindKeyword -- - * Look in the table of keywords for one matching the given string. - * - * Input: - * str String to find - * - * Results: - * The index of the keyword, or -1 if it isn't there. - * - * Side Effects: - * None - *---------------------------------------------------------------------- - */ -static int -ParseFindKeyword(const char *str) -{ - int start, end, cur; - int diff; - - start = 0; - end = (sizeof(parseKeywords)/sizeof(parseKeywords[0])) - 1; - - do { - cur = start + ((end - start) / 2); - diff = strcmp(str, parseKeywords[cur].name); - - if (diff == 0) { - return (cur); - } else if (diff < 0) { - end = cur - 1; - } else { - start = cur + 1; - } - } while (start <= end); - return (-1); -} - -/*- - * ParseVErrorInternal -- - * Error message abort function for parsing. Prints out the context - * of the error (line number and file) as well as the message with - * two optional arguments. - * - * Results: - * None - * - * Side Effects: - * "fatals" is incremented if the level is PARSE_FATAL. - */ -/* VARARGS */ -static void -ParseVErrorInternal(FILE *f, const char *cfname, size_t clineno, int type, - const char *fmt, va_list ap) -{ - static Boolean fatal_warning_error_printed = FALSE; - - (void)fprintf(f, "%s: ", progname); - - if (cfname != NULL) { - (void)fprintf(f, "\""); - if (*cfname != '/' && strcmp(cfname, "(stdin)") != 0) { - char *cp; - const char *dir; - - /* - * Nothing is more annoying than not knowing - * which Makefile is the culprit. - */ - dir = Var_Value(".PARSEDIR", VAR_GLOBAL, &cp); - if (dir == NULL || *dir == '\0' || - (*dir == '.' && dir[1] == '\0')) - dir = Var_Value(".CURDIR", VAR_GLOBAL, &cp); - if (dir == NULL) - dir = "."; - - (void)fprintf(f, "%s/%s", dir, cfname); - } else - (void)fprintf(f, "%s", cfname); - - (void)fprintf(f, "\" line %d: ", (int)clineno); - } - if (type == PARSE_WARNING) - (void)fprintf(f, "warning: "); - (void)vfprintf(f, fmt, ap); - (void)fprintf(f, "\n"); - (void)fflush(f); - if (type == PARSE_FATAL || parseWarnFatal) - fatals += 1; - if (parseWarnFatal && !fatal_warning_error_printed) { - Error("parsing warnings being treated as errors"); - fatal_warning_error_printed = TRUE; - } -} - -/*- - * ParseErrorInternal -- - * Error function - * - * Results: - * None - * - * Side Effects: - * None - */ -/* VARARGS */ -static void -ParseErrorInternal(const char *cfname, size_t clineno, int type, - const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - (void)fflush(stdout); - ParseVErrorInternal(stderr, cfname, clineno, type, fmt, ap); - va_end(ap); - - if (debug_file != stderr && debug_file != stdout) { - va_start(ap, fmt); - ParseVErrorInternal(debug_file, cfname, clineno, type, fmt, ap); - va_end(ap); - } -} - -/*- - * Parse_Error -- - * External interface to ParseErrorInternal; uses the default filename - * Line number. - * - * Results: - * None - * - * Side Effects: - * None - */ -/* VARARGS */ -void -Parse_Error(int type, const char *fmt, ...) -{ - va_list ap; - const char *fname; - size_t lineno; - - if (curFile == NULL) { - fname = NULL; - lineno = 0; - } else { - fname = curFile->fname; - lineno = curFile->lineno; - } - - va_start(ap, fmt); - (void)fflush(stdout); - ParseVErrorInternal(stderr, fname, lineno, type, fmt, ap); - va_end(ap); - - if (debug_file != stderr && debug_file != stdout) { - va_start(ap, fmt); - ParseVErrorInternal(debug_file, fname, lineno, type, fmt, ap); - va_end(ap); - } -} - - -/* - * ParseMessage - * Parse a .info .warning or .error directive - * - * The input is the line minus the ".". We substitute - * variables, print the message and exit(1) (for .error) or just print - * a warning if the directive is malformed. - */ -static Boolean -ParseMessage(char *line) -{ - int mtype; - - switch(*line) { - case 'i': - mtype = 0; - break; - case 'w': - mtype = PARSE_WARNING; - break; - case 'e': - mtype = PARSE_FATAL; - break; - default: - Parse_Error(PARSE_WARNING, "invalid syntax: \".%s\"", line); - return FALSE; - } - - while (isalpha((u_char)*line)) - line++; - if (!isspace((u_char)*line)) - return FALSE; /* not for us */ - while (isspace((u_char)*line)) - line++; - - line = Var_Subst(NULL, line, VAR_CMD, 0); - Parse_Error(mtype, "%s", line); - free(line); - - if (mtype == PARSE_FATAL) { - /* Terminate immediately. */ - exit(1); - } - return TRUE; -} - -/*- - *--------------------------------------------------------------------- - * ParseLinkSrc -- - * Link the parent node to its new child. Used in a Lst_ForEach by - * ParseDoDependency. If the specType isn't 'Not', the parent - * isn't linked as a parent of the child. - * - * Input: - * pgnp The parent node - * cgpn The child node - * - * Results: - * Always = 0 - * - * Side Effects: - * New elements are added to the parents list of cgn and the - * children list of cgn. the unmade field of pgn is updated - * to reflect the additional child. - *--------------------------------------------------------------------- - */ -static int -ParseLinkSrc(void *pgnp, void *cgnp) -{ - GNode *pgn = (GNode *)pgnp; - GNode *cgn = (GNode *)cgnp; - - if ((pgn->type & OP_DOUBLEDEP) && !Lst_IsEmpty (pgn->cohorts)) - pgn = (GNode *)Lst_Datum(Lst_Last(pgn->cohorts)); - (void)Lst_AtEnd(pgn->children, cgn); - if (specType == Not) - (void)Lst_AtEnd(cgn->parents, pgn); - pgn->unmade += 1; - if (DEBUG(PARSE)) { - fprintf(debug_file, "# ParseLinkSrc: added child %s - %s\n", pgn->name, cgn->name); - Targ_PrintNode(pgn, 0); - Targ_PrintNode(cgn, 0); - } - return (0); -} - -/*- - *--------------------------------------------------------------------- - * ParseDoOp -- - * Apply the parsed operator to the given target node. Used in a - * Lst_ForEach call by ParseDoDependency once all targets have - * been found and their operator parsed. If the previous and new - * operators are incompatible, a major error is taken. - * - * Input: - * gnp The node to which the operator is to be applied - * opp The operator to apply - * - * Results: - * Always 0 - * - * Side Effects: - * The type field of the node is altered to reflect any new bits in - * the op. - *--------------------------------------------------------------------- - */ -static int -ParseDoOp(void *gnp, void *opp) -{ - GNode *gn = (GNode *)gnp; - int op = *(int *)opp; - /* - * If the dependency mask of the operator and the node don't match and - * the node has actually had an operator applied to it before, and - * the operator actually has some dependency information in it, complain. - */ - if (((op & OP_OPMASK) != (gn->type & OP_OPMASK)) && - !OP_NOP(gn->type) && !OP_NOP(op)) - { - Parse_Error(PARSE_FATAL, "Inconsistent operator for %s", gn->name); - return (1); - } - - if ((op == OP_DOUBLEDEP) && ((gn->type & OP_OPMASK) == OP_DOUBLEDEP)) { - /* - * If the node was the object of a :: operator, we need to create a - * new instance of it for the children and commands on this dependency - * line. The new instance is placed on the 'cohorts' list of the - * initial one (note the initial one is not on its own cohorts list) - * and the new instance is linked to all parents of the initial - * instance. - */ - GNode *cohort; - - /* - * Propagate copied bits to the initial node. They'll be propagated - * back to the rest of the cohorts later. - */ - gn->type |= op & ~OP_OPMASK; - - cohort = Targ_FindNode(gn->name, TARG_NOHASH); - /* - * Make the cohort invisible as well to avoid duplicating it into - * other variables. True, parents of this target won't tend to do - * anything with their local variables, but better safe than - * sorry. (I think this is pointless now, since the relevant list - * traversals will no longer see this node anyway. -mycroft) - */ - cohort->type = op | OP_INVISIBLE; - (void)Lst_AtEnd(gn->cohorts, cohort); - cohort->centurion = gn; - gn->unmade_cohorts += 1; - snprintf(cohort->cohort_num, sizeof cohort->cohort_num, "#%d", - gn->unmade_cohorts); - } else { - /* - * We don't want to nuke any previous flags (whatever they were) so we - * just OR the new operator into the old - */ - gn->type |= op; - } - - return (0); -} - -/*- - *--------------------------------------------------------------------- - * ParseDoSrc -- - * Given the name of a source, figure out if it is an attribute - * and apply it to the targets if it is. Else decide if there is - * some attribute which should be applied *to* the source because - * of some special target and apply it if so. Otherwise, make the - * source be a child of the targets in the list 'targets' - * - * Input: - * tOp operator (if any) from special targets - * src name of the source to handle - * - * Results: - * None - * - * Side Effects: - * Operator bits may be added to the list of targets or to the source. - * The targets may have a new source added to their lists of children. - *--------------------------------------------------------------------- - */ -static void -ParseDoSrc(int tOp, const char *src) -{ - GNode *gn = NULL; - static int wait_number = 0; - char wait_src[16]; - - if (*src == '.' && isupper ((unsigned char)src[1])) { - int keywd = ParseFindKeyword(src); - if (keywd != -1) { - int op = parseKeywords[keywd].op; - if (op != 0) { - Lst_ForEach(targets, ParseDoOp, &op); - return; - } - if (parseKeywords[keywd].spec == Wait) { - /* - * We add a .WAIT node in the dependency list. - * After any dynamic dependencies (and filename globbing) - * have happened, it is given a dependency on the each - * previous child back to and previous .WAIT node. - * The next child won't be scheduled until the .WAIT node - * is built. - * We give each .WAIT node a unique name (mainly for diag). - */ - snprintf(wait_src, sizeof wait_src, ".WAIT_%u", ++wait_number); - gn = Targ_FindNode(wait_src, TARG_NOHASH); - gn->type = OP_WAIT | OP_PHONY | OP_DEPENDS | OP_NOTMAIN; - Lst_ForEach(targets, ParseLinkSrc, gn); - return; - } - } - } - - switch (specType) { - case Main: - /* - * If we have noted the existence of a .MAIN, it means we need - * to add the sources of said target to the list of things - * to create. The string 'src' is likely to be free, so we - * must make a new copy of it. Note that this will only be - * invoked if the user didn't specify a target on the command - * line. This is to allow #ifmake's to succeed, or something... - */ - (void)Lst_AtEnd(create, bmake_strdup(src)); - /* - * Add the name to the .TARGETS variable as well, so the user can - * employ that, if desired. - */ - Var_Append(".TARGETS", src, VAR_GLOBAL); - return; - - case Order: - /* - * Create proper predecessor/successor links between the previous - * source and the current one. - */ - gn = Targ_FindNode(src, TARG_CREATE); - if (predecessor != NULL) { - (void)Lst_AtEnd(predecessor->order_succ, gn); - (void)Lst_AtEnd(gn->order_pred, predecessor); - if (DEBUG(PARSE)) { - fprintf(debug_file, "# ParseDoSrc: added Order dependency %s - %s\n", - predecessor->name, gn->name); - Targ_PrintNode(predecessor, 0); - Targ_PrintNode(gn, 0); - } - } - /* - * The current source now becomes the predecessor for the next one. - */ - predecessor = gn; - break; - - default: - /* - * If the source is not an attribute, we need to find/create - * a node for it. After that we can apply any operator to it - * from a special target or link it to its parents, as - * appropriate. - * - * In the case of a source that was the object of a :: operator, - * the attribute is applied to all of its instances (as kept in - * the 'cohorts' list of the node) or all the cohorts are linked - * to all the targets. - */ - - /* Find/create the 'src' node and attach to all targets */ - gn = Targ_FindNode(src, TARG_CREATE); - if (tOp) { - gn->type |= tOp; - } else { - Lst_ForEach(targets, ParseLinkSrc, gn); - } - break; - } -} - -/*- - *----------------------------------------------------------------------- - * ParseFindMain -- - * Find a real target in the list and set it to be the main one. - * Called by ParseDoDependency when a main target hasn't been found - * yet. - * - * Input: - * gnp Node to examine - * - * Results: - * 0 if main not found yet, 1 if it is. - * - * Side Effects: - * mainNode is changed and Targ_SetMain is called. - * - *----------------------------------------------------------------------- - */ -static int -ParseFindMain(void *gnp, void *dummy) -{ - GNode *gn = (GNode *)gnp; - if ((gn->type & OP_NOTARGET) == 0) { - mainNode = gn; - Targ_SetMain(gn); - return (dummy ? 1 : 1); - } else { - return (dummy ? 0 : 0); - } -} - -/*- - *----------------------------------------------------------------------- - * ParseAddDir -- - * Front-end for Dir_AddDir to make sure Lst_ForEach keeps going - * - * Results: - * === 0 - * - * Side Effects: - * See Dir_AddDir. - * - *----------------------------------------------------------------------- - */ -static int -ParseAddDir(void *path, void *name) -{ - (void)Dir_AddDir((Lst) path, (char *)name); - return(0); -} - -/*- - *----------------------------------------------------------------------- - * ParseClearPath -- - * Front-end for Dir_ClearPath to make sure Lst_ForEach keeps going - * - * Results: - * === 0 - * - * Side Effects: - * See Dir_ClearPath - * - *----------------------------------------------------------------------- - */ -static int -ParseClearPath(void *path, void *dummy) -{ - Dir_ClearPath((Lst) path); - return(dummy ? 0 : 0); -} - -/*- - *--------------------------------------------------------------------- - * ParseDoDependency -- - * Parse the dependency line in line. - * - * Input: - * line the line to parse - * - * Results: - * None - * - * Side Effects: - * The nodes of the sources are linked as children to the nodes of the - * targets. Some nodes may be created. - * - * We parse a dependency line by first extracting words from the line and - * finding nodes in the list of all targets with that name. This is done - * until a character is encountered which is an operator character. Currently - * these are only ! and :. At this point the operator is parsed and the - * pointer into the line advanced until the first source is encountered. - * The parsed operator is applied to each node in the 'targets' list, - * which is where the nodes found for the targets are kept, by means of - * the ParseDoOp function. - * The sources are read in much the same way as the targets were except - * that now they are expanded using the wildcarding scheme of the C-Shell - * and all instances of the resulting words in the list of all targets - * are found. Each of the resulting nodes is then linked to each of the - * targets as one of its children. - * Certain targets are handled specially. These are the ones detailed - * by the specType variable. - * The storing of transformation rules is also taken care of here. - * A target is recognized as a transformation rule by calling - * Suff_IsTransform. If it is a transformation rule, its node is gotten - * from the suffix module via Suff_AddTransform rather than the standard - * Targ_FindNode in the target module. - *--------------------------------------------------------------------- - */ -static void -ParseDoDependency(char *line) -{ - char *cp; /* our current position */ - GNode *gn = NULL; /* a general purpose temporary node */ - int op; /* the operator on the line */ - char savec; /* a place to save a character */ - Lst paths; /* List of search paths to alter when parsing - * a list of .PATH targets */ - int tOp; /* operator from special target */ - Lst sources; /* list of archive source names after - * expansion */ - Lst curTargs; /* list of target names to be found and added - * to the targets list */ - char *lstart = line; - - if (DEBUG(PARSE)) - fprintf(debug_file, "ParseDoDependency(%s)\n", line); - tOp = 0; - - specType = Not; - paths = NULL; - - curTargs = Lst_Init(FALSE); - - do { - for (cp = line; *cp && (ParseIsEscaped(lstart, cp) || - !(isspace((unsigned char)*cp) || - *cp == '!' || *cp == ':' || *cp == LPAREN)); - cp++) { - if (*cp == '$') { - /* - * Must be a dynamic source (would have been expanded - * otherwise), so call the Var module to parse the puppy - * so we can safely advance beyond it...There should be - * no errors in this, as they would have been discovered - * in the initial Var_Subst and we wouldn't be here. - */ - int length; - void *freeIt; - char *result; - - result = Var_Parse(cp, VAR_CMD, TRUE, &length, &freeIt); - if (freeIt) - free(freeIt); - cp += length-1; - } - } - - if (!ParseIsEscaped(lstart, cp) && *cp == LPAREN) { - /* - * Archives must be handled specially to make sure the OP_ARCHV - * flag is set in their 'type' field, for one thing, and because - * things like "archive(file1.o file2.o file3.o)" are permissible. - * Arch_ParseArchive will set 'line' to be the first non-blank - * after the archive-spec. It creates/finds nodes for the members - * and places them on the given list, returning SUCCESS if all - * went well and FAILURE if there was an error in the - * specification. On error, line should remain untouched. - */ - if (Arch_ParseArchive(&line, targets, VAR_CMD) != SUCCESS) { - Parse_Error(PARSE_FATAL, - "Error in archive specification: \"%s\"", line); - goto out; - } else { - continue; - } - } - savec = *cp; - - if (!*cp) { - /* - * Ending a dependency line without an operator is a Bozo - * no-no. As a heuristic, this is also often triggered by - * undetected conflicts from cvs/rcs merges. - */ - if ((strncmp(line, "<<<<<<", 6) == 0) || - (strncmp(line, "======", 6) == 0) || - (strncmp(line, ">>>>>>", 6) == 0)) - Parse_Error(PARSE_FATAL, - "Makefile appears to contain unresolved cvs/rcs/??? merge conflicts"); - else - Parse_Error(PARSE_FATAL, lstart[0] == '.' ? "Unknown directive" - : "Need an operator"); - goto out; - } - *cp = '\0'; - - /* - * Have a word in line. See if it's a special target and set - * specType to match it. - */ - if (*line == '.' && isupper ((unsigned char)line[1])) { - /* - * See if the target is a special target that must have it - * or its sources handled specially. - */ - int keywd = ParseFindKeyword(line); - if (keywd != -1) { - if (specType == ExPath && parseKeywords[keywd].spec != ExPath) { - Parse_Error(PARSE_FATAL, "Mismatched special targets"); - goto out; - } - - specType = parseKeywords[keywd].spec; - tOp = parseKeywords[keywd].op; - - /* - * Certain special targets have special semantics: - * .PATH Have to set the dirSearchPath - * variable too - * .MAIN Its sources are only used if - * nothing has been specified to - * create. - * .DEFAULT Need to create a node to hang - * commands on, but we don't want - * it in the graph, nor do we want - * it to be the Main Target, so we - * create it, set OP_NOTMAIN and - * add it to the list, setting - * DEFAULT to the new node for - * later use. We claim the node is - * A transformation rule to make - * life easier later, when we'll - * use Make_HandleUse to actually - * apply the .DEFAULT commands. - * .PHONY The list of targets - * .NOPATH Don't search for file in the path - * .BEGIN - * .END - * .ERROR - * .INTERRUPT Are not to be considered the - * main target. - * .NOTPARALLEL Make only one target at a time. - * .SINGLESHELL Create a shell for each command. - * .ORDER Must set initial predecessor to NULL - */ - switch (specType) { - case ExPath: - if (paths == NULL) { - paths = Lst_Init(FALSE); - } - (void)Lst_AtEnd(paths, dirSearchPath); - break; - case Main: - if (!Lst_IsEmpty(create)) { - specType = Not; - } - break; - case Begin: - case End: - case dotError: - case Interrupt: - gn = Targ_FindNode(line, TARG_CREATE); - gn->type |= OP_NOTMAIN|OP_SPECIAL; - (void)Lst_AtEnd(targets, gn); - break; - case Default: - gn = Targ_NewGN(".DEFAULT"); - gn->type |= (OP_NOTMAIN|OP_TRANSFORM); - (void)Lst_AtEnd(targets, gn); - DEFAULT = gn; - break; - case NotParallel: - maxJobs = 1; - break; - case SingleShell: - compatMake = TRUE; - break; - case Order: - predecessor = NULL; - break; - default: - break; - } - } else if (strncmp(line, ".PATH", 5) == 0) { - /* - * .PATH has to be handled specially. - * Call on the suffix module to give us a path to - * modify. - */ - Lst path; - - specType = ExPath; - path = Suff_GetPath(&line[5]); - if (path == NULL) { - Parse_Error(PARSE_FATAL, - "Suffix '%s' not defined (yet)", - &line[5]); - goto out; - } else { - if (paths == NULL) { - paths = Lst_Init(FALSE); - } - (void)Lst_AtEnd(paths, path); - } - } - } - - /* - * Have word in line. Get or create its node and stick it at - * the end of the targets list - */ - if ((specType == Not) && (*line != '\0')) { - if (Dir_HasWildcards(line)) { - /* - * Targets are to be sought only in the current directory, - * so create an empty path for the thing. Note we need to - * use Dir_Destroy in the destruction of the path as the - * Dir module could have added a directory to the path... - */ - Lst emptyPath = Lst_Init(FALSE); - - Dir_Expand(line, emptyPath, curTargs); - - Lst_Destroy(emptyPath, Dir_Destroy); - } else { - /* - * No wildcards, but we want to avoid code duplication, - * so create a list with the word on it. - */ - (void)Lst_AtEnd(curTargs, line); - } - - while(!Lst_IsEmpty(curTargs)) { - char *targName = (char *)Lst_DeQueue(curTargs); - - if (!Suff_IsTransform (targName)) { - gn = Targ_FindNode(targName, TARG_CREATE); - } else { - gn = Suff_AddTransform(targName); - } - - (void)Lst_AtEnd(targets, gn); - } - } else if (specType == ExPath && *line != '.' && *line != '\0') { - Parse_Error(PARSE_WARNING, "Extra target (%s) ignored", line); - } - - *cp = savec; - /* - * If it is a special type and not .PATH, it's the only target we - * allow on this line... - */ - if (specType != Not && specType != ExPath) { - Boolean warning = FALSE; - - while (*cp && (ParseIsEscaped(lstart, cp) || - ((*cp != '!') && (*cp != ':')))) { - if (ParseIsEscaped(lstart, cp) || - (*cp != ' ' && *cp != '\t')) { - warning = TRUE; - } - cp++; - } - if (warning) { - Parse_Error(PARSE_WARNING, "Extra target ignored"); - } - } else { - while (*cp && isspace ((unsigned char)*cp)) { - cp++; - } - } - line = cp; - } while (*line && (ParseIsEscaped(lstart, line) || - ((*line != '!') && (*line != ':')))); - - /* - * Don't need the list of target names anymore... - */ - Lst_Destroy(curTargs, NULL); - curTargs = NULL; - - if (!Lst_IsEmpty(targets)) { - switch(specType) { - default: - Parse_Error(PARSE_WARNING, "Special and mundane targets don't mix. Mundane ones ignored"); - break; - case Default: - case Begin: - case End: - case dotError: - case Interrupt: - /* - * These four create nodes on which to hang commands, so - * targets shouldn't be empty... - */ - case Not: - /* - * Nothing special here -- targets can be empty if it wants. - */ - break; - } - } - - /* - * Have now parsed all the target names. Must parse the operator next. The - * result is left in op . - */ - if (*cp == '!') { - op = OP_FORCE; - } else if (*cp == ':') { - if (cp[1] == ':') { - op = OP_DOUBLEDEP; - cp++; - } else { - op = OP_DEPENDS; - } - } else { - Parse_Error(PARSE_FATAL, lstart[0] == '.' ? "Unknown directive" - : "Missing dependency operator"); - goto out; - } - - cp++; /* Advance beyond operator */ - - Lst_ForEach(targets, ParseDoOp, &op); - - /* - * Get to the first source - */ - while (*cp && isspace ((unsigned char)*cp)) { - cp++; - } - line = cp; - - /* - * Several special targets take different actions if present with no - * sources: - * a .SUFFIXES line with no sources clears out all old suffixes - * a .PRECIOUS line makes all targets precious - * a .IGNORE line ignores errors for all targets - * a .SILENT line creates silence when making all targets - * a .PATH removes all directories from the search path(s). - */ - if (!*line) { - switch (specType) { - case Suffixes: - Suff_ClearSuffixes(); - break; - case Precious: - allPrecious = TRUE; - break; - case Ignore: - ignoreErrors = TRUE; - break; - case Silent: - beSilent = TRUE; - break; - case ExPath: - Lst_ForEach(paths, ParseClearPath, NULL); - Dir_SetPATH(); - break; -#ifdef POSIX - case Posix: - Var_Set("%POSIX", "1003.2", VAR_GLOBAL, 0); - break; -#endif - default: - break; - } - } else if (specType == MFlags) { - /* - * Call on functions in main.c to deal with these arguments and - * set the initial character to a null-character so the loop to - * get sources won't get anything - */ - Main_ParseArgLine(line); - *line = '\0'; - } else if (specType == ExShell) { - if (Job_ParseShell(line) != SUCCESS) { - Parse_Error(PARSE_FATAL, "improper shell specification"); - goto out; - } - *line = '\0'; - } else if ((specType == NotParallel) || (specType == SingleShell)) { - *line = '\0'; - } - - /* - * NOW GO FOR THE SOURCES - */ - if ((specType == Suffixes) || (specType == ExPath) || - (specType == Includes) || (specType == Libs) || - (specType == Null) || (specType == ExObjdir)) - { - while (*line) { - /* - * If the target was one that doesn't take files as its sources - * but takes something like suffixes, we take each - * space-separated word on the line as a something and deal - * with it accordingly. - * - * If the target was .SUFFIXES, we take each source as a - * suffix and add it to the list of suffixes maintained by the - * Suff module. - * - * If the target was a .PATH, we add the source as a directory - * to search on the search path. - * - * If it was .INCLUDES, the source is taken to be the suffix of - * files which will be #included and whose search path should - * be present in the .INCLUDES variable. - * - * If it was .LIBS, the source is taken to be the suffix of - * files which are considered libraries and whose search path - * should be present in the .LIBS variable. - * - * If it was .NULL, the source is the suffix to use when a file - * has no valid suffix. - * - * If it was .OBJDIR, the source is a new definition for .OBJDIR, - * and will cause make to do a new chdir to that path. - */ - while (*cp && !isspace ((unsigned char)*cp)) { - cp++; - } - savec = *cp; - *cp = '\0'; - switch (specType) { - case Suffixes: - Suff_AddSuffix(line, &mainNode); - break; - case ExPath: - Lst_ForEach(paths, ParseAddDir, line); - break; - case Includes: - Suff_AddInclude(line); - break; - case Libs: - Suff_AddLib(line); - break; - case Null: - Suff_SetNull(line); - break; - case ExObjdir: - Main_SetObjdir(line); - break; - default: - break; - } - *cp = savec; - if (savec != '\0') { - cp++; - } - while (*cp && isspace ((unsigned char)*cp)) { - cp++; - } - line = cp; - } - if (paths) { - Lst_Destroy(paths, NULL); - } - if (specType == ExPath) - Dir_SetPATH(); - } else { - while (*line) { - /* - * The targets take real sources, so we must beware of archive - * specifications (i.e. things with left parentheses in them) - * and handle them accordingly. - */ - for (; *cp && !isspace ((unsigned char)*cp); cp++) { - if ((*cp == LPAREN) && (cp > line) && (cp[-1] != '$')) { - /* - * Only stop for a left parenthesis if it isn't at the - * start of a word (that'll be for variable changes - * later) and isn't preceded by a dollar sign (a dynamic - * source). - */ - break; - } - } - - if (*cp == LPAREN) { - sources = Lst_Init(FALSE); - if (Arch_ParseArchive(&line, sources, VAR_CMD) != SUCCESS) { - Parse_Error(PARSE_FATAL, - "Error in source archive spec \"%s\"", line); - goto out; - } - - while (!Lst_IsEmpty (sources)) { - gn = (GNode *)Lst_DeQueue(sources); - ParseDoSrc(tOp, gn->name); - } - Lst_Destroy(sources, NULL); - cp = line; - } else { - if (*cp) { - *cp = '\0'; - cp += 1; - } - - ParseDoSrc(tOp, line); - } - while (*cp && isspace ((unsigned char)*cp)) { - cp++; - } - line = cp; - } - } - - if (mainNode == NULL) { - /* - * If we have yet to decide on a main target to make, in the - * absence of any user input, we want the first target on - * the first dependency line that is actually a real target - * (i.e. isn't a .USE or .EXEC rule) to be made. - */ - Lst_ForEach(targets, ParseFindMain, NULL); - } - -out: - if (curTargs) - Lst_Destroy(curTargs, NULL); -} - -/*- - *--------------------------------------------------------------------- - * Parse_IsVar -- - * Return TRUE if the passed line is a variable assignment. A variable - * assignment consists of a single word followed by optional whitespace - * followed by either a += or an = operator. - * This function is used both by the Parse_File function and main when - * parsing the command-line arguments. - * - * Input: - * line the line to check - * - * Results: - * TRUE if it is. FALSE if it ain't - * - * Side Effects: - * none - *--------------------------------------------------------------------- - */ -Boolean -Parse_IsVar(char *line) -{ - Boolean wasSpace = FALSE; /* set TRUE if found a space */ - char ch; - int level = 0; -#define ISEQOPERATOR(c) \ - (((c) == '+') || ((c) == ':') || ((c) == '?') || ((c) == '!')) - - /* - * Skip to variable name - */ - for (;(*line == ' ') || (*line == '\t'); line++) - continue; - - /* Scan for one of the assignment operators outside a variable expansion */ - while ((ch = *line++) != 0) { - if (ch == '(' || ch == '{') { - level++; - continue; - } - if (ch == ')' || ch == '}') { - level--; - continue; - } - if (level != 0) - continue; - while (ch == ' ' || ch == '\t') { - ch = *line++; - wasSpace = TRUE; - } - if (ch == '=') - return TRUE; - if (*line == '=' && ISEQOPERATOR(ch)) - return TRUE; - if (wasSpace) - return FALSE; - } - - return FALSE; -} - -/*- - *--------------------------------------------------------------------- - * Parse_DoVar -- - * Take the variable assignment in the passed line and do it in the - * global context. - * - * Note: There is a lexical ambiguity with assignment modifier characters - * in variable names. This routine interprets the character before the = - * as a modifier. Therefore, an assignment like - * C++=/usr/bin/CC - * is interpreted as "C+ +=" instead of "C++ =". - * - * Input: - * line a line guaranteed to be a variable assignment. - * This reduces error checks - * ctxt Context in which to do the assignment - * - * Results: - * none - * - * Side Effects: - * the variable structure of the given variable name is altered in the - * global context. - *--------------------------------------------------------------------- - */ -void -Parse_DoVar(char *line, GNode *ctxt) -{ - char *cp; /* pointer into line */ - enum { - VAR_SUBST, VAR_APPEND, VAR_SHELL, VAR_NORMAL - } type; /* Type of assignment */ - char *opc; /* ptr to operator character to - * null-terminate the variable name */ - Boolean freeCp = FALSE; /* TRUE if cp needs to be freed, - * i.e. if any variable expansion was - * performed */ - int depth; - - /* - * Skip to variable name - */ - while ((*line == ' ') || (*line == '\t')) { - line++; - } - - /* - * Skip to operator character, nulling out whitespace as we go - * XXX Rather than counting () and {} we should look for $ and - * then expand the variable. - */ - for (depth = 0, cp = line + 1; depth != 0 || *cp != '='; cp++) { - if (*cp == '(' || *cp == '{') { - depth++; - continue; - } - if (*cp == ')' || *cp == '}') { - depth--; - continue; - } - if (depth == 0 && isspace ((unsigned char)*cp)) { - *cp = '\0'; - } - } - opc = cp-1; /* operator is the previous character */ - *cp++ = '\0'; /* nuke the = */ - - /* - * Check operator type - */ - switch (*opc) { - case '+': - type = VAR_APPEND; - *opc = '\0'; - break; - - case '?': - /* - * If the variable already has a value, we don't do anything. - */ - *opc = '\0'; - if (Var_Exists(line, ctxt)) { - return; - } else { - type = VAR_NORMAL; - } - break; - - case ':': - type = VAR_SUBST; - *opc = '\0'; - break; - - case '!': - type = VAR_SHELL; - *opc = '\0'; - break; - - default: -#ifdef SUNSHCMD - while (opc > line && *opc != ':') - opc--; - - if (strncmp(opc, ":sh", 3) == 0) { - type = VAR_SHELL; - *opc = '\0'; - break; - } -#endif - type = VAR_NORMAL; - break; - } - - while (isspace ((unsigned char)*cp)) { - cp++; - } - - if (type == VAR_APPEND) { - Var_Append(line, cp, ctxt); - } else if (type == VAR_SUBST) { - /* - * Allow variables in the old value to be undefined, but leave their - * invocation alone -- this is done by forcing oldVars to be false. - * XXX: This can cause recursive variables, but that's not hard to do, - * and this allows someone to do something like - * - * CFLAGS = $(.INCLUDES) - * CFLAGS := -I.. $(CFLAGS) - * - * And not get an error. - */ - Boolean oldOldVars = oldVars; - - oldVars = FALSE; - - /* - * make sure that we set the variable the first time to nothing - * so that it gets substituted! - */ - if (!Var_Exists(line, ctxt)) - Var_Set(line, "", ctxt, 0); - - cp = Var_Subst(NULL, cp, ctxt, FALSE); - oldVars = oldOldVars; - freeCp = TRUE; - - Var_Set(line, cp, ctxt, 0); - } else if (type == VAR_SHELL) { - char *res; - const char *error; - - if (strchr(cp, '$') != NULL) { - /* - * There's a dollar sign in the command, so perform variable - * expansion on the whole thing. The resulting string will need - * freeing when we're done, so set freeCmd to TRUE. - */ - cp = Var_Subst(NULL, cp, VAR_CMD, TRUE); - freeCp = TRUE; - } - - res = Cmd_Exec(cp, &error); - Var_Set(line, res, ctxt, 0); - free(res); - - if (error) - Parse_Error(PARSE_WARNING, error, cp); - } else { - /* - * Normal assignment -- just do it. - */ - Var_Set(line, cp, ctxt, 0); - } - if (strcmp(line, MAKEOVERRIDES) == 0) - Main_ExportMAKEFLAGS(FALSE); /* re-export MAKEFLAGS */ - else if (strcmp(line, ".CURDIR") == 0) { - /* - * Somone is being (too?) clever... - * Let's pretend they know what they are doing and - * re-initialize the 'cur' Path. - */ - Dir_InitCur(cp); - Dir_SetPATH(); - } else if (strcmp(line, MAKE_JOB_PREFIX) == 0) { - Job_SetPrefix(); - } else if (strcmp(line, MAKE_EXPORTED) == 0) { - Var_Export(cp, 0); - } - if (freeCp) - free(cp); -} - - -/*- - * ParseAddCmd -- - * Lst_ForEach function to add a command line to all targets - * - * Input: - * gnp the node to which the command is to be added - * cmd the command to add - * - * Results: - * Always 0 - * - * Side Effects: - * A new element is added to the commands list of the node. - */ -static int -ParseAddCmd(void *gnp, void *cmd) -{ - GNode *gn = (GNode *)gnp; - - /* Add to last (ie current) cohort for :: targets */ - if ((gn->type & OP_DOUBLEDEP) && !Lst_IsEmpty (gn->cohorts)) - gn = (GNode *)Lst_Datum(Lst_Last(gn->cohorts)); - - /* if target already supplied, ignore commands */ - if (!(gn->type & OP_HAS_COMMANDS)) { - (void)Lst_AtEnd(gn->commands, cmd); - ParseMark(gn); - } else { -#ifdef notyet - /* XXX: We cannot do this until we fix the tree */ - (void)Lst_AtEnd(gn->commands, cmd); - Parse_Error(PARSE_WARNING, - "overriding commands for target \"%s\"; " - "previous commands defined at %s: %d ignored", - gn->name, gn->fname, gn->lineno); -#else - Parse_Error(PARSE_WARNING, - "duplicate script for target \"%s\" ignored", - gn->name); - ParseErrorInternal(gn->fname, gn->lineno, PARSE_WARNING, - "using previous script for \"%s\" defined here", - gn->name); -#endif - } - return(0); -} - -/*- - *----------------------------------------------------------------------- - * ParseHasCommands -- - * Callback procedure for Parse_File when destroying the list of - * targets on the last dependency line. Marks a target as already - * having commands if it does, to keep from having shell commands - * on multiple dependency lines. - * - * Input: - * gnp Node to examine - * - * Results: - * None - * - * Side Effects: - * OP_HAS_COMMANDS may be set for the target. - * - *----------------------------------------------------------------------- - */ -static void -ParseHasCommands(void *gnp) -{ - GNode *gn = (GNode *)gnp; - if (!Lst_IsEmpty(gn->commands)) { - gn->type |= OP_HAS_COMMANDS; - } -} - -/*- - *----------------------------------------------------------------------- - * Parse_AddIncludeDir -- - * Add a directory to the path searched for included makefiles - * bracketed by double-quotes. Used by functions in main.c - * - * Input: - * dir The name of the directory to add - * - * Results: - * None. - * - * Side Effects: - * The directory is appended to the list. - * - *----------------------------------------------------------------------- - */ -void -Parse_AddIncludeDir(char *dir) -{ - (void)Dir_AddDir(parseIncPath, dir); -} - -/*- - *--------------------------------------------------------------------- - * ParseDoInclude -- - * Push to another file. - * - * The input is the line minus the `.'. A file spec is a string - * enclosed in <> or "". The former is looked for only in sysIncPath. - * The latter in . and the directories specified by -I command line - * options - * - * Results: - * None - * - * Side Effects: - * A structure is added to the includes Lst and readProc, lineno, - * fname and curFILE are altered for the new file - *--------------------------------------------------------------------- - */ - -static void -Parse_include_file(char *file, Boolean isSystem, int silent) -{ - struct loadedfile *lf; - char *fullname; /* full pathname of file */ - char *newName; - char *prefEnd, *incdir; - int fd; - int i; - - /* - * Now we know the file's name and its search path, we attempt to - * find the durn thing. A return of NULL indicates the file don't - * exist. - */ - fullname = file[0] == '/' ? bmake_strdup(file) : NULL; - - if (fullname == NULL && !isSystem) { - /* - * Include files contained in double-quotes are first searched for - * relative to the including file's location. We don't want to - * cd there, of course, so we just tack on the old file's - * leading path components and call Dir_FindFile to see if - * we can locate the beast. - */ - - incdir = bmake_strdup(curFile->fname); - prefEnd = strrchr(incdir, '/'); - if (prefEnd != NULL) { - *prefEnd = '\0'; - /* Now do lexical processing of leading "../" on the filename */ - for (i = 0; strncmp(file + i, "../", 3) == 0; i += 3) { - prefEnd = strrchr(incdir + 1, '/'); - if (prefEnd == NULL || strcmp(prefEnd, "/..") == 0) - break; - *prefEnd = '\0'; - } - newName = str_concat(incdir, file + i, STR_ADDSLASH); - fullname = Dir_FindFile(newName, parseIncPath); - if (fullname == NULL) - fullname = Dir_FindFile(newName, dirSearchPath); - free(newName); - } - free(incdir); - - if (fullname == NULL) { - /* - * Makefile wasn't found in same directory as included makefile. - * Search for it first on the -I search path, - * then on the .PATH search path, if not found in a -I directory. - * If we have a suffix specific path we should use that. - */ - char *suff; - Lst suffPath = NULL; - - if ((suff = strrchr(file, '.'))) { - suffPath = Suff_GetPath(suff); - if (suffPath != NULL) { - fullname = Dir_FindFile(file, suffPath); - } - } - if (fullname == NULL) { - fullname = Dir_FindFile(file, parseIncPath); - if (fullname == NULL) { - fullname = Dir_FindFile(file, dirSearchPath); - } - } - } - } - - /* Looking for a system file or file still not found */ - if (fullname == NULL) { - /* - * Look for it on the system path - */ - fullname = Dir_FindFile(file, - Lst_IsEmpty(sysIncPath) ? defIncPath : sysIncPath); - } - - if (fullname == NULL) { - if (!silent) - Parse_Error(PARSE_FATAL, "Could not find %s", file); - return; - } - - /* Actually open the file... */ - fd = open(fullname, O_RDONLY); - if (fd == -1) { - if (!silent) - Parse_Error(PARSE_FATAL, "Cannot open %s", fullname); - free(fullname); - return; - } - - /* load it */ - lf = loadfile(fullname, fd); - - /* Start reading from this file next */ - Parse_SetInput(fullname, 0, -1, loadedfile_nextbuf, lf); - curFile->lf = lf; -} - -static void -ParseDoInclude(char *line) -{ - char endc; /* the character which ends the file spec */ - char *cp; /* current position in file spec */ - int silent = (*line != 'i') ? 1 : 0; - char *file = &line[7 + silent]; - - /* Skip to delimiter character so we know where to look */ - while (*file == ' ' || *file == '\t') - file++; - - if (*file != '"' && *file != '<') { - Parse_Error(PARSE_FATAL, - ".include filename must be delimited by '\"' or '<'"); - return; - } - - /* - * Set the search path on which to find the include file based on the - * characters which bracket its name. Angle-brackets imply it's - * a system Makefile while double-quotes imply it's a user makefile - */ - if (*file == '<') { - endc = '>'; - } else { - endc = '"'; - } - - /* Skip to matching delimiter */ - for (cp = ++file; *cp && *cp != endc; cp++) - continue; - - if (*cp != endc) { - Parse_Error(PARSE_FATAL, - "Unclosed %cinclude filename. '%c' expected", - '.', endc); - return; - } - *cp = '\0'; - - /* - * Substitute for any variables in the file name before trying to - * find the thing. - */ - file = Var_Subst(NULL, file, VAR_CMD, FALSE); - - Parse_include_file(file, endc == '>', silent); - free(file); -} - - -/*- - *--------------------------------------------------------------------- - * ParseSetParseFile -- - * Set the .PARSEDIR and .PARSEFILE variables to the dirname and - * basename of the given filename - * - * Results: - * None - * - * Side Effects: - * The .PARSEDIR and .PARSEFILE variables are overwritten by the - * dirname and basename of the given filename. - *--------------------------------------------------------------------- - */ -static void -ParseSetParseFile(const char *filename) -{ - char *slash, *dirname; - const char *pd, *pf; - int len; - - slash = strrchr(filename, '/'); - if (slash == NULL) { - Var_Set(".PARSEDIR", pd = curdir, VAR_GLOBAL, 0); - Var_Set(".PARSEFILE", pf = filename, VAR_GLOBAL, 0); - dirname= NULL; - } else { - len = slash - filename; - dirname = bmake_malloc(len + 1); - memcpy(dirname, filename, len); - dirname[len] = '\0'; - Var_Set(".PARSEDIR", pd = dirname, VAR_GLOBAL, 0); - Var_Set(".PARSEFILE", pf = slash + 1, VAR_GLOBAL, 0); - } - if (DEBUG(PARSE)) - fprintf(debug_file, "ParseSetParseFile: ${.PARSEDIR} = `%s' " - "${.PARSEFILE} = `%s'\n", pd, pf); - free(dirname); -} - -/* - * Track the makefiles we read - so makefiles can - * set dependencies on them. - * Avoid adding anything more than once. - */ - -static void -ParseTrackInput(const char *name) -{ - char *old; - char *fp = NULL; - size_t name_len = strlen(name); - - old = Var_Value(MAKE_MAKEFILES, VAR_GLOBAL, &fp); - if (old) { - /* does it contain name? */ - for (; old != NULL; old = strchr(old, ' ')) { - if (*old == ' ') - old++; - if (memcmp(old, name, name_len) == 0 - && (old[name_len] == 0 || old[name_len] == ' ')) - goto cleanup; - } - } - Var_Append (MAKE_MAKEFILES, name, VAR_GLOBAL); - cleanup: - if (fp) { - free(fp); - } -} - - -/*- - *--------------------------------------------------------------------- - * Parse_setInput -- - * Start Parsing from the given source - * - * Results: - * None - * - * Side Effects: - * A structure is added to the includes Lst and readProc, lineno, - * fname and curFile are altered for the new file - *--------------------------------------------------------------------- - */ -void -Parse_SetInput(const char *name, int line, int fd, - char *(*nextbuf)(void *, size_t *), void *arg) -{ - char *buf; - size_t len; - - if (name == NULL) - name = curFile->fname; - else - ParseTrackInput(name); - - if (DEBUG(PARSE)) - fprintf(debug_file, "Parse_SetInput: file %s, line %d, fd %d, nextbuf %p, arg %p\n", - name, line, fd, nextbuf, arg); - - if (fd == -1 && nextbuf == NULL) - /* sanity */ - return; - - if (curFile != NULL) - /* Save exiting file info */ - Lst_AtFront(includes, curFile); - - /* Allocate and fill in new structure */ - curFile = bmake_malloc(sizeof *curFile); - - /* - * Once the previous state has been saved, we can get down to reading - * the new file. We set up the name of the file to be the absolute - * name of the include file so error messages refer to the right - * place. - */ - curFile->fname = name; - curFile->lineno = line; - curFile->first_lineno = line; - curFile->nextbuf = nextbuf; - curFile->nextbuf_arg = arg; - curFile->lf = NULL; - - assert(nextbuf != NULL); - - /* Get first block of input data */ - buf = curFile->nextbuf(curFile->nextbuf_arg, &len); - if (buf == NULL) { - /* Was all a waste of time ... */ - free(curFile); - return; - } - curFile->P_str = buf; - curFile->P_ptr = buf; - curFile->P_end = buf+len; - - curFile->cond_depth = Cond_save_depth(); - ParseSetParseFile(name); -} - -#ifdef SYSVINCLUDE -/*- - *--------------------------------------------------------------------- - * ParseTraditionalInclude -- - * Push to another file. - * - * The input is the current line. The file name(s) are - * following the "include". - * - * Results: - * None - * - * Side Effects: - * A structure is added to the includes Lst and readProc, lineno, - * fname and curFILE are altered for the new file - *--------------------------------------------------------------------- - */ -static void -ParseTraditionalInclude(char *line) -{ - char *cp; /* current position in file spec */ - int done = 0; - int silent = (line[0] != 'i') ? 1 : 0; - char *file = &line[silent + 7]; - char *all_files; - - if (DEBUG(PARSE)) { - fprintf(debug_file, "ParseTraditionalInclude: %s\n", file); - } - - /* - * Skip over whitespace - */ - while (isspace((unsigned char)*file)) - file++; - - /* - * Substitute for any variables in the file name before trying to - * find the thing. - */ - all_files = Var_Subst(NULL, file, VAR_CMD, FALSE); - - if (*file == '\0') { - Parse_Error(PARSE_FATAL, - "Filename missing from \"include\""); - return; - } - - for (file = all_files; !done; file = cp + 1) { - /* Skip to end of line or next whitespace */ - for (cp = file; *cp && !isspace((unsigned char) *cp); cp++) - continue; - - if (*cp) - *cp = '\0'; - else - done = 1; - - Parse_include_file(file, FALSE, silent); - } - free(all_files); -} -#endif - -#ifdef GMAKEEXPORT -/*- - *--------------------------------------------------------------------- - * ParseGmakeExport -- - * Parse export = - * - * And set the environment with it. - * - * Results: - * None - * - * Side Effects: - * None - *--------------------------------------------------------------------- - */ -static void -ParseGmakeExport(char *line) -{ - char *variable = &line[6]; - char *value; - - if (DEBUG(PARSE)) { - fprintf(debug_file, "ParseGmakeExport: %s\n", variable); - } - - /* - * Skip over whitespace - */ - while (isspace((unsigned char)*variable)) - variable++; - - for (value = variable; *value && *value != '='; value++) - continue; - - if (*value != '=') { - Parse_Error(PARSE_FATAL, - "Variable/Value missing from \"export\""); - return; - } - - /* - * Expand the value before putting it in the environment. - */ - value = Var_Subst(NULL, value, VAR_CMD, FALSE); - setenv(variable, value, 1); -} -#endif - -/*- - *--------------------------------------------------------------------- - * ParseEOF -- - * Called when EOF is reached in the current file. If we were reading - * an include file, the includes stack is popped and things set up - * to go back to reading the previous file at the previous location. - * - * Results: - * CONTINUE if there's more to do. DONE if not. - * - * Side Effects: - * The old curFILE, is closed. The includes list is shortened. - * lineno, curFILE, and fname are changed if CONTINUE is returned. - *--------------------------------------------------------------------- - */ -static int -ParseEOF(void) -{ - char *ptr; - size_t len; - - assert(curFile->nextbuf != NULL); - - /* get next input buffer, if any */ - ptr = curFile->nextbuf(curFile->nextbuf_arg, &len); - curFile->P_ptr = ptr; - curFile->P_str = ptr; - curFile->P_end = ptr + len; - curFile->lineno = curFile->first_lineno; - if (ptr != NULL) { - /* Iterate again */ - return CONTINUE; - } - - /* Ensure the makefile (or loop) didn't have mismatched conditionals */ - Cond_restore_depth(curFile->cond_depth); - - if (curFile->lf != NULL) { - loadedfile_destroy(curFile->lf); - curFile->lf = NULL; - } - - /* Dispose of curFile info */ - /* Leak curFile->fname because all the gnodes have pointers to it */ - free(curFile->P_str); - free(curFile); - - curFile = Lst_DeQueue(includes); - - if (curFile == NULL) { - /* We've run out of input */ - Var_Delete(".PARSEDIR", VAR_GLOBAL); - Var_Delete(".PARSEFILE", VAR_GLOBAL); - return DONE; - } - - if (DEBUG(PARSE)) - fprintf(debug_file, "ParseEOF: returning to file %s, line %d\n", - curFile->fname, curFile->lineno); - - /* Restore the PARSEDIR/PARSEFILE variables */ - ParseSetParseFile(curFile->fname); - return (CONTINUE); -} - -#define PARSE_RAW 1 -#define PARSE_SKIP 2 - -static char * -ParseGetLine(int flags, int *length) -{ - IFile *cf = curFile; - char *ptr; - char ch; - char *line; - char *line_end; - char *escaped; - char *comment; - char *tp; - - /* Loop through blank lines and comment lines */ - for (;;) { - cf->lineno++; - line = cf->P_ptr; - ptr = line; - line_end = line; - escaped = NULL; - comment = NULL; - for (;;) { - if (cf->P_end != NULL && ptr == cf->P_end) { - /* end of buffer */ - ch = 0; - break; - } - ch = *ptr; - if (ch == 0 || (ch == '\\' && ptr[1] == 0)) { - if (cf->P_end == NULL) - /* End of string (aka for loop) data */ - break; - if (cf->nextbuf != NULL) { - /* - * End of this buffer; return EOF and outer logic - * will get the next one. (eww) - */ - break; - } - Parse_Error(PARSE_FATAL, "Zero byte read from file"); - return NULL; - } - - if (ch == '\\') { - /* Don't treat next character as special, remember first one */ - if (escaped == NULL) - escaped = ptr; - if (ptr[1] == '\n') - cf->lineno++; - ptr += 2; - line_end = ptr; - continue; - } - if (ch == '#' && comment == NULL) { - /* Remember first '#' for comment stripping */ - /* Unless previous char was '[', as in modifier :[#] */ - if (!(ptr > line && ptr[-1] == '[')) - comment = line_end; - } - ptr++; - if (ch == '\n') - break; - if (!isspace((unsigned char)ch)) - /* We are not interested in trailing whitespace */ - line_end = ptr; - } - - /* Save next 'to be processed' location */ - cf->P_ptr = ptr; - - /* Check we have a non-comment, non-blank line */ - if (line_end == line || comment == line) { - if (ch == 0) - /* At end of file */ - return NULL; - /* Parse another line */ - continue; - } - - /* We now have a line of data */ - *line_end = 0; - - if (flags & PARSE_RAW) { - /* Leave '\' (etc) in line buffer (eg 'for' lines) */ - *length = line_end - line; - return line; - } - - if (flags & PARSE_SKIP) { - /* Completely ignore non-directives */ - if (line[0] != '.') - continue; - /* We could do more of the .else/.elif/.endif checks here */ - } - break; - } - - /* Brutally ignore anything after a non-escaped '#' in non-commands */ - if (comment != NULL && line[0] != '\t') { - line_end = comment; - *line_end = 0; - } - - /* If we didn't see a '\\' then the in-situ data is fine */ - if (escaped == NULL) { - *length = line_end - line; - return line; - } - - /* Remove escapes from '\n' and '#' */ - tp = ptr = escaped; - escaped = line; - for (; ; *tp++ = ch) { - ch = *ptr++; - if (ch != '\\') { - if (ch == 0) - break; - continue; - } - - ch = *ptr++; - if (ch == 0) { - /* Delete '\\' at end of buffer */ - tp--; - break; - } - - if (ch == '#' && line[0] != '\t') - /* Delete '\\' from before '#' on non-command lines */ - continue; - - if (ch != '\n') { - /* Leave '\\' in buffer for later */ - *tp++ = '\\'; - /* Make sure we don't delete an escaped ' ' from the line end */ - escaped = tp + 1; - continue; - } - - /* Escaped '\n' replace following whitespace with a single ' ' */ - while (ptr[0] == ' ' || ptr[0] == '\t') - ptr++; - ch = ' '; - } - - /* Delete any trailing spaces - eg from empty continuations */ - while (tp > escaped && isspace((unsigned char)tp[-1])) - tp--; - - *tp = 0; - *length = tp - line; - return line; -} - -/*- - *--------------------------------------------------------------------- - * ParseReadLine -- - * Read an entire line from the input file. Called only by Parse_File. - * - * Results: - * A line w/o its newline - * - * Side Effects: - * Only those associated with reading a character - *--------------------------------------------------------------------- - */ -static char * -ParseReadLine(void) -{ - char *line; /* Result */ - int lineLength; /* Length of result */ - int lineno; /* Saved line # */ - int rval; - - for (;;) { - line = ParseGetLine(0, &lineLength); - if (line == NULL) - return NULL; - - if (line[0] != '.') - return line; - - /* - * The line might be a conditional. Ask the conditional module - * about it and act accordingly - */ - switch (Cond_Eval(line)) { - case COND_SKIP: - /* Skip to next conditional that evaluates to COND_PARSE. */ - do { - line = ParseGetLine(PARSE_SKIP, &lineLength); - } while (line && Cond_Eval(line) != COND_PARSE); - if (line == NULL) - break; - continue; - case COND_PARSE: - continue; - case COND_INVALID: /* Not a conditional line */ - /* Check for .for loops */ - rval = For_Eval(line); - if (rval == 0) - /* Not a .for line */ - break; - if (rval < 0) - /* Syntax error - error printed, ignore line */ - continue; - /* Start of a .for loop */ - lineno = curFile->lineno; - /* Accumulate loop lines until matching .endfor */ - do { - line = ParseGetLine(PARSE_RAW, &lineLength); - if (line == NULL) { - Parse_Error(PARSE_FATAL, - "Unexpected end of file in for loop."); - break; - } - } while (For_Accum(line)); - /* Stash each iteration as a new 'input file' */ - For_Run(lineno); - /* Read next line from for-loop buffer */ - continue; - } - return (line); - } -} - -/*- - *----------------------------------------------------------------------- - * ParseFinishLine -- - * Handle the end of a dependency group. - * - * Results: - * Nothing. - * - * Side Effects: - * inLine set FALSE. 'targets' list destroyed. - * - *----------------------------------------------------------------------- - */ -static void -ParseFinishLine(void) -{ - if (inLine) { - Lst_ForEach(targets, Suff_EndTransform, NULL); - Lst_Destroy(targets, ParseHasCommands); - targets = NULL; - inLine = FALSE; - } -} - - -/*- - *--------------------------------------------------------------------- - * Parse_File -- - * Parse a file into its component parts, incorporating it into the - * current dependency graph. This is the main function and controls - * almost every other function in this module - * - * Input: - * name the name of the file being read - * fd Open file to makefile to parse - * - * Results: - * None - * - * Side Effects: - * closes fd. - * Loads. Nodes are added to the list of all targets, nodes and links - * are added to the dependency graph. etc. etc. etc. - *--------------------------------------------------------------------- - */ -void -Parse_File(const char *name, int fd) -{ - char *cp; /* pointer into the line */ - char *line; /* the line we're working on */ - struct loadedfile *lf; - - lf = loadfile(name, fd); - - inLine = FALSE; - fatals = 0; - - if (name == NULL) { - name = "(stdin)"; - } - - Parse_SetInput(name, 0, -1, loadedfile_nextbuf, lf); - curFile->lf = lf; - - do { - for (; (line = ParseReadLine()) != NULL; ) { - if (DEBUG(PARSE)) - fprintf(debug_file, "ParseReadLine (%d): '%s'\n", - curFile->lineno, line); - if (*line == '.') { - /* - * Lines that begin with the special character may be - * include or undef directives. - * On the other hand they can be suffix rules (.c.o: ...) - * or just dependencies for filenames that start '.'. - */ - for (cp = line + 1; isspace((unsigned char)*cp); cp++) { - continue; - } - if (strncmp(cp, "include", 7) == 0 || - ((cp[0] == 's' || cp[0] == '-') && - strncmp(&cp[1], "include", 7) == 0)) { - ParseDoInclude(cp); - continue; - } - if (strncmp(cp, "undef", 5) == 0) { - char *cp2; - for (cp += 5; isspace((unsigned char) *cp); cp++) - continue; - for (cp2 = cp; !isspace((unsigned char) *cp2) && - (*cp2 != '\0'); cp2++) - continue; - *cp2 = '\0'; - Var_Delete(cp, VAR_GLOBAL); - continue; - } else if (strncmp(cp, "export", 6) == 0) { - for (cp += 6; isspace((unsigned char) *cp); cp++) - continue; - Var_Export(cp, 1); - continue; - } else if (strncmp(cp, "unexport", 8) == 0) { - Var_UnExport(cp); - continue; - } else if (strncmp(cp, "info", 4) == 0 || - strncmp(cp, "error", 5) == 0 || - strncmp(cp, "warning", 7) == 0) { - if (ParseMessage(cp)) - continue; - } - } - - if (*line == '\t') { - /* - * If a line starts with a tab, it can only hope to be - * a creation command. - */ - cp = line + 1; - shellCommand: - for (; isspace ((unsigned char)*cp); cp++) { - continue; - } - if (*cp) { - if (!inLine) - Parse_Error(PARSE_FATAL, - "Unassociated shell command \"%s\"", - cp); - /* - * So long as it's not a blank line and we're actually - * in a dependency spec, add the command to the list of - * commands of all targets in the dependency spec - */ - if (targets) { - cp = bmake_strdup(cp); - Lst_ForEach(targets, ParseAddCmd, cp); -#ifdef CLEANUP - Lst_AtEnd(targCmds, cp); -#endif - } - } - continue; - } - -#ifdef SYSVINCLUDE - if (((strncmp(line, "include", 7) == 0 && - isspace((unsigned char) line[7])) || - ((line[0] == 's' || line[0] == '-') && - strncmp(&line[1], "include", 7) == 0 && - isspace((unsigned char) line[8]))) && - strchr(line, ':') == NULL) { - /* - * It's an S3/S5-style "include". - */ - ParseTraditionalInclude(line); - continue; - } -#endif -#ifdef GMAKEEXPORT - if (strncmp(line, "export", 6) == 0 && - isspace((unsigned char) line[6]) && - strchr(line, ':') == NULL) { - /* - * It's a Gmake "export". - */ - ParseGmakeExport(line); - continue; - } -#endif - if (Parse_IsVar(line)) { - ParseFinishLine(); - Parse_DoVar(line, VAR_GLOBAL); - continue; - } - -#ifndef POSIX - /* - * To make life easier on novices, if the line is indented we - * first make sure the line has a dependency operator in it. - * If it doesn't have an operator and we're in a dependency - * line's script, we assume it's actually a shell command - * and add it to the current list of targets. - */ - cp = line; - if (isspace((unsigned char) line[0])) { - while ((*cp != '\0') && isspace((unsigned char) *cp)) - cp++; - while (*cp && (ParseIsEscaped(line, cp) || - (*cp != ':') && (*cp != '!'))) { - cp++; - } - if (*cp == '\0') { - if (inLine) { - Parse_Error(PARSE_WARNING, - "Shell command needs a leading tab"); - goto shellCommand; - } - } - } -#endif - ParseFinishLine(); - - /* - * For some reason - probably to make the parser impossible - - * a ';' can be used to separate commands from dependencies. - * Attempt to avoid ';' inside substitution patterns. - */ - { - int level = 0; - - for (cp = line; *cp != 0; cp++) { - if (*cp == '\\' && cp[1] != 0) { - cp++; - continue; - } - if (*cp == '$' && - (cp[1] == '(' || cp[1] == '{')) { - level++; - continue; - } - if (level > 0) { - if (*cp == ')' || *cp == '}') { - level--; - continue; - } - } else if (*cp == ';') { - break; - } - } - } - if (*cp != 0) - /* Terminate the dependency list at the ';' */ - *cp++ = 0; - else - cp = NULL; - - /* - * We now know it's a dependency line so it needs to have all - * variables expanded before being parsed. Tell the variable - * module to complain if some variable is undefined... - */ - line = Var_Subst(NULL, line, VAR_CMD, TRUE); - - /* - * Need a non-circular list for the target nodes - */ - if (targets) - Lst_Destroy(targets, NULL); - - targets = Lst_Init(FALSE); - inLine = TRUE; - - ParseDoDependency(line); - free(line); - - /* If there were commands after a ';', add them now */ - if (cp != NULL) { - goto shellCommand; - } - } - /* - * Reached EOF, but it may be just EOF of an include file... - */ - } while (ParseEOF() == CONTINUE); - - if (fatals) { - (void)fflush(stdout); - (void)fprintf(stderr, - "%s: Fatal errors encountered -- cannot continue", - progname); - PrintOnError(NULL, NULL); - exit(1); - } -} - -/*- - *--------------------------------------------------------------------- - * Parse_Init -- - * initialize the parsing module - * - * Results: - * none - * - * Side Effects: - * the parseIncPath list is initialized... - *--------------------------------------------------------------------- - */ -void -Parse_Init(void) -{ - mainNode = NULL; - parseIncPath = Lst_Init(FALSE); - sysIncPath = Lst_Init(FALSE); - defIncPath = Lst_Init(FALSE); - includes = Lst_Init(FALSE); -#ifdef CLEANUP - targCmds = Lst_Init(FALSE); -#endif -} - -void -Parse_End(void) -{ -#ifdef CLEANUP - Lst_Destroy(targCmds, (FreeProc *)free); - if (targets) - Lst_Destroy(targets, NULL); - Lst_Destroy(defIncPath, Dir_Destroy); - Lst_Destroy(sysIncPath, Dir_Destroy); - Lst_Destroy(parseIncPath, Dir_Destroy); - Lst_Destroy(includes, NULL); /* Should be empty now */ -#endif -} - - -/*- - *----------------------------------------------------------------------- - * Parse_MainName -- - * Return a Lst of the main target to create for main()'s sake. If - * no such target exists, we Punt with an obnoxious error message. - * - * Results: - * A Lst of the single node to create. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -Lst -Parse_MainName(void) -{ - Lst mainList; /* result list */ - - mainList = Lst_Init(FALSE); - - if (mainNode == NULL) { - Punt("no target to make."); - /*NOTREACHED*/ - } else if (mainNode->type & OP_DOUBLEDEP) { - (void)Lst_AtEnd(mainList, mainNode); - Lst_Concat(mainList, mainNode->cohorts, LST_CONCNEW); - } - else - (void)Lst_AtEnd(mainList, mainNode); - Var_Append(".TARGETS", mainNode->name, VAR_GLOBAL); - return (mainList); -} - -/*- - *----------------------------------------------------------------------- - * ParseMark -- - * Add the filename and lineno to the GNode so that we remember - * where it was first defined. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static void -ParseMark(GNode *gn) -{ - gn->fname = curFile->fname; - gn->lineno = curFile->lineno; -} diff --git a/external/bsd/bmake/dist/pathnames.h b/external/bsd/bmake/dist/pathnames.h deleted file mode 100644 index 9c597b1e6758..000000000000 --- a/external/bsd/bmake/dist/pathnames.h +++ /dev/null @@ -1,62 +0,0 @@ -/* $NetBSD: pathnames.h,v 1.17 2009/04/11 09:41:18 apb Exp $ */ - -/* - * Copyright (c) 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)pathnames.h 5.2 (Berkeley) 6/1/90 - * $Id: pathnames.h,v 1.13 2009/08/26 23:43:42 sjg Exp $ - */ - -#if HAVE_CONFIG_H -#include "config.h" -#endif -#ifndef MAKE_NATIVE -#if HAVE_NBTOOL_CONFIG_H -#include "nbtool_config.h" -#endif -#endif -#ifdef HAVE_PATHS_H -#include -#endif -#define _PATH_OBJDIR "obj" -#define _PATH_OBJDIRPREFIX "/usr/obj" -#ifndef _PATH_DEFSHELLDIR -#define _PATH_DEFSHELLDIR "/bin" -#endif -#define _PATH_DEFSYSMK "sys.mk" -#define _path_defsyspath "/usr/share/mk:/usr/local/share/mk:/opt/share/mk" -#ifndef _PATH_DEFSYSPATH -# ifdef _PATH_PREFIX_SYSPATH -# define _PATH_DEFSYSPATH _PATH_PREFIX_SYSPATH ":" _path_defsyspath -# else -# define _PATH_DEFSYSPATH _path_defsyspath -# endif -#endif -#ifndef _PATH_TMP -#define _PATH_TMP "/tmp/" /* with trailing slash */ -#endif diff --git a/external/bsd/bmake/dist/ranlib.h b/external/bsd/bmake/dist/ranlib.h deleted file mode 100644 index 503c7c169763..000000000000 --- a/external/bsd/bmake/dist/ranlib.h +++ /dev/null @@ -1,32 +0,0 @@ -/* @(#)ranlib.h 1.6 88/08/19 SMI; from UCB 4.1 83/05/03 */ -/* $Id: ranlib.h,v 1.5 2005/11/01 02:35:15 sjg Exp $ */ - -/* - * Structure of the __.SYMDEF table of contents for an archive. - * __.SYMDEF begins with a word giving the number of ranlib structures - * which immediately follow, and then continues with a string - * table consisting of a word giving the number of bytes of strings - * which follow and then the strings themselves. - * The ran_strx fields index the string table whose first byte is numbered 0. - */ - -#if !defined(IRIX) && !defined(__digital__) && !defined(__osf__) -#ifndef _ranlib_h -#define _ranlib_h - -#if 0 -#define RANLIBMAG "!\n__.SYMDEF" /* archive file name */ -#endif -#define RANLIBMAG "__.SYMDEF" /* archive file name */ -#define RANLIBSKEW 3 /* creation time offset */ - -struct ranlib { - union { - off_t ran_strx; /* string table index of */ - char *ran_name; /* symbol defined by */ - } ran_un; - off_t ran_off; /* library member at this offset */ -}; - -#endif /*!_ranlib_h*/ -#endif diff --git a/external/bsd/bmake/dist/realpath.c b/external/bsd/bmake/dist/realpath.c deleted file mode 100644 index 1ef2cd878c2a..000000000000 --- a/external/bsd/bmake/dist/realpath.c +++ /dev/null @@ -1,196 +0,0 @@ -/* $Id: realpath.c,v 1.2 2010/04/21 17:47:49 sjg Exp $ */ -/* from: $NetBSD: getcwd.c,v 1.45 2007/10/26 19:48:14 christos Exp $ */ - -/* - * Copyright (c) 1989, 1991, 1993, 1995 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Jan-Simon Pendry. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ -#ifdef HAVE_CONFIG_H -# include -#endif -#ifndef HAVE_REALPATH - -#include -#include -#include - -#include -#ifdef HAVE_STDLIB_H -# include -#endif -#ifdef HAVE_STRING_H -# include -#endif -#ifdef HAVE_UNISTD_H -# include -#endif - -/* - * char *realpath(const char *path, char resolved[MAXPATHLEN]); - * - * Find the real name of path, by removing all ".", ".." and symlink - * components. Returns (resolved) on success, or (NULL) on failure, - * in which case the path which caused trouble is left in (resolved). - */ -char * -realpath(const char *path, char *resolved) -{ - struct stat sb; - int idx = 0, n, nlnk = 0; - const char *q; - char *p, wbuf[2][MAXPATHLEN]; - size_t len; - - if (!path || !resolved || path == resolved) - return (NULL); - - /* - * Build real path one by one with paying an attention to ., - * .. and symbolic link. - */ - - /* - * `p' is where we'll put a new component with prepending - * a delimiter. - */ - p = resolved; - - if (*path == 0) { - *p = 0; - errno = ENOENT; - return (NULL); - } - - /* If relative path, start from current working directory. */ - if (*path != '/') { - /* check for resolved pointer to appease coverity */ - if (resolved && getcwd(resolved, MAXPATHLEN) == NULL) { - p[0] = '.'; - p[1] = 0; - return (NULL); - } - len = strlen(resolved); - if (len > 1) - p += len; - } - -loop: - /* Skip any slash. */ - while (*path == '/') - path++; - - if (*path == 0) { - if (p == resolved) - *p++ = '/'; - *p = 0; - return (resolved); - } - - /* Find the end of this component. */ - q = path; - do - q++; - while (*q != '/' && *q != 0); - - /* Test . or .. */ - if (path[0] == '.') { - if (q - path == 1) { - path = q; - goto loop; - } - if (path[1] == '.' && q - path == 2) { - /* Trim the last component. */ - if (p != resolved) - while (*--p != '/') - ; - path = q; - goto loop; - } - } - - /* Append this component. */ - if (p - resolved + 1 + q - path + 1 > MAXPATHLEN) { - errno = ENAMETOOLONG; - if (p == resolved) - *p++ = '/'; - *p = 0; - return (NULL); - } - p[0] = '/'; - memcpy(&p[1], path, - /* LINTED We know q > path. */ - q - path); - p[1 + q - path] = 0; - - /* - * If this component is a symlink, toss it and prepend link - * target to unresolved path. - */ - if (lstat(resolved, &sb) == -1) { - return (NULL); - } - if (S_ISLNK(sb.st_mode)) { - if (nlnk++ >= MAXSYMLINKS) { - errno = ELOOP; - return (NULL); - } - n = readlink(resolved, wbuf[idx], sizeof(wbuf[0]) - 1); - if (n < 0) - return (NULL); - if (n == 0) { - errno = ENOENT; - return (NULL); - } - - /* Append unresolved path to link target and switch to it. */ - if (n + (len = strlen(q)) + 1 > sizeof(wbuf[0])) { - errno = ENAMETOOLONG; - return (NULL); - } - memcpy(&wbuf[idx][n], q, len + 1); - path = wbuf[idx]; - idx ^= 1; - - /* If absolute symlink, start from root. */ - if (*path == '/') - p = resolved; - goto loop; - } - if (*q == '/' && !S_ISDIR(sb.st_mode)) { - errno = ENOTDIR; - return (NULL); - } - - /* Advance both resolved and unresolved path. */ - p += 1 + q - path; - path = q; - goto loop; -} -#endif diff --git a/external/bsd/bmake/dist/setenv.c b/external/bsd/bmake/dist/setenv.c deleted file mode 100644 index efd0f74f308f..000000000000 --- a/external/bsd/bmake/dist/setenv.c +++ /dev/null @@ -1,154 +0,0 @@ -/* - * Copyright (c) 1987 Regents of the University of California. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif -#ifndef HAVE_SETENV - -#if defined(LIBC_SCCS) && !defined(lint) -/*static char *sccsid = "from: @(#)setenv.c 5.6 (Berkeley) 6/4/91";*/ -static char *rcsid = "$Id: setenv.c,v 1.5 1996/09/04 22:10:42 sjg Exp $"; -#endif /* LIBC_SCCS and not lint */ - -#include -#include -#include - -/* - * __findenv -- - * Returns pointer to value associated with name, if any, else NULL. - * Sets offset to be the offset of the name/value combination in the - * environmental array, for use by setenv(3) and unsetenv(3). - * Explicitly removes '=' in argument name. - * - * This routine *should* be a static; don't use it. - */ -static char * -__findenv(name, offset) - register char *name; - int *offset; -{ - extern char **environ; - register int len; - register char **P, *C; - - for (C = name, len = 0; *C && *C != '='; ++C, ++len); - for (P = environ; *P; ++P) - if (!strncmp(*P, name, len)) - if (*(C = *P + len) == '=') { - *offset = P - environ; - return(++C); - } - return(NULL); -} - -/* - * setenv -- - * Set the value of the environmental variable "name" to be - * "value". If rewrite is set, replace any current value. - */ -setenv(name, value, rewrite) - register const char *name; - register const char *value; - int rewrite; -{ - extern char **environ; - static int alloced; /* if allocated space before */ - register char *C; - int l_value, offset; - char *__findenv(); - - if (*value == '=') /* no `=' in value */ - ++value; - l_value = strlen(value); - if ((C = __findenv(name, &offset))) { /* find if already exists */ - if (!rewrite) - return (0); - if (strlen(C) >= l_value) { /* old larger; copy over */ - while (*C++ = *value++); - return (0); - } - } else { /* create new slot */ - register int cnt; - register char **P; - - for (P = environ, cnt = 0; *P; ++P, ++cnt); - if (alloced) { /* just increase size */ - environ = (char **)realloc((char *)environ, - (size_t)(sizeof(char *) * (cnt + 2))); - if (!environ) - return (-1); - } - else { /* get new space */ - alloced = 1; /* copy old entries into it */ - P = (char **)malloc((size_t)(sizeof(char *) * - (cnt + 2))); - if (!P) - return (-1); - bcopy(environ, P, cnt * sizeof(char *)); - environ = P; - } - environ[cnt + 1] = NULL; - offset = cnt; - } - for (C = (char *)name; *C && *C != '='; ++C); /* no `=' in name */ - if (!(environ[offset] = /* name + `=' + value */ - malloc((size_t)((int)(C - name) + l_value + 2)))) - return (-1); - for (C = environ[offset]; (*C = *name++) && *C != '='; ++C) - ; - for (*C++ = '='; *C++ = *value++; ) - ; - return (0); -} - -/* - * unsetenv(name) -- - * Delete environmental variable "name". - */ -void -unsetenv(name) - const char *name; -{ - extern char **environ; - register char **P; - int offset; - char *__findenv(); - - while (__findenv(name, &offset)) /* if set multiple times */ - for (P = &environ[offset];; ++P) - if (!(*P = *(P + 1))) - break; -} -#endif diff --git a/external/bsd/bmake/dist/sigcompat.c b/external/bsd/bmake/dist/sigcompat.c deleted file mode 100644 index 608538d77d0f..000000000000 --- a/external/bsd/bmake/dist/sigcompat.c +++ /dev/null @@ -1,325 +0,0 @@ -/* - * NAME: - * sigcompat - BSD compat signals via POSIX - * - * SYNOPSIS: - * void (*signal(int "sig", void (*"handler")(int)))(int); - * int sigsetmask(int "mask"); - * int sigblock(int "mask"); - * int sigpause(int "mask"); - * int sigvec(int "signo", struct sigvec *"sv", struct sigvec *"osv"); - * - * DESCRIPTION: - * These implement the old BSD routines via the POSIX equivalents. - * This module can be used to provide the missing routines, or if - * 'FORCE_POSIX_SIGNALS' is defined, force use of these. - * - * Note that signal() is identical to my Signal() routine except - * for checking for recursion. Within libsig, signal() just - * calls Signal(). - * - * BUGS: - * This package assumes POSIX signal handling is available and - * NOT implemeneted using these routines. To be safe, we check - * for recursion and abort(3) if detected. - * - * Sadly, on some systems, sigset_t is an array, and we cannot - * test for this via #if sizeof(sigset_t) ..., so unless - * 'SIGSET_T_INT' is defined, we have to assume the worst and use - * memcpy(3) to handle args and return values. - * - * HISTORY: - * These routines originate from BSD, and are derrived from the - * NetBSD 1.1 implementation. They have been seriously hacked to - * make them portable to other systems. - * - * AUTHOR: - * Simon J. Gerraty - */ -/* - * @(#)Copyright (c) 1994, Simon J. Gerraty. - * - * This is free software. It comes with NO WARRANTY. - * Permission to use, modify and distribute this source code - * is granted subject to the following conditions. - * 1/ that the above copyright notice and this notice - * are preserved in all copies and that due credit be given - * to the author. - * 2/ that any changes to this code are clearly commented - * as such so that the author does not get blamed for bugs - * other than his own. - * - * Please send copies of changes and bug-fixes to: - * sjg@crufty.net - */ - -/* - * Copyright (c) 1989 The Regents of the University of California. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif -#include -#ifdef HAVE_UNISTD_H -#include -#endif - -#if defined(sun) && !(defined(__svr4__) || defined(__SVR4)) -# define NO_SIGCOMPAT -#endif -#if defined(__MINT__) -# define NO_SIGCOMPAT -#endif - -#if !defined(NO_SIGCOMPAT) && (defined(HAVE_SIGACTION) || defined(SA_NOCLDSTOP)) - -#if defined(LIBC_SCCS) && !defined(lint) -/*static char *sccsid = "from: @(#)sigcompat.c 5.3 (Berkeley) 2/24/91";*/ -static char *rcsid = "$Id: sigcompat.c,v 1.23 2011/02/14 00:07:11 sjg Exp $"; -#endif /* LIBC_SCCS and not lint */ - -#undef signal -#include -#include -#include -#include -#include "assert.h" - -#ifndef ASSERT -# define ASSERT assert -#endif - -#ifdef NDEBUG -# define _DBUG(x) -#else -# define _DBUG(x) x -#endif - -#ifndef SA_RESTART -# define SA_RESTART 2 -#endif -#ifndef SV_INTERRUPT -# define SV_INTERRUPT SA_RESTART -#endif - -#ifndef MASK_T -# if defined(__hpux__) || defined(__hpux) -# define MASK_T long -# else -# define MASK_T int -# endif -#endif -/* I just hate HPsUX */ -#if (defined(__HPUX_VERSION) && __HPUX_VERSION > 9) || defined(__hpux) -# define PAUSE_MASK_T int -#else -# define PAUSE_MASK_T MASK_T -#endif - -#ifndef SIG_HDLR -# define SIG_HDLR void -#endif - -#ifdef FORCE_POSIX_SIGNALS -#if !(defined(libsig) || defined(libsjg)) -/* - * This little block is almost identical to Signal(), - * and make this module standalone. - * We don't use it in libsig by default, as some apps might use both - * and expect _SignalFlags to be used by both. - */ - -#ifndef SIGNAL_FLAGS -# define SIGNAL_FLAGS 0 /* no auto-restart */ -#endif -int _signalFlags = SIGNAL_FLAGS; - -SIG_HDLR(*signal(int sig, SIG_HDLR(*handler)(int)))(int) -{ - _DBUG(static int depth_signal = 0); - struct sigaction act, oact; - int n; - - _DBUG(++depth_signal); - ASSERT(depth_signal < 2); - act.sa_handler = handler; - sigemptyset(&act.sa_mask); - act.sa_flags = _signalFlags; - n = sigaction(sig, &act, &oact); - _DBUG(--depth_signal); - if (n < 0) - return (SIG_ERR); - return (oact.sa_handler); -} -#else -SIG_HDLR(*signal(int sig, SIG_HDLR(*handler)(int)))(int) -{ - extern SIG_HDLR(*Signal(int, void (*)(int)))(int); - _DBUG(static int depth_signal = 0); - SIG_HDLR(*old) __P((int)); - - _DBUG(++depth_signal); - ASSERT(depth_signal < 2); - old = Signal(sig, handler); - _DBUG(--depth_signal); - return old; -} -#endif -#endif - -/* - * on some systems, sigset_t is an array... - * it would be nicer if we could do - * #if sizeof(sigset_t) > sizeof(MASK_T) - */ -#ifdef SIGSET_T_INT -# define ss2m(ss) (MASK_T) *(ss) -# define m2ss(ss, m) *ss = (sigset_t) *(m) -#else -static MASK_T -ss2m(sigset_t *ss) -{ - MASK_T ma[(sizeof(sigset_t) / sizeof(MASK_T)) + 1]; - - memcpy((char *) ma, (char *) ss, sizeof(sigset_t)); - return ma[0]; -} - -static void -m2ss(sigset_t *ss, MASK_T *m) -{ - if (sizeof(sigset_t) > sizeof(MASK_T)) - memset((char *) ss, 0, sizeof(sigset_t)); - - memcpy((char *) ss, (char *) m, sizeof(MASK_T)); -} -#endif - -#if !defined(HAVE_SIGSETMASK) || defined(FORCE_POSIX_SIGNALS) -MASK_T -sigsetmask(MASK_T mask) -{ - _DBUG(static int depth_sigsetmask = 0); - sigset_t m, omask; - int n; - - _DBUG(++depth_sigsetmask); - ASSERT(depth_sigsetmask < 2); - m2ss(&m, &mask); - n = sigprocmask(SIG_SETMASK, (sigset_t *) & m, (sigset_t *) & omask); - _DBUG(--depth_sigsetmask); - if (n) - return (n); - - return ss2m(&omask); -} - - -MASK_T -sigblock(MASK_T mask) -{ - _DBUG(static int depth_sigblock = 0); - sigset_t m, omask; - int n; - - _DBUG(++depth_sigblock); - ASSERT(depth_sigblock < 2); - if (mask) - m2ss(&m, &mask); - n = sigprocmask(SIG_BLOCK, (sigset_t *) ((mask) ? &m : 0), (sigset_t *) & omask); - _DBUG(--depth_sigblock); - if (n) - return (n); - return ss2m(&omask); -} - -#undef sigpause /* Linux at least */ - -PAUSE_MASK_T -sigpause(PAUSE_MASK_T mask) -{ - _DBUG(static int depth_sigpause = 0); - sigset_t m; - PAUSE_MASK_T n; - - _DBUG(++depth_sigpause); - ASSERT(depth_sigpause < 2); - m2ss(&m, &mask); - n = sigsuspend(&m); - _DBUG(--depth_sigpause); - return n; -} -#endif - -#if defined(HAVE_SIGVEC) && defined(FORCE_POSIX_SIGNALS) -int -sigvec(int signo, struct sigvec *sv, struct sigvec *osv) -{ - _DBUG(static int depth_sigvec = 0); - int ret; - struct sigvec nsv; - - _DBUG(++depth_sigvec); - ASSERT(depth_sigvec < 2); - if (sv) { - nsv = *sv; - nsv.sv_flags ^= SV_INTERRUPT; /* !SA_INTERRUPT */ - } - ret = sigaction(signo, sv ? (struct sigaction *) & nsv : NULL, - (struct sigaction *) osv); - _DBUG(--depth_sigvec); - if (ret == 0 && osv) - osv->sv_flags ^= SV_INTERRUPT; /* !SA_INTERRUPT */ - return (ret); -} -#endif - -#ifdef MAIN -# ifndef sigmask -# define sigmask(n) ((unsigned int)1 << (((n) - 1) & (32 - 1))) -# endif - -int -main(int argc, char *argv[]) -{ - MASK_T old = 0; - - printf("expect: old=0,old=2\n"); - fflush(stdout); - signal(SIGQUIT, SIG_IGN); - old = sigblock(sigmask(SIGINT)); - printf("old=%d,", old); - old = sigsetmask(sigmask(SIGALRM)); - printf("old=%d\n", old); -} -#endif -#endif diff --git a/external/bsd/bmake/dist/sprite.h b/external/bsd/bmake/dist/sprite.h deleted file mode 100644 index 6ec4fe2e4d09..000000000000 --- a/external/bsd/bmake/dist/sprite.h +++ /dev/null @@ -1,116 +0,0 @@ -/* $NetBSD: sprite.h,v 1.11 2009/01/23 21:26:30 dsl Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)sprite.h 8.1 (Berkeley) 6/6/93 - */ - -/* - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * from: @(#)sprite.h 8.1 (Berkeley) 6/6/93 - */ - -/* - * sprite.h -- - * - * Common constants and type declarations for Sprite. - */ - -#ifndef _SPRITE -#define _SPRITE - - -/* - * A boolean type is defined as an integer, not an enum. This allows a - * boolean argument to be an expression that isn't strictly 0 or 1 valued. - */ - -typedef int Boolean; -#ifndef TRUE -#define TRUE 1 -#endif /* TRUE */ -#ifndef FALSE -#define FALSE 0 -#endif /* FALSE */ - -/* - * Functions that must return a status can return a ReturnStatus to - * indicate success or type of failure. - */ - -typedef int ReturnStatus; - -/* - * The following statuses overlap with the first 2 generic statuses - * defined in status.h: - * - * SUCCESS There was no error. - * FAILURE There was a general error. - */ - -#define SUCCESS 0x00000000 -#define FAILURE 0x00000001 - -#endif /* _SPRITE */ diff --git a/external/bsd/bmake/dist/str.c b/external/bsd/bmake/dist/str.c deleted file mode 100644 index bc324b8c9c20..000000000000 --- a/external/bsd/bmake/dist/str.c +++ /dev/null @@ -1,508 +0,0 @@ -/* $NetBSD: str.c,v 1.34 2012/03/03 23:16:47 dholland Exp $ */ - -/*- - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/*- - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: str.c,v 1.34 2012/03/03 23:16:47 dholland Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)str.c 5.8 (Berkeley) 6/1/90"; -#else -__RCSID("$NetBSD: str.c,v 1.34 2012/03/03 23:16:47 dholland Exp $"); -#endif -#endif /* not lint */ -#endif - -#include "make.h" - -/*- - * str_concat -- - * concatenate the two strings, inserting a space or slash between them, - * freeing them if requested. - * - * returns -- - * the resulting string in allocated space. - */ -char * -str_concat(const char *s1, const char *s2, int flags) -{ - int len1, len2; - char *result; - - /* get the length of both strings */ - len1 = strlen(s1); - len2 = strlen(s2); - - /* allocate length plus separator plus EOS */ - result = bmake_malloc((u_int)(len1 + len2 + 2)); - - /* copy first string into place */ - memcpy(result, s1, len1); - - /* add separator character */ - if (flags & STR_ADDSPACE) { - result[len1] = ' '; - ++len1; - } else if (flags & STR_ADDSLASH) { - result[len1] = '/'; - ++len1; - } - - /* copy second string plus EOS into place */ - memcpy(result + len1, s2, len2 + 1); - - return(result); -} - -/*- - * brk_string -- - * Fracture a string into an array of words (as delineated by tabs or - * spaces) taking quotation marks into account. Leading tabs/spaces - * are ignored. - * - * If expand is TRUE, quotes are removed and escape sequences - * such as \r, \t, etc... are expanded. - * - * returns -- - * Pointer to the array of pointers to the words. - * Memory containing the actual words in *buffer. - * Both of these must be free'd by the caller. - * Number of words in *store_argc. - */ -char ** -brk_string(const char *str, int *store_argc, Boolean expand, char **buffer) -{ - int argc, ch; - char inquote, *start, *t; - const char *p; - int len; - int argmax = 50, curlen = 0; - char **argv = bmake_malloc((argmax + 1) * sizeof(char *)); - - /* skip leading space chars. */ - for (; *str == ' ' || *str == '\t'; ++str) - continue; - - /* allocate room for a copy of the string */ - if ((len = strlen(str) + 1) > curlen) - *buffer = bmake_malloc(curlen = len); - - /* - * copy the string; at the same time, parse backslashes, - * quotes and build the argument list. - */ - argc = 0; - inquote = '\0'; - for (p = str, start = t = *buffer;; ++p) { - switch(ch = *p) { - case '"': - case '\'': - if (inquote) { - if (inquote == ch) - inquote = '\0'; - else - break; - } - else { - inquote = (char) ch; - /* Don't miss "" or '' */ - if (start == NULL && p[1] == inquote) { - if (!expand) { - start = t; - *t++ = ch; - } else - start = t + 1; - p++; - inquote = '\0'; - break; - } - } - if (!expand) { - if (!start) - start = t; - *t++ = ch; - } - continue; - case ' ': - case '\t': - case '\n': - if (inquote) - break; - if (!start) - continue; - /* FALLTHROUGH */ - case '\0': - /* - * end of a token -- make sure there's enough argv - * space and save off a pointer. - */ - if (!start) - goto done; - - *t++ = '\0'; - if (argc == argmax) { - argmax *= 2; /* ramp up fast */ - argv = (char **)bmake_realloc(argv, - (argmax + 1) * sizeof(char *)); - } - argv[argc++] = start; - start = NULL; - if (ch == '\n' || ch == '\0') { - if (expand && inquote) { - free(argv); - free(*buffer); - *buffer = NULL; - return NULL; - } - goto done; - } - continue; - case '\\': - if (!expand) { - if (!start) - start = t; - *t++ = '\\'; - if (*(p+1) == '\0') /* catch '\' at end of line */ - continue; - ch = *++p; - break; - } - - switch (ch = *++p) { - case '\0': - case '\n': - /* hmmm; fix it up as best we can */ - ch = '\\'; - --p; - break; - case 'b': - ch = '\b'; - break; - case 'f': - ch = '\f'; - break; - case 'n': - ch = '\n'; - break; - case 'r': - ch = '\r'; - break; - case 't': - ch = '\t'; - break; - } - break; - } - if (!start) - start = t; - *t++ = (char) ch; - } -done: argv[argc] = NULL; - *store_argc = argc; - return(argv); -} - -/* - * Str_FindSubstring -- See if a string contains a particular substring. - * - * Input: - * string String to search. - * substring Substring to find in string. - * - * Results: If string contains substring, the return value is the location of - * the first matching instance of substring in string. If string doesn't - * contain substring, the return value is NULL. Matching is done on an exact - * character-for-character basis with no wildcards or special characters. - * - * Side effects: None. - */ -char * -Str_FindSubstring(const char *string, const char *substring) -{ - const char *a, *b; - - /* - * First scan quickly through the two strings looking for a single- - * character match. When it's found, then compare the rest of the - * substring. - */ - - for (b = substring; *string != 0; string += 1) { - if (*string != *b) - continue; - a = string; - for (;;) { - if (*b == 0) - return UNCONST(string); - if (*a++ != *b++) - break; - } - b = substring; - } - return NULL; -} - -/* - * Str_Match -- - * - * See if a particular string matches a particular pattern. - * - * Results: Non-zero is returned if string matches pattern, 0 otherwise. The - * matching operation permits the following special characters in the - * pattern: *?\[] (see the man page for details on what these mean). - * - * XXX this function does not detect or report malformed patterns. - * - * Side effects: None. - */ -int -Str_Match(const char *string, const char *pattern) -{ - char c2; - - for (;;) { - /* - * See if we're at the end of both the pattern and the - * string. If, we succeeded. If we're at the end of the - * pattern but not at the end of the string, we failed. - */ - if (*pattern == 0) - return(!*string); - if (*string == 0 && *pattern != '*') - return(0); - /* - * Check for a "*" as the next pattern character. It matches - * any substring. We handle this by calling ourselves - * recursively for each postfix of string, until either we - * match or we reach the end of the string. - */ - if (*pattern == '*') { - pattern += 1; - if (*pattern == 0) - return(1); - while (*string != 0) { - if (Str_Match(string, pattern)) - return(1); - ++string; - } - return(0); - } - /* - * Check for a "?" as the next pattern character. It matches - * any single character. - */ - if (*pattern == '?') - goto thisCharOK; - /* - * Check for a "[" as the next pattern character. It is - * followed by a list of characters that are acceptable, or - * by a range (two characters separated by "-"). - */ - if (*pattern == '[') { - ++pattern; - for (;;) { - if ((*pattern == ']') || (*pattern == 0)) - return(0); - if (*pattern == *string) - break; - if (pattern[1] == '-') { - c2 = pattern[2]; - if (c2 == 0) - return(0); - if ((*pattern <= *string) && - (c2 >= *string)) - break; - if ((*pattern >= *string) && - (c2 <= *string)) - break; - pattern += 2; - } - ++pattern; - } - while ((*pattern != ']') && (*pattern != 0)) - ++pattern; - goto thisCharOK; - } - /* - * If the next pattern character is '/', just strip off the - * '/' so we do exact matching on the character that follows. - */ - if (*pattern == '\\') { - ++pattern; - if (*pattern == 0) - return(0); - } - /* - * There's no special character. Just make sure that the - * next characters of each string match. - */ - if (*pattern != *string) - return(0); -thisCharOK: ++pattern; - ++string; - } -} - - -/*- - *----------------------------------------------------------------------- - * Str_SYSVMatch -- - * Check word against pattern for a match (% is wild), - * - * Input: - * word Word to examine - * pattern Pattern to examine against - * len Number of characters to substitute - * - * Results: - * Returns the beginning position of a match or null. The number - * of characters matched is returned in len. - * - * Side Effects: - * None - * - *----------------------------------------------------------------------- - */ -char * -Str_SYSVMatch(const char *word, const char *pattern, int *len) -{ - const char *p = pattern; - const char *w = word; - const char *m; - - if (*p == '\0') { - /* Null pattern is the whole string */ - *len = strlen(w); - return UNCONST(w); - } - - if ((m = strchr(p, '%')) != NULL) { - /* check that the prefix matches */ - for (; p != m && *w && *w == *p; w++, p++) - continue; - - if (p != m) - return NULL; /* No match */ - - if (*++p == '\0') { - /* No more pattern, return the rest of the string */ - *len = strlen(w); - return UNCONST(w); - } - } - - m = w; - - /* Find a matching tail */ - do - if (strcmp(p, w) == 0) { - *len = w - m; - return UNCONST(m); - } - while (*w++ != '\0'); - - return NULL; -} - - -/*- - *----------------------------------------------------------------------- - * Str_SYSVSubst -- - * Substitute '%' on the pattern with len characters from src. - * If the pattern does not contain a '%' prepend len characters - * from src. - * - * Results: - * None - * - * Side Effects: - * Places result on buf - * - *----------------------------------------------------------------------- - */ -void -Str_SYSVSubst(Buffer *buf, char *pat, char *src, int len) -{ - char *m; - - if ((m = strchr(pat, '%')) != NULL) { - /* Copy the prefix */ - Buf_AddBytes(buf, m - pat, pat); - /* skip the % */ - pat = m + 1; - } - - /* Copy the pattern */ - Buf_AddBytes(buf, len, src); - - /* append the rest */ - Buf_AddBytes(buf, strlen(pat), pat); -} diff --git a/external/bsd/bmake/dist/stresep.c b/external/bsd/bmake/dist/stresep.c deleted file mode 100644 index b1b5714ca88d..000000000000 --- a/external/bsd/bmake/dist/stresep.c +++ /dev/null @@ -1,89 +0,0 @@ -/* $NetBSD: stresep.c,v 1.2 2007/12/06 22:07:07 seb Exp $ */ - -/*- - * Copyright (c) 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include -#include - -#if !defined(HAVE_STRESEP) -char * stresep(char **stringp, const char *delim, int esc); -/* - * Get next token from string *stringp, where tokens are possibly-empty - * strings separated by characters from delim. If esc is not NUL, then - * the characters followed by esc are ignored and are not taken into account - * when splitting the string. - * - * Writes NULs into the string at *stringp to end tokens. - * delim need not remain constant from call to call. - * On return, *stringp points past the last NUL written (if there might - * be further tokens), or is NULL (if there are definitely no more tokens). - * - * If *stringp is NULL, stresep returns NULL. - */ -char * -stresep(char **stringp, const char *delim, int esc) -{ - char *s; - const char *spanp; - int c, sc; - char *tok; - - if (stringp == NULL || delim == NULL) - return NULL; - - if ((s = *stringp) == NULL) - return NULL; - for (tok = s;;) { - c = *s++; - while (esc != '\0' && c == esc) { - (void)strcpy(s - 1, s); - c = *s++; - } - spanp = delim; - do { - if ((sc = *spanp++) == c) { - if (c == 0) - s = NULL; - else - s[-1] = 0; - *stringp = s; - return tok; - } - } while (sc != 0); - } -} -#endif - diff --git a/external/bsd/bmake/dist/strlcpy.c b/external/bsd/bmake/dist/strlcpy.c deleted file mode 100644 index b59b2f4ba5a6..000000000000 --- a/external/bsd/bmake/dist/strlcpy.c +++ /dev/null @@ -1,63 +0,0 @@ -/* $NetBSD: strlcpy.c,v 1.3 2007/06/04 18:19:27 christos Exp $ */ -/* $OpenBSD: strlcpy.c,v 1.7 2003/04/12 21:56:39 millert Exp $ */ - -/* - * Copyright (c) 1998 Todd C. Miller - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND TODD C. MILLER DISCLAIMS ALL - * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL TODD C. MILLER BE LIABLE - * FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif -#ifndef HAVE_STRLCPY - -#include - -#include -#include - -/* - * Copy src to string dst of size siz. At most siz-1 characters - * will be copied. Always NUL terminates (unless siz == 0). - * Returns strlen(src); if retval >= siz, truncation occurred. - */ -size_t -strlcpy(char *dst, const char *src, size_t siz) -{ - char *d = dst; - const char *s = src; - size_t n = siz; - - if (!dst || !src) - return 0; - - /* Copy as many bytes as will fit */ - if (n != 0 && --n != 0) { - do { - if ((*d++ = *s++) == 0) - break; - } while (--n != 0); - } - - /* Not enough room in dst, add NUL and traverse rest of src */ - if (n == 0) { - if (siz != 0) - *d = '\0'; /* NUL-terminate dst */ - while (*s++) - ; - } - - return(s - src - 1); /* count does not include NUL */ -} -#endif diff --git a/external/bsd/bmake/dist/strlist.c b/external/bsd/bmake/dist/strlist.c deleted file mode 100644 index 3fb2f7dbb6c8..000000000000 --- a/external/bsd/bmake/dist/strlist.c +++ /dev/null @@ -1,93 +0,0 @@ -/* $NetBSD: strlist.c,v 1.4 2009/01/24 11:59:39 dsl Exp $ */ - -/*- - * Copyright (c) 2008 - 2009 The NetBSD Foundation, Inc. - * All rights reserved. - * - * This code is derived from software contributed to The NetBSD Foundation - * by David Laight. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of The NetBSD Foundation nor the names of its - * contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: strlist.c,v 1.4 2009/01/24 11:59:39 dsl Exp $"; -#else -#include -#ifndef lint -__RCSID("$NetBSD: strlist.c,v 1.4 2009/01/24 11:59:39 dsl Exp $"); -#endif /* not lint */ -#endif - -#include -#include -#include "strlist.h" -#include "make_malloc.h" - -void -strlist_init(strlist_t *sl) -{ - sl->sl_num = 0; - sl->sl_max = 0; - sl->sl_items = NULL; -} - -void -strlist_clean(strlist_t *sl) -{ - char *str; - int i; - - STRLIST_FOREACH(str, sl, i) - free(str); - free(sl->sl_items); - - sl->sl_num = 0; - sl->sl_max = 0; - sl->sl_items = NULL; -} - -void -strlist_add_str(strlist_t *sl, char *str, unsigned int info) -{ - unsigned int n; - strlist_item_t *items; - - if (str == NULL) - return; - - n = sl->sl_num + 1; - sl->sl_num = n; - items = sl->sl_items; - if (n >= sl->sl_max) { - items = bmake_realloc(items, (n + 7) * sizeof *sl->sl_items); - sl->sl_items = items; - sl->sl_max = n + 6; - } - items += n - 1; - items->si_str = str; - items->si_info = info; - items[1].si_str = NULL; /* STRLIST_FOREACH() terminator */ -} diff --git a/external/bsd/bmake/dist/strlist.h b/external/bsd/bmake/dist/strlist.h deleted file mode 100644 index 2fc049e8643a..000000000000 --- a/external/bsd/bmake/dist/strlist.h +++ /dev/null @@ -1,62 +0,0 @@ -/* $NetBSD: strlist.h,v 1.3 2009/01/16 21:15:34 dsl Exp $ */ - -/*- - * Copyright (c) 2008 - 2009 The NetBSD Foundation, Inc. - * All rights reserved. - * - * This code is derived from software contributed to The NetBSD Foundation - * by David Laight. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of The NetBSD Foundation nor the names of its - * contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef _STRLIST_H -#define _STRLIST_H - -typedef struct { - char *si_str; - unsigned int si_info; -} strlist_item_t; - -typedef struct { - unsigned int sl_num; - unsigned int sl_max; - strlist_item_t *sl_items; -} strlist_t; - -void strlist_init(strlist_t *); -void strlist_clean(strlist_t *); -void strlist_add_str(strlist_t *, char *, unsigned int); - -#define strlist_num(sl) ((sl)->sl_num) -#define strlist_str(sl, n) ((sl)->sl_items[n].si_str) -#define strlist_info(sl, n) ((sl)->sl_items[n].si_info) -#define strlist_set_info(sl, n, v) ((void)((sl)->sl_items[n].si_info = (v))) - -#define STRLIST_FOREACH(v, sl, index) \ - if ((sl)->sl_items != NULL) \ - for (index = 0; (v = strlist_str(sl, index)) != NULL; index++) - -#endif /* _STRLIST_H */ diff --git a/external/bsd/bmake/dist/suff.c b/external/bsd/bmake/dist/suff.c deleted file mode 100644 index 6abdeb0459e5..000000000000 --- a/external/bsd/bmake/dist/suff.c +++ /dev/null @@ -1,2653 +0,0 @@ -/* $NetBSD: suff.c,v 1.69 2011/09/29 23:38:04 sjg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: suff.c,v 1.69 2011/09/29 23:38:04 sjg Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)suff.c 8.4 (Berkeley) 3/21/94"; -#else -__RCSID("$NetBSD: suff.c,v 1.69 2011/09/29 23:38:04 sjg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * suff.c -- - * Functions to maintain suffix lists and find implicit dependents - * using suffix transformation rules - * - * Interface: - * Suff_Init Initialize all things to do with suffixes. - * - * Suff_End Cleanup the module - * - * Suff_DoPaths This function is used to make life easier - * when searching for a file according to its - * suffix. It takes the global search path, - * as defined using the .PATH: target, and appends - * its directories to the path of each of the - * defined suffixes, as specified using - * .PATH: targets. In addition, all - * directories given for suffixes labeled as - * include files or libraries, using the .INCLUDES - * or .LIBS targets, are played with using - * Dir_MakeFlags to create the .INCLUDES and - * .LIBS global variables. - * - * Suff_ClearSuffixes Clear out all the suffixes and defined - * transformations. - * - * Suff_IsTransform Return TRUE if the passed string is the lhs - * of a transformation rule. - * - * Suff_AddSuffix Add the passed string as another known suffix. - * - * Suff_GetPath Return the search path for the given suffix. - * - * Suff_AddInclude Mark the given suffix as denoting an include - * file. - * - * Suff_AddLib Mark the given suffix as denoting a library. - * - * Suff_AddTransform Add another transformation to the suffix - * graph. Returns GNode suitable for framing, I - * mean, tacking commands, attributes, etc. on. - * - * Suff_SetNull Define the suffix to consider the suffix of - * any file that doesn't have a known one. - * - * Suff_FindDeps Find implicit sources for and the location of - * a target based on its suffix. Returns the - * bottom-most node added to the graph or NULL - * if the target had no implicit sources. - * - * Suff_FindPath Return the appropriate path to search in - * order to find the node. - */ - -#include -#include "make.h" -#include "hash.h" -#include "dir.h" - -static Lst sufflist; /* Lst of suffixes */ -#ifdef CLEANUP -static Lst suffClean; /* Lst of suffixes to be cleaned */ -#endif -static Lst srclist; /* Lst of sources */ -static Lst transforms; /* Lst of transformation rules */ - -static int sNum = 0; /* Counter for assigning suffix numbers */ - -/* - * Structure describing an individual suffix. - */ -typedef struct _Suff { - char *name; /* The suffix itself */ - int nameLen; /* Length of the suffix */ - short flags; /* Type of suffix */ -#define SUFF_INCLUDE 0x01 /* One which is #include'd */ -#define SUFF_LIBRARY 0x02 /* One which contains a library */ -#define SUFF_NULL 0x04 /* The empty suffix */ - Lst searchPath; /* The path along which files of this suffix - * may be found */ - int sNum; /* The suffix number */ - int refCount; /* Reference count of list membership */ - Lst parents; /* Suffixes we have a transformation to */ - Lst children; /* Suffixes we have a transformation from */ - Lst ref; /* List of lists this suffix is referenced */ -} Suff; - -/* - * for SuffSuffIsSuffix - */ -typedef struct { - char *ename; /* The end of the name */ - int len; /* Length of the name */ -} SuffixCmpData; - -/* - * Structure used in the search for implied sources. - */ -typedef struct _Src { - char *file; /* The file to look for */ - char *pref; /* Prefix from which file was formed */ - Suff *suff; /* The suffix on the file */ - struct _Src *parent; /* The Src for which this is a source */ - GNode *node; /* The node describing the file */ - int children; /* Count of existing children (so we don't free - * this thing too early or never nuke it) */ -#ifdef DEBUG_SRC - Lst cp; /* Debug; children list */ -#endif -} Src; - -/* - * A structure for passing more than one argument to the Lst-library-invoked - * function... - */ -typedef struct { - Lst l; - Src *s; -} LstSrc; - -typedef struct { - GNode **gn; - Suff *s; - Boolean r; -} GNodeSuff; - -static Suff *suffNull; /* The NULL suffix for this run */ -static Suff *emptySuff; /* The empty suffix required for POSIX - * single-suffix transformation rules */ - - -static const char *SuffStrIsPrefix(const char *, const char *); -static char *SuffSuffIsSuffix(const Suff *, const SuffixCmpData *); -static int SuffSuffIsSuffixP(const void *, const void *); -static int SuffSuffHasNameP(const void *, const void *); -static int SuffSuffIsPrefix(const void *, const void *); -static int SuffGNHasNameP(const void *, const void *); -static void SuffUnRef(void *, void *); -static void SuffFree(void *); -static void SuffInsert(Lst, Suff *); -static void SuffRemove(Lst, Suff *); -static Boolean SuffParseTransform(char *, Suff **, Suff **); -static int SuffRebuildGraph(void *, void *); -static int SuffScanTargets(void *, void *); -static int SuffAddSrc(void *, void *); -static int SuffRemoveSrc(Lst); -static void SuffAddLevel(Lst, Src *); -static Src *SuffFindThem(Lst, Lst); -static Src *SuffFindCmds(Src *, Lst); -static void SuffExpandChildren(LstNode, GNode *); -static void SuffExpandWildcards(LstNode, GNode *); -static Boolean SuffApplyTransform(GNode *, GNode *, Suff *, Suff *); -static void SuffFindDeps(GNode *, Lst); -static void SuffFindArchiveDeps(GNode *, Lst); -static void SuffFindNormalDeps(GNode *, Lst); -static int SuffPrintName(void *, void *); -static int SuffPrintSuff(void *, void *); -static int SuffPrintTrans(void *, void *); - - /*************** Lst Predicates ****************/ -/*- - *----------------------------------------------------------------------- - * SuffStrIsPrefix -- - * See if pref is a prefix of str. - * - * Input: - * pref possible prefix - * str string to check - * - * Results: - * NULL if it ain't, pointer to character in str after prefix if so - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -static const char * -SuffStrIsPrefix(const char *pref, const char *str) -{ - while (*str && *pref == *str) { - pref++; - str++; - } - - return (*pref ? NULL : str); -} - -/*- - *----------------------------------------------------------------------- - * SuffSuffIsSuffix -- - * See if suff is a suffix of str. sd->ename should point to THE END - * of the string to check. (THE END == the null byte) - * - * Input: - * s possible suffix - * sd string to examine - * - * Results: - * NULL if it ain't, pointer to character in str before suffix if - * it is. - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -static char * -SuffSuffIsSuffix(const Suff *s, const SuffixCmpData *sd) -{ - char *p1; /* Pointer into suffix name */ - char *p2; /* Pointer into string being examined */ - - if (sd->len < s->nameLen) - return NULL; /* this string is shorter than the suffix */ - - p1 = s->name + s->nameLen; - p2 = sd->ename; - - while (p1 >= s->name && *p1 == *p2) { - p1--; - p2--; - } - - return (p1 == s->name - 1 ? p2 : NULL); -} - -/*- - *----------------------------------------------------------------------- - * SuffSuffIsSuffixP -- - * Predicate form of SuffSuffIsSuffix. Passed as the callback function - * to Lst_Find. - * - * Results: - * 0 if the suffix is the one desired, non-zero if not. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static int -SuffSuffIsSuffixP(const void *s, const void *sd) -{ - return(!SuffSuffIsSuffix(s, sd)); -} - -/*- - *----------------------------------------------------------------------- - * SuffSuffHasNameP -- - * Callback procedure for finding a suffix based on its name. Used by - * Suff_GetPath. - * - * Input: - * s Suffix to check - * sd Desired name - * - * Results: - * 0 if the suffix is of the given name. non-zero otherwise. - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -static int -SuffSuffHasNameP(const void *s, const void *sname) -{ - return (strcmp(sname, ((const Suff *)s)->name)); -} - -/*- - *----------------------------------------------------------------------- - * SuffSuffIsPrefix -- - * See if the suffix described by s is a prefix of the string. Care - * must be taken when using this to search for transformations and - * what-not, since there could well be two suffixes, one of which - * is a prefix of the other... - * - * Input: - * s suffix to compare - * str string to examine - * - * Results: - * 0 if s is a prefix of str. non-zero otherwise - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -static int -SuffSuffIsPrefix(const void *s, const void *str) -{ - return SuffStrIsPrefix(((const Suff *)s)->name, str) == NULL; -} - -/*- - *----------------------------------------------------------------------- - * SuffGNHasNameP -- - * See if the graph node has the desired name - * - * Input: - * gn current node we're looking at - * name name we're looking for - * - * Results: - * 0 if it does. non-zero if it doesn't - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -static int -SuffGNHasNameP(const void *gn, const void *name) -{ - return (strcmp(name, ((const GNode *)gn)->name)); -} - - /*********** Maintenance Functions ************/ - -static void -SuffUnRef(void *lp, void *sp) -{ - Lst l = (Lst) lp; - - LstNode ln = Lst_Member(l, sp); - if (ln != NULL) { - Lst_Remove(l, ln); - ((Suff *)sp)->refCount--; - } -} - -/*- - *----------------------------------------------------------------------- - * SuffFree -- - * Free up all memory associated with the given suffix structure. - * - * Results: - * none - * - * Side Effects: - * the suffix entry is detroyed - *----------------------------------------------------------------------- - */ -static void -SuffFree(void *sp) -{ - Suff *s = (Suff *)sp; - - if (s == suffNull) - suffNull = NULL; - - if (s == emptySuff) - emptySuff = NULL; - -#ifdef notdef - /* We don't delete suffixes in order, so we cannot use this */ - if (s->refCount) - Punt("Internal error deleting suffix `%s' with refcount = %d", s->name, - s->refCount); -#endif - - Lst_Destroy(s->ref, NULL); - Lst_Destroy(s->children, NULL); - Lst_Destroy(s->parents, NULL); - Lst_Destroy(s->searchPath, Dir_Destroy); - - free(s->name); - free(s); -} - -/*- - *----------------------------------------------------------------------- - * SuffRemove -- - * Remove the suffix into the list - * - * Results: - * None - * - * Side Effects: - * The reference count for the suffix is decremented and the - * suffix is possibly freed - *----------------------------------------------------------------------- - */ -static void -SuffRemove(Lst l, Suff *s) -{ - SuffUnRef(l, s); - if (s->refCount == 0) { - SuffUnRef(sufflist, s); - SuffFree(s); - } -} - -/*- - *----------------------------------------------------------------------- - * SuffInsert -- - * Insert the suffix into the list keeping the list ordered by suffix - * numbers. - * - * Input: - * l the list where in s should be inserted - * s the suffix to insert - * - * Results: - * None - * - * Side Effects: - * The reference count of the suffix is incremented - *----------------------------------------------------------------------- - */ -static void -SuffInsert(Lst l, Suff *s) -{ - LstNode ln; /* current element in l we're examining */ - Suff *s2 = NULL; /* the suffix descriptor in this element */ - - if (Lst_Open(l) == FAILURE) { - return; - } - while ((ln = Lst_Next(l)) != NULL) { - s2 = (Suff *)Lst_Datum(ln); - if (s2->sNum >= s->sNum) { - break; - } - } - - Lst_Close(l); - if (DEBUG(SUFF)) { - fprintf(debug_file, "inserting %s(%d)...", s->name, s->sNum); - } - if (ln == NULL) { - if (DEBUG(SUFF)) { - fprintf(debug_file, "at end of list\n"); - } - (void)Lst_AtEnd(l, s); - s->refCount++; - (void)Lst_AtEnd(s->ref, l); - } else if (s2->sNum != s->sNum) { - if (DEBUG(SUFF)) { - fprintf(debug_file, "before %s(%d)\n", s2->name, s2->sNum); - } - (void)Lst_InsertBefore(l, ln, s); - s->refCount++; - (void)Lst_AtEnd(s->ref, l); - } else if (DEBUG(SUFF)) { - fprintf(debug_file, "already there\n"); - } -} - -/*- - *----------------------------------------------------------------------- - * Suff_ClearSuffixes -- - * This is gross. Nuke the list of suffixes but keep all transformation - * rules around. The transformation graph is destroyed in this process, - * but we leave the list of rules so when a new graph is formed the rules - * will remain. - * This function is called from the parse module when a - * .SUFFIXES:\n line is encountered. - * - * Results: - * none - * - * Side Effects: - * the sufflist and its graph nodes are destroyed - *----------------------------------------------------------------------- - */ -void -Suff_ClearSuffixes(void) -{ -#ifdef CLEANUP - Lst_Concat(suffClean, sufflist, LST_CONCLINK); -#endif - sufflist = Lst_Init(FALSE); - sNum = 0; - suffNull = emptySuff; -} - -/*- - *----------------------------------------------------------------------- - * SuffParseTransform -- - * Parse a transformation string to find its two component suffixes. - * - * Input: - * str String being parsed - * srcPtr Place to store source of trans. - * targPtr Place to store target of trans. - * - * Results: - * TRUE if the string is a valid transformation and FALSE otherwise. - * - * Side Effects: - * The passed pointers are overwritten. - * - *----------------------------------------------------------------------- - */ -static Boolean -SuffParseTransform(char *str, Suff **srcPtr, Suff **targPtr) -{ - LstNode srcLn; /* element in suffix list of trans source*/ - Suff *src; /* Source of transformation */ - LstNode targLn; /* element in suffix list of trans target*/ - char *str2; /* Extra pointer (maybe target suffix) */ - LstNode singleLn; /* element in suffix list of any suffix - * that exactly matches str */ - Suff *single = NULL;/* Source of possible transformation to - * null suffix */ - - srcLn = NULL; - singleLn = NULL; - - /* - * Loop looking first for a suffix that matches the start of the - * string and then for one that exactly matches the rest of it. If - * we can find two that meet these criteria, we've successfully - * parsed the string. - */ - for (;;) { - if (srcLn == NULL) { - srcLn = Lst_Find(sufflist, str, SuffSuffIsPrefix); - } else { - srcLn = Lst_FindFrom(sufflist, Lst_Succ(srcLn), str, - SuffSuffIsPrefix); - } - if (srcLn == NULL) { - /* - * Ran out of source suffixes -- no such rule - */ - if (singleLn != NULL) { - /* - * Not so fast Mr. Smith! There was a suffix that encompassed - * the entire string, so we assume it was a transformation - * to the null suffix (thank you POSIX). We still prefer to - * find a double rule over a singleton, hence we leave this - * check until the end. - * - * XXX: Use emptySuff over suffNull? - */ - *srcPtr = single; - *targPtr = suffNull; - return(TRUE); - } - return (FALSE); - } - src = (Suff *)Lst_Datum(srcLn); - str2 = str + src->nameLen; - if (*str2 == '\0') { - single = src; - singleLn = srcLn; - } else { - targLn = Lst_Find(sufflist, str2, SuffSuffHasNameP); - if (targLn != NULL) { - *srcPtr = src; - *targPtr = (Suff *)Lst_Datum(targLn); - return (TRUE); - } - } - } -} - -/*- - *----------------------------------------------------------------------- - * Suff_IsTransform -- - * Return TRUE if the given string is a transformation rule - * - * - * Input: - * str string to check - * - * Results: - * TRUE if the string is a concatenation of two known suffixes. - * FALSE otherwise - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -Boolean -Suff_IsTransform(char *str) -{ - Suff *src, *targ; - - return (SuffParseTransform(str, &src, &targ)); -} - -/*- - *----------------------------------------------------------------------- - * Suff_AddTransform -- - * Add the transformation rule described by the line to the - * list of rules and place the transformation itself in the graph - * - * Input: - * line name of transformation to add - * - * Results: - * The node created for the transformation in the transforms list - * - * Side Effects: - * The node is placed on the end of the transforms Lst and links are - * made between the two suffixes mentioned in the target name - *----------------------------------------------------------------------- - */ -GNode * -Suff_AddTransform(char *line) -{ - GNode *gn; /* GNode of transformation rule */ - Suff *s, /* source suffix */ - *t; /* target suffix */ - LstNode ln; /* Node for existing transformation */ - - ln = Lst_Find(transforms, line, SuffGNHasNameP); - if (ln == NULL) { - /* - * Make a new graph node for the transformation. It will be filled in - * by the Parse module. - */ - gn = Targ_NewGN(line); - (void)Lst_AtEnd(transforms, gn); - } else { - /* - * New specification for transformation rule. Just nuke the old list - * of commands so they can be filled in again... We don't actually - * free the commands themselves, because a given command can be - * attached to several different transformations. - */ - gn = (GNode *)Lst_Datum(ln); - Lst_Destroy(gn->commands, NULL); - Lst_Destroy(gn->children, NULL); - gn->commands = Lst_Init(FALSE); - gn->children = Lst_Init(FALSE); - } - - gn->type = OP_TRANSFORM; - - (void)SuffParseTransform(line, &s, &t); - - /* - * link the two together in the proper relationship and order - */ - if (DEBUG(SUFF)) { - fprintf(debug_file, "defining transformation from `%s' to `%s'\n", - s->name, t->name); - } - SuffInsert(t->children, s); - SuffInsert(s->parents, t); - - return (gn); -} - -/*- - *----------------------------------------------------------------------- - * Suff_EndTransform -- - * Handle the finish of a transformation definition, removing the - * transformation from the graph if it has neither commands nor - * sources. This is a callback procedure for the Parse module via - * Lst_ForEach - * - * Input: - * gnp Node for transformation - * dummy Node for transformation - * - * Results: - * === 0 - * - * Side Effects: - * If the node has no commands or children, the children and parents - * lists of the affected suffixes are altered. - * - *----------------------------------------------------------------------- - */ -int -Suff_EndTransform(void *gnp, void *dummy) -{ - GNode *gn = (GNode *)gnp; - - if ((gn->type & OP_DOUBLEDEP) && !Lst_IsEmpty (gn->cohorts)) - gn = (GNode *)Lst_Datum(Lst_Last(gn->cohorts)); - if ((gn->type & OP_TRANSFORM) && Lst_IsEmpty(gn->commands) && - Lst_IsEmpty(gn->children)) - { - Suff *s, *t; - - /* - * SuffParseTransform() may fail for special rules which are not - * actual transformation rules. (e.g. .DEFAULT) - */ - if (SuffParseTransform(gn->name, &s, &t)) { - Lst p; - - if (DEBUG(SUFF)) { - fprintf(debug_file, "deleting transformation from `%s' to `%s'\n", - s->name, t->name); - } - - /* - * Store s->parents because s could be deleted in SuffRemove - */ - p = s->parents; - - /* - * Remove the source from the target's children list. We check for a - * nil return to handle a beanhead saying something like - * .c.o .c.o: - * - * We'll be called twice when the next target is seen, but .c and .o - * are only linked once... - */ - SuffRemove(t->children, s); - - /* - * Remove the target from the source's parents list - */ - SuffRemove(p, t); - } - } else if ((gn->type & OP_TRANSFORM) && DEBUG(SUFF)) { - fprintf(debug_file, "transformation %s complete\n", gn->name); - } - - return(dummy ? 0 : 0); -} - -/*- - *----------------------------------------------------------------------- - * SuffRebuildGraph -- - * Called from Suff_AddSuffix via Lst_ForEach to search through the - * list of existing transformation rules and rebuild the transformation - * graph when it has been destroyed by Suff_ClearSuffixes. If the - * given rule is a transformation involving this suffix and another, - * existing suffix, the proper relationship is established between - * the two. - * - * Input: - * transformp Transformation to test - * sp Suffix to rebuild - * - * Results: - * Always 0. - * - * Side Effects: - * The appropriate links will be made between this suffix and - * others if transformation rules exist for it. - * - *----------------------------------------------------------------------- - */ -static int -SuffRebuildGraph(void *transformp, void *sp) -{ - GNode *transform = (GNode *)transformp; - Suff *s = (Suff *)sp; - char *cp; - LstNode ln; - Suff *s2; - SuffixCmpData sd; - - /* - * First see if it is a transformation from this suffix. - */ - cp = UNCONST(SuffStrIsPrefix(s->name, transform->name)); - if (cp != NULL) { - ln = Lst_Find(sufflist, cp, SuffSuffHasNameP); - if (ln != NULL) { - /* - * Found target. Link in and return, since it can't be anything - * else. - */ - s2 = (Suff *)Lst_Datum(ln); - SuffInsert(s2->children, s); - SuffInsert(s->parents, s2); - return(0); - } - } - - /* - * Not from, maybe to? - */ - sd.len = strlen(transform->name); - sd.ename = transform->name + sd.len; - cp = SuffSuffIsSuffix(s, &sd); - if (cp != NULL) { - /* - * Null-terminate the source suffix in order to find it. - */ - cp[1] = '\0'; - ln = Lst_Find(sufflist, transform->name, SuffSuffHasNameP); - /* - * Replace the start of the target suffix - */ - cp[1] = s->name[0]; - if (ln != NULL) { - /* - * Found it -- establish the proper relationship - */ - s2 = (Suff *)Lst_Datum(ln); - SuffInsert(s->children, s2); - SuffInsert(s2->parents, s); - } - } - return(0); -} - -/*- - *----------------------------------------------------------------------- - * SuffScanTargets -- - * Called from Suff_AddSuffix via Lst_ForEach to search through the - * list of existing targets and find if any of the existing targets - * can be turned into a transformation rule. - * - * Results: - * 1 if a new main target has been selected, 0 otherwise. - * - * Side Effects: - * If such a target is found and the target is the current main - * target, the main target is set to NULL and the next target - * examined (if that exists) becomes the main target. - * - *----------------------------------------------------------------------- - */ -static int -SuffScanTargets(void *targetp, void *gsp) -{ - GNode *target = (GNode *)targetp; - GNodeSuff *gs = (GNodeSuff *)gsp; - Suff *s, *t; - char *ptr; - - if (*gs->gn == NULL && gs->r && (target->type & OP_NOTARGET) == 0) { - *gs->gn = target; - Targ_SetMain(target); - return 1; - } - - if ((unsigned int)target->type == OP_TRANSFORM) - return 0; - - if ((ptr = strstr(target->name, gs->s->name)) == NULL || - ptr == target->name) - return 0; - - if (SuffParseTransform(target->name, &s, &t)) { - if (*gs->gn == target) { - gs->r = TRUE; - *gs->gn = NULL; - Targ_SetMain(NULL); - } - Lst_Destroy(target->children, NULL); - target->children = Lst_Init(FALSE); - target->type = OP_TRANSFORM; - /* - * link the two together in the proper relationship and order - */ - if (DEBUG(SUFF)) { - fprintf(debug_file, "defining transformation from `%s' to `%s'\n", - s->name, t->name); - } - SuffInsert(t->children, s); - SuffInsert(s->parents, t); - } - return 0; -} - -/*- - *----------------------------------------------------------------------- - * Suff_AddSuffix -- - * Add the suffix in string to the end of the list of known suffixes. - * Should we restructure the suffix graph? Make doesn't... - * - * Input: - * str the name of the suffix to add - * - * Results: - * None - * - * Side Effects: - * A GNode is created for the suffix and a Suff structure is created and - * added to the suffixes list unless the suffix was already known. - * The mainNode passed can be modified if a target mutated into a - * transform and that target happened to be the main target. - *----------------------------------------------------------------------- - */ -void -Suff_AddSuffix(char *str, GNode **gn) -{ - Suff *s; /* new suffix descriptor */ - LstNode ln; - GNodeSuff gs; - - ln = Lst_Find(sufflist, str, SuffSuffHasNameP); - if (ln == NULL) { - s = bmake_malloc(sizeof(Suff)); - - s->name = bmake_strdup(str); - s->nameLen = strlen(s->name); - s->searchPath = Lst_Init(FALSE); - s->children = Lst_Init(FALSE); - s->parents = Lst_Init(FALSE); - s->ref = Lst_Init(FALSE); - s->sNum = sNum++; - s->flags = 0; - s->refCount = 1; - - (void)Lst_AtEnd(sufflist, s); - /* - * We also look at our existing targets list to see if adding - * this suffix will make one of our current targets mutate into - * a suffix rule. This is ugly, but other makes treat all targets - * that start with a . as suffix rules. - */ - gs.gn = gn; - gs.s = s; - gs.r = FALSE; - Lst_ForEach(Targ_List(), SuffScanTargets, &gs); - /* - * Look for any existing transformations from or to this suffix. - * XXX: Only do this after a Suff_ClearSuffixes? - */ - Lst_ForEach(transforms, SuffRebuildGraph, s); - } -} - -/*- - *----------------------------------------------------------------------- - * Suff_GetPath -- - * Return the search path for the given suffix, if it's defined. - * - * Results: - * The searchPath for the desired suffix or NULL if the suffix isn't - * defined. - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -Lst -Suff_GetPath(char *sname) -{ - LstNode ln; - Suff *s; - - ln = Lst_Find(sufflist, sname, SuffSuffHasNameP); - if (ln == NULL) { - return NULL; - } else { - s = (Suff *)Lst_Datum(ln); - return (s->searchPath); - } -} - -/*- - *----------------------------------------------------------------------- - * Suff_DoPaths -- - * Extend the search paths for all suffixes to include the default - * search path. - * - * Results: - * None. - * - * Side Effects: - * The searchPath field of all the suffixes is extended by the - * directories in dirSearchPath. If paths were specified for the - * ".h" suffix, the directories are stuffed into a global variable - * called ".INCLUDES" with each directory preceded by a -I. The same - * is done for the ".a" suffix, except the variable is called - * ".LIBS" and the flag is -L. - *----------------------------------------------------------------------- - */ -void -Suff_DoPaths(void) -{ - Suff *s; - LstNode ln; - char *ptr; - Lst inIncludes; /* Cumulative .INCLUDES path */ - Lst inLibs; /* Cumulative .LIBS path */ - - if (Lst_Open(sufflist) == FAILURE) { - return; - } - - inIncludes = Lst_Init(FALSE); - inLibs = Lst_Init(FALSE); - - while ((ln = Lst_Next(sufflist)) != NULL) { - s = (Suff *)Lst_Datum(ln); - if (!Lst_IsEmpty (s->searchPath)) { -#ifdef INCLUDES - if (s->flags & SUFF_INCLUDE) { - Dir_Concat(inIncludes, s->searchPath); - } -#endif /* INCLUDES */ -#ifdef LIBRARIES - if (s->flags & SUFF_LIBRARY) { - Dir_Concat(inLibs, s->searchPath); - } -#endif /* LIBRARIES */ - Dir_Concat(s->searchPath, dirSearchPath); - } else { - Lst_Destroy(s->searchPath, Dir_Destroy); - s->searchPath = Lst_Duplicate(dirSearchPath, Dir_CopyDir); - } - } - - Var_Set(".INCLUDES", ptr = Dir_MakeFlags("-I", inIncludes), VAR_GLOBAL, 0); - free(ptr); - Var_Set(".LIBS", ptr = Dir_MakeFlags("-L", inLibs), VAR_GLOBAL, 0); - free(ptr); - - Lst_Destroy(inIncludes, Dir_Destroy); - Lst_Destroy(inLibs, Dir_Destroy); - - Lst_Close(sufflist); -} - -/*- - *----------------------------------------------------------------------- - * Suff_AddInclude -- - * Add the given suffix as a type of file which gets included. - * Called from the parse module when a .INCLUDES line is parsed. - * The suffix must have already been defined. - * - * Input: - * sname Name of the suffix to mark - * - * Results: - * None. - * - * Side Effects: - * The SUFF_INCLUDE bit is set in the suffix's flags field - * - *----------------------------------------------------------------------- - */ -void -Suff_AddInclude(char *sname) -{ - LstNode ln; - Suff *s; - - ln = Lst_Find(sufflist, sname, SuffSuffHasNameP); - if (ln != NULL) { - s = (Suff *)Lst_Datum(ln); - s->flags |= SUFF_INCLUDE; - } -} - -/*- - *----------------------------------------------------------------------- - * Suff_AddLib -- - * Add the given suffix as a type of file which is a library. - * Called from the parse module when parsing a .LIBS line. The - * suffix must have been defined via .SUFFIXES before this is - * called. - * - * Input: - * sname Name of the suffix to mark - * - * Results: - * None. - * - * Side Effects: - * The SUFF_LIBRARY bit is set in the suffix's flags field - * - *----------------------------------------------------------------------- - */ -void -Suff_AddLib(char *sname) -{ - LstNode ln; - Suff *s; - - ln = Lst_Find(sufflist, sname, SuffSuffHasNameP); - if (ln != NULL) { - s = (Suff *)Lst_Datum(ln); - s->flags |= SUFF_LIBRARY; - } -} - - /********** Implicit Source Search Functions *********/ - -/*- - *----------------------------------------------------------------------- - * SuffAddSrc -- - * Add a suffix as a Src structure to the given list with its parent - * being the given Src structure. If the suffix is the null suffix, - * the prefix is used unaltered as the file name in the Src structure. - * - * Input: - * sp suffix for which to create a Src structure - * lsp list and parent for the new Src - * - * Results: - * always returns 0 - * - * Side Effects: - * A Src structure is created and tacked onto the end of the list - *----------------------------------------------------------------------- - */ -static int -SuffAddSrc(void *sp, void *lsp) -{ - Suff *s = (Suff *)sp; - LstSrc *ls = (LstSrc *)lsp; - Src *s2; /* new Src structure */ - Src *targ; /* Target structure */ - - targ = ls->s; - - if ((s->flags & SUFF_NULL) && (*s->name != '\0')) { - /* - * If the suffix has been marked as the NULL suffix, also create a Src - * structure for a file with no suffix attached. Two birds, and all - * that... - */ - s2 = bmake_malloc(sizeof(Src)); - s2->file = bmake_strdup(targ->pref); - s2->pref = targ->pref; - s2->parent = targ; - s2->node = NULL; - s2->suff = s; - s->refCount++; - s2->children = 0; - targ->children += 1; - (void)Lst_AtEnd(ls->l, s2); -#ifdef DEBUG_SRC - s2->cp = Lst_Init(FALSE); - Lst_AtEnd(targ->cp, s2); - fprintf(debug_file, "1 add %x %x to %x:", targ, s2, ls->l); - Lst_ForEach(ls->l, PrintAddr, NULL); - fprintf(debug_file, "\n"); -#endif - } - s2 = bmake_malloc(sizeof(Src)); - s2->file = str_concat(targ->pref, s->name, 0); - s2->pref = targ->pref; - s2->parent = targ; - s2->node = NULL; - s2->suff = s; - s->refCount++; - s2->children = 0; - targ->children += 1; - (void)Lst_AtEnd(ls->l, s2); -#ifdef DEBUG_SRC - s2->cp = Lst_Init(FALSE); - Lst_AtEnd(targ->cp, s2); - fprintf(debug_file, "2 add %x %x to %x:", targ, s2, ls->l); - Lst_ForEach(ls->l, PrintAddr, NULL); - fprintf(debug_file, "\n"); -#endif - - return(0); -} - -/*- - *----------------------------------------------------------------------- - * SuffAddLevel -- - * Add all the children of targ as Src structures to the given list - * - * Input: - * l list to which to add the new level - * targ Src structure to use as the parent - * - * Results: - * None - * - * Side Effects: - * Lots of structures are created and added to the list - *----------------------------------------------------------------------- - */ -static void -SuffAddLevel(Lst l, Src *targ) -{ - LstSrc ls; - - ls.s = targ; - ls.l = l; - - Lst_ForEach(targ->suff->children, SuffAddSrc, &ls); -} - -/*- - *---------------------------------------------------------------------- - * SuffRemoveSrc -- - * Free all src structures in list that don't have a reference count - * - * Results: - * Ture if an src was removed - * - * Side Effects: - * The memory is free'd. - *---------------------------------------------------------------------- - */ -static int -SuffRemoveSrc(Lst l) -{ - LstNode ln; - Src *s; - int t = 0; - - if (Lst_Open(l) == FAILURE) { - return 0; - } -#ifdef DEBUG_SRC - fprintf(debug_file, "cleaning %lx: ", (unsigned long) l); - Lst_ForEach(l, PrintAddr, NULL); - fprintf(debug_file, "\n"); -#endif - - - while ((ln = Lst_Next(l)) != NULL) { - s = (Src *)Lst_Datum(ln); - if (s->children == 0) { - free(s->file); - if (!s->parent) - free(s->pref); - else { -#ifdef DEBUG_SRC - LstNode ln = Lst_Member(s->parent->cp, s); - if (ln != NULL) - Lst_Remove(s->parent->cp, ln); -#endif - --s->parent->children; - } -#ifdef DEBUG_SRC - fprintf(debug_file, "free: [l=%x] p=%x %d\n", l, s, s->children); - Lst_Destroy(s->cp, NULL); -#endif - Lst_Remove(l, ln); - free(s); - t |= 1; - Lst_Close(l); - return TRUE; - } -#ifdef DEBUG_SRC - else { - fprintf(debug_file, "keep: [l=%x] p=%x %d: ", l, s, s->children); - Lst_ForEach(s->cp, PrintAddr, NULL); - fprintf(debug_file, "\n"); - } -#endif - } - - Lst_Close(l); - - return t; -} - -/*- - *----------------------------------------------------------------------- - * SuffFindThem -- - * Find the first existing file/target in the list srcs - * - * Input: - * srcs list of Src structures to search through - * - * Results: - * The lowest structure in the chain of transformations - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -static Src * -SuffFindThem(Lst srcs, Lst slst) -{ - Src *s; /* current Src */ - Src *rs; /* returned Src */ - char *ptr; - - rs = NULL; - - while (!Lst_IsEmpty (srcs)) { - s = (Src *)Lst_DeQueue(srcs); - - if (DEBUG(SUFF)) { - fprintf(debug_file, "\ttrying %s...", s->file); - } - - /* - * A file is considered to exist if either a node exists in the - * graph for it or the file actually exists. - */ - if (Targ_FindNode(s->file, TARG_NOCREATE) != NULL) { -#ifdef DEBUG_SRC - fprintf(debug_file, "remove %x from %x\n", s, srcs); -#endif - rs = s; - break; - } - - if ((ptr = Dir_FindFile(s->file, s->suff->searchPath)) != NULL) { - rs = s; -#ifdef DEBUG_SRC - fprintf(debug_file, "remove %x from %x\n", s, srcs); -#endif - free(ptr); - break; - } - - if (DEBUG(SUFF)) { - fprintf(debug_file, "not there\n"); - } - - SuffAddLevel(srcs, s); - Lst_AtEnd(slst, s); - } - - if (DEBUG(SUFF) && rs) { - fprintf(debug_file, "got it\n"); - } - return (rs); -} - -/*- - *----------------------------------------------------------------------- - * SuffFindCmds -- - * See if any of the children of the target in the Src structure is - * one from which the target can be transformed. If there is one, - * a Src structure is put together for it and returned. - * - * Input: - * targ Src structure to play with - * - * Results: - * The Src structure of the "winning" child, or NULL if no such beast. - * - * Side Effects: - * A Src structure may be allocated. - * - *----------------------------------------------------------------------- - */ -static Src * -SuffFindCmds(Src *targ, Lst slst) -{ - LstNode ln; /* General-purpose list node */ - GNode *t, /* Target GNode */ - *s; /* Source GNode */ - int prefLen;/* The length of the defined prefix */ - Suff *suff; /* Suffix on matching beastie */ - Src *ret; /* Return value */ - char *cp; - - t = targ->node; - (void)Lst_Open(t->children); - prefLen = strlen(targ->pref); - - for (;;) { - ln = Lst_Next(t->children); - if (ln == NULL) { - Lst_Close(t->children); - return NULL; - } - s = (GNode *)Lst_Datum(ln); - - if (s->type & OP_OPTIONAL && Lst_IsEmpty(t->commands)) { - /* - * We haven't looked to see if .OPTIONAL files exist yet, so - * don't use one as the implicit source. - * This allows us to use .OPTIONAL in .depend files so make won't - * complain "don't know how to make xxx.h' when a dependent file - * has been moved/deleted. - */ - continue; - } - - cp = strrchr(s->name, '/'); - if (cp == NULL) { - cp = s->name; - } else { - cp++; - } - if (strncmp(cp, targ->pref, prefLen) != 0) - continue; - /* - * The node matches the prefix ok, see if it has a known - * suffix. - */ - ln = Lst_Find(sufflist, &cp[prefLen], SuffSuffHasNameP); - if (ln == NULL) - continue; - /* - * It even has a known suffix, see if there's a transformation - * defined between the node's suffix and the target's suffix. - * - * XXX: Handle multi-stage transformations here, too. - */ - suff = (Suff *)Lst_Datum(ln); - - if (Lst_Member(suff->parents, targ->suff) != NULL) - break; - } - - /* - * Hot Damn! Create a new Src structure to describe - * this transformation (making sure to duplicate the - * source node's name so Suff_FindDeps can free it - * again (ick)), and return the new structure. - */ - ret = bmake_malloc(sizeof(Src)); - ret->file = bmake_strdup(s->name); - ret->pref = targ->pref; - ret->suff = suff; - suff->refCount++; - ret->parent = targ; - ret->node = s; - ret->children = 0; - targ->children += 1; -#ifdef DEBUG_SRC - ret->cp = Lst_Init(FALSE); - fprintf(debug_file, "3 add %x %x\n", targ, ret); - Lst_AtEnd(targ->cp, ret); -#endif - Lst_AtEnd(slst, ret); - if (DEBUG(SUFF)) { - fprintf(debug_file, "\tusing existing source %s\n", s->name); - } - return (ret); -} - -/*- - *----------------------------------------------------------------------- - * SuffExpandChildren -- - * Expand the names of any children of a given node that contain - * variable invocations or file wildcards into actual targets. - * - * Input: - * cln Child to examine - * pgn Parent node being processed - * - * Results: - * === 0 (continue) - * - * Side Effects: - * The expanded node is removed from the parent's list of children, - * and the parent's unmade counter is decremented, but other nodes - * may be added. - * - *----------------------------------------------------------------------- - */ -static void -SuffExpandChildren(LstNode cln, GNode *pgn) -{ - GNode *cgn = (GNode *)Lst_Datum(cln); - GNode *gn; /* New source 8) */ - char *cp; /* Expanded value */ - - if (!Lst_IsEmpty(cgn->order_pred) || !Lst_IsEmpty(cgn->order_succ)) - /* It is all too hard to process the result of .ORDER */ - return; - - if (cgn->type & OP_WAIT) - /* Ignore these (& OP_PHONY ?) */ - return; - - /* - * First do variable expansion -- this takes precedence over - * wildcard expansion. If the result contains wildcards, they'll be gotten - * to later since the resulting words are tacked on to the end of - * the children list. - */ - if (strchr(cgn->name, '$') == NULL) { - SuffExpandWildcards(cln, pgn); - return; - } - - if (DEBUG(SUFF)) { - fprintf(debug_file, "Expanding \"%s\"...", cgn->name); - } - cp = Var_Subst(NULL, cgn->name, pgn, TRUE); - - if (cp != NULL) { - Lst members = Lst_Init(FALSE); - - if (cgn->type & OP_ARCHV) { - /* - * Node was an archive(member) target, so we want to call - * on the Arch module to find the nodes for us, expanding - * variables in the parent's context. - */ - char *sacrifice = cp; - - (void)Arch_ParseArchive(&sacrifice, members, pgn); - } else { - /* - * Break the result into a vector of strings whose nodes - * we can find, then add those nodes to the members list. - * Unfortunately, we can't use brk_string b/c it - * doesn't understand about variable specifications with - * spaces in them... - */ - char *start; - char *initcp = cp; /* For freeing... */ - - for (start = cp; *start == ' ' || *start == '\t'; start++) - continue; - for (cp = start; *cp != '\0'; cp++) { - if (*cp == ' ' || *cp == '\t') { - /* - * White-space -- terminate element, find the node, - * add it, skip any further spaces. - */ - *cp++ = '\0'; - gn = Targ_FindNode(start, TARG_CREATE); - (void)Lst_AtEnd(members, gn); - while (*cp == ' ' || *cp == '\t') { - cp++; - } - /* - * Adjust cp for increment at start of loop, but - * set start to first non-space. - */ - start = cp--; - } else if (*cp == '$') { - /* - * Start of a variable spec -- contact variable module - * to find the end so we can skip over it. - */ - char *junk; - int len; - void *freeIt; - - junk = Var_Parse(cp, pgn, TRUE, &len, &freeIt); - if (junk != var_Error) { - cp += len - 1; - } - - if (freeIt) - free(freeIt); - } else if (*cp == '\\' && *cp != '\0') { - /* - * Escaped something -- skip over it - */ - cp++; - } - } - - if (cp != start) { - /* - * Stuff left over -- add it to the list too - */ - gn = Targ_FindNode(start, TARG_CREATE); - (void)Lst_AtEnd(members, gn); - } - /* - * Point cp back at the beginning again so the variable value - * can be freed. - */ - cp = initcp; - } - - /* - * Add all elements of the members list to the parent node. - */ - while(!Lst_IsEmpty(members)) { - gn = (GNode *)Lst_DeQueue(members); - - if (DEBUG(SUFF)) { - fprintf(debug_file, "%s...", gn->name); - } - /* Add gn to the parents child list before the original child */ - (void)Lst_InsertBefore(pgn->children, cln, gn); - (void)Lst_AtEnd(gn->parents, pgn); - pgn->unmade++; - /* Expand wildcards on new node */ - SuffExpandWildcards(Lst_Prev(cln), pgn); - } - Lst_Destroy(members, NULL); - - /* - * Free the result - */ - free(cp); - } - if (DEBUG(SUFF)) { - fprintf(debug_file, "\n"); - } - - /* - * Now the source is expanded, remove it from the list of children to - * keep it from being processed. - */ - pgn->unmade--; - Lst_Remove(pgn->children, cln); - Lst_Remove(cgn->parents, Lst_Member(cgn->parents, pgn)); -} - -static void -SuffExpandWildcards(LstNode cln, GNode *pgn) -{ - GNode *cgn = (GNode *)Lst_Datum(cln); - GNode *gn; /* New source 8) */ - char *cp; /* Expanded value */ - Lst explist; /* List of expansions */ - - if (!Dir_HasWildcards(cgn->name)) - return; - - /* - * Expand the word along the chosen path - */ - explist = Lst_Init(FALSE); - Dir_Expand(cgn->name, Suff_FindPath(cgn), explist); - - while (!Lst_IsEmpty(explist)) { - /* - * Fetch next expansion off the list and find its GNode - */ - cp = (char *)Lst_DeQueue(explist); - - if (DEBUG(SUFF)) { - fprintf(debug_file, "%s...", cp); - } - gn = Targ_FindNode(cp, TARG_CREATE); - - /* Add gn to the parents child list before the original child */ - (void)Lst_InsertBefore(pgn->children, cln, gn); - (void)Lst_AtEnd(gn->parents, pgn); - pgn->unmade++; - } - - /* - * Nuke what's left of the list - */ - Lst_Destroy(explist, NULL); - - if (DEBUG(SUFF)) { - fprintf(debug_file, "\n"); - } - - /* - * Now the source is expanded, remove it from the list of children to - * keep it from being processed. - */ - pgn->unmade--; - Lst_Remove(pgn->children, cln); - Lst_Remove(cgn->parents, Lst_Member(cgn->parents, pgn)); -} - -/*- - *----------------------------------------------------------------------- - * Suff_FindPath -- - * Find a path along which to expand the node. - * - * If the word has a known suffix, use that path. - * If it has no known suffix, use the default system search path. - * - * Input: - * gn Node being examined - * - * Results: - * The appropriate path to search for the GNode. - * - * Side Effects: - * XXX: We could set the suffix here so that we don't have to scan - * again. - * - *----------------------------------------------------------------------- - */ -Lst -Suff_FindPath(GNode* gn) -{ - Suff *suff = gn->suffix; - - if (suff == NULL) { - SuffixCmpData sd; /* Search string data */ - LstNode ln; - sd.len = strlen(gn->name); - sd.ename = gn->name + sd.len; - ln = Lst_Find(sufflist, &sd, SuffSuffIsSuffixP); - - if (DEBUG(SUFF)) { - fprintf(debug_file, "Wildcard expanding \"%s\"...", gn->name); - } - if (ln != NULL) - suff = (Suff *)Lst_Datum(ln); - /* XXX: Here we can save the suffix so we don't have to do this again */ - } - - if (suff != NULL) { - if (DEBUG(SUFF)) { - fprintf(debug_file, "suffix is \"%s\"...", suff->name); - } - return suff->searchPath; - } else { - /* - * Use default search path - */ - return dirSearchPath; - } -} - -/*- - *----------------------------------------------------------------------- - * SuffApplyTransform -- - * Apply a transformation rule, given the source and target nodes - * and suffixes. - * - * Input: - * tGn Target node - * sGn Source node - * t Target suffix - * s Source suffix - * - * Results: - * TRUE if successful, FALSE if not. - * - * Side Effects: - * The source and target are linked and the commands from the - * transformation are added to the target node's commands list. - * All attributes but OP_DEPMASK and OP_TRANSFORM are applied - * to the target. The target also inherits all the sources for - * the transformation rule. - * - *----------------------------------------------------------------------- - */ -static Boolean -SuffApplyTransform(GNode *tGn, GNode *sGn, Suff *t, Suff *s) -{ - LstNode ln, nln; /* General node */ - char *tname; /* Name of transformation rule */ - GNode *gn; /* Node for same */ - - /* - * Form the proper links between the target and source. - */ - (void)Lst_AtEnd(tGn->children, sGn); - (void)Lst_AtEnd(sGn->parents, tGn); - tGn->unmade += 1; - - /* - * Locate the transformation rule itself - */ - tname = str_concat(s->name, t->name, 0); - ln = Lst_Find(transforms, tname, SuffGNHasNameP); - free(tname); - - if (ln == NULL) { - /* - * Not really such a transformation rule (can happen when we're - * called to link an OP_MEMBER and OP_ARCHV node), so return - * FALSE. - */ - return(FALSE); - } - - gn = (GNode *)Lst_Datum(ln); - - if (DEBUG(SUFF)) { - fprintf(debug_file, "\tapplying %s -> %s to \"%s\"\n", s->name, t->name, tGn->name); - } - - /* - * Record last child for expansion purposes - */ - ln = Lst_Last(tGn->children); - - /* - * Pass the buck to Make_HandleUse to apply the rule - */ - (void)Make_HandleUse(gn, tGn); - - /* - * Deal with wildcards and variables in any acquired sources - */ - for (ln = Lst_Succ(ln); ln != NULL; ln = nln) { - nln = Lst_Succ(ln); - SuffExpandChildren(ln, tGn); - } - - /* - * Keep track of another parent to which this beast is transformed so - * the .IMPSRC variable can be set correctly for the parent. - */ - (void)Lst_AtEnd(sGn->iParents, tGn); - - return(TRUE); -} - - -/*- - *----------------------------------------------------------------------- - * SuffFindArchiveDeps -- - * Locate dependencies for an OP_ARCHV node. - * - * Input: - * gn Node for which to locate dependencies - * - * Results: - * None - * - * Side Effects: - * Same as Suff_FindDeps - * - *----------------------------------------------------------------------- - */ -static void -SuffFindArchiveDeps(GNode *gn, Lst slst) -{ - char *eoarch; /* End of archive portion */ - char *eoname; /* End of member portion */ - GNode *mem; /* Node for member */ - static const char *copy[] = { - /* Variables to be copied from the member node */ - TARGET, /* Must be first */ - PREFIX, /* Must be second */ - }; - int i; /* Index into copy and vals */ - Suff *ms; /* Suffix descriptor for member */ - char *name; /* Start of member's name */ - - /* - * The node is an archive(member) pair. so we must find a - * suffix for both of them. - */ - eoarch = strchr(gn->name, '('); - eoname = strchr(eoarch, ')'); - - *eoname = '\0'; /* Nuke parentheses during suffix search */ - *eoarch = '\0'; /* So a suffix can be found */ - - name = eoarch + 1; - - /* - * To simplify things, call Suff_FindDeps recursively on the member now, - * so we can simply compare the member's .PREFIX and .TARGET variables - * to locate its suffix. This allows us to figure out the suffix to - * use for the archive without having to do a quadratic search over the - * suffix list, backtracking for each one... - */ - mem = Targ_FindNode(name, TARG_CREATE); - SuffFindDeps(mem, slst); - - /* - * Create the link between the two nodes right off - */ - (void)Lst_AtEnd(gn->children, mem); - (void)Lst_AtEnd(mem->parents, gn); - gn->unmade += 1; - - /* - * Copy in the variables from the member node to this one. - */ - for (i = (sizeof(copy)/sizeof(copy[0]))-1; i >= 0; i--) { - char *p1; - Var_Set(copy[i], Var_Value(copy[i], mem, &p1), gn, 0); - if (p1) - free(p1); - - } - - ms = mem->suffix; - if (ms == NULL) { - /* - * Didn't know what it was -- use .NULL suffix if not in make mode - */ - if (DEBUG(SUFF)) { - fprintf(debug_file, "using null suffix\n"); - } - ms = suffNull; - } - - - /* - * Set the other two local variables required for this target. - */ - Var_Set(MEMBER, name, gn, 0); - Var_Set(ARCHIVE, gn->name, gn, 0); - - if (ms != NULL) { - /* - * Member has a known suffix, so look for a transformation rule from - * it to a possible suffix of the archive. Rather than searching - * through the entire list, we just look at suffixes to which the - * member's suffix may be transformed... - */ - LstNode ln; - SuffixCmpData sd; /* Search string data */ - - /* - * Use first matching suffix... - */ - sd.len = eoarch - gn->name; - sd.ename = eoarch; - ln = Lst_Find(ms->parents, &sd, SuffSuffIsSuffixP); - - if (ln != NULL) { - /* - * Got one -- apply it - */ - if (!SuffApplyTransform(gn, mem, (Suff *)Lst_Datum(ln), ms) && - DEBUG(SUFF)) - { - fprintf(debug_file, "\tNo transformation from %s -> %s\n", - ms->name, ((Suff *)Lst_Datum(ln))->name); - } - } - } - - /* - * Replace the opening and closing parens now we've no need of the separate - * pieces. - */ - *eoarch = '('; *eoname = ')'; - - /* - * Pretend gn appeared to the left of a dependency operator so - * the user needn't provide a transformation from the member to the - * archive. - */ - if (OP_NOP(gn->type)) { - gn->type |= OP_DEPENDS; - } - - /* - * Flag the member as such so we remember to look in the archive for - * its modification time. - */ - mem->type |= OP_MEMBER; -} - -/*- - *----------------------------------------------------------------------- - * SuffFindNormalDeps -- - * Locate implicit dependencies for regular targets. - * - * Input: - * gn Node for which to find sources - * - * Results: - * None. - * - * Side Effects: - * Same as Suff_FindDeps... - * - *----------------------------------------------------------------------- - */ -static void -SuffFindNormalDeps(GNode *gn, Lst slst) -{ - char *eoname; /* End of name */ - char *sopref; /* Start of prefix */ - LstNode ln, nln; /* Next suffix node to check */ - Lst srcs; /* List of sources at which to look */ - Lst targs; /* List of targets to which things can be - * transformed. They all have the same file, - * but different suff and pref fields */ - Src *bottom; /* Start of found transformation path */ - Src *src; /* General Src pointer */ - char *pref; /* Prefix to use */ - Src *targ; /* General Src target pointer */ - SuffixCmpData sd; /* Search string data */ - - - sd.len = strlen(gn->name); - sd.ename = eoname = gn->name + sd.len; - - sopref = gn->name; - - /* - * Begin at the beginning... - */ - ln = Lst_First(sufflist); - srcs = Lst_Init(FALSE); - targs = Lst_Init(FALSE); - - /* - * We're caught in a catch-22 here. On the one hand, we want to use any - * transformation implied by the target's sources, but we can't examine - * the sources until we've expanded any variables/wildcards they may hold, - * and we can't do that until we've set up the target's local variables - * and we can't do that until we know what the proper suffix for the - * target is (in case there are two suffixes one of which is a suffix of - * the other) and we can't know that until we've found its implied - * source, which we may not want to use if there's an existing source - * that implies a different transformation. - * - * In an attempt to get around this, which may not work all the time, - * but should work most of the time, we look for implied sources first, - * checking transformations to all possible suffixes of the target, - * use what we find to set the target's local variables, expand the - * children, then look for any overriding transformations they imply. - * Should we find one, we discard the one we found before. - */ - - while (ln != NULL) { - /* - * Look for next possible suffix... - */ - ln = Lst_FindFrom(sufflist, ln, &sd, SuffSuffIsSuffixP); - - if (ln != NULL) { - int prefLen; /* Length of the prefix */ - - /* - * Allocate a Src structure to which things can be transformed - */ - targ = bmake_malloc(sizeof(Src)); - targ->file = bmake_strdup(gn->name); - targ->suff = (Suff *)Lst_Datum(ln); - targ->suff->refCount++; - targ->node = gn; - targ->parent = NULL; - targ->children = 0; -#ifdef DEBUG_SRC - targ->cp = Lst_Init(FALSE); -#endif - - /* - * Allocate room for the prefix, whose end is found by subtracting - * the length of the suffix from the end of the name. - */ - prefLen = (eoname - targ->suff->nameLen) - sopref; - targ->pref = bmake_malloc(prefLen + 1); - memcpy(targ->pref, sopref, prefLen); - targ->pref[prefLen] = '\0'; - - /* - * Add nodes from which the target can be made - */ - SuffAddLevel(srcs, targ); - - /* - * Record the target so we can nuke it - */ - (void)Lst_AtEnd(targs, targ); - - /* - * Search from this suffix's successor... - */ - ln = Lst_Succ(ln); - } - } - - /* - * Handle target of unknown suffix... - */ - if (Lst_IsEmpty(targs) && suffNull != NULL) { - if (DEBUG(SUFF)) { - fprintf(debug_file, "\tNo known suffix on %s. Using .NULL suffix\n", gn->name); - } - - targ = bmake_malloc(sizeof(Src)); - targ->file = bmake_strdup(gn->name); - targ->suff = suffNull; - targ->suff->refCount++; - targ->node = gn; - targ->parent = NULL; - targ->children = 0; - targ->pref = bmake_strdup(sopref); -#ifdef DEBUG_SRC - targ->cp = Lst_Init(FALSE); -#endif - - /* - * Only use the default suffix rules if we don't have commands - * defined for this gnode; traditional make programs used to - * not define suffix rules if the gnode had children but we - * don't do this anymore. - */ - if (Lst_IsEmpty(gn->commands)) - SuffAddLevel(srcs, targ); - else { - if (DEBUG(SUFF)) - fprintf(debug_file, "not "); - } - - if (DEBUG(SUFF)) - fprintf(debug_file, "adding suffix rules\n"); - - (void)Lst_AtEnd(targs, targ); - } - - /* - * Using the list of possible sources built up from the target suffix(es), - * try and find an existing file/target that matches. - */ - bottom = SuffFindThem(srcs, slst); - - if (bottom == NULL) { - /* - * No known transformations -- use the first suffix found for setting - * the local variables. - */ - if (!Lst_IsEmpty(targs)) { - targ = (Src *)Lst_Datum(Lst_First(targs)); - } else { - targ = NULL; - } - } else { - /* - * Work up the transformation path to find the suffix of the - * target to which the transformation was made. - */ - for (targ = bottom; targ->parent != NULL; targ = targ->parent) - continue; - } - - Var_Set(TARGET, gn->path ? gn->path : gn->name, gn, 0); - - pref = (targ != NULL) ? targ->pref : gn->name; - Var_Set(PREFIX, pref, gn, 0); - - /* - * Now we've got the important local variables set, expand any sources - * that still contain variables or wildcards in their names. - */ - for (ln = Lst_First(gn->children); ln != NULL; ln = nln) { - nln = Lst_Succ(ln); - SuffExpandChildren(ln, gn); - } - - if (targ == NULL) { - if (DEBUG(SUFF)) { - fprintf(debug_file, "\tNo valid suffix on %s\n", gn->name); - } - -sfnd_abort: - /* - * Deal with finding the thing on the default search path. We - * always do that, not only if the node is only a source (not - * on the lhs of a dependency operator or [XXX] it has neither - * children or commands) as the old pmake did. - */ - if ((gn->type & (OP_PHONY|OP_NOPATH)) == 0) { - free(gn->path); - gn->path = Dir_FindFile(gn->name, - (targ == NULL ? dirSearchPath : - targ->suff->searchPath)); - if (gn->path != NULL) { - char *ptr; - Var_Set(TARGET, gn->path, gn, 0); - - if (targ != NULL) { - /* - * Suffix known for the thing -- trim the suffix off - * the path to form the proper .PREFIX variable. - */ - int savep = strlen(gn->path) - targ->suff->nameLen; - char savec; - - if (gn->suffix) - gn->suffix->refCount--; - gn->suffix = targ->suff; - gn->suffix->refCount++; - - savec = gn->path[savep]; - gn->path[savep] = '\0'; - - if ((ptr = strrchr(gn->path, '/')) != NULL) - ptr++; - else - ptr = gn->path; - - Var_Set(PREFIX, ptr, gn, 0); - - gn->path[savep] = savec; - } else { - /* - * The .PREFIX gets the full path if the target has - * no known suffix. - */ - if (gn->suffix) - gn->suffix->refCount--; - gn->suffix = NULL; - - if ((ptr = strrchr(gn->path, '/')) != NULL) - ptr++; - else - ptr = gn->path; - - Var_Set(PREFIX, ptr, gn, 0); - } - } - } - - goto sfnd_return; - } - - /* - * If the suffix indicates that the target is a library, mark that in - * the node's type field. - */ - if (targ->suff->flags & SUFF_LIBRARY) { - gn->type |= OP_LIB; - } - - /* - * Check for overriding transformation rule implied by sources - */ - if (!Lst_IsEmpty(gn->children)) { - src = SuffFindCmds(targ, slst); - - if (src != NULL) { - /* - * Free up all the Src structures in the transformation path - * up to, but not including, the parent node. - */ - while (bottom && bottom->parent != NULL) { - if (Lst_Member(slst, bottom) == NULL) { - Lst_AtEnd(slst, bottom); - } - bottom = bottom->parent; - } - bottom = src; - } - } - - if (bottom == NULL) { - /* - * No idea from where it can come -- return now. - */ - goto sfnd_abort; - } - - /* - * We now have a list of Src structures headed by 'bottom' and linked via - * their 'parent' pointers. What we do next is create links between - * source and target nodes (which may or may not have been created) - * and set the necessary local variables in each target. The - * commands for each target are set from the commands of the - * transformation rule used to get from the src suffix to the targ - * suffix. Note that this causes the commands list of the original - * node, gn, to be replaced by the commands of the final - * transformation rule. Also, the unmade field of gn is incremented. - * Etc. - */ - if (bottom->node == NULL) { - bottom->node = Targ_FindNode(bottom->file, TARG_CREATE); - } - - for (src = bottom; src->parent != NULL; src = src->parent) { - targ = src->parent; - - if (src->node->suffix) - src->node->suffix->refCount--; - src->node->suffix = src->suff; - src->node->suffix->refCount++; - - if (targ->node == NULL) { - targ->node = Targ_FindNode(targ->file, TARG_CREATE); - } - - SuffApplyTransform(targ->node, src->node, - targ->suff, src->suff); - - if (targ->node != gn) { - /* - * Finish off the dependency-search process for any nodes - * between bottom and gn (no point in questing around the - * filesystem for their implicit source when it's already - * known). Note that the node can't have any sources that - * need expanding, since SuffFindThem will stop on an existing - * node, so all we need to do is set the standard and System V - * variables. - */ - targ->node->type |= OP_DEPS_FOUND; - - Var_Set(PREFIX, targ->pref, targ->node, 0); - - Var_Set(TARGET, targ->node->name, targ->node, 0); - } - } - - if (gn->suffix) - gn->suffix->refCount--; - gn->suffix = src->suff; - gn->suffix->refCount++; - - /* - * Nuke the transformation path and the Src structures left over in the - * two lists. - */ -sfnd_return: - if (bottom) - if (Lst_Member(slst, bottom) == NULL) - Lst_AtEnd(slst, bottom); - - while (SuffRemoveSrc(srcs) || SuffRemoveSrc(targs)) - continue; - - Lst_Concat(slst, srcs, LST_CONCLINK); - Lst_Concat(slst, targs, LST_CONCLINK); -} - - -/*- - *----------------------------------------------------------------------- - * Suff_FindDeps -- - * Find implicit sources for the target described by the graph node - * gn - * - * Results: - * Nothing. - * - * Side Effects: - * Nodes are added to the graph below the passed-in node. The nodes - * are marked to have their IMPSRC variable filled in. The - * PREFIX variable is set for the given node and all its - * implied children. - * - * Notes: - * The path found by this target is the shortest path in the - * transformation graph, which may pass through non-existent targets, - * to an existing target. The search continues on all paths from the - * root suffix until a file is found. I.e. if there's a path - * .o -> .c -> .l -> .l,v from the root and the .l,v file exists but - * the .c and .l files don't, the search will branch out in - * all directions from .o and again from all the nodes on the - * next level until the .l,v node is encountered. - * - *----------------------------------------------------------------------- - */ - -void -Suff_FindDeps(GNode *gn) -{ - - SuffFindDeps(gn, srclist); - while (SuffRemoveSrc(srclist)) - continue; -} - - -/* - * Input: - * gn node we're dealing with - * - */ -static void -SuffFindDeps(GNode *gn, Lst slst) -{ - if (gn->type & OP_DEPS_FOUND) { - /* - * If dependencies already found, no need to do it again... - */ - return; - } else { - gn->type |= OP_DEPS_FOUND; - } - /* - * Make sure we have these set, may get revised below. - */ - Var_Set(TARGET, gn->path ? gn->path : gn->name, gn, 0); - Var_Set(PREFIX, gn->name, gn, 0); - if (gn->type & OP_PHONY) { - /* - * If this is a .PHONY target, we do not apply suffix rules. - */ - return; - } - if (DEBUG(SUFF)) { - fprintf(debug_file, "SuffFindDeps (%s)\n", gn->name); - } - - if (gn->type & OP_ARCHV) { - SuffFindArchiveDeps(gn, slst); - } else if (gn->type & OP_LIB) { - /* - * If the node is a library, it is the arch module's job to find it - * and set the TARGET variable accordingly. We merely provide the - * search path, assuming all libraries end in ".a" (if the suffix - * hasn't been defined, there's nothing we can do for it, so we just - * set the TARGET variable to the node's name in order to give it a - * value). - */ - LstNode ln; - Suff *s; - - ln = Lst_Find(sufflist, LIBSUFF, SuffSuffHasNameP); - if (gn->suffix) - gn->suffix->refCount--; - if (ln != NULL) { - gn->suffix = s = (Suff *)Lst_Datum(ln); - gn->suffix->refCount++; - Arch_FindLib(gn, s->searchPath); - } else { - gn->suffix = NULL; - Var_Set(TARGET, gn->name, gn, 0); - } - /* - * Because a library (-lfoo) target doesn't follow the standard - * filesystem conventions, we don't set the regular variables for - * the thing. .PREFIX is simply made empty... - */ - Var_Set(PREFIX, "", gn, 0); - } else { - SuffFindNormalDeps(gn, slst); - } -} - -/*- - *----------------------------------------------------------------------- - * Suff_SetNull -- - * Define which suffix is the null suffix. - * - * Input: - * name Name of null suffix - * - * Results: - * None. - * - * Side Effects: - * 'suffNull' is altered. - * - * Notes: - * Need to handle the changing of the null suffix gracefully so the - * old transformation rules don't just go away. - * - *----------------------------------------------------------------------- - */ -void -Suff_SetNull(char *name) -{ - Suff *s; - LstNode ln; - - ln = Lst_Find(sufflist, name, SuffSuffHasNameP); - if (ln != NULL) { - s = (Suff *)Lst_Datum(ln); - if (suffNull != NULL) { - suffNull->flags &= ~SUFF_NULL; - } - s->flags |= SUFF_NULL; - /* - * XXX: Here's where the transformation mangling would take place - */ - suffNull = s; - } else { - Parse_Error(PARSE_WARNING, "Desired null suffix %s not defined.", - name); - } -} - -/*- - *----------------------------------------------------------------------- - * Suff_Init -- - * Initialize suffixes module - * - * Results: - * None - * - * Side Effects: - * Many - *----------------------------------------------------------------------- - */ -void -Suff_Init(void) -{ - sufflist = Lst_Init(FALSE); -#ifdef CLEANUP - suffClean = Lst_Init(FALSE); -#endif - srclist = Lst_Init(FALSE); - transforms = Lst_Init(FALSE); - - sNum = 0; - /* - * Create null suffix for single-suffix rules (POSIX). The thing doesn't - * actually go on the suffix list or everyone will think that's its - * suffix. - */ - emptySuff = suffNull = bmake_malloc(sizeof(Suff)); - - suffNull->name = bmake_strdup(""); - suffNull->nameLen = 0; - suffNull->searchPath = Lst_Init(FALSE); - Dir_Concat(suffNull->searchPath, dirSearchPath); - suffNull->children = Lst_Init(FALSE); - suffNull->parents = Lst_Init(FALSE); - suffNull->ref = Lst_Init(FALSE); - suffNull->sNum = sNum++; - suffNull->flags = SUFF_NULL; - suffNull->refCount = 1; - -} - - -/*- - *---------------------------------------------------------------------- - * Suff_End -- - * Cleanup the this module - * - * Results: - * None - * - * Side Effects: - * The memory is free'd. - *---------------------------------------------------------------------- - */ - -void -Suff_End(void) -{ -#ifdef CLEANUP - Lst_Destroy(sufflist, SuffFree); - Lst_Destroy(suffClean, SuffFree); - if (suffNull) - SuffFree(suffNull); - Lst_Destroy(srclist, NULL); - Lst_Destroy(transforms, NULL); -#endif -} - - -/********************* DEBUGGING FUNCTIONS **********************/ - -static int SuffPrintName(void *s, void *dummy) -{ - fprintf(debug_file, "%s ", ((Suff *)s)->name); - return (dummy ? 0 : 0); -} - -static int -SuffPrintSuff(void *sp, void *dummy) -{ - Suff *s = (Suff *)sp; - int flags; - int flag; - - fprintf(debug_file, "# `%s' [%d] ", s->name, s->refCount); - - flags = s->flags; - if (flags) { - fputs(" (", debug_file); - while (flags) { - flag = 1 << (ffs(flags) - 1); - flags &= ~flag; - switch (flag) { - case SUFF_NULL: - fprintf(debug_file, "NULL"); - break; - case SUFF_INCLUDE: - fprintf(debug_file, "INCLUDE"); - break; - case SUFF_LIBRARY: - fprintf(debug_file, "LIBRARY"); - break; - } - fputc(flags ? '|' : ')', debug_file); - } - } - fputc('\n', debug_file); - fprintf(debug_file, "#\tTo: "); - Lst_ForEach(s->parents, SuffPrintName, NULL); - fputc('\n', debug_file); - fprintf(debug_file, "#\tFrom: "); - Lst_ForEach(s->children, SuffPrintName, NULL); - fputc('\n', debug_file); - fprintf(debug_file, "#\tSearch Path: "); - Dir_PrintPath(s->searchPath); - fputc('\n', debug_file); - return (dummy ? 0 : 0); -} - -static int -SuffPrintTrans(void *tp, void *dummy) -{ - GNode *t = (GNode *)tp; - - fprintf(debug_file, "%-16s: ", t->name); - Targ_PrintType(t->type); - fputc('\n', debug_file); - Lst_ForEach(t->commands, Targ_PrintCmd, NULL); - fputc('\n', debug_file); - return(dummy ? 0 : 0); -} - -void -Suff_PrintAll(void) -{ - fprintf(debug_file, "#*** Suffixes:\n"); - Lst_ForEach(sufflist, SuffPrintSuff, NULL); - - fprintf(debug_file, "#*** Transformations:\n"); - Lst_ForEach(transforms, SuffPrintTrans, NULL); -} diff --git a/external/bsd/bmake/dist/targ.c b/external/bsd/bmake/dist/targ.c deleted file mode 100644 index d26b845c80a6..000000000000 --- a/external/bsd/bmake/dist/targ.c +++ /dev/null @@ -1,848 +0,0 @@ -/* $NetBSD: targ.c,v 1.57 2012/06/12 19:21:51 joerg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: targ.c,v 1.57 2012/06/12 19:21:51 joerg Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)targ.c 8.2 (Berkeley) 3/19/94"; -#else -__RCSID("$NetBSD: targ.c,v 1.57 2012/06/12 19:21:51 joerg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * targ.c -- - * Functions for maintaining the Lst allTargets. Target nodes are - * kept in two structures: a Lst, maintained by the list library, and a - * hash table, maintained by the hash library. - * - * Interface: - * Targ_Init Initialization procedure. - * - * Targ_End Cleanup the module - * - * Targ_List Return the list of all targets so far. - * - * Targ_NewGN Create a new GNode for the passed target - * (string). The node is *not* placed in the - * hash table, though all its fields are - * initialized. - * - * Targ_FindNode Find the node for a given target, creating - * and storing it if it doesn't exist and the - * flags are right (TARG_CREATE) - * - * Targ_FindList Given a list of names, find nodes for all - * of them. If a name doesn't exist and the - * TARG_NOCREATE flag was given, an error message - * is printed. Else, if a name doesn't exist, - * its node is created. - * - * Targ_Ignore Return TRUE if errors should be ignored when - * creating the given target. - * - * Targ_Silent Return TRUE if we should be silent when - * creating the given target. - * - * Targ_Precious Return TRUE if the target is precious and - * should not be removed if we are interrupted. - * - * Targ_Propagate Propagate information between related - * nodes. Should be called after the - * makefiles are parsed but before any - * action is taken. - * - * Debugging: - * Targ_PrintGraph Print out the entire graphm all variables - * and statistics for the directory cache. Should - * print something for suffixes, too, but... - */ - -#include -#include - -#include "make.h" -#include "hash.h" -#include "dir.h" - -static Lst allTargets; /* the list of all targets found so far */ -#ifdef CLEANUP -static Lst allGNs; /* List of all the GNodes */ -#endif -static Hash_Table targets; /* a hash table of same */ - -#define HTSIZE 191 /* initial size of hash table */ - -static int TargPrintOnlySrc(void *, void *); -static int TargPrintName(void *, void *); -#ifdef CLEANUP -static void TargFreeGN(void *); -#endif -static int TargPropagateCohort(void *, void *); -static int TargPropagateNode(void *, void *); - -/*- - *----------------------------------------------------------------------- - * Targ_Init -- - * Initialize this module - * - * Results: - * None - * - * Side Effects: - * The allTargets list and the targets hash table are initialized - *----------------------------------------------------------------------- - */ -void -Targ_Init(void) -{ - allTargets = Lst_Init(FALSE); - Hash_InitTable(&targets, HTSIZE); -} - -/*- - *----------------------------------------------------------------------- - * Targ_End -- - * Finalize this module - * - * Results: - * None - * - * Side Effects: - * All lists and gnodes are cleared - *----------------------------------------------------------------------- - */ -void -Targ_End(void) -{ -#ifdef CLEANUP - Lst_Destroy(allTargets, NULL); - if (allGNs) - Lst_Destroy(allGNs, TargFreeGN); - Hash_DeleteTable(&targets); -#endif -} - -/*- - *----------------------------------------------------------------------- - * Targ_List -- - * Return the list of all targets - * - * Results: - * The list of all targets. - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -Lst -Targ_List(void) -{ - return allTargets; -} - -/*- - *----------------------------------------------------------------------- - * Targ_NewGN -- - * Create and initialize a new graph node - * - * Input: - * name the name to stick in the new node - * - * Results: - * An initialized graph node with the name field filled with a copy - * of the passed name - * - * Side Effects: - * The gnode is added to the list of all gnodes. - *----------------------------------------------------------------------- - */ -GNode * -Targ_NewGN(const char *name) -{ - GNode *gn; - - gn = bmake_malloc(sizeof(GNode)); - gn->name = bmake_strdup(name); - gn->uname = NULL; - gn->path = NULL; - if (name[0] == '-' && name[1] == 'l') { - gn->type = OP_LIB; - } else { - gn->type = 0; - } - gn->unmade = 0; - gn->unmade_cohorts = 0; - gn->cohort_num[0] = 0; - gn->centurion = NULL; - gn->made = UNMADE; - gn->flags = 0; - gn->checked = 0; - gn->mtime = 0; - gn->cmgn = NULL; - gn->iParents = Lst_Init(FALSE); - gn->cohorts = Lst_Init(FALSE); - gn->parents = Lst_Init(FALSE); - gn->children = Lst_Init(FALSE); - gn->order_pred = Lst_Init(FALSE); - gn->order_succ = Lst_Init(FALSE); - Hash_InitTable(&gn->context, 0); - gn->commands = Lst_Init(FALSE); - gn->suffix = NULL; - gn->lineno = 0; - gn->fname = NULL; - -#ifdef CLEANUP - if (allGNs == NULL) - allGNs = Lst_Init(FALSE); - Lst_AtEnd(allGNs, gn); -#endif - - return (gn); -} - -#ifdef CLEANUP -/*- - *----------------------------------------------------------------------- - * TargFreeGN -- - * Destroy a GNode - * - * Results: - * None. - * - * Side Effects: - * None. - *----------------------------------------------------------------------- - */ -static void -TargFreeGN(void *gnp) -{ - GNode *gn = (GNode *)gnp; - - - free(gn->name); - if (gn->uname) - free(gn->uname); - if (gn->path) - free(gn->path); - /* gn->fname points to name allocated when file was opened, don't free */ - - Lst_Destroy(gn->iParents, NULL); - Lst_Destroy(gn->cohorts, NULL); - Lst_Destroy(gn->parents, NULL); - Lst_Destroy(gn->children, NULL); - Lst_Destroy(gn->order_succ, NULL); - Lst_Destroy(gn->order_pred, NULL); - Hash_DeleteTable(&gn->context); - Lst_Destroy(gn->commands, NULL); - free(gn); -} -#endif - - -/*- - *----------------------------------------------------------------------- - * Targ_FindNode -- - * Find a node in the list using the given name for matching - * - * Input: - * name the name to find - * flags flags governing events when target not - * found - * - * Results: - * The node in the list if it was. If it wasn't, return NULL of - * flags was TARG_NOCREATE or the newly created and initialized node - * if it was TARG_CREATE - * - * Side Effects: - * Sometimes a node is created and added to the list - *----------------------------------------------------------------------- - */ -GNode * -Targ_FindNode(const char *name, int flags) -{ - GNode *gn; /* node in that element */ - Hash_Entry *he = NULL; /* New or used hash entry for node */ - Boolean isNew; /* Set TRUE if Hash_CreateEntry had to create */ - /* an entry for the node */ - - if (!(flags & (TARG_CREATE | TARG_NOHASH))) { - he = Hash_FindEntry(&targets, name); - if (he == NULL) - return NULL; - return (GNode *)Hash_GetValue(he); - } - - if (!(flags & TARG_NOHASH)) { - he = Hash_CreateEntry(&targets, name, &isNew); - if (!isNew) - return (GNode *)Hash_GetValue(he); - } - - gn = Targ_NewGN(name); - if (!(flags & TARG_NOHASH)) - Hash_SetValue(he, gn); - Var_Append(".ALLTARGETS", name, VAR_GLOBAL); - (void)Lst_AtEnd(allTargets, gn); - if (doing_depend) - gn->flags |= FROM_DEPEND; - return gn; -} - -/*- - *----------------------------------------------------------------------- - * Targ_FindList -- - * Make a complete list of GNodes from the given list of names - * - * Input: - * name list of names to find - * flags flags used if no node is found for a given name - * - * Results: - * A complete list of graph nodes corresponding to all instances of all - * the names in names. - * - * Side Effects: - * If flags is TARG_CREATE, nodes will be created for all names in - * names which do not yet have graph nodes. If flags is TARG_NOCREATE, - * an error message will be printed for each name which can't be found. - * ----------------------------------------------------------------------- - */ -Lst -Targ_FindList(Lst names, int flags) -{ - Lst nodes; /* result list */ - LstNode ln; /* name list element */ - GNode *gn; /* node in tLn */ - char *name; - - nodes = Lst_Init(FALSE); - - if (Lst_Open(names) == FAILURE) { - return (nodes); - } - while ((ln = Lst_Next(names)) != NULL) { - name = (char *)Lst_Datum(ln); - gn = Targ_FindNode(name, flags); - if (gn != NULL) { - /* - * Note: Lst_AtEnd must come before the Lst_Concat so the nodes - * are added to the list in the order in which they were - * encountered in the makefile. - */ - (void)Lst_AtEnd(nodes, gn); - } else if (flags == TARG_NOCREATE) { - Error("\"%s\" -- target unknown.", name); - } - } - Lst_Close(names); - return (nodes); -} - -/*- - *----------------------------------------------------------------------- - * Targ_Ignore -- - * Return true if should ignore errors when creating gn - * - * Input: - * gn node to check for - * - * Results: - * TRUE if should ignore errors - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -Boolean -Targ_Ignore(GNode *gn) -{ - if (ignoreErrors || gn->type & OP_IGNORE) { - return (TRUE); - } else { - return (FALSE); - } -} - -/*- - *----------------------------------------------------------------------- - * Targ_Silent -- - * Return true if be silent when creating gn - * - * Input: - * gn node to check for - * - * Results: - * TRUE if should be silent - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -Boolean -Targ_Silent(GNode *gn) -{ - if (beSilent || gn->type & OP_SILENT) { - return (TRUE); - } else { - return (FALSE); - } -} - -/*- - *----------------------------------------------------------------------- - * Targ_Precious -- - * See if the given target is precious - * - * Input: - * gn the node to check - * - * Results: - * TRUE if it is precious. FALSE otherwise - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -Boolean -Targ_Precious(GNode *gn) -{ - if (allPrecious || (gn->type & (OP_PRECIOUS|OP_DOUBLEDEP))) { - return (TRUE); - } else { - return (FALSE); - } -} - -/******************* DEBUG INFO PRINTING ****************/ - -static GNode *mainTarg; /* the main target, as set by Targ_SetMain */ -/*- - *----------------------------------------------------------------------- - * Targ_SetMain -- - * Set our idea of the main target we'll be creating. Used for - * debugging output. - * - * Input: - * gn The main target we'll create - * - * Results: - * None. - * - * Side Effects: - * "mainTarg" is set to the main target's node. - *----------------------------------------------------------------------- - */ -void -Targ_SetMain(GNode *gn) -{ - mainTarg = gn; -} - -static int -TargPrintName(void *gnp, void *pflags MAKE_ATTR_UNUSED) -{ - GNode *gn = (GNode *)gnp; - - fprintf(debug_file, "%s%s ", gn->name, gn->cohort_num); - - return 0; -} - - -int -Targ_PrintCmd(void *cmd, void *dummy) -{ - fprintf(debug_file, "\t%s\n", (char *)cmd); - return (dummy ? 0 : 0); -} - -/*- - *----------------------------------------------------------------------- - * Targ_FmtTime -- - * Format a modification time in some reasonable way and return it. - * - * Results: - * The time reformatted. - * - * Side Effects: - * The time is placed in a static area, so it is overwritten - * with each call. - * - *----------------------------------------------------------------------- - */ -char * -Targ_FmtTime(time_t tm) -{ - struct tm *parts; - static char buf[128]; - - parts = localtime(&tm); - (void)strftime(buf, sizeof buf, "%k:%M:%S %b %d, %Y", parts); - return(buf); -} - -/*- - *----------------------------------------------------------------------- - * Targ_PrintType -- - * Print out a type field giving only those attributes the user can - * set. - * - * Results: - * - * Side Effects: - * - *----------------------------------------------------------------------- - */ -void -Targ_PrintType(int type) -{ - int tbit; - -#define PRINTBIT(attr) case CONCAT(OP_,attr): fprintf(debug_file, "." #attr " "); break -#define PRINTDBIT(attr) case CONCAT(OP_,attr): if (DEBUG(TARG))fprintf(debug_file, "." #attr " "); break - - type &= ~OP_OPMASK; - - while (type) { - tbit = 1 << (ffs(type) - 1); - type &= ~tbit; - - switch(tbit) { - PRINTBIT(OPTIONAL); - PRINTBIT(USE); - PRINTBIT(EXEC); - PRINTBIT(IGNORE); - PRINTBIT(PRECIOUS); - PRINTBIT(SILENT); - PRINTBIT(MAKE); - PRINTBIT(JOIN); - PRINTBIT(INVISIBLE); - PRINTBIT(NOTMAIN); - PRINTDBIT(LIB); - /*XXX: MEMBER is defined, so CONCAT(OP_,MEMBER) gives OP_"%" */ - case OP_MEMBER: if (DEBUG(TARG))fprintf(debug_file, ".MEMBER "); break; - PRINTDBIT(ARCHV); - PRINTDBIT(MADE); - PRINTDBIT(PHONY); - } - } -} - -static const char * -made_name(enum enum_made made) -{ - switch (made) { - case UNMADE: return "unmade"; - case DEFERRED: return "deferred"; - case REQUESTED: return "requested"; - case BEINGMADE: return "being made"; - case MADE: return "made"; - case UPTODATE: return "up-to-date"; - case ERROR: return "error when made"; - case ABORTED: return "aborted"; - default: return "unknown enum_made value"; - } -} - -/*- - *----------------------------------------------------------------------- - * TargPrintNode -- - * print the contents of a node - *----------------------------------------------------------------------- - */ -int -Targ_PrintNode(void *gnp, void *passp) -{ - GNode *gn = (GNode *)gnp; - int pass = passp ? *(int *)passp : 0; - - fprintf(debug_file, "# %s%s, flags %x, type %x, made %d\n", - gn->name, gn->cohort_num, gn->flags, gn->type, gn->made); - if (gn->flags == 0) - return 0; - - if (!OP_NOP(gn->type)) { - fprintf(debug_file, "#\n"); - if (gn == mainTarg) { - fprintf(debug_file, "# *** MAIN TARGET ***\n"); - } - if (pass >= 2) { - if (gn->unmade) { - fprintf(debug_file, "# %d unmade children\n", gn->unmade); - } else { - fprintf(debug_file, "# No unmade children\n"); - } - if (! (gn->type & (OP_JOIN|OP_USE|OP_USEBEFORE|OP_EXEC))) { - if (gn->mtime != 0) { - fprintf(debug_file, "# last modified %s: %s\n", - Targ_FmtTime(gn->mtime), - made_name(gn->made)); - } else if (gn->made != UNMADE) { - fprintf(debug_file, "# non-existent (maybe): %s\n", - made_name(gn->made)); - } else { - fprintf(debug_file, "# unmade\n"); - } - } - if (!Lst_IsEmpty (gn->iParents)) { - fprintf(debug_file, "# implicit parents: "); - Lst_ForEach(gn->iParents, TargPrintName, NULL); - fprintf(debug_file, "\n"); - } - } else { - if (gn->unmade) - fprintf(debug_file, "# %d unmade children\n", gn->unmade); - } - if (!Lst_IsEmpty (gn->parents)) { - fprintf(debug_file, "# parents: "); - Lst_ForEach(gn->parents, TargPrintName, NULL); - fprintf(debug_file, "\n"); - } - if (!Lst_IsEmpty (gn->order_pred)) { - fprintf(debug_file, "# order_pred: "); - Lst_ForEach(gn->order_pred, TargPrintName, NULL); - fprintf(debug_file, "\n"); - } - if (!Lst_IsEmpty (gn->order_succ)) { - fprintf(debug_file, "# order_succ: "); - Lst_ForEach(gn->order_succ, TargPrintName, NULL); - fprintf(debug_file, "\n"); - } - - fprintf(debug_file, "%-16s", gn->name); - switch (gn->type & OP_OPMASK) { - case OP_DEPENDS: - fprintf(debug_file, ": "); break; - case OP_FORCE: - fprintf(debug_file, "! "); break; - case OP_DOUBLEDEP: - fprintf(debug_file, ":: "); break; - } - Targ_PrintType(gn->type); - Lst_ForEach(gn->children, TargPrintName, NULL); - fprintf(debug_file, "\n"); - Lst_ForEach(gn->commands, Targ_PrintCmd, NULL); - fprintf(debug_file, "\n\n"); - if (gn->type & OP_DOUBLEDEP) { - Lst_ForEach(gn->cohorts, Targ_PrintNode, &pass); - } - } - return (0); -} - -/*- - *----------------------------------------------------------------------- - * TargPrintOnlySrc -- - * Print only those targets that are just a source. - * - * Results: - * 0. - * - * Side Effects: - * The name of each file is printed preceded by #\t - * - *----------------------------------------------------------------------- - */ -static int -TargPrintOnlySrc(void *gnp, void *dummy MAKE_ATTR_UNUSED) -{ - GNode *gn = (GNode *)gnp; - if (!OP_NOP(gn->type)) - return 0; - - fprintf(debug_file, "#\t%s [%s] ", - gn->name, gn->path ? gn->path : gn->name); - Targ_PrintType(gn->type); - fprintf(debug_file, "\n"); - - return 0; -} - -/*- - *----------------------------------------------------------------------- - * Targ_PrintGraph -- - * print the entire graph. heh heh - * - * Input: - * pass Which pass this is. 1 => no processing - * 2 => processing done - * - * Results: - * none - * - * Side Effects: - * lots o' output - *----------------------------------------------------------------------- - */ -void -Targ_PrintGraph(int pass) -{ - fprintf(debug_file, "#*** Input graph:\n"); - Lst_ForEach(allTargets, Targ_PrintNode, &pass); - fprintf(debug_file, "\n\n"); - fprintf(debug_file, "#\n# Files that are only sources:\n"); - Lst_ForEach(allTargets, TargPrintOnlySrc, NULL); - fprintf(debug_file, "#*** Global Variables:\n"); - Var_Dump(VAR_GLOBAL); - fprintf(debug_file, "#*** Command-line Variables:\n"); - Var_Dump(VAR_CMD); - fprintf(debug_file, "\n"); - Dir_PrintDirectories(); - fprintf(debug_file, "\n"); - Suff_PrintAll(); -} - -/*- - *----------------------------------------------------------------------- - * TargPropagateNode -- - * Propagate information from a single node to related nodes if - * appropriate. - * - * Input: - * gnp The node that we are processing. - * - * Results: - * Always returns 0, for the benefit of Lst_ForEach(). - * - * Side Effects: - * Information is propagated from this node to cohort or child - * nodes. - * - * If the node was defined with "::", then TargPropagateCohort() - * will be called for each cohort node. - * - * If the node has recursive predecessors, then - * TargPropagateRecpred() will be called for each recursive - * predecessor. - *----------------------------------------------------------------------- - */ -static int -TargPropagateNode(void *gnp, void *junk MAKE_ATTR_UNUSED) -{ - GNode *gn = (GNode *)gnp; - - if (gn->type & OP_DOUBLEDEP) - Lst_ForEach(gn->cohorts, TargPropagateCohort, gnp); - return (0); -} - -/*- - *----------------------------------------------------------------------- - * TargPropagateCohort -- - * Propagate some bits in the type mask from a node to - * a related cohort node. - * - * Input: - * cnp The node that we are processing. - * gnp Another node that has cnp as a cohort. - * - * Results: - * Always returns 0, for the benefit of Lst_ForEach(). - * - * Side Effects: - * cnp's type bitmask is modified to incorporate some of the - * bits from gnp's type bitmask. (XXX need a better explanation.) - *----------------------------------------------------------------------- - */ -static int -TargPropagateCohort(void *cgnp, void *pgnp) -{ - GNode *cgn = (GNode *)cgnp; - GNode *pgn = (GNode *)pgnp; - - cgn->type |= pgn->type & ~OP_OPMASK; - return (0); -} - -/*- - *----------------------------------------------------------------------- - * Targ_Propagate -- - * Propagate information between related nodes. Should be called - * after the makefiles are parsed but before any action is taken. - * - * Results: - * none - * - * Side Effects: - * Information is propagated between related nodes throughout the - * graph. - *----------------------------------------------------------------------- - */ -void -Targ_Propagate(void) -{ - Lst_ForEach(allTargets, TargPropagateNode, NULL); -} diff --git a/external/bsd/bmake/dist/trace.c b/external/bsd/bmake/dist/trace.c deleted file mode 100644 index 267177ff5618..000000000000 --- a/external/bsd/bmake/dist/trace.c +++ /dev/null @@ -1,116 +0,0 @@ -/* $NetBSD: trace.c,v 1.11 2008/12/28 18:31:51 christos Exp $ */ - -/*- - * Copyright (c) 2000 The NetBSD Foundation, Inc. - * All rights reserved. - * - * This code is derived from software contributed to The NetBSD Foundation - * by Bill Sommerfeld - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: trace.c,v 1.11 2008/12/28 18:31:51 christos Exp $"; -#else -#include -#ifndef lint -__RCSID("$NetBSD: trace.c,v 1.11 2008/12/28 18:31:51 christos Exp $"); -#endif /* not lint */ -#endif - -/*- - * trace.c -- - * handle logging of trace events generated by various parts of make. - * - * Interface: - * Trace_Init Initialize tracing (called once during - * the lifetime of the process) - * - * Trace_End Finalize tracing (called before make exits) - * - * Trace_Log Log an event about a particular make job. - */ - -#include - -#include -#include - -#include "make.h" -#include "job.h" -#include "trace.h" - -static FILE *trfile; -static pid_t trpid; -char *trwd; - -static const char *evname[] = { - "BEG", - "END", - "ERR", - "JOB", - "DON", - "INT", -}; - -void -Trace_Init(const char *pathname) -{ - char *p1; - if (pathname != NULL) { - trpid = getpid(); - trwd = Var_Value(".CURDIR", VAR_GLOBAL, &p1); - - trfile = fopen(pathname, "a"); - } -} - -void -Trace_Log(TrEvent event, Job *job) -{ - struct timeval rightnow; - - if (trfile == NULL) - return; - - gettimeofday(&rightnow, NULL); - - fprintf(trfile, "%lld.%06ld %d %s %d %s", - (long long)rightnow.tv_sec, (long)rightnow.tv_usec, - jobTokensRunning, - evname[event], trpid, trwd); - if (job != NULL) { - fprintf(trfile, " %s %d %x %x", job->node->name, - job->pid, job->flags, job->node->type); - } - fputc('\n', trfile); - fflush(trfile); -} - -void -Trace_End(void) -{ - if (trfile != NULL) - fclose(trfile); -} diff --git a/external/bsd/bmake/dist/trace.h b/external/bsd/bmake/dist/trace.h deleted file mode 100644 index dc0fc6cc43aa..000000000000 --- a/external/bsd/bmake/dist/trace.h +++ /dev/null @@ -1,49 +0,0 @@ -/* $NetBSD: trace.h,v 1.3 2008/04/28 20:24:14 martin Exp $ */ - -/*- - * Copyright (c) 2000 The NetBSD Foundation, Inc. - * All rights reserved. - * - * This code is derived from software contributed to The NetBSD Foundation - * by Bill Sommerfeld - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -/*- - * trace.h -- - * Definitions pertaining to the tracing of jobs in parallel mode. - */ - -typedef enum { - MAKESTART, - MAKEEND, - MAKEERROR, - JOBSTART, - JOBEND, - MAKEINTR -} TrEvent; - -void Trace_Init(const char *); -void Trace_Log(TrEvent, Job *); -void Trace_End(void); - diff --git a/external/bsd/bmake/dist/unit-tests/Makefile.in b/external/bsd/bmake/dist/unit-tests/Makefile.in deleted file mode 100644 index 4e3592d94695..000000000000 --- a/external/bsd/bmake/dist/unit-tests/Makefile.in +++ /dev/null @@ -1,96 +0,0 @@ -# $Id: Makefile.in,v 1.38 2012/06/19 23:38:48 sjg Exp $ -# -# $NetBSD: Makefile,v 1.34 2012/06/19 23:25:53 sjg Exp $ -# -# Unit tests for make(1) -# The main targets are: -# -# all: run all the tests -# test: run 'all', capture output and compare to expected results -# accept: move generated output to expected results -# -# Adding a test case. -# Each feature should get its own set of tests in its own suitably -# named makefile which should be added to SUBFILES to hook it in. -# - -srcdir= @srcdir@ - -.MAIN: all - -UNIT_TESTS:= ${srcdir} - -# Simple sub-makefiles - we run them as a black box -# keep the list sorted. -SUBFILES= \ - comment \ - cond1 \ - error \ - export \ - export-all \ - doterror \ - dotwait \ - forloop \ - forsubst \ - hash \ - misc \ - moderrs \ - modmatch \ - modmisc \ - modorder \ - modts \ - modword \ - phony-end \ - posix \ - qequals \ - sysv \ - ternary \ - unexport \ - unexport-env \ - varcmd - -all: ${SUBFILES} - -flags.doterror= - -# the tests are actually done with sub-makes. -.PHONY: ${SUBFILES} -.PRECIOUS: ${SUBFILES} -${SUBFILES}: - -@${.MAKE} ${flags.$@:U-k} -f ${UNIT_TESTS}/$@ - -clean: - rm -f *.out *.fail *.core - -.-include - -TEST_MAKE?= ${.MAKE} -TOOL_SED?= sed -TOOL_TR?= tr -TOOL_DIFF?= diff -DIFF_FLAGS?= @diff_u@ - -# ensure consistent results from sort(1) -LC_ALL= C -LANG= C -.export LANG LC_ALL - -# The driver. -# We always pretend .MAKE was called 'make' -# and strip ${.CURDIR}/ from the output -# and replace anything after 'stopped in' with unit-tests -# so the results can be compared. -test: - @echo "${TEST_MAKE} -f ${MAKEFILE} > ${.TARGET}.out 2>&1" - @cd ${.OBJDIR} && ${TEST_MAKE} -f ${MAKEFILE} 2>&1 | \ - ${TOOL_TR} -d '\015' | \ - ${TOOL_SED} -e 's,^${TEST_MAKE:T:C/\./\\\./g}:,make:,' \ - -e '/stopped/s, /.*, unit-tests,' \ - -e 's,${.CURDIR:C/\./\\\./g}/,,g' \ - -e 's,${UNIT_TESTS:C/\./\\\./g}/,,g' > ${.TARGET}.out || { \ - tail ${.TARGET}.out; mv ${.TARGET}.out ${.TARGET}.fail; exit 1; } - ${TOOL_DIFF} ${DIFF_FLAGS} ${UNIT_TESTS}/${.TARGET}.exp ${.TARGET}.out - -accept: - mv test.out ${srcdir}/test.exp - diff --git a/external/bsd/bmake/dist/unit-tests/comment b/external/bsd/bmake/dist/unit-tests/comment deleted file mode 100644 index 7dd7dbbe28b5..000000000000 --- a/external/bsd/bmake/dist/unit-tests/comment +++ /dev/null @@ -1,31 +0,0 @@ -# This is a comment -.if ${MACHINE_ARCH} == something -FOO=bar -.endif - -#\ - Multiline comment - -BAR=# defined -FOOBAR= # defined - -# This is an escaped comment \ -that keeps going until the end of this line - -# Another escaped comment \ -that \ -goes \ -on - -# This is NOT an escaped comment due to the double backslashes \\ -all: hi foo bar - @echo comment testing done - -hi: - @echo comment testing start - -foo: - @echo this is $@ - -bar: - @echo This is how a comment looks: '# comment' diff --git a/external/bsd/bmake/dist/unit-tests/cond1 b/external/bsd/bmake/dist/unit-tests/cond1 deleted file mode 100644 index c877c3db31b8..000000000000 --- a/external/bsd/bmake/dist/unit-tests/cond1 +++ /dev/null @@ -1,109 +0,0 @@ -# $Id: cond1,v 1.1.1.3 2011/03/06 00:04:58 sjg Exp $ - -# hard code these! -TEST_UNAME_S= NetBSD -TEST_UNAME_M= sparc -TEST_MACHINE= i386 - -.if ${TEST_UNAME_S} -Ok=var, -.endif -.if ("${TEST_UNAME_S}") -Ok+=(\"var\"), -.endif -.if (${TEST_UNAME_M} != ${TEST_MACHINE}) -Ok+=(var != var), -.endif -.if ${TEST_UNAME_M} != ${TEST_MACHINE} -Ok+= var != var, -.endif -.if !((${TEST_UNAME_M} != ${TEST_MACHINE}) && defined(X)) -Ok+= !((var != var) && defined(name)), -.endif -# from bsd.obj.mk -MKOBJ?=no -.if ${MKOBJ} == "no" -o= no -Ok+= var == "quoted", -.else -.if defined(notMAKEOBJDIRPREFIX) || defined(norMAKEOBJDIR) -.if defined(notMAKEOBJDIRPREFIX) -o=${MAKEOBJDIRPREFIX}${__curdir} -.else -o= ${MAKEOBJDIR} -.endif -.endif -o= o -.endif - -# repeat the above to check we get the same result -.if ${MKOBJ} == "no" -o2= no -.else -.if defined(notMAKEOBJDIRPREFIX) || defined(norMAKEOBJDIR) -.if defined(notMAKEOBJDIRPREFIX) -o2=${MAKEOBJDIRPREFIX}${__curdir} -.else -o2= ${MAKEOBJDIR} -.endif -.endif -o2= o -.endif - -PRIMES=2 3 5 7 11 -NUMBERS=1 2 3 4 5 - -n=2 -.if ${PRIMES:M$n} == "" -X=not -.else -X= -.endif - -.if ${MACHINE_ARCH} == no-such -A=one -.else -.if ${MACHINE_ARCH} == not-this -.if ${MACHINE_ARCH} == something-else -A=unlikely -.else -A=no -.endif -.endif -A=other -# We expect an extra else warning - we're not skipping here -.else -A=this should be an error -.endif - -.if $X != "" -.if $X == not -B=one -.else -B=other -# We expect an extra else warning - we are skipping here -.else -B=this should be an error -.endif -.else -B=unknown -.endif - -.if "quoted" == quoted -C=clever -.else -C=dim -.endif - -.if defined(nosuch) && ${nosuch:Mx} != "" -# this should not happen -.info nosuch is x -.endif - -all: - @echo "$n is $X prime" - @echo "A='$A' B='$B' C='$C' o='$o,${o2}'" - @echo "Passed:${.newline} ${Ok:S/,/${.newline}/}" - @echo "${NUMBERS:@n@$n is ${("${PRIMES:M$n}" == ""):?not:} prime${.newline}@}" - @echo "${"${DoNotQuoteHere:U0}" > 0:?OK:No}" - @echo "${${NoSuchNumber:U42} > 0:?OK:No}" diff --git a/external/bsd/bmake/dist/unit-tests/doterror b/external/bsd/bmake/dist/unit-tests/doterror deleted file mode 100644 index 75d8920ac7e7..000000000000 --- a/external/bsd/bmake/dist/unit-tests/doterror +++ /dev/null @@ -1,20 +0,0 @@ -# $Id: doterror,v 1.1.1.1 2010/04/08 17:43:00 sjg Exp $ - - -.BEGIN: - @echo At first, I am - -.END: - @echo not reached - -.ERROR: - @echo "$@: Looks like '${.ERROR_TARGET}' is upset." - -all: happy sad - -happy: - @echo $@ - -sad: - @echo and now: $@; exit 1 - diff --git a/external/bsd/bmake/dist/unit-tests/dotwait b/external/bsd/bmake/dist/unit-tests/dotwait deleted file mode 100644 index 43706afe64b8..000000000000 --- a/external/bsd/bmake/dist/unit-tests/dotwait +++ /dev/null @@ -1,61 +0,0 @@ -# $NetBSD: dotwait,v 1.1 2006/02/26 22:45:46 apb Exp $ - -THISMAKEFILE:= ${.PARSEDIR}/${.PARSEFILE} - -TESTS= simple recursive shared cycle -PAUSE= sleep 1 - -# Use a .for loop rather than dependencies here, to ensure -# that the tests are run one by one, with parallelism -# only within tests. -# Ignore "--- target ---" lines printed by parallel make. -all: -.for t in ${TESTS} - @${.MAKE} -f ${THISMAKEFILE} -j4 $t | grep -v "^--- " -.endfor - -# -# Within each test, the names of the sub-targets follow these -# conventions: -# * If it's expected that two or more targets may be made in parallel, -# then the target names will differ only in an alphabetic component -# such as ".a" or ".b". -# * If it's expected that two or more targets should be made in sequence -# then the target names will differ in numeric components, such that -# lexical ordering of the target names matches the expected order -# in which the targets should be made. -# -# Targets may echo ${PARALLEL_TARG} to print a modified version -# of their own name, in which alphabetic components like ".a" or ".b" -# are converted to ".*". Two targets that are expected to -# be made in parallel will thus print the same strings, so that the -# output is independent of the order in which these targets are made. -# -PARALLEL_TARG= ${.TARGET:C/\.[a-z]/.*/g:Q} -.DEFAULT: - @echo ${PARALLEL_TARG}; ${PAUSE}; echo ${PARALLEL_TARG} -_ECHOUSE: .USE - @echo ${PARALLEL_TARG}; ${PAUSE}; echo ${PARALLEL_TARG} - -# simple: no recursion, no cycles -simple: simple.1 .WAIT simple.2 - -# recursive: all children of the left hand side of the .WAIT -# must be made before any child of the right hand side. -recursive: recursive.1.99 .WAIT recursive.2.99 -recursive.1.99: recursive.1.1.a recursive.1.1.b _ECHOUSE -recursive.2.99: recursive.2.1.a recursive.2.1.b _ECHOUSE - -# shared: both shared.1.99 and shared.2.99 depend on shared.0. -# shared.0 must be made first, even though it is a child of -# the right hand side of the .WAIT. -shared: shared.1.99 .WAIT shared.2.99 -shared.1.99: shared.0 _ECHOUSE -shared.2.99: shared.2.1 shared.0 _ECHOUSE - -# cycle: the cyclic dependency must not cause infinite recursion -# leading to stack overflow and a crash. -cycle: cycle.1.99 .WAIT cycle.2.99 -cycle.2.99: cycle.2.98 _ECHOUSE -cycle.2.98: cycle.2.97 _ECHOUSE -cycle.2.97: cycle.2.99 _ECHOUSE diff --git a/external/bsd/bmake/dist/unit-tests/error b/external/bsd/bmake/dist/unit-tests/error deleted file mode 100644 index c0a1403a4008..000000000000 --- a/external/bsd/bmake/dist/unit-tests/error +++ /dev/null @@ -1,10 +0,0 @@ -# $Id: error,v 1.1.1.2 2010/05/24 23:36:03 sjg Exp $ - -.info just FYI -.warning this could be serious -.error this is fatal - -all: - -.info.html: - @echo this should be ignored diff --git a/external/bsd/bmake/dist/unit-tests/export b/external/bsd/bmake/dist/unit-tests/export deleted file mode 100644 index 3e2ad9537f67..000000000000 --- a/external/bsd/bmake/dist/unit-tests/export +++ /dev/null @@ -1,22 +0,0 @@ -# $Id: export,v 1.1.1.1 2007/10/08 20:30:12 sjg Exp $ - -UT_TEST=export -UT_FOO=foo${BAR} -UT_FU=fubar -UT_ZOO=hoopie -UT_NO=all -# belive it or not, we expect this one to come out with $UT_FU unexpanded. -UT_DOLLAR= This is $$UT_FU - -.export UT_FU UT_FOO -.export UT_DOLLAR -# this one will be ignored -.export .MAKE.PID - -BAR=bar is ${UT_FU} - -.MAKE.EXPORTED+= UT_ZOO UT_TEST - -all: - @env | grep '^UT_' | sort - diff --git a/external/bsd/bmake/dist/unit-tests/export-all b/external/bsd/bmake/dist/unit-tests/export-all deleted file mode 100644 index a243fe3e35f7..000000000000 --- a/external/bsd/bmake/dist/unit-tests/export-all +++ /dev/null @@ -1,23 +0,0 @@ -# $Id: export-all,v 1.1.1.2 2010/04/21 04:26:14 sjg Exp $ - -UT_OK=good -UT_F=fine - -# the old way to do :tA -M_tAbad = C,.*,cd & \&\& 'pwd',:sh -# the new -M_tA = tA - -here := ${.PARSEDIR} - -# this will cause trouble (recursing if we let it) -UT_BADDIR = ${${here}/../${here:T}:L:${M_tAbad}:T} -# this will be ok -UT_OKDIR = ${${here}/../${here:T}:L:${M_tA}:T} - -.export - -.include "export" - -UT_TEST=export-all -UT_ALL=even this gets exported diff --git a/external/bsd/bmake/dist/unit-tests/forloop b/external/bsd/bmake/dist/unit-tests/forloop deleted file mode 100644 index 0b50e6675f6c..000000000000 --- a/external/bsd/bmake/dist/unit-tests/forloop +++ /dev/null @@ -1,45 +0,0 @@ -# $Id: forloop,v 1.1.1.1 2012/06/19 23:30:49 sjg Exp $ - -all: for-loop - -LIST = one "two and three" four "five" - -.if make(for-fail) -for-fail: - -XTRA_LIST = xtra -.else - -.for x in ${LIST} -X!= echo 'x=$x' >&2; echo -.endfor - -CFL = -I/this -I"This or that" -Ithat "-DTHIS=\"this and that\"" -cfl= -.for x in ${CFL} -X!= echo 'x=$x' >&2; echo -.if empty(cfl) -cfl= $x -.else -cfl+= $x -.endif -.endfor -X!= echo 'cfl=${cfl}' >&2; echo - -.if ${cfl} != ${CFL} -.error ${.newline}'${cfl}' != ${.newline}'${CFL}' -.endif - -.for a b in ${EMPTY} -X!= echo 'a=$a b=$b' >&2; echo -.endfor -.endif - -.for a b in ${LIST} ${LIST:tu} ${XTRA_LIST} -X!= echo 'a=$a b=$b' >&2; echo -.endfor - -for-loop: - @echo We expect an error next: - @(cd ${.CURDIR} && ${.MAKE} -f ${MAKEFILE} for-fail) && \ - { echo "Oops that should have failed!"; exit 1; } || echo OK diff --git a/external/bsd/bmake/dist/unit-tests/forsubst b/external/bsd/bmake/dist/unit-tests/forsubst deleted file mode 100644 index d3a7de1b38da..000000000000 --- a/external/bsd/bmake/dist/unit-tests/forsubst +++ /dev/null @@ -1,10 +0,0 @@ -# $Id: forsubst,v 1.1.1.1 2009/10/07 18:53:35 sjg Exp $ - -all: for-subst - -here := ${.PARSEDIR} -# this should not run foul of the parser -.for file in ${.PARSEFILE} -for-subst: ${file:S;^;${here}/;g} - @echo ".for with :S;... OK" -.endfor diff --git a/external/bsd/bmake/dist/unit-tests/hash b/external/bsd/bmake/dist/unit-tests/hash deleted file mode 100644 index 1ed84e776d09..000000000000 --- a/external/bsd/bmake/dist/unit-tests/hash +++ /dev/null @@ -1,18 +0,0 @@ -STR1= -STR2= a -STR3= ab -STR4= abc -STR5= abcd -STR6= abcde -STR7= abcdef -STR8= abcdefghijklmnopqrstuvwxyz - -all: - @echo ${STR1:hash} - @echo ${STR2:hash} - @echo ${STR3:hash} - @echo ${STR4:hash} - @echo ${STR5:hash} - @echo ${STR6:hash} - @echo ${STR7:hash} - @echo ${STR8:hash} diff --git a/external/bsd/bmake/dist/unit-tests/misc b/external/bsd/bmake/dist/unit-tests/misc deleted file mode 100644 index 4ba3655f4fa0..000000000000 --- a/external/bsd/bmake/dist/unit-tests/misc +++ /dev/null @@ -1,16 +0,0 @@ -# $Id: misc,v 1.1.1.1 2011/03/06 00:04:58 sjg Exp $ - -.if !exists(${.CURDIR}/) -.warning ${.CURDIR}/ doesn't exist ? -.endif - -.if !exists(${.CURDIR}/.) -.warning ${.CURDIR}/. doesn't exist ? -.endif - -.if !exists(${.CURDIR}/..) -.warning ${.CURDIR}/.. doesn't exist ? -.endif - -all: - @: all is well diff --git a/external/bsd/bmake/dist/unit-tests/moderrs b/external/bsd/bmake/dist/unit-tests/moderrs deleted file mode 100644 index b8f78ce3836b..000000000000 --- a/external/bsd/bmake/dist/unit-tests/moderrs +++ /dev/null @@ -1,31 +0,0 @@ -# $Id: moderrs,v 1.2 2006/05/11 18:53:39 sjg Exp $ -# -# various modifier error tests - -VAR=TheVariable -# incase we have to change it ;-) -MOD_UNKN=Z -MOD_TERM=S,V,v -MOD_S:= ${MOD_TERM}, - -all: modunkn modunknV varterm vartermV modtermV - -modunkn: - @echo "Expect: Unknown modifier 'Z'" - @echo "VAR:Z=${VAR:Z}" - -modunknV: - @echo "Expect: Unknown modifier 'Z'" - @echo "VAR:${MOD_UNKN}=${VAR:${MOD_UNKN}}" - -varterm: - @echo "Expect: Unclosed variable specification for VAR" - @echo VAR:S,V,v,=${VAR:S,V,v, - -vartermV: - @echo "Expect: Unclosed variable specification for VAR" - @echo VAR:${MOD_TERM},=${VAR:${MOD_S} - -modtermV: - @echo "Expect: Unclosed substitution for VAR (, missing)" - -@echo "VAR:${MOD_TERM}=${VAR:${MOD_TERM}}" diff --git a/external/bsd/bmake/dist/unit-tests/modmatch b/external/bsd/bmake/dist/unit-tests/modmatch deleted file mode 100644 index 48a1befb58b6..000000000000 --- a/external/bsd/bmake/dist/unit-tests/modmatch +++ /dev/null @@ -1,25 +0,0 @@ - -X=a b c d e - -.for x in $X -LIB${x:tu}=/tmp/lib$x.a -.endfor - -X_LIBS= ${LIBA} ${LIBD} ${LIBE} - -LIB?=a - -var = head -res = no -.if !empty(var:M${:Uhead\:tail:C/:.*//}) -res = OK -.endif - -all: - @for x in $X; do ${.MAKE} -f ${MAKEFILE} show LIB=$$x; done - @echo "Mscanner=${res}" - -show: - @echo 'LIB=${LIB} X_LIBS:M$${LIB$${LIB:tu}} is "${X_LIBS:M${LIB${LIB:tu}}}"' - @echo 'LIB=${LIB} X_LIBS:M*/lib$${LIB}.a is "${X_LIBS:M*/lib${LIB}.a}"' - @echo 'LIB=${LIB} X_LIBS:M*/lib$${LIB}.a:tu is "${X_LIBS:M*/lib${LIB}.a:tu}"' diff --git a/external/bsd/bmake/dist/unit-tests/modmisc b/external/bsd/bmake/dist/unit-tests/modmisc deleted file mode 100644 index d562e46a5487..000000000000 --- a/external/bsd/bmake/dist/unit-tests/modmisc +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: modmisc,v 1.1.1.5 2011/04/11 15:10:32 sjg Exp $ -# -# miscellaneous modifier tests - -# do not put any dirs in this list which exist on some -# but not all target systems - an exists() check is below. -path=:/bin:/tmp::/:.:/no/such/dir:. -# strip cwd from path. -MOD_NODOT=S/:/ /g:N.:ts: -# and decorate, note that $'s need to be doubled. Also note that -# the modifier_variable can be used with other modifiers. -MOD_NODOTX=S/:/ /g:N.:@d@'$$d'@ -# another mod - pretend it is more interesting -MOD_HOMES=S,/home/,/homes/, -MOD_OPT=@d@$${exists($$d):?$$d:$${d:S,/usr,/opt,}}@ -MOD_SEP=S,:, ,g - -all: modvar modvarloop modsysv - -modsysv: - @echo "The answer is ${libfoo.a:L:libfoo.a=42}" - -modvar: - @echo "path='${path}'" - @echo "path='${path:${MOD_NODOT}}'" - @echo "path='${path:S,home,homes,:${MOD_NODOT}}'" - @echo "path=${path:${MOD_NODOTX}:ts:}" - @echo "path=${path:${MOD_HOMES}:${MOD_NODOTX}:ts:}" - -.for d in ${path:${MOD_SEP}:N.} /usr/xbin -path_$d?= ${d:${MOD_OPT}:${MOD_HOMES}}/ -paths+= ${d:${MOD_OPT}:${MOD_HOMES}} -.endfor - -modvarloop: - @echo "path_/usr/xbin=${path_/usr/xbin}" - @echo "paths=${paths}" - @echo "PATHS=${paths:tu}" diff --git a/external/bsd/bmake/dist/unit-tests/modorder b/external/bsd/bmake/dist/unit-tests/modorder deleted file mode 100644 index 68b66fb6226d..000000000000 --- a/external/bsd/bmake/dist/unit-tests/modorder +++ /dev/null @@ -1,22 +0,0 @@ -# $NetBSD: modorder,v 1.2 2007/10/05 15:27:46 sjg Exp $ - -LIST= one two three four five six seven eight nine ten -LISTX= ${LIST:Ox} -LISTSX:= ${LIST:Ox} -TEST_RESULT= && echo Ok || echo Failed - -# unit-tests have to produce the same results on each run -# so we cannot actually include :Ox output. -all: - @echo "LIST = ${LIST}" - @echo "LIST:O = ${LIST:O}" - # Note that 1 in every 10! trials two independently generated - # randomized orderings will be the same. The test framework doesn't - # support checking probabilistic output, so we accept that the test - # will incorrectly fail with probability 2.8E-7. - @echo "LIST:Ox = `test '${LIST:Ox}' != '${LIST:Ox}' ${TEST_RESULT}`" - @echo "LIST:O:Ox = `test '${LIST:O:Ox}' != '${LIST:O:Ox}' ${TEST_RESULT}`" - @echo "LISTX = `test '${LISTX}' != '${LISTX}' ${TEST_RESULT}`" - @echo "LISTSX = `test '${LISTSX}' = '${LISTSX}' ${TEST_RESULT}`" - @echo "BADMOD 1 = ${LIST:OX}" - @echo "BADMOD 2 = ${LIST:OxXX}" diff --git a/external/bsd/bmake/dist/unit-tests/modts b/external/bsd/bmake/dist/unit-tests/modts deleted file mode 100644 index 616bd8944f21..000000000000 --- a/external/bsd/bmake/dist/unit-tests/modts +++ /dev/null @@ -1,43 +0,0 @@ - -LIST= one two three -LIST+= four five six - -FU_mod-ts = a / b / cool - -AAA= a a a -B.aaa= Baaa - -all: mod-ts - -# Use print or printf iff they are builtin. -# XXX note that this causes problems, when make decides -# there is no need to use a shell, so avoid where possible. -.if ${type print 2> /dev/null || echo:L:sh:Mbuiltin} != "" -PRINT= print -r -- -.elif ${type printf 2> /dev/null || echo:L:sh:Mbuiltin} != "" -PRINT= printf '%s\n' -.else -PRINT= echo -.endif - -mod-ts: - @echo 'LIST="${LIST}"' - @echo 'LIST:ts,="${LIST:ts,}"' - @echo 'LIST:ts/:tu="${LIST:ts/:tu}"' - @echo 'LIST:ts::tu="${LIST:ts::tu}"' - @echo 'LIST:ts:tu="${LIST:ts:tu}"' - @echo 'LIST:tu:ts/="${LIST:tu:ts/}"' - @echo 'LIST:ts:="${LIST:ts:}"' - @echo 'LIST:ts="${LIST:ts}"' - @echo 'LIST:ts:S/two/2/="${LIST:ts:S/two/2/}"' - @echo 'LIST:S/two/2/:ts="${LIST:S/two/2/:ts}"' - @echo 'LIST:ts/:S/two/2/="${LIST:ts/:S/two/2/}"' - @echo "Pretend the '/' in '/n' etc. below are back-slashes." - @${PRINT} 'LIST:ts/n="${LIST:ts\n}"' - @${PRINT} 'LIST:ts/t="${LIST:ts\t}"' - @${PRINT} 'LIST:ts/012:tu="${LIST:ts\012:tu}"' - @${PRINT} 'LIST:tx="${LIST:tx}"' - @${PRINT} 'LIST:ts/x:tu="${LIST:ts\x:tu}"' - @${PRINT} 'FU_$@="${FU_${@:ts}:ts}"' - @${PRINT} 'FU_$@:ts:T="${FU_${@:ts}:ts:T}" == cool?' - @${PRINT} 'B.$${AAA:ts}="${B.${AAA:ts}}" == Baaa?' diff --git a/external/bsd/bmake/dist/unit-tests/modword b/external/bsd/bmake/dist/unit-tests/modword deleted file mode 100644 index 39355d7bacfa..000000000000 --- a/external/bsd/bmake/dist/unit-tests/modword +++ /dev/null @@ -1,151 +0,0 @@ -# $Id: modword,v 1.1.1.1 2003/09/28 17:01:48 sjg Exp $ -# -# Test behaviour of new :[] modifier - -all: mod-squarebrackets mod-S-W mod-C-W mod-tW-tw - -LIST= one two three -LIST+= four five six -LONGLIST= 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 - -EMPTY= # the space should be ignored -ESCAPEDSPACE=\ # escaped space before the '#' -REALLYSPACE:=${EMPTY:C/^/ /W} -HASH= \# -AT= @ -STAR= * -ZERO= 0 -ONE= 1 -MINUSONE= -1 - -mod-squarebrackets: mod-squarebrackets-0-star-at \ - mod-squarebrackets-hash \ - mod-squarebrackets-n \ - mod-squarebrackets-start-end \ - mod-squarebrackets-nested - -mod-squarebrackets-0-star-at: - @echo 'LIST:[]="${LIST:[]}" is an error' - @echo 'LIST:[0]="${LIST:[0]}"' - @echo 'LIST:[0x0]="${LIST:[0x0]}"' - @echo 'LIST:[000]="${LIST:[000]}"' - @echo 'LIST:[*]="${LIST:[*]}"' - @echo 'LIST:[@]="${LIST:[@]}"' - @echo 'LIST:[0]:C/ /,/="${LIST:[0]:C/ /,/}"' - @echo 'LIST:[0]:C/ /,/g="${LIST:[0]:C/ /,/g}"' - @echo 'LIST:[0]:C/ /,/1g="${LIST:[0]:C/ /,/1g}"' - @echo 'LIST:[*]:C/ /,/="${LIST:[*]:C/ /,/}"' - @echo 'LIST:[*]:C/ /,/g="${LIST:[*]:C/ /,/g}"' - @echo 'LIST:[*]:C/ /,/1g="${LIST:[*]:C/ /,/1g}"' - @echo 'LIST:[@]:C/ /,/="${LIST:[@]:C/ /,/}"' - @echo 'LIST:[@]:C/ /,/g="${LIST:[@]:C/ /,/g}"' - @echo 'LIST:[@]:C/ /,/1g="${LIST:[@]:C/ /,/1g}"' - @echo 'LIST:[@]:[0]:C/ /,/="${LIST:[@]:[0]:C/ /,/}"' - @echo 'LIST:[0]:[@]:C/ /,/="${LIST:[0]:[@]:C/ /,/}"' - @echo 'LIST:[@]:[*]:C/ /,/="${LIST:[@]:[*]:C/ /,/}"' - @echo 'LIST:[*]:[@]:C/ /,/="${LIST:[*]:[@]:C/ /,/}"' - -mod-squarebrackets-hash: - @echo 'EMPTY="${EMPTY}"' - @echo 'EMPTY:[#]="${EMPTY:[#]}" == 1 ?' - @echo 'ESCAPEDSPACE="${ESCAPEDSPACE}"' - @echo 'ESCAPEDSPACE:[#]="${ESCAPEDSPACE:[#]}" == 1 ?' - @echo 'REALLYSPACE="${REALLYSPACE}"' - @echo 'REALLYSPACE:[#]="${REALLYSPACE:[#]}" == 1 ?' - @echo 'LIST:[#]="${LIST:[#]}"' - @echo 'LIST:[0]:[#]="${LIST:[0]:[#]}" == 1 ?' - @echo 'LIST:[*]:[#]="${LIST:[*]:[#]}" == 1 ?' - @echo 'LIST:[@]:[#]="${LIST:[@]:[#]}"' - @echo 'LIST:[1]:[#]="${LIST:[1]:[#]}"' - @echo 'LIST:[1..3]:[#]="${LIST:[1..3]:[#]}"' - -mod-squarebrackets-n: - @echo 'EMPTY:[1]="${EMPTY:[1]}"' - @echo 'ESCAPEDSPACE="${ESCAPEDSPACE}"' - @echo 'ESCAPEDSPACE:[1]="${ESCAPEDSPACE:[1]}"' - @echo 'REALLYSPACE="${REALLYSPACE}"' - @echo 'REALLYSPACE:[1]="${REALLYSPACE:[1]}" == "" ?' - @echo 'REALLYSPACE:[*]:[1]="${REALLYSPACE:[*]:[1]}" == " " ?' - @echo 'LIST:[1]="${LIST:[1]}"' - @echo 'LIST:[1.]="${LIST:[1.]}" is an error' - @echo 'LIST:[1].="${LIST:[1].}" is an error' - @echo 'LIST:[2]="${LIST:[2]}"' - @echo 'LIST:[6]="${LIST:[6]}"' - @echo 'LIST:[7]="${LIST:[7]}"' - @echo 'LIST:[999]="${LIST:[999]}"' - @echo 'LIST:[-]="${LIST:[-]}" is an error' - @echo 'LIST:[--]="${LIST:[--]}" is an error' - @echo 'LIST:[-1]="${LIST:[-1]}"' - @echo 'LIST:[-2]="${LIST:[-2]}"' - @echo 'LIST:[-6]="${LIST:[-6]}"' - @echo 'LIST:[-7]="${LIST:[-7]}"' - @echo 'LIST:[-999]="${LIST:[-999]}"' - @echo 'LONGLIST:[17]="${LONGLIST:[17]}"' - @echo 'LONGLIST:[0x11]="${LONGLIST:[0x11]}"' - @echo 'LONGLIST:[021]="${LONGLIST:[021]}"' - @echo 'LIST:[0]:[1]="${LIST:[0]:[1]}"' - @echo 'LIST:[*]:[1]="${LIST:[*]:[1]}"' - @echo 'LIST:[@]:[1]="${LIST:[@]:[1]}"' - @echo 'LIST:[0]:[2]="${LIST:[0]:[2]}"' - @echo 'LIST:[*]:[2]="${LIST:[*]:[2]}"' - @echo 'LIST:[@]:[2]="${LIST:[@]:[2]}"' - @echo 'LIST:[*]:C/ /,/:[2]="${LIST:[*]:C/ /,/:[2]}"' - @echo 'LIST:[*]:C/ /,/:[*]:[2]="${LIST:[*]:C/ /,/:[*]:[2]}"' - @echo 'LIST:[*]:C/ /,/:[@]:[2]="${LIST:[*]:C/ /,/:[@]:[2]}"' - -mod-squarebrackets-start-end: - @echo 'LIST:[1.]="${LIST:[1.]}" is an error' - @echo 'LIST:[1..]="${LIST:[1..]}" is an error' - @echo 'LIST:[1..1]="${LIST:[1..1]}"' - @echo 'LIST:[1..1.]="${LIST:[1..1.]}" is an error' - @echo 'LIST:[1..2]="${LIST:[1..2]}"' - @echo 'LIST:[2..1]="${LIST:[2..1]}"' - @echo 'LIST:[3..-2]="${LIST:[3..-2]}"' - @echo 'LIST:[-4..4]="${LIST:[-4..4]}"' - @echo 'LIST:[0..1]="${LIST:[0..1]}" is an error' - @echo 'LIST:[-1..0]="${LIST:[-1..0]}" is an error' - @echo 'LIST:[-1..1]="${LIST:[-1..1]}"' - @echo 'LIST:[0..0]="${LIST:[0..0]}"' - @echo 'LIST:[3..99]="${LIST:[3..99]}"' - @echo 'LIST:[-3..-99]="${LIST:[-3..-99]}"' - @echo 'LIST:[-99..-3]="${LIST:[-99..-3]}"' - -mod-squarebrackets-nested: - @echo 'HASH="${HASH}" == "#" ?' - @echo 'LIST:[$${HASH}]="${LIST:[${HASH}]}"' - @echo 'LIST:[$${ZERO}]="${LIST:[${ZERO}]}"' - @echo 'LIST:[$${ZERO}x$${ONE}]="${LIST:[${ZERO}x${ONE}]}"' - @echo 'LIST:[$${ONE}]="${LIST:[${ONE}]}"' - @echo 'LIST:[$${MINUSONE}]="${LIST:[${MINUSONE}]}"' - @echo 'LIST:[$${STAR}]="${LIST:[${STAR}]}"' - @echo 'LIST:[$${AT}]="${LIST:[${AT}]}"' - @echo 'LIST:[$${EMPTY}]="${LIST:[${EMPTY}]}" is an error' - @echo 'LIST:[$${LONGLIST:[21]:S/2//}]="${LIST:[${LONGLIST:[21]:S/2//}]}"' - @echo 'LIST:[$${LIST:[#]}]="${LIST:[${LIST:[#]}]}"' - @echo 'LIST:[$${LIST:[$${HASH}]}]="${LIST:[${LIST:[${HASH}]}]}"' - -mod-C-W: - @echo 'LIST:C/ /,/="${LIST:C/ /,/}"' - @echo 'LIST:C/ /,/W="${LIST:C/ /,/W}"' - @echo 'LIST:C/ /,/gW="${LIST:C/ /,/gW}"' - @echo 'EMPTY:C/^/,/="${EMPTY:C/^/,/}"' - @echo 'EMPTY:C/^/,/W="${EMPTY:C/^/,/W}"' - -mod-S-W: - @echo 'LIST:S/ /,/="${LIST:S/ /,/}"' - @echo 'LIST:S/ /,/W="${LIST:S/ /,/W}"' - @echo 'LIST:S/ /,/gW="${LIST:S/ /,/gW}"' - @echo 'EMPTY:S/^/,/="${EMPTY:S/^/,/}"' - @echo 'EMPTY:S/^/,/W="${EMPTY:S/^/,/W}"' - -mod-tW-tw: - @echo 'LIST:tW="${LIST:tW}"' - @echo 'LIST:tw="${LIST:tw}"' - @echo 'LIST:tW:C/ /,/="${LIST:tW:C/ /,/}"' - @echo 'LIST:tW:C/ /,/g="${LIST:tW:C/ /,/g}"' - @echo 'LIST:tW:C/ /,/1g="${LIST:tW:C/ /,/1g}"' - @echo 'LIST:tw:C/ /,/="${LIST:tw:C/ /,/}"' - @echo 'LIST:tw:C/ /,/g="${LIST:tw:C/ /,/g}"' - @echo 'LIST:tw:C/ /,/1g="${LIST:tw:C/ /,/1g}"' - @echo 'LIST:tw:tW:C/ /,/="${LIST:tw:tW:C/ /,/}"' - @echo 'LIST:tW:tw:C/ /,/="${LIST:tW:tw:C/ /,/}"' diff --git a/external/bsd/bmake/dist/unit-tests/phony-end b/external/bsd/bmake/dist/unit-tests/phony-end deleted file mode 100644 index d61884cafc44..000000000000 --- a/external/bsd/bmake/dist/unit-tests/phony-end +++ /dev/null @@ -1,9 +0,0 @@ -# $Id: phony-end,v 1.1.1.1 2011/10/01 17:19:39 sjg Exp $ - -all ok also.ok bug phony: - @echo '${.TARGET .PREFIX .IMPSRC:L:@v@$v="${$v}"@}' - -.END: ok also.ok bug - -phony bug: .PHONY -all: phony diff --git a/external/bsd/bmake/dist/unit-tests/posix b/external/bsd/bmake/dist/unit-tests/posix deleted file mode 100644 index 48ed7a3cacd7..000000000000 --- a/external/bsd/bmake/dist/unit-tests/posix +++ /dev/null @@ -1,24 +0,0 @@ -# $Id: posix,v 1.1.1.1 2004/05/08 16:45:39 sjg Exp $ - -all: x plus subs err - -x: - @echo "Posix says we should execute the command as if run by system(3)" - @echo "Expect 'Hello,' and 'World!'" - @echo Hello,; false; echo "World!" - -plus: - @echo a command - +@echo "a command prefixed by '+' executes even with -n" - @echo another command - -subs: - @echo make -n - @${.MAKE} -f ${MAKEFILE} -n plus - @echo make -n -j1 - @${.MAKE} -f ${MAKEFILE} -n -j1 plus - -err: - @(echo Now we expect an error...; exit 1) - @echo "Oops! you shouldn't see this!" - diff --git a/external/bsd/bmake/dist/unit-tests/qequals b/external/bsd/bmake/dist/unit-tests/qequals deleted file mode 100644 index e23078e5fd98..000000000000 --- a/external/bsd/bmake/dist/unit-tests/qequals +++ /dev/null @@ -1,8 +0,0 @@ -# $Id: qequals,v 1.1.1.1 2008/03/31 00:13:05 sjg Exp $ - -M= i386 -V.i386= OK -V.$M ?= bug - -all: - @echo 'V.$M ?= ${V.$M}' diff --git a/external/bsd/bmake/dist/unit-tests/sysv b/external/bsd/bmake/dist/unit-tests/sysv deleted file mode 100644 index 9eedacba3b67..000000000000 --- a/external/bsd/bmake/dist/unit-tests/sysv +++ /dev/null @@ -1,26 +0,0 @@ -# $Id: sysv,v 1.1.1.2 2011/06/05 04:23:49 sjg Exp $ - -FOO ?= -FOOBAR = $(FOO:=bar) - -_this := ${.PARSEDIR}/${.PARSEFILE} - -B = /b -S = / -FUN = ${B}${S}fun -SUN = the Sun - -# we expect nothing when FOO is empty -all: foo fun - -foo: - @echo FOOBAR = $(FOOBAR) -.if empty(FOO) - @FOO="foo fu" ${.MAKE} -f ${_this} foo -.endif - -fun: - @echo ${FUN:T} - @echo ${FUN:${B}${S}fun=fun} - @echo ${FUN:${B}${S}%=%} - @echo ${In:L:%=% ${SUN}} diff --git a/external/bsd/bmake/dist/unit-tests/ternary b/external/bsd/bmake/dist/unit-tests/ternary deleted file mode 100644 index 77f834981c6c..000000000000 --- a/external/bsd/bmake/dist/unit-tests/ternary +++ /dev/null @@ -1,8 +0,0 @@ - -all: - @for x in "" A= A=42; do ${.MAKE} -f ${MAKEFILE} show $$x; done - -show: - @echo "The answer is ${A:?known:unknown}" - @echo "The answer is ${A:?$A:unknown}" - @echo "The answer is ${empty(A):?empty:$A}" diff --git a/external/bsd/bmake/dist/unit-tests/test.exp b/external/bsd/bmake/dist/unit-tests/test.exp deleted file mode 100644 index 932d84e305a6..000000000000 --- a/external/bsd/bmake/dist/unit-tests/test.exp +++ /dev/null @@ -1,369 +0,0 @@ -comment testing start -this is foo -This is how a comment looks: # comment -comment testing done -make: "cond1" line 75: warning: extra else -make: "cond1" line 85: warning: extra else -2 is prime -A='other' B='unknown' C='clever' o='no,no' -Passed: - var - ("var") - (var != var) - var != var - !((var != var) && defined(name)) - var == quoted - -1 is not prime -2 is prime -3 is prime -4 is not prime -5 is prime - -make: warning: String comparison operator should be either == or != -make: Bad conditional expression `"0" > 0' in "0" > 0?OK:No - -OK -make: "error" line 3: just FYI -make: "error" line 4: warning: this could be serious -make: "error" line 5: this is fatal -UT_DOLLAR=This is $UT_FU -UT_FOO=foobar is fubar -UT_FU=fubar -UT_TEST=export -UT_ZOO=hoopie -UT_ALL=even this gets exported -UT_BADDIR=unit-tests -UT_DOLLAR=This is $UT_FU -UT_F=fine -UT_FOO=foobar is fubar -UT_FU=fubar -UT_NO=all -UT_OK=good -UT_OKDIR=unit-tests -UT_TEST=export-all -UT_ZOO=hoopie -At first, I am -happy -and now: sad -.ERROR: Looks like 'sad' is upset. -*** Error code 1 - -Stop. -make: stopped in unit-tests -simple.1 -simple.1 -simple.2 -simple.2 -recursive.1.1.* -recursive.1.1.* -recursive.1.1.* -recursive.1.1.* -recursive.1.99 -recursive.1.99 -recursive.2.1.* -recursive.2.1.* -recursive.2.1.* -recursive.2.1.* -recursive.2.99 -recursive.2.99 -shared.0 -shared.0 -shared.1.99 -shared.1.99 -shared.2.1 -shared.2.1 -shared.2.99 -shared.2.99 -make: Graph cycles through `cycle.2.99' -make: Graph cycles through `cycle.2.98' -make: Graph cycles through `cycle.2.97' -cycle.1.99 -cycle.1.99 -x=one -x="two and three" -x=four -x="five" -x=-I/this -x=-I"This or that" -x=-Ithat -x="-DTHIS=\"this and that\"" -cfl=-I/this -I"This or that" -Ithat "-DTHIS=\"this and that\"" -a=one b="two and three" -a=four b="five" -a=ONE b="TWO AND THREE" -a=FOUR b="FIVE" -We expect an error next: -make: "forloop" line 38: Wrong number of words (9) in .for substitution list with 2 vars -make: Fatal errors encountered -- cannot continue -make: stopped in unit-tests -OK -.for with :S;... OK -b2af338b -3360ac65 -7747f046 -9ca87054 -880fe816 -208fcbd3 -d5d376eb -de41416c -Expect: Unknown modifier 'Z' -make: Unknown modifier 'Z' -VAR:Z= -Expect: Unknown modifier 'Z' -make: Unknown modifier 'Z' -VAR:Z= -Expect: Unclosed variable specification for VAR -make: Unclosed variable specification (expecting '}') for "VAR" (value "Thevariable") modifier S -VAR:S,V,v,=Thevariable -Expect: Unclosed variable specification for VAR -make: Unclosed variable specification after complex modifier (expecting '}') for VAR -VAR:S,V,v,=Thevariable -Expect: Unclosed substitution for VAR (, missing) -make: Unclosed substitution for VAR (, missing) -VAR:S,V,v= -LIB=a X_LIBS:M${LIB${LIB:tu}} is "/tmp/liba.a" -LIB=a X_LIBS:M*/lib${LIB}.a is "/tmp/liba.a" -LIB=a X_LIBS:M*/lib${LIB}.a:tu is "/TMP/LIBA.A" -LIB=b X_LIBS:M${LIB${LIB:tu}} is "" -LIB=b X_LIBS:M*/lib${LIB}.a is "" -LIB=b X_LIBS:M*/lib${LIB}.a:tu is "" -LIB=c X_LIBS:M${LIB${LIB:tu}} is "" -LIB=c X_LIBS:M*/lib${LIB}.a is "" -LIB=c X_LIBS:M*/lib${LIB}.a:tu is "" -LIB=d X_LIBS:M${LIB${LIB:tu}} is "/tmp/libd.a" -LIB=d X_LIBS:M*/lib${LIB}.a is "/tmp/libd.a" -LIB=d X_LIBS:M*/lib${LIB}.a:tu is "/TMP/LIBD.A" -LIB=e X_LIBS:M${LIB${LIB:tu}} is "/tmp/libe.a" -LIB=e X_LIBS:M*/lib${LIB}.a is "/tmp/libe.a" -LIB=e X_LIBS:M*/lib${LIB}.a:tu is "/TMP/LIBE.A" -Mscanner=OK -path=':/bin:/tmp::/:.:/no/such/dir:.' -path='/bin:/tmp:/:/no/such/dir' -path='/bin:/tmp:/:/no/such/dir' -path='/bin':'/tmp':'/':'/no/such/dir' -path='/bin':'/tmp':'/':'/no/such/dir' -path_/usr/xbin=/opt/xbin/ -paths=/bin /tmp / /no/such/dir /opt/xbin -PATHS=/BIN /TMP / /NO/SUCH/DIR /OPT/XBIN -The answer is 42 -LIST = one two three four five six seven eight nine ten -LIST:O = eight five four nine one seven six ten three two -LIST:Ox = Ok -LIST:O:Ox = Ok -LISTX = Ok -LISTSX = Ok -make: Bad modifier `:OX' for LIST -BADMOD 1 = } -make: Bad modifier `:OxXX' for LIST -BADMOD 2 = XX} -LIST="one two three four five six" -LIST:ts,="one,two,three,four,five,six" -LIST:ts/:tu="ONE/TWO/THREE/FOUR/FIVE/SIX" -LIST:ts::tu="ONE:TWO:THREE:FOUR:FIVE:SIX" -LIST:ts:tu="ONETWOTHREEFOURFIVESIX" -LIST:tu:ts/="ONE/TWO/THREE/FOUR/FIVE/SIX" -LIST:ts:="one:two:three:four:five:six" -LIST:ts="onetwothreefourfivesix" -LIST:ts:S/two/2/="one2threefourfivesix" -LIST:S/two/2/:ts="one2threefourfivesix" -LIST:ts/:S/two/2/="one/2/three/four/five/six" -Pretend the '/' in '/n' etc. below are back-slashes. -LIST:ts/n="one -two -three -four -five -six" -LIST:ts/t="one two three four five six" -LIST:ts/012:tu="ONE -TWO -THREE -FOUR -FIVE -SIX" -make: Bad modifier `:tx' for LIST -LIST:tx="}" -make: Bad modifier `:ts\x' for LIST -LIST:ts/x:tu="\x:tu}" -FU_mod-ts="a/b/cool" -FU_mod-ts:ts:T="cool" == cool? -B.${AAA:ts}="Baaa" == Baaa? -make: Bad modifier `:[]' for LIST -LIST:[]="" is an error -LIST:[0]="one two three four five six" -LIST:[0x0]="one two three four five six" -LIST:[000]="one two three four five six" -LIST:[*]="one two three four five six" -LIST:[@]="one two three four five six" -LIST:[0]:C/ /,/="one,two three four five six" -LIST:[0]:C/ /,/g="one,two,three,four,five,six" -LIST:[0]:C/ /,/1g="one,two,three,four,five,six" -LIST:[*]:C/ /,/="one,two three four five six" -LIST:[*]:C/ /,/g="one,two,three,four,five,six" -LIST:[*]:C/ /,/1g="one,two,three,four,five,six" -LIST:[@]:C/ /,/="one two three four five six" -LIST:[@]:C/ /,/g="one two three four five six" -LIST:[@]:C/ /,/1g="one two three four five six" -LIST:[@]:[0]:C/ /,/="one,two three four five six" -LIST:[0]:[@]:C/ /,/="one two three four five six" -LIST:[@]:[*]:C/ /,/="one,two three four five six" -LIST:[*]:[@]:C/ /,/="one two three four five six" -EMPTY="" -EMPTY:[#]="1" == 1 ? -ESCAPEDSPACE="\ " -ESCAPEDSPACE:[#]="1" == 1 ? -REALLYSPACE=" " -REALLYSPACE:[#]="1" == 1 ? -LIST:[#]="6" -LIST:[0]:[#]="1" == 1 ? -LIST:[*]:[#]="1" == 1 ? -LIST:[@]:[#]="6" -LIST:[1]:[#]="1" -LIST:[1..3]:[#]="3" -EMPTY:[1]="" -ESCAPEDSPACE="\ " -ESCAPEDSPACE:[1]="\ " -REALLYSPACE=" " -REALLYSPACE:[1]="" == "" ? -REALLYSPACE:[*]:[1]=" " == " " ? -LIST:[1]="one" -make: Bad modifier `:[1.]' for LIST -LIST:[1.]="" is an error -make: Bad modifier `:[1].' for LIST -LIST:[1].="}" is an error -LIST:[2]="two" -LIST:[6]="six" -LIST:[7]="" -LIST:[999]="" -make: Bad modifier `:[-]' for LIST -LIST:[-]="" is an error -make: Bad modifier `:[--]' for LIST -LIST:[--]="" is an error -LIST:[-1]="six" -LIST:[-2]="five" -LIST:[-6]="one" -LIST:[-7]="" -LIST:[-999]="" -LONGLIST:[17]="17" -LONGLIST:[0x11]="17" -LONGLIST:[021]="17" -LIST:[0]:[1]="one two three four five six" -LIST:[*]:[1]="one two three four five six" -LIST:[@]:[1]="one" -LIST:[0]:[2]="" -LIST:[*]:[2]="" -LIST:[@]:[2]="two" -LIST:[*]:C/ /,/:[2]="" -LIST:[*]:C/ /,/:[*]:[2]="" -LIST:[*]:C/ /,/:[@]:[2]="three" -make: Bad modifier `:[1.]' for LIST -LIST:[1.]="" is an error -make: Bad modifier `:[1..]' for LIST -LIST:[1..]="" is an error -LIST:[1..1]="one" -make: Bad modifier `:[1..1.]' for LIST -LIST:[1..1.]="" is an error -LIST:[1..2]="one two" -LIST:[2..1]="two one" -LIST:[3..-2]="three four five" -LIST:[-4..4]="three four" -make: Bad modifier `:[0..1]' for LIST -LIST:[0..1]="" is an error -make: Bad modifier `:[-1..0]' for LIST -LIST:[-1..0]="" is an error -LIST:[-1..1]="six five four three two one" -LIST:[0..0]="one two three four five six" -LIST:[3..99]="three four five six" -LIST:[-3..-99]="four three two one" -LIST:[-99..-3]="one two three four" -HASH="#" == "#" ? -LIST:[${HASH}]="6" -LIST:[${ZERO}]="one two three four five six" -LIST:[${ZERO}x${ONE}]="one" -LIST:[${ONE}]="one" -LIST:[${MINUSONE}]="six" -LIST:[${STAR}]="one two three four five six" -LIST:[${AT}]="one two three four five six" -make: Bad modifier `:[${EMPTY' for LIST -LIST:[${EMPTY}]="" is an error -LIST:[${LONGLIST:[21]:S/2//}]="one" -LIST:[${LIST:[#]}]="six" -LIST:[${LIST:[${HASH}]}]="six" -LIST:S/ /,/="one two three four five six" -LIST:S/ /,/W="one,two three four five six" -LIST:S/ /,/gW="one,two,three,four,five,six" -EMPTY:S/^/,/="," -EMPTY:S/^/,/W="," -LIST:C/ /,/="one two three four five six" -LIST:C/ /,/W="one,two three four five six" -LIST:C/ /,/gW="one,two,three,four,five,six" -EMPTY:C/^/,/="," -EMPTY:C/^/,/W="," -LIST:tW="one two three four five six" -LIST:tw="one two three four five six" -LIST:tW:C/ /,/="one,two three four five six" -LIST:tW:C/ /,/g="one,two,three,four,five,six" -LIST:tW:C/ /,/1g="one,two,three,four,five,six" -LIST:tw:C/ /,/="one two three four five six" -LIST:tw:C/ /,/g="one two three four five six" -LIST:tw:C/ /,/1g="one two three four five six" -LIST:tw:tW:C/ /,/="one,two three four five six" -LIST:tW:tw:C/ /,/="one two three four five six" -.TARGET="phony" .PREFIX="phony" .IMPSRC="" -.TARGET="all" .PREFIX="all" .IMPSRC="" -.TARGET="ok" .PREFIX="ok" .IMPSRC="" -.TARGET="also.ok" .PREFIX="also.ok" .IMPSRC="" -.TARGET="bug" .PREFIX="bug" .IMPSRC="" -Posix says we should execute the command as if run by system(3) -Expect 'Hello,' and 'World!' -Hello, -World! -a command -a command prefixed by '+' executes even with -n -another command -make -n -echo a command -echo "a command prefixed by '+' executes even with -n" -a command prefixed by '+' executes even with -n -echo another command -make -n -j1 -{ echo a command -} || exit $? -echo "a command prefixed by '+' executes even with -n" -a command prefixed by '+' executes even with -n -{ echo another command -} || exit $? -Now we expect an error... -*** Error code 1 (continuing) -`all' not remade because of errors. -V.i386 ?= OK -FOOBAR = -FOOBAR = foobar fubar -fun -fun -fun -In the Sun -The answer is unknown -The answer is unknown -The answer is empty -The answer is known -The answer is -The answer is empty -The answer is known -The answer is 42 -The answer is 42 -UT_DOLLAR=This is $UT_FU -UT_FU=fubar -UT_TEST=unexport -UT_TEST=unexport-env -default FU=fu FOO=foo VAR= -two FU=bar FOO=goo VAR= -three FU=bar FOO=goo VAR= -four FU=bar FOO=goo VAR=Internal -five FU=bar FOO=goo VAR=Internal -five v=is x k=is x -six v=is y k=is y -show-v v=override k=override -*** Error code 1 (ignored) -*** Error code 1 (ignored) diff --git a/external/bsd/bmake/dist/unit-tests/unexport b/external/bsd/bmake/dist/unit-tests/unexport deleted file mode 100644 index fb40d0ccf742..000000000000 --- a/external/bsd/bmake/dist/unit-tests/unexport +++ /dev/null @@ -1,8 +0,0 @@ -# $Id: unexport,v 1.1.1.1 2009/11/19 00:31:11 sjg Exp $ - -# pick up a bunch of exported vars -.include "export" - -.unexport UT_ZOO UT_FOO - -UT_TEST = unexport diff --git a/external/bsd/bmake/dist/unit-tests/unexport-env b/external/bsd/bmake/dist/unit-tests/unexport-env deleted file mode 100644 index f6a2ff998268..000000000000 --- a/external/bsd/bmake/dist/unit-tests/unexport-env +++ /dev/null @@ -1,14 +0,0 @@ -# $Id: unexport-env,v 1.1.1.1 2009/11/19 00:31:11 sjg Exp $ - -# pick up a bunch of exported vars -.include "export" - -# an example of setting up a minimal environment. -PATH = /bin:/usr/bin:/sbin:/usr/sbin - -# now clobber the environment to just PATH and UT_TEST -UT_TEST = unexport-env - -# this removes everything -.unexport-env -.export PATH UT_TEST diff --git a/external/bsd/bmake/dist/unit-tests/varcmd b/external/bsd/bmake/dist/unit-tests/varcmd deleted file mode 100644 index a58e01430264..000000000000 --- a/external/bsd/bmake/dist/unit-tests/varcmd +++ /dev/null @@ -1,49 +0,0 @@ -# $Id: varcmd,v 1.3 2008/05/15 04:30:47 sjg Exp $ -# -# Test behaviour of recursive make and vars set on command line. - -FU=fu -FOO?=foo -.if !empty(.TARGETS) -TAG=${.TARGETS} -.endif -TAG?=default - -all: one - -show: - @echo "${TAG} FU=${FU} FOO=${FOO} VAR=${VAR}" - -one: show - @${.MAKE} -f ${MAKEFILE} FU=bar FOO=goo two - -two: show - @${.MAKE} -f ${MAKEFILE} three - -three: show - @${.MAKE} -f ${MAKEFILE} four - - -.ifmake four -VAR=Internal -.MAKEOVERRIDES+= VAR -.endif - -four: show - @${.MAKE} -f ${MAKEFILE} five - -M = x -V.y = is y -V.x = is x -V := ${V.$M} -K := ${V} - -show-v: - @echo '${TAG} v=${V} k=${K}' - -five: show show-v - @${.MAKE} -f ${MAKEFILE} M=y six - -six: show-v - @${.MAKE} -f ${MAKEFILE} V=override show-v - diff --git a/external/bsd/bmake/dist/util.c b/external/bsd/bmake/dist/util.c deleted file mode 100644 index a63fd33f8f51..000000000000 --- a/external/bsd/bmake/dist/util.c +++ /dev/null @@ -1,619 +0,0 @@ -/* $NetBSD: util.c,v 1.53 2012/06/04 22:45:05 sjg Exp $ */ - -/* - * Missing stuff from OS's - * - * $Id: util.c,v 1.32 2012/06/06 20:08:44 sjg Exp $ - */ - -#include "make.h" - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: util.c,v 1.53 2012/06/04 22:45:05 sjg Exp $"; -#else -#ifndef lint -__RCSID("$NetBSD: util.c,v 1.53 2012/06/04 22:45:05 sjg Exp $"); -#endif -#endif - -#include -#include -#include - -#if !defined(HAVE_STRERROR) -extern int errno, sys_nerr; -extern char *sys_errlist[]; - -char * -strerror(int e) -{ - static char buf[100]; - if (e < 0 || e >= sys_nerr) { - snprintf(buf, sizeof(buf), "Unknown error %d", e); - return buf; - } - else - return sys_errlist[e]; -} -#endif - -#if !defined(HAVE_GETENV) || !defined(HAVE_SETENV) || !defined(HAVE_UNSETENV) -extern char **environ; - -static char * -findenv(const char *name, int *offset) -{ - size_t i, len; - char *p, *q; - - len = strlen(name); - for (i = 0; (q = environ[i]); i++) { - p = strchr(q, '='); - if (p == NULL || p - q != len) - continue; - if (strncmp(name, q, len) == 0) { - *offset = i; - return q + len + 1; - } - } - *offset = i; - return NULL; -} - -char * -getenv(const char *name) -{ - int offset; - - return(findenv(name, &offset)); -} - -int -unsetenv(const char *name) -{ - char **p; - int offset; - - if (name == NULL || *name == '\0' || strchr(name, '=') != NULL) { - errno = EINVAL; - return -1; - } - - while (findenv(name, &offset)) { /* if set multiple times */ - for (p = &environ[offset];; ++p) - if (!(*p = *(p + 1))) - break; - } - return 0; -} - -int -setenv(const char *name, const char *value, int rewrite) -{ - char *c, **newenv; - const char *cc; - size_t l_value, size; - int offset; - - if (name == NULL || value == NULL) { - errno = EINVAL; - return -1; - } - - if (*value == '=') /* no `=' in value */ - ++value; - l_value = strlen(value); - - /* find if already exists */ - if ((c = findenv(name, &offset))) { - if (!rewrite) - return 0; - if (strlen(c) >= l_value) /* old larger; copy over */ - goto copy; - } else { /* create new slot */ - size = sizeof(char *) * (offset + 2); - if (savedEnv == environ) { /* just increase size */ - if ((newenv = realloc(savedEnv, size)) == NULL) - return -1; - savedEnv = newenv; - } else { /* get new space */ - /* - * We don't free here because we don't know if - * the first allocation is valid on all OS's - */ - if ((savedEnv = malloc(size)) == NULL) - return -1; - (void)memcpy(savedEnv, environ, size - sizeof(char *)); - } - environ = savedEnv; - environ[offset + 1] = NULL; - } - for (cc = name; *cc && *cc != '='; ++cc) /* no `=' in name */ - continue; - size = cc - name; - /* name + `=' + value */ - if ((environ[offset] = malloc(size + l_value + 2)) == NULL) - return -1; - c = environ[offset]; - (void)memcpy(c, name, size); - c += size; - *c++ = '='; -copy: - (void)memcpy(c, value, l_value + 1); - return 0; -} - -#ifdef TEST -int -main(int argc, char *argv[]) -{ - setenv(argv[1], argv[2], 0); - printf("%s\n", getenv(argv[1])); - unsetenv(argv[1]); - printf("%s\n", getenv(argv[1])); - return 0; -} -#endif - -#endif - - -#if defined(__hpux__) || defined(__hpux) -/* strrcpy(): - * Like strcpy, going backwards and returning the new pointer - */ -static char * -strrcpy(char *ptr, char *str) -{ - int len = strlen(str); - - while (len) - *--ptr = str[--len]; - - return (ptr); -} /* end strrcpy */ - - -char *sys_siglist[] = { - "Signal 0", - "Hangup", /* SIGHUP */ - "Interrupt", /* SIGINT */ - "Quit", /* SIGQUIT */ - "Illegal instruction", /* SIGILL */ - "Trace/BPT trap", /* SIGTRAP */ - "IOT trap", /* SIGIOT */ - "EMT trap", /* SIGEMT */ - "Floating point exception", /* SIGFPE */ - "Killed", /* SIGKILL */ - "Bus error", /* SIGBUS */ - "Segmentation fault", /* SIGSEGV */ - "Bad system call", /* SIGSYS */ - "Broken pipe", /* SIGPIPE */ - "Alarm clock", /* SIGALRM */ - "Terminated", /* SIGTERM */ - "User defined signal 1", /* SIGUSR1 */ - "User defined signal 2", /* SIGUSR2 */ - "Child exited", /* SIGCLD */ - "Power-fail restart", /* SIGPWR */ - "Virtual timer expired", /* SIGVTALRM */ - "Profiling timer expired", /* SIGPROF */ - "I/O possible", /* SIGIO */ - "Window size changes", /* SIGWINDOW */ - "Stopped (signal)", /* SIGSTOP */ - "Stopped", /* SIGTSTP */ - "Continued", /* SIGCONT */ - "Stopped (tty input)", /* SIGTTIN */ - "Stopped (tty output)", /* SIGTTOU */ - "Urgent I/O condition", /* SIGURG */ - "Remote lock lost (NFS)", /* SIGLOST */ - "Signal 31", /* reserved */ - "DIL signal" /* SIGDIL */ -}; -#endif /* __hpux__ || __hpux */ - -#if defined(__hpux__) || defined(__hpux) -#include -#include -#include -#include -#include -#include -#include - -int -killpg(int pid, int sig) -{ - return kill(-pid, sig); -} - -#if !defined(__hpux__) && !defined(__hpux) -void -srandom(long seed) -{ - srand48(seed); -} - -long -random(void) -{ - return lrand48(); -} -#endif - -#if !defined(__hpux__) && !defined(__hpux) -int -utimes(char *file, struct timeval tvp[2]) -{ - struct utimbuf t; - - t.actime = tvp[0].tv_sec; - t.modtime = tvp[1].tv_sec; - return(utime(file, &t)); -} -#endif - -#if !defined(BSD) && !defined(d_fileno) -# define d_fileno d_ino -#endif - -#ifndef DEV_DEV_COMPARE -# define DEV_DEV_COMPARE(a, b) ((a) == (b)) -#endif -#define ISDOT(c) ((c)[0] == '.' && (((c)[1] == '\0') || ((c)[1] == '/'))) -#define ISDOTDOT(c) ((c)[0] == '.' && ISDOT(&((c)[1]))) - -char * -getwd(char *pathname) -{ - DIR *dp; - struct dirent *d; - extern int errno; - - struct stat st_root, st_cur, st_next, st_dotdot; - char pathbuf[MAXPATHLEN], nextpathbuf[MAXPATHLEN * 2]; - char *pathptr, *nextpathptr, *cur_name_add; - - /* find the inode of root */ - if (stat("/", &st_root) == -1) { - (void)sprintf(pathname, - "getwd: Cannot stat \"/\" (%s)", strerror(errno)); - return NULL; - } - pathbuf[MAXPATHLEN - 1] = '\0'; - pathptr = &pathbuf[MAXPATHLEN - 1]; - nextpathbuf[MAXPATHLEN - 1] = '\0'; - cur_name_add = nextpathptr = &nextpathbuf[MAXPATHLEN - 1]; - - /* find the inode of the current directory */ - if (lstat(".", &st_cur) == -1) { - (void)sprintf(pathname, - "getwd: Cannot stat \".\" (%s)", strerror(errno)); - return NULL; - } - nextpathptr = strrcpy(nextpathptr, "../"); - - /* Descend to root */ - for (;;) { - - /* look if we found root yet */ - if (st_cur.st_ino == st_root.st_ino && - DEV_DEV_COMPARE(st_cur.st_dev, st_root.st_dev)) { - (void)strcpy(pathname, *pathptr != '/' ? "/" : pathptr); - return (pathname); - } - - /* open the parent directory */ - if (stat(nextpathptr, &st_dotdot) == -1) { - (void)sprintf(pathname, - "getwd: Cannot stat directory \"%s\" (%s)", - nextpathptr, strerror(errno)); - return NULL; - } - if ((dp = opendir(nextpathptr)) == NULL) { - (void)sprintf(pathname, - "getwd: Cannot open directory \"%s\" (%s)", - nextpathptr, strerror(errno)); - return NULL; - } - - /* look in the parent for the entry with the same inode */ - if (DEV_DEV_COMPARE(st_dotdot.st_dev, st_cur.st_dev)) { - /* Parent has same device. No need to stat every member */ - for (d = readdir(dp); d != NULL; d = readdir(dp)) - if (d->d_fileno == st_cur.st_ino) - break; - } - else { - /* - * Parent has a different device. This is a mount point so we - * need to stat every member - */ - for (d = readdir(dp); d != NULL; d = readdir(dp)) { - if (ISDOT(d->d_name) || ISDOTDOT(d->d_name)) - continue; - (void)strcpy(cur_name_add, d->d_name); - if (lstat(nextpathptr, &st_next) == -1) { - (void)sprintf(pathname, - "getwd: Cannot stat \"%s\" (%s)", - d->d_name, strerror(errno)); - (void)closedir(dp); - return NULL; - } - /* check if we found it yet */ - if (st_next.st_ino == st_cur.st_ino && - DEV_DEV_COMPARE(st_next.st_dev, st_cur.st_dev)) - break; - } - } - if (d == NULL) { - (void)sprintf(pathname, - "getwd: Cannot find \".\" in \"..\""); - (void)closedir(dp); - return NULL; - } - st_cur = st_dotdot; - pathptr = strrcpy(pathptr, d->d_name); - pathptr = strrcpy(pathptr, "/"); - nextpathptr = strrcpy(nextpathptr, "../"); - (void)closedir(dp); - *cur_name_add = '\0'; - } -} /* end getwd */ - -#endif /* __hpux */ - -#if !defined(HAVE_GETCWD) -char * -getcwd(path, sz) - char *path; - int sz; -{ - return getwd(path); -} -#endif - -/* force posix signals */ -void (* -bmake_signal(int s, void (*a)(int)))(int) -{ - struct sigaction sa, osa; - - sa.sa_handler = a; - sigemptyset(&sa.sa_mask); - sa.sa_flags = SA_RESTART; - - if (sigaction(s, &sa, &osa) == -1) - return SIG_ERR; - else - return osa.sa_handler; -} - -#if !defined(HAVE_VSNPRINTF) || !defined(HAVE_VASPRINTF) -#include -#endif - -#if !defined(HAVE_VSNPRINTF) -#if !defined(__osf__) -#ifdef _IOSTRG -#define STRFLAG (_IOSTRG|_IOWRT) /* no _IOWRT: avoid stdio bug */ -#else -#if 0 -#define STRFLAG (_IOREAD) /* XXX: Assume svr4 stdio */ -#endif -#endif /* _IOSTRG */ -#endif /* __osf__ */ - -int -vsnprintf(char *s, size_t n, const char *fmt, va_list args) -{ -#ifdef STRFLAG - FILE fakebuf; - - fakebuf._flag = STRFLAG; - /* - * Some os's are char * _ptr, others are unsigned char *_ptr... - * We cast to void * to make everyone happy. - */ - fakebuf._ptr = (void *)s; - fakebuf._cnt = n-1; - fakebuf._file = -1; - _doprnt(fmt, args, &fakebuf); - fakebuf._cnt++; - putc('\0', &fakebuf); - if (fakebuf._cnt<0) - fakebuf._cnt = 0; - return (n-fakebuf._cnt-1); -#else -#ifndef _PATH_DEVNULL -# define _PATH_DEVNULL "/dev/null" -#endif - /* - * Rats... we don't want to clobber anything... - * do a printf to /dev/null to see how much space we need. - */ - static FILE *nullfp; - int need = 0; /* XXX what's a useful error return? */ - - if (!nullfp) - nullfp = fopen(_PATH_DEVNULL, "w"); - if (nullfp) { - need = vfprintf(nullfp, fmt, args); - if (need < n) - (void)vsprintf(s, fmt, args); - } - return need; -#endif -} -#endif - -#if !defined(HAVE_SNPRINTF) -int -snprintf(char *s, size_t n, const char *fmt, ...) -{ - va_list ap; - int rv; - - va_start(ap, fmt); - rv = vsnprintf(s, n, fmt, ap); - va_end(ap); - return rv; -} -#endif - -#if !defined(HAVE_STRFTIME) -size_t -strftime(char *buf, size_t len, const char *fmt, const struct tm *tm) -{ - static char months[][4] = { - "Jan", "Feb", "Mar", "Apr", "May", "Jun", - "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" - }; - - size_t s; - char *b = buf; - - while (*fmt) { - if (len == 0) - return buf - b; - if (*fmt != '%') { - *buf++ = *fmt++; - len--; - continue; - } - switch (*fmt++) { - case '%': - *buf++ = '%'; - len--; - if (len == 0) return buf - b; - /*FALLTHROUGH*/ - case '\0': - *buf = '%'; - s = 1; - break; - case 'k': - s = snprintf(buf, len, "%d", tm->tm_hour); - break; - case 'M': - s = snprintf(buf, len, "%02d", tm->tm_min); - break; - case 'S': - s = snprintf(buf, len, "%02d", tm->tm_sec); - break; - case 'b': - if (tm->tm_mon >= 12) - return buf - b; - s = snprintf(buf, len, "%s", months[tm->tm_mon]); - break; - case 'd': - s = snprintf(buf, len, "%02d", tm->tm_mday); - break; - case 'Y': - s = snprintf(buf, len, "%d", 1900 + tm->tm_year); - break; - default: - s = snprintf(buf, len, "Unsupported format %c", - fmt[-1]); - break; - } - buf += s; - len -= s; - } -} -#endif - -#if !defined(HAVE_KILLPG) -#if !defined(__hpux__) && !defined(__hpux) -int -killpg(int pid, int sig) -{ - return kill(-pid, sig); -} -#endif -#endif - -#if !defined(HAVE_WARNX) -static void -vwarnx(const char *fmt, va_list args) -{ - fprintf(stderr, "%s: ", progname); - if ((fmt)) { - vfprintf(stderr, fmt, args); - fprintf(stderr, ": "); - } -} -#endif - -#if !defined(HAVE_WARN) -static void -vwarn(const char *fmt, va_list args) -{ - vwarnx(fmt, args); - fprintf(stderr, "%s\n", strerror(errno)); -} -#endif - -#if !defined(HAVE_ERR) -static void -verr(int eval, const char *fmt, va_list args) -{ - vwarn(fmt, args); - exit(eval); -} -#endif - -#if !defined(HAVE_ERRX) -static void -verrx(int eval, const char *fmt, va_list args) -{ - vwarnx(fmt, args); - exit(eval); -} -#endif - -#if !defined(HAVE_ERR) -void -err(int eval, const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - verr(eval, fmt, ap); - va_end(ap); -} -#endif - -#if !defined(HAVE_ERRX) -void -errx(int eval, const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - verrx(eval, fmt, ap); - va_end(ap); -} -#endif - -#if !defined(HAVE_WARN) -void -warn(const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - vwarn(fmt, ap); - va_end(ap); -} -#endif - -#if !defined(HAVE_WARNX) -void -warnx(const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - vwarnx(fmt, ap); - va_end(ap); -} -#endif diff --git a/external/bsd/bmake/dist/var.c b/external/bsd/bmake/dist/var.c deleted file mode 100644 index e958a3694053..000000000000 --- a/external/bsd/bmake/dist/var.c +++ /dev/null @@ -1,4196 +0,0 @@ -/* $NetBSD: var.c,v 1.171 2012/06/12 19:21:51 joerg Exp $ */ - -/* - * Copyright (c) 1988, 1989, 1990, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * Copyright (c) 1989 by Berkeley Softworks - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Adam de Boor. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: var.c,v 1.171 2012/06/12 19:21:51 joerg Exp $"; -#else -#include -#ifndef lint -#if 0 -static char sccsid[] = "@(#)var.c 8.3 (Berkeley) 3/19/94"; -#else -__RCSID("$NetBSD: var.c,v 1.171 2012/06/12 19:21:51 joerg Exp $"); -#endif -#endif /* not lint */ -#endif - -/*- - * var.c -- - * Variable-handling functions - * - * Interface: - * Var_Set Set the value of a variable in the given - * context. The variable is created if it doesn't - * yet exist. The value and variable name need not - * be preserved. - * - * Var_Append Append more characters to an existing variable - * in the given context. The variable needn't - * exist already -- it will be created if it doesn't. - * A space is placed between the old value and the - * new one. - * - * Var_Exists See if a variable exists. - * - * Var_Value Return the value of a variable in a context or - * NULL if the variable is undefined. - * - * Var_Subst Substitute named variable, or all variables if - * NULL in a string using - * the given context as the top-most one. If the - * third argument is non-zero, Parse_Error is - * called if any variables are undefined. - * - * Var_Parse Parse a variable expansion from a string and - * return the result and the number of characters - * consumed. - * - * Var_Delete Delete a variable in a context. - * - * Var_Init Initialize this module. - * - * Debugging: - * Var_Dump Print out all variables defined in the given - * context. - * - * XXX: There's a lot of duplication in these functions. - */ - -#include -#ifndef NO_REGEX -#include -#include -#endif -#include -#include -#include -#include -#include - -#include "make.h" -#include "buf.h" -#include "dir.h" -#include "job.h" - -/* - * This lets us tell if we have replaced the original environ - * (which we cannot free). - */ -char **savedEnv = NULL; - -/* - * This is a harmless return value for Var_Parse that can be used by Var_Subst - * to determine if there was an error in parsing -- easier than returning - * a flag, as things outside this module don't give a hoot. - */ -char var_Error[] = ""; - -/* - * Similar to var_Error, but returned when the 'errnum' flag for Var_Parse is - * set false. Why not just use a constant? Well, gcc likes to condense - * identical string instances... - */ -static char varNoError[] = ""; - -/* - * Internally, variables are contained in four different contexts. - * 1) the environment. They may not be changed. If an environment - * variable is appended-to, the result is placed in the global - * context. - * 2) the global context. Variables set in the Makefile are located in - * the global context. It is the penultimate context searched when - * substituting. - * 3) the command-line context. All variables set on the command line - * are placed in this context. They are UNALTERABLE once placed here. - * 4) the local context. Each target has associated with it a context - * list. On this list are located the structures describing such - * local variables as $(@) and $(*) - * The four contexts are searched in the reverse order from which they are - * listed. - */ -GNode *VAR_GLOBAL; /* variables from the makefile */ -GNode *VAR_CMD; /* variables defined on the command-line */ - -#define FIND_CMD 0x1 /* look in VAR_CMD when searching */ -#define FIND_GLOBAL 0x2 /* look in VAR_GLOBAL as well */ -#define FIND_ENV 0x4 /* look in the environment also */ - -typedef struct Var { - char *name; /* the variable's name */ - Buffer val; /* its value */ - int flags; /* miscellaneous status flags */ -#define VAR_IN_USE 1 /* Variable's value currently being used. - * Used to avoid recursion */ -#define VAR_FROM_ENV 2 /* Variable comes from the environment */ -#define VAR_JUNK 4 /* Variable is a junk variable that - * should be destroyed when done with - * it. Used by Var_Parse for undefined, - * modified variables */ -#define VAR_KEEP 8 /* Variable is VAR_JUNK, but we found - * a use for it in some modifier and - * the value is therefore valid */ -#define VAR_EXPORTED 16 /* Variable is exported */ -#define VAR_REEXPORT 32 /* Indicate if var needs re-export. - * This would be true if it contains $'s - */ -#define VAR_FROM_CMD 64 /* Variable came from command line */ -} Var; - -/* - * Exporting vars is expensive so skip it if we can - */ -#define VAR_EXPORTED_NONE 0 -#define VAR_EXPORTED_YES 1 -#define VAR_EXPORTED_ALL 2 -static int var_exportedVars = VAR_EXPORTED_NONE; -/* - * We pass this to Var_Export when doing the initial export - * or after updating an exported var. - */ -#define VAR_EXPORT_PARENT 1 - -/* Var*Pattern flags */ -#define VAR_SUB_GLOBAL 0x01 /* Apply substitution globally */ -#define VAR_SUB_ONE 0x02 /* Apply substitution to one word */ -#define VAR_SUB_MATCHED 0x04 /* There was a match */ -#define VAR_MATCH_START 0x08 /* Match at start of word */ -#define VAR_MATCH_END 0x10 /* Match at end of word */ -#define VAR_NOSUBST 0x20 /* don't expand vars in VarGetPattern */ - -/* Var_Set flags */ -#define VAR_NO_EXPORT 0x01 /* do not export */ - -typedef struct { - /* - * The following fields are set by Var_Parse() when it - * encounters modifiers that need to keep state for use by - * subsequent modifiers within the same variable expansion. - */ - Byte varSpace; /* Word separator in expansions */ - Boolean oneBigWord; /* TRUE if we will treat the variable as a - * single big word, even if it contains - * embedded spaces (as opposed to the - * usual behaviour of treating it as - * several space-separated words). */ -} Var_Parse_State; - -/* struct passed as 'void *' to VarSubstitute() for ":S/lhs/rhs/", - * to VarSYSVMatch() for ":lhs=rhs". */ -typedef struct { - const char *lhs; /* String to match */ - int leftLen; /* Length of string */ - const char *rhs; /* Replacement string (w/ &'s removed) */ - int rightLen; /* Length of replacement */ - int flags; -} VarPattern; - -/* struct passed as 'void *' to VarLoopExpand() for ":@tvar@str@" */ -typedef struct { - GNode *ctxt; /* variable context */ - char *tvar; /* name of temp var */ - int tvarLen; - char *str; /* string to expand */ - int strLen; - int errnum; /* errnum for not defined */ -} VarLoop_t; - -#ifndef NO_REGEX -/* struct passed as 'void *' to VarRESubstitute() for ":C///" */ -typedef struct { - regex_t re; - int nsub; - regmatch_t *matches; - char *replace; - int flags; -} VarREPattern; -#endif - -/* struct passed to VarSelectWords() for ":[start..end]" */ -typedef struct { - int start; /* first word to select */ - int end; /* last word to select */ -} VarSelectWords_t; - -static Var *VarFind(const char *, GNode *, int); -static void VarAdd(const char *, const char *, GNode *); -static Boolean VarHead(GNode *, Var_Parse_State *, - char *, Boolean, Buffer *, void *); -static Boolean VarTail(GNode *, Var_Parse_State *, - char *, Boolean, Buffer *, void *); -static Boolean VarSuffix(GNode *, Var_Parse_State *, - char *, Boolean, Buffer *, void *); -static Boolean VarRoot(GNode *, Var_Parse_State *, - char *, Boolean, Buffer *, void *); -static Boolean VarMatch(GNode *, Var_Parse_State *, - char *, Boolean, Buffer *, void *); -#ifdef SYSVVARSUB -static Boolean VarSYSVMatch(GNode *, Var_Parse_State *, - char *, Boolean, Buffer *, void *); -#endif -static Boolean VarNoMatch(GNode *, Var_Parse_State *, - char *, Boolean, Buffer *, void *); -#ifndef NO_REGEX -static void VarREError(int, regex_t *, const char *); -static Boolean VarRESubstitute(GNode *, Var_Parse_State *, - char *, Boolean, Buffer *, void *); -#endif -static Boolean VarSubstitute(GNode *, Var_Parse_State *, - char *, Boolean, Buffer *, void *); -static Boolean VarLoopExpand(GNode *, Var_Parse_State *, - char *, Boolean, Buffer *, void *); -static char *VarGetPattern(GNode *, Var_Parse_State *, - int, const char **, int, int *, int *, - VarPattern *); -static char *VarQuote(char *); -static char *VarChangeCase(char *, int); -static char *VarHash(char *); -static char *VarModify(GNode *, Var_Parse_State *, - const char *, - Boolean (*)(GNode *, Var_Parse_State *, char *, Boolean, Buffer *, void *), - void *); -static char *VarOrder(const char *, const char); -static char *VarUniq(const char *); -static int VarWordCompare(const void *, const void *); -static void VarPrintVar(void *); - -#define BROPEN '{' -#define BRCLOSE '}' -#define PROPEN '(' -#define PRCLOSE ')' - -/*- - *----------------------------------------------------------------------- - * VarFind -- - * Find the given variable in the given context and any other contexts - * indicated. - * - * Input: - * name name to find - * ctxt context in which to find it - * flags FIND_GLOBAL set means to look in the - * VAR_GLOBAL context as well. FIND_CMD set means - * to look in the VAR_CMD context also. FIND_ENV - * set means to look in the environment - * - * Results: - * A pointer to the structure describing the desired variable or - * NULL if the variable does not exist. - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -static Var * -VarFind(const char *name, GNode *ctxt, int flags) -{ - Hash_Entry *var; - Var *v; - - /* - * If the variable name begins with a '.', it could very well be one of - * the local ones. We check the name against all the local variables - * and substitute the short version in for 'name' if it matches one of - * them. - */ - if (*name == '.' && isupper((unsigned char) name[1])) - switch (name[1]) { - case 'A': - if (!strcmp(name, ".ALLSRC")) - name = ALLSRC; - if (!strcmp(name, ".ARCHIVE")) - name = ARCHIVE; - break; - case 'I': - if (!strcmp(name, ".IMPSRC")) - name = IMPSRC; - break; - case 'M': - if (!strcmp(name, ".MEMBER")) - name = MEMBER; - break; - case 'O': - if (!strcmp(name, ".OODATE")) - name = OODATE; - break; - case 'P': - if (!strcmp(name, ".PREFIX")) - name = PREFIX; - break; - case 'T': - if (!strcmp(name, ".TARGET")) - name = TARGET; - break; - } -#ifdef notyet - /* for compatibility with gmake */ - if (name[0] == '^' && name[1] == '\0') - name = ALLSRC; -#endif - - /* - * First look for the variable in the given context. If it's not there, - * look for it in VAR_CMD, VAR_GLOBAL and the environment, in that order, - * depending on the FIND_* flags in 'flags' - */ - var = Hash_FindEntry(&ctxt->context, name); - - if ((var == NULL) && (flags & FIND_CMD) && (ctxt != VAR_CMD)) { - var = Hash_FindEntry(&VAR_CMD->context, name); - } - if (!checkEnvFirst && (var == NULL) && (flags & FIND_GLOBAL) && - (ctxt != VAR_GLOBAL)) - { - var = Hash_FindEntry(&VAR_GLOBAL->context, name); - } - if ((var == NULL) && (flags & FIND_ENV)) { - char *env; - - if ((env = getenv(name)) != NULL) { - int len; - - v = bmake_malloc(sizeof(Var)); - v->name = bmake_strdup(name); - - len = strlen(env); - - Buf_Init(&v->val, len + 1); - Buf_AddBytes(&v->val, len, env); - - v->flags = VAR_FROM_ENV; - return (v); - } else if (checkEnvFirst && (flags & FIND_GLOBAL) && - (ctxt != VAR_GLOBAL)) - { - var = Hash_FindEntry(&VAR_GLOBAL->context, name); - if (var == NULL) { - return NULL; - } else { - return ((Var *)Hash_GetValue(var)); - } - } else { - return NULL; - } - } else if (var == NULL) { - return NULL; - } else { - return ((Var *)Hash_GetValue(var)); - } -} - -/*- - *----------------------------------------------------------------------- - * VarFreeEnv -- - * If the variable is an environment variable, free it - * - * Input: - * v the variable - * destroy true if the value buffer should be destroyed. - * - * Results: - * 1 if it is an environment variable 0 ow. - * - * Side Effects: - * The variable is free'ed if it is an environent variable. - *----------------------------------------------------------------------- - */ -static Boolean -VarFreeEnv(Var *v, Boolean destroy) -{ - if ((v->flags & VAR_FROM_ENV) == 0) - return FALSE; - free(v->name); - Buf_Destroy(&v->val, destroy); - free(v); - return TRUE; -} - -/*- - *----------------------------------------------------------------------- - * VarAdd -- - * Add a new variable of name name and value val to the given context - * - * Input: - * name name of variable to add - * val value to set it to - * ctxt context in which to set it - * - * Results: - * None - * - * Side Effects: - * The new variable is placed at the front of the given context - * The name and val arguments are duplicated so they may - * safely be freed. - *----------------------------------------------------------------------- - */ -static void -VarAdd(const char *name, const char *val, GNode *ctxt) -{ - Var *v; - int len; - Hash_Entry *h; - - v = bmake_malloc(sizeof(Var)); - - len = val ? strlen(val) : 0; - Buf_Init(&v->val, len+1); - Buf_AddBytes(&v->val, len, val); - - v->flags = 0; - - h = Hash_CreateEntry(&ctxt->context, name, NULL); - Hash_SetValue(h, v); - v->name = h->name; - if (DEBUG(VAR)) { - fprintf(debug_file, "%s:%s = %s\n", ctxt->name, name, val); - } -} - -/*- - *----------------------------------------------------------------------- - * Var_Delete -- - * Remove a variable from a context. - * - * Results: - * None. - * - * Side Effects: - * The Var structure is removed and freed. - * - *----------------------------------------------------------------------- - */ -void -Var_Delete(const char *name, GNode *ctxt) -{ - Hash_Entry *ln; - - ln = Hash_FindEntry(&ctxt->context, name); - if (DEBUG(VAR)) { - fprintf(debug_file, "%s:delete %s%s\n", - ctxt->name, name, ln ? "" : " (not found)"); - } - if (ln != NULL) { - Var *v; - - v = (Var *)Hash_GetValue(ln); - if ((v->flags & VAR_EXPORTED)) { - unsetenv(v->name); - } - if (strcmp(MAKE_EXPORTED, v->name) == 0) { - var_exportedVars = VAR_EXPORTED_NONE; - } - if (v->name != ln->name) - free(v->name); - Hash_DeleteEntry(&ctxt->context, ln); - Buf_Destroy(&v->val, TRUE); - free(v); - } -} - - -/* - * Export a var. - * We ignore make internal variables (those which start with '.') - * Also we jump through some hoops to avoid calling setenv - * more than necessary since it can leak. - * We only manipulate flags of vars if 'parent' is set. - */ -static int -Var_Export1(const char *name, int parent) -{ - char tmp[BUFSIZ]; - Var *v; - char *val = NULL; - int n; - - if (*name == '.') - return 0; /* skip internals */ - if (!name[1]) { - /* - * A single char. - * If it is one of the vars that should only appear in - * local context, skip it, else we can get Var_Subst - * into a loop. - */ - switch (name[0]) { - case '@': - case '%': - case '*': - case '!': - return 0; - } - } - v = VarFind(name, VAR_GLOBAL, 0); - if (v == NULL) { - return 0; - } - if (!parent && - (v->flags & (VAR_EXPORTED|VAR_REEXPORT)) == VAR_EXPORTED) { - return 0; /* nothing to do */ - } - val = Buf_GetAll(&v->val, NULL); - if (strchr(val, '$')) { - if (parent) { - /* - * Flag this as something we need to re-export. - * No point actually exporting it now though, - * the child can do it at the last minute. - */ - v->flags |= (VAR_EXPORTED|VAR_REEXPORT); - return 1; - } - if (v->flags & VAR_IN_USE) { - /* - * We recursed while exporting in a child. - * This isn't going to end well, just skip it. - */ - return 0; - } - n = snprintf(tmp, sizeof(tmp), "${%s}", name); - if (n < (int)sizeof(tmp)) { - val = Var_Subst(NULL, tmp, VAR_GLOBAL, 0); - setenv(name, val, 1); - free(val); - } - } else { - if (parent) { - v->flags &= ~VAR_REEXPORT; /* once will do */ - } - if (parent || !(v->flags & VAR_EXPORTED)) { - setenv(name, val, 1); - } - } - /* - * This is so Var_Set knows to call Var_Export again... - */ - if (parent) { - v->flags |= VAR_EXPORTED; - } - return 1; -} - -/* - * This gets called from our children. - */ -void -Var_ExportVars(void) -{ - char tmp[BUFSIZ]; - Hash_Entry *var; - Hash_Search state; - Var *v; - char *val; - int n; - - if (VAR_EXPORTED_NONE == var_exportedVars) - return; - - if (VAR_EXPORTED_ALL == var_exportedVars) { - /* - * Ouch! This is crazy... - */ - for (var = Hash_EnumFirst(&VAR_GLOBAL->context, &state); - var != NULL; - var = Hash_EnumNext(&state)) { - v = (Var *)Hash_GetValue(var); - Var_Export1(v->name, 0); - } - return; - } - /* - * We have a number of exported vars, - */ - n = snprintf(tmp, sizeof(tmp), "${" MAKE_EXPORTED ":O:u}"); - if (n < (int)sizeof(tmp)) { - char **av; - char *as; - int ac; - int i; - - val = Var_Subst(NULL, tmp, VAR_GLOBAL, 0); - av = brk_string(val, &ac, FALSE, &as); - for (i = 0; i < ac; i++) { - Var_Export1(av[i], 0); - } - free(val); - free(as); - free(av); - } -} - -/* - * This is called when .export is seen or - * .MAKE.EXPORTED is modified. - * It is also called when any exported var is modified. - */ -void -Var_Export(char *str, int isExport) -{ - char *name; - char *val; - char **av; - char *as; - int track; - int ac; - int i; - - if (isExport && (!str || !str[0])) { - var_exportedVars = VAR_EXPORTED_ALL; /* use with caution! */ - return; - } - - if (strncmp(str, "-env", 4) == 0) { - track = 0; - str += 4; - } else { - track = VAR_EXPORT_PARENT; - } - val = Var_Subst(NULL, str, VAR_GLOBAL, 0); - av = brk_string(val, &ac, FALSE, &as); - for (i = 0; i < ac; i++) { - name = av[i]; - if (!name[1]) { - /* - * A single char. - * If it is one of the vars that should only appear in - * local context, skip it, else we can get Var_Subst - * into a loop. - */ - switch (name[0]) { - case '@': - case '%': - case '*': - case '!': - continue; - } - } - if (Var_Export1(name, track)) { - if (VAR_EXPORTED_ALL != var_exportedVars) - var_exportedVars = VAR_EXPORTED_YES; - if (isExport && track) { - Var_Append(MAKE_EXPORTED, name, VAR_GLOBAL); - } - } - } - free(val); - free(as); - free(av); -} - - -/* - * This is called when .unexport[-env] is seen. - */ -extern char **environ; - -void -Var_UnExport(char *str) -{ - char tmp[BUFSIZ]; - char *vlist; - char *cp; - Boolean unexport_env; - int n; - - if (!str || !str[0]) { - return; /* assert? */ - } - - vlist = NULL; - - str += 8; - unexport_env = (strncmp(str, "-env", 4) == 0); - if (unexport_env) { - char **newenv; - - cp = getenv(MAKE_LEVEL); /* we should preserve this */ - if (environ == savedEnv) { - /* we have been here before! */ - newenv = bmake_realloc(environ, 2 * sizeof(char *)); - } else { - if (savedEnv) { - free(savedEnv); - savedEnv = NULL; - } - newenv = bmake_malloc(2 * sizeof(char *)); - } - if (!newenv) - return; - /* Note: we cannot safely free() the original environ. */ - environ = savedEnv = newenv; - newenv[0] = NULL; - newenv[1] = NULL; - setenv(MAKE_LEVEL, cp, 1); -#ifdef MAKE_LEVEL_SAFE - setenv(MAKE_LEVEL_SAFE, cp, 1); -#endif - } else { - for (; *str != '\n' && isspace((unsigned char) *str); str++) - continue; - if (str[0] && str[0] != '\n') { - vlist = str; - } - } - - if (!vlist) { - /* Using .MAKE.EXPORTED */ - n = snprintf(tmp, sizeof(tmp), "${" MAKE_EXPORTED ":O:u}"); - if (n < (int)sizeof(tmp)) { - vlist = Var_Subst(NULL, tmp, VAR_GLOBAL, 0); - } - } - if (vlist) { - Var *v; - char **av; - char *as; - int ac; - int i; - - av = brk_string(vlist, &ac, FALSE, &as); - for (i = 0; i < ac; i++) { - v = VarFind(av[i], VAR_GLOBAL, 0); - if (!v) - continue; - if (!unexport_env && - (v->flags & (VAR_EXPORTED|VAR_REEXPORT)) == VAR_EXPORTED) { - unsetenv(v->name); - } - v->flags &= ~(VAR_EXPORTED|VAR_REEXPORT); - /* - * If we are unexporting a list, - * remove each one from .MAKE.EXPORTED. - * If we are removing them all, - * just delete .MAKE.EXPORTED below. - */ - if (vlist == str) { - n = snprintf(tmp, sizeof(tmp), - "${" MAKE_EXPORTED ":N%s}", v->name); - if (n < (int)sizeof(tmp)) { - cp = Var_Subst(NULL, tmp, VAR_GLOBAL, 0); - Var_Set(MAKE_EXPORTED, cp, VAR_GLOBAL, 0); - free(cp); - } - } - } - free(as); - free(av); - if (vlist != str) { - Var_Delete(MAKE_EXPORTED, VAR_GLOBAL); - free(vlist); - } - } -} - -/*- - *----------------------------------------------------------------------- - * Var_Set -- - * Set the variable name to the value val in the given context. - * - * Input: - * name name of variable to set - * val value to give to the variable - * ctxt context in which to set it - * - * Results: - * None. - * - * Side Effects: - * If the variable doesn't yet exist, a new record is created for it. - * Else the old value is freed and the new one stuck in its place - * - * Notes: - * The variable is searched for only in its context before being - * created in that context. I.e. if the context is VAR_GLOBAL, - * only VAR_GLOBAL->context is searched. Likewise if it is VAR_CMD, only - * VAR_CMD->context is searched. This is done to avoid the literally - * thousands of unnecessary strcmp's that used to be done to - * set, say, $(@) or $(<). - * If the context is VAR_GLOBAL though, we check if the variable - * was set in VAR_CMD from the command line and skip it if so. - *----------------------------------------------------------------------- - */ -void -Var_Set(const char *name, const char *val, GNode *ctxt, int flags) -{ - Var *v; - char *expanded_name = NULL; - - /* - * We only look for a variable in the given context since anything set - * here will override anything in a lower context, so there's not much - * point in searching them all just to save a bit of memory... - */ - if (strchr(name, '$') != NULL) { - expanded_name = Var_Subst(NULL, name, ctxt, 0); - if (expanded_name[0] == 0) { - if (DEBUG(VAR)) { - fprintf(debug_file, "Var_Set(\"%s\", \"%s\", ...) " - "name expands to empty string - ignored\n", - name, val); - } - free(expanded_name); - return; - } - name = expanded_name; - } - if (ctxt == VAR_GLOBAL) { - v = VarFind(name, VAR_CMD, 0); - if (v != NULL) { - if ((v->flags & VAR_FROM_CMD)) { - if (DEBUG(VAR)) { - fprintf(debug_file, "%s:%s = %s ignored!\n", ctxt->name, name, val); - } - goto out; - } - VarFreeEnv(v, TRUE); - } - } - v = VarFind(name, ctxt, 0); - if (v == NULL) { - VarAdd(name, val, ctxt); - } else { - Buf_Empty(&v->val); - Buf_AddBytes(&v->val, strlen(val), val); - - if (DEBUG(VAR)) { - fprintf(debug_file, "%s:%s = %s\n", ctxt->name, name, val); - } - if ((v->flags & VAR_EXPORTED)) { - Var_Export1(name, VAR_EXPORT_PARENT); - } - } - /* - * Any variables given on the command line are automatically exported - * to the environment (as per POSIX standard) - */ - if (ctxt == VAR_CMD && (flags & VAR_NO_EXPORT) == 0) { - if (v == NULL) { - /* we just added it */ - v = VarFind(name, ctxt, 0); - } - if (v != NULL) - v->flags |= VAR_FROM_CMD; - /* - * If requested, don't export these in the environment - * individually. We still put them in MAKEOVERRIDES so - * that the command-line settings continue to override - * Makefile settings. - */ - if (varNoExportEnv != TRUE) - setenv(name, val, 1); - - Var_Append(MAKEOVERRIDES, name, VAR_GLOBAL); - } - /* - * Another special case. - * Several make's support this sort of mechanism for tracking - * recursion - but each uses a different name. - * We allow the makefiles to update .MAKE.LEVEL and ensure - * children see a correctly incremented value. - */ - if (ctxt == VAR_GLOBAL && strcmp(MAKE_LEVEL, name) == 0) { - char tmp[64]; - int level; - - level = atoi(val); - snprintf(tmp, sizeof(tmp), "%u", level + 1); - setenv(MAKE_LEVEL, tmp, 1); -#ifdef MAKE_LEVEL_SAFE - setenv(MAKE_LEVEL_SAFE, tmp, 1); -#endif - } - - - out: - if (expanded_name != NULL) - free(expanded_name); - if (v != NULL) - VarFreeEnv(v, TRUE); -} - -/*- - *----------------------------------------------------------------------- - * Var_Append -- - * The variable of the given name has the given value appended to it in - * the given context. - * - * Input: - * name name of variable to modify - * val String to append to it - * ctxt Context in which this should occur - * - * Results: - * None - * - * Side Effects: - * If the variable doesn't exist, it is created. Else the strings - * are concatenated (with a space in between). - * - * Notes: - * Only if the variable is being sought in the global context is the - * environment searched. - * XXX: Knows its calling circumstances in that if called with ctxt - * an actual target, it will only search that context since only - * a local variable could be being appended to. This is actually - * a big win and must be tolerated. - *----------------------------------------------------------------------- - */ -void -Var_Append(const char *name, const char *val, GNode *ctxt) -{ - Var *v; - Hash_Entry *h; - char *expanded_name = NULL; - - if (strchr(name, '$') != NULL) { - expanded_name = Var_Subst(NULL, name, ctxt, 0); - if (expanded_name[0] == 0) { - if (DEBUG(VAR)) { - fprintf(debug_file, "Var_Append(\"%s\", \"%s\", ...) " - "name expands to empty string - ignored\n", - name, val); - } - free(expanded_name); - return; - } - name = expanded_name; - } - - v = VarFind(name, ctxt, (ctxt == VAR_GLOBAL) ? FIND_ENV : 0); - - if (v == NULL) { - VarAdd(name, val, ctxt); - } else { - Buf_AddByte(&v->val, ' '); - Buf_AddBytes(&v->val, strlen(val), val); - - if (DEBUG(VAR)) { - fprintf(debug_file, "%s:%s = %s\n", ctxt->name, name, - Buf_GetAll(&v->val, NULL)); - } - - if (v->flags & VAR_FROM_ENV) { - /* - * If the original variable came from the environment, we - * have to install it in the global context (we could place - * it in the environment, but then we should provide a way to - * export other variables...) - */ - v->flags &= ~VAR_FROM_ENV; - h = Hash_CreateEntry(&ctxt->context, name, NULL); - Hash_SetValue(h, v); - } - } - if (expanded_name != NULL) - free(expanded_name); -} - -/*- - *----------------------------------------------------------------------- - * Var_Exists -- - * See if the given variable exists. - * - * Input: - * name Variable to find - * ctxt Context in which to start search - * - * Results: - * TRUE if it does, FALSE if it doesn't - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -Boolean -Var_Exists(const char *name, GNode *ctxt) -{ - Var *v; - char *cp; - - if ((cp = strchr(name, '$')) != NULL) { - cp = Var_Subst(NULL, name, ctxt, FALSE); - } - v = VarFind(cp ? cp : name, ctxt, FIND_CMD|FIND_GLOBAL|FIND_ENV); - if (cp != NULL) { - free(cp); - } - if (v == NULL) { - return(FALSE); - } else { - (void)VarFreeEnv(v, TRUE); - } - return(TRUE); -} - -/*- - *----------------------------------------------------------------------- - * Var_Value -- - * Return the value of the named variable in the given context - * - * Input: - * name name to find - * ctxt context in which to search for it - * - * Results: - * The value if the variable exists, NULL if it doesn't - * - * Side Effects: - * None - *----------------------------------------------------------------------- - */ -char * -Var_Value(const char *name, GNode *ctxt, char **frp) -{ - Var *v; - - v = VarFind(name, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD); - *frp = NULL; - if (v != NULL) { - char *p = (Buf_GetAll(&v->val, NULL)); - if (VarFreeEnv(v, FALSE)) - *frp = p; - return p; - } else { - return NULL; - } -} - -/*- - *----------------------------------------------------------------------- - * VarHead -- - * Remove the tail of the given word and place the result in the given - * buffer. - * - * Input: - * word Word to trim - * addSpace True if need to add a space to the buffer - * before sticking in the head - * buf Buffer in which to store it - * - * Results: - * TRUE if characters were added to the buffer (a space needs to be - * added to the buffer before the next word). - * - * Side Effects: - * The trimmed word is added to the buffer. - * - *----------------------------------------------------------------------- - */ -static Boolean -VarHead(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, - char *word, Boolean addSpace, Buffer *buf, - void *dummy) -{ - char *slash; - - slash = strrchr(word, '/'); - if (slash != NULL) { - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - *slash = '\0'; - Buf_AddBytes(buf, strlen(word), word); - *slash = '/'; - return (TRUE); - } else { - /* - * If no directory part, give . (q.v. the POSIX standard) - */ - if (addSpace && vpstate->varSpace) - Buf_AddByte(buf, vpstate->varSpace); - Buf_AddByte(buf, '.'); - } - return(dummy ? TRUE : TRUE); -} - -/*- - *----------------------------------------------------------------------- - * VarTail -- - * Remove the head of the given word and place the result in the given - * buffer. - * - * Input: - * word Word to trim - * addSpace True if need to add a space to the buffer - * before adding the tail - * buf Buffer in which to store it - * - * Results: - * TRUE if characters were added to the buffer (a space needs to be - * added to the buffer before the next word). - * - * Side Effects: - * The trimmed word is added to the buffer. - * - *----------------------------------------------------------------------- - */ -static Boolean -VarTail(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, - char *word, Boolean addSpace, Buffer *buf, - void *dummy) -{ - char *slash; - - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - - slash = strrchr(word, '/'); - if (slash != NULL) { - *slash++ = '\0'; - Buf_AddBytes(buf, strlen(slash), slash); - slash[-1] = '/'; - } else { - Buf_AddBytes(buf, strlen(word), word); - } - return (dummy ? TRUE : TRUE); -} - -/*- - *----------------------------------------------------------------------- - * VarSuffix -- - * Place the suffix of the given word in the given buffer. - * - * Input: - * word Word to trim - * addSpace TRUE if need to add a space before placing the - * suffix in the buffer - * buf Buffer in which to store it - * - * Results: - * TRUE if characters were added to the buffer (a space needs to be - * added to the buffer before the next word). - * - * Side Effects: - * The suffix from the word is placed in the buffer. - * - *----------------------------------------------------------------------- - */ -static Boolean -VarSuffix(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, - char *word, Boolean addSpace, Buffer *buf, - void *dummy) -{ - char *dot; - - dot = strrchr(word, '.'); - if (dot != NULL) { - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - *dot++ = '\0'; - Buf_AddBytes(buf, strlen(dot), dot); - dot[-1] = '.'; - addSpace = TRUE; - } - return (dummy ? addSpace : addSpace); -} - -/*- - *----------------------------------------------------------------------- - * VarRoot -- - * Remove the suffix of the given word and place the result in the - * buffer. - * - * Input: - * word Word to trim - * addSpace TRUE if need to add a space to the buffer - * before placing the root in it - * buf Buffer in which to store it - * - * Results: - * TRUE if characters were added to the buffer (a space needs to be - * added to the buffer before the next word). - * - * Side Effects: - * The trimmed word is added to the buffer. - * - *----------------------------------------------------------------------- - */ -static Boolean -VarRoot(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, - char *word, Boolean addSpace, Buffer *buf, - void *dummy) -{ - char *dot; - - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - - dot = strrchr(word, '.'); - if (dot != NULL) { - *dot = '\0'; - Buf_AddBytes(buf, strlen(word), word); - *dot = '.'; - } else { - Buf_AddBytes(buf, strlen(word), word); - } - return (dummy ? TRUE : TRUE); -} - -/*- - *----------------------------------------------------------------------- - * VarMatch -- - * Place the word in the buffer if it matches the given pattern. - * Callback function for VarModify to implement the :M modifier. - * - * Input: - * word Word to examine - * addSpace TRUE if need to add a space to the buffer - * before adding the word, if it matches - * buf Buffer in which to store it - * pattern Pattern the word must match - * - * Results: - * TRUE if a space should be placed in the buffer before the next - * word. - * - * Side Effects: - * The word may be copied to the buffer. - * - *----------------------------------------------------------------------- - */ -static Boolean -VarMatch(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, - char *word, Boolean addSpace, Buffer *buf, - void *pattern) -{ - if (DEBUG(VAR)) - fprintf(debug_file, "VarMatch [%s] [%s]\n", word, (char *)pattern); - if (Str_Match(word, (char *)pattern)) { - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - addSpace = TRUE; - Buf_AddBytes(buf, strlen(word), word); - } - return(addSpace); -} - -#ifdef SYSVVARSUB -/*- - *----------------------------------------------------------------------- - * VarSYSVMatch -- - * Place the word in the buffer if it matches the given pattern. - * Callback function for VarModify to implement the System V % - * modifiers. - * - * Input: - * word Word to examine - * addSpace TRUE if need to add a space to the buffer - * before adding the word, if it matches - * buf Buffer in which to store it - * patp Pattern the word must match - * - * Results: - * TRUE if a space should be placed in the buffer before the next - * word. - * - * Side Effects: - * The word may be copied to the buffer. - * - *----------------------------------------------------------------------- - */ -static Boolean -VarSYSVMatch(GNode *ctx, Var_Parse_State *vpstate, - char *word, Boolean addSpace, Buffer *buf, - void *patp) -{ - int len; - char *ptr; - VarPattern *pat = (VarPattern *)patp; - char *varexp; - - if (addSpace && vpstate->varSpace) - Buf_AddByte(buf, vpstate->varSpace); - - addSpace = TRUE; - - if ((ptr = Str_SYSVMatch(word, pat->lhs, &len)) != NULL) { - varexp = Var_Subst(NULL, pat->rhs, ctx, 0); - Str_SYSVSubst(buf, varexp, ptr, len); - free(varexp); - } else { - Buf_AddBytes(buf, strlen(word), word); - } - - return(addSpace); -} -#endif - - -/*- - *----------------------------------------------------------------------- - * VarNoMatch -- - * Place the word in the buffer if it doesn't match the given pattern. - * Callback function for VarModify to implement the :N modifier. - * - * Input: - * word Word to examine - * addSpace TRUE if need to add a space to the buffer - * before adding the word, if it matches - * buf Buffer in which to store it - * pattern Pattern the word must match - * - * Results: - * TRUE if a space should be placed in the buffer before the next - * word. - * - * Side Effects: - * The word may be copied to the buffer. - * - *----------------------------------------------------------------------- - */ -static Boolean -VarNoMatch(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, - char *word, Boolean addSpace, Buffer *buf, - void *pattern) -{ - if (!Str_Match(word, (char *)pattern)) { - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - addSpace = TRUE; - Buf_AddBytes(buf, strlen(word), word); - } - return(addSpace); -} - - -/*- - *----------------------------------------------------------------------- - * VarSubstitute -- - * Perform a string-substitution on the given word, placing the - * result in the passed buffer. - * - * Input: - * word Word to modify - * addSpace True if space should be added before - * other characters - * buf Buffer for result - * patternp Pattern for substitution - * - * Results: - * TRUE if a space is needed before more characters are added. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static Boolean -VarSubstitute(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, - char *word, Boolean addSpace, Buffer *buf, - void *patternp) -{ - int wordLen; /* Length of word */ - char *cp; /* General pointer */ - VarPattern *pattern = (VarPattern *)patternp; - - wordLen = strlen(word); - if ((pattern->flags & (VAR_SUB_ONE|VAR_SUB_MATCHED)) != - (VAR_SUB_ONE|VAR_SUB_MATCHED)) { - /* - * Still substituting -- break it down into simple anchored cases - * and if none of them fits, perform the general substitution case. - */ - if ((pattern->flags & VAR_MATCH_START) && - (strncmp(word, pattern->lhs, pattern->leftLen) == 0)) { - /* - * Anchored at start and beginning of word matches pattern - */ - if ((pattern->flags & VAR_MATCH_END) && - (wordLen == pattern->leftLen)) { - /* - * Also anchored at end and matches to the end (word - * is same length as pattern) add space and rhs only - * if rhs is non-null. - */ - if (pattern->rightLen != 0) { - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - addSpace = TRUE; - Buf_AddBytes(buf, pattern->rightLen, pattern->rhs); - } - pattern->flags |= VAR_SUB_MATCHED; - } else if (pattern->flags & VAR_MATCH_END) { - /* - * Doesn't match to end -- copy word wholesale - */ - goto nosub; - } else { - /* - * Matches at start but need to copy in trailing characters - */ - if ((pattern->rightLen + wordLen - pattern->leftLen) != 0){ - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - addSpace = TRUE; - } - Buf_AddBytes(buf, pattern->rightLen, pattern->rhs); - Buf_AddBytes(buf, wordLen - pattern->leftLen, - (word + pattern->leftLen)); - pattern->flags |= VAR_SUB_MATCHED; - } - } else if (pattern->flags & VAR_MATCH_START) { - /* - * Had to match at start of word and didn't -- copy whole word. - */ - goto nosub; - } else if (pattern->flags & VAR_MATCH_END) { - /* - * Anchored at end, Find only place match could occur (leftLen - * characters from the end of the word) and see if it does. Note - * that because the $ will be left at the end of the lhs, we have - * to use strncmp. - */ - cp = word + (wordLen - pattern->leftLen); - if ((cp >= word) && - (strncmp(cp, pattern->lhs, pattern->leftLen) == 0)) { - /* - * Match found. If we will place characters in the buffer, - * add a space before hand as indicated by addSpace, then - * stuff in the initial, unmatched part of the word followed - * by the right-hand-side. - */ - if (((cp - word) + pattern->rightLen) != 0) { - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - addSpace = TRUE; - } - Buf_AddBytes(buf, cp - word, word); - Buf_AddBytes(buf, pattern->rightLen, pattern->rhs); - pattern->flags |= VAR_SUB_MATCHED; - } else { - /* - * Had to match at end and didn't. Copy entire word. - */ - goto nosub; - } - } else { - /* - * Pattern is unanchored: search for the pattern in the word using - * String_FindSubstring, copying unmatched portions and the - * right-hand-side for each match found, handling non-global - * substitutions correctly, etc. When the loop is done, any - * remaining part of the word (word and wordLen are adjusted - * accordingly through the loop) is copied straight into the - * buffer. - * addSpace is set FALSE as soon as a space is added to the - * buffer. - */ - Boolean done; - int origSize; - - done = FALSE; - origSize = Buf_Size(buf); - while (!done) { - cp = Str_FindSubstring(word, pattern->lhs); - if (cp != NULL) { - if (addSpace && (((cp - word) + pattern->rightLen) != 0)){ - Buf_AddByte(buf, vpstate->varSpace); - addSpace = FALSE; - } - Buf_AddBytes(buf, cp-word, word); - Buf_AddBytes(buf, pattern->rightLen, pattern->rhs); - wordLen -= (cp - word) + pattern->leftLen; - word = cp + pattern->leftLen; - if (wordLen == 0) { - done = TRUE; - } - if ((pattern->flags & VAR_SUB_GLOBAL) == 0) { - done = TRUE; - } - pattern->flags |= VAR_SUB_MATCHED; - } else { - done = TRUE; - } - } - if (wordLen != 0) { - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - Buf_AddBytes(buf, wordLen, word); - } - /* - * If added characters to the buffer, need to add a space - * before we add any more. If we didn't add any, just return - * the previous value of addSpace. - */ - return ((Buf_Size(buf) != origSize) || addSpace); - } - return (addSpace); - } - nosub: - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - Buf_AddBytes(buf, wordLen, word); - return(TRUE); -} - -#ifndef NO_REGEX -/*- - *----------------------------------------------------------------------- - * VarREError -- - * Print the error caused by a regcomp or regexec call. - * - * Results: - * None. - * - * Side Effects: - * An error gets printed. - * - *----------------------------------------------------------------------- - */ -static void -VarREError(int errnum, regex_t *pat, const char *str) -{ - char *errbuf; - int errlen; - - errlen = regerror(errnum, pat, 0, 0); - errbuf = bmake_malloc(errlen); - regerror(errnum, pat, errbuf, errlen); - Error("%s: %s", str, errbuf); - free(errbuf); -} - - -/*- - *----------------------------------------------------------------------- - * VarRESubstitute -- - * Perform a regex substitution on the given word, placing the - * result in the passed buffer. - * - * Results: - * TRUE if a space is needed before more characters are added. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static Boolean -VarRESubstitute(GNode *ctx MAKE_ATTR_UNUSED, - Var_Parse_State *vpstate MAKE_ATTR_UNUSED, - char *word, Boolean addSpace, Buffer *buf, - void *patternp) -{ - VarREPattern *pat; - int xrv; - char *wp; - char *rp; - int added; - int flags = 0; - -#define MAYBE_ADD_SPACE() \ - if (addSpace && !added) \ - Buf_AddByte(buf, ' '); \ - added = 1 - - added = 0; - wp = word; - pat = patternp; - - if ((pat->flags & (VAR_SUB_ONE|VAR_SUB_MATCHED)) == - (VAR_SUB_ONE|VAR_SUB_MATCHED)) - xrv = REG_NOMATCH; - else { - tryagain: - xrv = regexec(&pat->re, wp, pat->nsub, pat->matches, flags); - } - - switch (xrv) { - case 0: - pat->flags |= VAR_SUB_MATCHED; - if (pat->matches[0].rm_so > 0) { - MAYBE_ADD_SPACE(); - Buf_AddBytes(buf, pat->matches[0].rm_so, wp); - } - - for (rp = pat->replace; *rp; rp++) { - if ((*rp == '\\') && ((rp[1] == '&') || (rp[1] == '\\'))) { - MAYBE_ADD_SPACE(); - Buf_AddByte(buf,rp[1]); - rp++; - } - else if ((*rp == '&') || - ((*rp == '\\') && isdigit((unsigned char)rp[1]))) { - int n; - const char *subbuf; - int sublen; - char errstr[3]; - - if (*rp == '&') { - n = 0; - errstr[0] = '&'; - errstr[1] = '\0'; - } else { - n = rp[1] - '0'; - errstr[0] = '\\'; - errstr[1] = rp[1]; - errstr[2] = '\0'; - rp++; - } - - if (n > pat->nsub) { - Error("No subexpression %s", &errstr[0]); - subbuf = ""; - sublen = 0; - } else if ((pat->matches[n].rm_so == -1) && - (pat->matches[n].rm_eo == -1)) { - Error("No match for subexpression %s", &errstr[0]); - subbuf = ""; - sublen = 0; - } else { - subbuf = wp + pat->matches[n].rm_so; - sublen = pat->matches[n].rm_eo - pat->matches[n].rm_so; - } - - if (sublen > 0) { - MAYBE_ADD_SPACE(); - Buf_AddBytes(buf, sublen, subbuf); - } - } else { - MAYBE_ADD_SPACE(); - Buf_AddByte(buf, *rp); - } - } - wp += pat->matches[0].rm_eo; - if (pat->flags & VAR_SUB_GLOBAL) { - flags |= REG_NOTBOL; - if (pat->matches[0].rm_so == 0 && pat->matches[0].rm_eo == 0) { - MAYBE_ADD_SPACE(); - Buf_AddByte(buf, *wp); - wp++; - - } - if (*wp) - goto tryagain; - } - if (*wp) { - MAYBE_ADD_SPACE(); - Buf_AddBytes(buf, strlen(wp), wp); - } - break; - default: - VarREError(xrv, &pat->re, "Unexpected regex error"); - /* fall through */ - case REG_NOMATCH: - if (*wp) { - MAYBE_ADD_SPACE(); - Buf_AddBytes(buf,strlen(wp),wp); - } - break; - } - return(addSpace||added); -} -#endif - - - -/*- - *----------------------------------------------------------------------- - * VarLoopExpand -- - * Implements the :@@@ modifier of ODE make. - * We set the temp variable named in pattern.lhs to word and expand - * pattern.rhs storing the result in the passed buffer. - * - * Input: - * word Word to modify - * addSpace True if space should be added before - * other characters - * buf Buffer for result - * pattern Datafor substitution - * - * Results: - * TRUE if a space is needed before more characters are added. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static Boolean -VarLoopExpand(GNode *ctx MAKE_ATTR_UNUSED, - Var_Parse_State *vpstate MAKE_ATTR_UNUSED, - char *word, Boolean addSpace, Buffer *buf, - void *loopp) -{ - VarLoop_t *loop = (VarLoop_t *)loopp; - char *s; - int slen; - - if (word && *word) { - Var_Set(loop->tvar, word, loop->ctxt, VAR_NO_EXPORT); - s = Var_Subst(NULL, loop->str, loop->ctxt, loop->errnum); - if (s != NULL && *s != '\0') { - if (addSpace && *s != '\n') - Buf_AddByte(buf, ' '); - Buf_AddBytes(buf, (slen = strlen(s)), s); - addSpace = (slen > 0 && s[slen - 1] != '\n'); - free(s); - } - } - return addSpace; -} - - -/*- - *----------------------------------------------------------------------- - * VarSelectWords -- - * Implements the :[start..end] modifier. - * This is a special case of VarModify since we want to be able - * to scan the list backwards if start > end. - * - * Input: - * str String whose words should be trimmed - * seldata words to select - * - * Results: - * A string of all the words selected. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static char * -VarSelectWords(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, - const char *str, VarSelectWords_t *seldata) -{ - Buffer buf; /* Buffer for the new string */ - Boolean addSpace; /* TRUE if need to add a space to the - * buffer before adding the trimmed - * word */ - char **av; /* word list */ - char *as; /* word list memory */ - int ac, i; - int start, end, step; - - Buf_Init(&buf, 0); - addSpace = FALSE; - - if (vpstate->oneBigWord) { - /* fake what brk_string() would do if there were only one word */ - ac = 1; - av = bmake_malloc((ac + 1) * sizeof(char *)); - as = bmake_strdup(str); - av[0] = as; - av[1] = NULL; - } else { - av = brk_string(str, &ac, FALSE, &as); - } - - /* - * Now sanitize seldata. - * If seldata->start or seldata->end are negative, convert them to - * the positive equivalents (-1 gets converted to argc, -2 gets - * converted to (argc-1), etc.). - */ - if (seldata->start < 0) - seldata->start = ac + seldata->start + 1; - if (seldata->end < 0) - seldata->end = ac + seldata->end + 1; - - /* - * We avoid scanning more of the list than we need to. - */ - if (seldata->start > seldata->end) { - start = MIN(ac, seldata->start) - 1; - end = MAX(0, seldata->end - 1); - step = -1; - } else { - start = MAX(0, seldata->start - 1); - end = MIN(ac, seldata->end); - step = 1; - } - - for (i = start; - (step < 0 && i >= end) || (step > 0 && i < end); - i += step) { - if (av[i] && *av[i]) { - if (addSpace && vpstate->varSpace) { - Buf_AddByte(&buf, vpstate->varSpace); - } - Buf_AddBytes(&buf, strlen(av[i]), av[i]); - addSpace = TRUE; - } - } - - free(as); - free(av); - - return Buf_Destroy(&buf, FALSE); -} - - -/*- - * VarRealpath -- - * Replace each word with the result of realpath() - * if successful. - */ -static Boolean -VarRealpath(GNode *ctx MAKE_ATTR_UNUSED, Var_Parse_State *vpstate, - char *word, Boolean addSpace, Buffer *buf, - void *patternp MAKE_ATTR_UNUSED) -{ - struct stat st; - char rbuf[MAXPATHLEN]; - char *rp; - - if (addSpace && vpstate->varSpace) { - Buf_AddByte(buf, vpstate->varSpace); - } - addSpace = TRUE; - rp = realpath(word, rbuf); - if (rp && *rp == '/' && stat(rp, &st) == 0) - word = rp; - - Buf_AddBytes(buf, strlen(word), word); - return(addSpace); -} - -/*- - *----------------------------------------------------------------------- - * VarModify -- - * Modify each of the words of the passed string using the given - * function. Used to implement all modifiers. - * - * Input: - * str String whose words should be trimmed - * modProc Function to use to modify them - * datum Datum to pass it - * - * Results: - * A string of all the words modified appropriately. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static char * -VarModify(GNode *ctx, Var_Parse_State *vpstate, - const char *str, - Boolean (*modProc)(GNode *, Var_Parse_State *, char *, - Boolean, Buffer *, void *), - void *datum) -{ - Buffer buf; /* Buffer for the new string */ - Boolean addSpace; /* TRUE if need to add a space to the - * buffer before adding the trimmed - * word */ - char **av; /* word list */ - char *as; /* word list memory */ - int ac, i; - - Buf_Init(&buf, 0); - addSpace = FALSE; - - if (vpstate->oneBigWord) { - /* fake what brk_string() would do if there were only one word */ - ac = 1; - av = bmake_malloc((ac + 1) * sizeof(char *)); - as = bmake_strdup(str); - av[0] = as; - av[1] = NULL; - } else { - av = brk_string(str, &ac, FALSE, &as); - } - - for (i = 0; i < ac; i++) { - addSpace = (*modProc)(ctx, vpstate, av[i], addSpace, &buf, datum); - } - - free(as); - free(av); - - return Buf_Destroy(&buf, FALSE); -} - - -static int -VarWordCompare(const void *a, const void *b) -{ - int r = strcmp(*(const char * const *)a, *(const char * const *)b); - return r; -} - -/*- - *----------------------------------------------------------------------- - * VarOrder -- - * Order the words in the string. - * - * Input: - * str String whose words should be sorted. - * otype How to order: s - sort, x - random. - * - * Results: - * A string containing the words ordered. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static char * -VarOrder(const char *str, const char otype) -{ - Buffer buf; /* Buffer for the new string */ - char **av; /* word list [first word does not count] */ - char *as; /* word list memory */ - int ac, i; - - Buf_Init(&buf, 0); - - av = brk_string(str, &ac, FALSE, &as); - - if (ac > 0) - switch (otype) { - case 's': /* sort alphabetically */ - qsort(av, ac, sizeof(char *), VarWordCompare); - break; - case 'x': /* randomize */ - { - int rndidx; - char *t; - - /* - * We will use [ac..2] range for mod factors. This will produce - * random numbers in [(ac-1)..0] interval, and minimal - * reasonable value for mod factor is 2 (the mod 1 will produce - * 0 with probability 1). - */ - for (i = ac-1; i > 0; i--) { - rndidx = random() % (i + 1); - if (i != rndidx) { - t = av[i]; - av[i] = av[rndidx]; - av[rndidx] = t; - } - } - } - } /* end of switch */ - - for (i = 0; i < ac; i++) { - Buf_AddBytes(&buf, strlen(av[i]), av[i]); - if (i != ac - 1) - Buf_AddByte(&buf, ' '); - } - - free(as); - free(av); - - return Buf_Destroy(&buf, FALSE); -} - - -/*- - *----------------------------------------------------------------------- - * VarUniq -- - * Remove adjacent duplicate words. - * - * Input: - * str String whose words should be sorted - * - * Results: - * A string containing the resulting words. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static char * -VarUniq(const char *str) -{ - Buffer buf; /* Buffer for new string */ - char **av; /* List of words to affect */ - char *as; /* Word list memory */ - int ac, i, j; - - Buf_Init(&buf, 0); - av = brk_string(str, &ac, FALSE, &as); - - if (ac > 1) { - for (j = 0, i = 1; i < ac; i++) - if (strcmp(av[i], av[j]) != 0 && (++j != i)) - av[j] = av[i]; - ac = j + 1; - } - - for (i = 0; i < ac; i++) { - Buf_AddBytes(&buf, strlen(av[i]), av[i]); - if (i != ac - 1) - Buf_AddByte(&buf, ' '); - } - - free(as); - free(av); - - return Buf_Destroy(&buf, FALSE); -} - - -/*- - *----------------------------------------------------------------------- - * VarGetPattern -- - * Pass through the tstr looking for 1) escaped delimiters, - * '$'s and backslashes (place the escaped character in - * uninterpreted) and 2) unescaped $'s that aren't before - * the delimiter (expand the variable substitution unless flags - * has VAR_NOSUBST set). - * Return the expanded string or NULL if the delimiter was missing - * If pattern is specified, handle escaped ampersands, and replace - * unescaped ampersands with the lhs of the pattern. - * - * Results: - * A string of all the words modified appropriately. - * If length is specified, return the string length of the buffer - * If flags is specified and the last character of the pattern is a - * $ set the VAR_MATCH_END bit of flags. - * - * Side Effects: - * None. - *----------------------------------------------------------------------- - */ -static char * -VarGetPattern(GNode *ctxt, Var_Parse_State *vpstate MAKE_ATTR_UNUSED, - int errnum, const char **tstr, int delim, int *flags, - int *length, VarPattern *pattern) -{ - const char *cp; - char *rstr; - Buffer buf; - int junk; - - Buf_Init(&buf, 0); - if (length == NULL) - length = &junk; - -#define IS_A_MATCH(cp, delim) \ - ((cp[0] == '\\') && ((cp[1] == delim) || \ - (cp[1] == '\\') || (cp[1] == '$') || (pattern && (cp[1] == '&')))) - - /* - * Skim through until the matching delimiter is found; - * pick up variable substitutions on the way. Also allow - * backslashes to quote the delimiter, $, and \, but don't - * touch other backslashes. - */ - for (cp = *tstr; *cp && (*cp != delim); cp++) { - if (IS_A_MATCH(cp, delim)) { - Buf_AddByte(&buf, cp[1]); - cp++; - } else if (*cp == '$') { - if (cp[1] == delim) { - if (flags == NULL) - Buf_AddByte(&buf, *cp); - else - /* - * Unescaped $ at end of pattern => anchor - * pattern at end. - */ - *flags |= VAR_MATCH_END; - } else { - if (flags == NULL || (*flags & VAR_NOSUBST) == 0) { - char *cp2; - int len; - void *freeIt; - - /* - * If unescaped dollar sign not before the - * delimiter, assume it's a variable - * substitution and recurse. - */ - cp2 = Var_Parse(cp, ctxt, errnum, &len, &freeIt); - Buf_AddBytes(&buf, strlen(cp2), cp2); - if (freeIt) - free(freeIt); - cp += len - 1; - } else { - const char *cp2 = &cp[1]; - - if (*cp2 == PROPEN || *cp2 == BROPEN) { - /* - * Find the end of this variable reference - * and suck it in without further ado. - * It will be interperated later. - */ - int have = *cp2; - int want = (*cp2 == PROPEN) ? PRCLOSE : BRCLOSE; - int depth = 1; - - for (++cp2; *cp2 != '\0' && depth > 0; ++cp2) { - if (cp2[-1] != '\\') { - if (*cp2 == have) - ++depth; - if (*cp2 == want) - --depth; - } - } - Buf_AddBytes(&buf, cp2 - cp, cp); - cp = --cp2; - } else - Buf_AddByte(&buf, *cp); - } - } - } - else if (pattern && *cp == '&') - Buf_AddBytes(&buf, pattern->leftLen, pattern->lhs); - else - Buf_AddByte(&buf, *cp); - } - - if (*cp != delim) { - *tstr = cp; - *length = 0; - return NULL; - } - - *tstr = ++cp; - *length = Buf_Size(&buf); - rstr = Buf_Destroy(&buf, FALSE); - if (DEBUG(VAR)) - fprintf(debug_file, "Modifier pattern: \"%s\"\n", rstr); - return rstr; -} - -/*- - *----------------------------------------------------------------------- - * VarQuote -- - * Quote shell meta-characters in the string - * - * Results: - * The quoted string - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static char * -VarQuote(char *str) -{ - - Buffer buf; - /* This should cover most shells :-( */ - static const char meta[] = "\n \t'`\";&<>()|*?{}[]\\$!#^~"; - const char *newline; - size_t len, nlen; - - if ((newline = Shell_GetNewline()) == NULL) - newline = "\\\n"; - nlen = strlen(newline); - - Buf_Init(&buf, 0); - while (*str != '\0') { - if ((len = strcspn(str, meta)) != 0) { - Buf_AddBytes(&buf, len, str); - str += len; - } else if (*str == '\n') { - Buf_AddBytes(&buf, nlen, newline); - ++str; - } else { - Buf_AddByte(&buf, '\\'); - Buf_AddByte(&buf, *str); - ++str; - } - } - str = Buf_Destroy(&buf, FALSE); - if (DEBUG(VAR)) - fprintf(debug_file, "QuoteMeta: [%s]\n", str); - return str; -} - -/*- - *----------------------------------------------------------------------- - * VarHash -- - * Hash the string using the MurmurHash3 algorithm. - * Output is computed using 32bit Little Endian arithmetic. - * - * Input: - * str String to modify - * - * Results: - * Hash value of str, encoded as 8 hex digits. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static char * -VarHash(char *str) -{ - static const char hexdigits[16] = "0123456789abcdef"; - Buffer buf; - size_t len, len2; - unsigned char *ustr = (unsigned char *)str; - uint32_t h, k, c1, c2; - int done; - - done = 1; - h = 0x971e137bU; - c1 = 0x95543787U; - c2 = 0x2ad7eb25U; - len2 = strlen(str); - - for (len = len2; len; ) { - k = 0; - switch (len) { - default: - k = (ustr[3] << 24) | (ustr[2] << 16) | (ustr[1] << 8) | ustr[0]; - len -= 4; - ustr += 4; - break; - case 3: - k |= (ustr[2] << 16); - case 2: - k |= (ustr[1] << 8); - case 1: - k |= ustr[0]; - len = 0; - } - c1 = c1 * 5 + 0x7b7d159cU; - c2 = c2 * 5 + 0x6bce6396U; - k *= c1; - k = (k << 11) ^ (k >> 21); - k *= c2; - h = (h << 13) ^ (h >> 19); - h = h * 5 + 0x52dce729U; - h ^= k; - } while (!done); - h ^= len2; - h *= 0x85ebca6b; - h ^= h >> 13; - h *= 0xc2b2ae35; - h ^= h >> 16; - - Buf_Init(&buf, 0); - for (len = 0; len < 8; ++len) { - Buf_AddByte(&buf, hexdigits[h & 15]); - h >>= 4; - } - - return Buf_Destroy(&buf, FALSE); -} - -/*- - *----------------------------------------------------------------------- - * VarChangeCase -- - * Change the string to all uppercase or all lowercase - * - * Input: - * str String to modify - * upper TRUE -> uppercase, else lowercase - * - * Results: - * The string with case changed - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -static char * -VarChangeCase(char *str, int upper) -{ - Buffer buf; - int (*modProc)(int); - - modProc = (upper ? toupper : tolower); - Buf_Init(&buf, 0); - for (; *str ; str++) { - Buf_AddByte(&buf, modProc(*str)); - } - return Buf_Destroy(&buf, FALSE); -} - -static char * -VarStrftime(const char *fmt, int zulu) -{ - char buf[BUFSIZ]; - time_t utc; - - time(&utc); - if (!*fmt) - fmt = "%c"; - strftime(buf, sizeof(buf), fmt, zulu ? gmtime(&utc) : localtime(&utc)); - - buf[sizeof(buf) - 1] = '\0'; - return bmake_strdup(buf); -} - -/* - * Now we need to apply any modifiers the user wants applied. - * These are: - * :M words which match the given . - * is of the standard file - * wildcarding form. - * :N words which do not match the given . - * :S[1gW] - * Substitute for in the value - * :C[1gW] - * Substitute for regex in the value - * :H Substitute the head of each word - * :T Substitute the tail of each word - * :E Substitute the extension (minus '.') of - * each word - * :R Substitute the root of each word - * (pathname minus the suffix). - * :O ("Order") Alphabeticaly sort words in variable. - * :Ox ("intermiX") Randomize words in variable. - * :u ("uniq") Remove adjacent duplicate words. - * :tu Converts the variable contents to uppercase. - * :tl Converts the variable contents to lowercase. - * :ts[c] Sets varSpace - the char used to - * separate words to 'c'. If 'c' is - * omitted then no separation is used. - * :tW Treat the variable contents as a single - * word, even if it contains spaces. - * (Mnemonic: one big 'W'ord.) - * :tw Treat the variable contents as multiple - * space-separated words. - * (Mnemonic: many small 'w'ords.) - * :[index] Select a single word from the value. - * :[start..end] Select multiple words from the value. - * :[*] or :[0] Select the entire value, as a single - * word. Equivalent to :tW. - * :[@] Select the entire value, as multiple - * words. Undoes the effect of :[*]. - * Equivalent to :tw. - * :[#] Returns the number of words in the value. - * - * :?: - * If the variable evaluates to true, return - * true value, else return the second value. - * :lhs=rhs Like :S, but the rhs goes to the end of - * the invocation. - * :sh Treat the current value as a command - * to be run, new value is its output. - * The following added so we can handle ODE makefiles. - * :@@@ - * Assign a temporary local variable - * to the current value of each word in turn - * and replace each word with the result of - * evaluating - * :D Use as value if variable defined - * :U Use as value if variable undefined - * :L Use the name of the variable as the value. - * :P Use the path of the node that has the same - * name as the variable as the value. This - * basically includes an implied :L so that - * the common method of refering to the path - * of your dependent 'x' in a rule is to use - * the form '${x:P}'. - * :!! Run cmd much the same as :sh run's the - * current value of the variable. - * The ::= modifiers, actually assign a value to the variable. - * Their main purpose is in supporting modifiers of .for loop - * iterators and other obscure uses. They always expand to - * nothing. In a target rule that would otherwise expand to an - * empty line they can be preceded with @: to keep make happy. - * Eg. - * - * foo: .USE - * .for i in ${.TARGET} ${.TARGET:R}.gz - * @: ${t::=$i} - * @echo blah ${t:T} - * .endfor - * - * ::= Assigns as the new value of variable. - * ::?= Assigns as value of variable if - * it was not already set. - * ::+= Appends to variable. - * ::!= Assigns output of as the new value of - * variable. - */ - -/* we now have some modifiers with long names */ -#define STRMOD_MATCH(s, want, n) \ - (strncmp(s, want, n) == 0 && (s[n] == endc || s[n] == ':')) - -static char * -ApplyModifiers(char *nstr, const char *tstr, - int startc, int endc, - Var *v, GNode *ctxt, Boolean errnum, - int *lengthPtr, void **freePtr) -{ - const char *start; - const char *cp; /* Secondary pointer into str (place marker - * for tstr) */ - char *newStr; /* New value to return */ - char termc; /* Character which terminated scan */ - int cnt; /* Used to count brace pairs when variable in - * in parens or braces */ - char delim; - int modifier; /* that we are processing */ - Var_Parse_State parsestate; /* Flags passed to helper functions */ - - delim = '\0'; - parsestate.oneBigWord = FALSE; - parsestate.varSpace = ' '; /* word separator */ - - start = cp = tstr; - - while (*tstr && *tstr != endc) { - - if (*tstr == '$') { - /* - * We may have some complex modifiers in a variable. - */ - void *freeIt; - char *rval; - int rlen; - int c; - - rval = Var_Parse(tstr, ctxt, errnum, &rlen, &freeIt); - - /* - * If we have not parsed up to endc or ':', - * we are not interested. - */ - if (rval != NULL && *rval && - (c = tstr[rlen]) != '\0' && - c != ':' && - c != endc) { - if (freeIt) - free(freeIt); - goto apply_mods; - } - - if (DEBUG(VAR)) { - fprintf(debug_file, "Got '%s' from '%.*s'%.*s\n", - rval, rlen, tstr, rlen, tstr + rlen); - } - - tstr += rlen; - - if (rval != NULL && *rval) { - int used; - - nstr = ApplyModifiers(nstr, rval, - 0, 0, - v, ctxt, errnum, &used, freePtr); - if (nstr == var_Error - || (nstr == varNoError && errnum == 0) - || strlen(rval) != (size_t) used) { - if (freeIt) - free(freeIt); - goto out; /* error already reported */ - } - } - if (freeIt) - free(freeIt); - if (*tstr == ':') - tstr++; - else if (!*tstr && endc) { - Error("Unclosed variable specification after complex modifier (expecting '%c') for %s", endc, v->name); - goto out; - } - continue; - } - apply_mods: - if (DEBUG(VAR)) { - fprintf(debug_file, "Applying :%c to \"%s\"\n", *tstr, nstr); - } - newStr = var_Error; - switch ((modifier = *tstr)) { - case ':': - { - if (tstr[1] == '=' || - (tstr[2] == '=' && - (tstr[1] == '!' || tstr[1] == '+' || tstr[1] == '?'))) { - /* - * "::=", "::!=", "::+=", or "::?=" - */ - GNode *v_ctxt; /* context where v belongs */ - const char *emsg; - char *sv_name; - VarPattern pattern; - int how; - - if (v->name[0] == 0) - goto bad_modifier; - - v_ctxt = ctxt; - sv_name = NULL; - ++tstr; - if (v->flags & VAR_JUNK) { - /* - * We need to bmake_strdup() it incase - * VarGetPattern() recurses. - */ - sv_name = v->name; - v->name = bmake_strdup(v->name); - } else if (ctxt != VAR_GLOBAL) { - Var *gv = VarFind(v->name, ctxt, 0); - if (gv == NULL) - v_ctxt = VAR_GLOBAL; - else - VarFreeEnv(gv, TRUE); - } - - switch ((how = *tstr)) { - case '+': - case '?': - case '!': - cp = &tstr[2]; - break; - default: - cp = ++tstr; - break; - } - delim = startc == PROPEN ? PRCLOSE : BRCLOSE; - pattern.flags = 0; - - pattern.rhs = VarGetPattern(ctxt, &parsestate, errnum, - &cp, delim, NULL, - &pattern.rightLen, - NULL); - if (v->flags & VAR_JUNK) { - /* restore original name */ - free(v->name); - v->name = sv_name; - } - if (pattern.rhs == NULL) - goto cleanup; - - termc = *--cp; - delim = '\0'; - - switch (how) { - case '+': - Var_Append(v->name, pattern.rhs, v_ctxt); - break; - case '!': - newStr = Cmd_Exec(pattern.rhs, &emsg); - if (emsg) - Error(emsg, nstr); - else - Var_Set(v->name, newStr, v_ctxt, 0); - if (newStr) - free(newStr); - break; - case '?': - if ((v->flags & VAR_JUNK) == 0) - break; - /* FALLTHROUGH */ - default: - Var_Set(v->name, pattern.rhs, v_ctxt, 0); - break; - } - free(UNCONST(pattern.rhs)); - newStr = var_Error; - break; - } - goto default_case; /* "::" */ - } - case '@': - { - VarLoop_t loop; - int flags = VAR_NOSUBST; - - cp = ++tstr; - delim = '@'; - if ((loop.tvar = VarGetPattern(ctxt, &parsestate, errnum, - &cp, delim, - &flags, &loop.tvarLen, - NULL)) == NULL) - goto cleanup; - - if ((loop.str = VarGetPattern(ctxt, &parsestate, errnum, - &cp, delim, - &flags, &loop.strLen, - NULL)) == NULL) - goto cleanup; - - termc = *cp; - delim = '\0'; - - loop.errnum = errnum; - loop.ctxt = ctxt; - newStr = VarModify(ctxt, &parsestate, nstr, VarLoopExpand, - &loop); - free(loop.tvar); - free(loop.str); - break; - } - case 'D': - case 'U': - { - Buffer buf; /* Buffer for patterns */ - int wantit; /* want data in buffer */ - - /* - * Pass through tstr looking for 1) escaped delimiters, - * '$'s and backslashes (place the escaped character in - * uninterpreted) and 2) unescaped $'s that aren't before - * the delimiter (expand the variable substitution). - * The result is left in the Buffer buf. - */ - Buf_Init(&buf, 0); - for (cp = tstr + 1; - *cp != endc && *cp != ':' && *cp != '\0'; - cp++) { - if ((*cp == '\\') && - ((cp[1] == ':') || - (cp[1] == '$') || - (cp[1] == endc) || - (cp[1] == '\\'))) - { - Buf_AddByte(&buf, cp[1]); - cp++; - } else if (*cp == '$') { - /* - * If unescaped dollar sign, assume it's a - * variable substitution and recurse. - */ - char *cp2; - int len; - void *freeIt; - - cp2 = Var_Parse(cp, ctxt, errnum, &len, &freeIt); - Buf_AddBytes(&buf, strlen(cp2), cp2); - if (freeIt) - free(freeIt); - cp += len - 1; - } else { - Buf_AddByte(&buf, *cp); - } - } - - termc = *cp; - - if (*tstr == 'U') - wantit = ((v->flags & VAR_JUNK) != 0); - else - wantit = ((v->flags & VAR_JUNK) == 0); - if ((v->flags & VAR_JUNK) != 0) - v->flags |= VAR_KEEP; - if (wantit) { - newStr = Buf_Destroy(&buf, FALSE); - } else { - newStr = nstr; - Buf_Destroy(&buf, TRUE); - } - break; - } - case 'L': - { - if ((v->flags & VAR_JUNK) != 0) - v->flags |= VAR_KEEP; - newStr = bmake_strdup(v->name); - cp = ++tstr; - termc = *tstr; - break; - } - case 'P': - { - GNode *gn; - - if ((v->flags & VAR_JUNK) != 0) - v->flags |= VAR_KEEP; - gn = Targ_FindNode(v->name, TARG_NOCREATE); - if (gn == NULL || gn->type & OP_NOPATH) { - newStr = NULL; - } else if (gn->path) { - newStr = bmake_strdup(gn->path); - } else { - newStr = Dir_FindFile(v->name, Suff_FindPath(gn)); - } - if (!newStr) { - newStr = bmake_strdup(v->name); - } - cp = ++tstr; - termc = *tstr; - break; - } - case '!': - { - const char *emsg; - VarPattern pattern; - pattern.flags = 0; - - delim = '!'; - - cp = ++tstr; - if ((pattern.rhs = VarGetPattern(ctxt, &parsestate, errnum, - &cp, delim, - NULL, &pattern.rightLen, - NULL)) == NULL) - goto cleanup; - newStr = Cmd_Exec(pattern.rhs, &emsg); - free(UNCONST(pattern.rhs)); - if (emsg) - Error(emsg, nstr); - termc = *cp; - delim = '\0'; - if (v->flags & VAR_JUNK) { - v->flags |= VAR_KEEP; - } - break; - } - case '[': - { - /* - * Look for the closing ']', recursively - * expanding any embedded variables. - * - * estr is a pointer to the expanded result, - * which we must free(). - */ - char *estr; - - cp = tstr+1; /* point to char after '[' */ - delim = ']'; /* look for closing ']' */ - estr = VarGetPattern(ctxt, &parsestate, - errnum, &cp, delim, - NULL, NULL, NULL); - if (estr == NULL) - goto cleanup; /* report missing ']' */ - /* now cp points just after the closing ']' */ - delim = '\0'; - if (cp[0] != ':' && cp[0] != endc) { - /* Found junk after ']' */ - free(estr); - goto bad_modifier; - } - if (estr[0] == '\0') { - /* Found empty square brackets in ":[]". */ - free(estr); - goto bad_modifier; - } else if (estr[0] == '#' && estr[1] == '\0') { - /* Found ":[#]" */ - - /* - * We will need enough space for the decimal - * representation of an int. We calculate the - * space needed for the octal representation, - * and add enough slop to cope with a '-' sign - * (which should never be needed) and a '\0' - * string terminator. - */ - int newStrSize = - (sizeof(int) * CHAR_BIT + 2) / 3 + 2; - - newStr = bmake_malloc(newStrSize); - if (parsestate.oneBigWord) { - strncpy(newStr, "1", newStrSize); - } else { - /* XXX: brk_string() is a rather expensive - * way of counting words. */ - char **av; - char *as; - int ac; - - av = brk_string(nstr, &ac, FALSE, &as); - snprintf(newStr, newStrSize, "%d", ac); - free(as); - free(av); - } - termc = *cp; - free(estr); - break; - } else if (estr[0] == '*' && estr[1] == '\0') { - /* Found ":[*]" */ - parsestate.oneBigWord = TRUE; - newStr = nstr; - termc = *cp; - free(estr); - break; - } else if (estr[0] == '@' && estr[1] == '\0') { - /* Found ":[@]" */ - parsestate.oneBigWord = FALSE; - newStr = nstr; - termc = *cp; - free(estr); - break; - } else { - /* - * We expect estr to contain a single - * integer for :[N], or two integers - * separated by ".." for :[start..end]. - */ - char *ep; - - VarSelectWords_t seldata = { 0, 0 }; - - seldata.start = strtol(estr, &ep, 0); - if (ep == estr) { - /* Found junk instead of a number */ - free(estr); - goto bad_modifier; - } else if (ep[0] == '\0') { - /* Found only one integer in :[N] */ - seldata.end = seldata.start; - } else if (ep[0] == '.' && ep[1] == '.' && - ep[2] != '\0') { - /* Expecting another integer after ".." */ - ep += 2; - seldata.end = strtol(ep, &ep, 0); - if (ep[0] != '\0') { - /* Found junk after ".." */ - free(estr); - goto bad_modifier; - } - } else { - /* Found junk instead of ".." */ - free(estr); - goto bad_modifier; - } - /* - * Now seldata is properly filled in, - * but we still have to check for 0 as - * a special case. - */ - if (seldata.start == 0 && seldata.end == 0) { - /* ":[0]" or perhaps ":[0..0]" */ - parsestate.oneBigWord = TRUE; - newStr = nstr; - termc = *cp; - free(estr); - break; - } else if (seldata.start == 0 || - seldata.end == 0) { - /* ":[0..N]" or ":[N..0]" */ - free(estr); - goto bad_modifier; - } - /* - * Normal case: select the words - * described by seldata. - */ - newStr = VarSelectWords(ctxt, &parsestate, - nstr, &seldata); - - termc = *cp; - free(estr); - break; - } - - } - case 'g': - cp = tstr + 1; /* make sure it is set */ - if (STRMOD_MATCH(tstr, "gmtime", 6)) { - newStr = VarStrftime(nstr, 1); - cp = tstr + 6; - termc = *cp; - } else { - goto default_case; - } - break; - case 'h': - cp = tstr + 1; /* make sure it is set */ - if (STRMOD_MATCH(tstr, "hash", 4)) { - newStr = VarHash(nstr); - cp = tstr + 4; - termc = *cp; - } else { - goto default_case; - } - break; - case 'l': - cp = tstr + 1; /* make sure it is set */ - if (STRMOD_MATCH(tstr, "localtime", 9)) { - newStr = VarStrftime(nstr, 0); - cp = tstr + 9; - termc = *cp; - } else { - goto default_case; - } - break; - case 't': - { - cp = tstr + 1; /* make sure it is set */ - if (tstr[1] != endc && tstr[1] != ':') { - if (tstr[1] == 's') { - /* - * Use the char (if any) at tstr[2] - * as the word separator. - */ - VarPattern pattern; - - if (tstr[2] != endc && - (tstr[3] == endc || tstr[3] == ':')) { - /* ":ts" or - * ":ts:" */ - parsestate.varSpace = tstr[2]; - cp = tstr + 3; - } else if (tstr[2] == endc || tstr[2] == ':') { - /* ":ts" or ":ts:" */ - parsestate.varSpace = 0; /* no separator */ - cp = tstr + 2; - } else if (tstr[2] == '\\') { - switch (tstr[3]) { - case 'n': - parsestate.varSpace = '\n'; - cp = tstr + 4; - break; - case 't': - parsestate.varSpace = '\t'; - cp = tstr + 4; - break; - default: - if (isdigit((unsigned char)tstr[3])) { - char *ep; - - parsestate.varSpace = - strtoul(&tstr[3], &ep, 0); - if (*ep != ':' && *ep != endc) - goto bad_modifier; - cp = ep; - } else { - /* - * ":ts". - */ - goto bad_modifier; - } - break; - } - } else { - /* - * Found ":ts". - */ - goto bad_modifier; - } - - termc = *cp; - - /* - * We cannot be certain that VarModify - * will be used - even if there is a - * subsequent modifier, so do a no-op - * VarSubstitute now to for str to be - * re-expanded without the spaces. - */ - pattern.flags = VAR_SUB_ONE; - pattern.lhs = pattern.rhs = "\032"; - pattern.leftLen = pattern.rightLen = 1; - - newStr = VarModify(ctxt, &parsestate, nstr, - VarSubstitute, - &pattern); - } else if (tstr[2] == endc || tstr[2] == ':') { - /* - * Check for two-character options: - * ":tu", ":tl" - */ - if (tstr[1] == 'A') { /* absolute path */ - newStr = VarModify(ctxt, &parsestate, nstr, - VarRealpath, NULL); - cp = tstr + 2; - termc = *cp; - } else if (tstr[1] == 'u' || tstr[1] == 'l') { - newStr = VarChangeCase(nstr, (tstr[1] == 'u')); - cp = tstr + 2; - termc = *cp; - } else if (tstr[1] == 'W' || tstr[1] == 'w') { - parsestate.oneBigWord = (tstr[1] == 'W'); - newStr = nstr; - cp = tstr + 2; - termc = *cp; - } else { - /* Found ":t:" or - * ":t". */ - goto bad_modifier; - } - } else { - /* - * Found ":t". - */ - goto bad_modifier; - } - } else { - /* - * Found ":t" or ":t:". - */ - goto bad_modifier; - } - break; - } - case 'N': - case 'M': - { - char *pattern; - const char *endpat; /* points just after end of pattern */ - char *cp2; - Boolean copy; /* pattern should be, or has been, copied */ - Boolean needSubst; - int nest; - - copy = FALSE; - needSubst = FALSE; - nest = 1; - /* - * In the loop below, ignore ':' unless we are at - * (or back to) the original brace level. - * XXX This will likely not work right if $() and ${} - * are intermixed. - */ - for (cp = tstr + 1; - *cp != '\0' && !(*cp == ':' && nest == 1); - cp++) - { - if (*cp == '\\' && - (cp[1] == ':' || - cp[1] == endc || cp[1] == startc)) { - if (!needSubst) { - copy = TRUE; - } - cp++; - continue; - } - if (*cp == '$') { - needSubst = TRUE; - } - if (*cp == '(' || *cp == '{') - ++nest; - if (*cp == ')' || *cp == '}') { - --nest; - if (nest == 0) - break; - } - } - termc = *cp; - endpat = cp; - if (copy) { - /* - * Need to compress the \:'s out of the pattern, so - * allocate enough room to hold the uncompressed - * pattern (note that cp started at tstr+1, so - * cp - tstr takes the null byte into account) and - * compress the pattern into the space. - */ - pattern = bmake_malloc(cp - tstr); - for (cp2 = pattern, cp = tstr + 1; - cp < endpat; - cp++, cp2++) - { - if ((*cp == '\\') && (cp+1 < endpat) && - (cp[1] == ':' || cp[1] == endc)) { - cp++; - } - *cp2 = *cp; - } - *cp2 = '\0'; - endpat = cp2; - } else { - /* - * Either Var_Subst or VarModify will need a - * nul-terminated string soon, so construct one now. - */ - pattern = bmake_strndup(tstr+1, endpat - (tstr + 1)); - } - if (needSubst) { - /* - * pattern contains embedded '$', so use Var_Subst to - * expand it. - */ - cp2 = pattern; - pattern = Var_Subst(NULL, cp2, ctxt, errnum); - free(cp2); - } - if (DEBUG(VAR)) - fprintf(debug_file, "Pattern for [%s] is [%s]\n", nstr, - pattern); - if (*tstr == 'M') { - newStr = VarModify(ctxt, &parsestate, nstr, VarMatch, - pattern); - } else { - newStr = VarModify(ctxt, &parsestate, nstr, VarNoMatch, - pattern); - } - free(pattern); - break; - } - case 'S': - { - VarPattern pattern; - Var_Parse_State tmpparsestate; - - pattern.flags = 0; - tmpparsestate = parsestate; - delim = tstr[1]; - tstr += 2; - - /* - * If pattern begins with '^', it is anchored to the - * start of the word -- skip over it and flag pattern. - */ - if (*tstr == '^') { - pattern.flags |= VAR_MATCH_START; - tstr += 1; - } - - cp = tstr; - if ((pattern.lhs = VarGetPattern(ctxt, &parsestate, errnum, - &cp, delim, - &pattern.flags, - &pattern.leftLen, - NULL)) == NULL) - goto cleanup; - - if ((pattern.rhs = VarGetPattern(ctxt, &parsestate, errnum, - &cp, delim, NULL, - &pattern.rightLen, - &pattern)) == NULL) - goto cleanup; - - /* - * Check for global substitution. If 'g' after the final - * delimiter, substitution is global and is marked that - * way. - */ - for (;; cp++) { - switch (*cp) { - case 'g': - pattern.flags |= VAR_SUB_GLOBAL; - continue; - case '1': - pattern.flags |= VAR_SUB_ONE; - continue; - case 'W': - tmpparsestate.oneBigWord = TRUE; - continue; - } - break; - } - - termc = *cp; - newStr = VarModify(ctxt, &tmpparsestate, nstr, - VarSubstitute, - &pattern); - - /* - * Free the two strings. - */ - free(UNCONST(pattern.lhs)); - free(UNCONST(pattern.rhs)); - delim = '\0'; - break; - } - case '?': - { - VarPattern pattern; - Boolean value; - - /* find ':', and then substitute accordingly */ - - pattern.flags = 0; - - cp = ++tstr; - delim = ':'; - if ((pattern.lhs = VarGetPattern(ctxt, &parsestate, errnum, - &cp, delim, NULL, - &pattern.leftLen, - NULL)) == NULL) - goto cleanup; - - /* BROPEN or PROPEN */ - delim = endc; - if ((pattern.rhs = VarGetPattern(ctxt, &parsestate, errnum, - &cp, delim, NULL, - &pattern.rightLen, - NULL)) == NULL) - goto cleanup; - - termc = *--cp; - delim = '\0'; - if (Cond_EvalExpression(NULL, v->name, &value, 0) - == COND_INVALID) { - Error("Bad conditional expression `%s' in %s?%s:%s", - v->name, v->name, pattern.lhs, pattern.rhs); - goto cleanup; - } - - if (value) { - newStr = UNCONST(pattern.lhs); - free(UNCONST(pattern.rhs)); - } else { - newStr = UNCONST(pattern.rhs); - free(UNCONST(pattern.lhs)); - } - if (v->flags & VAR_JUNK) { - v->flags |= VAR_KEEP; - } - break; - } -#ifndef NO_REGEX - case 'C': - { - VarREPattern pattern; - char *re; - int error; - Var_Parse_State tmpparsestate; - - pattern.flags = 0; - tmpparsestate = parsestate; - delim = tstr[1]; - tstr += 2; - - cp = tstr; - - if ((re = VarGetPattern(ctxt, &parsestate, errnum, &cp, delim, - NULL, NULL, NULL)) == NULL) - goto cleanup; - - if ((pattern.replace = VarGetPattern(ctxt, &parsestate, - errnum, &cp, delim, NULL, - NULL, NULL)) == NULL){ - free(re); - goto cleanup; - } - - for (;; cp++) { - switch (*cp) { - case 'g': - pattern.flags |= VAR_SUB_GLOBAL; - continue; - case '1': - pattern.flags |= VAR_SUB_ONE; - continue; - case 'W': - tmpparsestate.oneBigWord = TRUE; - continue; - } - break; - } - - termc = *cp; - - error = regcomp(&pattern.re, re, REG_EXTENDED); - free(re); - if (error) { - *lengthPtr = cp - start + 1; - VarREError(error, &pattern.re, "RE substitution error"); - free(pattern.replace); - goto cleanup; - } - - pattern.nsub = pattern.re.re_nsub + 1; - if (pattern.nsub < 1) - pattern.nsub = 1; - if (pattern.nsub > 10) - pattern.nsub = 10; - pattern.matches = bmake_malloc(pattern.nsub * - sizeof(regmatch_t)); - newStr = VarModify(ctxt, &tmpparsestate, nstr, - VarRESubstitute, - &pattern); - regfree(&pattern.re); - free(pattern.replace); - free(pattern.matches); - delim = '\0'; - break; - } -#endif - case 'Q': - if (tstr[1] == endc || tstr[1] == ':') { - newStr = VarQuote(nstr); - cp = tstr + 1; - termc = *cp; - break; - } - goto default_case; - case 'T': - if (tstr[1] == endc || tstr[1] == ':') { - newStr = VarModify(ctxt, &parsestate, nstr, VarTail, - NULL); - cp = tstr + 1; - termc = *cp; - break; - } - goto default_case; - case 'H': - if (tstr[1] == endc || tstr[1] == ':') { - newStr = VarModify(ctxt, &parsestate, nstr, VarHead, - NULL); - cp = tstr + 1; - termc = *cp; - break; - } - goto default_case; - case 'E': - if (tstr[1] == endc || tstr[1] == ':') { - newStr = VarModify(ctxt, &parsestate, nstr, VarSuffix, - NULL); - cp = tstr + 1; - termc = *cp; - break; - } - goto default_case; - case 'R': - if (tstr[1] == endc || tstr[1] == ':') { - newStr = VarModify(ctxt, &parsestate, nstr, VarRoot, - NULL); - cp = tstr + 1; - termc = *cp; - break; - } - goto default_case; - case 'O': - { - char otype; - - cp = tstr + 1; /* skip to the rest in any case */ - if (tstr[1] == endc || tstr[1] == ':') { - otype = 's'; - termc = *cp; - } else if ( (tstr[1] == 'x') && - (tstr[2] == endc || tstr[2] == ':') ) { - otype = tstr[1]; - cp = tstr + 2; - termc = *cp; - } else { - goto bad_modifier; - } - newStr = VarOrder(nstr, otype); - break; - } - case 'u': - if (tstr[1] == endc || tstr[1] == ':') { - newStr = VarUniq(nstr); - cp = tstr + 1; - termc = *cp; - break; - } - goto default_case; -#ifdef SUNSHCMD - case 's': - if (tstr[1] == 'h' && (tstr[2] == endc || tstr[2] == ':')) { - const char *emsg; - newStr = Cmd_Exec(nstr, &emsg); - if (emsg) - Error(emsg, nstr); - cp = tstr + 2; - termc = *cp; - break; - } - goto default_case; -#endif - default: - default_case: - { -#ifdef SYSVVARSUB - /* - * This can either be a bogus modifier or a System-V - * substitution command. - */ - VarPattern pattern; - Boolean eqFound; - - pattern.flags = 0; - eqFound = FALSE; - /* - * First we make a pass through the string trying - * to verify it is a SYSV-make-style translation: - * it must be: =) - */ - cp = tstr; - cnt = 1; - while (*cp != '\0' && cnt) { - if (*cp == '=') { - eqFound = TRUE; - /* continue looking for endc */ - } - else if (*cp == endc) - cnt--; - else if (*cp == startc) - cnt++; - if (cnt) - cp++; - } - if (*cp == endc && eqFound) { - - /* - * Now we break this sucker into the lhs and - * rhs. We must null terminate them of course. - */ - delim='='; - cp = tstr; - if ((pattern.lhs = VarGetPattern(ctxt, &parsestate, - errnum, &cp, delim, &pattern.flags, - &pattern.leftLen, NULL)) == NULL) - goto cleanup; - delim = endc; - if ((pattern.rhs = VarGetPattern(ctxt, &parsestate, - errnum, &cp, delim, NULL, &pattern.rightLen, - &pattern)) == NULL) - goto cleanup; - - /* - * SYSV modifications happen through the whole - * string. Note the pattern is anchored at the end. - */ - termc = *--cp; - delim = '\0'; - if (pattern.leftLen == 0 && *nstr == '\0') { - newStr = nstr; /* special case */ - } else { - newStr = VarModify(ctxt, &parsestate, nstr, - VarSYSVMatch, - &pattern); - } - free(UNCONST(pattern.lhs)); - free(UNCONST(pattern.rhs)); - } else -#endif - { - Error("Unknown modifier '%c'", *tstr); - for (cp = tstr+1; - *cp != ':' && *cp != endc && *cp != '\0'; - cp++) - continue; - termc = *cp; - newStr = var_Error; - } - } - } - if (DEBUG(VAR)) { - fprintf(debug_file, "Result of :%c is \"%s\"\n", modifier, newStr); - } - - if (newStr != nstr) { - if (*freePtr) { - free(nstr); - *freePtr = NULL; - } - nstr = newStr; - if (nstr != var_Error && nstr != varNoError) { - *freePtr = nstr; - } - } - if (termc == '\0' && endc != '\0') { - Error("Unclosed variable specification (expecting '%c') for \"%s\" (value \"%s\") modifier %c", endc, v->name, nstr, modifier); - } else if (termc == ':') { - cp++; - } - tstr = cp; - } - out: - *lengthPtr = tstr - start; - return (nstr); - - bad_modifier: - /* "{(" */ - Error("Bad modifier `:%.*s' for %s", (int)strcspn(tstr, ":)}"), tstr, - v->name); - - cleanup: - *lengthPtr = cp - start; - if (delim != '\0') - Error("Unclosed substitution for %s (%c missing)", - v->name, delim); - if (*freePtr) { - free(*freePtr); - *freePtr = NULL; - } - return (var_Error); -} - -/*- - *----------------------------------------------------------------------- - * Var_Parse -- - * Given the start of a variable invocation, extract the variable - * name and find its value, then modify it according to the - * specification. - * - * Input: - * str The string to parse - * ctxt The context for the variable - * errnum TRUE if undefined variables are an error - * lengthPtr OUT: The length of the specification - * freePtr OUT: Non-NULL if caller should free *freePtr - * - * Results: - * The (possibly-modified) value of the variable or var_Error if the - * specification is invalid. The length of the specification is - * placed in *lengthPtr (for invalid specifications, this is just - * 2...?). - * If *freePtr is non-NULL then it's a pointer that the caller - * should pass to free() to free memory used by the result. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -/* coverity[+alloc : arg-*4] */ -char * -Var_Parse(const char *str, GNode *ctxt, Boolean errnum, int *lengthPtr, - void **freePtr) -{ - const char *tstr; /* Pointer into str */ - Var *v; /* Variable in invocation */ - Boolean haveModifier;/* TRUE if have modifiers for the variable */ - char endc; /* Ending character when variable in parens - * or braces */ - char startc; /* Starting character when variable in parens - * or braces */ - int vlen; /* Length of variable name */ - const char *start; /* Points to original start of str */ - char *nstr; /* New string, used during expansion */ - Boolean dynamic; /* TRUE if the variable is local and we're - * expanding it in a non-local context. This - * is done to support dynamic sources. The - * result is just the invocation, unaltered */ - Var_Parse_State parsestate; /* Flags passed to helper functions */ - char name[2]; - - *freePtr = NULL; - dynamic = FALSE; - start = str; - parsestate.oneBigWord = FALSE; - parsestate.varSpace = ' '; /* word separator */ - - startc = str[1]; - if (startc != PROPEN && startc != BROPEN) { - /* - * If it's not bounded by braces of some sort, life is much simpler. - * We just need to check for the first character and return the - * value if it exists. - */ - - /* Error out some really stupid names */ - if (startc == '\0' || strchr(")}:$", startc)) { - *lengthPtr = 1; - return var_Error; - } - name[0] = startc; - name[1] = '\0'; - - v = VarFind(name, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD); - if (v == NULL) { - *lengthPtr = 2; - - if ((ctxt == VAR_CMD) || (ctxt == VAR_GLOBAL)) { - /* - * If substituting a local variable in a non-local context, - * assume it's for dynamic source stuff. We have to handle - * this specially and return the longhand for the variable - * with the dollar sign escaped so it makes it back to the - * caller. Only four of the local variables are treated - * specially as they are the only four that will be set - * when dynamic sources are expanded. - */ - switch (str[1]) { - case '@': - return UNCONST("$(.TARGET)"); - case '%': - return UNCONST("$(.ARCHIVE)"); - case '*': - return UNCONST("$(.PREFIX)"); - case '!': - return UNCONST("$(.MEMBER)"); - } - } - /* - * Error - */ - return (errnum ? var_Error : varNoError); - } else { - haveModifier = FALSE; - tstr = &str[1]; - endc = str[1]; - } - } else { - Buffer buf; /* Holds the variable name */ - - endc = startc == PROPEN ? PRCLOSE : BRCLOSE; - Buf_Init(&buf, 0); - - /* - * Skip to the end character or a colon, whichever comes first. - */ - for (tstr = str + 2; - *tstr != '\0' && *tstr != endc && *tstr != ':'; - tstr++) - { - /* - * A variable inside a variable, expand - */ - if (*tstr == '$') { - int rlen; - void *freeIt; - char *rval = Var_Parse(tstr, ctxt, errnum, &rlen, &freeIt); - if (rval != NULL) { - Buf_AddBytes(&buf, strlen(rval), rval); - } - if (freeIt) - free(freeIt); - tstr += rlen - 1; - } - else - Buf_AddByte(&buf, *tstr); - } - if (*tstr == ':') { - haveModifier = TRUE; - } else if (*tstr != '\0') { - haveModifier = FALSE; - } else { - /* - * If we never did find the end character, return NULL - * right now, setting the length to be the distance to - * the end of the string, since that's what make does. - */ - *lengthPtr = tstr - str; - Buf_Destroy(&buf, TRUE); - return (var_Error); - } - str = Buf_GetAll(&buf, &vlen); - - /* - * At this point, str points into newly allocated memory from - * buf, containing only the name of the variable. - * - * start and tstr point into the const string that was pointed - * to by the original value of the str parameter. start points - * to the '$' at the beginning of the string, while tstr points - * to the char just after the end of the variable name -- this - * will be '\0', ':', PRCLOSE, or BRCLOSE. - */ - - v = VarFind(str, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD); - /* - * Check also for bogus D and F forms of local variables since we're - * in a local context and the name is the right length. - */ - if ((v == NULL) && (ctxt != VAR_CMD) && (ctxt != VAR_GLOBAL) && - (vlen == 2) && (str[1] == 'F' || str[1] == 'D') && - strchr("@%*!<>", str[0]) != NULL) { - /* - * Well, it's local -- go look for it. - */ - name[0] = *str; - name[1] = '\0'; - v = VarFind(name, ctxt, 0); - - if (v != NULL) { - /* - * No need for nested expansion or anything, as we're - * the only one who sets these things and we sure don't - * but nested invocations in them... - */ - nstr = Buf_GetAll(&v->val, NULL); - - if (str[1] == 'D') { - nstr = VarModify(ctxt, &parsestate, nstr, VarHead, - NULL); - } else { - nstr = VarModify(ctxt, &parsestate, nstr, VarTail, - NULL); - } - /* - * Resulting string is dynamically allocated, so - * tell caller to free it. - */ - *freePtr = nstr; - *lengthPtr = tstr-start+1; - Buf_Destroy(&buf, TRUE); - VarFreeEnv(v, TRUE); - return nstr; - } - } - - if (v == NULL) { - if (((vlen == 1) || - (((vlen == 2) && (str[1] == 'F' || str[1] == 'D')))) && - ((ctxt == VAR_CMD) || (ctxt == VAR_GLOBAL))) - { - /* - * If substituting a local variable in a non-local context, - * assume it's for dynamic source stuff. We have to handle - * this specially and return the longhand for the variable - * with the dollar sign escaped so it makes it back to the - * caller. Only four of the local variables are treated - * specially as they are the only four that will be set - * when dynamic sources are expanded. - */ - switch (*str) { - case '@': - case '%': - case '*': - case '!': - dynamic = TRUE; - break; - } - } else if ((vlen > 2) && (*str == '.') && - isupper((unsigned char) str[1]) && - ((ctxt == VAR_CMD) || (ctxt == VAR_GLOBAL))) - { - int len; - - len = vlen - 1; - if ((strncmp(str, ".TARGET", len) == 0) || - (strncmp(str, ".ARCHIVE", len) == 0) || - (strncmp(str, ".PREFIX", len) == 0) || - (strncmp(str, ".MEMBER", len) == 0)) - { - dynamic = TRUE; - } - } - - if (!haveModifier) { - /* - * No modifiers -- have specification length so we can return - * now. - */ - *lengthPtr = tstr - start + 1; - if (dynamic) { - char *pstr = bmake_strndup(start, *lengthPtr); - *freePtr = pstr; - Buf_Destroy(&buf, TRUE); - return(pstr); - } else { - Buf_Destroy(&buf, TRUE); - return (errnum ? var_Error : varNoError); - } - } else { - /* - * Still need to get to the end of the variable specification, - * so kludge up a Var structure for the modifications - */ - v = bmake_malloc(sizeof(Var)); - v->name = UNCONST(str); - Buf_Init(&v->val, 1); - v->flags = VAR_JUNK; - Buf_Destroy(&buf, FALSE); - } - } else - Buf_Destroy(&buf, TRUE); - } - - if (v->flags & VAR_IN_USE) { - Fatal("Variable %s is recursive.", v->name); - /*NOTREACHED*/ - } else { - v->flags |= VAR_IN_USE; - } - /* - * Before doing any modification, we have to make sure the value - * has been fully expanded. If it looks like recursion might be - * necessary (there's a dollar sign somewhere in the variable's value) - * we just call Var_Subst to do any other substitutions that are - * necessary. Note that the value returned by Var_Subst will have - * been dynamically-allocated, so it will need freeing when we - * return. - */ - nstr = Buf_GetAll(&v->val, NULL); - if (strchr(nstr, '$') != NULL) { - nstr = Var_Subst(NULL, nstr, ctxt, errnum); - *freePtr = nstr; - } - - v->flags &= ~VAR_IN_USE; - - if ((nstr != NULL) && haveModifier) { - int used; - /* - * Skip initial colon. - */ - tstr++; - - nstr = ApplyModifiers(nstr, tstr, startc, endc, - v, ctxt, errnum, &used, freePtr); - tstr += used; - } - if (*tstr) { - *lengthPtr = tstr - start + 1; - } else { - *lengthPtr = tstr - start; - } - - if (v->flags & VAR_FROM_ENV) { - Boolean destroy = FALSE; - - if (nstr != Buf_GetAll(&v->val, NULL)) { - destroy = TRUE; - } else { - /* - * Returning the value unmodified, so tell the caller to free - * the thing. - */ - *freePtr = nstr; - } - VarFreeEnv(v, destroy); - } else if (v->flags & VAR_JUNK) { - /* - * Perform any free'ing needed and set *freePtr to NULL so the caller - * doesn't try to free a static pointer. - * If VAR_KEEP is also set then we want to keep str as is. - */ - if (!(v->flags & VAR_KEEP)) { - if (*freePtr) { - free(nstr); - *freePtr = NULL; - } - if (dynamic) { - nstr = bmake_strndup(start, *lengthPtr); - *freePtr = nstr; - } else { - nstr = errnum ? var_Error : varNoError; - } - } - if (nstr != Buf_GetAll(&v->val, NULL)) - Buf_Destroy(&v->val, TRUE); - free(v->name); - free(v); - } - return (nstr); -} - -/*- - *----------------------------------------------------------------------- - * Var_Subst -- - * Substitute for all variables in the given string in the given context - * If undefErr is TRUE, Parse_Error will be called when an undefined - * variable is encountered. - * - * Input: - * var Named variable || NULL for all - * str the string which to substitute - * ctxt the context wherein to find variables - * undefErr TRUE if undefineds are an error - * - * Results: - * The resulting string. - * - * Side Effects: - * None. The old string must be freed by the caller - *----------------------------------------------------------------------- - */ -char * -Var_Subst(const char *var, const char *str, GNode *ctxt, Boolean undefErr) -{ - Buffer buf; /* Buffer for forming things */ - char *val; /* Value to substitute for a variable */ - int length; /* Length of the variable invocation */ - Boolean trailingBslash; /* variable ends in \ */ - void *freeIt = NULL; /* Set if it should be freed */ - static Boolean errorReported; /* Set true if an error has already - * been reported to prevent a plethora - * of messages when recursing */ - - Buf_Init(&buf, 0); - errorReported = FALSE; - trailingBslash = FALSE; - - while (*str) { - if (*str == '\n' && trailingBslash) - Buf_AddByte(&buf, ' '); - if (var == NULL && (*str == '$') && (str[1] == '$')) { - /* - * A dollar sign may be escaped either with another dollar sign. - * In such a case, we skip over the escape character and store the - * dollar sign into the buffer directly. - */ - str++; - Buf_AddByte(&buf, *str); - str++; - } else if (*str != '$') { - /* - * Skip as many characters as possible -- either to the end of - * the string or to the next dollar sign (variable invocation). - */ - const char *cp; - - for (cp = str++; *str != '$' && *str != '\0'; str++) - continue; - Buf_AddBytes(&buf, str - cp, cp); - } else { - if (var != NULL) { - int expand; - for (;;) { - if (str[1] == '\0') { - /* A trailing $ is kind of a special case */ - Buf_AddByte(&buf, str[0]); - str++; - expand = FALSE; - } else if (str[1] != PROPEN && str[1] != BROPEN) { - if (str[1] != *var || strlen(var) > 1) { - Buf_AddBytes(&buf, 2, str); - str += 2; - expand = FALSE; - } - else - expand = TRUE; - break; - } - else { - const char *p; - - /* - * Scan up to the end of the variable name. - */ - for (p = &str[2]; *p && - *p != ':' && *p != PRCLOSE && *p != BRCLOSE; p++) - if (*p == '$') - break; - /* - * A variable inside the variable. We cannot expand - * the external variable yet, so we try again with - * the nested one - */ - if (*p == '$') { - Buf_AddBytes(&buf, p - str, str); - str = p; - continue; - } - - if (strncmp(var, str + 2, p - str - 2) != 0 || - var[p - str - 2] != '\0') { - /* - * Not the variable we want to expand, scan - * until the next variable - */ - for (;*p != '$' && *p != '\0'; p++) - continue; - Buf_AddBytes(&buf, p - str, str); - str = p; - expand = FALSE; - } - else - expand = TRUE; - break; - } - } - if (!expand) - continue; - } - - val = Var_Parse(str, ctxt, undefErr, &length, &freeIt); - - /* - * When we come down here, val should either point to the - * value of this variable, suitably modified, or be NULL. - * Length should be the total length of the potential - * variable invocation (from $ to end character...) - */ - if (val == var_Error || val == varNoError) { - /* - * If performing old-time variable substitution, skip over - * the variable and continue with the substitution. Otherwise, - * store the dollar sign and advance str so we continue with - * the string... - */ - if (oldVars) { - str += length; - } else if (undefErr) { - /* - * If variable is undefined, complain and skip the - * variable. The complaint will stop us from doing anything - * when the file is parsed. - */ - if (!errorReported) { - Parse_Error(PARSE_FATAL, - "Undefined variable \"%.*s\"",length,str); - } - str += length; - errorReported = TRUE; - } else { - Buf_AddByte(&buf, *str); - str += 1; - } - } else { - /* - * We've now got a variable structure to store in. But first, - * advance the string pointer. - */ - str += length; - - /* - * Copy all the characters from the variable value straight - * into the new string. - */ - length = strlen(val); - Buf_AddBytes(&buf, length, val); - trailingBslash = length > 0 && val[length - 1] == '\\'; - } - if (freeIt) { - free(freeIt); - freeIt = NULL; - } - } - } - - return Buf_DestroyCompact(&buf); -} - -/*- - *----------------------------------------------------------------------- - * Var_GetTail -- - * Return the tail from each of a list of words. Used to set the - * System V local variables. - * - * Input: - * file Filename to modify - * - * Results: - * The resulting string. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -#if 0 -char * -Var_GetTail(char *file) -{ - return(VarModify(file, VarTail, NULL)); -} - -/*- - *----------------------------------------------------------------------- - * Var_GetHead -- - * Find the leading components of a (list of) filename(s). - * XXX: VarHead does not replace foo by ., as (sun) System V make - * does. - * - * Input: - * file Filename to manipulate - * - * Results: - * The leading components. - * - * Side Effects: - * None. - * - *----------------------------------------------------------------------- - */ -char * -Var_GetHead(char *file) -{ - return(VarModify(file, VarHead, NULL)); -} -#endif - -/*- - *----------------------------------------------------------------------- - * Var_Init -- - * Initialize the module - * - * Results: - * None - * - * Side Effects: - * The VAR_CMD and VAR_GLOBAL contexts are created - *----------------------------------------------------------------------- - */ -void -Var_Init(void) -{ - VAR_GLOBAL = Targ_NewGN("Global"); - VAR_CMD = Targ_NewGN("Command"); - -} - - -void -Var_End(void) -{ -} - - -/****************** PRINT DEBUGGING INFO *****************/ -static void -VarPrintVar(void *vp) -{ - Var *v = (Var *)vp; - fprintf(debug_file, "%-16s = %s\n", v->name, Buf_GetAll(&v->val, NULL)); -} - -/*- - *----------------------------------------------------------------------- - * Var_Dump -- - * print all variables in a context - *----------------------------------------------------------------------- - */ -void -Var_Dump(GNode *ctxt) -{ - Hash_Search search; - Hash_Entry *h; - - for (h = Hash_EnumFirst(&ctxt->context, &search); - h != NULL; - h = Hash_EnumNext(&search)) { - VarPrintVar(Hash_GetValue(h)); - } -} diff --git a/external/bsd/bmake/dist/wait.h b/external/bsd/bmake/dist/wait.h deleted file mode 100644 index 7408d15fb070..000000000000 --- a/external/bsd/bmake/dist/wait.h +++ /dev/null @@ -1,81 +0,0 @@ -/* NAME: - * wait.h - compensate for what vendors leave out - * - * AUTHOR: - * Simon J. Gerraty - */ -/* - * RCSid: - * $Id: wait.h,v 1.6 2002/11/26 07:53:06 sjg Exp $ - * - * @(#)Copyright (c) 1994, Simon J. Gerraty. - * - * This is free software. It comes with NO WARRANTY. - * Permission to use, modify and distribute this source code - * is granted subject to the following conditions. - * 1/ that the above copyright notice and this notice - * are preserved in all copies and that due credit be given - * to the author. - * 2/ that any changes to this code are clearly commented - * as such so that the author does not get blamed for bugs - * other than his own. - * - * Please send copies of changes and bug-fixes to: - * sjg@crufty.net - */ - -#include - -#ifdef sun386 -# define UNION_WAIT -# define WEXITSTATUS(x) ((&x)->w_retcode) -# define WTERMSIG(x) ((&x)->w_termsig) -# define WSTOPSIG(x) ((&x)->w_stopsig) -# define HAVE_WAIT4 -#endif - -#ifndef WAIT_T -# ifdef UNION_WAIT -# define WAIT_T union wait -# define WAIT_STATUS(x) (x).w_status -# else -# define WAIT_T int -# define WAIT_STATUS(x) x -# endif -#endif - -#ifndef WEXITSTATUS -# define WEXITSTATUS(_X) (((int)(_X)>>8)&0377) -#endif -#ifndef WSTOPPED -# define WSTOPPED 0177 -#endif -#ifndef WSTOPSIG -# define WSTOPSIG(x) WSTOPPED -#endif - -#ifdef UNION_WAIT -#ifndef WSET_STOPCODE -#define WSET_STOPCODE(x, sig) ((&x)->w_stopsig = (sig)) -#endif -#ifndef WSET_EXITCODE -#define WSET_EXITCODE(x, ret, sig) ((&x)->w_termsig = (sig), (&x)->w_retcode = (ret)) -#endif -#else -#ifndef WSET_STOPCODE -#define WSET_STOPCODE(x, sig) ((x) = ((sig) << 8) | 0177) -#endif -#ifndef WSET_EXITCODE -#define WSET_EXITCODE(x, ret, sig) ((x) = (ret << 8) | (sig)) -#endif -#endif - -#ifndef HAVE_WAITPID -# ifdef HAVE_WAIT4 -# define waitpid(pid, statusp, flags) wait4(pid, statusp, flags, (char *)0) -# else -# ifdef HAVE_WAIT3 -# define waitpid(pid, statusp, flags) wait3(statusp, flags, (char *)0) -# endif -# endif -#endif diff --git a/external/bsd/bmake/usr.bin/Makefile b/external/bsd/bmake/usr.bin/Makefile deleted file mode 100644 index dac316ecedf5..000000000000 --- a/external/bsd/bmake/usr.bin/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -# $FreeBSD$ - -SUBDIR= bmake - -.include diff --git a/external/bsd/bmake/usr.bin/bmake/Makefile b/external/bsd/bmake/usr.bin/bmake/Makefile deleted file mode 100644 index 8be2bfa7775e..000000000000 --- a/external/bsd/bmake/usr.bin/bmake/Makefile +++ /dev/null @@ -1,210 +0,0 @@ -# This is a generated file, do NOT edit! -# See external/bsd/bmake/dist/bsd.after-import.mk -# -# $FreeBSD$ - -SRCTOP?= ${.CURDIR:H:H:H:H:H} - - -# look here first for config.h -CFLAGS+= -I${.CURDIR} - -# $NetBSD: Makefile,v 1.56 2012/05/30 21:54:23 sjg Exp $ -# @(#)Makefile 5.2 (Berkeley) 12/28/90 - -# $Id: Makefile.in,v 1.168 2012/07/05 04:10:23 sjg Exp $ - -PROG= bmake -SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \ - make.c parse.c str.c suff.c targ.c trace.c var.c util.c -SRCS+= strlist.c -SRCS+= make_malloc.c -SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \ - lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \ - lstFind.c lstFindFrom.c lstFirst.c lstForEach.c lstForEachFrom.c \ - lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \ - lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c -SRCS += lstPrev.c - -# you can use this Makefile if you have an earlier version of bmake. -prefix= /usr -srcdir= ${SRCTOP}/external/bsd/bmake/dist -CC?= gcc - -# Base version on src date -MAKE_VERSION= 20120704 -DEFAULT_SYS_PATH = .../share/mk:/usr/share/mk - -CPPFLAGS+= -CFLAGS+= ${CPPFLAGS} -CFLAGS+= -D_PATH_DEFSYSPATH=\"${DEFAULT_SYS_PATH}\" -CFLAGS+= -I. -I${srcdir} -DHAVE_CONFIG_H ${XDEFS} -DMAKE_NATIVE -CFLAGS+= ${CFLAGS_${.TARGET:T}} -CFLAGS+= ${COPTS.${.ALLSRC:M*.c:T:u}} -COPTS.main.c+= "-DMAKE_VERSION=\"${MAKE_VERSION}\"" -LDFLAGS= -LIBOBJS= ${LIBOBJDIR}stresep$U.o -LDADD= - -.if !empty(LIBOBJS) -SRCS+= ${LIBOBJS:T:.o=.c} -.endif - -USE_META = yes -.if ${USE_META} != "no" -SRCS+= meta.c -CPPFLAGS+= -DUSE_META -FILEMON_H ?= /usr/include/dev/filemon/filemon.h -.if exists(${FILEMON_H}) && ${FILEMON_H:T} == "filemon.h" -COPTS.meta.c += -DHAVE_FILEMON_H -I${FILEMON_H:H} -.endif -.endif - -.PATH: ${srcdir} -.PATH: ${srcdir}/lst.lib - -OS!= uname -s -ARCH!= uname -p 2>/dev/null || uname -m - -# list of OS's which are derrived from BSD4.4 -isBSD44= NetBSD FreeBSD OpenBSD DragonFly - -.if ${OS} == "NetBSD" -# Don't set these for anyone else since we don't know what the effect may be. -# On FreeBSD WARNS=2 sets a bunch of -W flags that make does not handle. -WFORMAT= 1 -WARNS=4 -.NOPATH: bmake.cat1 -.if make(install) && exists(${DESTDIR}/usr/share/doc) -SUBDIR= PSD.doc -.endif -.endif - -.if empty(isBSD44:M${OS}) -# XXX not sure if we still want this given that configure -# lets us force or not the definition of MACHINE. -CFLAGS_main.o+= "-DFORCE_MACHINE=\"${MACHINE}\"" -MANTARGET=cat -INSTALL?=${srcdir}/install-sh -.if (${MACHINE} == "sun386") -# even I don't have one of these anymore :-) -CFLAGS+= -DPORTAR -.elif (${MACHINE} != "sunos") -SRCS+= sigcompat.c -CFLAGS+= -DSIGNAL_FLAGS=SA_RESTART -.endif -.endif -.if defined(.PARSEDIR) -.if make(obj) || make(clean) -SUBDIR+= unit-tests -.endif -.endif - -# many systems use gcc these days -CC_IS_GCC=yes -.if ${CC_IS_GCC} == "yes" -# problem with gcc3 -CFLAGS_var.o+= -Wno-cast-qual -.endif - -CFLAGS_main.o+= "-DMACHINE=\"${MACHINE}\"" "-DMACHINE_ARCH=\"${MACHINE_ARCH}\"" - -EXTRACT_MAN=no - -MAN=${PROG}.1 -.if (${PROG} != "make") -${MAN}: make.1 - @echo making ${PROG}.1 - @sed -e 's/^.Nx/NetBSD/' -e '/^.Nm/s/make/${PROG}/' -e '/^.Sh HISTORY/,$$d' ${srcdir}/make.1 > $@ - @(echo ".Sh HISTORY"; \ - echo ".Nm"; \ - echo "is derived from NetBSD"; \ - echo ".Xr make 1 ."; \ - echo It uses autoconf to facilitate portability to other platforms.) >> $@ - -.endif - -.if !empty(isBSD44:M${OS}) -.if "${OS}" != "NetBSD" -MAN1=${MAN} -.endif -MANTARGET?=man -.endif - -MANTARGET?= cat -MANDEST?= ${MANDIR}/${MANTARGET}1 - -.if ${MANTARGET} == "cat" -_mfromdir=${srcdir} -.endif - -.if exists(${srcdir}/../Makefile.inc) -.include "${srcdir}/../Makefile.inc" -.endif -.sinclude -# sigh, FreeBSD at least includes bsd.subdir.mk via bsd.obj.mk -# so the inclusion below, results in complaints about re-defined -# targets. For NetBSD though we need to explicitly include it. -.if defined(.PARSEDIR) -.if defined(SUBDIR) && !target(${SUBDIR:[1]}) -.sinclude -.endif -.endif - -CPPFLAGS+= -DMAKE_NATIVE -COPTS.var.c += -Wno-cast-qual -COPTS.job.c += -Wno-format-nonliteral -COPTS.parse.c += -Wno-format-nonliteral -COPTS.var.c += -Wno-format-nonliteral - -# Force these -BINDIR= ${prefix}/bin -MANDIR= ${prefix}/man - -arch.o: config.h -# make sure that MAKE_VERSION gets updated. -main.o: ${SRCS} ${MAKEFILE} - -MK?=${prefix}/share/mk -MKSRC?=mk -INSTALL?=${srcdir}/install-sh - -beforeinstall: - test -d ${DESTDIR}${BINDIR} || ${INSTALL} -m 775 -d ${DESTDIR}${BINDIR} - test -d ${DESTDIR}${MANDEST} || ${INSTALL} -m 775 -d ${DESTDIR}${MANDEST} - -# latest version of *.mk includes an installer. -# you should not need to set USE_OS -install-mk: -.if exists(${MKSRC}/install-mk) - test -d ${DESTDIR}${MK} || ${INSTALL} -m 775 -d ${DESTDIR}${MK} - ${MKSRC}/install-mk -v -m 644 ${DESTDIR}${MK} ${USE_OS} -.else - @echo need to unpack mk.tar.gz under ${srcdir} or set MKSRC; false -.endif - -.ifdef TOOLDIR -# this is a native netbsd build, -# use libutil rather than the local emalloc etc. -CPPFLAGS+= -DUSE_EMALLOC -LDADD+=-lutil -DPADD+=${LIBUTIL} -.endif - -# A simple unit-test driver to help catch regressions -accept test: - cd ${.CURDIR}/unit-tests && MAKEFLAGS= ${.MAKE} -r -m / TEST_MAKE=${TEST_MAKE:U${.OBJDIR}/${PROG:T}} ${.TARGET} - -# override some simple things -BINDIR= /usr/bin -MANDIR= /usr/share/man - -# make sure we get this -CFLAGS+= ${COPTS.${.IMPSRC:T}} -CLEANFILES+= bootstrap - -after-import: ${SRCTOP}/external/bsd/bmake/dist/bsd.after-import.mk - cd ${.CURDIR} && ${.MAKE} -f ${SRCTOP}/external/bsd/bmake/dist/bsd.after-import.mk - -.sinclude "Makefile.inc" - diff --git a/external/bsd/bmake/usr.bin/bmake/Makefile.depend b/external/bsd/bmake/usr.bin/bmake/Makefile.depend deleted file mode 100644 index a83954553d0e..000000000000 --- a/external/bsd/bmake/usr.bin/bmake/Makefile.depend +++ /dev/null @@ -1,19 +0,0 @@ -# Autogenerated - do NOT edit! - -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - -DEP_MACHINE := ${.PARSEFILE:E} - -DIRDEPS = \ - gnu/lib/libgcc \ - include \ - include/xlocale \ - lib/${CSU_DIR} \ - lib/libc \ - - -.include - -.if ${DEP_RELDIR} == ${_DEP_RELDIR} -# local dependencies - needed for -jN in clean tree -.endif diff --git a/external/bsd/bmake/usr.bin/bmake/Makefile.inc b/external/bsd/bmake/usr.bin/bmake/Makefile.inc deleted file mode 100644 index 090deb713b5d..000000000000 --- a/external/bsd/bmake/usr.bin/bmake/Makefile.inc +++ /dev/null @@ -1,6 +0,0 @@ -# $FreeBSD$ - -.if defined(.PARSEDIR) -# make sure this is available to unit-tests/Makefile -.export SRCTOP -.endif diff --git a/external/bsd/bmake/usr.bin/bmake/config.h b/external/bsd/bmake/usr.bin/bmake/config.h deleted file mode 100644 index 9cf8c8a5da6b..000000000000 --- a/external/bsd/bmake/usr.bin/bmake/config.h +++ /dev/null @@ -1,315 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* config.h.in. Generated from configure.in by autoheader. */ - -/* Define if building universal (internal helper macro) */ -/* #undef AC_APPLE_UNIVERSAL_BUILD */ - -/* Path of default shell */ -/* #undef DEFSHELL_CUSTOM */ - -/* Shell spec to use by default */ -/* #undef DEFSHELL_INDEX */ - -/* Define to 1 if you have the header file. */ -#define HAVE_AR_H 1 - -/* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you - don't. */ -#define HAVE_DECL_SYS_SIGLIST 1 - -/* Define to 1 if you have the header file, and it defines `DIR'. - */ -#define HAVE_DIRENT_H 1 - -/* Define to 1 if you have the `dirname' function. */ -#define HAVE_DIRNAME 1 - -/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */ -/* #undef HAVE_DOPRNT */ - -/* Define to 1 if you have the `err' function. */ -#define HAVE_ERR 1 - -/* Define to 1 if you have the `errx' function. */ -#define HAVE_ERRX 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_ERR_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define to 1 if you have the `fork' function. */ -#define HAVE_FORK 1 - -/* Define to 1 if you have the `getcwd' function. */ -#define HAVE_GETCWD 1 - -/* Define to 1 if you have the `getenv' function. */ -#define HAVE_GETENV 1 - -/* Define to 1 if you have the `getopt' function. */ -#define HAVE_GETOPT 1 - -/* Define to 1 if you have the `getwd' function. */ -#define HAVE_GETWD 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_INTTYPES_H 1 - -/* Define to 1 if you have the `killpg' function. */ -#define HAVE_KILLPG 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_MEMORY_H 1 - -/* Define to 1 if you have the `mmap' function. */ -#define HAVE_MMAP 1 - -/* Define to 1 if you have the header file, and it defines `DIR'. */ -/* #undef HAVE_NDIR_H */ - -/* Define to 1 if you have the header file. */ -#define HAVE_PATHS_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_POLL_H 1 - -/* Define to 1 if you have the `putenv' function. */ -#define HAVE_PUTENV 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_RANLIB_H 1 - -/* Define to 1 if you have the `realpath' function. */ -#define HAVE_REALPATH 1 - -/* Define to 1 if you have the `select' function. */ -#define HAVE_SELECT 1 - -/* Define to 1 if you have the `setenv' function. */ -#define HAVE_SETENV 1 - -/* Define to 1 if you have the `setpgid' function. */ -#define HAVE_SETPGID 1 - -/* Define to 1 if you have the `setsid' function. */ -#define HAVE_SETSID 1 - -/* Define to 1 if you have the `sigaction' function. */ -#define HAVE_SIGACTION 1 - -/* Define to 1 if you have the `sigvec' function. */ -#define HAVE_SIGVEC 1 - -/* Define to 1 if you have the `snprintf' function. */ -#define HAVE_SNPRINTF 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STDLIB_H 1 - -/* Define to 1 if you have the `strerror' function. */ -#define HAVE_STRERROR 1 - -/* Define to 1 if you have the `stresep' function. */ -/* #undef HAVE_STRESEP */ - -/* Define to 1 if you have the `strftime' function. */ -#define HAVE_STRFTIME 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STRING_H 1 - -/* Define to 1 if you have the `strlcpy' function. */ -#define HAVE_STRLCPY 1 - -/* Define to 1 if you have the `strsep' function. */ -#define HAVE_STRSEP 1 - -/* Define to 1 if you have the `strtod' function. */ -#define HAVE_STRTOD 1 - -/* Define to 1 if you have the `strtol' function. */ -#define HAVE_STRTOL 1 - -/* Define to 1 if `struct stat' is a member of `st_rdev'. */ -#define HAVE_STRUCT_STAT_ST_RDEV 1 - -/* Define to 1 if your `struct stat' has `st_rdev'. Deprecated, use - `HAVE_STRUCT_STAT_ST_RDEV' instead. */ -#define HAVE_ST_RDEV 1 - -/* Define to 1 if you have the header file, and it defines `DIR'. - */ -/* #undef HAVE_SYS_DIR_H */ - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_MMAN_H 1 - -/* Define to 1 if you have the header file, and it defines `DIR'. - */ -/* #undef HAVE_SYS_NDIR_H */ - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_SELECT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define to 1 if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define to 1 if you have the `unsetenv' function. */ -#define HAVE_UNSETENV 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_UTIME_H 1 - -/* Define to 1 if you have the `vfork' function. */ -#define HAVE_VFORK 1 - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_VFORK_H */ - -/* Define to 1 if you have the `vprintf' function. */ -#define HAVE_VPRINTF 1 - -/* Define to 1 if you have the `vsnprintf' function. */ -#define HAVE_VSNPRINTF 1 - -/* Define to 1 if you have the `wait3' function. */ -#define HAVE_WAIT3 1 - -/* Define to 1 if you have the `wait4' function. */ -#define HAVE_WAIT4 1 - -/* Define to 1 if you have the `waitpid' function. */ -#define HAVE_WAITPID 1 - -/* Define to 1 if you have the `warn' function. */ -#define HAVE_WARN 1 - -/* Define to 1 if you have the `warnx' function. */ -#define HAVE_WARNX 1 - -/* Define to 1 if `fork' works. */ -#define HAVE_WORKING_FORK 1 - -/* Define to 1 if `vfork' works. */ -#define HAVE_WORKING_VFORK 1 - -/* define if your compiler has __attribute__ */ -/* #undef HAVE___ATTRIBUTE__ */ - -/* Define to the address where bug reports for this package should be sent. */ -#define PACKAGE_BUGREPORT "sjg@NetBSD.org" - -/* Define to the full name of this package. */ -#define PACKAGE_NAME "bmake" - -/* Define to the full name and version of this package. */ -#define PACKAGE_STRING "bmake 20120620" - -/* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "bmake" - -/* Define to the home page for this package. */ -#define PACKAGE_URL "" - -/* Define to the version of this package. */ -#define PACKAGE_VERSION "20120620" - -/* Define as the return type of signal handlers (`int' or `void'). */ -#define RETSIGTYPE void - -/* Define to 1 if the `S_IS*' macros in do not work properly. */ -/* #undef STAT_MACROS_BROKEN */ - -/* Define to 1 if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define to 1 if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to 1 if your declares `struct tm'. */ -/* #undef TM_IN_SYS_TIME */ - -/* Enable extensions on AIX 3, Interix. */ -#ifndef _ALL_SOURCE -# define _ALL_SOURCE 1 -#endif -/* Enable GNU extensions on systems that have them. */ -#ifndef _GNU_SOURCE -# define _GNU_SOURCE 1 -#endif -/* Enable threading extensions on Solaris. */ -#ifndef _POSIX_PTHREAD_SEMANTICS -# define _POSIX_PTHREAD_SEMANTICS 1 -#endif -/* Enable extensions on HP NonStop. */ -#ifndef _TANDEM_SOURCE -# define _TANDEM_SOURCE 1 -#endif -/* Enable general extensions on Solaris. */ -#ifndef __EXTENSIONS__ -# define __EXTENSIONS__ 1 -#endif - - -/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most - significant byte first (like Motorola and SPARC, unlike Intel). */ -#if defined AC_APPLE_UNIVERSAL_BUILD -# if defined __BIG_ENDIAN__ -# define WORDS_BIGENDIAN 1 -# endif -#else -# ifndef WORDS_BIGENDIAN -/* # undef WORDS_BIGENDIAN */ -# endif -#endif - -/* Define to 1 if on MINIX. */ -/* #undef _MINIX */ - -/* Define to 2 if the system does not provide POSIX.1 features except with - this defined. */ -/* #undef _POSIX_1_SOURCE */ - -/* Define to 1 if you need to in order for `stat' and other things to work. */ -/* #undef _POSIX_SOURCE */ - -/* Define to empty if `const' does not conform to ANSI C. */ -/* #undef const */ - -/* Define to `long int' if does not define. */ -/* #undef off_t */ - -/* Define to `int' if does not define. */ -/* #undef pid_t */ - -/* Define to `unsigned int' if does not define. */ -/* #undef size_t */ - -/* Define as `fork' if `vfork' does not work. */ -/* #undef vfork */ diff --git a/external/bsd/bmake/usr.bin/bmake/unit-tests/Makefile b/external/bsd/bmake/usr.bin/bmake/unit-tests/Makefile deleted file mode 100644 index 72259f478cad..000000000000 --- a/external/bsd/bmake/usr.bin/bmake/unit-tests/Makefile +++ /dev/null @@ -1,96 +0,0 @@ -# $Id: Makefile.in,v 1.38 2012/06/19 23:38:48 sjg Exp $ -# -# $NetBSD: Makefile,v 1.34 2012/06/19 23:25:53 sjg Exp $ -# -# Unit tests for make(1) -# The main targets are: -# -# all: run all the tests -# test: run 'all', capture output and compare to expected results -# accept: move generated output to expected results -# -# Adding a test case. -# Each feature should get its own set of tests in its own suitably -# named makefile which should be added to SUBFILES to hook it in. -# - -srcdir= ${SRCTOP}/external/bsd/bmake/dist/unit-tests - -.MAIN: all - -UNIT_TESTS:= ${srcdir} - -# Simple sub-makefiles - we run them as a black box -# keep the list sorted. -SUBFILES= \ - comment \ - cond1 \ - error \ - export \ - export-all \ - doterror \ - dotwait \ - forloop \ - forsubst \ - hash \ - misc \ - moderrs \ - modmatch \ - modmisc \ - modorder \ - modts \ - modword \ - phony-end \ - posix \ - qequals \ - sysv \ - ternary \ - unexport \ - unexport-env \ - varcmd - -all: ${SUBFILES} - -flags.doterror= - -# the tests are actually done with sub-makes. -.PHONY: ${SUBFILES} -.PRECIOUS: ${SUBFILES} -${SUBFILES}: - -@${.MAKE} ${flags.$@:U-k} -f ${UNIT_TESTS}/$@ - -clean: - rm -f *.out *.fail *.core - -.sinclude - -TEST_MAKE?= ${.MAKE} -TOOL_SED?= sed -TOOL_TR?= tr -TOOL_DIFF?= diff -DIFF_FLAGS?= -u - -# ensure consistent results from sort(1) -LC_ALL= C -LANG= C -.export LANG LC_ALL - -# The driver. -# We always pretend .MAKE was called 'make' -# and strip ${.CURDIR}/ from the output -# and replace anything after 'stopped in' with unit-tests -# so the results can be compared. -test: - @echo "${TEST_MAKE} -f ${MAKEFILE} > ${.TARGET}.out 2>&1" - @cd ${.OBJDIR} && ${TEST_MAKE} -f ${MAKEFILE} 2>&1 | \ - ${TOOL_TR} -d '\015' | \ - ${TOOL_SED} -e 's,^${TEST_MAKE:T:C/\./\\\./g}:,make:,' \ - -e '/stopped/s, /.*, unit-tests,' \ - -e 's,${.CURDIR:C/\./\\\./g}/,,g' \ - -e 's,${UNIT_TESTS:C/\./\\\./g}/,,g' > ${.TARGET}.out || { \ - tail ${.TARGET}.out; mv ${.TARGET}.out ${.TARGET}.fail; exit 1; } - ${TOOL_DIFF} ${DIFF_FLAGS} ${UNIT_TESTS}/${.TARGET}.exp ${.TARGET}.out - -accept: - mv test.out ${srcdir}/test.exp - From 7cd2dcf07629713e5a3d60472cfe4701b705a167 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:24:17 +0000 Subject: [PATCH 008/228] Updated/new Makefile.depend --- bin/ls/Makefile.depend | 1 + cddl/lib/libavl/Makefile.depend | 1 + cddl/lib/libctf/Makefile.depend | 2 + cddl/lib/libdtrace/Makefile.depend | 3 ++ cddl/lib/libnvpair/Makefile.depend | 2 + cddl/lib/libumem/Makefile.depend | 1 + cddl/lib/libuutil/Makefile.depend | 1 + cddl/lib/libzfs/Makefile.depend | 4 ++ cddl/lib/libzpool/Makefile.depend | 4 ++ cddl/sbin/zfs/Makefile.depend | 2 + cddl/sbin/zpool/Makefile.depend | 1 + cddl/usr.bin/ctfconvert/Makefile.depend | 3 ++ cddl/usr.bin/ctfdump/Makefile.depend | 3 ++ cddl/usr.bin/ctfmerge/Makefile.depend | 3 ++ cddl/usr.bin/sgsmsg/Makefile.depend | 1 + cddl/usr.bin/zinject/Makefile.depend | 1 + cddl/usr.bin/zstreamdump/Makefile.depend | 26 ++++++++++ cddl/usr.bin/ztest/Makefile.depend | 28 +++++++++++ cddl/usr.sbin/dtrace/Makefile.depend | 28 +++++++++++ cddl/usr.sbin/dtruss/Makefile.depend | 14 ++++++ cddl/usr.sbin/lockstat/Makefile.depend | 29 +++++++++++ cddl/usr.sbin/zdb/Makefile.depend | 27 ++++++++++ cddl/usr.sbin/zhack/Makefile.depend | 27 ++++++++++ etc/sendmail/Makefile.depend | 14 ++++++ games/grdc/Makefile.depend | 1 + gnu/lib/libdialog/Makefile.depend | 4 ++ gnu/lib/libgcc/Makefile.depend | 1 + gnu/lib/libgomp/Makefile.depend | 3 ++ gnu/lib/libreadline/history/Makefile.depend | 3 ++ gnu/lib/libreadline/readline/Makefile.depend | 5 ++ gnu/lib/libregex/Makefile.depend | 3 ++ gnu/lib/libssp/Makefile.depend | 3 ++ gnu/lib/libstdc++/Makefile.depend | 3 ++ gnu/lib/libsupc++/Makefile.depend | 4 ++ ...{Makefile.depend => Makefile.depend.amd64} | 4 ++ ...{Makefile.depend => Makefile.depend.amd64} | 20 ++++++++ gnu/usr.bin/cc/cc_tools/Makefile.depend | 3 ++ gnu/usr.bin/cvs/contrib/Makefile.depend | 14 ++++++ ...{Makefile.depend => Makefile.depend.amd64} | 12 ++--- ...{Makefile.depend => Makefile.depend.amd64} | 50 ++++++++++++------- gnu/usr.bin/groff/contrib/mm/Makefile.depend | 14 ++++++ kerberos5/lib/libasn1/Makefile.depend | 4 ++ kerberos5/lib/libgssapi_krb5/Makefile.depend | 11 ++++ kerberos5/lib/libgssapi_ntlm/Makefile.depend | 9 ++++ .../lib/libgssapi_spnego/Makefile.depend | 7 +++ kerberos5/lib/libhdb/Makefile.depend | 10 ++++ kerberos5/lib/libheimbase/Makefile.depend | 4 ++ kerberos5/lib/libheimipcc/Makefile.depend | 1 + kerberos5/lib/libheimipcs/Makefile.depend | 2 + kerberos5/lib/libheimntlm/Makefile.depend | 6 +++ kerberos5/lib/libheimsqlite/Makefile.depend | 4 ++ kerberos5/lib/libhx509/Makefile.depend | 6 +++ kerberos5/lib/libkadm5clnt/Makefile.depend | 5 ++ kerberos5/lib/libkadm5srv/Makefile.depend | 5 ++ kerberos5/lib/libkafs5/Makefile.depend | 6 +++ kerberos5/lib/libkdc/Makefile.depend | 7 +++ kerberos5/lib/libkrb5/Makefile.depend | 6 +++ kerberos5/lib/libroken/Makefile.depend | 4 ++ kerberos5/lib/libsl/Makefile.depend | 1 + kerberos5/lib/libwind/Makefile.depend | 4 ++ lib/atf/libatf-c++/Makefile.depend | 22 ++++++++ lib/atf/libatf-c/Makefile.depend | 19 +++++++ lib/bind/dns/Makefile.depend | 1 + lib/bind/lwres/Makefile.depend | 4 ++ lib/clang/libclanganalysis/Makefile.depend | 6 +-- lib/clang/libllvmsupport/Makefile.depend | 2 + lib/clang/libllvmtablegen/Makefile.depend | 2 + lib/libalias/libalias/Makefile.depend | 3 ++ lib/libalias/modules/cuseeme/Makefile.depend | 3 ++ lib/libalias/modules/dummy/Makefile.depend | 3 ++ lib/libalias/modules/ftp/Makefile.depend | 3 ++ lib/libalias/modules/irc/Makefile.depend | 3 ++ lib/libalias/modules/nbt/Makefile.depend | 3 ++ lib/libalias/modules/pptp/Makefile.depend | 3 ++ lib/libalias/modules/skinny/Makefile.depend | 3 ++ lib/libalias/modules/smedia/Makefile.depend | 3 ++ lib/libarchive/Makefile.depend | 8 +++ lib/libauditd/Makefile.depend | 3 ++ lib/libbegemot/Makefile.depend | 3 ++ lib/libblocksruntime/Makefile.depend | 3 ++ lib/libbluetooth/Makefile.depend | 3 ++ lib/libbsm/Makefile.depend | 3 ++ lib/libbsnmp/libbsnmp/Makefile.depend | 4 ++ lib/libbz2/Makefile.depend | 3 ++ lib/libc/Makefile.depend | 1 + lib/libcalendar/Makefile.depend | 3 ++ lib/libcam/Makefile.depend | 4 ++ lib/libcom_err/Makefile.depend | 3 ++ lib/libdevinfo/Makefile.depend | 3 ++ lib/libdevstat/Makefile.depend | 4 ++ lib/libdwarf/Makefile.depend | 4 ++ lib/libedit/Makefile.depend | 5 ++ lib/libelf/Makefile.depend | 3 ++ lib/libexpat/Makefile.depend | 3 ++ lib/libfetch/Makefile.depend | 5 ++ lib/libgeom/Makefile.depend | 4 ++ lib/libgpib/Makefile.depend | 3 ++ lib/libgssapi/Makefile.depend | 3 ++ lib/libipsec/Makefile.depend | 3 ++ lib/libipx/Makefile.depend | 3 ++ lib/libjail/Makefile.depend | 3 ++ lib/libkiconv/Makefile.depend | 3 ++ lib/liblzma/Makefile.depend | 3 ++ lib/libmagic/Makefile.depend | 4 ++ lib/libmandoc/Makefile.depend | 16 ++++++ lib/libmd/Makefile.depend | 3 ++ lib/libmemstat/Makefile.depend | 3 ++ lib/libmilter/Makefile.depend | 3 ++ lib/libmp/Makefile.depend | 4 ++ lib/libnetgraph/Makefile.depend | 3 ++ lib/libngatm/Makefile.depend | 3 ++ lib/libopie/Makefile.depend | 3 ++ lib/libpam/libpam/Makefile.depend | 3 ++ lib/libpam/modules/pam_chroot/Makefile.depend | 4 ++ lib/libpam/modules/pam_deny/Makefile.depend | 4 ++ lib/libpam/modules/pam_echo/Makefile.depend | 4 ++ lib/libpam/modules/pam_exec/Makefile.depend | 4 ++ .../modules/pam_ftpusers/Makefile.depend | 4 ++ lib/libpam/modules/pam_group/Makefile.depend | 4 ++ lib/libpam/modules/pam_guest/Makefile.depend | 4 ++ lib/libpam/modules/pam_krb5/Makefile.depend | 8 +++ lib/libpam/modules/pam_ksu/Makefile.depend | 9 ++++ .../modules/pam_lastlog/Makefile.depend | 4 ++ .../modules/pam_login_access/Makefile.depend | 4 ++ .../modules/pam_nologin/Makefile.depend | 4 ++ lib/libpam/modules/pam_opie/Makefile.depend | 5 ++ .../modules/pam_opieaccess/Makefile.depend | 5 ++ .../modules/pam_passwdqc/Makefile.depend | 5 ++ lib/libpam/modules/pam_permit/Makefile.depend | 4 ++ lib/libpam/modules/pam_radius/Makefile.depend | 5 ++ lib/libpam/modules/pam_rhosts/Makefile.depend | 4 ++ lib/libpam/modules/pam_rootok/Makefile.depend | 4 ++ .../modules/pam_securetty/Makefile.depend | 4 ++ lib/libpam/modules/pam_self/Makefile.depend | 4 ++ lib/libpam/modules/pam_ssh/Makefile.depend | 7 +++ .../modules/pam_tacplus/Makefile.depend | 5 ++ lib/libpam/modules/pam_unix/Makefile.depend | 6 +++ lib/libpcap/Makefile.depend | 3 ++ lib/libpmc/Makefile.depend | 3 ++ lib/libproc/Makefile.depend | 8 +++ lib/libprocstat/Makefile.depend | 3 ++ lib/libradius/Makefile.depend | 4 ++ lib/librpcsec_gss/Makefile.depend | 4 ++ lib/librpcsvc/Makefile.depend | 3 ++ lib/librt/Makefile.depend | 4 ++ lib/librtld_db/Makefile.depend | 8 +++ lib/libsbuf/Makefile.depend | 3 ++ lib/libsdp/Makefile.depend | 3 ++ lib/libstand/Makefile.depend | 2 + lib/libstdbuf/Makefile.depend | 3 ++ lib/libstdthreads/Makefile.depend | 4 ++ lib/libtacplus/Makefile.depend | 3 ++ lib/libtelnet/Makefile.depend | 1 + lib/libthr/Makefile.depend | 3 ++ lib/libthread_db/Makefile.depend | 3 ++ lib/libufs/Makefile.depend | 3 ++ lib/libugidfw/Makefile.depend | 3 ++ lib/libulog/Makefile.depend | 3 ++ lib/libusb/Makefile.depend | 4 ++ lib/libusbhid/Makefile.depend | 3 ++ lib/libutil/Makefile.depend | 3 ++ lib/libvgl/Makefile.depend | 5 ++ lib/libwrap/Makefile.depend | 3 ++ lib/libypclnt/Makefile.depend | 3 ++ lib/libz/Makefile.depend | 3 ++ lib/ncurses/form/Makefile.depend | 3 ++ lib/ncurses/formw/Makefile.depend | 3 ++ lib/ncurses/menu/Makefile.depend | 3 ++ lib/ncurses/menuw/Makefile.depend | 3 ++ lib/ncurses/ncurses/Makefile.depend | 3 ++ lib/ncurses/ncursesw/Makefile.depend | 3 ++ lib/ncurses/panel/Makefile.depend | 3 ++ lib/ncurses/panelw/Makefile.depend | 3 ++ libexec/atf/atf-check/Makefile.depend | 24 +++++++++ libexec/ftpd/Makefile.depend | 1 - rescue/librescue/Makefile.depend | 20 ++++++++ sbin/devd/Makefile.depend | 1 + sbin/geom/class/cache/Makefile.depend | 3 ++ sbin/geom/class/concat/Makefile.depend | 3 ++ sbin/geom/class/eli/Makefile.depend | 4 ++ sbin/geom/class/journal/Makefile.depend | 4 ++ sbin/geom/class/label/Makefile.depend | 3 ++ sbin/geom/class/mirror/Makefile.depend | 4 ++ sbin/geom/class/mountver/Makefile.depend | 3 ++ sbin/geom/class/multipath/Makefile.depend | 3 ++ sbin/geom/class/nop/Makefile.depend | 3 ++ sbin/geom/class/part/Makefile.depend | 3 ++ sbin/geom/class/raid/Makefile.depend | 4 ++ sbin/geom/class/raid3/Makefile.depend | 4 ++ sbin/geom/class/sched/Makefile.depend | 3 ++ sbin/geom/class/shsec/Makefile.depend | 3 ++ sbin/geom/class/stripe/Makefile.depend | 3 ++ sbin/geom/class/virstor/Makefile.depend | 3 ++ sbin/mount_fusefs/Makefile.depend | 19 +++++++ sbin/nvmecontrol/Makefile.depend | 19 +++++++ secure/lib/libcrypto/Makefile.depend | 4 +- .../engines/lib4758cca/Makefile.depend | 4 ++ .../libcrypto/engines/libaep/Makefile.depend | 4 ++ .../engines/libatalla/Makefile.depend | 4 ++ .../libcrypto/engines/libchil/Makefile.depend | 4 ++ .../engines/libcswift/Makefile.depend | 4 ++ .../libcrypto/engines/libgost/Makefile.depend | 20 ++++++++ .../engines/libnuron/Makefile.depend | 4 ++ .../engines/libsureware/Makefile.depend | 4 ++ .../engines/libubsec/Makefile.depend | 4 ++ secure/lib/libssh/Makefile.depend | 10 ++++ secure/lib/libssl/Makefile.depend | 4 ++ share/examples/ipfilter/Makefile.depend | 14 ++++++ sys/boot/efi/libefi/Makefile.depend | 16 ++++++ sys/boot/ficl/Makefile.depend | 6 +++ sys/boot/i386/boot0/Makefile.depend | 14 ++++++ sys/boot/i386/boot0sio/Makefile.depend | 14 ++++++ usr.bin/atf/atf-config/Makefile.depend | 24 +++++++++ usr.bin/atf/atf-report/Makefile.depend | 24 +++++++++ usr.bin/atf/atf-run/Makefile.depend | 24 +++++++++ usr.bin/atf/atf-sh/Makefile.depend | 24 +++++++++ usr.bin/atf/atf-version/Makefile.depend | 26 ++++++++++ usr.bin/bmake/Makefile.depend | 19 +++++++ usr.bin/clang/clang-tblgen/Makefile.depend | 1 + usr.bin/clang/tblgen/Makefile.depend | 1 + usr.bin/ftp/Makefile.depend | 1 - usr.bin/kdump/Makefile.depend | 1 - usr.bin/mandoc/Makefile.depend | 20 ++++++++ usr.bin/nc/Makefile.depend | 1 - usr.bin/sort/Makefile.depend | 1 - usr.bin/ssh-copy-id/Makefile.depend | 14 ++++++ ...{Makefile.depend => Makefile.depend.amd64} | 11 ++-- .../bsnmpd/modules/snmp_atm/Makefile.depend | 5 ++ .../modules/snmp_bridge/Makefile.depend | 4 ++ .../modules/snmp_hostres/Makefile.depend | 4 ++ .../bsnmpd/modules/snmp_mibII/Makefile.depend | 3 ++ .../modules/snmp_netgraph/Makefile.depend | 3 ++ .../bsnmpd/modules/snmp_pf/Makefile.depend | 3 ++ .../modules/snmp_target/Makefile.depend | 3 ++ .../bsnmpd/modules/snmp_usm/Makefile.depend | 3 ++ .../bsnmpd/modules/snmp_vacm/Makefile.depend | 3 ++ .../bsnmpd/modules/snmp_wlan/Makefile.depend | 3 ++ .../tools/libbsnmptools/Makefile.depend | 3 ++ usr.sbin/dconschat/Makefile.depend | 2 +- usr.sbin/etcupdate/Makefile.depend | 14 ++++++ usr.sbin/isfctl/Makefile.depend | 19 +++++++ usr.sbin/ntp/doc/Makefile.depend | 14 ++++++ usr.sbin/rarpd/Makefile.depend | 1 + 243 files changed, 1443 insertions(+), 40 deletions(-) create mode 100644 cddl/usr.bin/zstreamdump/Makefile.depend create mode 100644 cddl/usr.bin/ztest/Makefile.depend create mode 100644 cddl/usr.sbin/dtrace/Makefile.depend create mode 100644 cddl/usr.sbin/dtruss/Makefile.depend create mode 100644 cddl/usr.sbin/lockstat/Makefile.depend create mode 100644 cddl/usr.sbin/zdb/Makefile.depend create mode 100644 cddl/usr.sbin/zhack/Makefile.depend create mode 100644 etc/sendmail/Makefile.depend rename gnu/usr.bin/binutils/ld/{Makefile.depend => Makefile.depend.amd64} (87%) rename gnu/usr.bin/binutils/libbfd/{Makefile.depend => Makefile.depend.amd64} (80%) create mode 100644 gnu/usr.bin/cvs/contrib/Makefile.depend rename gnu/usr.bin/gdb/kgdb/{Makefile.depend => Makefile.depend.amd64} (88%) rename gnu/usr.bin/gdb/libgdb/{Makefile.depend => Makefile.depend.amd64} (96%) create mode 100644 gnu/usr.bin/groff/contrib/mm/Makefile.depend create mode 100644 lib/atf/libatf-c++/Makefile.depend create mode 100644 lib/atf/libatf-c/Makefile.depend create mode 100644 lib/libmandoc/Makefile.depend create mode 100644 libexec/atf/atf-check/Makefile.depend create mode 100644 rescue/librescue/Makefile.depend create mode 100644 sbin/mount_fusefs/Makefile.depend create mode 100644 sbin/nvmecontrol/Makefile.depend create mode 100644 secure/lib/libcrypto/engines/libgost/Makefile.depend create mode 100644 share/examples/ipfilter/Makefile.depend create mode 100644 sys/boot/efi/libefi/Makefile.depend create mode 100644 sys/boot/i386/boot0/Makefile.depend create mode 100644 sys/boot/i386/boot0sio/Makefile.depend create mode 100644 usr.bin/atf/atf-config/Makefile.depend create mode 100644 usr.bin/atf/atf-report/Makefile.depend create mode 100644 usr.bin/atf/atf-run/Makefile.depend create mode 100644 usr.bin/atf/atf-sh/Makefile.depend create mode 100644 usr.bin/atf/atf-version/Makefile.depend create mode 100644 usr.bin/bmake/Makefile.depend create mode 100644 usr.bin/mandoc/Makefile.depend create mode 100644 usr.bin/ssh-copy-id/Makefile.depend rename usr.bin/truss/{Makefile.depend => Makefile.depend.amd64} (64%) create mode 100644 usr.sbin/etcupdate/Makefile.depend create mode 100644 usr.sbin/isfctl/Makefile.depend create mode 100644 usr.sbin/ntp/doc/Makefile.depend diff --git a/bin/ls/Makefile.depend b/bin/ls/Makefile.depend index 3bf190da5af9..600233c995ac 100644 --- a/bin/ls/Makefile.depend +++ b/bin/ls/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/libc \ lib/libutil \ lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ .include diff --git a/cddl/lib/libavl/Makefile.depend b/cddl/lib/libavl/Makefile.depend index f5418c0fbe7a..ac1b1319c7ef 100644 --- a/cddl/lib/libavl/Makefile.depend +++ b/cddl/lib/libavl/Makefile.depend @@ -5,6 +5,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ diff --git a/cddl/lib/libctf/Makefile.depend b/cddl/lib/libctf/Makefile.depend index fea4fa089d94..dcff6f96c0a0 100644 --- a/cddl/lib/libctf/Makefile.depend +++ b/cddl/lib/libctf/Makefile.depend @@ -5,11 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ lib/libelf \ + lib/libz \ .include diff --git a/cddl/lib/libdtrace/Makefile.depend b/cddl/lib/libdtrace/Makefile.depend index 50cff6232a46..0d5c115777fb 100644 --- a/cddl/lib/libdtrace/Makefile.depend +++ b/cddl/lib/libdtrace/Makefile.depend @@ -5,12 +5,15 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ lib/libelf \ + lib/libproc \ + lib/librtld_db \ .include diff --git a/cddl/lib/libnvpair/Makefile.depend b/cddl/lib/libnvpair/Makefile.depend index eba5cd5875b4..d78f7b72e2c0 100644 --- a/cddl/lib/libnvpair/Makefile.depend +++ b/cddl/lib/libnvpair/Makefile.depend @@ -5,10 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/msun \ .include diff --git a/cddl/lib/libumem/Makefile.depend b/cddl/lib/libumem/Makefile.depend index f5418c0fbe7a..ac1b1319c7ef 100644 --- a/cddl/lib/libumem/Makefile.depend +++ b/cddl/lib/libumem/Makefile.depend @@ -5,6 +5,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ diff --git a/cddl/lib/libuutil/Makefile.depend b/cddl/lib/libuutil/Makefile.depend index eba5cd5875b4..a83954553d0e 100644 --- a/cddl/lib/libuutil/Makefile.depend +++ b/cddl/lib/libuutil/Makefile.depend @@ -5,6 +5,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/cddl/lib/libzfs/Makefile.depend b/cddl/lib/libzfs/Makefile.depend index 95d46624ef2b..3f679299f64d 100644 --- a/cddl/lib/libzfs/Makefile.depend +++ b/cddl/lib/libzfs/Makefile.depend @@ -5,12 +5,16 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + cddl/lib/libnvpair \ cddl/lib/libumem \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ lib/libgeom \ + lib/libmd \ + lib/libthr \ lib/libutil \ lib/msun \ diff --git a/cddl/lib/libzpool/Makefile.depend b/cddl/lib/libzpool/Makefile.depend index 420d91b52f55..2916ba075a6d 100644 --- a/cddl/lib/libzpool/Makefile.depend +++ b/cddl/lib/libzpool/Makefile.depend @@ -5,10 +5,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libmd \ + lib/libthr \ + lib/libz \ lib/msun \ diff --git a/cddl/sbin/zfs/Makefile.depend b/cddl/sbin/zfs/Makefile.depend index ac256a59c374..ad95c7e7b7bf 100644 --- a/cddl/sbin/zfs/Makefile.depend +++ b/cddl/sbin/zfs/Makefile.depend @@ -9,11 +9,13 @@ DIRDEPS = \ cddl/lib/libumem \ cddl/lib/libuutil \ cddl/lib/libzfs \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ lib/libgeom \ + lib/libjail \ lib/libutil \ lib/msun \ diff --git a/cddl/sbin/zpool/Makefile.depend b/cddl/sbin/zpool/Makefile.depend index 33d5e34a3a72..27e33a055964 100644 --- a/cddl/sbin/zpool/Makefile.depend +++ b/cddl/sbin/zpool/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ cddl/lib/libumem \ cddl/lib/libuutil \ cddl/lib/libzfs \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/cddl/usr.bin/ctfconvert/Makefile.depend b/cddl/usr.bin/ctfconvert/Makefile.depend index 75e8094cf961..2c870cc77558 100644 --- a/cddl/usr.bin/ctfconvert/Makefile.depend +++ b/cddl/usr.bin/ctfconvert/Makefile.depend @@ -6,12 +6,15 @@ DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ cddl/lib/libctf \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ lib/libdwarf \ lib/libelf \ + lib/libthr \ + lib/libz \ .include diff --git a/cddl/usr.bin/ctfdump/Makefile.depend b/cddl/usr.bin/ctfdump/Makefile.depend index fea4fa089d94..b4cb4d4d19ca 100644 --- a/cddl/usr.bin/ctfdump/Makefile.depend +++ b/cddl/usr.bin/ctfdump/Makefile.depend @@ -5,11 +5,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ lib/libelf \ + lib/libthr \ + lib/libz \ .include diff --git a/cddl/usr.bin/ctfmerge/Makefile.depend b/cddl/usr.bin/ctfmerge/Makefile.depend index 75e8094cf961..2c870cc77558 100644 --- a/cddl/usr.bin/ctfmerge/Makefile.depend +++ b/cddl/usr.bin/ctfmerge/Makefile.depend @@ -6,12 +6,15 @@ DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ cddl/lib/libctf \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ lib/libdwarf \ lib/libelf \ + lib/libthr \ + lib/libz \ .include diff --git a/cddl/usr.bin/sgsmsg/Makefile.depend b/cddl/usr.bin/sgsmsg/Makefile.depend index fea4fa089d94..dc069b654cc3 100644 --- a/cddl/usr.bin/sgsmsg/Makefile.depend +++ b/cddl/usr.bin/sgsmsg/Makefile.depend @@ -5,6 +5,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/cddl/usr.bin/zinject/Makefile.depend b/cddl/usr.bin/zinject/Makefile.depend index 695f032fbe47..42488ec3b06d 100644 --- a/cddl/usr.bin/zinject/Makefile.depend +++ b/cddl/usr.bin/zinject/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ cddl/lib/libuutil \ cddl/lib/libzfs \ cddl/lib/libzpool \ + gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/cddl/usr.bin/zstreamdump/Makefile.depend b/cddl/usr.bin/zstreamdump/Makefile.depend new file mode 100644 index 000000000000..72360fe0d677 --- /dev/null +++ b/cddl/usr.bin/zstreamdump/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libavl \ + cddl/lib/libnvpair \ + cddl/lib/libumem \ + cddl/lib/libzpool \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libthr \ + lib/libz \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/usr.bin/ztest/Makefile.depend b/cddl/usr.bin/ztest/Makefile.depend new file mode 100644 index 000000000000..e42e30505f33 --- /dev/null +++ b/cddl/usr.bin/ztest/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libavl \ + cddl/lib/libnvpair \ + cddl/lib/libumem \ + cddl/lib/libuutil \ + cddl/lib/libzfs \ + cddl/lib/libzpool \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + lib/libthr \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/usr.sbin/dtrace/Makefile.depend b/cddl/usr.sbin/dtrace/Makefile.depend new file mode 100644 index 000000000000..57f4efb13895 --- /dev/null +++ b/cddl/usr.sbin/dtrace/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libctf \ + cddl/lib/libdtrace \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libelf \ + lib/libproc \ + lib/librtld_db \ + lib/libthr \ + lib/libutil \ + lib/liby \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/usr.sbin/dtruss/Makefile.depend b/cddl/usr.sbin/dtruss/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/cddl/usr.sbin/dtruss/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/usr.sbin/lockstat/Makefile.depend b/cddl/usr.sbin/lockstat/Makefile.depend new file mode 100644 index 000000000000..da3770a4b7c9 --- /dev/null +++ b/cddl/usr.sbin/lockstat/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libctf \ + cddl/lib/libdtrace \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libelf \ + lib/libproc \ + lib/librt \ + lib/librtld_db \ + lib/libthr \ + lib/libutil \ + lib/liby \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/usr.sbin/zdb/Makefile.depend b/cddl/usr.sbin/zdb/Makefile.depend new file mode 100644 index 000000000000..975bf7776a10 --- /dev/null +++ b/cddl/usr.sbin/zdb/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libnvpair \ + cddl/lib/libumem \ + cddl/lib/libuutil \ + cddl/lib/libzfs \ + cddl/lib/libzpool \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + lib/libthr \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/usr.sbin/zhack/Makefile.depend b/cddl/usr.sbin/zhack/Makefile.depend new file mode 100644 index 000000000000..975bf7776a10 --- /dev/null +++ b/cddl/usr.sbin/zhack/Makefile.depend @@ -0,0 +1,27 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/libnvpair \ + cddl/lib/libumem \ + cddl/lib/libuutil \ + cddl/lib/libzfs \ + cddl/lib/libzpool \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgeom \ + lib/libthr \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/etc/sendmail/Makefile.depend b/etc/sendmail/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/etc/sendmail/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/games/grdc/Makefile.depend b/games/grdc/Makefile.depend index 18bcf60ef813..c74c89fb77e8 100644 --- a/games/grdc/Makefile.depend +++ b/games/grdc/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ .include diff --git a/gnu/lib/libdialog/Makefile.depend b/gnu/lib/libdialog/Makefile.depend index 6a3fc332584d..a9d63a90d5fb 100644 --- a/gnu/lib/libdialog/Makefile.depend +++ b/gnu/lib/libdialog/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/msun \ + lib/ncurses/ncursesw \ .include diff --git a/gnu/lib/libgcc/Makefile.depend b/gnu/lib/libgcc/Makefile.depend index 3b4ce3968be5..11b22ace4b1d 100644 --- a/gnu/lib/libgcc/Makefile.depend +++ b/gnu/lib/libgcc/Makefile.depend @@ -7,6 +7,7 @@ DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ include \ include/xlocale \ + lib/${CSU_DIR} \ lib/libc \ diff --git a/gnu/lib/libgomp/Makefile.depend b/gnu/lib/libgomp/Makefile.depend index b7fcf38c6a5b..aaab8a8a33bb 100644 --- a/gnu/lib/libgomp/Makefile.depend +++ b/gnu/lib/libgomp/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/gnu/lib/libreadline/history/Makefile.depend b/gnu/lib/libreadline/history/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/gnu/lib/libreadline/history/Makefile.depend +++ b/gnu/lib/libreadline/history/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/gnu/lib/libreadline/readline/Makefile.depend b/gnu/lib/libreadline/readline/Makefile.depend index e248139c3a0e..c74c89fb77e8 100644 --- a/gnu/lib/libreadline/readline/Makefile.depend +++ b/gnu/lib/libreadline/readline/Makefile.depend @@ -5,8 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ .include diff --git a/gnu/lib/libregex/Makefile.depend b/gnu/lib/libregex/Makefile.depend index 9ac344fab963..17b62e5b3277 100644 --- a/gnu/lib/libregex/Makefile.depend +++ b/gnu/lib/libregex/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/gnu/lib/libssp/Makefile.depend b/gnu/lib/libssp/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/gnu/lib/libssp/Makefile.depend +++ b/gnu/lib/libssp/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/gnu/lib/libstdc++/Makefile.depend b/gnu/lib/libstdc++/Makefile.depend index 547329604d3f..731d2f6baab4 100644 --- a/gnu/lib/libstdc++/Makefile.depend +++ b/gnu/lib/libstdc++/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/msun \ diff --git a/gnu/lib/libsupc++/Makefile.depend b/gnu/lib/libsupc++/Makefile.depend index ff261471e3a7..f18f640b54c9 100644 --- a/gnu/lib/libsupc++/Makefile.depend +++ b/gnu/lib/libsupc++/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/gnu/usr.bin/binutils/ld/Makefile.depend b/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 similarity index 87% rename from gnu/usr.bin/binutils/ld/Makefile.depend rename to gnu/usr.bin/binutils/ld/Makefile.depend.amd64 index 24e5a8b34b91..62067d81dafb 100644 --- a/gnu/usr.bin/binutils/ld/Makefile.depend +++ b/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 @@ -21,6 +21,10 @@ eelf_i386_fbsd.o: eelf_i386_fbsd.c eelf_i386_fbsd.o: ldgram.h eelf_i386_fbsd.po: eelf_i386_fbsd.c eelf_i386_fbsd.po: ldgram.h +eelf_x86_64_fbsd.o: eelf_x86_64_fbsd.c +eelf_x86_64_fbsd.o: ldgram.h +eelf_x86_64_fbsd.po: eelf_x86_64_fbsd.c +eelf_x86_64_fbsd.po: ldgram.h ldctor.o: ldgram.h ldctor.po: ldgram.h ldemul.o: ldemul-list.h diff --git a/gnu/usr.bin/binutils/libbfd/Makefile.depend b/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 similarity index 80% rename from gnu/usr.bin/binutils/libbfd/Makefile.depend rename to gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 index be067afcd8db..d47d5fbe56e2 100644 --- a/gnu/usr.bin/binutils/libbfd/Makefile.depend +++ b/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 @@ -45,6 +45,8 @@ dwarf2.o: config.h dwarf2.po: config.h efi-app-ia32.o: config.h efi-app-ia32.po: config.h +efi-app-x86_64.o: config.h +efi-app-x86_64.po: config.h elf-attrs.o: config.h elf-attrs.po: config.h elf-eh-frame.o: config.h @@ -61,6 +63,16 @@ elf32-i386.po: config.h elf32-i386.po: elf32-target.h elf32.o: config.h elf32.po: config.h +elf64-gen.o: config.h +elf64-gen.o: elf64-target.h +elf64-gen.po: config.h +elf64-gen.po: elf64-target.h +elf64-x86-64.o: config.h +elf64-x86-64.o: elf64-target.h +elf64-x86-64.po: config.h +elf64-x86-64.po: elf64-target.h +elf64.o: config.h +elf64.po: config.h elflink.o: config.h elflink.po: config.h format.o: config.h @@ -83,6 +95,14 @@ peigen.o: config.h peigen.o: peigen.c peigen.po: config.h peigen.po: peigen.c +pepigen.o: config.h +pepigen.o: pepigen.c +pepigen.po: config.h +pepigen.po: pepigen.c +pex64igen.o: config.h +pex64igen.o: pex64igen.c +pex64igen.po: config.h +pex64igen.po: pex64igen.c reloc.o: config.h reloc.po: config.h section.o: config.h diff --git a/gnu/usr.bin/cc/cc_tools/Makefile.depend b/gnu/usr.bin/cc/cc_tools/Makefile.depend index 4e41c5bf1d61..0cbe1d7aa246 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile.depend +++ b/gnu/usr.bin/cc/cc_tools/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/msun \ diff --git a/gnu/usr.bin/cvs/contrib/Makefile.depend b/gnu/usr.bin/cvs/contrib/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/cvs/contrib/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/gnu/usr.bin/gdb/kgdb/Makefile.depend b/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 similarity index 88% rename from gnu/usr.bin/gdb/kgdb/Makefile.depend rename to gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 index 1658b2d29b0c..a1746a263f76 100644 --- a/gnu/usr.bin/gdb/kgdb/Makefile.depend +++ b/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 @@ -49,10 +49,10 @@ trgt.o: xm.h trgt.po: nm.h trgt.po: tm.h trgt.po: xm.h -trgt_i386.o: nm.h -trgt_i386.o: tm.h -trgt_i386.o: xm.h -trgt_i386.po: nm.h -trgt_i386.po: tm.h -trgt_i386.po: xm.h +trgt_amd64.o: nm.h +trgt_amd64.o: tm.h +trgt_amd64.o: xm.h +trgt_amd64.po: nm.h +trgt_amd64.po: tm.h +trgt_amd64.po: xm.h .endif diff --git a/gnu/usr.bin/gdb/libgdb/Makefile.depend b/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 similarity index 96% rename from gnu/usr.bin/gdb/libgdb/Makefile.depend rename to gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 index 182e7b411ef9..d29724c09960 100644 --- a/gnu/usr.bin/gdb/libgdb/Makefile.depend +++ b/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 @@ -9,13 +9,45 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + lib/libthread_db \ lib/msun \ + lib/ncurses/ncursesw \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +amd64-nat.o: nm.h +amd64-nat.o: tm.h +amd64-nat.o: xm.h +amd64-nat.po: nm.h +amd64-nat.po: tm.h +amd64-nat.po: xm.h +amd64-tdep.o: nm.h +amd64-tdep.o: tm.h +amd64-tdep.o: xm.h +amd64-tdep.po: nm.h +amd64-tdep.po: tm.h +amd64-tdep.po: xm.h +amd64bsd-nat.o: nm.h +amd64bsd-nat.o: tm.h +amd64bsd-nat.o: xm.h +amd64bsd-nat.po: nm.h +amd64bsd-nat.po: tm.h +amd64bsd-nat.po: xm.h +amd64fbsd-nat.o: nm.h +amd64fbsd-nat.o: tm.h +amd64fbsd-nat.o: xm.h +amd64fbsd-nat.po: nm.h +amd64fbsd-nat.po: tm.h +amd64fbsd-nat.po: xm.h +amd64fbsd-tdep.o: nm.h +amd64fbsd-tdep.o: tm.h +amd64fbsd-tdep.o: xm.h +amd64fbsd-tdep.po: nm.h +amd64fbsd-tdep.po: tm.h +amd64fbsd-tdep.po: xm.h annotate.o: nm.h annotate.o: tm.h annotate.o: xm.h @@ -460,36 +492,18 @@ hpacc-abi.o: xm.h hpacc-abi.po: nm.h hpacc-abi.po: tm.h hpacc-abi.po: xm.h -i386-nat.o: nm.h -i386-nat.o: tm.h -i386-nat.o: xm.h -i386-nat.po: nm.h -i386-nat.po: tm.h -i386-nat.po: xm.h i386-tdep.o: nm.h i386-tdep.o: tm.h i386-tdep.o: xm.h i386-tdep.po: nm.h i386-tdep.po: tm.h i386-tdep.po: xm.h -i386bsd-nat.o: nm.h -i386bsd-nat.o: tm.h -i386bsd-nat.o: xm.h -i386bsd-nat.po: nm.h -i386bsd-nat.po: tm.h -i386bsd-nat.po: xm.h i386bsd-tdep.o: nm.h i386bsd-tdep.o: tm.h i386bsd-tdep.o: xm.h i386bsd-tdep.po: nm.h i386bsd-tdep.po: tm.h i386bsd-tdep.po: xm.h -i386fbsd-nat.o: nm.h -i386fbsd-nat.o: tm.h -i386fbsd-nat.o: xm.h -i386fbsd-nat.po: nm.h -i386fbsd-nat.po: tm.h -i386fbsd-nat.po: xm.h i386fbsd-tdep-fixed.o: i386fbsd-tdep-fixed.c i386fbsd-tdep-fixed.o: nm.h i386fbsd-tdep-fixed.o: tm.h diff --git a/gnu/usr.bin/groff/contrib/mm/Makefile.depend b/gnu/usr.bin/groff/contrib/mm/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/gnu/usr.bin/groff/contrib/mm/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/kerberos5/lib/libasn1/Makefile.depend b/kerberos5/lib/libasn1/Makefile.depend index 92a41972f159..e946e45bcbcf 100644 --- a/kerberos5/lib/libasn1/Makefile.depend +++ b/kerberos5/lib/libasn1/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ lib/libcom_err \ diff --git a/kerberos5/lib/libgssapi_krb5/Makefile.depend b/kerberos5/lib/libgssapi_krb5/Makefile.depend index 09b8d99f6861..dd9f7385eaed 100644 --- a/kerberos5/lib/libgssapi_krb5/Makefile.depend +++ b/kerberos5/lib/libgssapi_krb5/Makefile.depend @@ -5,11 +5,22 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ lib/libcom_err \ + lib/libcrypt \ + lib/libgssapi \ + secure/lib/libcrypto \ .include diff --git a/kerberos5/lib/libgssapi_ntlm/Makefile.depend b/kerberos5/lib/libgssapi_ntlm/Makefile.depend index 8939113ed65b..fc8ecbd8b500 100644 --- a/kerberos5/lib/libgssapi_ntlm/Makefile.depend +++ b/kerberos5/lib/libgssapi_ntlm/Makefile.depend @@ -5,10 +5,19 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgssapi \ + secure/lib/libcrypto \ .include diff --git a/kerberos5/lib/libgssapi_spnego/Makefile.depend b/kerberos5/lib/libgssapi_spnego/Makefile.depend index 98e977dbc72e..a2ad481b9b98 100644 --- a/kerberos5/lib/libgssapi_spnego/Makefile.depend +++ b/kerberos5/lib/libgssapi_spnego/Makefile.depend @@ -5,10 +5,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgssapi \ .include diff --git a/kerberos5/lib/libhdb/Makefile.depend b/kerberos5/lib/libhdb/Makefile.depend index 17489584b4c7..da67b2e20f0a 100644 --- a/kerberos5/lib/libhdb/Makefile.depend +++ b/kerberos5/lib/libhdb/Makefile.depend @@ -5,11 +5,21 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimsqlite \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ lib/libcom_err \ + secure/lib/libcrypto \ .include diff --git a/kerberos5/lib/libheimbase/Makefile.depend b/kerberos5/lib/libheimbase/Makefile.depend index e248139c3a0e..a2742684c435 100644 --- a/kerberos5/lib/libheimbase/Makefile.depend +++ b/kerberos5/lib/libheimbase/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libthr \ .include diff --git a/kerberos5/lib/libheimipcc/Makefile.depend b/kerberos5/lib/libheimipcc/Makefile.depend index 8939113ed65b..a0383b5e3712 100644 --- a/kerberos5/lib/libheimipcc/Makefile.depend +++ b/kerberos5/lib/libheimipcc/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libroken \ .include diff --git a/kerberos5/lib/libheimipcs/Makefile.depend b/kerberos5/lib/libheimipcs/Makefile.depend index 8939113ed65b..fb53be096db2 100644 --- a/kerberos5/lib/libheimipcs/Makefile.depend +++ b/kerberos5/lib/libheimipcs/Makefile.depend @@ -9,6 +9,8 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ .include diff --git a/kerberos5/lib/libheimntlm/Makefile.depend b/kerberos5/lib/libheimntlm/Makefile.depend index a746ba0ee010..fd0132798aa3 100644 --- a/kerberos5/lib/libheimntlm/Makefile.depend +++ b/kerberos5/lib/libheimntlm/Makefile.depend @@ -5,11 +5,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ lib/libcom_err \ + secure/lib/libcrypto \ .include diff --git a/kerberos5/lib/libheimsqlite/Makefile.depend b/kerberos5/lib/libheimsqlite/Makefile.depend index ff699f730be6..4ef6bd26076f 100644 --- a/kerberos5/lib/libheimsqlite/Makefile.depend +++ b/kerberos5/lib/libheimsqlite/Makefile.depend @@ -5,7 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libthr \ .include diff --git a/kerberos5/lib/libhx509/Makefile.depend b/kerberos5/lib/libhx509/Makefile.depend index 5270ad162a8e..ccf6550260eb 100644 --- a/kerberos5/lib/libhx509/Makefile.depend +++ b/kerberos5/lib/libhx509/Makefile.depend @@ -5,11 +5,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ lib/libcom_err \ + secure/lib/libcrypto \ .include diff --git a/kerberos5/lib/libkadm5clnt/Makefile.depend b/kerberos5/lib/libkadm5clnt/Makefile.depend index e95d17697b46..c7acab4c162f 100644 --- a/kerberos5/lib/libkadm5clnt/Makefile.depend +++ b/kerberos5/lib/libkadm5clnt/Makefile.depend @@ -5,11 +5,16 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ lib/libcom_err \ diff --git a/kerberos5/lib/libkadm5srv/Makefile.depend b/kerberos5/lib/libkadm5srv/Makefile.depend index 0db4314b7561..cde994c2d02a 100644 --- a/kerberos5/lib/libkadm5srv/Makefile.depend +++ b/kerberos5/lib/libkadm5srv/Makefile.depend @@ -5,11 +5,16 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ lib/libcom_err \ diff --git a/kerberos5/lib/libkafs5/Makefile.depend b/kerberos5/lib/libkafs5/Makefile.depend index 8939113ed65b..8152b249da13 100644 --- a/kerberos5/lib/libkafs5/Makefile.depend +++ b/kerberos5/lib/libkafs5/Makefile.depend @@ -5,10 +5,16 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/kerberos5/lib/libkdc/Makefile.depend b/kerberos5/lib/libkdc/Makefile.depend index bbba09e8bbc6..7942dd1d30b3 100644 --- a/kerberos5/lib/libkdc/Makefile.depend +++ b/kerberos5/lib/libkdc/Makefile.depend @@ -5,6 +5,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ @@ -14,8 +15,14 @@ DIRDEPS = \ kerberos5/lib/libheimntlm \ kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ lib/libcom_err \ + lib/libcrypt \ lib/libutil \ + secure/lib/libcrypto \ .include diff --git a/kerberos5/lib/libkrb5/Makefile.depend b/kerberos5/lib/libkrb5/Makefile.depend index 6ec997bf7d61..7954e7254cb0 100644 --- a/kerberos5/lib/libkrb5/Makefile.depend +++ b/kerberos5/lib/libkrb5/Makefile.depend @@ -5,15 +5,21 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ kerberos5/lib/libheimipcc \ kerberos5/lib/libhx509 \ kerberos5/lib/libroken \ kerberos5/lib/libwind \ + lib/${CSU_DIR} \ + lib/libc \ lib/libcom_err \ + lib/libcrypt \ + secure/lib/libcrypto \ .include diff --git a/kerberos5/lib/libroken/Makefile.depend b/kerberos5/lib/libroken/Makefile.depend index 310aeb954255..9ef705dec97c 100644 --- a/kerberos5/lib/libroken/Makefile.depend +++ b/kerberos5/lib/libroken/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ .include diff --git a/kerberos5/lib/libsl/Makefile.depend b/kerberos5/lib/libsl/Makefile.depend index e54ec8c9f8a4..2c791d37e507 100644 --- a/kerberos5/lib/libsl/Makefile.depend +++ b/kerberos5/lib/libsl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libroken \ .include diff --git a/kerberos5/lib/libwind/Makefile.depend b/kerberos5/lib/libwind/Makefile.depend index 0c6ce77b7cf2..1a24097c020c 100644 --- a/kerberos5/lib/libwind/Makefile.depend +++ b/kerberos5/lib/libwind/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ lib/libcom_err \ diff --git a/lib/atf/libatf-c++/Makefile.depend b/lib/atf/libatf-c++/Makefile.depend new file mode 100644 index 000000000000..9f3438cbe628 --- /dev/null +++ b/lib/atf/libatf-c++/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/atf/libatf-c \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/atf/libatf-c/Makefile.depend b/lib/atf/libatf-c/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/lib/atf/libatf-c/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/bind/dns/Makefile.depend b/lib/bind/dns/Makefile.depend index e54ec8c9f8a4..6fa3f641f835 100644 --- a/lib/bind/dns/Makefile.depend +++ b/lib/bind/dns/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + secure/lib/libcrypto \ .include diff --git a/lib/bind/lwres/Makefile.depend b/lib/bind/lwres/Makefile.depend index e54ec8c9f8a4..59822b918ad0 100644 --- a/lib/bind/lwres/Makefile.depend +++ b/lib/bind/lwres/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libthr \ .include diff --git a/lib/clang/libclanganalysis/Makefile.depend b/lib/clang/libclanganalysis/Makefile.depend index 372e3ca0b564..1a5a8b2f0eff 100644 --- a/lib/clang/libclanganalysis/Makefile.depend +++ b/lib/clang/libclanganalysis/Makefile.depend @@ -5,6 +5,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -36,22 +38,18 @@ CFG.po: DiagnosticCommonKinds.inc.h CFG.po: StmtNodes.inc.h CFGReachabilityAnalysis.o: AttrList.inc.h CFGReachabilityAnalysis.o: Attrs.inc.h -CFGReachabilityAnalysis.o: DeclNodes.inc.h CFGReachabilityAnalysis.o: DiagnosticCommonKinds.inc.h CFGReachabilityAnalysis.o: StmtNodes.inc.h CFGReachabilityAnalysis.po: AttrList.inc.h CFGReachabilityAnalysis.po: Attrs.inc.h -CFGReachabilityAnalysis.po: DeclNodes.inc.h CFGReachabilityAnalysis.po: DiagnosticCommonKinds.inc.h CFGReachabilityAnalysis.po: StmtNodes.inc.h CFGStmtMap.o: AttrList.inc.h CFGStmtMap.o: Attrs.inc.h -CFGStmtMap.o: DeclNodes.inc.h CFGStmtMap.o: DiagnosticCommonKinds.inc.h CFGStmtMap.o: StmtNodes.inc.h CFGStmtMap.po: AttrList.inc.h CFGStmtMap.po: Attrs.inc.h -CFGStmtMap.po: DeclNodes.inc.h CFGStmtMap.po: DiagnosticCommonKinds.inc.h CFGStmtMap.po: StmtNodes.inc.h CallGraph.o: AttrList.inc.h diff --git a/lib/clang/libllvmsupport/Makefile.depend b/lib/clang/libllvmsupport/Makefile.depend index 6a3fc332584d..65a0021777cb 100644 --- a/lib/clang/libllvmsupport/Makefile.depend +++ b/lib/clang/libllvmsupport/Makefile.depend @@ -5,6 +5,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmtablegen/Makefile.depend b/lib/clang/libllvmtablegen/Makefile.depend index 6a3fc332584d..65a0021777cb 100644 --- a/lib/clang/libllvmtablegen/Makefile.depend +++ b/lib/clang/libllvmtablegen/Makefile.depend @@ -5,6 +5,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/libalias/libalias/Makefile.depend b/lib/libalias/libalias/Makefile.depend index e54ec8c9f8a4..16b5e42e296a 100644 --- a/lib/libalias/libalias/Makefile.depend +++ b/lib/libalias/libalias/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libalias/modules/cuseeme/Makefile.depend b/lib/libalias/modules/cuseeme/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libalias/modules/cuseeme/Makefile.depend +++ b/lib/libalias/modules/cuseeme/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libalias/modules/dummy/Makefile.depend b/lib/libalias/modules/dummy/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libalias/modules/dummy/Makefile.depend +++ b/lib/libalias/modules/dummy/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libalias/modules/ftp/Makefile.depend b/lib/libalias/modules/ftp/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libalias/modules/ftp/Makefile.depend +++ b/lib/libalias/modules/ftp/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libalias/modules/irc/Makefile.depend b/lib/libalias/modules/irc/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libalias/modules/irc/Makefile.depend +++ b/lib/libalias/modules/irc/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libalias/modules/nbt/Makefile.depend b/lib/libalias/modules/nbt/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libalias/modules/nbt/Makefile.depend +++ b/lib/libalias/modules/nbt/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libalias/modules/pptp/Makefile.depend b/lib/libalias/modules/pptp/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libalias/modules/pptp/Makefile.depend +++ b/lib/libalias/modules/pptp/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libalias/modules/skinny/Makefile.depend b/lib/libalias/modules/skinny/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libalias/modules/skinny/Makefile.depend +++ b/lib/libalias/modules/skinny/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libalias/modules/smedia/Makefile.depend b/lib/libalias/modules/smedia/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libalias/modules/smedia/Makefile.depend +++ b/lib/libalias/modules/smedia/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libarchive/Makefile.depend b/lib/libarchive/Makefile.depend index e248139c3a0e..ad46344b5bd5 100644 --- a/lib/libarchive/Makefile.depend +++ b/lib/libarchive/Makefile.depend @@ -5,8 +5,16 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libbz2 \ + lib/libc \ + lib/libexpat \ + lib/liblzma \ + lib/libz \ + secure/lib/libcrypto \ .include diff --git a/lib/libauditd/Makefile.depend b/lib/libauditd/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libauditd/Makefile.depend +++ b/lib/libauditd/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libbegemot/Makefile.depend b/lib/libbegemot/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libbegemot/Makefile.depend +++ b/lib/libbegemot/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libblocksruntime/Makefile.depend b/lib/libblocksruntime/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libblocksruntime/Makefile.depend +++ b/lib/libblocksruntime/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libbluetooth/Makefile.depend b/lib/libbluetooth/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libbluetooth/Makefile.depend +++ b/lib/libbluetooth/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libbsm/Makefile.depend b/lib/libbsm/Makefile.depend index e54ec8c9f8a4..16b5e42e296a 100644 --- a/lib/libbsm/Makefile.depend +++ b/lib/libbsm/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libbsnmp/libbsnmp/Makefile.depend b/lib/libbsnmp/libbsnmp/Makefile.depend index e248139c3a0e..1ae71d98e8f9 100644 --- a/lib/libbsnmp/libbsnmp/Makefile.depend +++ b/lib/libbsnmp/libbsnmp/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/lib/libbz2/Makefile.depend b/lib/libbz2/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libbz2/Makefile.depend +++ b/lib/libbz2/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libc/Makefile.depend b/lib/libc/Makefile.depend index 080d7af02a6e..4aedcc77448e 100644 --- a/lib/libc/Makefile.depend +++ b/lib/libc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/rpc \ include/rpcsvc \ + lib/${CSU_DIR} \ .include diff --git a/lib/libcalendar/Makefile.depend b/lib/libcalendar/Makefile.depend index ff699f730be6..ac1b1319c7ef 100644 --- a/lib/libcalendar/Makefile.depend +++ b/lib/libcalendar/Makefile.depend @@ -5,7 +5,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libcam/Makefile.depend b/lib/libcam/Makefile.depend index e248139c3a0e..887c9bdcd4fd 100644 --- a/lib/libcam/Makefile.depend +++ b/lib/libcam/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libsbuf \ .include diff --git a/lib/libcom_err/Makefile.depend b/lib/libcom_err/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libcom_err/Makefile.depend +++ b/lib/libcom_err/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libdevinfo/Makefile.depend b/lib/libdevinfo/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libdevinfo/Makefile.depend +++ b/lib/libdevinfo/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libdevstat/Makefile.depend b/lib/libdevstat/Makefile.depend index e248139c3a0e..553674c09429 100644 --- a/lib/libdevstat/Makefile.depend +++ b/lib/libdevstat/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libkvm \ .include diff --git a/lib/libdwarf/Makefile.depend b/lib/libdwarf/Makefile.depend index e248139c3a0e..dc069b654cc3 100644 --- a/lib/libdwarf/Makefile.depend +++ b/lib/libdwarf/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libelf \ .include diff --git a/lib/libedit/Makefile.depend b/lib/libedit/Makefile.depend index c578f2ddb27b..3a5905dd12b0 100644 --- a/lib/libedit/Makefile.depend +++ b/lib/libedit/Makefile.depend @@ -5,8 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ .include diff --git a/lib/libelf/Makefile.depend b/lib/libelf/Makefile.depend index a2d3144f0627..5fbb3274231f 100644 --- a/lib/libelf/Makefile.depend +++ b/lib/libelf/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libexpat/Makefile.depend b/lib/libexpat/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libexpat/Makefile.depend +++ b/lib/libexpat/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libfetch/Makefile.depend b/lib/libfetch/Makefile.depend index 145c1330150a..67b015f3651e 100644 --- a/lib/libfetch/Makefile.depend +++ b/lib/libfetch/Makefile.depend @@ -5,8 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ + secure/lib/libssl \ .include diff --git a/lib/libgeom/Makefile.depend b/lib/libgeom/Makefile.depend index 5c540956a3ea..0c4bf22366ef 100644 --- a/lib/libgeom/Makefile.depend +++ b/lib/libgeom/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libexpat \ + lib/libsbuf \ .include diff --git a/lib/libgpib/Makefile.depend b/lib/libgpib/Makefile.depend index ff699f730be6..ac1b1319c7ef 100644 --- a/lib/libgpib/Makefile.depend +++ b/lib/libgpib/Makefile.depend @@ -5,7 +5,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libgssapi/Makefile.depend b/lib/libgssapi/Makefile.depend index 11612bae582c..55d781514a9e 100644 --- a/lib/libgssapi/Makefile.depend +++ b/lib/libgssapi/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/gssapi \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libipsec/Makefile.depend b/lib/libipsec/Makefile.depend index bced0efef752..d946c74ea757 100644 --- a/lib/libipsec/Makefile.depend +++ b/lib/libipsec/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libipx/Makefile.depend b/lib/libipx/Makefile.depend index e54ec8c9f8a4..16b5e42e296a 100644 --- a/lib/libipx/Makefile.depend +++ b/lib/libipx/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libjail/Makefile.depend b/lib/libjail/Makefile.depend index e54ec8c9f8a4..16b5e42e296a 100644 --- a/lib/libjail/Makefile.depend +++ b/lib/libjail/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libkiconv/Makefile.depend b/lib/libkiconv/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libkiconv/Makefile.depend +++ b/lib/libkiconv/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/liblzma/Makefile.depend b/lib/liblzma/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/liblzma/Makefile.depend +++ b/lib/liblzma/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libmagic/Makefile.depend b/lib/libmagic/Makefile.depend index e248139c3a0e..1e192bde3a22 100644 --- a/lib/libmagic/Makefile.depend +++ b/lib/libmagic/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libz \ .include diff --git a/lib/libmandoc/Makefile.depend b/lib/libmandoc/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/lib/libmandoc/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libmd/Makefile.depend b/lib/libmd/Makefile.depend index d342b5c8940a..f157012f0dbb 100644 --- a/lib/libmd/Makefile.depend +++ b/lib/libmd/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libmemstat/Makefile.depend b/lib/libmemstat/Makefile.depend index 4db4c885487b..553674c09429 100644 --- a/lib/libmemstat/Makefile.depend +++ b/lib/libmemstat/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libkvm \ diff --git a/lib/libmilter/Makefile.depend b/lib/libmilter/Makefile.depend index be77ccf5c3db..9a23d64e0d03 100644 --- a/lib/libmilter/Makefile.depend +++ b/lib/libmilter/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libutil \ diff --git a/lib/libmp/Makefile.depend b/lib/libmp/Makefile.depend index e248139c3a0e..1ae71d98e8f9 100644 --- a/lib/libmp/Makefile.depend +++ b/lib/libmp/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/lib/libnetgraph/Makefile.depend b/lib/libnetgraph/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libnetgraph/Makefile.depend +++ b/lib/libnetgraph/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libngatm/Makefile.depend b/lib/libngatm/Makefile.depend index e54ec8c9f8a4..16b5e42e296a 100644 --- a/lib/libngatm/Makefile.depend +++ b/lib/libngatm/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libopie/Makefile.depend b/lib/libopie/Makefile.depend index 22f59e0fe726..f7894b5169ae 100644 --- a/lib/libopie/Makefile.depend +++ b/lib/libopie/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libmd \ diff --git a/lib/libpam/libpam/Makefile.depend b/lib/libpam/libpam/Makefile.depend index 5d23c5ec841f..743c307c596e 100644 --- a/lib/libpam/libpam/Makefile.depend +++ b/lib/libpam/libpam/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libpam/modules/pam_chroot \ lib/libpam/modules/pam_deny \ lib/libpam/modules/pam_echo \ diff --git a/lib/libpam/modules/pam_chroot/Makefile.depend b/lib/libpam/modules/pam_chroot/Makefile.depend index e248139c3a0e..d6d3563e0fbc 100644 --- a/lib/libpam/modules/pam_chroot/Makefile.depend +++ b/lib/libpam/modules/pam_chroot/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_deny/Makefile.depend b/lib/libpam/modules/pam_deny/Makefile.depend index ff699f730be6..28fb49b7fb5c 100644 --- a/lib/libpam/modules/pam_deny/Makefile.depend +++ b/lib/libpam/modules/pam_deny/Makefile.depend @@ -5,7 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_echo/Makefile.depend b/lib/libpam/modules/pam_echo/Makefile.depend index e248139c3a0e..d6d3563e0fbc 100644 --- a/lib/libpam/modules/pam_echo/Makefile.depend +++ b/lib/libpam/modules/pam_echo/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_exec/Makefile.depend b/lib/libpam/modules/pam_exec/Makefile.depend index e248139c3a0e..d6d3563e0fbc 100644 --- a/lib/libpam/modules/pam_exec/Makefile.depend +++ b/lib/libpam/modules/pam_exec/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_ftpusers/Makefile.depend b/lib/libpam/modules/pam_ftpusers/Makefile.depend index e248139c3a0e..d6d3563e0fbc 100644 --- a/lib/libpam/modules/pam_ftpusers/Makefile.depend +++ b/lib/libpam/modules/pam_ftpusers/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_group/Makefile.depend b/lib/libpam/modules/pam_group/Makefile.depend index e248139c3a0e..d6d3563e0fbc 100644 --- a/lib/libpam/modules/pam_group/Makefile.depend +++ b/lib/libpam/modules/pam_group/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_guest/Makefile.depend b/lib/libpam/modules/pam_guest/Makefile.depend index e248139c3a0e..d6d3563e0fbc 100644 --- a/lib/libpam/modules/pam_guest/Makefile.depend +++ b/lib/libpam/modules/pam_guest/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_krb5/Makefile.depend b/lib/libpam/modules/pam_krb5/Makefile.depend index eb4d07598a43..b8a9017607c9 100644 --- a/lib/libpam/modules/pam_krb5/Makefile.depend +++ b/lib/libpam/modules/pam_krb5/Makefile.depend @@ -5,11 +5,19 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ lib/libcom_err \ + lib/libcrypt \ + lib/libpam/libpam \ + secure/lib/libcrypto \ .include diff --git a/lib/libpam/modules/pam_ksu/Makefile.depend b/lib/libpam/modules/pam_ksu/Makefile.depend index a35745abe4cd..b8a9017607c9 100644 --- a/lib/libpam/modules/pam_ksu/Makefile.depend +++ b/lib/libpam/modules/pam_ksu/Makefile.depend @@ -5,10 +5,19 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libpam/libpam \ + secure/lib/libcrypto \ .include diff --git a/lib/libpam/modules/pam_lastlog/Makefile.depend b/lib/libpam/modules/pam_lastlog/Makefile.depend index e248139c3a0e..d6d3563e0fbc 100644 --- a/lib/libpam/modules/pam_lastlog/Makefile.depend +++ b/lib/libpam/modules/pam_lastlog/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_login_access/Makefile.depend b/lib/libpam/modules/pam_login_access/Makefile.depend index e248139c3a0e..d6d3563e0fbc 100644 --- a/lib/libpam/modules/pam_login_access/Makefile.depend +++ b/lib/libpam/modules/pam_login_access/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_nologin/Makefile.depend b/lib/libpam/modules/pam_nologin/Makefile.depend index 4046f0e610b3..641b39110c2c 100644 --- a/lib/libpam/modules/pam_nologin/Makefile.depend +++ b/lib/libpam/modules/pam_nologin/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ lib/libutil \ diff --git a/lib/libpam/modules/pam_opie/Makefile.depend b/lib/libpam/modules/pam_opie/Makefile.depend index e248139c3a0e..3767c199333f 100644 --- a/lib/libpam/modules/pam_opie/Makefile.depend +++ b/lib/libpam/modules/pam_opie/Makefile.depend @@ -5,8 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libopie \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_opieaccess/Makefile.depend b/lib/libpam/modules/pam_opieaccess/Makefile.depend index ff699f730be6..42afd9e586f4 100644 --- a/lib/libpam/modules/pam_opieaccess/Makefile.depend +++ b/lib/libpam/modules/pam_opieaccess/Makefile.depend @@ -5,7 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libopie \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_passwdqc/Makefile.depend b/lib/libpam/modules/pam_passwdqc/Makefile.depend index e248139c3a0e..d2abaae47b6a 100644 --- a/lib/libpam/modules/pam_passwdqc/Makefile.depend +++ b/lib/libpam/modules/pam_passwdqc/Makefile.depend @@ -5,8 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_permit/Makefile.depend b/lib/libpam/modules/pam_permit/Makefile.depend index ff699f730be6..28fb49b7fb5c 100644 --- a/lib/libpam/modules/pam_permit/Makefile.depend +++ b/lib/libpam/modules/pam_permit/Makefile.depend @@ -5,7 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_radius/Makefile.depend b/lib/libpam/modules/pam_radius/Makefile.depend index e248139c3a0e..fca7c7a5c15d 100644 --- a/lib/libpam/modules/pam_radius/Makefile.depend +++ b/lib/libpam/modules/pam_radius/Makefile.depend @@ -5,8 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ + lib/libradius \ .include diff --git a/lib/libpam/modules/pam_rhosts/Makefile.depend b/lib/libpam/modules/pam_rhosts/Makefile.depend index e248139c3a0e..d6d3563e0fbc 100644 --- a/lib/libpam/modules/pam_rhosts/Makefile.depend +++ b/lib/libpam/modules/pam_rhosts/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_rootok/Makefile.depend b/lib/libpam/modules/pam_rootok/Makefile.depend index ff699f730be6..28fb49b7fb5c 100644 --- a/lib/libpam/modules/pam_rootok/Makefile.depend +++ b/lib/libpam/modules/pam_rootok/Makefile.depend @@ -5,7 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_securetty/Makefile.depend b/lib/libpam/modules/pam_securetty/Makefile.depend index e248139c3a0e..d6d3563e0fbc 100644 --- a/lib/libpam/modules/pam_securetty/Makefile.depend +++ b/lib/libpam/modules/pam_securetty/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_self/Makefile.depend b/lib/libpam/modules/pam_self/Makefile.depend index ff699f730be6..28fb49b7fb5c 100644 --- a/lib/libpam/modules/pam_self/Makefile.depend +++ b/lib/libpam/modules/pam_self/Makefile.depend @@ -5,7 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ .include diff --git a/lib/libpam/modules/pam_ssh/Makefile.depend b/lib/libpam/modules/pam_ssh/Makefile.depend index cc2d1b6d8ff8..c4e939c43c97 100644 --- a/lib/libpam/modules/pam_ssh/Makefile.depend +++ b/lib/libpam/modules/pam_ssh/Makefile.depend @@ -5,10 +5,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libpam/libpam \ lib/libutil \ + secure/lib/libcrypto \ + secure/lib/libssh \ .include diff --git a/lib/libpam/modules/pam_tacplus/Makefile.depend b/lib/libpam/modules/pam_tacplus/Makefile.depend index e248139c3a0e..65ba8d917bf7 100644 --- a/lib/libpam/modules/pam_tacplus/Makefile.depend +++ b/lib/libpam/modules/pam_tacplus/Makefile.depend @@ -5,8 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libpam/libpam \ + lib/libtacplus \ .include diff --git a/lib/libpam/modules/pam_unix/Makefile.depend b/lib/libpam/modules/pam_unix/Makefile.depend index cc2d1b6d8ff8..1b5765a3fae9 100644 --- a/lib/libpam/modules/pam_unix/Makefile.depend +++ b/lib/libpam/modules/pam_unix/Makefile.depend @@ -5,10 +5,16 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcrypt \ + lib/libpam/libpam \ lib/libutil \ + lib/libypclnt \ .include diff --git a/lib/libpcap/Makefile.depend b/lib/libpcap/Makefile.depend index 5d469eba72fb..527dd363d0fe 100644 --- a/lib/libpcap/Makefile.depend +++ b/lib/libpcap/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libpmc/Makefile.depend b/lib/libpmc/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libpmc/Makefile.depend +++ b/lib/libpmc/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libproc/Makefile.depend b/lib/libproc/Makefile.depend index 29fda55c252f..08582037ec85 100644 --- a/lib/libproc/Makefile.depend +++ b/lib/libproc/Makefile.depend @@ -5,6 +5,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libelf \ + lib/libutil \ .include diff --git a/lib/libprocstat/Makefile.depend b/lib/libprocstat/Makefile.depend index 4a51c129b94f..ef3ea09e45d3 100644 --- a/lib/libprocstat/Makefile.depend +++ b/lib/libprocstat/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libkvm \ lib/libprocstat/zfs \ lib/libutil \ diff --git a/lib/libradius/Makefile.depend b/lib/libradius/Makefile.depend index e54ec8c9f8a4..b72ea114ecbe 100644 --- a/lib/libradius/Makefile.depend +++ b/lib/libradius/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/lib/librpcsec_gss/Makefile.depend b/lib/librpcsec_gss/Makefile.depend index 5324dbcbab53..feba7752520e 100644 --- a/lib/librpcsec_gss/Makefile.depend +++ b/lib/librpcsec_gss/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/rpc \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libgssapi \ .include diff --git a/lib/librpcsvc/Makefile.depend b/lib/librpcsvc/Makefile.depend index c753690ede63..b740e28d897b 100644 --- a/lib/librpcsvc/Makefile.depend +++ b/lib/librpcsvc/Makefile.depend @@ -5,10 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/rpc \ include/rpcsvc \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/librt/Makefile.depend b/lib/librt/Makefile.depend index e248139c3a0e..a2742684c435 100644 --- a/lib/librt/Makefile.depend +++ b/lib/librt/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libthr \ .include diff --git a/lib/librtld_db/Makefile.depend b/lib/librtld_db/Makefile.depend index 29fda55c252f..3e7a19e75409 100644 --- a/lib/librtld_db/Makefile.depend +++ b/lib/librtld_db/Makefile.depend @@ -5,6 +5,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libelf \ + lib/libproc \ + lib/libutil \ .include diff --git a/lib/libsbuf/Makefile.depend b/lib/libsbuf/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libsbuf/Makefile.depend +++ b/lib/libsbuf/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libsdp/Makefile.depend b/lib/libsdp/Makefile.depend index 47939e0fabde..ff4e7a5e55bd 100644 --- a/lib/libsdp/Makefile.depend +++ b/lib/libsdp/Makefile.depend @@ -5,10 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbluetooth \ + lib/libc \ .include diff --git a/lib/libstand/Makefile.depend b/lib/libstand/Makefile.depend index cac12de3e78f..81435c1252ad 100644 --- a/lib/libstand/Makefile.depend +++ b/lib/libstand/Makefile.depend @@ -52,7 +52,9 @@ _randtable.o: libstand_bzlib_private.h _randtable.po: _randtable.c _randtable.po: libstand_bzlib_private.h _zutil.o: _zutil.c +_zutil.o: libstand_gzguts.h _zutil.o: libstand_zutil.h _zutil.po: _zutil.c +_zutil.po: libstand_gzguts.h _zutil.po: libstand_zutil.h .endif diff --git a/lib/libstdbuf/Makefile.depend b/lib/libstdbuf/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libstdbuf/Makefile.depend +++ b/lib/libstdbuf/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libstdthreads/Makefile.depend b/lib/libstdthreads/Makefile.depend index e248139c3a0e..a2742684c435 100644 --- a/lib/libstdthreads/Makefile.depend +++ b/lib/libstdthreads/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libthr \ .include diff --git a/lib/libtacplus/Makefile.depend b/lib/libtacplus/Makefile.depend index 22f59e0fe726..f7894b5169ae 100644 --- a/lib/libtacplus/Makefile.depend +++ b/lib/libtacplus/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libmd \ diff --git a/lib/libtelnet/Makefile.depend b/lib/libtelnet/Makefile.depend index 9dc7971fb7da..82ba0486dee1 100644 --- a/lib/libtelnet/Makefile.depend +++ b/lib/libtelnet/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ kerberos5/lib/libkrb5 \ lib/libmp \ lib/libpam/libpam \ + secure/lib/libcrypto \ .include diff --git a/lib/libthr/Makefile.depend b/lib/libthr/Makefile.depend index ff699f730be6..ac1b1319c7ef 100644 --- a/lib/libthr/Makefile.depend +++ b/lib/libthr/Makefile.depend @@ -5,7 +5,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libthread_db/Makefile.depend b/lib/libthread_db/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libthread_db/Makefile.depend +++ b/lib/libthread_db/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libufs/Makefile.depend b/lib/libufs/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libufs/Makefile.depend +++ b/lib/libufs/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libugidfw/Makefile.depend b/lib/libugidfw/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libugidfw/Makefile.depend +++ b/lib/libugidfw/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libulog/Makefile.depend b/lib/libulog/Makefile.depend index 46a6d008497f..7520d5dc8b42 100644 --- a/lib/libulog/Makefile.depend +++ b/lib/libulog/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libmd \ diff --git a/lib/libusb/Makefile.depend b/lib/libusb/Makefile.depend index e248139c3a0e..a2742684c435 100644 --- a/lib/libusb/Makefile.depend +++ b/lib/libusb/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libthr \ .include diff --git a/lib/libusbhid/Makefile.depend b/lib/libusbhid/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libusbhid/Makefile.depend +++ b/lib/libusbhid/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libutil/Makefile.depend b/lib/libutil/Makefile.depend index e54ec8c9f8a4..16b5e42e296a 100644 --- a/lib/libutil/Makefile.depend +++ b/lib/libutil/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libvgl/Makefile.depend b/lib/libvgl/Makefile.depend index 29fda55c252f..a83954553d0e 100644 --- a/lib/libvgl/Makefile.depend +++ b/lib/libvgl/Makefile.depend @@ -5,6 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libwrap/Makefile.depend b/lib/libwrap/Makefile.depend index e54ec8c9f8a4..16b5e42e296a 100644 --- a/lib/libwrap/Makefile.depend +++ b/lib/libwrap/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libypclnt/Makefile.depend b/lib/libypclnt/Makefile.depend index 0f7986f6ea50..689fa4739f09 100644 --- a/lib/libypclnt/Makefile.depend +++ b/lib/libypclnt/Makefile.depend @@ -5,10 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/rpc \ include/rpcsvc \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/libz/Makefile.depend b/lib/libz/Makefile.depend index e248139c3a0e..a83954553d0e 100644 --- a/lib/libz/Makefile.depend +++ b/lib/libz/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/ncurses/form/Makefile.depend b/lib/ncurses/form/Makefile.depend index 2ca7d7ac721b..c385fd153f14 100644 --- a/lib/ncurses/form/Makefile.depend +++ b/lib/ncurses/form/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/ncurses/ncurses \ diff --git a/lib/ncurses/formw/Makefile.depend b/lib/ncurses/formw/Makefile.depend index f21c8a284641..2b7d64428353 100644 --- a/lib/ncurses/formw/Makefile.depend +++ b/lib/ncurses/formw/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/ncurses/ncursesw \ diff --git a/lib/ncurses/menu/Makefile.depend b/lib/ncurses/menu/Makefile.depend index b4dee6d44fa8..3659b8cba710 100644 --- a/lib/ncurses/menu/Makefile.depend +++ b/lib/ncurses/menu/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/ncurses/ncurses \ diff --git a/lib/ncurses/menuw/Makefile.depend b/lib/ncurses/menuw/Makefile.depend index 023241d4948c..95d37f9cd84a 100644 --- a/lib/ncurses/menuw/Makefile.depend +++ b/lib/ncurses/menuw/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/ncurses/ncursesw \ diff --git a/lib/ncurses/ncurses/Makefile.depend b/lib/ncurses/ncurses/Makefile.depend index 6cc2521fa3f9..ea66f0024d39 100644 --- a/lib/ncurses/ncurses/Makefile.depend +++ b/lib/ncurses/ncurses/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/ncurses/ncursesw/Makefile.depend b/lib/ncurses/ncursesw/Makefile.depend index 55371bd3617a..8a0d422b1838 100644 --- a/lib/ncurses/ncursesw/Makefile.depend +++ b/lib/ncurses/ncursesw/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ .include diff --git a/lib/ncurses/panel/Makefile.depend b/lib/ncurses/panel/Makefile.depend index 3f1939ef3494..16a470db5308 100644 --- a/lib/ncurses/panel/Makefile.depend +++ b/lib/ncurses/panel/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/ncurses/ncurses \ diff --git a/lib/ncurses/panelw/Makefile.depend b/lib/ncurses/panelw/Makefile.depend index 18cd49bb5ad0..58c34072e498 100644 --- a/lib/ncurses/panelw/Makefile.depend +++ b/lib/ncurses/panelw/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/ncurses/ncursesw \ diff --git a/libexec/atf/atf-check/Makefile.depend b/libexec/atf/atf-check/Makefile.depend new file mode 100644 index 000000000000..bb3a5445d647 --- /dev/null +++ b/libexec/atf/atf-check/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/atf/libatf-c \ + lib/atf/libatf-c++ \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/ftpd/Makefile.depend b/libexec/ftpd/Makefile.depend index 2a9801df084b..082d01a7e26b 100644 --- a/libexec/ftpd/Makefile.depend +++ b/libexec/ftpd/Makefile.depend @@ -15,7 +15,6 @@ DIRDEPS = \ lib/libmd \ lib/libopie \ lib/libpam/libpam \ - lib/libtelnet \ lib/libutil \ lib/msun \ diff --git a/rescue/librescue/Makefile.depend b/rescue/librescue/Makefile.depend new file mode 100644 index 000000000000..c51d419a499a --- /dev/null +++ b/rescue/librescue/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/arpa \ + include/rpc \ + include/rpcsvc \ + include/xlocale \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/devd/Makefile.depend b/sbin/devd/Makefile.depend index 7ffa1cc1c735..4d6909d7f36f 100644 --- a/sbin/devd/Makefile.depend +++ b/sbin/devd/Makefile.depend @@ -6,6 +6,7 @@ DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/sbin/geom/class/cache/Makefile.depend b/sbin/geom/class/cache/Makefile.depend index 42e09bed6146..25f093b1c085 100644 --- a/sbin/geom/class/cache/Makefile.depend +++ b/sbin/geom/class/cache/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ diff --git a/sbin/geom/class/concat/Makefile.depend b/sbin/geom/class/concat/Makefile.depend index 42e09bed6146..25f093b1c085 100644 --- a/sbin/geom/class/concat/Makefile.depend +++ b/sbin/geom/class/concat/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ diff --git a/sbin/geom/class/eli/Makefile.depend b/sbin/geom/class/eli/Makefile.depend index 6efdbbb351d0..1c2fa6b9379b 100644 --- a/sbin/geom/class/eli/Makefile.depend +++ b/sbin/geom/class/eli/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ + lib/libmd \ secure/lib/libcrypto \ diff --git a/sbin/geom/class/journal/Makefile.depend b/sbin/geom/class/journal/Makefile.depend index 880734b3db57..c6c70bfec51c 100644 --- a/sbin/geom/class/journal/Makefile.depend +++ b/sbin/geom/class/journal/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ + lib/libmd \ lib/libufs \ diff --git a/sbin/geom/class/label/Makefile.depend b/sbin/geom/class/label/Makefile.depend index 42e09bed6146..25f093b1c085 100644 --- a/sbin/geom/class/label/Makefile.depend +++ b/sbin/geom/class/label/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ diff --git a/sbin/geom/class/mirror/Makefile.depend b/sbin/geom/class/mirror/Makefile.depend index 42e09bed6146..047d873eb268 100644 --- a/sbin/geom/class/mirror/Makefile.depend +++ b/sbin/geom/class/mirror/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ + lib/libmd \ .include diff --git a/sbin/geom/class/mountver/Makefile.depend b/sbin/geom/class/mountver/Makefile.depend index 42e09bed6146..25f093b1c085 100644 --- a/sbin/geom/class/mountver/Makefile.depend +++ b/sbin/geom/class/mountver/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ diff --git a/sbin/geom/class/multipath/Makefile.depend b/sbin/geom/class/multipath/Makefile.depend index 42e09bed6146..25f093b1c085 100644 --- a/sbin/geom/class/multipath/Makefile.depend +++ b/sbin/geom/class/multipath/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ diff --git a/sbin/geom/class/nop/Makefile.depend b/sbin/geom/class/nop/Makefile.depend index 42e09bed6146..25f093b1c085 100644 --- a/sbin/geom/class/nop/Makefile.depend +++ b/sbin/geom/class/nop/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ diff --git a/sbin/geom/class/part/Makefile.depend b/sbin/geom/class/part/Makefile.depend index 43fbfcd65eaf..0ad6e954e78b 100644 --- a/sbin/geom/class/part/Makefile.depend +++ b/sbin/geom/class/part/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ lib/libutil \ diff --git a/sbin/geom/class/raid/Makefile.depend b/sbin/geom/class/raid/Makefile.depend index 42e09bed6146..047d873eb268 100644 --- a/sbin/geom/class/raid/Makefile.depend +++ b/sbin/geom/class/raid/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ + lib/libmd \ .include diff --git a/sbin/geom/class/raid3/Makefile.depend b/sbin/geom/class/raid3/Makefile.depend index 42e09bed6146..047d873eb268 100644 --- a/sbin/geom/class/raid3/Makefile.depend +++ b/sbin/geom/class/raid3/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ + lib/libmd \ .include diff --git a/sbin/geom/class/sched/Makefile.depend b/sbin/geom/class/sched/Makefile.depend index 42e09bed6146..25f093b1c085 100644 --- a/sbin/geom/class/sched/Makefile.depend +++ b/sbin/geom/class/sched/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ diff --git a/sbin/geom/class/shsec/Makefile.depend b/sbin/geom/class/shsec/Makefile.depend index 42e09bed6146..25f093b1c085 100644 --- a/sbin/geom/class/shsec/Makefile.depend +++ b/sbin/geom/class/shsec/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ diff --git a/sbin/geom/class/stripe/Makefile.depend b/sbin/geom/class/stripe/Makefile.depend index 42e09bed6146..25f093b1c085 100644 --- a/sbin/geom/class/stripe/Makefile.depend +++ b/sbin/geom/class/stripe/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ diff --git a/sbin/geom/class/virstor/Makefile.depend b/sbin/geom/class/virstor/Makefile.depend index 42e09bed6146..25f093b1c085 100644 --- a/sbin/geom/class/virstor/Makefile.depend +++ b/sbin/geom/class/virstor/Makefile.depend @@ -5,8 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/libgeom \ diff --git a/sbin/mount_fusefs/Makefile.depend b/sbin/mount_fusefs/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/mount_fusefs/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sbin/nvmecontrol/Makefile.depend b/sbin/nvmecontrol/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/sbin/nvmecontrol/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libcrypto/Makefile.depend b/secure/lib/libcrypto/Makefile.depend index e8b704c57166..249dc65ee7e2 100644 --- a/secure/lib/libcrypto/Makefile.depend +++ b/secure/lib/libcrypto/Makefile.depend @@ -5,11 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ lib/msun \ - secure/lib/libssl \ .include diff --git a/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend index e248139c3a0e..1ae71d98e8f9 100644 --- a/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend +++ b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/secure/lib/libcrypto/engines/libaep/Makefile.depend b/secure/lib/libcrypto/engines/libaep/Makefile.depend index e248139c3a0e..1ae71d98e8f9 100644 --- a/secure/lib/libcrypto/engines/libaep/Makefile.depend +++ b/secure/lib/libcrypto/engines/libaep/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/secure/lib/libcrypto/engines/libatalla/Makefile.depend b/secure/lib/libcrypto/engines/libatalla/Makefile.depend index e248139c3a0e..1ae71d98e8f9 100644 --- a/secure/lib/libcrypto/engines/libatalla/Makefile.depend +++ b/secure/lib/libcrypto/engines/libatalla/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/secure/lib/libcrypto/engines/libchil/Makefile.depend b/secure/lib/libcrypto/engines/libchil/Makefile.depend index e248139c3a0e..1ae71d98e8f9 100644 --- a/secure/lib/libcrypto/engines/libchil/Makefile.depend +++ b/secure/lib/libcrypto/engines/libchil/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/secure/lib/libcrypto/engines/libcswift/Makefile.depend b/secure/lib/libcrypto/engines/libcswift/Makefile.depend index e248139c3a0e..1ae71d98e8f9 100644 --- a/secure/lib/libcrypto/engines/libcswift/Makefile.depend +++ b/secure/lib/libcrypto/engines/libcswift/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/secure/lib/libcrypto/engines/libgost/Makefile.depend b/secure/lib/libcrypto/engines/libgost/Makefile.depend new file mode 100644 index 000000000000..1ae71d98e8f9 --- /dev/null +++ b/secure/lib/libcrypto/engines/libgost/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/secure/lib/libcrypto/engines/libnuron/Makefile.depend b/secure/lib/libcrypto/engines/libnuron/Makefile.depend index e248139c3a0e..1ae71d98e8f9 100644 --- a/secure/lib/libcrypto/engines/libnuron/Makefile.depend +++ b/secure/lib/libcrypto/engines/libnuron/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/secure/lib/libcrypto/engines/libsureware/Makefile.depend b/secure/lib/libcrypto/engines/libsureware/Makefile.depend index e248139c3a0e..1ae71d98e8f9 100644 --- a/secure/lib/libcrypto/engines/libsureware/Makefile.depend +++ b/secure/lib/libcrypto/engines/libsureware/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/secure/lib/libcrypto/engines/libubsec/Makefile.depend b/secure/lib/libcrypto/engines/libubsec/Makefile.depend index e248139c3a0e..1ae71d98e8f9 100644 --- a/secure/lib/libcrypto/engines/libubsec/Makefile.depend +++ b/secure/lib/libcrypto/engines/libubsec/Makefile.depend @@ -5,8 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/secure/lib/libssh/Makefile.depend b/secure/lib/libssh/Makefile.depend index 2470419853e5..3e41c000ef0c 100644 --- a/secure/lib/libssh/Makefile.depend +++ b/secure/lib/libssh/Makefile.depend @@ -5,14 +5,24 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcom_err \ + lib/libcrypt \ + lib/libgssapi \ + lib/libmd \ lib/libpam/libpam \ lib/libutil \ lib/libz \ + secure/lib/libcrypto \ .include diff --git a/secure/lib/libssl/Makefile.depend b/secure/lib/libssl/Makefile.depend index e54ec8c9f8a4..b72ea114ecbe 100644 --- a/secure/lib/libssl/Makefile.depend +++ b/secure/lib/libssl/Makefile.depend @@ -5,9 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + secure/lib/libcrypto \ .include diff --git a/share/examples/ipfilter/Makefile.depend b/share/examples/ipfilter/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/share/examples/ipfilter/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sys/boot/efi/libefi/Makefile.depend b/sys/boot/efi/libefi/Makefile.depend new file mode 100644 index 000000000000..e248139c3a0e --- /dev/null +++ b/sys/boot/efi/libefi/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sys/boot/ficl/Makefile.depend b/sys/boot/ficl/Makefile.depend index 29fda55c252f..ff32eeb23f58 100644 --- a/sys/boot/ficl/Makefile.depend +++ b/sys/boot/ficl/Makefile.depend @@ -5,10 +5,16 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + include \ + include/xlocale \ + lib/libstand \ + lib/msun \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +softcore.o: softcore.c +softcore.po: softcore.c .endif diff --git a/sys/boot/i386/boot0/Makefile.depend b/sys/boot/i386/boot0/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/sys/boot/i386/boot0/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/sys/boot/i386/boot0sio/Makefile.depend b/sys/boot/i386/boot0sio/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/sys/boot/i386/boot0sio/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/atf/atf-config/Makefile.depend b/usr.bin/atf/atf-config/Makefile.depend new file mode 100644 index 000000000000..bb3a5445d647 --- /dev/null +++ b/usr.bin/atf/atf-config/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/atf/libatf-c \ + lib/atf/libatf-c++ \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/atf/atf-report/Makefile.depend b/usr.bin/atf/atf-report/Makefile.depend new file mode 100644 index 000000000000..bb3a5445d647 --- /dev/null +++ b/usr.bin/atf/atf-report/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/atf/libatf-c \ + lib/atf/libatf-c++ \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/atf/atf-run/Makefile.depend b/usr.bin/atf/atf-run/Makefile.depend new file mode 100644 index 000000000000..bb3a5445d647 --- /dev/null +++ b/usr.bin/atf/atf-run/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/atf/libatf-c \ + lib/atf/libatf-c++ \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/atf/atf-sh/Makefile.depend b/usr.bin/atf/atf-sh/Makefile.depend new file mode 100644 index 000000000000..bb3a5445d647 --- /dev/null +++ b/usr.bin/atf/atf-sh/Makefile.depend @@ -0,0 +1,24 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/atf/libatf-c \ + lib/atf/libatf-c++ \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/atf/atf-version/Makefile.depend b/usr.bin/atf/atf-version/Makefile.depend new file mode 100644 index 000000000000..f93557d3c96d --- /dev/null +++ b/usr.bin/atf/atf-version/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/atf/libatf-c \ + lib/atf/libatf-c++ \ + lib/libc \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +atf-version.o: revision.h +atf-version.po: revision.h +.endif diff --git a/usr.bin/bmake/Makefile.depend b/usr.bin/bmake/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.bin/bmake/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/clang/clang-tblgen/Makefile.depend b/usr.bin/clang/clang-tblgen/Makefile.depend index 0d08e73f9265..9148fc2c7e55 100644 --- a/usr.bin/clang/clang-tblgen/Makefile.depend +++ b/usr.bin/clang/clang-tblgen/Makefile.depend @@ -7,6 +7,7 @@ DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/usr.bin/clang/tblgen/Makefile.depend b/usr.bin/clang/tblgen/Makefile.depend index 0d08e73f9265..9148fc2c7e55 100644 --- a/usr.bin/clang/tblgen/Makefile.depend +++ b/usr.bin/clang/tblgen/Makefile.depend @@ -7,6 +7,7 @@ DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/usr.bin/ftp/Makefile.depend b/usr.bin/ftp/Makefile.depend index 703eab35cb0d..cbd3920181ce 100644 --- a/usr.bin/ftp/Makefile.depend +++ b/usr.bin/ftp/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libedit \ - lib/libtelnet \ lib/libutil \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/kdump/Makefile.depend b/usr.bin/kdump/Makefile.depend index cf6d120fe80e..562a76a1f507 100644 --- a/usr.bin/kdump/Makefile.depend +++ b/usr.bin/kdump/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ gnu/lib/libgcc \ include \ include/arpa \ - include/rpc \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ diff --git a/usr.bin/mandoc/Makefile.depend b/usr.bin/mandoc/Makefile.depend new file mode 100644 index 000000000000..925018e2b1c4 --- /dev/null +++ b/usr.bin/mandoc/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libmandoc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/nc/Makefile.depend b/usr.bin/nc/Makefile.depend index c068132760dd..3b4bd931c28c 100644 --- a/usr.bin/nc/Makefile.depend +++ b/usr.bin/nc/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libipsec \ - lib/libtelnet \ .include diff --git a/usr.bin/sort/Makefile.depend b/usr.bin/sort/Makefile.depend index 1313c32ff69a..b6684ac83ce5 100644 --- a/usr.bin/sort/Makefile.depend +++ b/usr.bin/sort/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libmd \ - lib/libthr \ lib/msun \ diff --git a/usr.bin/ssh-copy-id/Makefile.depend b/usr.bin/ssh-copy-id/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.bin/ssh-copy-id/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/truss/Makefile.depend b/usr.bin/truss/Makefile.depend.amd64 similarity index 64% rename from usr.bin/truss/Makefile.depend rename to usr.bin/truss/Makefile.depend.amd64 index a0c788251af4..dc0f3fceda09 100644 --- a/usr.bin/truss/Makefile.depend +++ b/usr.bin/truss/Makefile.depend.amd64 @@ -8,7 +8,6 @@ DIRDEPS = \ gnu/lib/libgcc \ include \ include/arpa \ - include/rpc \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ @@ -18,10 +17,12 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -i386-fbsd.o: syscalls.h -i386-fbsd.po: syscalls.h -i386-linux.o: linux_syscalls.h -i386-linux.po: linux_syscalls.h +amd64-fbsd.o: syscalls.h +amd64-fbsd.po: syscalls.h +amd64-fbsd32.o: freebsd32_syscalls.h +amd64-fbsd32.po: freebsd32_syscalls.h +amd64-linux32.o: linux32_syscalls.h +amd64-linux32.po: linux32_syscalls.h ioctl.o: ioctl.c ioctl.po: ioctl.c .endif diff --git a/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend index 6c0e8422706d..16ad1b76fe42 100644 --- a/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend @@ -5,10 +5,15 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ + lib/libc \ usr.sbin/bsnmpd/modules \ + usr.sbin/bsnmpd/modules/snmp_mibII \ + usr.sbin/bsnmpd/modules/snmp_netgraph \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend index 639923467f6b..641377c1cafd 100644 --- a/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend @@ -5,10 +5,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ + lib/libc \ usr.sbin/bsnmpd/modules \ + usr.sbin/bsnmpd/modules/snmp_mibII \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend index ea8cdcff5518..4c2a9b4340ad 100644 --- a/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend @@ -5,15 +5,19 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ + lib/libc \ lib/libdevinfo \ lib/libgeom \ lib/libkvm \ lib/libmemstat \ lib/msun \ usr.sbin/bsnmpd/modules \ + usr.sbin/bsnmpd/modules/snmp_mibII \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend index 118a7bd2d1bb..a7e812fdf66f 100644 --- a/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend @@ -5,10 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ + lib/libc \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend index e5425f3914ce..40f18705e4ca 100644 --- a/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ + lib/libc \ lib/libnetgraph \ usr.sbin/bsnmpd/modules \ diff --git a/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend index a1ecc91be81c..4c6aa36d5d42 100644 --- a/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ + lib/libc \ usr.sbin/bsnmpd/modules \ diff --git a/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend index 5d9de802d8e0..59b4cb6a606e 100644 --- a/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ + lib/libc \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend index bf3304a0f56f..0854bd545ea3 100644 --- a/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ + lib/libc \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend index 0c0862996a04..d9d6652d8f14 100644 --- a/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ + lib/libc \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend index 3c1e8721640d..260fd586f9e6 100644 --- a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend @@ -5,9 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ + lib/libc \ usr.sbin/bsnmpd/modules \ usr.sbin/bsnmpd/modules/snmp_mibII \ diff --git a/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend index 05587d806300..3f14910b5733 100644 --- a/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend +++ b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend @@ -5,10 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ + lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ + lib/libc \ .include diff --git a/usr.sbin/dconschat/Makefile.depend b/usr.sbin/dconschat/Makefile.depend index 6e3782ccf777..e6478bb43262 100644 --- a/usr.sbin/dconschat/Makefile.depend +++ b/usr.sbin/dconschat/Makefile.depend @@ -7,11 +7,11 @@ DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ gnu/lib/libgcc \ include \ + include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ lib/libkvm \ - lib/libtelnet \ .include diff --git a/usr.sbin/etcupdate/Makefile.depend b/usr.sbin/etcupdate/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/etcupdate/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/isfctl/Makefile.depend b/usr.sbin/isfctl/Makefile.depend new file mode 100644 index 000000000000..a83954553d0e --- /dev/null +++ b/usr.sbin/isfctl/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/ntp/doc/Makefile.depend b/usr.sbin/ntp/doc/Makefile.depend new file mode 100644 index 000000000000..29fda55c252f --- /dev/null +++ b/usr.sbin/ntp/doc/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/rarpd/Makefile.depend b/usr.sbin/rarpd/Makefile.depend index 16b5e42e296a..c262920aba6b 100644 --- a/usr.sbin/rarpd/Makefile.depend +++ b/usr.sbin/rarpd/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libutil \ .include From adf23bef060b64c39a2ad999cffc1200456d07c4 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:27:46 +0000 Subject: [PATCH 009/228] If we are staging, we need to look in the right place, for the headers we want to examine. --- usr.bin/kdump/Makefile | 12 +++++++++--- usr.bin/truss/Makefile | 9 ++++++++- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/usr.bin/kdump/Makefile b/usr.bin/kdump/Makefile index f19bd16b6595..25416563ba25 100644 --- a/usr.bin/kdump/Makefile +++ b/usr.bin/kdump/Makefile @@ -22,14 +22,14 @@ CLEANFILES= ioctl.c kdump_subr.c kdump_subr.h linux_syscalls.c ioctl.c: mkioctls env MACHINE=${MACHINE} CPP="${CPP}" \ - sh ${.CURDIR}/mkioctls print ${DESTDIR}/usr/include > ${.TARGET} + sh ${.CURDIR}/mkioctls print ${DESTDIR}${INCLUDEDIR} > ${.TARGET} kdump_subr.h: mksubr - sh ${.CURDIR}/mksubr ${DESTDIR}/usr/include | \ + sh ${.CURDIR}/mksubr ${DESTDIR}${INCLUDEDIR} | \ sed -n 's/^\([a-z].*)\)$$/void \1;/p' >${.TARGET} kdump_subr.c: mksubr kdump_subr.h - sh ${.CURDIR}/mksubr ${DESTDIR}/usr/include >${.TARGET} + sh ${.CURDIR}/mksubr ${DESTDIR}${INCLUDEDIR} >${.TARGET} linux_syscalls.c: /bin/sh ${.CURDIR}/../../sys/kern/makesyscalls.sh \ @@ -38,3 +38,9 @@ linux_syscalls.c: >> linux_syscalls.c .include + +.if ${MK_STAGING} != "" +# we are interested in the files put in ${STAGE_OBJTOP}/include +DESTDIR= ${STAGE_OBJTOP} +INCLUDEDIR= /include +.endif diff --git a/usr.bin/truss/Makefile b/usr.bin/truss/Makefile index a5eff14e5d50..5fde72360746 100644 --- a/usr.bin/truss/Makefile +++ b/usr.bin/truss/Makefile @@ -24,7 +24,7 @@ syscalls.h: syscalls.master ioctl.c: ${.CURDIR}/../kdump/mkioctls env MACHINE=${MACHINE} CPP="${CPP}" \ - /bin/sh ${.CURDIR}/../kdump/mkioctls return ${DESTDIR}/usr/include > ${.TARGET} + /bin/sh ${.CURDIR}/../kdump/mkioctls return ${DESTDIR}${INCLUDEDIR} > ${.TARGET} .if ${MACHINE_CPUARCH} == "i386" SRCS+= i386-linux.c linux_syscalls.h @@ -73,3 +73,10 @@ freebsd32_syscalls.h: fbsd32-syscalls.master .endif .include + + +.if ${MK_STAGING} != "" +# we are interested in the files put in ${STAGE_OBJTOP}/include +DESTDIR= ${STAGE_OBJTOP} +INCLUDEDIR= /include +.endif From a009d2385b3e93e5ed17d0d017ae5502cd1b8920 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:29:03 +0000 Subject: [PATCH 010/228] Qualifying targets with ${.OBJDIR}/ confuses make for little reason. --- sbin/atm/atmconfig/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sbin/atm/atmconfig/Makefile b/sbin/atm/atmconfig/Makefile index 0d64fea0f4f7..b2857c972d60 100644 --- a/sbin/atm/atmconfig/Makefile +++ b/sbin/atm/atmconfig/Makefile @@ -9,7 +9,7 @@ PROG= atmconfig .ifndef RESCUE -SRCS= ${.OBJDIR}/oid.h +SRCS= oid.h .endif SRCS+= main.c diag.c natm.c .ifndef RESCUE @@ -18,7 +18,7 @@ SRCS+= atmconfig_device.c MAN= atmconfig.8 # CFLAGS+= -DPATH_HELP='".:/usr/share/doc/atm:/usr/local/share/doc/atm"' -CFLAGS+= -I${.OBJDIR} +CFLAGS+= -I. .ifndef RESCUE DPADD= ${LIBBSNMP} @@ -43,8 +43,8 @@ FILESDIR= /usr/share/doc/atm SNMP_ATM_DEF= ${.CURDIR}/../../../contrib/ngatm/snmp_atm/atm_tree.def \ ${.CURDIR}/../../../usr.sbin/bsnmpd/modules/snmp_atm/atm_freebsd.def -${.OBJDIR}/oid.h: atm_oid.list ${SNMP_ATM_DEF} +oid.h: atm_oid.list ${SNMP_ATM_DEF} cat ${SNMP_ATM_DEF} | gensnmptree -e `tail -n +2 ${.CURDIR}/atm_oid.list` \ - > ${.OBJDIR}/oid.h + > ${.TARGET} .include From 1fc3515c9be762491ef894f559af8405f41717cc Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:29:59 +0000 Subject: [PATCH 011/228] Fix .ORDER to not conflict with captured dependencies --- kerberos5/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kerberos5/Makefile.inc b/kerberos5/Makefile.inc index 51cfe34ec366..f934e2aff3c3 100644 --- a/kerberos5/Makefile.inc +++ b/kerberos5/Makefile.inc @@ -37,7 +37,7 @@ ETSRCS= \ .for ET in ${ETSRCS} .for _ET in ${ET:T:R} .if ${SRCS:M${_ET}.[ch]} != "" -.ORDER: ${_ET}.c ${_ET}.h +.ORDER: ${_ET}.h ${_ET}.c ${_ET}.c ${_ET}.h: ${ET} compile_et ${.ALLSRC} CLEANFILES+= ${_ET}.h ${_ET}.c From 5ee6a1b45facefe680719c0c14af91efd43ed869 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:30:54 +0000 Subject: [PATCH 012/228] We need headers from ${KRB5DIR}/include too --- kerberos5/lib/libheimipcc/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kerberos5/lib/libheimipcc/Makefile b/kerberos5/lib/libheimipcc/Makefile index adb8f579c536..63af7ba4172a 100644 --- a/kerberos5/lib/libheimipcc/Makefile +++ b/kerberos5/lib/libheimipcc/Makefile @@ -12,7 +12,8 @@ SRCS= \ CFLAGS+= -DPIC ${PICFLAG} CFLAGS+= -I${KRB5DIR}/lib/roken \ -I${KRB5DIR}/base \ - -I${KRB5DIR}/lib/ipc + -I${KRB5DIR}/lib/ipc \ + -I${KRB5DIR}/include .include From 5ade06afb373601cf72714260e3c0f88a4c1274d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:31:37 +0000 Subject: [PATCH 013/228] Avoid two makefiles trying to install the same headers --- lib/ncurses/ncurses/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ncurses/ncurses/Makefile b/lib/ncurses/ncurses/Makefile index bdac62218525..4f865cdf4114 100644 --- a/lib/ncurses/ncurses/Makefile +++ b/lib/ncurses/ncurses/Makefile @@ -304,6 +304,7 @@ SYMLINKS+= libncurses${LIB_SUFFIX}_p.a ${LIBDIR}/libtermlib${LIB_SUFFIX}_p.a SYMLINKS+= libncurses${LIB_SUFFIX}_p.a ${LIBDIR}/libtinfo${LIB_SUFFIX}_p.a .endif +.if ${.CURDIR:T} == "ncurses" DOCSDIR= ${SHAREDIR}/doc/ncurses DOCS= ncurses-intro.html hackguide.html @@ -311,6 +312,7 @@ DOCS= ncurses-intro.html hackguide.html .PATH: ${NCURSES_DIR}/doc/html FILESGROUPS= DOCS .endif +.endif # Generated source .ORDER: names.c codes.c From a4215031484555047aa8252998210222faceef19 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:32:19 +0000 Subject: [PATCH 014/228] include/arpa installs telnet.h --- lib/libtelnet/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/libtelnet/Makefile b/lib/libtelnet/Makefile index 1cf52a01e882..e98fd53db3d0 100644 --- a/lib/libtelnet/Makefile +++ b/lib/libtelnet/Makefile @@ -28,7 +28,4 @@ CFLAGS+= -DFORWARD -Dnet_write=telnet_net_write .endif .endif -INCS= ${TELNETDIR}/arpa/telnet.h -INCSDIR= ${INCLUDEDIR}/arpa - .include From 43d24beb7b7b3856562dab92ec63ffde9c7a6752 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:33:13 +0000 Subject: [PATCH 015/228] Avoid circular dependency with librtld_db --- lib/libproc/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/libproc/Makefile b/lib/libproc/Makefile index 4449c0642542..5b1df7432f64 100644 --- a/lib/libproc/Makefile +++ b/lib/libproc/Makefile @@ -14,6 +14,8 @@ SRCS= proc_bkpt.c \ INCS= libproc.h CFLAGS+= -I${.CURDIR} +# avoid cyclic dependency +CFLAGS+= -I${.CURDIR:H}/librtld_db .if ${MK_LIBCPLUSPLUS} != "no" LDADD+= -lcxxrt From 53cafa23cd40c5dada2918df671c4e1a358c8362 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:34:29 +0000 Subject: [PATCH 016/228] We need /backward too it seems --- gnu/lib/libstdc++/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/lib/libstdc++/Makefile b/gnu/lib/libstdc++/Makefile index 1005b5d96b54..df64a50a0fc7 100644 --- a/gnu/lib/libstdc++/Makefile +++ b/gnu/lib/libstdc++/Makefile @@ -626,5 +626,9 @@ CLEANFILES+= ${VERSION_MAP} .include +.if ${MK_STAGING} == "yes" +CXXFLAGS+= -I${STAGE_OBJTOP}${CXXINCLUDEDIR}/backward +.endif + # Filter out libc++-specific flags, and -std= flags above c++98 or gnu++98. CXXFLAGS:= ${CXXFLAGS:N-stdlib=libc++:N-std=c++[01][13x]:N-std=gnu++[01][13x]} From 6f385941d9e2482e53701d342637d2cdf0f4816a Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:35:20 +0000 Subject: [PATCH 017/228] Need CXXFLAGS_LAST and LDFLAGS_LAST --- share/mk/local.autodep.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/share/mk/local.autodep.mk b/share/mk/local.autodep.mk index 8327540ec210..a123e9bc7649 100644 --- a/share/mk/local.autodep.mk +++ b/share/mk/local.autodep.mk @@ -8,6 +8,9 @@ UPDATE_DEPENDFILE= no .endif CFLAGS+= ${CFLAGS_LAST} +CXXFLAGS+= ${CXXFLAGS_LAST} +LDFLAGS+= ${LDFLAGS_LAST} + CLEANFILES+= .depend # handy for debugging From 1d45f69b2937bc7390dc1cea8876df5d407d3bd9 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:36:19 +0000 Subject: [PATCH 018/228] Use prebuild and a barrier, to allow ensuring headers are staged before we attempt to build anything. --- share/mk/bsd.lib.mk | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index 236e12ddbcbe..adb00fb6d1ac 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -114,7 +114,12 @@ PO_FLAG=-pg ${CTFCONVERT_CMD} .if !defined(_SKIP_BUILD) -all: objwarn +all: prebuild .WAIT +prebuild: objwarn +.if !defined(.PARSEDIR) +# this is a no-op +.WAIT: +.endif .endif .include @@ -408,10 +413,13 @@ clean: .if defined(_SKIP_BUILD) stage_libs stage_files stage_as: .else -.if !empty(_LIBS) +.if !empty(_LIBS) && !defined(INTERNALLIB) stage_libs: ${_LIBS} all: stage_libs .endif +.if !empty(INCS) || !empty(INCSGROUPS) +prebuild: buildincludes +.endif .include .endif .endif From 1e5c3c2b291204d01545abe5e443363430399a6f Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:38:26 +0000 Subject: [PATCH 019/228] Need CXXFLAGS_LAST and LDFLAGS_LAST --- share/mk/local.sys.mk | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index 8b8f08550ba0..d8c4898400a5 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -140,16 +140,18 @@ STAGE_INCSDIR= ${STAGE_OBJTOP}${INCSDIR:U/include} CFLAGS_LAST+= -nostdinc .endif CFLAGS_LAST+= -isystem ${STAGE_OBJTOP}/usr/include -isystem ${STAGE_OBJTOP}/include -LDFLAGS+= -B${STAGE_LIBDIR} -L${STAGE_LIBDIR} +LDFLAGS_LAST+= -B${STAGE_LIBDIR} -L${STAGE_LIBDIR} +CXXFLAGS_LAST+= -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER:U4.2} .else # if ld suppored sysroot, this would suffice CFLAGS_LAST+= --sysroot=${STAGE_OBJTOP} -isystem ${STAGE_OBJTOP}/include .endif .endif - +.if ${USE_META:Uyes} == "yes" .include "meta.sys.mk" +.endif -# most dirs can be satisfied with one Makefile.depend ? +# most dirs can be satisfied with one Makefile.depend .undef .MAKE.DEPENDFILE .MAKE.DEPENDFILE_PREFERENCE = \ ${.MAKE.DEPENDFILE_PREFIX} \ From 72f888f181dd6498308a8a7a1102852846e1371b Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:39:00 +0000 Subject: [PATCH 020/228] Allow clean at level 0 --- share/mk/bsd.init.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/mk/bsd.init.mk b/share/mk/bsd.init.mk index f5c31a5eb88a..b8d540fd2383 100644 --- a/share/mk/bsd.init.mk +++ b/share/mk/bsd.init.mk @@ -15,7 +15,7 @@ ____: .MAIN: all .if defined(.PARSEDIR) -.if ${.MAKE.LEVEL:U1} == 0 && ${BUILD_AT_LEVEL0:Uyes:tl} == "no" +.if ${.MAKE.LEVEL:U1} == 0 && ${BUILD_AT_LEVEL0:Uyes:tl} == "no" && !make(clean*) # this tells lib.mk and prog.mk to not actually build anything _SKIP_BUILD = not building at level 0 .endif From 6427a5d492f7dedfa84ee863b709265f79450a8d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 8 Nov 2012 21:40:05 +0000 Subject: [PATCH 021/228] defined(${group}NAME) is also a trigger for special handling --- share/mk/bsd.incs.mk | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.incs.mk b/share/mk/bsd.incs.mk index 8182b30a9482..6408a73defc2 100644 --- a/share/mk/bsd.incs.mk +++ b/share/mk/bsd.incs.mk @@ -31,7 +31,7 @@ _${group}INCS= .for header in ${${group}} .if defined(${group}OWN_${header:T}) || defined(${group}GRP_${header:T}) || \ defined(${group}MODE_${header:T}) || defined(${group}DIR_${header:T}) || \ - defined(${group}NAME_${header:T}) + defined(${group}NAME_${header:T}) || defined(${group}NAME) ${group}OWN_${header:T}?= ${${group}OWN} ${group}GRP_${header:T}?= ${${group}GRP} ${group}MODE_${header:T}?= ${${group}MODE} @@ -89,13 +89,17 @@ installincludes: realinstall: installincludes .ORDER: beforeinstall installincludes -.if ${MK_STAGING} != "no" +.if ${MK_STAGING} != "no" && !defined(_SKIP_BUILD) .if !target(stage_includes) .if !empty(STAGE_SETS) buildincludes: stage_files .if !empty(STAGE_AS_SETS) buildincludes: stage_as .endif +.if !empty(INCSLINKS) +stage_files: stage_symlinks +STAGE_SYMLINKS.INCS= ${INCSLINKS:S,${INCSDIR}/,,} +.endif .endif .endif .endif From 16974e103176776e86abb6bac72619789ef2554b Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 9 Nov 2012 05:43:15 +0000 Subject: [PATCH 022/228] Add TIME_STAMP --- share/mk/local.sys.mk | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index d8c4898400a5..ff8f20badf6b 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -196,4 +196,13 @@ MAKE_PRINT_VAR_ON_ERROR+= \ OBJTOP \ ${MAKE_PRINT_VAR_ON_ERROR_XTRAS} +# these are handy +# we can use this for a cheap timestamp at the start of a target's script, +# but not at the end - since make will expand both at the same time. +TIME_STAMP_FMT = @ %s [%Y-%m-%d %T] +TIME_STAMP = ${TIME_STAMP_FMT:localtime} +# this will produce the same output but as of when date(1) is run. +TIME_STAMP_DATE = `date '+${TIME_STAMP_FMT}'` +TIME_STAMP_END?= ${TIME_STAMP_DATE} + .endif # bmake From 81d623fe156efeab87e79ac22890a86cfaca300f Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 9 Nov 2012 05:44:34 +0000 Subject: [PATCH 023/228] Add pkgs/Makefile* and pkgs/pseudo/* so folk can test drive. --- pkgs/Makefile | 165 +++++++++++++ pkgs/Makefile.inc | 53 +++++ pkgs/Makefile.xtras | 48 ++++ pkgs/pseudo/Makefile.inc | 11 + pkgs/pseudo/bin/Makefile | 3 + pkgs/pseudo/bin/Makefile.depend | 50 ++++ pkgs/pseudo/cddl/Makefile | 3 + pkgs/pseudo/cddl/Makefile.depend | 35 +++ pkgs/pseudo/clang/Makefile | 3 + pkgs/pseudo/clang/Makefile.depend | 80 +++++++ pkgs/pseudo/games/Makefile | 3 + pkgs/pseudo/games/Makefile.depend | 26 +++ pkgs/pseudo/gcc/Makefile | 3 + pkgs/pseudo/gcc/Makefile.depend | 26 +++ pkgs/pseudo/gnu/Makefile | 3 + pkgs/pseudo/gnu/Makefile.depend | 125 ++++++++++ pkgs/pseudo/include/Makefile | 3 + pkgs/pseudo/include/Makefile.depend | 18 ++ pkgs/pseudo/kerberos5/Makefile | 3 + pkgs/pseudo/kerberos5/Makefile.depend | 63 +++++ pkgs/pseudo/lib/Makefile | 3 + pkgs/pseudo/lib/Makefile.depend | 137 +++++++++++ pkgs/pseudo/libexec/Makefile | 3 + pkgs/pseudo/libexec/Makefile.depend | 43 ++++ pkgs/pseudo/misc/Makefile | 3 + pkgs/pseudo/misc/Makefile.depend | 55 +++++ pkgs/pseudo/sbin/Makefile | 3 + pkgs/pseudo/sbin/Makefile.depend | 128 +++++++++++ pkgs/pseudo/secure/Makefile | 3 + pkgs/pseudo/secure/Makefile.depend | 36 +++ pkgs/pseudo/share/Makefile | 3 + pkgs/pseudo/share/Makefile.depend | 125 ++++++++++ pkgs/pseudo/the-lot/Makefile | 3 + pkgs/pseudo/the-lot/Makefile.depend | 16 ++ pkgs/pseudo/userland/Makefile | 3 + pkgs/pseudo/userland/Makefile.depend | 28 +++ pkgs/pseudo/usr.bin/Makefile | 3 + pkgs/pseudo/usr.bin/Makefile.depend | 261 +++++++++++++++++++++ pkgs/pseudo/usr.sbin/Makefile | 3 + pkgs/pseudo/usr.sbin/Makefile.depend | 319 ++++++++++++++++++++++++++ 40 files changed, 1902 insertions(+) create mode 100644 pkgs/Makefile create mode 100644 pkgs/Makefile.inc create mode 100644 pkgs/Makefile.xtras create mode 100644 pkgs/pseudo/Makefile.inc create mode 100644 pkgs/pseudo/bin/Makefile create mode 100644 pkgs/pseudo/bin/Makefile.depend create mode 100644 pkgs/pseudo/cddl/Makefile create mode 100644 pkgs/pseudo/cddl/Makefile.depend create mode 100644 pkgs/pseudo/clang/Makefile create mode 100644 pkgs/pseudo/clang/Makefile.depend create mode 100644 pkgs/pseudo/games/Makefile create mode 100644 pkgs/pseudo/games/Makefile.depend create mode 100644 pkgs/pseudo/gcc/Makefile create mode 100644 pkgs/pseudo/gcc/Makefile.depend create mode 100644 pkgs/pseudo/gnu/Makefile create mode 100644 pkgs/pseudo/gnu/Makefile.depend create mode 100644 pkgs/pseudo/include/Makefile create mode 100644 pkgs/pseudo/include/Makefile.depend create mode 100644 pkgs/pseudo/kerberos5/Makefile create mode 100644 pkgs/pseudo/kerberos5/Makefile.depend create mode 100644 pkgs/pseudo/lib/Makefile create mode 100644 pkgs/pseudo/lib/Makefile.depend create mode 100644 pkgs/pseudo/libexec/Makefile create mode 100644 pkgs/pseudo/libexec/Makefile.depend create mode 100644 pkgs/pseudo/misc/Makefile create mode 100644 pkgs/pseudo/misc/Makefile.depend create mode 100644 pkgs/pseudo/sbin/Makefile create mode 100644 pkgs/pseudo/sbin/Makefile.depend create mode 100644 pkgs/pseudo/secure/Makefile create mode 100644 pkgs/pseudo/secure/Makefile.depend create mode 100644 pkgs/pseudo/share/Makefile create mode 100644 pkgs/pseudo/share/Makefile.depend create mode 100644 pkgs/pseudo/the-lot/Makefile create mode 100644 pkgs/pseudo/the-lot/Makefile.depend create mode 100644 pkgs/pseudo/userland/Makefile create mode 100644 pkgs/pseudo/userland/Makefile.depend create mode 100644 pkgs/pseudo/usr.bin/Makefile create mode 100644 pkgs/pseudo/usr.bin/Makefile.depend create mode 100644 pkgs/pseudo/usr.sbin/Makefile create mode 100644 pkgs/pseudo/usr.sbin/Makefile.depend diff --git a/pkgs/Makefile b/pkgs/Makefile new file mode 100644 index 000000000000..c6b0ed2e5996 --- /dev/null +++ b/pkgs/Makefile @@ -0,0 +1,165 @@ +# $FreeBSD$ + +# This is the top-level makefile - derrived from the Junos version +# +# If a subdir that matches the requested target exists, we assume +# a build target and initialize DIRDEPS, dirdeps.mk does the rest. +# +# Otherwise we include Makefile.xtras and hope it knows what to do. +# + +# Copyright (c) 2010-2012, Juniper Networks, Inc. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +.if ${.MAKE.LEVEL} == 0 + +# this is our top-level makefile +.if make(pkg-*) +DIRDEPS_FILTER = Mpkgs/* +.endif + +# in theory, this is what we want +target_dirs = pkgs pkgs/pseudo +# these tweak how we do it +target_prefix = pkg- build- +DIRDEPS := ${.TARGETS:Nall:${target_prefix:@p@S,^$p,,@:ts:}:@t@${target_dirs:@d@$d/$t@}@:@d@${exists(${SRCTOP}/$d):?$d:}@} + +.if ${DIRDEPS:Mpkgs/pseudo/*} != "" +# all bets are off +PKG_MACHINE_LIST = ${ALL_MACHINE_LIST} +.endif + +.if make(check-commit) +# a special case +DIRDEPS = pkgs/pseudo/check-commit +.if defined(ALL_MACHINES) +CHECK_MACHINE_LIST = all +.undef ALL_MACHINES +.endif +SHIPDIR = no + +.else + +.if defined(ALL_MACHINES) +DIRDEPS := ${DIRDEPS:O:u:@d@${ALL_MACHINE_LIST:O:u:@m@${exists(${SRCTOP}/$d/${.MAKE.DEPENDFILE:T:R}.$m):?$d.$m:}@}@} +.undef ALL_MACHINES +PKG_MACHINE_LIST ?= ${DIRDEPS:E:O:u} +.elif defined(HOST_MACHINE) && ${MACHINE} == ${HOST_MACHINE} +# the above may be insufficient. +# some packages only support one machine which may not be ${MACHINE} +# some support multiple, in which case unless ALL_MACHINES is defined +# we only want ${MACHINE} +plain := ${DIRDEPS:@d@${exists(${SRCTOP}/$d/${.MAKE.DEPENDFILE:T:R}):?$d:}@} +.if ${plain} != ${DIRDEPS} +all_machine_list = ${ALL_MACHINE_LIST} host +qual := ${DIRDEPS:${plain:${M_ListToSkip}}:@d@${all_machine_list:O:u:@m@${exists(${SRCTOP}/$d/${.MAKE.DEPENDFILE:T:R}.$m):?$d.$m:}@}@} +DIRDEPS := ${plain} ${qual} +PKG_MACHINE_LIST ?= ${MACHINE} ${qual:E:O:u} +.endif +.else +# check that a .MAKE.DEPENDFILE exists +DIRDEPS := ${.MAKE.DEPENDFILE_PREFERENCE:T:@m@${DIRDEPS:@d@${exists(${SRCTOP}/$d/$m):?$d:}@}@:O:u} +.endif +.if !empty(PKG_MACHINE_LIST) +.if ${PKG_MACHINE_LIST:Mdepend} != "" +PKG_MACHINE_LIST = ${ALL_MACHINE_LIST} +.endif +PKG_MACHINE_LIST := ${PKG_MACHINE_LIST} +.endif +.endif + +.if !empty(build_options) +build_options := ${build_options:O:u} +.for v in ${build_options} +$v = yes +.endfor +.export ${build_options} +.endif + +.if !empty(DIRDEPS) +# This is printed as we read the makefile +# so provides a useful clue as to when we really started. +# This allows us to work out how long reading +# Makefile.depend* takes. +.if ${.MAKEFLAGS:M-V} == "" +.info ${TIME_STAMP} Start ${.TARGETS} +now_utc = ${%s:L:gmtime} +start_utc := ${now_utc} +.endif + +_begin = count-makefiles + +# by default, we clean pkgs/ which can otherwise accumulate a lot of cruft +.if ${NEED_CLEAN_PKGS:Uyes:tl} != "no" +_begin += clean-pkgs +.endif +.if defined(SHIPDIR) && ${NEED_CLEAN_SHIPDIR:Uno:tl} != "no" && exists(${SHIPDIR}) +_begin += clean-shipdir +.endif +.if ${NEED_CLEAN_ERROR_LOGS:Uyes:tl} == "yes" +_begin += clean-error-logs +.endif +.if !empty(_begin) && !make(clean*) +dirdeps: ${_begin} .WAIT +.endif + +.include "Makefile.inc" + +.include + +.for t in ${.TARGETS:Nall:Nclean*:${_begin:Uall:${M_ListToSkip}}} +$t: dirdeps +.endfor + +count-makefiles: .NOMETA + @echo "${TIME_STAMP} Makefiles read: total=${.MAKE.MAKEFILES:[#]} depend=${.MAKE.MAKEFILES:M*depend*:[#]} seconds=`expr ${now_utc} - ${start_utc}`" + +.END: _build_finish +_build_finish: .NOMETA + @echo "${TIME_STAMP} Finished ${.TARGETS}" + +.ERROR: _build_failed +_build_failed: .NOMETA + @echo "${TIME_STAMP} Failed ${.TARGETS}" + +.endif # !empty(DIRDEPS) + +clean-error-logs: .NOMETA + @test ! -d ${meta_error_log:H} || rm -f ${meta_error_log:H}/*log + +clean-pkgs: .NOMETA + @rm -rf ${ALL_MACHINE_LIST:N${MACHINE}:@m@${OBJROOT}$m/pkgs@} ${OBJROOT}${MACHINE}/pkgs/* + +clean-shipdir: .NOMETA + ${"${SHIPDIR:tl:Nno:N*\:*}":?rm -f ${SHIPDIR}/*:} + +.if !target(_DIRDEP_USE) +# we did not read dirdeps.mk above, the target may be here +.include "Makefile.xtras" +.endif + +.else +# dirdeps does it all +all: +.endif # .MAKE.LEVEL == 0 + diff --git a/pkgs/Makefile.inc b/pkgs/Makefile.inc new file mode 100644 index 000000000000..58d19c83c3ab --- /dev/null +++ b/pkgs/Makefile.inc @@ -0,0 +1,53 @@ +# $FreeBSD$ + +.if !target(__${_this}__) +__${_this}__: + +_CURDIR ?= ${.CURDIR} +_OBJDIR ?= ${.OBJDIR} + +.if ${RELDIR:Mpkgs/*} != "" || ${RELDIR} == "." + +.if ${.MAKE.LEVEL} == 0 && ${RELDIR:Mpkgs/*} != "" +.if make(bootstrap*) || !exists(${_CURDIR}/${.MAKE.DEPENDFILE:T}) +_bootstrap_dirdeps = yes +.else +# BUILD_AT_LEVEL0=no tells dirdeps.mk to use a sub-make for .CURDIR +# This is useful if we need to leverage DIRDEPS +BUILD_AT_LEVEL0 = no +# this renders the rest harmless +PKG_METHOD = no +.endif +.endif + +# The makefile in subdirs should set this to something useful +# the default should do nothing. +PKG_METHOD ?= none + +.MAIN: all + +.if ${build-*:${M_L_TARGETS}} != "" +# just build the bits, skip packaging +all: +SHIPDIR = no +.if ${RELDIR} != "." +PKG_METHOD = no +.endif +.endif + +.if ${PKG_METHOD:Mno*} != "" +all: ${PKG_METHOD} + +# set this to "no" for manual control +UPDATE_DEPENDFILE ?= yes +.endif + +.if ${UPDATE_DEPENDFILE:Uno} == "yes" +.include +.endif + +# all the clever packaging methods go here.... + +.endif # level 0 + +.endif # _this diff --git a/pkgs/Makefile.xtras b/pkgs/Makefile.xtras new file mode 100644 index 000000000000..358f5ddec537 --- /dev/null +++ b/pkgs/Makefile.xtras @@ -0,0 +1,48 @@ +# $FreeBSD$ +# +# Makefile.xtras - non-build targets + +# Resist the urge to fill this with miscellaneous junk + +# We are not building here (shouldn't be), so no meta mode. +.MAKE.MODE = normal + +_here := ${_PARSEDIR} + +.MAIN: no-default + +no-default: + @echo "ERROR: there is no supported default target."; \ + echo "Try 'mk help'" + + +.if make(show-valid-targets) +OTHER_TARGETS = \ + destroy \ + +BUILD_TARGETS != cd ${_here} && \ + find . \( -name Makefile.depend -o -name ${.MAKE.DEPENDFILE:T} \) | \ + sed 's,/Makefile.*,,;s,^./,,' | sort -u + +show-valid-targets: + @echo "Build targets for ${MACHINE}:"; echo "${BUILD_TARGETS:ts\n}" + @echo; echo "Other targets:"; echo "${OTHER_TARGETS:ts\n}" +.endif + +help: show-help +show-help: + @echo; \ + echo "You can see the targets which are valid for a given machine"; \ + echo "by running 'mk --machine show-valid-targets'"; \ + echo "For other information, read: ${HELP_DOCS:@d@${.newline}$d@}"; \ + echo + +not-valid-target: + @echo "ERROR: '${_TARGETS}' is not a valid target for ${MACHINE}." + + +.for t in ${_TARGETS:Nlove} +.if !target($t) +$t: not-valid-target show-help +.endif +.endfor diff --git a/pkgs/pseudo/Makefile.inc b/pkgs/pseudo/Makefile.inc new file mode 100644 index 000000000000..8a14c5e7f3c6 --- /dev/null +++ b/pkgs/pseudo/Makefile.inc @@ -0,0 +1,11 @@ +# $FreeBSD$ + +# we don't do anything in these dirs +# they are just for triggering building of other things + +UPDATE_DEPENDFILE= no + +all: + @echo Done! + + diff --git a/pkgs/pseudo/bin/Makefile b/pkgs/pseudo/bin/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/bin/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/bin/Makefile.depend b/pkgs/pseudo/bin/Makefile.depend new file mode 100644 index 000000000000..9c817504ff42 --- /dev/null +++ b/pkgs/pseudo/bin/Makefile.depend @@ -0,0 +1,50 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + bin/cat \ + bin/chflags \ + bin/chio \ + bin/chmod \ + bin/cp \ + bin/csh \ + bin/date \ + bin/dd \ + bin/df \ + bin/domainname \ + bin/echo \ + bin/ed \ + bin/expr \ + bin/getfacl \ + bin/hostname \ + bin/kenv \ + bin/kill \ + bin/ln \ + bin/ls \ + bin/mkdir \ + bin/mv \ + bin/pax \ + bin/pkill \ + bin/ps \ + bin/pwait \ + bin/pwd \ + bin/rcp \ + bin/realpath \ + bin/rm \ + bin/rmail \ + bin/rmdir \ + bin/setfacl \ + bin/sh \ + bin/sleep \ + bin/stty \ + bin/sync \ + bin/test \ + bin/uuidgen \ + + +.include diff --git a/pkgs/pseudo/cddl/Makefile b/pkgs/pseudo/cddl/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/cddl/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/cddl/Makefile.depend b/pkgs/pseudo/cddl/Makefile.depend new file mode 100644 index 000000000000..275084e70acd --- /dev/null +++ b/pkgs/pseudo/cddl/Makefile.depend @@ -0,0 +1,35 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + cddl/lib/drti \ + cddl/lib/libavl \ + cddl/lib/libctf \ + cddl/lib/libdtrace \ + cddl/lib/libnvpair \ + cddl/lib/libumem \ + cddl/lib/libuutil \ + cddl/lib/libzfs \ + cddl/lib/libzpool \ + cddl/sbin/zfs \ + cddl/sbin/zpool \ + cddl/usr.bin/ctfconvert \ + cddl/usr.bin/ctfdump \ + cddl/usr.bin/ctfmerge \ + cddl/usr.bin/sgsmsg \ + cddl/usr.bin/zinject \ + cddl/usr.bin/zstreamdump \ + cddl/usr.bin/ztest \ + cddl/usr.sbin/dtrace \ + cddl/usr.sbin/dtruss \ + cddl/usr.sbin/lockstat \ + cddl/usr.sbin/zdb \ + cddl/usr.sbin/zhack \ + + +.include diff --git a/pkgs/pseudo/clang/Makefile b/pkgs/pseudo/clang/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/clang/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/clang/Makefile.depend b/pkgs/pseudo/clang/Makefile.depend new file mode 100644 index 000000000000..0b47fe6604b6 --- /dev/null +++ b/pkgs/pseudo/clang/Makefile.depend @@ -0,0 +1,80 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + lib/clang/libclanganalysis \ + lib/clang/libclangarcmigrate \ + lib/clang/libclangast \ + lib/clang/libclangbasic \ + lib/clang/libclangcodegen \ + lib/clang/libclangdriver \ + lib/clang/libclangedit \ + lib/clang/libclangfrontend \ + lib/clang/libclangfrontendtool \ + lib/clang/libclanglex \ + lib/clang/libclangparse \ + lib/clang/libclangrewrite \ + lib/clang/libclangsema \ + lib/clang/libclangserialization \ + lib/clang/libclangstaticanalyzercheckers \ + lib/clang/libclangstaticanalyzercore \ + lib/clang/libclangstaticanalyzerfrontend \ + lib/clang/libllvmanalysis \ + lib/clang/libllvmarchive \ + lib/clang/libllvmasmparser \ + lib/clang/libllvmasmprinter \ + lib/clang/libllvmbitreader \ + lib/clang/libllvmbitwriter \ + lib/clang/libllvmcodegen \ + lib/clang/libllvmcore \ + lib/clang/libllvminstcombine \ + lib/clang/libllvminstrumentation \ + lib/clang/libllvmipa \ + lib/clang/libllvmipo \ + lib/clang/libllvmlinker \ + lib/clang/libllvmmc \ + lib/clang/libllvmmcparser \ + lib/clang/libllvmobject \ + lib/clang/libllvmscalaropts \ + lib/clang/libllvmselectiondag \ + lib/clang/libllvmsupport \ + lib/clang/libllvmtablegen \ + lib/clang/libllvmtarget \ + lib/clang/libllvmtransformutils \ + lib/clang/libllvmvectorize \ + lib/clang/libllvmarmasmparser \ + lib/clang/libllvmarmcodegen \ + lib/clang/libllvmarmdesc \ + lib/clang/libllvmarmdisassembler \ + lib/clang/libllvmarminfo \ + lib/clang/libllvmarminstprinter \ + lib/clang/libllvmmipsasmparser \ + lib/clang/libllvmmipscodegen \ + lib/clang/libllvmmipsdesc \ + lib/clang/libllvmmipsdisassembler \ + lib/clang/libllvmmipsinfo \ + lib/clang/libllvmmipsinstprinter \ + lib/clang/libllvmpowerpccodegen \ + lib/clang/libllvmpowerpcdesc \ + lib/clang/libllvmpowerpcinfo \ + lib/clang/libllvmpowerpcinstprinter \ + lib/clang/libllvmx86asmparser \ + lib/clang/libllvmx86codegen \ + lib/clang/libllvmx86desc \ + lib/clang/libllvmx86disassembler \ + lib/clang/libllvmx86info \ + lib/clang/libllvmx86instprinter \ + lib/clang/libllvmx86utils \ + lib/clang/include \ + share/doc/llvm/clang \ + usr.bin/clang/clang \ + usr.bin/clang/clang-tblgen \ + usr.bin/clang/tblgen \ + + +.include diff --git a/pkgs/pseudo/games/Makefile b/pkgs/pseudo/games/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/games/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/games/Makefile.depend b/pkgs/pseudo/games/Makefile.depend new file mode 100644 index 000000000000..4fbcb3d2128d --- /dev/null +++ b/pkgs/pseudo/games/Makefile.depend @@ -0,0 +1,26 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + games/bcd \ + games/caesar \ + games/factor \ + games/fortune/fortune \ + games/fortune/strfile \ + games/fortune/datfiles \ + games/fortune/unstr \ + games/grdc \ + games/morse \ + games/number \ + games/pom \ + games/ppt \ + games/primes \ + games/random \ + + +.include diff --git a/pkgs/pseudo/gcc/Makefile b/pkgs/pseudo/gcc/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/gcc/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/gcc/Makefile.depend b/pkgs/pseudo/gcc/Makefile.depend new file mode 100644 index 000000000000..4e3a43b7b9d5 --- /dev/null +++ b/pkgs/pseudo/gcc/Makefile.depend @@ -0,0 +1,26 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/usr.bin/cc/cc_tools \ + gnu/usr.bin/cc/libiberty \ + gnu/usr.bin/cc/libcpp \ + gnu/usr.bin/cc/libdecnumber \ + gnu/usr.bin/cc/cc_int \ + gnu/usr.bin/cc/cc \ + gnu/usr.bin/cc/cc1 \ + gnu/usr.bin/cc/include \ + gnu/usr.bin/cc/doc \ + gnu/usr.bin/cc/cpp \ + gnu/usr.bin/cc/cc1plus \ + gnu/usr.bin/cc/c++ \ + gnu/usr.bin/cc/c++filt \ + gnu/usr.bin/cc/gcov \ + + +.include diff --git a/pkgs/pseudo/gnu/Makefile b/pkgs/pseudo/gnu/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/gnu/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/gnu/Makefile.depend b/pkgs/pseudo/gnu/Makefile.depend new file mode 100644 index 000000000000..30011a5bf50c --- /dev/null +++ b/pkgs/pseudo/gnu/Makefile.depend @@ -0,0 +1,125 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ + gnu/lib/libgcov \ + gnu/lib/libdialog \ + gnu/lib/libgomp \ + gnu/lib/libregex/doc \ + gnu/lib/libreadline/history/doc \ + gnu/lib/libreadline/readline/doc \ + gnu/lib/libssp/libssp_nonshared \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + gnu/usr.bin/binutils/libiberty \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libopcodes \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/addr2line \ + gnu/usr.bin/binutils/ar \ + gnu/usr.bin/binutils/as \ + gnu/usr.bin/binutils/ld \ + gnu/usr.bin/binutils/nm \ + gnu/usr.bin/binutils/objcopy \ + gnu/usr.bin/binutils/objdump \ + gnu/usr.bin/binutils/ranlib \ + gnu/usr.bin/binutils/readelf \ + gnu/usr.bin/binutils/size \ + gnu/usr.bin/binutils/strings \ + gnu/usr.bin/binutils/strip \ + gnu/usr.bin/binutils/doc \ + gnu/usr.bin/cvs/lib \ + gnu/usr.bin/cvs/libdiff \ + gnu/usr.bin/cvs/cvs \ + gnu/usr.bin/cvs/contrib \ + gnu/usr.bin/cvs/cvsbug \ + gnu/usr.bin/cvs/doc \ + gnu/usr.bin/dialog \ + gnu/usr.bin/diff/doc \ + gnu/usr.bin/diff3 \ + gnu/usr.bin/gdb/doc \ + gnu/usr.bin/gdb/libgdb \ + gnu/usr.bin/gdb/gdb \ + gnu/usr.bin/gdb/gdbtui \ + gnu/usr.bin/gdb/kgdb \ + gnu/usr.bin/gdb/gdbserver \ + gnu/usr.bin/gperf/doc \ + gnu/usr.bin/grep/doc \ + gnu/usr.bin/groff/contrib/mm \ + gnu/usr.bin/groff/doc \ + gnu/usr.bin/groff/font/devX100 \ + gnu/usr.bin/groff/font/devX100-12 \ + gnu/usr.bin/groff/font/devX75 \ + gnu/usr.bin/groff/font/devX75-12 \ + gnu/usr.bin/groff/font/devascii \ + gnu/usr.bin/groff/font/devcp1047 \ + gnu/usr.bin/groff/font/devdvi \ + gnu/usr.bin/groff/font/devhtml \ + gnu/usr.bin/groff/font/devkoi8-r \ + gnu/usr.bin/groff/font/devlatin1 \ + gnu/usr.bin/groff/font/devlbp \ + gnu/usr.bin/groff/font/devlj4 \ + gnu/usr.bin/groff/font/devps \ + gnu/usr.bin/groff/font/devutf8 \ + gnu/usr.bin/groff/man \ + gnu/usr.bin/groff/src/libs/libgroff \ + gnu/usr.bin/groff/src/libs/libdriver \ + gnu/usr.bin/groff/src/libs/libbib \ + gnu/usr.bin/groff/src/devices/grodvi \ + gnu/usr.bin/groff/src/devices/grohtml \ + gnu/usr.bin/groff/src/devices/grolbp \ + gnu/usr.bin/groff/src/devices/grolj4 \ + gnu/usr.bin/groff/src/devices/grops \ + gnu/usr.bin/groff/src/devices/grotty \ + gnu/usr.bin/groff/src/preproc/eqn \ + gnu/usr.bin/groff/src/preproc/grn \ + gnu/usr.bin/groff/src/preproc/html \ + gnu/usr.bin/groff/src/preproc/pic \ + gnu/usr.bin/groff/src/preproc/refer \ + gnu/usr.bin/groff/src/preproc/soelim \ + gnu/usr.bin/groff/src/preproc/tbl \ + gnu/usr.bin/groff/src/roff/groff \ + gnu/usr.bin/groff/src/roff/grog \ + gnu/usr.bin/groff/src/roff/nroff \ + gnu/usr.bin/groff/src/roff/psroff \ + gnu/usr.bin/groff/src/roff/troff \ + gnu/usr.bin/groff/src/utils/addftinfo \ + gnu/usr.bin/groff/src/utils/afmtodit \ + gnu/usr.bin/groff/src/utils/hpftodit \ + gnu/usr.bin/groff/src/utils/indxbib \ + gnu/usr.bin/groff/src/utils/lkbib \ + gnu/usr.bin/groff/src/utils/lookbib \ + gnu/usr.bin/groff/src/utils/pfbtops \ + gnu/usr.bin/groff/src/utils/tfmtodit \ + gnu/usr.bin/groff/tmac \ + gnu/usr.bin/patch \ + gnu/usr.bin/rcs/lib \ + gnu/usr.bin/rcs/ci \ + gnu/usr.bin/rcs/co \ + gnu/usr.bin/rcs/ident \ + gnu/usr.bin/rcs/merge \ + gnu/usr.bin/rcs/rcs \ + gnu/usr.bin/rcs/rcsclean \ + gnu/usr.bin/rcs/rcsdiff \ + gnu/usr.bin/rcs/rcsmerge \ + gnu/usr.bin/rcs/rlog \ + gnu/usr.bin/rcs/rcsfreeze \ + gnu/usr.bin/sdiff \ + gnu/usr.bin/send-pr/doc \ + gnu/usr.bin/texinfo/libtxi \ + gnu/usr.bin/texinfo/makeinfo \ + gnu/usr.bin/texinfo/info \ + gnu/usr.bin/texinfo/infokey \ + gnu/usr.bin/texinfo/install-info \ + gnu/usr.bin/texinfo/texindex \ + gnu/usr.bin/texinfo/doc \ + + +.include diff --git a/pkgs/pseudo/include/Makefile b/pkgs/pseudo/include/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/include/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/include/Makefile.depend b/pkgs/pseudo/include/Makefile.depend new file mode 100644 index 000000000000..f809febf40fc --- /dev/null +++ b/pkgs/pseudo/include/Makefile.depend @@ -0,0 +1,18 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include/arpa \ + include/gssapi \ + include/protocols \ + include/rpcsvc \ + include/rpc \ + include/xlocale \ + + +.include diff --git a/pkgs/pseudo/kerberos5/Makefile b/pkgs/pseudo/kerberos5/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/kerberos5/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/kerberos5/Makefile.depend b/pkgs/pseudo/kerberos5/Makefile.depend new file mode 100644 index 000000000000..5d4e9e48e863 --- /dev/null +++ b/pkgs/pseudo/kerberos5/Makefile.depend @@ -0,0 +1,63 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + kerberos5/doc \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libgssapi_krb5 \ + kerberos5/lib/libgssapi_ntlm \ + kerberos5/lib/libgssapi_spnego \ + kerberos5/lib/libhdb \ + kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkadm5clnt \ + kerberos5/lib/libkadm5srv \ + kerberos5/lib/libkafs5 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libsl \ + kerberos5/lib/libvers \ + kerberos5/lib/libkdc \ + kerberos5/lib/libwind \ + kerberos5/lib/libheimsqlite \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libheimipcs \ + kerberos5/libexec/digest-service \ + kerberos5/libexec/ipropd-master \ + kerberos5/libexec/ipropd-slave \ + kerberos5/libexec/hprop \ + kerberos5/libexec/hpropd \ + kerberos5/libexec/kadmind \ + kerberos5/libexec/kdc \ + kerberos5/libexec/kdigest \ + kerberos5/libexec/kfd \ + kerberos5/libexec/kimpersonate \ + kerberos5/libexec/kpasswdd \ + kerberos5/libexec/kcm \ + kerberos5/tools/make-roken \ + kerberos5/tools/asn1_compile \ + kerberos5/tools/slc \ + kerberos5/usr.bin/hxtool \ + kerberos5/usr.bin/kadmin \ + kerberos5/usr.bin/kcc \ + kerberos5/usr.bin/kdestroy \ + kerberos5/usr.bin/kgetcred \ + kerberos5/usr.bin/kf \ + kerberos5/usr.bin/kinit \ + kerberos5/usr.bin/kpasswd \ + kerberos5/usr.bin/krb5-config \ + kerberos5/usr.bin/ksu \ + kerberos5/usr.bin/string2key \ + kerberos5/usr.bin/verify_krb5_conf \ + kerberos5/usr.sbin/iprop-log \ + kerberos5/usr.sbin/kstash \ + kerberos5/usr.sbin/ktutil \ + + +.include diff --git a/pkgs/pseudo/lib/Makefile b/pkgs/pseudo/lib/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/lib/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/lib/Makefile.depend b/pkgs/pseudo/lib/Makefile.depend new file mode 100644 index 000000000000..f7e0c2e44e48 --- /dev/null +++ b/pkgs/pseudo/lib/Makefile.depend @@ -0,0 +1,137 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libbsm \ + lib/libauditd \ + lib/libcompiler_rt \ + lib/libcrypt \ + lib/libelf \ + lib/libkvm \ + lib/msun \ + lib/libmd \ + lib/ncurses/ncurses \ + lib/ncurses/form \ + lib/ncurses/menu \ + lib/ncurses/panel \ + lib/ncurses/ncursesw \ + lib/ncurses/formw \ + lib/ncurses/menuw \ + lib/ncurses/panelw \ + lib/libnetgraph \ + lib/libradius \ + lib/librpcsvc \ + lib/libsbuf \ + lib/libtacplus \ + lib/libutil \ + lib/libypclnt \ + lib/libcom_err/doc \ + lib/libalias/libalias \ + lib/libalias/modules/cuseeme \ + lib/libalias/modules/dummy \ + lib/libalias/modules/ftp \ + lib/libalias/modules/irc \ + lib/libalias/modules/nbt \ + lib/libalias/modules/pptp \ + lib/libalias/modules/skinny \ + lib/libalias/modules/smedia \ + lib/libarchive \ + lib/libbegemot \ + lib/libblocksruntime \ + lib/libbluetooth \ + lib/libbsnmp/libbsnmp \ + lib/libbz2 \ + lib/libcalendar \ + lib/libcam \ + lib/libcompat \ + lib/libdevinfo \ + lib/libdevstat \ + lib/libdisk \ + lib/libdwarf \ + lib/libedit/edit/readline \ + lib/libexpat \ + lib/libfetch \ + lib/libgeom \ + lib/libgpib \ + lib/libgssapi \ + lib/librpcsec_gss \ + lib/libipsec \ + lib/libipx \ + lib/libjail \ + lib/libkiconv \ + lib/liblzma \ + lib/libmagic \ + lib/libmandoc \ + lib/libmemstat \ + lib/libmilter \ + lib/libmp \ + lib/libngatm \ + lib/libopie \ + lib/libpam/modules/pam_chroot \ + lib/libpam/modules/pam_deny \ + lib/libpam/modules/pam_echo \ + lib/libpam/modules/pam_exec \ + lib/libpam/modules/pam_ftpusers \ + lib/libpam/modules/pam_group \ + lib/libpam/modules/pam_guest \ + lib/libpam/modules/pam_krb5 \ + lib/libpam/modules/pam_ksu \ + lib/libpam/modules/pam_lastlog \ + lib/libpam/modules/pam_login_access \ + lib/libpam/modules/pam_nologin \ + lib/libpam/modules/pam_opie \ + lib/libpam/modules/pam_opieaccess \ + lib/libpam/modules/pam_passwdqc \ + lib/libpam/modules/pam_permit \ + lib/libpam/modules/pam_radius \ + lib/libpam/modules/pam_rhosts \ + lib/libpam/modules/pam_rootok \ + lib/libpam/modules/pam_securetty \ + lib/libpam/modules/pam_self \ + lib/libpam/modules/pam_ssh \ + lib/libpam/modules/pam_tacplus \ + lib/libpam/modules/pam_unix \ + lib/libpam/libpam \ + lib/libpcap \ + lib/libpmc \ + lib/libproc \ + lib/libprocstat/zfs \ + lib/librt \ + lib/librtld_db \ + lib/libsdp \ + lib/libsm \ + lib/libsmdb \ + lib/libsmutil \ + lib/libstand \ + lib/libstdbuf \ + lib/libstdthreads \ + lib/libtelnet \ + lib/libthr \ + lib/libthread_db \ + lib/libufs \ + lib/libugidfw \ + lib/libulog \ + lib/libusbhid \ + lib/libusb \ + lib/libvgl \ + lib/libwrap \ + lib/liby \ + lib/libz \ + lib/atf/libatf-c \ + lib/atf/libatf-c++ \ + lib/bind/isc \ + lib/bind/isccc \ + lib/bind/dns \ + lib/bind/isccfg \ + lib/bind/bind9 \ + lib/bind/lwres \ + + +.include diff --git a/pkgs/pseudo/libexec/Makefile b/pkgs/pseudo/libexec/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/libexec/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/libexec/Makefile.depend b/pkgs/pseudo/libexec/Makefile.depend new file mode 100644 index 000000000000..e81f621e8ae8 --- /dev/null +++ b/pkgs/pseudo/libexec/Makefile.depend @@ -0,0 +1,43 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + libexec/atf/atf-check \ + libexec/atrun \ + libexec/bootpd/bootpgw \ + libexec/bootpd/tools/bootpef \ + libexec/bootpd/tools/bootptest \ + libexec/comsat \ + libexec/fingerd \ + libexec/ftpd \ + libexec/getty \ + libexec/mail.local \ + libexec/mknetid \ + libexec/pppoed \ + libexec/rbootd \ + libexec/revnetgroup \ + libexec/rlogind \ + libexec/rpc.rquotad \ + libexec/rpc.rstatd \ + libexec/rpc.rusersd \ + libexec/rpc.rwalld \ + libexec/rpc.sprayd \ + libexec/rshd \ + libexec/rtld-elf \ + libexec/save-entropy \ + libexec/smrsh \ + libexec/talkd \ + libexec/tcpd \ + libexec/telnetd \ + libexec/tftpd \ + libexec/tftp-proxy \ + libexec/ulog-helper \ + libexec/ypxfr \ + + +.include diff --git a/pkgs/pseudo/misc/Makefile b/pkgs/pseudo/misc/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/misc/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/misc/Makefile.depend b/pkgs/pseudo/misc/Makefile.depend new file mode 100644 index 000000000000..ecb32412c0cc --- /dev/null +++ b/pkgs/pseudo/misc/Makefile.depend @@ -0,0 +1,55 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + rescue/librescue \ + rescue/rescue \ + sys/boot/ficl \ + etc/sendmail \ + + +.if ${_DEP_MACHINE:U${MACHINE}:S,amd64,i386,} == "i386" +DIRDEPS += \ + sys/boot/i386/mbr \ + sys/boot/i386/pmbr \ + sys/boot/i386/boot0 \ + sys/boot/i386/boot0sio \ + sys/boot/i386/btx/btx \ + sys/boot/i386/btx/btxldr \ + sys/boot/i386/btx/lib \ + sys/boot/i386/boot2 \ + sys/boot/i386/cdboot \ + sys/boot/i386/gptboot \ + sys/boot/i386/kgzldr \ + sys/boot/i386/libi386 \ + sys/boot/i386/libfirewire \ + sys/boot/i386/loader \ + sys/boot/i386/pxeldr \ + sys/boot/i386/zfsboot \ + sys/boot/i386/gptzfsboot \ + sys/boot/i386/zfsloader \ + +.endif + +DIRDEPS.amd64= \ + sys/boot/efi/libefi \ + sys/boot/zfs \ + sys/boot/userboot/ficl \ + sys/boot/userboot/libstand \ + sys/boot/userboot/test \ + sys/boot/userboot/userboot \ + +DIRDEPS.arm= sys/boot/fdt sys/boot/uboot +DIRDEPS.i386= sys/boot/efi/libefi sys/boot/zfs +DIRDEPS.ia64= sys/boot/efi/libefi sys/boot/zfs +DIRDEPS.powerpc= sys/boot/fdt sys/boot/ofw sys/boot/uboot +DIRDEPS.sparc64= sys/boot/ofw sys/boot/zfs + +DIRDEPS+= ${DIRDEPS.${MACHINE}:U} + +.include diff --git a/pkgs/pseudo/sbin/Makefile b/pkgs/pseudo/sbin/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/sbin/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/sbin/Makefile.depend b/pkgs/pseudo/sbin/Makefile.depend new file mode 100644 index 000000000000..fe9cff7cb693 --- /dev/null +++ b/pkgs/pseudo/sbin/Makefile.depend @@ -0,0 +1,128 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + sbin/adjkerntz \ + sbin/atacontrol \ + sbin/atm/atmconfig \ + sbin/badsect \ + sbin/camcontrol \ + sbin/ccdconfig \ + sbin/clri \ + sbin/comcontrol \ + sbin/conscontrol \ + sbin/ddb \ + sbin/devd \ + sbin/devfs \ + sbin/dhclient \ + sbin/dmesg \ + sbin/dump \ + sbin/dumpfs \ + sbin/dumpon \ + sbin/etherswitchcfg \ + sbin/ffsinfo \ + sbin/fsck \ + sbin/fsck_ffs \ + sbin/fsck_msdosfs \ + sbin/fsdb \ + sbin/fsirand \ + sbin/gbde \ + sbin/geom/core \ + sbin/geom/class/cache \ + sbin/geom/class/concat \ + sbin/geom/class/eli \ + sbin/geom/class/journal \ + sbin/geom/class/label \ + sbin/geom/class/mirror \ + sbin/geom/class/mountver \ + sbin/geom/class/multipath \ + sbin/geom/class/nop \ + sbin/geom/class/part \ + sbin/geom/class/raid \ + sbin/geom/class/raid3 \ + sbin/geom/class/sched \ + sbin/geom/class/shsec \ + sbin/geom/class/stripe \ + sbin/geom/class/virstor \ + sbin/ggate/ggatec \ + sbin/ggate/ggated \ + sbin/ggate/ggatel \ + sbin/growfs \ + sbin/gvinum \ + sbin/hastctl \ + sbin/hastd \ + sbin/ifconfig \ + sbin/init \ + sbin/ipf/libipf \ + sbin/ipf/ipf \ + sbin/ipf/ipfs \ + sbin/ipf/ipfstat \ + sbin/ipf/ipftest \ + sbin/ipf/ipmon \ + sbin/ipf/ipnat \ + sbin/ipf/ippool \ + sbin/ipf/ipresend \ + sbin/ipfw \ + sbin/iscontrol \ + sbin/kldconfig \ + sbin/kldload \ + sbin/kldstat \ + sbin/kldunload \ + sbin/ldconfig \ + sbin/md5 \ + sbin/mdconfig \ + sbin/mdmfs \ + sbin/mknod \ + sbin/mksnap_ffs \ + sbin/mount \ + sbin/mount_cd9660 \ + sbin/mount_fusefs \ + sbin/mount_msdosfs \ + sbin/mount_nfs \ + sbin/mount_nullfs \ + sbin/mount_udf \ + sbin/mount_unionfs \ + sbin/natd \ + sbin/newfs \ + sbin/newfs_msdos \ + sbin/nfsiod \ + sbin/nos-tun \ + sbin/pfctl \ + sbin/pflogd \ + sbin/ping \ + sbin/ping6 \ + sbin/quotacheck \ + sbin/rcorder \ + sbin/reboot \ + sbin/recoverdisk \ + sbin/resolvconf \ + sbin/restore \ + sbin/route \ + sbin/routed/rtquery \ + sbin/rtsol \ + sbin/savecore \ + sbin/setkey \ + sbin/shutdown \ + sbin/spppcontrol \ + sbin/swapon \ + sbin/sysctl \ + sbin/tunefs \ + sbin/umount \ + + +DIRDEPS.amd64= sbin/bsdlabel sbin/fdisk sbin/nvmecontrol +DIRDEPS.arm= sbin/bsdlabel sbin/fdisk +DIRDEPS.i386= sbin/bsdlabel sbin/fdisk sbin/nvmecontrol sbin/sconfig +DIRDEPS.ia64= sbin/mca +DIRDEPS.mips= sbin/bsdlabel sbin/fdisk +DIRDEPS.pc98= sbin/bsdlabel sbin/fdisk_pc98 sbin/sconfig +DIRDEPS.sparc64= sbin/bsdlabel sbin/sunlabel + +DIRDEPS+= ${DIRDEPS.${MACHINE}:U} + +.include diff --git a/pkgs/pseudo/secure/Makefile b/pkgs/pseudo/secure/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/secure/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/secure/Makefile.depend b/pkgs/pseudo/secure/Makefile.depend new file mode 100644 index 000000000000..062bc5e2bd55 --- /dev/null +++ b/pkgs/pseudo/secure/Makefile.depend @@ -0,0 +1,36 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + secure/lib/libcrypto/engines/lib4758cca \ + secure/lib/libcrypto/engines/libaep \ + secure/lib/libcrypto/engines/libatalla \ + secure/lib/libcrypto/engines/libchil \ + secure/lib/libcrypto/engines/libcswift \ + secure/lib/libcrypto/engines/libgost \ + secure/lib/libcrypto/engines/libnuron \ + secure/lib/libcrypto/engines/libsureware \ + secure/lib/libcrypto/engines/libubsec \ + secure/lib/libssl \ + secure/lib/libssh \ + secure/libexec/sftp-server \ + secure/libexec/ssh-keysign \ + secure/libexec/ssh-pkcs11-helper \ + secure/usr.bin/bdes \ + secure/usr.bin/openssl \ + secure/usr.bin/scp \ + secure/usr.bin/sftp \ + secure/usr.bin/ssh \ + secure/usr.bin/ssh-add \ + secure/usr.bin/ssh-agent \ + secure/usr.bin/ssh-keygen \ + secure/usr.bin/ssh-keyscan \ + secure/usr.sbin/sshd \ + + +.include diff --git a/pkgs/pseudo/share/Makefile b/pkgs/pseudo/share/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/share/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/share/Makefile.depend b/pkgs/pseudo/share/Makefile.depend new file mode 100644 index 000000000000..5f86ebd13387 --- /dev/null +++ b/pkgs/pseudo/share/Makefile.depend @@ -0,0 +1,125 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + share/info \ + share/atf \ + share/colldef \ + share/dict \ + share/doc/IPv6 \ + share/doc/atf \ + share/doc/bind9 \ + share/doc/legal/intel_ipw \ + share/doc/legal/intel_iwi \ + share/doc/legal/intel_iwn \ + share/doc/legal/intel_wpi \ + share/doc/llvm/clang \ + share/doc/papers/beyond4.3 \ + share/doc/papers/bufbio \ + share/doc/papers/contents \ + share/doc/papers/devfs \ + share/doc/papers/diskperf \ + share/doc/papers/fsinterface \ + share/doc/papers/hwpmc \ + share/doc/papers/jail \ + share/doc/papers/kernmalloc \ + share/doc/papers/kerntune \ + share/doc/papers/malloc \ + share/doc/papers/newvm \ + share/doc/papers/relengr \ + share/doc/papers/sysperf \ + share/doc/papers/timecounter \ + share/doc/psd/title \ + share/doc/psd/contents \ + share/doc/psd/01.cacm \ + share/doc/psd/02.implement \ + share/doc/psd/03.iosys \ + share/doc/psd/04.uprog \ + share/doc/psd/05.sysman \ + share/doc/psd/06.Clang \ + share/doc/psd/12.make \ + share/doc/psd/13.rcs/rcs \ + share/doc/psd/13.rcs/rcs_func \ + share/doc/psd/15.yacc \ + share/doc/psd/16.lex \ + share/doc/psd/17.m4 \ + share/doc/psd/18.gprof \ + share/doc/psd/20.ipctut \ + share/doc/psd/21.ipc \ + share/doc/psd/22.rpcgen \ + share/doc/psd/23.rpc \ + share/doc/psd/24.xdr \ + share/doc/psd/25.xdrrfc \ + share/doc/psd/26.rpcrfc \ + share/doc/psd/27.nfsrpc \ + share/doc/psd/28.cvs \ + share/doc/smm/title \ + share/doc/smm/contents \ + share/doc/smm/01.setup \ + share/doc/smm/02.config \ + share/doc/smm/03.fsck \ + share/doc/smm/04.quotas \ + share/doc/smm/05.fastfs \ + share/doc/smm/06.nfs \ + share/doc/smm/07.lpd \ + share/doc/smm/08.sendmailop \ + share/doc/smm/11.timedop \ + share/doc/smm/12.timed \ + share/doc/smm/18.net \ + share/doc/usd/title \ + share/doc/usd/contents \ + share/doc/usd/04.csh \ + share/doc/usd/05.dc \ + share/doc/usd/06.bc \ + share/doc/usd/07.mail \ + share/doc/usd/10.exref/exref \ + share/doc/usd/10.exref/summary \ + share/doc/usd/11.vitut \ + share/doc/usd/12.vi/vi \ + share/doc/usd/12.vi/viapwh \ + share/doc/usd/12.vi/summary \ + share/doc/usd/13.viref \ + share/doc/usd/18.msdiffs \ + share/doc/usd/19.memacros \ + share/doc/usd/20.meref \ + share/doc/usd/21.troff \ + share/doc/usd/22.trofftut \ + share/dtrace/toolkit \ + share/examples/atf \ + share/examples/ipfilter \ + share/examples/pf \ + share/man/man1 \ + share/man/man3 \ + share/man/man4 \ + share/man/man5 \ + share/man/man6 \ + share/man/man7 \ + share/man/man8 \ + share/man/man9 \ + share/me \ + share/misc \ + share/mk \ + share/mklocale \ + share/monetdef \ + share/msgdef \ + share/numericdef \ + share/sendmail \ + share/skel \ + share/snmp/mibs \ + share/syscons/fonts \ + share/syscons/keymaps \ + share/syscons/scrnmaps \ + share/tabset \ + share/termcap \ + share/timedef \ + share/xml/atf \ + share/xsl/atf \ + share/zoneinfo \ + + +.include diff --git a/pkgs/pseudo/the-lot/Makefile b/pkgs/pseudo/the-lot/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/the-lot/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/the-lot/Makefile.depend b/pkgs/pseudo/the-lot/Makefile.depend new file mode 100644 index 000000000000..aae54e01c3f3 --- /dev/null +++ b/pkgs/pseudo/the-lot/Makefile.depend @@ -0,0 +1,16 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + pkgs/pseudo/userland \ + + +# pkgs/pseudo/clang \ +# pkgs/pseudo/gcc \ + +.include diff --git a/pkgs/pseudo/userland/Makefile b/pkgs/pseudo/userland/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/userland/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/userland/Makefile.depend b/pkgs/pseudo/userland/Makefile.depend new file mode 100644 index 000000000000..e64a54d3dc78 --- /dev/null +++ b/pkgs/pseudo/userland/Makefile.depend @@ -0,0 +1,28 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + pkgs/pseudo/bin \ + pkgs/pseudo/cddl \ + pkgs/pseudo/games \ + pkgs/pseudo/gnu \ + pkgs/pseudo/include \ + pkgs/pseudo/kerberos5 \ + pkgs/pseudo/lib \ + pkgs/pseudo/libexec \ + pkgs/pseudo/sbin \ + pkgs/pseudo/secure \ + pkgs/pseudo/share \ + pkgs/pseudo/usr.bin \ + pkgs/pseudo/usr.sbin \ + + +# pkgs/pseudo/clang \ +# pkgs/pseudo/gcc \ + +.include diff --git a/pkgs/pseudo/usr.bin/Makefile b/pkgs/pseudo/usr.bin/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/usr.bin/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/usr.bin/Makefile.depend b/pkgs/pseudo/usr.bin/Makefile.depend new file mode 100644 index 000000000000..ee28b2d19074 --- /dev/null +++ b/pkgs/pseudo/usr.bin/Makefile.depend @@ -0,0 +1,261 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.bin/alias \ + usr.bin/apply \ + usr.bin/ar \ + usr.bin/asa \ + usr.bin/at \ + usr.bin/atf/atf-config \ + usr.bin/atf/atf-report \ + usr.bin/atf/atf-run \ + usr.bin/atf/atf-sh \ + usr.bin/atf/atf-version \ + usr.bin/atm/sscop \ + usr.bin/awk \ + usr.bin/banner \ + usr.bin/basename \ + usr.bin/bc \ + usr.bin/biff \ + usr.bin/bluetooth/bthost \ + usr.bin/bluetooth/btsockstat \ + usr.bin/bluetooth/rfcomm_sppd \ + usr.bin/bmake \ + usr.bin/brandelf \ + usr.bin/bsdiff/bsdiff \ + usr.bin/bsdiff/bspatch \ + usr.bin/bzip2 \ + usr.bin/bzip2recover \ + usr.bin/c89 \ + usr.bin/c99 \ + usr.bin/calendar \ + usr.bin/cap_mkdb \ + usr.bin/catman \ + usr.bin/chat \ + usr.bin/checknr \ + usr.bin/chkey \ + usr.bin/chpass \ + usr.bin/cksum \ + usr.bin/cmp \ + usr.bin/col \ + usr.bin/colcrt \ + usr.bin/colldef \ + usr.bin/colrm \ + usr.bin/column \ + usr.bin/comm \ + usr.bin/compile_et \ + usr.bin/compress \ + usr.bin/cpio \ + usr.bin/cpuset \ + usr.bin/csplit \ + usr.bin/csup \ + usr.bin/ctags \ + usr.bin/ctlstat \ + usr.bin/cut \ + usr.bin/dc \ + usr.bin/dig \ + usr.bin/dirname \ + usr.bin/du \ + usr.bin/ee \ + usr.bin/elf2aout \ + usr.bin/elfdump \ + usr.bin/enigma \ + usr.bin/env \ + usr.bin/expand \ + usr.bin/false \ + usr.bin/fetch \ + usr.bin/file \ + usr.bin/file2c \ + usr.bin/find \ + usr.bin/finger \ + usr.bin/fmt \ + usr.bin/fold \ + usr.bin/from \ + usr.bin/fstat \ + usr.bin/fsync \ + usr.bin/ftp \ + usr.bin/gcore \ + usr.bin/gencat \ + usr.bin/getconf \ + usr.bin/getent \ + usr.bin/getopt \ + usr.bin/gprof \ + usr.bin/grep \ + usr.bin/gzip \ + usr.bin/head \ + usr.bin/hexdump \ + usr.bin/host \ + usr.bin/id \ + usr.bin/indent \ + usr.bin/ipcrm \ + usr.bin/ipcs \ + usr.bin/join \ + usr.bin/jot \ + usr.bin/kdump \ + usr.bin/keylogin \ + usr.bin/keylogout \ + usr.bin/killall \ + usr.bin/ktrace \ + usr.bin/ktrdump \ + usr.bin/lam \ + usr.bin/last \ + usr.bin/lastcomm \ + usr.bin/ldd \ + usr.bin/leave \ + usr.bin/less \ + usr.bin/lessecho \ + usr.bin/lesskey \ + usr.bin/lex/lib \ + usr.bin/limits \ + usr.bin/locale \ + usr.bin/locate/bigram \ + usr.bin/locate/code \ + usr.bin/locate/locate \ + usr.bin/lock \ + usr.bin/lockf \ + usr.bin/logger \ + usr.bin/login \ + usr.bin/logins \ + usr.bin/logname \ + usr.bin/look \ + usr.bin/lorder \ + usr.bin/lsvfs \ + usr.bin/lzmainfo \ + usr.bin/m4 \ + usr.bin/mail \ + usr.bin/makewhatis \ + usr.bin/man \ + usr.bin/mandoc \ + usr.bin/mesg \ + usr.bin/minigzip \ + usr.bin/ministat \ + usr.bin/mkdep \ + usr.bin/mkfifo \ + usr.bin/mklocale \ + usr.bin/mkstr \ + usr.bin/mktemp \ + usr.bin/mkulzma \ + usr.bin/mkuzip \ + usr.bin/msgs \ + usr.bin/mt \ + usr.bin/nc \ + usr.bin/ncal \ + usr.bin/netstat \ + usr.bin/newgrp \ + usr.bin/newkey \ + usr.bin/nfsstat \ + usr.bin/nice \ + usr.bin/nl \ + usr.bin/nohup \ + usr.bin/nslookup \ + usr.bin/nsupdate \ + usr.bin/opieinfo \ + usr.bin/opiekey \ + usr.bin/opiepasswd \ + usr.bin/pagesize \ + usr.bin/passwd \ + usr.bin/paste \ + usr.bin/pathchk \ + usr.bin/perror \ + usr.bin/pr \ + usr.bin/printenv \ + usr.bin/printf \ + usr.bin/procstat \ + usr.bin/quota \ + usr.bin/rctl \ + usr.bin/renice \ + usr.bin/rev \ + usr.bin/revoke \ + usr.bin/rlogin \ + usr.bin/rpcgen \ + usr.bin/rpcinfo \ + usr.bin/rs \ + usr.bin/rsh \ + usr.bin/rup \ + usr.bin/ruptime \ + usr.bin/rusers \ + usr.bin/rwall \ + usr.bin/rwho \ + usr.bin/script \ + usr.bin/sed \ + usr.bin/seq \ + usr.bin/shar \ + usr.bin/showmount \ + usr.bin/sockstat \ + usr.bin/sort \ + usr.bin/split \ + usr.bin/ssh-copy-id \ + usr.bin/stat \ + usr.bin/stdbuf \ + usr.bin/su \ + usr.bin/systat \ + usr.bin/tabs \ + usr.bin/tail \ + usr.bin/talk \ + usr.bin/tar \ + usr.bin/tcopy \ + usr.bin/tee \ + usr.bin/telnet \ + usr.bin/tftp \ + usr.bin/time \ + usr.bin/tip/tip \ + usr.bin/top \ + usr.bin/touch \ + usr.bin/tput \ + usr.bin/tr \ + usr.bin/true \ + usr.bin/truncate \ + usr.bin/truss \ + usr.bin/tset \ + usr.bin/tsort \ + usr.bin/tty \ + usr.bin/ul \ + usr.bin/uname \ + usr.bin/unexpand \ + usr.bin/unifdef \ + usr.bin/uniq \ + usr.bin/units \ + usr.bin/unvis \ + usr.bin/unzip \ + usr.bin/usbhidaction \ + usr.bin/usbhidctl \ + usr.bin/users \ + usr.bin/uudecode \ + usr.bin/uuencode \ + usr.bin/vacation \ + usr.bin/vgrind \ + usr.bin/vi \ + usr.bin/vis \ + usr.bin/vmstat \ + usr.bin/w \ + usr.bin/wall \ + usr.bin/wc \ + usr.bin/what \ + usr.bin/whereis \ + usr.bin/which \ + usr.bin/who \ + usr.bin/whois \ + usr.bin/write \ + usr.bin/xargs \ + usr.bin/xinstall \ + usr.bin/xlint/lint1 \ + usr.bin/xlint/lint2 \ + usr.bin/xlint/xlint \ + usr.bin/xlint/llib \ + usr.bin/xstr \ + usr.bin/xz \ + usr.bin/xzdec \ + usr.bin/yacc \ + usr.bin/yes \ + usr.bin/ypcat \ + usr.bin/ypmatch \ + usr.bin/ypwhich \ + + +.include diff --git a/pkgs/pseudo/usr.sbin/Makefile b/pkgs/pseudo/usr.sbin/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/usr.sbin/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/usr.sbin/Makefile.depend b/pkgs/pseudo/usr.sbin/Makefile.depend new file mode 100644 index 000000000000..a1b8905f43c2 --- /dev/null +++ b/pkgs/pseudo/usr.sbin/Makefile.depend @@ -0,0 +1,319 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + usr.sbin/IPXrouted \ + usr.sbin/ac \ + usr.sbin/accton \ + usr.sbin/adduser \ + usr.sbin/amd/include \ + usr.sbin/amd/libamu \ + usr.sbin/amd/amd \ + usr.sbin/amd/amq \ + usr.sbin/amd/doc \ + usr.sbin/amd/fixmount \ + usr.sbin/amd/fsinfo \ + usr.sbin/amd/hlfsd \ + usr.sbin/amd/mk-amd-map \ + usr.sbin/amd/pawd \ + usr.sbin/amd/scripts \ + usr.sbin/amd/wire-test \ + usr.sbin/ancontrol \ + usr.sbin/apm \ + usr.sbin/arp \ + usr.sbin/arpaname \ + usr.sbin/audit \ + usr.sbin/auditd \ + usr.sbin/auditreduce \ + usr.sbin/authpf \ + usr.sbin/bluetooth/ath3kfw \ + usr.sbin/bluetooth/bcmfw \ + usr.sbin/bluetooth/bt3cfw \ + usr.sbin/bluetooth/bthidcontrol \ + usr.sbin/bluetooth/bthidd \ + usr.sbin/bluetooth/btpand \ + usr.sbin/bluetooth/hccontrol \ + usr.sbin/bluetooth/hcsecd \ + usr.sbin/bluetooth/hcseriald \ + usr.sbin/bluetooth/l2control \ + usr.sbin/bluetooth/l2ping \ + usr.sbin/bluetooth/rfcomm_pppd \ + usr.sbin/bluetooth/sdpcontrol \ + usr.sbin/bluetooth/sdpd \ + usr.sbin/bootparamd/bootparamd \ + usr.sbin/bootparamd/callbootd \ + usr.sbin/bsdinstall/distextract \ + usr.sbin/bsdinstall/distfetch \ + usr.sbin/bsdinstall/partedit \ + usr.sbin/bsdinstall/scripts \ + usr.sbin/bsnmpd/gensnmptree \ + usr.sbin/bsnmpd/bsnmpd \ + usr.sbin/bsnmpd/modules/snmp_atm \ + usr.sbin/bsnmpd/modules/snmp_bridge \ + usr.sbin/bsnmpd/modules/snmp_hostres \ + usr.sbin/bsnmpd/modules/snmp_mibII \ + usr.sbin/bsnmpd/modules/snmp_pf \ + usr.sbin/bsnmpd/modules/snmp_target \ + usr.sbin/bsnmpd/modules/snmp_usm \ + usr.sbin/bsnmpd/modules/snmp_vacm \ + usr.sbin/bsnmpd/modules/snmp_wlan \ + usr.sbin/bsnmpd/modules/snmp_netgraph \ + usr.sbin/bsnmpd/tools/libbsnmptools \ + usr.sbin/bsnmpd/tools/bsnmptools \ + usr.sbin/burncd \ + usr.sbin/cdcontrol \ + usr.sbin/chkgrp \ + usr.sbin/chown \ + usr.sbin/chroot \ + usr.sbin/ckdist \ + usr.sbin/clear_locks \ + usr.sbin/config \ + usr.sbin/crashinfo \ + usr.sbin/cron/lib \ + usr.sbin/cron/cron \ + usr.sbin/cron/crontab \ + usr.sbin/crunch/crunchgen \ + usr.sbin/crunch/crunchide \ + usr.sbin/ctladm \ + usr.sbin/ctm/ctm \ + usr.sbin/ctm/ctm_rmail \ + usr.sbin/ctm/ctm_smail \ + usr.sbin/ctm/ctm_dequeue \ + usr.sbin/daemon \ + usr.sbin/dconschat \ + usr.sbin/ddns-confgen \ + usr.sbin/devinfo \ + usr.sbin/digictl \ + usr.sbin/diskinfo \ + usr.sbin/dnssec-dsfromkey \ + usr.sbin/dnssec-keyfromlabel \ + usr.sbin/dnssec-keygen \ + usr.sbin/dnssec-revoke \ + usr.sbin/dnssec-settime \ + usr.sbin/dnssec-signzone \ + usr.sbin/dumpcis \ + usr.sbin/editmap \ + usr.sbin/edquota \ + usr.sbin/etcupdate \ + usr.sbin/extattr \ + usr.sbin/extattrctl \ + usr.sbin/faithd \ + usr.sbin/fdcontrol \ + usr.sbin/fdformat \ + usr.sbin/fdread \ + usr.sbin/fdwrite \ + usr.sbin/fifolog/lib \ + usr.sbin/fifolog/fifolog_create \ + usr.sbin/fifolog/fifolog_writer \ + usr.sbin/fifolog/fifolog_reader \ + usr.sbin/flowctl \ + usr.sbin/freebsd-update \ + usr.sbin/ftp-proxy/libevent \ + usr.sbin/ftp-proxy/ftp-proxy \ + usr.sbin/fwcontrol \ + usr.sbin/genrandom \ + usr.sbin/getfmac \ + usr.sbin/getpmac \ + usr.sbin/gpioctl \ + usr.sbin/gssd \ + usr.sbin/gstat \ + usr.sbin/i2c \ + usr.sbin/ifmcstat \ + usr.sbin/inetd \ + usr.sbin/iostat \ + usr.sbin/ip6addrctl \ + usr.sbin/ipfwpcap \ + usr.sbin/isc-hmac-fixup \ + usr.sbin/isfctl \ + usr.sbin/jail \ + usr.sbin/jexec \ + usr.sbin/jls \ + usr.sbin/kbdcontrol \ + usr.sbin/kbdmap \ + usr.sbin/keyserv \ + usr.sbin/kldxref \ + usr.sbin/lastlogin \ + usr.sbin/lmcconfig \ + usr.sbin/lpr/common_source \ + usr.sbin/lpr/chkprintcap \ + usr.sbin/lpr/lp \ + usr.sbin/lpr/lpc \ + usr.sbin/lpr/lpd \ + usr.sbin/lpr/lpq \ + usr.sbin/lpr/lpr \ + usr.sbin/lpr/lprm \ + usr.sbin/lpr/lptest \ + usr.sbin/lpr/pac \ + usr.sbin/lpr/filters \ + usr.sbin/lpr/filters.ru/koi2alt \ + usr.sbin/lpr/filters.ru/koi2855 \ + usr.sbin/mailstats \ + usr.sbin/mailwrapper \ + usr.sbin/makefs \ + usr.sbin/makemap \ + usr.sbin/manctl \ + usr.sbin/manctl \ + usr.sbin/memcontrol \ + usr.sbin/mergemaster \ + usr.sbin/mfiutil \ + usr.sbin/mixer \ + usr.sbin/mld6query \ + usr.sbin/mlxcontrol \ + usr.sbin/mountd \ + usr.sbin/moused \ + usr.sbin/mptutil \ + usr.sbin/mtest \ + usr.sbin/mtree \ + usr.sbin/named \ + usr.sbin/named-checkconf \ + usr.sbin/named-checkzone \ + usr.sbin/named-journalprint \ + usr.sbin/ndp \ + usr.sbin/newsyslog \ + usr.sbin/nfscbd \ + usr.sbin/nfsd \ + usr.sbin/nfsdumpstate \ + usr.sbin/nfsrevoke \ + usr.sbin/nfsuserd \ + usr.sbin/ngctl \ + usr.sbin/nghook \ + usr.sbin/nologin \ + usr.sbin/nscd \ + usr.sbin/nsec3hash \ + usr.sbin/ntp/libopts \ + usr.sbin/ntp/libntp \ + usr.sbin/ntp/libparse \ + usr.sbin/ntp/ntpd \ + usr.sbin/ntp/ntpdc \ + usr.sbin/ntp/ntpq \ + usr.sbin/ntp/ntpdate \ + usr.sbin/ntp/ntptime \ + usr.sbin/ntp/ntp-keygen \ + usr.sbin/ntp/sntp \ + usr.sbin/ntp/doc \ + usr.sbin/pc-sysinstall/backend \ + usr.sbin/pc-sysinstall/backend-partmanager \ + usr.sbin/pc-sysinstall/backend-query \ + usr.sbin/pc-sysinstall/conf \ + usr.sbin/pc-sysinstall/doc \ + usr.sbin/pc-sysinstall/examples \ + usr.sbin/pc-sysinstall/pc-sysinstall \ + usr.sbin/pciconf \ + usr.sbin/periodic \ + usr.sbin/pkg \ + usr.sbin/pkg_install/lib \ + usr.sbin/pkg_install/add \ + usr.sbin/pkg_install/create \ + usr.sbin/pkg_install/delete \ + usr.sbin/pkg_install/info \ + usr.sbin/pkg_install/updating \ + usr.sbin/pkg_install/version \ + usr.sbin/pmcannotate \ + usr.sbin/pmccontrol \ + usr.sbin/pmcstat \ + usr.sbin/portsnap/portsnap \ + usr.sbin/portsnap/make_index \ + usr.sbin/portsnap/phttpget \ + usr.sbin/powerd \ + usr.sbin/ppp \ + usr.sbin/pppctl \ + usr.sbin/praliases \ + usr.sbin/praudit \ + usr.sbin/procctl \ + usr.sbin/pstat \ + usr.sbin/pw \ + usr.sbin/pwd_mkdb \ + usr.sbin/quot \ + usr.sbin/quotaon \ + usr.sbin/rarpd \ + usr.sbin/repquota \ + usr.sbin/rip6query \ + usr.sbin/rmt \ + usr.sbin/rndc \ + usr.sbin/rndc-confgen \ + usr.sbin/route6d \ + usr.sbin/rpc.lockd \ + usr.sbin/rpc.statd \ + usr.sbin/rpc.umntall \ + usr.sbin/rpc.yppasswdd \ + usr.sbin/rpc.ypupdated \ + usr.sbin/rpc.ypxfrd \ + usr.sbin/rpcbind \ + usr.sbin/rrenumd \ + usr.sbin/rtadvctl \ + usr.sbin/rtadvd \ + usr.sbin/rtprio \ + usr.sbin/rtsold \ + usr.sbin/rwhod \ + usr.sbin/sa \ + usr.sbin/sendmail \ + usr.sbin/service \ + usr.sbin/services_mkdb \ + usr.sbin/setfib \ + usr.sbin/setfmac \ + usr.sbin/setpmac \ + usr.sbin/smbmsg \ + usr.sbin/snapinfo \ + usr.sbin/spray \ + usr.sbin/syslogd \ + usr.sbin/tcpdchk \ + usr.sbin/tcpdmatch \ + usr.sbin/tcpdrop \ + usr.sbin/tcpdump/tcpdump \ + usr.sbin/timed/timed \ + usr.sbin/timed/timedc \ + usr.sbin/traceroute \ + usr.sbin/traceroute6 \ + usr.sbin/trpt \ + usr.sbin/tzsetup \ + usr.sbin/uathload \ + usr.sbin/ugidfw \ + usr.sbin/uhsoctl \ + usr.sbin/usbconfig \ + usr.sbin/usbdump \ + usr.sbin/utx \ + usr.sbin/vidcontrol \ + usr.sbin/vipw \ + usr.sbin/wake \ + usr.sbin/watch \ + usr.sbin/watchdogd \ + usr.sbin/wlandebug \ + usr.sbin/wpa/wpa_supplicant \ + usr.sbin/wpa/wpa_cli \ + usr.sbin/wpa/wpa_passphrase \ + usr.sbin/wpa/hostapd \ + usr.sbin/wpa/hostapd_cli \ + usr.sbin/wpa/ndis_events \ + usr.sbin/yp_mkdb \ + usr.sbin/ypbind \ + usr.sbin/yppoll \ + usr.sbin/yppush \ + usr.sbin/ypserv \ + usr.sbin/ypset \ + usr.sbin/zic/zic \ + usr.sbin/zic/zdump \ + + + +DIRDEPS.amd64= usr.sbin/acpi/acpiconf \ + usr.sbin/acpi/acpidb \ + usr.sbin/acpi/acpidump \ + usr.sbin/acpi/iasl \ + usr.sbin/apm usr.sbin/asf usr.sbin/boot0cfg usr.sbin/btxld \ + usr.sbin/cpucontrol usr.sbin/kgmon usr.sbin/lptcontrol \ + usr.sbin/mptable usr.sbin/ndiscvt usr.sbin/sicontrol \ + usr.sbin/spkrtest usr.sbin/sade usr.sbin/zzz +DIRDEPS.arm= usr.sbin/ofwdump usr.sbin/kgmon +DIRDEPS.i386= usr.sbin/apm usr.sbin/apmd usr.sbin/asf usr.sbin/btxld usr.sbin/cpucontrol usr.sbin/kgmon usr.sbin/kgzip usr.sbin/lptcontrol usr.sbin/mptable usr.sbin/ndiscvt usr.sbin/pnpinfo usr.sbin/sade usr.sbin/sicontrol usr.sbin/spkrtest usr.sbin/zzz usr.sbin/acpi usr.sbin/boot0cfg usr.sbin/wlconfig +DIRDEPS.ia64= usr.sbin/acpi usr.sbin/kgmon usr.sbin/zzz +DIRDEPS.powerpc= usr.sbin/nvram usr.sbin/ofwdump +DIRDEPS.sparc64= usr.sbin/eeprom usr.sbin/ofwdump usr.sbin/sade + +DIRDEPS+= ${DIRDEPS.${MACHINE}:U} + +.include From c8c7a91dff19cf0740043de6581e0f5f985380a1 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 17 Jan 2013 18:28:26 +0000 Subject: [PATCH 024/228] Put NLS related symlinks into their own variable, so that when MK_STAGING_PROG is true, we can put them in the right place. --- share/mk/bsd.nls.mk | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/share/mk/bsd.nls.mk b/share/mk/bsd.nls.mk index 48093ebf0838..3d2efc120e29 100644 --- a/share/mk/bsd.nls.mk +++ b/share/mk/bsd.nls.mk @@ -61,13 +61,22 @@ NLSDIR?= ${SHAREDIR}/nls # # installation rules # +.if ${MK_STAGING_PROG} == "yes" +.if !defined(_SKIP_BUILD) +all: stage_symlinks +.endif +STAGE_SYMLINKS.NLS= ${NLSSYMLINKS} +STAGE_SYMLINKS_DIR.NLS= ${STAGE_OBJTOP} +.else +SYMLINKS+= ${NLSSYMLINKS} +.endif .for file in ${NLS} NLSNAME_${file:T}= ${file:T:R}/${NLSNAME}.cat .if defined(NLSLINKS_${file:R}) && !empty(NLSLINKS_${file:R}) NLSLINKS+= ${file:R} .endif .for dst in ${NLSLINKS_${file:R}} -SYMLINKS+= ../${file:R}/${NLSNAME}.cat ${NLSDIR}/${dst}/${NLSNAME}.cat +NLSSYMLINKS+= ../${file:R}/${NLSNAME}.cat ${NLSDIR}/${dst}/${NLSNAME}.cat .endfor .endfor From bd64a3c9dc2d047125c2e55c6763bc2639001ada Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 23 Jan 2013 00:46:53 +0000 Subject: [PATCH 025/228] Because the target of SYMLINKS is typically a full path, we "stage" them to the stage tree rather than a location within. --- share/mk/bsd.files.mk | 1 + share/mk/bsd.incs.mk | 1 + 2 files changed, 2 insertions(+) diff --git a/share/mk/bsd.files.mk b/share/mk/bsd.files.mk index 9ddb315b6e0a..79b9d0346cb4 100644 --- a/share/mk/bsd.files.mk +++ b/share/mk/bsd.files.mk @@ -26,6 +26,7 @@ ${group}DIR?= ${BINDIR} STAGE_SETS+= ${group} .endif STAGE_DIR.${group}= ${STAGE_OBJTOP}${${group}DIR} +STAGE_SYMLINKS_DIR.${group}= ${STAGE_OBJTOP} _${group}FILES= .for file in ${${group}} diff --git a/share/mk/bsd.incs.mk b/share/mk/bsd.incs.mk index 6408a73defc2..17b7e2996ed2 100644 --- a/share/mk/bsd.incs.mk +++ b/share/mk/bsd.incs.mk @@ -26,6 +26,7 @@ ${group}MODE?= ${NOBINMODE} ${group}DIR?= ${INCLUDEDIR} STAGE_SETS+= ${group} STAGE_DIR.${group}= ${STAGE_OBJTOP}${${group}DIR} +STAGE_SYMLINKS_DIR.${group}= ${STAGE_OBJTOP} _${group}INCS= .for header in ${${group}} From 0dfb7ef6ae79ca50ce3bc51b5c4c69aa9e9d5c99 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 23 Jan 2013 00:47:43 +0000 Subject: [PATCH 026/228] If PROGNAME is set, we need to use stage_as rather than stage_files to control the name in the stage tree. --- share/mk/bsd.prog.mk | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index 82a3b07c7cfb..b5b093fe8633 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -241,12 +241,24 @@ stage_files stage_as: .else # normally only libs and includes are staged .if ${MK_STAGING_PROG:Uno} != "no" -STAGE_SETS+= prog STAGE_DIR.prog= ${STAGE_OBJTOP}${BINDIR} +STAGE_SYMLINKS_DIR.prog= ${STAGE_OBJTOP} + +.if defined(PROGNAME) +STAGE_AS_SETS+= prog +STAGE_AS_${PROG}= ${PROGNAME} +stage_as.prog: ${PROG} +.if !empty(PROG) +all: stage_as +.endif +.else +STAGE_SETS+= prog +stage_files.prog: ${PROG} .if !empty(PROG) all: stage_files -stage_files.prog: ${PROG} .endif +.endif + .if !empty(SYMLINKS) all: stage_symlinks STAGE_SYMLINKS.prog= ${SYMLINKS} From 63478911d0911299395cd58b6eccd4cdd094f12a Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 23 Jan 2013 00:49:05 +0000 Subject: [PATCH 027/228] Include the target filename in SYMLINKS to avoid any confusion about what is dirname and filename. --- share/colldef/Makefile | 2 +- share/mklocale/Makefile | 2 +- share/monetdef/Makefile | 2 +- share/msgdef/Makefile | 2 +- share/numericdef/Makefile | 2 +- share/timedef/Makefile | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/share/colldef/Makefile b/share/colldef/Makefile index 4b68f1e59a40..ab44994f181e 100644 --- a/share/colldef/Makefile +++ b/share/colldef/Makefile @@ -109,7 +109,7 @@ SYMLINKS= .for enc2 in ${ENCODINGS} .for lang_terr in ${${enc1}_${enc2}} SYMLINKS+= ../${lang_terr:C/:.*$//}.${enc1}/${FILESNAME} \ - ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2} + ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2}/${FILESNAME} .endfor .endfor .endfor diff --git a/share/mklocale/Makefile b/share/mklocale/Makefile index b7f551e5e0eb..172d4d030e2a 100644 --- a/share/mklocale/Makefile +++ b/share/mklocale/Makefile @@ -94,7 +94,7 @@ SYMLINKS= .for enc2 in ${ENCODINGS} .for lang_terr in ${${enc1}_${enc2}} SYMLINKS+= ../${lang_terr:C/:.*$//:C/.+$/&./}${enc1}/${FILESNAME} \ - ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2} + ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2}/${FILESNAME} .endfor .endfor .endfor diff --git a/share/monetdef/Makefile b/share/monetdef/Makefile index 972f149dbe3e..d7b36107a688 100644 --- a/share/monetdef/Makefile +++ b/share/monetdef/Makefile @@ -130,7 +130,7 @@ SYMLINKS= .for enc2 in ${ENCODINGS} .for lang_terr in ${${enc1}_${enc2}} SYMLINKS+= ../${lang_terr:C/:.*$//}.${enc1}/${FILESNAME} \ - ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2} + ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2}/${FILESNAME} .endfor .endfor .endfor diff --git a/share/msgdef/Makefile b/share/msgdef/Makefile index 069498f84ba6..5022756b846a 100644 --- a/share/msgdef/Makefile +++ b/share/msgdef/Makefile @@ -129,7 +129,7 @@ SYMLINKS= .for enc2 in ${ENCODINGS} .for lang_terr in ${${enc1}_${enc2}} SYMLINKS+= ../${lang_terr:C/:.*$//}.${enc1}/${FILESNAME} \ - ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2} + ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2}/${FILESNAME} .endfor .endfor .endfor diff --git a/share/numericdef/Makefile b/share/numericdef/Makefile index 2dc12f8e0f24..6264995c55a7 100644 --- a/share/numericdef/Makefile +++ b/share/numericdef/Makefile @@ -124,7 +124,7 @@ SYMLINKS= .for enc2 in ${ENCODINGS} .for lang_terr in ${${enc1}_${enc2}} SYMLINKS+= ../${lang_terr:C/:.*$//}.${enc1}/${FILESNAME} \ - ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2} + ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2}/${FILESNAME} .endfor .endfor .endfor diff --git a/share/timedef/Makefile b/share/timedef/Makefile index 5a4060d0f558..1e589d8ee969 100644 --- a/share/timedef/Makefile +++ b/share/timedef/Makefile @@ -148,7 +148,7 @@ SYMLINKS= .for enc2 in ${ENCODINGS} .for lang_terr in ${${enc1}_${enc2}} SYMLINKS+= ../${lang_terr:C/:.*$//}.${enc1}/${FILESNAME} \ - ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2} + ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2}/${FILESNAME} .endfor .endfor .endfor From 6579d1464d0b206102847c432a0ab5d2b66e8d74 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 24 Jan 2013 19:09:38 +0000 Subject: [PATCH 028/228] Move build of openpam_static_modules.o to its own subdir to avoid circular dependency b/w libpam and modules. Reviewed by: obrien --- lib/libpam/Makefile | 2 +- lib/libpam/libpam/Makefile | 23 -------- lib/libpam/libpam/Makefile.depend | 24 -------- lib/libpam/static_modules/Makefile | 71 +++++++++++++++++++++++ lib/libpam/static_modules/Makefile.depend | 41 +++++++++++++ 5 files changed, 113 insertions(+), 48 deletions(-) create mode 100644 lib/libpam/static_modules/Makefile create mode 100644 lib/libpam/static_modules/Makefile.depend diff --git a/lib/libpam/Makefile b/lib/libpam/Makefile index 088e8a03b4f5..5c3a2ae60cc5 100644 --- a/lib/libpam/Makefile +++ b/lib/libpam/Makefile @@ -26,6 +26,6 @@ # The modules must be built first, because they are built into the # static version of libpam. -SUBDIR+= modules libpam +SUBDIR+= modules libpam static_modules .include diff --git a/lib/libpam/libpam/Makefile b/lib/libpam/libpam/Makefile index b57a38e7b543..a4aad999edfe 100644 --- a/lib/libpam/libpam/Makefile +++ b/lib/libpam/libpam/Makefile @@ -166,29 +166,6 @@ HEADERS= security/openpam.h \ ADD_HEADERS= security/pam_mod_misc.h -# -# Static modules -# -# We build static versions of all modules and of openpam_static.o, -# then link them all together into openpam_static_modules.o. None of -# the modules export any symbols, but they store structures with -# pointers to their service functions in a linker set which the code -# in openpam_static.c traverses to locate the individual modules. -# -MODULE_DIR= ../modules -.include "${.CURDIR}/${MODULE_DIR}/modules.inc" -STATIC_MODULES= ${MODULES:C/.*/${MODULE_DIR}\/&\/lib&.a/} -STATICOBJS+= openpam_static_modules.o -CLEANFILES+= openpam_static.o \ - openpam_static_modules.o - -openpam_static_modules.o: openpam_static.o ${STATIC_MODULES} - ${LD} -o ${.TARGET} -r --whole-archive ${.ALLSRC} - -# We can't put openpam_static.c in SRCS, but we still want to scan it -# for dependencies. -DPSRCS= openpam_static.c - # Headers INCS= ${HEADERS} ${ADD_HEADERS} INCSDIR= ${INCLUDEDIR}/security diff --git a/lib/libpam/libpam/Makefile.depend b/lib/libpam/libpam/Makefile.depend index 743c307c596e..a83954553d0e 100644 --- a/lib/libpam/libpam/Makefile.depend +++ b/lib/libpam/libpam/Makefile.depend @@ -10,30 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libpam/modules/pam_chroot \ - lib/libpam/modules/pam_deny \ - lib/libpam/modules/pam_echo \ - lib/libpam/modules/pam_exec \ - lib/libpam/modules/pam_ftpusers \ - lib/libpam/modules/pam_group \ - lib/libpam/modules/pam_guest \ - lib/libpam/modules/pam_krb5 \ - lib/libpam/modules/pam_ksu \ - lib/libpam/modules/pam_lastlog \ - lib/libpam/modules/pam_login_access \ - lib/libpam/modules/pam_nologin \ - lib/libpam/modules/pam_opie \ - lib/libpam/modules/pam_opieaccess \ - lib/libpam/modules/pam_passwdqc \ - lib/libpam/modules/pam_permit \ - lib/libpam/modules/pam_radius \ - lib/libpam/modules/pam_rhosts \ - lib/libpam/modules/pam_rootok \ - lib/libpam/modules/pam_securetty \ - lib/libpam/modules/pam_self \ - lib/libpam/modules/pam_ssh \ - lib/libpam/modules/pam_tacplus \ - lib/libpam/modules/pam_unix \ .include diff --git a/lib/libpam/static_modules/Makefile b/lib/libpam/static_modules/Makefile new file mode 100644 index 000000000000..7a3e8ba5a21a --- /dev/null +++ b/lib/libpam/static_modules/Makefile @@ -0,0 +1,71 @@ +#- +# Copyright (c) 1998, 2013 Juniper Networks, Inc. +# All rights reserved. +# Copyright (c) 2002 Networks Associates Technology, Inc. +# All rights reserved. +# +# Portions of this software was developed for the FreeBSD Project by +# ThinkSec AS and NAI Labs, the Security Research Division of Network +# Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 +# ("CBOSS"), as part of the DARPA CHATS research program. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. The name of the author may not be used to endorse or promote +# products derived from this software without specific prior written +# permission. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +# +# $FreeBSD$ + +OPENPAM= ${.CURDIR:H:H:H}/contrib/openpam +.PATH: ${OPENPAM}/lib + +all: + +SRCS = openpam_static.c + +NO_PROFILE= +NO_MAN= + +# +# Static modules +# +# We build static versions of all modules and of openpam_static.o, +# then link them all together into openpam_static_modules.o. None of +# the modules export any symbols, but they store structures with +# pointers to their service functions in a linker set which the code +# in openpam_static.c traverses to locate the individual modules. +# +MODULE_DIR= ../modules +.include "${.CURDIR}/${MODULE_DIR}/modules.inc" +STATIC_MODULES= ${MODULES:C/.*/${MODULE_DIR}\/&\/lib&.a/} +STATICOBJS+= openpam_static_modules.o +CLEANFILES+= openpam_static.o \ + openpam_static_modules.o + +openpam_static_modules.o: openpam_static.o ${STATIC_MODULES} + ${LD} -o ${.TARGET} -r --whole-archive ${.ALLSRC} + +.include + +.if empty(_SKIP_BUILD) +all: ${STATICOBJS} +.endif diff --git a/lib/libpam/static_modules/Makefile.depend b/lib/libpam/static_modules/Makefile.depend new file mode 100644 index 000000000000..fc4eb35ac456 --- /dev/null +++ b/lib/libpam/static_modules/Makefile.depend @@ -0,0 +1,41 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DEP_MACHINE := ${.PARSEFILE:E} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libpam/libpam \ + lib/libpam/modules/pam_chroot \ + lib/libpam/modules/pam_deny \ + lib/libpam/modules/pam_echo \ + lib/libpam/modules/pam_exec \ + lib/libpam/modules/pam_ftpusers \ + lib/libpam/modules/pam_group \ + lib/libpam/modules/pam_guest \ + lib/libpam/modules/pam_krb5 \ + lib/libpam/modules/pam_ksu \ + lib/libpam/modules/pam_lastlog \ + lib/libpam/modules/pam_login_access \ + lib/libpam/modules/pam_nologin \ + lib/libpam/modules/pam_opie \ + lib/libpam/modules/pam_opieaccess \ + lib/libpam/modules/pam_passwdqc \ + lib/libpam/modules/pam_permit \ + lib/libpam/modules/pam_radius \ + lib/libpam/modules/pam_rhosts \ + lib/libpam/modules/pam_rootok \ + lib/libpam/modules/pam_securetty \ + lib/libpam/modules/pam_self \ + lib/libpam/modules/pam_ssh \ + lib/libpam/modules/pam_tacplus \ + lib/libpam/modules/pam_unix \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif From 116d45081bd34c66a211d5b577144b5b61aa5b7b Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 29 Jan 2013 00:07:54 +0000 Subject: [PATCH 029/228] Handle staging SYMKINKS and LINKS better --- share/mk/bsd.prog.mk | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index b5b093fe8633..419ae7640cdf 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -177,6 +177,10 @@ SCRIPTSOWN?= ${BINOWN} SCRIPTSGRP?= ${BINGRP} SCRIPTSMODE?= ${BINMODE} +STAGE_AS_SETS+= scripts +stage_as.scripts: ${SCRIPTS} +FLAGS.stage_as.scripts= -m ${SCRIPTSMODE} +STAGE_FILES_DIR.scripts= ${STAGE_OBJTOP} .for script in ${SCRIPTS} .if defined(SCRIPTSNAME) SCRIPTSNAME_${script:T}?= ${SCRIPTSNAME} @@ -187,6 +191,7 @@ SCRIPTSDIR_${script:T}?= ${SCRIPTSDIR} SCRIPTSOWN_${script:T}?= ${SCRIPTSOWN} SCRIPTSGRP_${script:T}?= ${SCRIPTSGRP} SCRIPTSMODE_${script:T}?= ${SCRIPTSMODE} +STAGE_AS_${script:T}= ${SCRIPTSDIR_${script:T}}/${SCRIPTSNAME_${script:T}} _scriptsinstall: _SCRIPTSINS_${script:T} _SCRIPTSINS_${script:T}: ${script} ${INSTALL} -o ${SCRIPTSOWN_${.ALLSRC:T}} \ @@ -242,28 +247,32 @@ stage_files stage_as: # normally only libs and includes are staged .if ${MK_STAGING_PROG:Uno} != "no" STAGE_DIR.prog= ${STAGE_OBJTOP}${BINDIR} -STAGE_SYMLINKS_DIR.prog= ${STAGE_OBJTOP} .if defined(PROGNAME) STAGE_AS_SETS+= prog STAGE_AS_${PROG}= ${PROGNAME} stage_as.prog: ${PROG} -.if !empty(PROG) -all: stage_as -.endif .else STAGE_SETS+= prog stage_files.prog: ${PROG} -.if !empty(PROG) -all: stage_files -.endif .endif +.if !empty(LINKS) +all: stage_links +STAGE_LINKS.prog= ${LINKS} +.endif .if !empty(SYMLINKS) -all: stage_symlinks +all: stage_symlinks STAGE_SYMLINKS.prog= ${SYMLINKS} .endif +.if !empty(STAGE_AS_SETS) +all: stage_as +.endif +.if !empty(STAGE_SETS) +all: stage_files +.endif + .endif .include .endif From c20fef58743134724e56acac5544cb08d796cba6 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 29 Jan 2013 00:10:05 +0000 Subject: [PATCH 030/228] Handle chmod of staged files/links --- share/mk/meta.stage.mk | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index a24ef9dd2765..303e7b8afd7d 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -64,6 +64,7 @@ STAGE_DIRDEP_SCRIPT = StageDirdep() { \ # this all relies on RELDIR being set to a subdir of SRCTOP # we use ln(1) if we can, else cp(1) STAGE_FILE_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageFiles() { \ + case "$$1" in -m) mode=$$2; shift 2;; *) mode=;; esac; \ dest=$$1; shift; \ mkdir -p $$dest; \ [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \ @@ -73,15 +74,16 @@ STAGE_FILE_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageFiles() { \ rm -f $$t; \ { ln $$f $$t 2> /dev/null || \ cp -p $$f $$t; }; \ + $${mode:+chmod $$mode $$t}; \ done; :; } STAGE_LINKS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageLinks() { \ - case "$$1" in --) shift;; -*) lnf=$$1; shift;; esac; \ + case "$$1" in --) shift;; -*) ldest= lnf=$$1; shift;; /*) ldest=$$1/;; esac; \ dest=$$1; shift; \ mkdir -p $$dest; \ [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \ while test $$\# -ge 2; do \ - l=$$1; shift; \ + l=$$ldest$$1; shift; \ t=$$dest/$$1; \ case "$$1" in */*) mkdir -p ${_stage_target_dirname};; esac; \ shift; \ @@ -91,6 +93,7 @@ STAGE_LINKS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageLinks() { \ done; :; } STAGE_AS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageAs() { \ + case "$$1" in -m) mode=$$2; shift 2;; *) mode=;; esac; \ dest=$$1; shift; \ mkdir -p $$dest; \ [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \ @@ -103,6 +106,7 @@ STAGE_AS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageAs() { \ rm -f $$t; \ { ln $$s $$t 2> /dev/null || \ cp -p $$s $$t; }; \ + $${mode:+chmod $$mode $$t}; \ done; :; } # this is simple, a list of the "staged" files depends on this, @@ -138,8 +142,10 @@ stage_libs: .dirdep .if !empty(STAGE_DIR) STAGE_SETS += _default STAGE_DIR._default = ${STAGE_DIR} -STAGE_SYMLINKS_DIR._default = ${STAGE_SYMLINKS_DIR:U${STAGE_DIR}} +STAGE_LINKS_DIR._default = ${STAGE_LINKS_DIR:U${STAGE_OBJTOP}} +STAGE_SYMLINKS_DIR._default = ${STAGE_SYMLINKS_DIR:U${STAGE_OBJTOP}} STAGE_FILES._default = ${STAGE_FILES} +STAGE_LINKS._default = ${STAGE_LINKS} STAGE_SYMLINKS._default = ${STAGE_SYMLINKS} STAGE_FILES ?= ${.ALLSRC:N.dirdep:Nstage_*} STAGE_SYMLINKS ?= ${.ALLSRC:T:N.dirdep:Nstage_*} @@ -153,6 +159,8 @@ CLEANFILES += ${STAGE_SETS:@s@stage*$s@} .for s in ${STAGE_SETS:O:u} STAGE_FILES.$s ?= ${.ALLSRC:N.dirdep} STAGE_SYMLINKS.$s ?= ${.ALLSRC:N.dirdep} +STAGE_LINKS_DIR.$s ?= ${STAGE_OBJTOP} +STAGE_SYMLINKS_DIR.$s ?= ${STAGE_OBJTOP} .if $s != "_default" stage_files: stage_files.$s @@ -160,7 +168,16 @@ stage_files.$s: .dirdep .else stage_files: .dirdep .endif - @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_FILES.$s} + @${STAGE_FILE_SCRIPT}; StageFiles ${FLAGS.$@} ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_FILES.$s} + @touch $@ + +.if $s != "_default" +stage_links: stage_links.$s +stage_links.$s: .dirdep +.else +stage_links: .dirdep +.endif + @${STAGE_LINKS_SCRIPT}; StageLinks ${STAGE_LINKS_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_LINKS.$s} @touch $@ .if $s != "_default" @@ -187,7 +204,7 @@ STAGE_AS.$s ?= ${.ALLSRC:N.dirdep} stage_as: stage_as.$s stage_as.$s: .dirdep - @${STAGE_AS_SCRIPT}; StageAs ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_AS.$s:@f@$f ${STAGE_AS_${f:T}:U${f:T}}@} + @${STAGE_AS_SCRIPT}; StageAs ${FLAGS.$@} ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_AS.$s:@f@$f ${STAGE_AS_${f:T}:U${f:T}}@} @touch $@ .endfor From ab970acff7323cb0d7e1c75d188935604e6d8a8f Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 29 Jan 2013 00:11:21 +0000 Subject: [PATCH 031/228] Use STAGE_OBJTOP for STAGE_SYMLINKS_DIR etc --- share/mk/local.sys.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index ff8f20badf6b..d1362013dafe 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -94,11 +94,15 @@ WITH_AUTO_OBJ= yes .include .endif +# the logic in bsd.own.mk forces this dance .ifndef WITHOUT_META_MODE WITH_META_MODE= yes .ifndef WITHOUT_STAGING WITH_STAGING= yes +.ifndef WITHOUT_STAGING_PROG +WITH_STAGING_PROG= yes +.endif .endif PYTHON ?= /usr/local/bin/python @@ -134,6 +138,8 @@ STAGE_HOST_OBJTOP= ${STAGE_ROOT}/${HOST_TARGET} STAGE_LIBDIR= ${STAGE_OBJTOP}${LIBDIR:U/lib} # this is not the same as INCLUDEDIR STAGE_INCSDIR= ${STAGE_OBJTOP}${INCSDIR:U/include} +# the target is usually an absolute path +STAGE_SYMLINKS_DIR= ${STAGE_OBJTOP} .ifndef WITH_SYSROOT .if ${MACHINE} != "host" From 03bec0a956eb7c1431475e97593e41cf61ad295d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 16 Feb 2013 01:11:40 +0000 Subject: [PATCH 032/228] Remove duplicate option entries --- share/mk/bsd.own.mk | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 8b3b5196afc3..8639c791d6db 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -355,9 +355,6 @@ __DEFAULT_YES_OPTIONS = \ __DEFAULT_NO_OPTIONS = \ ARM_EABI \ AUTO_OBJ \ - BMAKE \ - BSD_GREP \ - BSD_PATCH \ BIND_IDN \ BIND_LARGE_FILE \ BIND_LIBS \ @@ -366,6 +363,7 @@ __DEFAULT_NO_OPTIONS = \ BMAKE \ BSDCONFIG \ BSD_GREP \ + BSD_PATCH \ CLANG_EXTRAS \ CTF \ GPL_DTC \ @@ -374,8 +372,8 @@ __DEFAULT_NO_OPTIONS = \ IDEA \ INSTALL_AS_USER \ META_MODE \ - NMTREE \ NAND \ + NMTREE \ OFED \ OPENSSH_NONE_CIPHER \ SHARED_TOOLCHAIN \ From 0649e98d2ddb8f21688d1cac46123a4c517c4abe Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 16 Feb 2013 01:13:30 +0000 Subject: [PATCH 033/228] hook stage_* to all: only as needed --- share/mk/bsd.lib.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index 0f1de8854f3c..bdc5310fdd89 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -436,7 +436,11 @@ stage_libs stage_files stage_as: .else .if !empty(_LIBS) && !defined(INTERNALLIB) stage_libs: ${_LIBS} -all: stage_libs +.for t in stage_libs stage_files stage_as +.if target($t) +all: $t +.endif +.endfor .endif .if !empty(INCS) || !empty(INCSGROUPS) prebuild: buildincludes From b1eb0fa2de44b2b310260739ea462c5f96db7b27 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 16 Feb 2013 01:14:27 +0000 Subject: [PATCH 034/228] tweak STAGE_SETS --- share/mk/bsd.prog.mk | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index 3340394de119..758756992046 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -247,6 +247,7 @@ stage_files stage_as: .if ${MK_STAGING_PROG:Uno} != "no" STAGE_DIR.prog= ${STAGE_OBJTOP}${BINDIR} +.if !empty(PROG) .if defined(PROGNAME) STAGE_AS_SETS+= prog STAGE_AS_${PROG}= ${PROGNAME} @@ -254,23 +255,24 @@ stage_as.prog: ${PROG} .else STAGE_SETS+= prog stage_files.prog: ${PROG} +all: stage_files +.endif .endif .if !empty(LINKS) all: stage_links +STAGE_SETS+= prog STAGE_LINKS.prog= ${LINKS} .endif .if !empty(SYMLINKS) all: stage_symlinks +STAGE_SETS+= prog STAGE_SYMLINKS.prog= ${SYMLINKS} .endif .if !empty(STAGE_AS_SETS) all: stage_as .endif -.if !empty(STAGE_SETS) -all: stage_files -.endif .endif .include From 4ed4429c63952b5a92d5f707fa48a42cc2a95e08 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 16 Feb 2013 01:16:53 +0000 Subject: [PATCH 035/228] Latest *dirdeps.mk and meta2deps --- share/mk/dirdeps.mk | 238 ++++++++++++++++++++++++++--------------- share/mk/gendirdeps.mk | 26 ++--- share/mk/meta2deps.py | 18 +++- 3 files changed, 180 insertions(+), 102 deletions(-) diff --git a/share/mk/dirdeps.mk b/share/mk/dirdeps.mk index 9f051e9203e7..316fe022f2f9 100644 --- a/share/mk/dirdeps.mk +++ b/share/mk/dirdeps.mk @@ -1,6 +1,7 @@ -# $Id: dirdeps.mk,v 1.23 2012/11/06 05:44:03 sjg Exp $ +# $Id: dirdeps.mk,v 1.24 2013/02/10 19:21:46 sjg Exp $ -# Copyright (c) 2010-2012, Juniper Networks, Inc. +# Copyright (c) 2010-2013, Juniper Networks, Inc. +# All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions @@ -33,21 +34,31 @@ # This is what we do with DIRDEPS # DIRDEPS: -# This is a list of directories - relative to SRCTOP, it is only -# of interest to .MAKE.LEVEL 0. +# This is a list of directories - relative to SRCTOP, it is +# normally only of interest to .MAKE.LEVEL 0. # In some cases the entry may be qualified with a . -# suffix, for example to force building something for the pseudo +# or . suffix (see TARGET_SPEC_VARS below), +# for example to force building something for the pseudo # machines "host" or "common" regardless of current ${MACHINE}. -# All unqualified entries end up being qualified with .${MACHINE} -# and _DIRDEPS_USE below, uses the suffix to set MACHINE +# +# All unqualified entries end up being qualified with .${TARGET_SPEC} +# and partially qualified (if TARGET_SPEC_VARS has multiple +# entries) are also expanded to a full .. +# The _DIRDEPS_USE target uses the suffix to set TARGET_SPEC # correctly when visiting each entry. # -# Each entry is also converted into a set of paths to look for -# Makefile.depend. to learn the dependencies of each. -# Each Makefile.depend. sets DEP_RELDIR to be the +# The fully qualified directory entries are used to construct a +# dependency graph that will drive the build later. +# +# Also, for each fully qualified directory target, we will search +# using ${.MAKE.DEPENDFILE_PREFERENCE} to find additional +# dependencies. We use Makefile.depend (default value for +# .MAKE.DEPENDFILE_PREFIX) to refer to these makefiles to +# distinguish them from others. +# +# Each Makefile.depend file sets DEP_RELDIR to be the # the RELDIR (path relative to SRCTOP) for its directory, and -# DEP_MACHINE to its suffix (), further since -# each Makefile.depend. includes dirdeps.mk, this +# since each Makefile.depend file includes dirdeps.mk, this # processing is recursive and results in .MAKE.LEVEL 0 learning the # dependencies of the tree wrt the initial directory (_DEP_RELDIR). # @@ -55,22 +66,23 @@ # Indicates whether .MAKE.LEVEL 0 builds anything: # if "no" sub-makes are used to build everything, # if "yes" sub-makes are only used to build for other machines. +# It is best to use "no", but this can require fixing some +# makefiles to not do anything at .MAKE.LEVEL 0. # # TARGET_SPEC_VARS -# All the description above (and below) assumes is the -# only data needed to control the build. -# This is not always the case. So in addition to setting -# MACHINE in the build environment we set TARGET_SPEC which is -# composed of the values of TARGET_SPEC_VARS separated by -# commas. The default is just MACHINE. +# The default value is just MACHINE, and for most environments +# this is sufficient. The _DIRDEPS_USE target actually sets +# both MACHINE and TARGET_SPEC to the suffix of the current +# target so that in the general case TARGET_SPEC can be ignored. # -# If more that MACHINE is needed then sys.mk needs to decompose +# If more than MACHINE is needed then sys.mk needs to decompose # TARGET_SPEC and set the relevant variables accordingly. -# It is important that MACHINE be included in TARGET_SPEC_VARS -# since if there is more the value passed as MACHINE will infact -# be the TARGET_SPEC. +# It is important that MACHINE be included in and actually be +# the first member of TARGET_SPEC_VARS. This allows other +# variables to be considered optional, and some of the treatment +# below relies on MACHINE being the first entry. # Note: TARGET_SPEC cannot contain any '.'s so the target -# tripple used by compiler folk won't work (directly anyway). +# triple used by compiler folk won't work (directly anyway). # # For example: # @@ -100,14 +112,48 @@ # do some setup we only need once _CURDIR ?= ${.CURDIR} +# make sure these are empty to start with +_DEP_TARGET_SPEC = +_DIRDEP_CHECKED = + # If TARGET_SPEC_VARS is other than just MACHINE # it should be set by sys.mk or similar by now. # TARGET_SPEC must not contain any '.'s. TARGET_SPEC_VARS ?= MACHINE +# this is what we started with TARGET_SPEC = ${TARGET_SPEC_VARS:@v@${$v:U}@:ts,} +# this is what we mostly use below +DEP_TARGET_SPEC = ${TARGET_SPEC_VARS:S,^,DEP_,:@v@${$v:U}@:ts,} +# make sure we have defaults +.for v in ${TARGET_SPEC_VARS} +DEP_$v ?= ${$v} +.endfor + +.if ${TARGET_SPEC_VARS:[#]} > 1 +# Ok, this gets more complex (putting it mildly). +# In order to stay sane, we need to ensure that all the build_dirs +# we compute below are fully qualified wrt DEP_TARGET_SPEC. +# The makefiles may only partially specify (eg. MACHINE only), +# so we need to construct a set of modifiers to fill in the gaps. +# jot 10 should output 1 2 3 .. 10 +JOT ?= jot +_tspec_x := ${${JOT} ${TARGET_SPEC_VARS:[#]}:L:sh} +# this handles unqualified entries +M_dep_qual_fixes = C;(/[^/.,]+)$$;\1.${DEP_TARGET_SPEC}; +# there needs to be at least one item missing for these to make sense +.for i in ${_tspec_x:[2..-1]} +_tspec_m$i := ${TARGET_SPEC_VARS:[2..$i]:@w@[^,]+@:ts,} +_tspec_a$i := ,${TARGET_SPEC_VARS:[$i..-1]:@v@$${DEP_$v}@:ts,} +M_dep_qual_fixes += C;(\.${_tspec_m$i})$$;\1${_tspec_a$i}; +.endfor +.else +# A harmless? default. +M_dep_qual_fixes = U +.endif .if !defined(.MAKE.DEPENDFILE_PREFERENCE) -# this makes the logic below neater? +# .MAKE.DEPENDFILE_PREFERENCE makes the logic below neater? +# you really want this set by sys.mk or similar .MAKE.DEPENDFILE_PREFERENCE = ${_CURDIR}/${.MAKE.DEPENDFILE:T} .if ${.MAKE.DEPENDFILE:E} == "${TARGET_SPEC}" .if ${TARGET_SPEC} != ${MACHINE} @@ -118,12 +164,12 @@ TARGET_SPEC = ${TARGET_SPEC_VARS:@v@${$v:U}@:ts,} .endif _default_dependfile := ${.MAKE.DEPENDFILE_PREFERENCE:[1]:T} -_machine_dependfiles := ${.MAKE.DEPENDFILE_PREFERENCE:M*.${TARGET_SPEC}} \ - ${.MAKE.DEPENDFILE_PREFERENCE:M*.${MACHINE}} +_machine_dependfiles := ${.MAKE.DEPENDFILE_PREFERENCE:T:M*${MACHINE}*} # for machine specific dependfiles we require ${MACHINE} to be at the end # also for the sake of sanity we require a common prefix .if !defined(.MAKE.DEPENDFILE_PREFIX) +# knowing .MAKE.DEPENDFILE_PREFIX helps .if !empty(_machine_dependfiles) .MAKE.DEPENDFILE_PREFIX := ${_machine_dependfiles:[1]:T:R} .else @@ -133,24 +179,45 @@ _machine_dependfiles := ${.MAKE.DEPENDFILE_PREFERENCE:M*.${TARGET_SPEC}} \ # this is how we identify non-machine specific dependfiles -N_notmachine := ${.MAKE.DEPENDFILE_PREFERENCE:E:N${TARGET_SPEC}:N${MACHINE}:${M_ListToSkip}} +N_notmachine := ${.MAKE.DEPENDFILE_PREFERENCE:E:N*${MACHINE}*:${M_ListToSkip}} .endif # !target(_DIRDEP_USE) +# if we were included recursively _DEP_TARGET_SPEC should be valid. +.if empty(_DEP_TARGET_SPEC) +# we may or may not have included a dependfile yet _last_dependfile := ${.MAKE.MAKEFILES:M*/${.MAKE.DEPENDFILE_PREFIX}*:[-1]} +.if !empty(_debug_reldir) +.info ${DEP_RELDIR}.${DEP_TARGET_SPEC}: _last_dependfile='${_last_dependfile}' +.endif -# Note: if a makefile is read many times, the above -# will not work, so we also test for DEP_MACHINE==depend below. -.if empty(_last_dependfile) -# we haven't included one yet -DEP_MACHINE ?= ${TARGET_MACHINE:U${TARGET_SPEC}} -# else it should be correctly set by ${.MAKE.DEPENDFILE} -.elif ${_last_dependfile:E:${N_notmachine}} == "" || ${DEP_MACHINE:Uno:${N_notmachine}} == "" -# don't rely on manually maintained files to be correct -DEP_MACHINE := ${_DEP_MACHINE:U${TARGET_SPEC}} +.if empty(_last_dependfile) || ${_last_dependfile:E:${N_notmachine}} == "" +# this is all we have to work with +DEP_MACHINE = ${TARGET_MACHINE:U${MACHINE}} +_DEP_TARGET_SPEC := ${DEP_TARGET_SPEC} .else -# just in case -DEP_MACHINE ?= ${_last_dependfile:E} +_DEP_TARGET_SPEC = ${_last_dependfile:${M_dep_qual_fixes:ts:}:E} +.endif +.if !empty(_last_dependfile) +# record that we've read dependfile for this +_DIRDEP_CHECKED += ${_CURDIR}.${TARGET_SPEC} +.endif +.endif + +# by now _DEP_TARGET_SPEC should be set, parse it. +.if ${TARGET_SPEC_VARS:[#]} > 1 +# we need to parse DEP_MACHINE may or may not contain more info +_tspec := ${_DEP_TARGET_SPEC:S/,/ /g} +.for i in ${_tspec_x} +DEP_${TARGET_SPEC_VARS:[$i]} := ${_tspec:[$i]} +.endfor +.for v in ${TARGET_SPEC_VARS:O:u} +.if empty(DEP_$v) +.undef DEP_$v +.endif +.endfor +.else +DEP_MACHINE := ${_DEP_TARGET_SPEC} .endif # pickup customizations @@ -198,12 +265,15 @@ DIRDEPS_FILTER += M${_DEP_RELDIR}* # we supress SUBDIR when visiting the leaves # we assume sys.mk will set MACHINE_ARCH +# you can add extras to DIRDEP_USE_ENV +# if there is no makefile in the target directory, we skip it. _DIRDEP_USE: .USE .MAKE @for m in ${.MAKE.MAKEFILE_PREFERENCE}; do \ test -s ${.TARGET:R}/$$m || continue; \ echo "${TRACER}Checking ${.TARGET:R} for ${.TARGET:E} ..."; \ + MACHINE_ARCH= NO_SUBDIR=1 ${DIRDEP_USE_ENV} \ TARGET_SPEC=${.TARGET:E} \ - MACHINE=${.TARGET:E} MACHINE_ARCH= NO_SUBDIR=1 \ + MACHINE=${.TARGET:E} \ ${.MAKE} -C ${.TARGET:R} || exit 1; \ break; \ done @@ -260,7 +330,7 @@ _this_dir := ${SRCTOP}/${DEP_RELDIR} _dep_hack := ${_this_dir}/${.MAKE.DEPENDFILE_PREFIX}.inc .-include "${_dep_hack}" -.if ${DEP_RELDIR} != ${_DEP_RELDIR} || ${DEP_MACHINE} != ${TARGET_SPEC} +.if ${DEP_RELDIR} != ${_DEP_RELDIR} || ${DEP_TARGET_SPEC} != ${TARGET_SPEC} # this should be all _machines := ${DEP_MACHINE} .else @@ -275,17 +345,23 @@ _machines += host _machines := ${_machines:O:u} .endif -# reset these each time through +.if ${TARGET_SPEC_VARS:[#]} > 1 +# we need to tweak _machines +_dm := ${DEP_MACHINE} +_machines := ${_machines:@DEP_MACHINE@${DEP_TARGET_SPEC}@} +DEP_MACHINE := ${_dm} +.endif + +# reset each time through _build_dirs = -_depdir_files = .if ${DEP_RELDIR} == ${_DEP_RELDIR} # pickup other machines for this dir if necessary .if ${BUILD_AT_LEVEL0:Uyes} == "no" _build_dirs += ${_machines:@m@${_CURDIR}.$m@} .else -_build_dirs += ${_machines:N${DEP_MACHINE}:@m@${_CURDIR}.$m@} -.if ${DEP_MACHINE} == ${TARGET_SPEC} +_build_dirs += ${_machines:N${DEP_TARGET_SPEC}:@m@${_CURDIR}.$m@} +.if ${DEP_TARGET_SPEC} == ${TARGET_SPEC} # pickup local dependencies now .-include <.depend> .endif @@ -293,9 +369,8 @@ _build_dirs += ${_machines:N${DEP_MACHINE}:@m@${_CURDIR}.$m@} .endif .if !empty(_debug_reldir) -.info ${DEP_RELDIR}.${DEP_MACHINE}: _last_dependfile='${_last_dependfile}' -.info ${DEP_RELDIR}.${DEP_MACHINE}: DIRDEPS='${DIRDEPS}' -.info ${DEP_RELDIR}.${DEP_MACHINE}: _machines='${_machines}' +.info ${DEP_RELDIR}.${DEP_TARGET_SPEC}: DIRDEPS='${DIRDEPS}' +.info ${DEP_RELDIR}.${DEP_TARGET_SPEC}: _machines='${_machines}' .endif .if !empty(DIRDEPS) @@ -327,26 +402,8 @@ _build_dirs += \ ${__qual_depdirs:N*.host} \ ${_machines:@m@${__unqual_depdirs:@d@$d.$m@}@} -_build_dirs := ${_build_dirs:O:u} - -# this is where we will pick up more dependencies from -# the inner inline loops look complex, but save a significant -# amount of memory compared to a .for loop. -_depdir_files = -.for d in ${_build_dirs} -.if exists($d) -# easy, we're building for ${MACHINE} -_depdir_files += ${.MAKE.DEPENDFILE_PREFERENCE:T:@m@${exists($d/$m):?$d/$m:}@:[1]} -.elif exists(${d:R}) && ${d:R:T} == ${d:T:R} -# a little more complex - building for another machine -# we will ensure the file is qualified with a machine -# so that if necessary _DEP_MACHINE can be set below -_depdir_files += ${.MAKE.DEPENDFILE_PREFERENCE:T:S,.${TARGET_SPEC}$,.${d:E},:S,.${MACHINE}$,.${d:E},:@m@${exists(${d:R}/$m):?${d:R}/$m:}@:[1]:@m@${"${m:M*.${d:E}}":?$m:$m.${d:E}}@} -.endif -.endfor - -# clean up -_depdir_files := ${_depdir_files:O:u} +# qualify everything now +_build_dirs := ${_build_dirs:${M_dep_qual_fixes:ts:}:O:u} .endif # empty DIRDEPS @@ -360,48 +417,57 @@ dirdeps: ${_build_dirs} ${_build_dirs}: _DIRDEP_USE .if !empty(_debug_reldir) -.info ${DEP_RELDIR}.${DEP_MACHINE}: ${_build_dirs} +.info ${DEP_RELDIR}.${DEP_TARGET_SPEC}: needs: ${_build_dirs} .endif +# this builds the dependency graph .for m in ${_machines} # it would be nice to do :N${.TARGET} .if !empty(__qual_depdirs) -.for q in ${__qual_depdirs:E:O:u:N$m} +.for q in ${__qual_depdirs:${M_dep_qual_fixes:ts:}:E:O:u:N$m} .if !empty(_debug_reldir) || ${DEBUG_DIRDEPS:@x@${${DEP_RELDIR}.$m:L:M$x}${${DEP_RELDIR}.$q:L:M$x}@} != "" -.info ${DEP_RELDIR}.$m: ${_build_dirs:M*.$q} +.info ${DEP_RELDIR}.$m: graph: ${_build_dirs:M*.$q} .endif ${_this_dir}.$m: ${_build_dirs:M*.$q} .endfor .endif .if !empty(_debug_reldir) -.info ${DEP_RELDIR}.$m: ${_build_dirs:M*.$m:N${_this_dir}.$m} +.info ${DEP_RELDIR}.$m: graph: ${_build_dirs:M*.$m:N${_this_dir}.$m} .endif ${_this_dir}.$m: ${_build_dirs:M*.$m:N${_this_dir}.$m} .endfor .endif -.for d in ${_depdir_files} -.if ${.MAKE.MAKEFILES:M${d}} == "" +# Now find more dependencies - and recurse. +.for d in ${_build_dirs} +.if ${_DIRDEP_CHECKED:M$d} == "" +# once only +_DIRDEP_CHECKED += $d +# Note: _build_dirs is fully qualifed so d:R is always the directory +.if exists(${d:R}) +# Warning: there is an assumption here that MACHINE is always +# the first entry in TARGET_SPEC_VARS. +# If TARGET_SPEC and MACHINE are insufficient, you have a problem. +_m := ${.MAKE.DEPENDFILE_PREFERENCE:T:S;${TARGET_SPEC}$;${d:E};:S;${MACHINE};${d:E:C/,.*//};:@m@${exists(${d:R}/$m):?${d:R}/$m:}@:[1]} +.if !empty(_m) +_qm := ${_m:${M_dep_qual_fixes:ts:}} .if !empty(_debug_search) -.info Looking for $d +.info Looking for ${_qm} .endif -.if exists($d) -.include <$d> -.elif exists(${d:R}) -# an unqualified file exists, we qualified it above so we can set _DEP_MACHINE -# it might be manually maintained and shared by all machine types -# tell it the machine we are interested in. -_DEP_MACHINE := ${d:E} -.if !empty(_debug_reldir) -.info loading ${d:R} for ${_DEP_MACHINE} +# we pass _DEP_TARGET_SPEC to tell the next step what we want +_DEP_TARGET_SPEC := ${d:E} +# some makefiles may still look at this +_DEP_MACHINE := ${d:E:C/,.*//} +.if !empty(_debug_reldir) && ${_qm} != ${_m} +.info loading ${_m} for ${d:E} +.endif +.include <${_m}> .endif -# pretend we read $d, so we don't come by here again. -.MAKE.MAKEFILES += $d -.include <${d:R}> .endif .endif .endfor + .endif # -V .elif ${.MAKE.LEVEL} > 42 diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk index 890f4956f38e..8572a7adeb12 100644 --- a/share/mk/gendirdeps.mk +++ b/share/mk/gendirdeps.mk @@ -1,6 +1,7 @@ -# $Id: gendirdeps.mk,v 1.10 2012/06/30 00:37:50 sjg Exp $ +# $Id: gendirdeps.mk,v 1.12 2013/02/10 19:59:10 sjg Exp $ -# Copyright (c) 2010, Juniper Networks, Inc. +# Copyright (c) 2010-2013, Juniper Networks, Inc. +# All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions @@ -106,25 +107,26 @@ _py_d = # we can afford to do this all the time. DPDEPS ?= no META2DEPS_CMD = ${_time} ${PYTHON} ${META2DEPS} ${_py_d} \ - -R ${RELDIR} -H ${HOST_TARGET} -O ${M2D_OBJROOT} + -R ${RELDIR} -H ${HOST_TARGET} \ + ${M2D_OBJROOTS:O:u:@o@-O $o@} + .if ${DPDEPS:tl} != "no" META2DEPS_CMD += -D ${DPDEPS} .endif + +M2D_OBJROOTS += ${OBJTOP}/ ${_OBJROOT} +.if defined(SB_OBJROOT) +M2D_OBJROOTS += ${SB_OBJROOT} +.endif .if ${.MAKE.DEPENDFILE_PREFERENCE:U${.MAKE.DEPENDFILE}:M*.${MACHINE}} == "" # meta2deps.py only groks objroot # so we need to give it what it expects -M2D_OBJROOT = ${OBJTOP}/ # and tell it not to add machine qualifiers META2DEPS_ARGS += MACHINE=none -.else -.if defined(SB_OBJROOT) -M2D_OBJROOT ?= ${SB_OBJROOT} -.else -M2D_OBJROOT = ${OBJTOP}/ -.endif .endif .if defined(SB_BACKING_SB) -META2DEPS_CMD += -S ${SB_BACKING_SB}/src -O ${SB_BACKING_SB}/${SB_OBJPREFIX} +META2DEPS_CMD += -S ${SB_BACKING_SB}/src +M2D_OBJROOTS += ${SB_BACKING_SB}/${SB_OBJPREFIX} .endif META2DEPS_FILTER = sed 's,^src:,${SRCTOP}/,;s,^\([^/]\),${OBJTOP}/\1,' | .elif ${META2DEPS:E} == "sh" @@ -263,7 +265,6 @@ CAT_DEPEND ?= .depend ${_DEPENDFILE}: ${CAT_DEPEND:M.depend} ${META_FILES:O:u:@m@${exists($m):?$m:}@} ${_this} ${META2DEPS} @(echo '# Autogenerated - do NOT edit!'; echo; \ echo 'DEP_RELDIR := $${_PARSEDIR:S,$${SRCTOP}/,,}'; echo; \ - echo 'DEP_MACHINE := $${.PARSEFILE:E}'; echo; \ echo 'DIRDEPS = \'; \ echo '${DIRDEPS:@d@ $d \\${.newline}@}'; echo; \ ${_include_src_dirdeps} \ @@ -285,7 +286,6 @@ all: ${_DEPENDFILE} ${_DEPENDFILE}: ${MAKEFILE} ${_this} @(echo '# Autogenerated - do NOT edit!'; echo; \ echo 'DEP_RELDIR := $${_PARSEDIR:S,$${SRCTOP}/,,}'; echo; \ - echo 'DEP_MACHINE := $${.PARSEFILE:E}'; echo; \ echo 'DIRDEPS = \'; \ echo '${DIRDEPS:@d@ $d \\${.newline}@}'; echo; \ echo '.include '; \ diff --git a/share/mk/meta2deps.py b/share/mk/meta2deps.py index cb6d3213b221..a2bf05b3d3c0 100755 --- a/share/mk/meta2deps.py +++ b/share/mk/meta2deps.py @@ -35,9 +35,10 @@ """ RCSid: - $Id: meta2deps.py,v 1.7 2012/11/06 05:44:03 sjg Exp $ + $Id: meta2deps.py,v 1.8 2013/02/10 19:21:46 sjg Exp $ - Copyright (c) 2011, Juniper Networks, Inc. + Copyright (c) 2011-2013, Juniper Networks, Inc. + All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -174,6 +175,8 @@ def __init__(self, name, conf={}): self.debug = getv(conf, 'debug', 0) self.debug_out = getv(conf, 'debug_out', sys.stderr) + self.machine = getv(conf, 'MACHINE', '') + if not self.conf: # some of the steps below we want to do only once self.conf = conf @@ -190,6 +193,12 @@ def __init__(self, name, conf={}): self.srctops.append(_srctop) for objroot in getv(conf, 'OBJROOTS', []): + for e in ['/' + self.machine, '/' + self.machine + '/']: + if objroot.endswith(e): + # this is not what we want - fix it + objroot = objroot[0:-len(e)] + if e.endswith('/'): + objroot += '/' if not objroot in self.objroots: self.objroots.append(objroot) _objroot = os.path.realpath(objroot) @@ -198,6 +207,10 @@ def __init__(self, name, conf={}): if not _objroot in self.objroots: self.objroots.append(_objroot) + # we want the longest match + self.srctops.sort(reverse=True) + self.objroots.sort(reverse=True) + if self.debug: print >> self.debug_out, "host_target=", self.host_target print >> self.debug_out, "srctops=", self.srctops @@ -206,7 +219,6 @@ def __init__(self, name, conf={}): self.dirdep_re = re.compile(r'([^/]+)/(.+)') self.curdir = getv(conf, 'CURDIR') - self.machine = getv(conf, 'MACHINE', '') self.reldir = getv(conf, 'RELDIR') self.dpdeps = getv(conf, 'DPDEPS') if self.dpdeps and not self.reldir: From 6bc671bb672ff8850055b58e9151b841e71ce60d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 16 Feb 2013 01:19:18 +0000 Subject: [PATCH 036/228] If MAKESYSPATH contained .../ entry resolve it so that it still works when we launch make from obj tree. If we don't have sysroot support we need some c++ and clang specific include dirs in the stage tree. --- share/mk/local.sys.mk | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index d1362013dafe..f36632863404 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -108,6 +108,11 @@ WITH_STAGING_PROG= yes PYTHON ?= /usr/local/bin/python .if ${.MAKE.LEVEL} == 0 +.if ${MAKESYSPATH:Uno:M*.../*} != "" +# make sure this is resolved +MAKESYSPATH:= ${MAKESYSPATH:S,:, ,g:C,\.\.\./.*,${_this:H},:ts:} +.export MAKESYSPATH +.endif # this works best if share/mk is ready for it. BUILD_AT_LEVEL0= no # By default only MACHINE0 updates dependencies @@ -146,8 +151,13 @@ STAGE_SYMLINKS_DIR= ${STAGE_OBJTOP} CFLAGS_LAST+= -nostdinc .endif CFLAGS_LAST+= -isystem ${STAGE_OBJTOP}/usr/include -isystem ${STAGE_OBJTOP}/include +CFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} LDFLAGS_LAST+= -B${STAGE_LIBDIR} -L${STAGE_LIBDIR} -CXXFLAGS_LAST+= -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER:U4.2} +CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER:U4.2} +# backward doesn't get searched if -nostdinc +CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER:U4.2}/backward +CFLAGS_LAST.clang += -isystem ${STAGE_OBJTOP}/usr/include/clang/3.2 +CXXFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} .else # if ld suppored sysroot, this would suffice CFLAGS_LAST+= --sysroot=${STAGE_OBJTOP} -isystem ${STAGE_OBJTOP}/include @@ -202,6 +212,11 @@ MAKE_PRINT_VAR_ON_ERROR+= \ OBJTOP \ ${MAKE_PRINT_VAR_ON_ERROR_XTRAS} +.if ${.MAKE.LEVEL} > 0 +MAKE_PRINT_VAR_ON_ERROR += .MAKE.MAKEFILES .PATH +.endif + + # these are handy # we can use this for a cheap timestamp at the start of a target's script, # but not at the end - since make will expand both at the same time. From 5ac3e457ef3bfd546bf690ab1896744d98fb80ef Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 16 Feb 2013 01:20:56 +0000 Subject: [PATCH 037/228] We may only have INCSLINKS, and STAGE_SYMLINKS should all be full paths. --- share/mk/bsd.incs.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.incs.mk b/share/mk/bsd.incs.mk index 2546dfdd8df8..9d614be4a2a9 100644 --- a/share/mk/bsd.incs.mk +++ b/share/mk/bsd.incs.mk @@ -97,10 +97,10 @@ buildincludes: stage_files .if !empty(STAGE_AS_SETS) buildincludes: stage_as .endif +.endif .if !empty(INCSLINKS) stage_files: stage_symlinks -STAGE_SYMLINKS.INCS= ${INCSLINKS:S,${INCSDIR}/,,} -.endif +STAGE_SYMLINKS.INCS= ${INCSLINKS} .endif .endif .endif From f5f7c05209ca2c3748fd8b27c5e80ffad49120eb Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 16 Feb 2013 01:23:54 +0000 Subject: [PATCH 038/228] Updated dependencies --- bin/cat/Makefile.depend | 2 -- bin/chflags/Makefile.depend | 2 -- bin/chio/Makefile.depend | 2 -- bin/chmod/Makefile.depend | 2 -- bin/cp/Makefile.depend | 2 -- bin/csh/Makefile.depend | 2 -- bin/date/Makefile.depend | 2 -- bin/dd/Makefile.depend | 2 -- bin/df/Makefile.depend | 2 -- bin/domainname/Makefile.depend | 2 -- bin/echo/Makefile.depend | 2 -- bin/ed/Makefile.depend | 2 -- bin/expr/Makefile.depend | 2 -- bin/getfacl/Makefile.depend | 2 -- bin/hostname/Makefile.depend | 2 -- bin/kenv/Makefile.depend | 2 -- bin/kill/Makefile.depend | 2 -- bin/ln/Makefile.depend | 2 -- bin/ls/Makefile.depend | 2 -- bin/mkdir/Makefile.depend | 2 -- bin/mv/Makefile.depend | 2 -- bin/pax/Makefile.depend | 2 -- bin/pkill/Makefile.depend | 2 -- bin/ps/Makefile.depend | 2 -- bin/pwait/Makefile.depend | 2 -- bin/pwd/Makefile.depend | 2 -- bin/rcp/Makefile.depend | 2 -- bin/realpath/Makefile.depend | 2 -- bin/rm/Makefile.depend | 2 -- bin/rmail/Makefile.depend | 2 -- bin/rmdir/Makefile.depend | 2 -- bin/setfacl/Makefile.depend | 2 -- bin/sh/Makefile.depend | 4 ++-- bin/sleep/Makefile.depend | 2 -- bin/stty/Makefile.depend | 2 -- bin/sync/Makefile.depend | 2 -- bin/test/Makefile.depend | 2 -- bin/uuidgen/Makefile.depend | 2 -- cddl/lib/drti/Makefile.depend | 2 -- cddl/lib/libavl/Makefile.depend | 2 -- cddl/lib/libctf/Makefile.depend | 2 -- cddl/lib/libdtrace/Makefile.depend | 2 -- cddl/lib/libnvpair/Makefile.depend | 2 -- cddl/lib/libumem/Makefile.depend | 2 -- cddl/lib/libuutil/Makefile.depend | 2 -- cddl/lib/libzfs/Makefile.depend | 2 -- cddl/lib/libzpool/Makefile.depend | 2 -- cddl/sbin/zfs/Makefile.depend | 2 -- cddl/sbin/zpool/Makefile.depend | 2 -- cddl/usr.bin/ctfconvert/Makefile.depend | 2 -- cddl/usr.bin/ctfdump/Makefile.depend | 2 -- cddl/usr.bin/ctfmerge/Makefile.depend | 2 -- cddl/usr.bin/sgsmsg/Makefile.depend | 2 -- cddl/usr.bin/zinject/Makefile.depend | 2 -- cddl/usr.bin/zstreamdump/Makefile.depend | 2 -- cddl/usr.bin/ztest/Makefile.depend | 2 -- cddl/usr.sbin/dtrace/Makefile.depend | 2 -- cddl/usr.sbin/dtruss/Makefile.depend | 2 -- cddl/usr.sbin/lockstat/Makefile.depend | 2 -- cddl/usr.sbin/zdb/Makefile.depend | 2 -- cddl/usr.sbin/zhack/Makefile.depend | 2 -- games/bcd/Makefile.depend | 2 -- games/caesar/Makefile.depend | 2 -- games/factor/Makefile.depend | 2 -- games/fortune/datfiles/Makefile.depend | 2 -- games/fortune/fortune/Makefile.depend | 2 -- games/fortune/strfile/Makefile.depend | 2 -- games/fortune/unstr/Makefile.depend | 2 -- games/grdc/Makefile.depend | 2 -- games/morse/Makefile.depend | 2 -- games/number/Makefile.depend | 2 -- games/pom/Makefile.depend | 2 -- games/ppt/Makefile.depend | 2 -- games/primes/Makefile.depend | 2 -- games/random/Makefile.depend | 2 -- gnu/lib/csu/Makefile.depend | 2 -- gnu/lib/libdialog/Makefile.depend | 2 -- gnu/lib/libgcc/Makefile.depend | 2 -- gnu/lib/libgcov/Makefile.depend | 2 -- gnu/lib/libgomp/Makefile.depend | 2 -- gnu/lib/libreadline/readline/Makefile.depend | 2 -- gnu/lib/libregex/Makefile.depend | 2 -- gnu/lib/libssp/libssp_nonshared/Makefile.depend | 2 -- gnu/lib/libstdc++/Makefile.depend | 2 -- gnu/lib/libsupc++/Makefile.depend | 2 -- gnu/usr.bin/binutils/addr2line/Makefile.depend | 2 -- gnu/usr.bin/binutils/ar/Makefile.depend | 2 -- gnu/usr.bin/binutils/as/Makefile.depend | 2 -- gnu/usr.bin/binutils/ld/Makefile.depend.amd64 | 2 -- gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 | 2 -- gnu/usr.bin/binutils/libbinutils/Makefile.depend | 2 -- gnu/usr.bin/binutils/libiberty/Makefile.depend | 2 -- gnu/usr.bin/binutils/libopcodes/Makefile.depend | 2 -- gnu/usr.bin/binutils/nm/Makefile.depend | 2 -- gnu/usr.bin/binutils/objcopy/Makefile.depend | 2 -- gnu/usr.bin/binutils/objdump/Makefile.depend | 2 -- gnu/usr.bin/binutils/ranlib/Makefile.depend | 2 -- gnu/usr.bin/binutils/readelf/Makefile.depend | 2 -- gnu/usr.bin/binutils/size/Makefile.depend | 2 -- gnu/usr.bin/binutils/strings/Makefile.depend | 2 -- gnu/usr.bin/binutils/strip/Makefile.depend | 2 -- gnu/usr.bin/cc/cc_int/Makefile.depend | 2 -- gnu/usr.bin/cc/cc_tools/Makefile.depend | 2 -- gnu/usr.bin/cc/include/Makefile.depend | 2 -- gnu/usr.bin/cc/libcpp/Makefile.depend | 2 -- gnu/usr.bin/cc/libdecnumber/Makefile.depend | 2 -- gnu/usr.bin/cc/libiberty/Makefile.depend | 2 -- gnu/usr.bin/cvs/contrib/Makefile.depend | 2 -- gnu/usr.bin/cvs/cvs/Makefile.depend | 2 -- gnu/usr.bin/cvs/cvsbug/Makefile.depend | 2 -- gnu/usr.bin/cvs/lib/Makefile.depend | 2 -- gnu/usr.bin/cvs/libdiff/Makefile.depend | 2 -- gnu/usr.bin/dialog/Makefile.depend | 2 -- gnu/usr.bin/diff3/Makefile.depend | 2 -- gnu/usr.bin/gdb/gdb/Makefile.depend | 2 -- gnu/usr.bin/gdb/gdbserver/Makefile.depend | 2 -- gnu/usr.bin/gdb/gdbtui/Makefile.depend | 2 -- gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 | 2 -- gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 | 2 -- gnu/usr.bin/groff/contrib/mm/Makefile.depend | 2 -- gnu/usr.bin/groff/font/devascii/Makefile.depend | 2 -- gnu/usr.bin/groff/font/devcp1047/Makefile.depend | 2 -- gnu/usr.bin/groff/font/devdvi/Makefile.depend | 2 -- gnu/usr.bin/groff/font/devhtml/Makefile.depend | 2 -- gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend | 2 -- gnu/usr.bin/groff/font/devlatin1/Makefile.depend | 2 -- gnu/usr.bin/groff/font/devlbp/Makefile.depend | 2 -- gnu/usr.bin/groff/font/devlj4/Makefile.depend | 2 -- gnu/usr.bin/groff/font/devps/Makefile.depend | 2 -- gnu/usr.bin/groff/font/devutf8/Makefile.depend | 2 -- gnu/usr.bin/groff/man/Makefile.depend | 2 -- gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend | 2 -- gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend | 2 -- gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend | 2 -- gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend | 2 -- gnu/usr.bin/groff/src/devices/grops/Makefile.depend | 2 -- gnu/usr.bin/groff/src/devices/grotty/Makefile.depend | 2 -- gnu/usr.bin/groff/src/libs/libbib/Makefile.depend | 2 -- gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend | 2 -- gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend | 2 -- gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend | 2 -- gnu/usr.bin/groff/src/preproc/grn/Makefile.depend | 2 -- gnu/usr.bin/groff/src/preproc/html/Makefile.depend | 2 -- gnu/usr.bin/groff/src/preproc/pic/Makefile.depend | 2 -- gnu/usr.bin/groff/src/preproc/refer/Makefile.depend | 2 -- gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend | 2 -- gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend | 2 -- gnu/usr.bin/groff/src/roff/groff/Makefile.depend | 2 -- gnu/usr.bin/groff/src/roff/grog/Makefile.depend | 2 -- gnu/usr.bin/groff/src/roff/nroff/Makefile.depend | 2 -- gnu/usr.bin/groff/src/roff/psroff/Makefile.depend | 2 -- gnu/usr.bin/groff/src/roff/troff/Makefile.depend | 2 -- gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend | 2 -- gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend | 2 -- gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend | 2 -- gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend | 2 -- gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend | 2 -- gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend | 2 -- gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend | 2 -- gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend | 2 -- gnu/usr.bin/groff/tmac/Makefile.depend | 2 -- gnu/usr.bin/patch/Makefile.depend | 2 -- gnu/usr.bin/rcs/ci/Makefile.depend | 2 -- gnu/usr.bin/rcs/co/Makefile.depend | 2 -- gnu/usr.bin/rcs/ident/Makefile.depend | 2 -- gnu/usr.bin/rcs/lib/Makefile.depend | 2 -- gnu/usr.bin/rcs/merge/Makefile.depend | 2 -- gnu/usr.bin/rcs/rcs/Makefile.depend | 2 -- gnu/usr.bin/rcs/rcsclean/Makefile.depend | 2 -- gnu/usr.bin/rcs/rcsdiff/Makefile.depend | 2 -- gnu/usr.bin/rcs/rcsfreeze/Makefile.depend | 2 -- gnu/usr.bin/rcs/rcsmerge/Makefile.depend | 2 -- gnu/usr.bin/rcs/rlog/Makefile.depend | 2 -- gnu/usr.bin/sdiff/Makefile.depend | 2 -- gnu/usr.bin/texinfo/info/Makefile.depend | 2 -- gnu/usr.bin/texinfo/infokey/Makefile.depend | 2 -- gnu/usr.bin/texinfo/install-info/Makefile.depend | 2 -- gnu/usr.bin/texinfo/libtxi/Makefile.depend | 2 -- gnu/usr.bin/texinfo/makeinfo/Makefile.depend | 2 -- gnu/usr.bin/texinfo/texindex/Makefile.depend | 2 -- include/Makefile.depend | 2 -- include/arpa/Makefile.depend | 2 -- include/gssapi/Makefile.depend | 2 -- include/protocols/Makefile.depend | 2 -- include/rpc/Makefile.depend | 2 -- include/rpcsvc/Makefile.depend | 2 -- include/xlocale/Makefile.depend | 2 -- kerberos5/lib/libasn1/Makefile.depend | 2 -- kerberos5/lib/libgssapi_krb5/Makefile.depend | 2 -- kerberos5/lib/libgssapi_ntlm/Makefile.depend | 2 -- kerberos5/lib/libgssapi_spnego/Makefile.depend | 2 -- kerberos5/lib/libhdb/Makefile.depend | 2 -- kerberos5/lib/libheimbase/Makefile.depend | 2 -- kerberos5/lib/libheimipcc/Makefile.depend | 2 -- kerberos5/lib/libheimipcs/Makefile.depend | 2 -- kerberos5/lib/libheimntlm/Makefile.depend | 2 -- kerberos5/lib/libheimsqlite/Makefile.depend | 2 -- kerberos5/lib/libhx509/Makefile.depend | 2 -- kerberos5/lib/libkadm5clnt/Makefile.depend | 2 -- kerberos5/lib/libkadm5srv/Makefile.depend | 2 -- kerberos5/lib/libkafs5/Makefile.depend | 2 -- kerberos5/lib/libkdc/Makefile.depend | 2 -- kerberos5/lib/libkrb5/Makefile.depend | 2 -- kerberos5/lib/libroken/Makefile.depend | 2 -- kerberos5/lib/libsl/Makefile.depend | 2 -- kerberos5/lib/libvers/Makefile.depend | 2 -- kerberos5/lib/libwind/Makefile.depend | 2 -- kerberos5/libexec/digest-service/Makefile.depend | 2 -- kerberos5/libexec/hprop/Makefile.depend | 2 -- kerberos5/libexec/hpropd/Makefile.depend | 2 -- kerberos5/libexec/ipropd-master/Makefile.depend | 2 -- kerberos5/libexec/ipropd-slave/Makefile.depend | 2 -- kerberos5/libexec/kadmind/Makefile.depend | 2 -- kerberos5/libexec/kcm/Makefile.depend | 2 -- kerberos5/libexec/kdc/Makefile.depend | 2 -- kerberos5/libexec/kdigest/Makefile.depend | 2 -- kerberos5/libexec/kfd/Makefile.depend | 2 -- kerberos5/libexec/kimpersonate/Makefile.depend | 2 -- kerberos5/libexec/kpasswdd/Makefile.depend | 2 -- kerberos5/tools/asn1_compile/Makefile.depend | 2 -- kerberos5/tools/make-roken/Makefile.depend | 2 -- kerberos5/tools/slc/Makefile.depend | 2 -- kerberos5/usr.bin/hxtool/Makefile.depend | 2 -- kerberos5/usr.bin/kadmin/Makefile.depend | 2 -- kerberos5/usr.bin/kcc/Makefile.depend | 2 -- kerberos5/usr.bin/kdestroy/Makefile.depend | 2 -- kerberos5/usr.bin/kf/Makefile.depend | 2 -- kerberos5/usr.bin/kgetcred/Makefile.depend | 2 -- kerberos5/usr.bin/kinit/Makefile.depend | 2 -- kerberos5/usr.bin/kpasswd/Makefile.depend | 2 -- kerberos5/usr.bin/krb5-config/Makefile.depend | 2 -- kerberos5/usr.bin/ksu/Makefile.depend | 2 -- kerberos5/usr.bin/string2key/Makefile.depend | 2 -- kerberos5/usr.bin/verify_krb5_conf/Makefile.depend | 2 -- kerberos5/usr.sbin/iprop-log/Makefile.depend | 2 -- kerberos5/usr.sbin/kstash/Makefile.depend | 2 -- kerberos5/usr.sbin/ktutil/Makefile.depend | 2 -- lib/atf/libatf-c++/Makefile.depend | 2 -- lib/atf/libatf-c/Makefile.depend | 2 -- lib/bind/bind9/Makefile.depend | 2 -- lib/bind/dns/Makefile.depend | 2 -- lib/bind/isc/Makefile.depend | 2 -- lib/bind/isccc/Makefile.depend | 2 -- lib/bind/isccfg/Makefile.depend | 2 -- lib/bind/lwres/Makefile.depend | 2 -- lib/csu/amd64/Makefile.depend | 2 -- lib/libalias/libalias/Makefile.depend | 2 -- lib/libalias/modules/cuseeme/Makefile.depend | 2 -- lib/libalias/modules/dummy/Makefile.depend | 2 -- lib/libalias/modules/ftp/Makefile.depend | 2 -- lib/libalias/modules/irc/Makefile.depend | 2 -- lib/libalias/modules/nbt/Makefile.depend | 2 -- lib/libalias/modules/pptp/Makefile.depend | 2 -- lib/libalias/modules/skinny/Makefile.depend | 2 -- lib/libalias/modules/smedia/Makefile.depend | 2 -- lib/libarchive/Makefile.depend | 2 -- lib/libauditd/Makefile.depend | 2 -- lib/libbegemot/Makefile.depend | 2 -- lib/libblocksruntime/Makefile.depend | 2 -- lib/libbluetooth/Makefile.depend | 2 -- lib/libbsm/Makefile.depend | 2 -- lib/libbsnmp/libbsnmp/Makefile.depend | 2 -- lib/libbz2/Makefile.depend | 2 -- lib/libc/Makefile.depend | 2 -- lib/libcalendar/Makefile.depend | 2 -- lib/libcam/Makefile.depend | 2 -- lib/libcom_err/Makefile.depend | 2 -- lib/libcompat/Makefile.depend | 2 -- lib/libcompiler_rt/Makefile.depend | 2 -- lib/libcrypt/Makefile.depend | 2 -- lib/libdevinfo/Makefile.depend | 2 -- lib/libdevstat/Makefile.depend | 2 -- lib/libdwarf/Makefile.depend | 2 -- lib/libedit/Makefile.depend | 2 -- lib/libedit/edit/readline/Makefile.depend | 2 -- lib/libelf/Makefile.depend | 2 -- lib/libexpat/Makefile.depend | 2 -- lib/libfetch/Makefile.depend | 2 -- lib/libgeom/Makefile.depend | 2 -- lib/libgpib/Makefile.depend | 2 -- lib/libgssapi/Makefile.depend | 2 -- lib/libipsec/Makefile.depend | 2 -- lib/libipx/Makefile.depend | 2 -- lib/libjail/Makefile.depend | 2 -- lib/libkiconv/Makefile.depend | 2 -- lib/libkvm/Makefile.depend | 2 -- lib/liblzma/Makefile.depend | 2 -- lib/libmagic/Makefile.depend | 2 -- lib/libmandoc/Makefile.depend | 2 -- lib/libmd/Makefile.depend | 2 -- lib/libmemstat/Makefile.depend | 2 -- lib/libmilter/Makefile.depend | 2 -- lib/libmp/Makefile.depend | 2 -- lib/libnetgraph/Makefile.depend | 2 -- lib/libngatm/Makefile.depend | 2 -- lib/libopie/Makefile.depend | 2 -- lib/libpam/libpam/Makefile.depend | 2 -- lib/libpam/modules/pam_chroot/Makefile.depend | 2 -- lib/libpam/modules/pam_deny/Makefile.depend | 2 -- lib/libpam/modules/pam_echo/Makefile.depend | 2 -- lib/libpam/modules/pam_exec/Makefile.depend | 2 -- lib/libpam/modules/pam_ftpusers/Makefile.depend | 2 -- lib/libpam/modules/pam_group/Makefile.depend | 2 -- lib/libpam/modules/pam_guest/Makefile.depend | 2 -- lib/libpam/modules/pam_krb5/Makefile.depend | 2 -- lib/libpam/modules/pam_ksu/Makefile.depend | 2 -- lib/libpam/modules/pam_lastlog/Makefile.depend | 2 -- lib/libpam/modules/pam_login_access/Makefile.depend | 2 -- lib/libpam/modules/pam_nologin/Makefile.depend | 2 -- lib/libpam/modules/pam_opie/Makefile.depend | 2 -- lib/libpam/modules/pam_opieaccess/Makefile.depend | 2 -- lib/libpam/modules/pam_passwdqc/Makefile.depend | 2 -- lib/libpam/modules/pam_permit/Makefile.depend | 2 -- lib/libpam/modules/pam_radius/Makefile.depend | 2 -- lib/libpam/modules/pam_rhosts/Makefile.depend | 2 -- lib/libpam/modules/pam_rootok/Makefile.depend | 2 -- lib/libpam/modules/pam_securetty/Makefile.depend | 2 -- lib/libpam/modules/pam_self/Makefile.depend | 2 -- lib/libpam/modules/pam_ssh/Makefile.depend | 2 -- lib/libpam/modules/pam_tacplus/Makefile.depend | 2 -- lib/libpam/modules/pam_unix/Makefile.depend | 2 -- lib/libpcap/Makefile.depend | 2 -- lib/libpmc/Makefile.depend | 2 -- lib/libproc/Makefile.depend | 3 --- lib/libprocstat/Makefile.depend | 2 -- lib/libprocstat/zfs/Makefile.depend | 2 -- lib/libradius/Makefile.depend | 2 -- lib/librpcsec_gss/Makefile.depend | 2 -- lib/librpcsvc/Makefile.depend | 2 -- lib/librt/Makefile.depend | 2 -- lib/librtld_db/Makefile.depend | 2 -- lib/libsbuf/Makefile.depend | 2 -- lib/libsdp/Makefile.depend | 2 -- lib/libsm/Makefile.depend | 2 -- lib/libsmdb/Makefile.depend | 2 -- lib/libsmutil/Makefile.depend | 2 -- lib/libstand/Makefile.depend | 2 -- lib/libstdbuf/Makefile.depend | 2 -- lib/libstdthreads/Makefile.depend | 2 -- lib/libtacplus/Makefile.depend | 2 -- lib/libtelnet/Makefile.depend | 2 -- lib/libthr/Makefile.depend | 2 -- lib/libthread_db/Makefile.depend | 2 -- lib/libufs/Makefile.depend | 2 -- lib/libugidfw/Makefile.depend | 2 -- lib/libulog/Makefile.depend | 2 -- lib/libusb/Makefile.depend | 2 -- lib/libusbhid/Makefile.depend | 2 -- lib/libutil/Makefile.depend | 2 -- lib/libvgl/Makefile.depend | 2 -- lib/libwrap/Makefile.depend | 2 -- lib/liby/Makefile.depend | 2 -- lib/libypclnt/Makefile.depend | 2 -- lib/libz/Makefile.depend | 2 -- lib/msun/Makefile.depend | 2 -- lib/ncurses/form/Makefile.depend | 2 -- lib/ncurses/formw/Makefile.depend | 2 -- lib/ncurses/menu/Makefile.depend | 2 -- lib/ncurses/menuw/Makefile.depend | 2 -- lib/ncurses/ncurses/Makefile.depend | 2 -- lib/ncurses/ncursesw/Makefile.depend | 2 -- lib/ncurses/panel/Makefile.depend | 2 -- lib/ncurses/panelw/Makefile.depend | 2 -- libexec/atf/atf-check/Makefile.depend | 2 -- libexec/atrun/Makefile.depend | 2 -- libexec/bootpd/bootpgw/Makefile.depend | 2 -- libexec/bootpd/tools/bootpef/Makefile.depend | 2 -- libexec/bootpd/tools/bootptest/Makefile.depend | 2 -- libexec/comsat/Makefile.depend | 2 -- libexec/fingerd/Makefile.depend | 2 -- libexec/ftpd/Makefile.depend | 2 -- libexec/getty/Makefile.depend | 2 -- libexec/mail.local/Makefile.depend | 2 -- libexec/mknetid/Makefile.depend | 2 -- libexec/pppoed/Makefile.depend | 2 -- libexec/rbootd/Makefile.depend | 2 -- libexec/revnetgroup/Makefile.depend | 2 -- libexec/rlogind/Makefile.depend | 2 -- libexec/rpc.rquotad/Makefile.depend | 2 -- libexec/rpc.rstatd/Makefile.depend | 2 -- libexec/rpc.rusersd/Makefile.depend | 2 -- libexec/rpc.rwalld/Makefile.depend | 2 -- libexec/rpc.sprayd/Makefile.depend | 2 -- libexec/rshd/Makefile.depend | 2 -- libexec/rtld-elf/Makefile.depend | 2 -- libexec/smrsh/Makefile.depend | 2 -- libexec/talkd/Makefile.depend | 2 -- libexec/tcpd/Makefile.depend | 2 -- libexec/telnetd/Makefile.depend | 2 -- libexec/tftp-proxy/Makefile.depend | 2 -- libexec/tftpd/Makefile.depend | 2 -- libexec/ulog-helper/Makefile.depend | 2 -- libexec/ypxfr/Makefile.depend | 2 -- pkgs/pseudo/bin/Makefile.depend | 2 -- pkgs/pseudo/cddl/Makefile.depend | 2 -- pkgs/pseudo/clang/Makefile.depend | 2 -- pkgs/pseudo/games/Makefile.depend | 2 -- pkgs/pseudo/gcc/Makefile.depend | 2 -- pkgs/pseudo/gnu/Makefile.depend | 2 -- pkgs/pseudo/include/Makefile.depend | 2 -- pkgs/pseudo/kerberos5/Makefile.depend | 2 -- pkgs/pseudo/lib/Makefile.depend | 2 -- pkgs/pseudo/libexec/Makefile.depend | 2 -- pkgs/pseudo/misc/Makefile.depend | 10 ++++------ pkgs/pseudo/sbin/Makefile.depend | 2 -- pkgs/pseudo/secure/Makefile.depend | 2 -- pkgs/pseudo/share/Makefile.depend | 2 -- pkgs/pseudo/the-lot/Makefile.depend | 2 -- pkgs/pseudo/usr.bin/Makefile.depend | 2 -- pkgs/pseudo/usr.sbin/Makefile.depend | 2 -- sbin/adjkerntz/Makefile.depend | 2 -- sbin/atacontrol/Makefile.depend | 2 -- sbin/atm/atmconfig/Makefile.depend | 2 -- sbin/badsect/Makefile.depend | 2 -- sbin/bsdlabel/Makefile.depend | 2 -- sbin/camcontrol/Makefile.depend | 2 -- sbin/ccdconfig/Makefile.depend | 2 -- sbin/clri/Makefile.depend | 2 -- sbin/comcontrol/Makefile.depend | 2 -- sbin/conscontrol/Makefile.depend | 2 -- sbin/ddb/Makefile.depend | 2 -- sbin/devd/Makefile.depend | 2 -- sbin/devfs/Makefile.depend | 2 -- sbin/dhclient/Makefile.depend | 2 -- sbin/dmesg/Makefile.depend | 2 -- sbin/dump/Makefile.depend | 2 -- sbin/dumpfs/Makefile.depend | 2 -- sbin/dumpon/Makefile.depend | 2 -- sbin/etherswitchcfg/Makefile.depend | 2 -- sbin/fdisk/Makefile.depend | 2 -- sbin/ffsinfo/Makefile.depend | 2 -- sbin/fsck/Makefile.depend | 2 -- sbin/fsck_ffs/Makefile.depend | 2 -- sbin/fsck_msdosfs/Makefile.depend | 2 -- sbin/fsdb/Makefile.depend | 2 -- sbin/fsirand/Makefile.depend | 2 -- sbin/gbde/Makefile.depend | 2 -- sbin/geom/class/cache/Makefile.depend | 2 -- sbin/geom/class/concat/Makefile.depend | 2 -- sbin/geom/class/eli/Makefile.depend | 2 -- sbin/geom/class/journal/Makefile.depend | 2 -- sbin/geom/class/label/Makefile.depend | 2 -- sbin/geom/class/mirror/Makefile.depend | 2 -- sbin/geom/class/mountver/Makefile.depend | 2 -- sbin/geom/class/multipath/Makefile.depend | 2 -- sbin/geom/class/nop/Makefile.depend | 2 -- sbin/geom/class/part/Makefile.depend | 2 -- sbin/geom/class/raid/Makefile.depend | 2 -- sbin/geom/class/raid3/Makefile.depend | 2 -- sbin/geom/class/sched/Makefile.depend | 2 -- sbin/geom/class/shsec/Makefile.depend | 2 -- sbin/geom/class/stripe/Makefile.depend | 2 -- sbin/geom/class/virstor/Makefile.depend | 2 -- sbin/geom/core/Makefile.depend | 2 -- sbin/ggate/ggatec/Makefile.depend | 2 -- sbin/ggate/ggated/Makefile.depend | 2 -- sbin/ggate/ggatel/Makefile.depend | 2 -- sbin/growfs/Makefile.depend | 2 -- sbin/gvinum/Makefile.depend | 2 -- sbin/hastctl/Makefile.depend | 2 -- sbin/hastd/Makefile.depend | 2 -- sbin/ifconfig/Makefile.depend | 2 -- sbin/init/Makefile.depend | 2 -- sbin/ipf/ipf/Makefile.depend | 2 -- sbin/ipf/ipfs/Makefile.depend | 2 -- sbin/ipf/ipfstat/Makefile.depend | 2 -- sbin/ipf/ipftest/Makefile.depend | 2 -- sbin/ipf/ipmon/Makefile.depend | 2 -- sbin/ipf/ipnat/Makefile.depend | 2 -- sbin/ipf/ippool/Makefile.depend | 2 -- sbin/ipf/ipresend/Makefile.depend | 2 -- sbin/ipf/libipf/Makefile.depend | 2 -- sbin/ipfw/Makefile.depend | 2 -- sbin/iscontrol/Makefile.depend | 2 -- sbin/kldconfig/Makefile.depend | 2 -- sbin/kldload/Makefile.depend | 2 -- sbin/kldstat/Makefile.depend | 2 -- sbin/kldunload/Makefile.depend | 2 -- sbin/ldconfig/Makefile.depend | 2 -- sbin/md5/Makefile.depend | 2 -- sbin/mdconfig/Makefile.depend | 2 -- sbin/mdmfs/Makefile.depend | 2 -- sbin/mknod/Makefile.depend | 2 -- sbin/mksnap_ffs/Makefile.depend | 2 -- sbin/mount/Makefile.depend | 2 -- sbin/mount_cd9660/Makefile.depend | 2 -- sbin/mount_fusefs/Makefile.depend | 2 -- sbin/mount_msdosfs/Makefile.depend | 2 -- sbin/mount_nfs/Makefile.depend | 2 -- sbin/mount_nullfs/Makefile.depend | 2 -- sbin/mount_udf/Makefile.depend | 2 -- sbin/mount_unionfs/Makefile.depend | 2 -- sbin/natd/Makefile.depend | 2 -- sbin/newfs/Makefile.depend | 2 -- sbin/newfs_msdos/Makefile.depend | 2 -- sbin/nfsiod/Makefile.depend | 2 -- sbin/nos-tun/Makefile.depend | 2 -- sbin/nvmecontrol/Makefile.depend | 2 -- sbin/pfctl/Makefile.depend | 2 -- sbin/pflogd/Makefile.depend | 2 -- sbin/ping/Makefile.depend | 2 -- sbin/ping6/Makefile.depend | 2 -- sbin/quotacheck/Makefile.depend | 2 -- sbin/rcorder/Makefile.depend | 2 -- sbin/reboot/Makefile.depend | 2 -- sbin/recoverdisk/Makefile.depend | 2 -- sbin/resolvconf/Makefile.depend | 2 -- sbin/restore/Makefile.depend | 2 -- sbin/route/Makefile.depend | 2 -- sbin/routed/rtquery/Makefile.depend | 2 -- sbin/rtsol/Makefile.depend | 2 -- sbin/savecore/Makefile.depend | 2 -- sbin/setkey/Makefile.depend | 2 -- sbin/shutdown/Makefile.depend | 2 -- sbin/spppcontrol/Makefile.depend | 2 -- sbin/swapon/Makefile.depend | 2 -- sbin/sysctl/Makefile.depend | 2 -- sbin/tunefs/Makefile.depend | 2 -- sbin/umount/Makefile.depend | 2 -- secure/lib/libcrypto/Makefile.depend | 2 -- .../lib/libcrypto/engines/lib4758cca/Makefile.depend | 2 -- secure/lib/libcrypto/engines/libaep/Makefile.depend | 2 -- secure/lib/libcrypto/engines/libatalla/Makefile.depend | 2 -- secure/lib/libcrypto/engines/libchil/Makefile.depend | 2 -- secure/lib/libcrypto/engines/libcswift/Makefile.depend | 2 -- secure/lib/libcrypto/engines/libgost/Makefile.depend | 2 -- secure/lib/libcrypto/engines/libnuron/Makefile.depend | 2 -- .../lib/libcrypto/engines/libsureware/Makefile.depend | 2 -- secure/lib/libcrypto/engines/libubsec/Makefile.depend | 2 -- secure/lib/libssh/Makefile.depend | 2 -- secure/lib/libssl/Makefile.depend | 2 -- secure/libexec/sftp-server/Makefile.depend | 2 -- secure/libexec/ssh-keysign/Makefile.depend | 2 -- secure/libexec/ssh-pkcs11-helper/Makefile.depend | 2 -- secure/usr.bin/bdes/Makefile.depend | 2 -- secure/usr.bin/openssl/Makefile.depend | 2 -- secure/usr.bin/scp/Makefile.depend | 2 -- secure/usr.bin/sftp/Makefile.depend | 2 -- secure/usr.bin/ssh-add/Makefile.depend | 2 -- secure/usr.bin/ssh-agent/Makefile.depend | 2 -- secure/usr.bin/ssh-keygen/Makefile.depend | 2 -- secure/usr.bin/ssh-keyscan/Makefile.depend | 2 -- secure/usr.bin/ssh/Makefile.depend | 2 -- secure/usr.sbin/sshd/Makefile.depend | 2 -- share/colldef/Makefile.depend | 2 -- share/examples/ipfilter/Makefile.depend | 2 -- share/man/man1/Makefile.depend | 2 -- share/man/man3/Makefile.depend | 2 -- share/man/man4/Makefile.depend | 2 -- share/man/man5/Makefile.depend | 2 -- share/man/man6/Makefile.depend | 2 -- share/man/man7/Makefile.depend | 2 -- share/man/man8/Makefile.depend | 2 -- share/man/man9/Makefile.depend | 2 -- share/me/Makefile.depend | 2 -- share/mklocale/Makefile.depend | 2 -- share/monetdef/Makefile.depend | 2 -- share/msgdef/Makefile.depend | 2 -- share/numericdef/Makefile.depend | 2 -- share/syscons/scrnmaps/Makefile.depend | 2 -- share/tabset/Makefile.depend | 2 -- share/termcap/Makefile.depend | 2 -- share/timedef/Makefile.depend | 2 -- share/zoneinfo/Makefile.depend | 2 -- usr.bin/apply/Makefile.depend | 2 -- usr.bin/ar/Makefile.depend | 2 -- usr.bin/asa/Makefile.depend | 2 -- usr.bin/at/Makefile.depend | 2 -- usr.bin/atf/atf-config/Makefile.depend | 2 -- usr.bin/atf/atf-report/Makefile.depend | 2 -- usr.bin/atf/atf-run/Makefile.depend | 2 -- usr.bin/atf/atf-sh/Makefile.depend | 2 -- usr.bin/atf/atf-version/Makefile.depend | 2 -- usr.bin/atm/sscop/Makefile.depend | 2 -- usr.bin/awk/Makefile.depend | 2 -- usr.bin/banner/Makefile.depend | 2 -- usr.bin/basename/Makefile.depend | 2 -- usr.bin/bc/Makefile.depend | 2 -- usr.bin/biff/Makefile.depend | 2 -- usr.bin/bluetooth/bthost/Makefile.depend | 2 -- usr.bin/bluetooth/btsockstat/Makefile.depend | 2 -- usr.bin/bluetooth/rfcomm_sppd/Makefile.depend | 2 -- usr.bin/bmake/Makefile.depend | 3 --- usr.bin/brandelf/Makefile.depend | 2 -- usr.bin/bsdiff/bsdiff/Makefile.depend | 2 -- usr.bin/bsdiff/bspatch/Makefile.depend | 2 -- usr.bin/bzip2/Makefile.depend | 2 -- usr.bin/bzip2recover/Makefile.depend | 2 -- usr.bin/c89/Makefile.depend | 2 -- usr.bin/c99/Makefile.depend | 2 -- usr.bin/calendar/Makefile.depend | 2 -- usr.bin/cap_mkdb/Makefile.depend | 2 -- usr.bin/catman/Makefile.depend | 2 -- usr.bin/chat/Makefile.depend | 2 -- usr.bin/checknr/Makefile.depend | 2 -- usr.bin/chkey/Makefile.depend | 2 -- usr.bin/chpass/Makefile.depend | 2 -- usr.bin/cksum/Makefile.depend | 2 -- usr.bin/cmp/Makefile.depend | 2 -- usr.bin/col/Makefile.depend | 2 -- usr.bin/colcrt/Makefile.depend | 2 -- usr.bin/colldef/Makefile.depend | 2 -- usr.bin/colrm/Makefile.depend | 2 -- usr.bin/column/Makefile.depend | 2 -- usr.bin/comm/Makefile.depend | 2 -- usr.bin/compile_et/Makefile.depend | 2 -- usr.bin/compress/Makefile.depend | 2 -- usr.bin/cpio/Makefile.depend | 2 -- usr.bin/cpuset/Makefile.depend | 2 -- usr.bin/csplit/Makefile.depend | 2 -- usr.bin/csup/Makefile.depend | 2 -- usr.bin/ctags/Makefile.depend | 2 -- usr.bin/ctlstat/Makefile.depend | 2 -- usr.bin/cut/Makefile.depend | 2 -- usr.bin/dc/Makefile.depend | 2 -- usr.bin/dig/Makefile.depend | 2 -- usr.bin/dirname/Makefile.depend | 2 -- usr.bin/du/Makefile.depend | 2 -- usr.bin/ee/Makefile.depend | 2 -- usr.bin/elf2aout/Makefile.depend | 2 -- usr.bin/elfdump/Makefile.depend | 2 -- usr.bin/enigma/Makefile.depend | 2 -- usr.bin/env/Makefile.depend | 2 -- usr.bin/expand/Makefile.depend | 2 -- usr.bin/false/Makefile.depend | 2 -- usr.bin/fetch/Makefile.depend | 2 -- usr.bin/file/Makefile.depend | 2 -- usr.bin/file2c/Makefile.depend | 2 -- usr.bin/find/Makefile.depend | 2 -- usr.bin/finger/Makefile.depend | 2 -- usr.bin/fmt/Makefile.depend | 2 -- usr.bin/fold/Makefile.depend | 2 -- usr.bin/from/Makefile.depend | 2 -- usr.bin/fstat/Makefile.depend | 2 -- usr.bin/fsync/Makefile.depend | 2 -- usr.bin/ftp/Makefile.depend | 2 -- usr.bin/gcore/Makefile.depend | 2 -- usr.bin/gencat/Makefile.depend | 2 -- usr.bin/getconf/Makefile.depend | 2 -- usr.bin/getent/Makefile.depend | 2 -- usr.bin/getopt/Makefile.depend | 2 -- usr.bin/gprof/Makefile.depend | 2 -- usr.bin/grep/Makefile.depend | 2 -- usr.bin/gzip/Makefile.depend | 2 -- usr.bin/head/Makefile.depend | 2 -- usr.bin/hexdump/Makefile.depend | 2 -- usr.bin/host/Makefile.depend | 2 -- usr.bin/id/Makefile.depend | 2 -- usr.bin/indent/Makefile.depend | 2 -- usr.bin/ipcrm/Makefile.depend | 2 -- usr.bin/ipcs/Makefile.depend | 2 -- usr.bin/join/Makefile.depend | 2 -- usr.bin/jot/Makefile.depend | 2 -- usr.bin/kdump/Makefile.depend | 2 -- usr.bin/keylogin/Makefile.depend | 2 -- usr.bin/keylogout/Makefile.depend | 2 -- usr.bin/killall/Makefile.depend | 2 -- usr.bin/ktrace/Makefile.depend | 2 -- usr.bin/ktrdump/Makefile.depend | 2 -- usr.bin/lam/Makefile.depend | 2 -- usr.bin/last/Makefile.depend | 2 -- usr.bin/lastcomm/Makefile.depend | 2 -- usr.bin/ldd/Makefile.depend | 2 -- usr.bin/leave/Makefile.depend | 2 -- usr.bin/less/Makefile.depend | 2 -- usr.bin/lessecho/Makefile.depend | 2 -- usr.bin/lesskey/Makefile.depend | 2 -- usr.bin/lex/lib/Makefile.depend | 2 -- usr.bin/limits/Makefile.depend | 2 -- usr.bin/locale/Makefile.depend | 2 -- usr.bin/locate/bigram/Makefile.depend | 2 -- usr.bin/locate/code/Makefile.depend | 2 -- usr.bin/locate/locate/Makefile.depend | 2 -- usr.bin/lock/Makefile.depend | 2 -- usr.bin/lockf/Makefile.depend | 2 -- usr.bin/logger/Makefile.depend | 2 -- usr.bin/login/Makefile.depend | 2 -- usr.bin/logins/Makefile.depend | 2 -- usr.bin/logname/Makefile.depend | 2 -- usr.bin/look/Makefile.depend | 2 -- usr.bin/lorder/Makefile.depend | 2 -- usr.bin/lsvfs/Makefile.depend | 2 -- usr.bin/lzmainfo/Makefile.depend | 2 -- usr.bin/m4/Makefile.depend | 2 -- usr.bin/mail/Makefile.depend | 2 -- usr.bin/makewhatis/Makefile.depend | 2 -- usr.bin/man/Makefile.depend | 2 -- usr.bin/mandoc/Makefile.depend | 2 -- usr.bin/mesg/Makefile.depend | 2 -- usr.bin/minigzip/Makefile.depend | 2 -- usr.bin/ministat/Makefile.depend | 2 -- usr.bin/mkdep/Makefile.depend | 2 -- usr.bin/mkfifo/Makefile.depend | 2 -- usr.bin/mklocale/Makefile.depend | 2 -- usr.bin/mkstr/Makefile.depend | 2 -- usr.bin/mktemp/Makefile.depend | 2 -- usr.bin/mkulzma/Makefile.depend | 2 -- usr.bin/mkuzip/Makefile.depend | 2 -- usr.bin/msgs/Makefile.depend | 2 -- usr.bin/mt/Makefile.depend | 2 -- usr.bin/nc/Makefile.depend | 2 -- usr.bin/ncal/Makefile.depend | 2 -- usr.bin/netstat/Makefile.depend | 2 -- usr.bin/newgrp/Makefile.depend | 2 -- usr.bin/newkey/Makefile.depend | 2 -- usr.bin/nfsstat/Makefile.depend | 2 -- usr.bin/nice/Makefile.depend | 2 -- usr.bin/nl/Makefile.depend | 2 -- usr.bin/nohup/Makefile.depend | 2 -- usr.bin/nslookup/Makefile.depend | 2 -- usr.bin/nsupdate/Makefile.depend | 2 -- usr.bin/opieinfo/Makefile.depend | 2 -- usr.bin/opiekey/Makefile.depend | 2 -- usr.bin/opiepasswd/Makefile.depend | 2 -- usr.bin/pagesize/Makefile.depend | 2 -- usr.bin/passwd/Makefile.depend | 2 -- usr.bin/paste/Makefile.depend | 2 -- usr.bin/pathchk/Makefile.depend | 2 -- usr.bin/perror/Makefile.depend | 2 -- usr.bin/pr/Makefile.depend | 2 -- usr.bin/printenv/Makefile.depend | 2 -- usr.bin/printf/Makefile.depend | 2 -- usr.bin/procstat/Makefile.depend | 2 -- usr.bin/quota/Makefile.depend | 2 -- usr.bin/rctl/Makefile.depend | 2 -- usr.bin/renice/Makefile.depend | 2 -- usr.bin/rev/Makefile.depend | 2 -- usr.bin/revoke/Makefile.depend | 2 -- usr.bin/rlogin/Makefile.depend | 2 -- usr.bin/rpcgen/Makefile.depend | 2 -- usr.bin/rpcinfo/Makefile.depend | 2 -- usr.bin/rs/Makefile.depend | 2 -- usr.bin/rsh/Makefile.depend | 2 -- usr.bin/rup/Makefile.depend | 2 -- usr.bin/ruptime/Makefile.depend | 2 -- usr.bin/rusers/Makefile.depend | 2 -- usr.bin/rwall/Makefile.depend | 2 -- usr.bin/rwho/Makefile.depend | 2 -- usr.bin/script/Makefile.depend | 2 -- usr.bin/sed/Makefile.depend | 2 -- usr.bin/seq/Makefile.depend | 2 -- usr.bin/shar/Makefile.depend | 2 -- usr.bin/showmount/Makefile.depend | 2 -- usr.bin/sockstat/Makefile.depend | 2 -- usr.bin/sort/Makefile.depend | 2 -- usr.bin/split/Makefile.depend | 2 -- usr.bin/ssh-copy-id/Makefile.depend | 2 -- usr.bin/stat/Makefile.depend | 2 -- usr.bin/stdbuf/Makefile.depend | 2 -- usr.bin/su/Makefile.depend | 2 -- usr.bin/systat/Makefile.depend | 2 -- usr.bin/tabs/Makefile.depend | 2 -- usr.bin/tail/Makefile.depend | 2 -- usr.bin/talk/Makefile.depend | 2 -- usr.bin/tar/Makefile.depend | 2 -- usr.bin/tcopy/Makefile.depend | 2 -- usr.bin/tee/Makefile.depend | 2 -- usr.bin/telnet/Makefile.depend | 2 -- usr.bin/tftp/Makefile.depend | 2 -- usr.bin/time/Makefile.depend | 2 -- usr.bin/tip/tip/Makefile.depend | 2 -- usr.bin/top/Makefile.depend | 2 -- usr.bin/touch/Makefile.depend | 2 -- usr.bin/tput/Makefile.depend | 2 -- usr.bin/tr/Makefile.depend | 2 -- usr.bin/true/Makefile.depend | 2 -- usr.bin/truncate/Makefile.depend | 2 -- usr.bin/truss/Makefile.depend.amd64 | 2 -- usr.bin/tset/Makefile.depend | 2 -- usr.bin/tsort/Makefile.depend | 2 -- usr.bin/tty/Makefile.depend | 2 -- usr.bin/ul/Makefile.depend | 2 -- usr.bin/uname/Makefile.depend | 2 -- usr.bin/unexpand/Makefile.depend | 2 -- usr.bin/unifdef/Makefile.depend | 2 -- usr.bin/uniq/Makefile.depend | 2 -- usr.bin/units/Makefile.depend | 2 -- usr.bin/unvis/Makefile.depend | 2 -- usr.bin/unzip/Makefile.depend | 2 -- usr.bin/usbhidaction/Makefile.depend | 2 -- usr.bin/usbhidctl/Makefile.depend | 2 -- usr.bin/users/Makefile.depend | 2 -- usr.bin/uudecode/Makefile.depend | 2 -- usr.bin/uuencode/Makefile.depend | 2 -- usr.bin/vacation/Makefile.depend | 2 -- usr.bin/vgrind/Makefile.depend | 2 -- usr.bin/vi/Makefile.depend | 2 -- usr.bin/vis/Makefile.depend | 2 -- usr.bin/vmstat/Makefile.depend | 2 -- usr.bin/w/Makefile.depend | 2 -- usr.bin/wall/Makefile.depend | 2 -- usr.bin/wc/Makefile.depend | 2 -- usr.bin/what/Makefile.depend | 2 -- usr.bin/whereis/Makefile.depend | 2 -- usr.bin/which/Makefile.depend | 2 -- usr.bin/who/Makefile.depend | 2 -- usr.bin/whois/Makefile.depend | 2 -- usr.bin/write/Makefile.depend | 2 -- usr.bin/xargs/Makefile.depend | 2 -- usr.bin/xinstall/Makefile.depend | 4 ++-- usr.bin/xlint/lint1/Makefile.depend | 2 -- usr.bin/xlint/lint2/Makefile.depend | 2 -- usr.bin/xlint/llib/Makefile.depend | 2 -- usr.bin/xlint/xlint/Makefile.depend | 2 -- usr.bin/xstr/Makefile.depend | 2 -- usr.bin/xz/Makefile.depend | 2 -- usr.bin/xzdec/Makefile.depend | 2 -- usr.bin/yacc/Makefile.depend | 2 -- usr.bin/yes/Makefile.depend | 2 -- usr.bin/ypcat/Makefile.depend | 2 -- usr.bin/ypmatch/Makefile.depend | 2 -- usr.bin/ypwhich/Makefile.depend | 2 -- usr.sbin/IPXrouted/Makefile.depend | 2 -- usr.sbin/ac/Makefile.depend | 2 -- usr.sbin/accton/Makefile.depend | 2 -- usr.sbin/acpi/acpiconf/Makefile.depend | 2 -- usr.sbin/acpi/acpidb/Makefile.depend | 2 -- usr.sbin/acpi/acpidump/Makefile.depend | 2 -- usr.sbin/acpi/iasl/Makefile.depend | 8 ++++++-- usr.sbin/adduser/Makefile.depend | 2 -- usr.sbin/amd/amd/Makefile.depend | 2 -- usr.sbin/amd/amq/Makefile.depend | 2 -- usr.sbin/amd/fixmount/Makefile.depend | 2 -- usr.sbin/amd/fsinfo/Makefile.depend | 2 -- usr.sbin/amd/hlfsd/Makefile.depend | 2 -- usr.sbin/amd/include/Makefile.depend | 2 -- usr.sbin/amd/libamu/Makefile.depend | 2 -- usr.sbin/amd/mk-amd-map/Makefile.depend | 2 -- usr.sbin/amd/pawd/Makefile.depend | 2 -- usr.sbin/amd/scripts/Makefile.depend | 2 -- usr.sbin/amd/wire-test/Makefile.depend | 2 -- usr.sbin/ancontrol/Makefile.depend | 2 -- usr.sbin/apm/Makefile.depend | 2 -- usr.sbin/arp/Makefile.depend | 2 -- usr.sbin/arpaname/Makefile.depend | 2 -- usr.sbin/asf/Makefile.depend | 2 -- usr.sbin/audit/Makefile.depend | 2 -- usr.sbin/auditd/Makefile.depend | 2 -- usr.sbin/auditreduce/Makefile.depend | 2 -- usr.sbin/authpf/Makefile.depend | 2 -- usr.sbin/bluetooth/ath3kfw/Makefile.depend | 2 -- usr.sbin/bluetooth/bcmfw/Makefile.depend | 2 -- usr.sbin/bluetooth/bt3cfw/Makefile.depend | 2 -- usr.sbin/bluetooth/bthidcontrol/Makefile.depend | 2 -- usr.sbin/bluetooth/bthidd/Makefile.depend | 2 -- usr.sbin/bluetooth/btpand/Makefile.depend | 2 -- usr.sbin/bluetooth/hccontrol/Makefile.depend | 2 -- usr.sbin/bluetooth/hcsecd/Makefile.depend | 2 -- usr.sbin/bluetooth/hcseriald/Makefile.depend | 2 -- usr.sbin/bluetooth/l2control/Makefile.depend | 2 -- usr.sbin/bluetooth/l2ping/Makefile.depend | 2 -- usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend | 2 -- usr.sbin/bluetooth/sdpcontrol/Makefile.depend | 2 -- usr.sbin/bluetooth/sdpd/Makefile.depend | 2 -- usr.sbin/boot0cfg/Makefile.depend | 2 -- usr.sbin/bootparamd/bootparamd/Makefile.depend | 2 -- usr.sbin/bootparamd/callbootd/Makefile.depend | 2 -- usr.sbin/bsdinstall/distextract/Makefile.depend | 2 -- usr.sbin/bsdinstall/distfetch/Makefile.depend | 2 -- usr.sbin/bsdinstall/partedit/Makefile.depend | 2 -- usr.sbin/bsnmpd/bsnmpd/Makefile.depend | 2 -- usr.sbin/bsnmpd/gensnmptree/Makefile.depend | 2 -- usr.sbin/bsnmpd/modules/Makefile.depend | 2 -- usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend | 2 -- usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend | 2 -- usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend | 2 -- usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend | 2 -- usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend | 2 -- usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend | 2 -- usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend | 2 -- usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend | 2 -- usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend | 2 -- usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend | 2 -- usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend | 2 -- usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend | 2 -- usr.sbin/btxld/Makefile.depend | 2 -- usr.sbin/burncd/Makefile.depend | 2 -- usr.sbin/cdcontrol/Makefile.depend | 2 -- usr.sbin/chkgrp/Makefile.depend | 2 -- usr.sbin/chown/Makefile.depend | 2 -- usr.sbin/chroot/Makefile.depend | 2 -- usr.sbin/ckdist/Makefile.depend | 2 -- usr.sbin/clear_locks/Makefile.depend | 2 -- usr.sbin/config/Makefile.depend | 2 -- usr.sbin/cpucontrol/Makefile.depend | 2 -- usr.sbin/crashinfo/Makefile.depend | 2 -- usr.sbin/cron/cron/Makefile.depend | 2 -- usr.sbin/cron/crontab/Makefile.depend | 2 -- usr.sbin/cron/lib/Makefile.depend | 2 -- usr.sbin/crunch/crunchgen/Makefile.depend | 2 -- usr.sbin/crunch/crunchide/Makefile.depend | 2 -- usr.sbin/ctladm/Makefile.depend | 2 -- usr.sbin/ctm/ctm/Makefile.depend | 2 -- usr.sbin/ctm/ctm_dequeue/Makefile.depend | 2 -- usr.sbin/ctm/ctm_rmail/Makefile.depend | 2 -- usr.sbin/ctm/ctm_smail/Makefile.depend | 2 -- usr.sbin/daemon/Makefile.depend | 2 -- usr.sbin/dconschat/Makefile.depend | 2 -- usr.sbin/ddns-confgen/Makefile.depend | 2 -- usr.sbin/devinfo/Makefile.depend | 2 -- usr.sbin/digictl/Makefile.depend | 2 -- usr.sbin/diskinfo/Makefile.depend | 2 -- usr.sbin/dnssec-dsfromkey/Makefile.depend | 2 -- usr.sbin/dnssec-keyfromlabel/Makefile.depend | 2 -- usr.sbin/dnssec-keygen/Makefile.depend | 2 -- usr.sbin/dnssec-revoke/Makefile.depend | 2 -- usr.sbin/dnssec-settime/Makefile.depend | 2 -- usr.sbin/dnssec-signzone/Makefile.depend | 2 -- usr.sbin/dumpcis/Makefile.depend | 2 -- usr.sbin/editmap/Makefile.depend | 2 -- usr.sbin/edquota/Makefile.depend | 2 -- usr.sbin/etcupdate/Makefile.depend | 2 -- usr.sbin/extattr/Makefile.depend | 2 -- usr.sbin/extattrctl/Makefile.depend | 2 -- usr.sbin/faithd/Makefile.depend | 2 -- usr.sbin/fdcontrol/Makefile.depend | 2 -- usr.sbin/fdformat/Makefile.depend | 2 -- usr.sbin/fdread/Makefile.depend | 2 -- usr.sbin/fdwrite/Makefile.depend | 2 -- usr.sbin/fifolog/fifolog_create/Makefile.depend | 2 -- usr.sbin/fifolog/fifolog_reader/Makefile.depend | 2 -- usr.sbin/fifolog/fifolog_writer/Makefile.depend | 2 -- usr.sbin/fifolog/lib/Makefile.depend | 2 -- usr.sbin/flowctl/Makefile.depend | 2 -- usr.sbin/freebsd-update/Makefile.depend | 2 -- usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend | 2 -- usr.sbin/ftp-proxy/libevent/Makefile.depend | 2 -- usr.sbin/fwcontrol/Makefile.depend | 2 -- usr.sbin/genrandom/Makefile.depend | 2 -- usr.sbin/getfmac/Makefile.depend | 2 -- usr.sbin/getpmac/Makefile.depend | 2 -- usr.sbin/gpioctl/Makefile.depend | 2 -- usr.sbin/gssd/Makefile.depend | 9 +++++++-- usr.sbin/gstat/Makefile.depend | 2 -- usr.sbin/i2c/Makefile.depend | 2 -- usr.sbin/ifmcstat/Makefile.depend | 2 -- usr.sbin/inetd/Makefile.depend | 2 -- usr.sbin/iostat/Makefile.depend | 2 -- usr.sbin/ip6addrctl/Makefile.depend | 2 -- usr.sbin/ipfwpcap/Makefile.depend | 2 -- usr.sbin/isc-hmac-fixup/Makefile.depend | 2 -- usr.sbin/isfctl/Makefile.depend | 2 -- usr.sbin/jail/Makefile.depend | 2 -- usr.sbin/jexec/Makefile.depend | 2 -- usr.sbin/jls/Makefile.depend | 2 -- usr.sbin/kbdcontrol/Makefile.depend | 2 -- usr.sbin/kbdmap/Makefile.depend | 2 -- usr.sbin/keyserv/Makefile.depend | 2 -- usr.sbin/kgmon/Makefile.depend | 2 -- usr.sbin/kldxref/Makefile.depend | 2 -- usr.sbin/lastlogin/Makefile.depend | 2 -- usr.sbin/lmcconfig/Makefile.depend | 2 -- usr.sbin/lpr/chkprintcap/Makefile.depend | 2 -- usr.sbin/lpr/common_source/Makefile.depend | 2 -- usr.sbin/lpr/filters.ru/koi2855/Makefile.depend | 2 -- usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend | 2 -- usr.sbin/lpr/filters/Makefile.depend | 2 -- usr.sbin/lpr/lp/Makefile.depend | 2 -- usr.sbin/lpr/lpc/Makefile.depend | 2 -- usr.sbin/lpr/lpd/Makefile.depend | 2 -- usr.sbin/lpr/lpq/Makefile.depend | 2 -- usr.sbin/lpr/lpr/Makefile.depend | 2 -- usr.sbin/lpr/lprm/Makefile.depend | 2 -- usr.sbin/lpr/lptest/Makefile.depend | 2 -- usr.sbin/lpr/pac/Makefile.depend | 2 -- usr.sbin/lptcontrol/Makefile.depend | 2 -- usr.sbin/mailstats/Makefile.depend | 2 -- usr.sbin/mailwrapper/Makefile.depend | 2 -- usr.sbin/makefs/Makefile.depend | 2 -- usr.sbin/makemap/Makefile.depend | 2 -- usr.sbin/manctl/Makefile.depend | 2 -- usr.sbin/memcontrol/Makefile.depend | 2 -- usr.sbin/mergemaster/Makefile.depend | 2 -- usr.sbin/mfiutil/Makefile.depend | 2 -- usr.sbin/mixer/Makefile.depend | 2 -- usr.sbin/mld6query/Makefile.depend | 2 -- usr.sbin/mlxcontrol/Makefile.depend | 2 -- usr.sbin/mountd/Makefile.depend | 2 -- usr.sbin/moused/Makefile.depend | 2 -- usr.sbin/mptable/Makefile.depend | 2 -- usr.sbin/mptutil/Makefile.depend | 2 -- usr.sbin/mtest/Makefile.depend | 2 -- usr.sbin/mtree/Makefile.depend | 2 -- usr.sbin/named-checkconf/Makefile.depend | 2 -- usr.sbin/named-checkzone/Makefile.depend | 2 -- usr.sbin/named-journalprint/Makefile.depend | 2 -- usr.sbin/named/Makefile.depend | 2 -- usr.sbin/ndiscvt/Makefile.depend | 2 -- usr.sbin/ndp/Makefile.depend | 2 -- usr.sbin/newsyslog/Makefile.depend | 2 -- usr.sbin/nfscbd/Makefile.depend | 2 -- usr.sbin/nfsd/Makefile.depend | 2 -- usr.sbin/nfsdumpstate/Makefile.depend | 2 -- usr.sbin/nfsrevoke/Makefile.depend | 2 -- usr.sbin/nfsuserd/Makefile.depend | 2 -- usr.sbin/ngctl/Makefile.depend | 2 -- usr.sbin/nghook/Makefile.depend | 2 -- usr.sbin/nologin/Makefile.depend | 2 -- usr.sbin/nscd/Makefile.depend | 2 -- usr.sbin/nsec3hash/Makefile.depend | 2 -- usr.sbin/ntp/doc/Makefile.depend | 2 -- usr.sbin/ntp/libntp/Makefile.depend | 2 -- usr.sbin/ntp/libopts/Makefile.depend | 2 -- usr.sbin/ntp/libparse/Makefile.depend | 2 -- usr.sbin/ntp/ntp-keygen/Makefile.depend | 2 -- usr.sbin/ntp/ntpd/Makefile.depend | 2 -- usr.sbin/ntp/ntpdate/Makefile.depend | 2 -- usr.sbin/ntp/ntpdc/Makefile.depend | 2 -- usr.sbin/ntp/ntpq/Makefile.depend | 2 -- usr.sbin/ntp/ntptime/Makefile.depend | 2 -- usr.sbin/ntp/sntp/Makefile.depend | 2 -- usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend | 2 -- usr.sbin/pciconf/Makefile.depend | 2 -- usr.sbin/periodic/Makefile.depend | 2 -- usr.sbin/pkg/Makefile.depend | 3 +-- usr.sbin/pkg_install/add/Makefile.depend | 2 -- usr.sbin/pkg_install/create/Makefile.depend | 2 -- usr.sbin/pkg_install/delete/Makefile.depend | 2 -- usr.sbin/pkg_install/info/Makefile.depend | 2 -- usr.sbin/pkg_install/lib/Makefile.depend | 2 -- usr.sbin/pkg_install/updating/Makefile.depend | 2 -- usr.sbin/pkg_install/version/Makefile.depend | 2 -- usr.sbin/pmcannotate/Makefile.depend | 2 -- usr.sbin/pmccontrol/Makefile.depend | 2 -- usr.sbin/pmcstat/Makefile.depend | 2 -- usr.sbin/portsnap/make_index/Makefile.depend | 2 -- usr.sbin/portsnap/phttpget/Makefile.depend | 2 -- usr.sbin/portsnap/portsnap/Makefile.depend | 2 -- usr.sbin/powerd/Makefile.depend | 2 -- usr.sbin/ppp/Makefile.depend | 2 -- usr.sbin/pppctl/Makefile.depend | 2 -- usr.sbin/praliases/Makefile.depend | 2 -- usr.sbin/praudit/Makefile.depend | 2 -- usr.sbin/procctl/Makefile.depend | 2 -- usr.sbin/pstat/Makefile.depend | 2 -- usr.sbin/pw/Makefile.depend | 2 -- usr.sbin/pwd_mkdb/Makefile.depend | 2 -- usr.sbin/quot/Makefile.depend | 2 -- usr.sbin/quotaon/Makefile.depend | 2 -- usr.sbin/rarpd/Makefile.depend | 2 -- usr.sbin/repquota/Makefile.depend | 2 -- usr.sbin/rip6query/Makefile.depend | 2 -- usr.sbin/rmt/Makefile.depend | 2 -- usr.sbin/rndc-confgen/Makefile.depend | 2 -- usr.sbin/rndc/Makefile.depend | 2 -- usr.sbin/route6d/Makefile.depend | 2 -- usr.sbin/rpc.lockd/Makefile.depend | 2 -- usr.sbin/rpc.statd/Makefile.depend | 2 -- usr.sbin/rpc.umntall/Makefile.depend | 2 -- usr.sbin/rpc.yppasswdd/Makefile.depend | 2 -- usr.sbin/rpc.ypupdated/Makefile.depend | 2 -- usr.sbin/rpc.ypxfrd/Makefile.depend | 2 -- usr.sbin/rpcbind/Makefile.depend | 2 -- usr.sbin/rrenumd/Makefile.depend | 2 -- usr.sbin/rtadvctl/Makefile.depend | 2 -- usr.sbin/rtadvd/Makefile.depend | 2 -- usr.sbin/rtprio/Makefile.depend | 2 -- usr.sbin/rtsold/Makefile.depend | 2 -- usr.sbin/rwhod/Makefile.depend | 2 -- usr.sbin/sa/Makefile.depend | 2 -- usr.sbin/sendmail/Makefile.depend | 2 -- usr.sbin/service/Makefile.depend | 2 -- usr.sbin/services_mkdb/Makefile.depend | 2 -- usr.sbin/setfib/Makefile.depend | 2 -- usr.sbin/setfmac/Makefile.depend | 2 -- usr.sbin/setpmac/Makefile.depend | 2 -- usr.sbin/sicontrol/Makefile.depend | 2 -- usr.sbin/smbmsg/Makefile.depend | 2 -- usr.sbin/snapinfo/Makefile.depend | 2 -- usr.sbin/spkrtest/Makefile.depend | 2 -- usr.sbin/spray/Makefile.depend | 2 -- usr.sbin/syslogd/Makefile.depend | 2 -- usr.sbin/tcpdchk/Makefile.depend | 2 -- usr.sbin/tcpdmatch/Makefile.depend | 2 -- usr.sbin/tcpdrop/Makefile.depend | 2 -- usr.sbin/tcpdump/tcpdump/Makefile.depend | 2 -- usr.sbin/timed/timed/Makefile.depend | 2 -- usr.sbin/timed/timedc/Makefile.depend | 2 -- usr.sbin/traceroute/Makefile.depend | 2 -- usr.sbin/traceroute6/Makefile.depend | 2 -- usr.sbin/trpt/Makefile.depend | 2 -- usr.sbin/tzsetup/Makefile.depend | 2 -- usr.sbin/uathload/Makefile.depend | 2 -- usr.sbin/ugidfw/Makefile.depend | 2 -- usr.sbin/uhsoctl/Makefile.depend | 2 -- usr.sbin/usbconfig/Makefile.depend | 2 -- usr.sbin/usbdump/Makefile.depend | 2 -- usr.sbin/utx/Makefile.depend | 2 -- usr.sbin/vidcontrol/Makefile.depend | 2 -- usr.sbin/vipw/Makefile.depend | 2 -- usr.sbin/wake/Makefile.depend | 2 -- usr.sbin/watch/Makefile.depend | 2 -- usr.sbin/watchdogd/Makefile.depend | 2 -- usr.sbin/wlandebug/Makefile.depend | 2 -- usr.sbin/wpa/hostapd/Makefile.depend | 2 -- usr.sbin/wpa/hostapd_cli/Makefile.depend | 2 -- usr.sbin/wpa/ndis_events/Makefile.depend | 2 -- usr.sbin/wpa/wpa_cli/Makefile.depend | 2 -- usr.sbin/wpa/wpa_passphrase/Makefile.depend | 2 -- usr.sbin/wpa/wpa_supplicant/Makefile.depend | 2 -- usr.sbin/yp_mkdb/Makefile.depend | 2 -- usr.sbin/ypbind/Makefile.depend | 2 -- usr.sbin/yppoll/Makefile.depend | 2 -- usr.sbin/yppush/Makefile.depend | 2 -- usr.sbin/ypserv/Makefile.depend | 2 -- usr.sbin/ypset/Makefile.depend | 2 -- usr.sbin/zic/zdump/Makefile.depend | 2 -- usr.sbin/zic/zic/Makefile.depend | 2 -- usr.sbin/zzz/Makefile.depend | 2 -- 1109 files changed, 22 insertions(+), 2224 deletions(-) diff --git a/bin/cat/Makefile.depend b/bin/cat/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/cat/Makefile.depend +++ b/bin/cat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/chflags/Makefile.depend b/bin/chflags/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/chflags/Makefile.depend +++ b/bin/chflags/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/chio/Makefile.depend b/bin/chio/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/chio/Makefile.depend +++ b/bin/chio/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/chmod/Makefile.depend b/bin/chmod/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/chmod/Makefile.depend +++ b/bin/chmod/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/cp/Makefile.depend b/bin/cp/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/cp/Makefile.depend +++ b/bin/cp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/csh/Makefile.depend b/bin/csh/Makefile.depend index ee77884a02ab..91ebfaabe022 100644 --- a/bin/csh/Makefile.depend +++ b/bin/csh/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/date/Makefile.depend b/bin/date/Makefile.depend index 25ca34444ce3..9bd5a4552168 100644 --- a/bin/date/Makefile.depend +++ b/bin/date/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/dd/Makefile.depend b/bin/dd/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/dd/Makefile.depend +++ b/bin/dd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/df/Makefile.depend b/bin/df/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/bin/df/Makefile.depend +++ b/bin/df/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/domainname/Makefile.depend b/bin/domainname/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/domainname/Makefile.depend +++ b/bin/domainname/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/echo/Makefile.depend b/bin/echo/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/echo/Makefile.depend +++ b/bin/echo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/ed/Makefile.depend b/bin/ed/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/bin/ed/Makefile.depend +++ b/bin/ed/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/expr/Makefile.depend b/bin/expr/Makefile.depend index c4a7277a5cb1..29e35ba5b054 100644 --- a/bin/expr/Makefile.depend +++ b/bin/expr/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/getfacl/Makefile.depend b/bin/getfacl/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/getfacl/Makefile.depend +++ b/bin/getfacl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/hostname/Makefile.depend b/bin/hostname/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/hostname/Makefile.depend +++ b/bin/hostname/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/kenv/Makefile.depend b/bin/kenv/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/kenv/Makefile.depend +++ b/bin/kenv/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/kill/Makefile.depend b/bin/kill/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/kill/Makefile.depend +++ b/bin/kill/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/ln/Makefile.depend b/bin/ln/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/ln/Makefile.depend +++ b/bin/ln/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/ls/Makefile.depend b/bin/ls/Makefile.depend index 600233c995ac..d12e98988950 100644 --- a/bin/ls/Makefile.depend +++ b/bin/ls/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/mkdir/Makefile.depend b/bin/mkdir/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/mkdir/Makefile.depend +++ b/bin/mkdir/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/mv/Makefile.depend b/bin/mv/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/mv/Makefile.depend +++ b/bin/mv/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/pax/Makefile.depend b/bin/pax/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/pax/Makefile.depend +++ b/bin/pax/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/pkill/Makefile.depend b/bin/pkill/Makefile.depend index 553674c09429..70d796e23bfc 100644 --- a/bin/pkill/Makefile.depend +++ b/bin/pkill/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/ps/Makefile.depend b/bin/ps/Makefile.depend index 863fe357cfae..da6984549049 100644 --- a/bin/ps/Makefile.depend +++ b/bin/ps/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/pwait/Makefile.depend b/bin/pwait/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/pwait/Makefile.depend +++ b/bin/pwait/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/pwd/Makefile.depend b/bin/pwd/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/pwd/Makefile.depend +++ b/bin/pwd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/rcp/Makefile.depend b/bin/rcp/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/rcp/Makefile.depend +++ b/bin/rcp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/realpath/Makefile.depend b/bin/realpath/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/bin/realpath/Makefile.depend +++ b/bin/realpath/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/rm/Makefile.depend b/bin/rm/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/rm/Makefile.depend +++ b/bin/rm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/rmail/Makefile.depend b/bin/rmail/Makefile.depend index 7ffe408b22f0..24e10b1ab55c 100644 --- a/bin/rmail/Makefile.depend +++ b/bin/rmail/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/rmdir/Makefile.depend b/bin/rmdir/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/rmdir/Makefile.depend +++ b/bin/rmdir/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/setfacl/Makefile.depend b/bin/setfacl/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/setfacl/Makefile.depend +++ b/bin/setfacl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/sh/Makefile.depend b/bin/sh/Makefile.depend index 4c22a9796091..d14e92210d57 100644 --- a/bin/sh/Makefile.depend +++ b/bin/sh/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ @@ -70,6 +68,8 @@ main.o: builtins.h main.o: nodes.h main.po: builtins.h main.po: nodes.h +miscbltin.o: syntax.h +miscbltin.po: syntax.h mystring.o: syntax.h mystring.po: syntax.h nodes.o: nodes.c diff --git a/bin/sleep/Makefile.depend b/bin/sleep/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/sleep/Makefile.depend +++ b/bin/sleep/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/stty/Makefile.depend b/bin/stty/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/stty/Makefile.depend +++ b/bin/stty/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/sync/Makefile.depend b/bin/sync/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/bin/sync/Makefile.depend +++ b/bin/sync/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/test/Makefile.depend b/bin/test/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/bin/test/Makefile.depend +++ b/bin/test/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/bin/uuidgen/Makefile.depend b/bin/uuidgen/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/bin/uuidgen/Makefile.depend +++ b/bin/uuidgen/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/cddl/lib/drti/Makefile.depend b/cddl/lib/drti/Makefile.depend index dc1878f7930b..22badd395eef 100644 --- a/cddl/lib/drti/Makefile.depend +++ b/cddl/lib/drti/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/cddl/lib/libavl/Makefile.depend b/cddl/lib/libavl/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/cddl/lib/libavl/Makefile.depend +++ b/cddl/lib/libavl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/cddl/lib/libctf/Makefile.depend b/cddl/lib/libctf/Makefile.depend index dcff6f96c0a0..bc9d5c895f1e 100644 --- a/cddl/lib/libctf/Makefile.depend +++ b/cddl/lib/libctf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/cddl/lib/libdtrace/Makefile.depend b/cddl/lib/libdtrace/Makefile.depend index 0d5c115777fb..d05493ae9e65 100644 --- a/cddl/lib/libdtrace/Makefile.depend +++ b/cddl/lib/libdtrace/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/cddl/lib/libnvpair/Makefile.depend b/cddl/lib/libnvpair/Makefile.depend index d78f7b72e2c0..b6a920e8f5a7 100644 --- a/cddl/lib/libnvpair/Makefile.depend +++ b/cddl/lib/libnvpair/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/cddl/lib/libumem/Makefile.depend b/cddl/lib/libumem/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/cddl/lib/libumem/Makefile.depend +++ b/cddl/lib/libumem/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/cddl/lib/libuutil/Makefile.depend b/cddl/lib/libuutil/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/cddl/lib/libuutil/Makefile.depend +++ b/cddl/lib/libuutil/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/cddl/lib/libzfs/Makefile.depend b/cddl/lib/libzfs/Makefile.depend index 3f679299f64d..bc712676313e 100644 --- a/cddl/lib/libzfs/Makefile.depend +++ b/cddl/lib/libzfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libnvpair \ cddl/lib/libumem \ diff --git a/cddl/lib/libzpool/Makefile.depend b/cddl/lib/libzpool/Makefile.depend index 2916ba075a6d..fb831e2ff591 100644 --- a/cddl/lib/libzpool/Makefile.depend +++ b/cddl/lib/libzpool/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/cddl/sbin/zfs/Makefile.depend b/cddl/sbin/zfs/Makefile.depend index ad95c7e7b7bf..2048b45b56af 100644 --- a/cddl/sbin/zfs/Makefile.depend +++ b/cddl/sbin/zfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libnvpair \ cddl/lib/libumem \ diff --git a/cddl/sbin/zpool/Makefile.depend b/cddl/sbin/zpool/Makefile.depend index 27e33a055964..fe80c62e4e10 100644 --- a/cddl/sbin/zpool/Makefile.depend +++ b/cddl/sbin/zpool/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/cddl/usr.bin/ctfconvert/Makefile.depend b/cddl/usr.bin/ctfconvert/Makefile.depend index 2c870cc77558..cda806b0f4c2 100644 --- a/cddl/usr.bin/ctfconvert/Makefile.depend +++ b/cddl/usr.bin/ctfconvert/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libctf \ gnu/lib/libgcc \ diff --git a/cddl/usr.bin/ctfdump/Makefile.depend b/cddl/usr.bin/ctfdump/Makefile.depend index b4cb4d4d19ca..a28015a975e0 100644 --- a/cddl/usr.bin/ctfdump/Makefile.depend +++ b/cddl/usr.bin/ctfdump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/cddl/usr.bin/ctfmerge/Makefile.depend b/cddl/usr.bin/ctfmerge/Makefile.depend index 2c870cc77558..cda806b0f4c2 100644 --- a/cddl/usr.bin/ctfmerge/Makefile.depend +++ b/cddl/usr.bin/ctfmerge/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libctf \ gnu/lib/libgcc \ diff --git a/cddl/usr.bin/sgsmsg/Makefile.depend b/cddl/usr.bin/sgsmsg/Makefile.depend index dc069b654cc3..9d3c6f56836f 100644 --- a/cddl/usr.bin/sgsmsg/Makefile.depend +++ b/cddl/usr.bin/sgsmsg/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/cddl/usr.bin/zinject/Makefile.depend b/cddl/usr.bin/zinject/Makefile.depend index 42488ec3b06d..b096c839c304 100644 --- a/cddl/usr.bin/zinject/Makefile.depend +++ b/cddl/usr.bin/zinject/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libnvpair \ cddl/lib/libumem \ diff --git a/cddl/usr.bin/zstreamdump/Makefile.depend b/cddl/usr.bin/zstreamdump/Makefile.depend index 72360fe0d677..1f41f8b99f7a 100644 --- a/cddl/usr.bin/zstreamdump/Makefile.depend +++ b/cddl/usr.bin/zstreamdump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/cddl/usr.bin/ztest/Makefile.depend b/cddl/usr.bin/ztest/Makefile.depend index e42e30505f33..302b03ef0ad8 100644 --- a/cddl/usr.bin/ztest/Makefile.depend +++ b/cddl/usr.bin/ztest/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/cddl/usr.sbin/dtrace/Makefile.depend b/cddl/usr.sbin/dtrace/Makefile.depend index 57f4efb13895..7dee666bed93 100644 --- a/cddl/usr.sbin/dtrace/Makefile.depend +++ b/cddl/usr.sbin/dtrace/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libctf \ cddl/lib/libdtrace \ diff --git a/cddl/usr.sbin/dtruss/Makefile.depend b/cddl/usr.sbin/dtruss/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/cddl/usr.sbin/dtruss/Makefile.depend +++ b/cddl/usr.sbin/dtruss/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/cddl/usr.sbin/lockstat/Makefile.depend b/cddl/usr.sbin/lockstat/Makefile.depend index da3770a4b7c9..d93614f3705d 100644 --- a/cddl/usr.sbin/lockstat/Makefile.depend +++ b/cddl/usr.sbin/lockstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libctf \ cddl/lib/libdtrace \ diff --git a/cddl/usr.sbin/zdb/Makefile.depend b/cddl/usr.sbin/zdb/Makefile.depend index 975bf7776a10..0ea2461bf0b8 100644 --- a/cddl/usr.sbin/zdb/Makefile.depend +++ b/cddl/usr.sbin/zdb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libnvpair \ cddl/lib/libumem \ diff --git a/cddl/usr.sbin/zhack/Makefile.depend b/cddl/usr.sbin/zhack/Makefile.depend index 975bf7776a10..0ea2461bf0b8 100644 --- a/cddl/usr.sbin/zhack/Makefile.depend +++ b/cddl/usr.sbin/zhack/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/libnvpair \ cddl/lib/libumem \ diff --git a/games/bcd/Makefile.depend b/games/bcd/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/games/bcd/Makefile.depend +++ b/games/bcd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/caesar/Makefile.depend b/games/caesar/Makefile.depend index d78f7b72e2c0..b6a920e8f5a7 100644 --- a/games/caesar/Makefile.depend +++ b/games/caesar/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/factor/Makefile.depend b/games/factor/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/games/factor/Makefile.depend +++ b/games/factor/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/fortune/datfiles/Makefile.depend b/games/fortune/datfiles/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/games/fortune/datfiles/Makefile.depend +++ b/games/fortune/datfiles/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/games/fortune/fortune/Makefile.depend b/games/fortune/fortune/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/games/fortune/fortune/Makefile.depend +++ b/games/fortune/fortune/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/fortune/strfile/Makefile.depend b/games/fortune/strfile/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/games/fortune/strfile/Makefile.depend +++ b/games/fortune/strfile/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/fortune/unstr/Makefile.depend b/games/fortune/unstr/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/games/fortune/unstr/Makefile.depend +++ b/games/fortune/unstr/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/grdc/Makefile.depend b/games/grdc/Makefile.depend index c74c89fb77e8..a02469cc00d4 100644 --- a/games/grdc/Makefile.depend +++ b/games/grdc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/morse/Makefile.depend b/games/morse/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/games/morse/Makefile.depend +++ b/games/morse/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/number/Makefile.depend b/games/number/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/games/number/Makefile.depend +++ b/games/number/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/pom/Makefile.depend b/games/pom/Makefile.depend index d78f7b72e2c0..b6a920e8f5a7 100644 --- a/games/pom/Makefile.depend +++ b/games/pom/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/ppt/Makefile.depend b/games/ppt/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/games/ppt/Makefile.depend +++ b/games/ppt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/primes/Makefile.depend b/games/primes/Makefile.depend index d78f7b72e2c0..b6a920e8f5a7 100644 --- a/games/primes/Makefile.depend +++ b/games/primes/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/games/random/Makefile.depend b/games/random/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/games/random/Makefile.depend +++ b/games/random/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/gnu/lib/csu/Makefile.depend b/gnu/lib/csu/Makefile.depend index 04f30e7487f1..dc4c8629b6ea 100644 --- a/gnu/lib/csu/Makefile.depend +++ b/gnu/lib/csu/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/lib/libdialog/Makefile.depend b/gnu/lib/libdialog/Makefile.depend index a9d63a90d5fb..8d113d38e4da 100644 --- a/gnu/lib/libdialog/Makefile.depend +++ b/gnu/lib/libdialog/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/gnu/lib/libgcc/Makefile.depend b/gnu/lib/libgcc/Makefile.depend index 11b22ace4b1d..905645ca96e1 100644 --- a/gnu/lib/libgcc/Makefile.depend +++ b/gnu/lib/libgcc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/lib/libgcov/Makefile.depend b/gnu/lib/libgcov/Makefile.depend index 23b931f4d058..d780c099e60d 100644 --- a/gnu/lib/libgcov/Makefile.depend +++ b/gnu/lib/libgcov/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/lib/libgomp/Makefile.depend b/gnu/lib/libgomp/Makefile.depend index aaab8a8a33bb..7ad6b2d64d0f 100644 --- a/gnu/lib/libgomp/Makefile.depend +++ b/gnu/lib/libgomp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/gnu/lib/libreadline/readline/Makefile.depend b/gnu/lib/libreadline/readline/Makefile.depend index c74c89fb77e8..a02469cc00d4 100644 --- a/gnu/lib/libreadline/readline/Makefile.depend +++ b/gnu/lib/libreadline/readline/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/gnu/lib/libregex/Makefile.depend b/gnu/lib/libregex/Makefile.depend index 17b62e5b3277..49c1b2f6ae31 100644 --- a/gnu/lib/libregex/Makefile.depend +++ b/gnu/lib/libregex/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/gnu/lib/libssp/libssp_nonshared/Makefile.depend b/gnu/lib/libssp/libssp_nonshared/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/lib/libssp/libssp_nonshared/Makefile.depend +++ b/gnu/lib/libssp/libssp_nonshared/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/lib/libstdc++/Makefile.depend b/gnu/lib/libstdc++/Makefile.depend index 731d2f6baab4..9c790ca722ca 100644 --- a/gnu/lib/libstdc++/Makefile.depend +++ b/gnu/lib/libstdc++/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/gnu/lib/libsupc++/Makefile.depend b/gnu/lib/libsupc++/Makefile.depend index f18f640b54c9..41d89be8f013 100644 --- a/gnu/lib/libsupc++/Makefile.depend +++ b/gnu/lib/libsupc++/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/binutils/addr2line/Makefile.depend b/gnu/usr.bin/binutils/addr2line/Makefile.depend index 18e83881148f..857a823cfd08 100644 --- a/gnu/usr.bin/binutils/addr2line/Makefile.depend +++ b/gnu/usr.bin/binutils/addr2line/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ diff --git a/gnu/usr.bin/binutils/ar/Makefile.depend b/gnu/usr.bin/binutils/ar/Makefile.depend index c4f26d419958..e3f5497145d6 100644 --- a/gnu/usr.bin/binutils/ar/Makefile.depend +++ b/gnu/usr.bin/binutils/ar/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libbinutils \ diff --git a/gnu/usr.bin/binutils/as/Makefile.depend b/gnu/usr.bin/binutils/as/Makefile.depend index ee36db7f6a7b..fedc6e955393 100644 --- a/gnu/usr.bin/binutils/as/Makefile.depend +++ b/gnu/usr.bin/binutils/as/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libiberty \ diff --git a/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 b/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 index 62067d81dafb..5258b64f9728 100644 --- a/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 +++ b/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libiberty \ diff --git a/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 b/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 index d47d5fbe56e2..919536e8129c 100644 --- a/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 +++ b/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/binutils/libbinutils/Makefile.depend b/gnu/usr.bin/binutils/libbinutils/Makefile.depend index c3c47561d383..a3d213c603d3 100644 --- a/gnu/usr.bin/binutils/libbinutils/Makefile.depend +++ b/gnu/usr.bin/binutils/libbinutils/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/usr.bin/binutils/libbfd \ include \ diff --git a/gnu/usr.bin/binutils/libiberty/Makefile.depend b/gnu/usr.bin/binutils/libiberty/Makefile.depend index 6a3fc332584d..4e6cdd82297c 100644 --- a/gnu/usr.bin/binutils/libiberty/Makefile.depend +++ b/gnu/usr.bin/binutils/libiberty/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/binutils/libopcodes/Makefile.depend b/gnu/usr.bin/binutils/libopcodes/Makefile.depend index e248139c3a0e..639d45d8b9b0 100644 --- a/gnu/usr.bin/binutils/libopcodes/Makefile.depend +++ b/gnu/usr.bin/binutils/libopcodes/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/binutils/nm/Makefile.depend b/gnu/usr.bin/binutils/nm/Makefile.depend index 18e83881148f..857a823cfd08 100644 --- a/gnu/usr.bin/binutils/nm/Makefile.depend +++ b/gnu/usr.bin/binutils/nm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ diff --git a/gnu/usr.bin/binutils/objcopy/Makefile.depend b/gnu/usr.bin/binutils/objcopy/Makefile.depend index 18e83881148f..857a823cfd08 100644 --- a/gnu/usr.bin/binutils/objcopy/Makefile.depend +++ b/gnu/usr.bin/binutils/objcopy/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ diff --git a/gnu/usr.bin/binutils/objdump/Makefile.depend b/gnu/usr.bin/binutils/objdump/Makefile.depend index ba1a3be8ed85..a834ea86b27c 100644 --- a/gnu/usr.bin/binutils/objdump/Makefile.depend +++ b/gnu/usr.bin/binutils/objdump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ diff --git a/gnu/usr.bin/binutils/ranlib/Makefile.depend b/gnu/usr.bin/binutils/ranlib/Makefile.depend index c4f26d419958..e3f5497145d6 100644 --- a/gnu/usr.bin/binutils/ranlib/Makefile.depend +++ b/gnu/usr.bin/binutils/ranlib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libbinutils \ diff --git a/gnu/usr.bin/binutils/readelf/Makefile.depend b/gnu/usr.bin/binutils/readelf/Makefile.depend index 18e83881148f..857a823cfd08 100644 --- a/gnu/usr.bin/binutils/readelf/Makefile.depend +++ b/gnu/usr.bin/binutils/readelf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ diff --git a/gnu/usr.bin/binutils/size/Makefile.depend b/gnu/usr.bin/binutils/size/Makefile.depend index 18e83881148f..857a823cfd08 100644 --- a/gnu/usr.bin/binutils/size/Makefile.depend +++ b/gnu/usr.bin/binutils/size/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ diff --git a/gnu/usr.bin/binutils/strings/Makefile.depend b/gnu/usr.bin/binutils/strings/Makefile.depend index 18e83881148f..857a823cfd08 100644 --- a/gnu/usr.bin/binutils/strings/Makefile.depend +++ b/gnu/usr.bin/binutils/strings/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ diff --git a/gnu/usr.bin/binutils/strip/Makefile.depend b/gnu/usr.bin/binutils/strip/Makefile.depend index 18e83881148f..857a823cfd08 100644 --- a/gnu/usr.bin/binutils/strip/Makefile.depend +++ b/gnu/usr.bin/binutils/strip/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ diff --git a/gnu/usr.bin/cc/cc_int/Makefile.depend b/gnu/usr.bin/cc/cc_int/Makefile.depend index e722b3998782..9ec5f3214b71 100644 --- a/gnu/usr.bin/cc/cc_int/Makefile.depend +++ b/gnu/usr.bin/cc/cc_int/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/usr.bin/cc/cc_tools \ include \ diff --git a/gnu/usr.bin/cc/cc_tools/Makefile.depend b/gnu/usr.bin/cc/cc_tools/Makefile.depend index 0cbe1d7aa246..dc535a669625 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile.depend +++ b/gnu/usr.bin/cc/cc_tools/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/gnu/usr.bin/cc/include/Makefile.depend b/gnu/usr.bin/cc/include/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/cc/include/Makefile.depend +++ b/gnu/usr.bin/cc/include/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/cc/libcpp/Makefile.depend b/gnu/usr.bin/cc/libcpp/Makefile.depend index 85a412b5bba9..c1e035bff949 100644 --- a/gnu/usr.bin/cc/libcpp/Makefile.depend +++ b/gnu/usr.bin/cc/libcpp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/cc/libdecnumber/Makefile.depend b/gnu/usr.bin/cc/libdecnumber/Makefile.depend index e722b3998782..9ec5f3214b71 100644 --- a/gnu/usr.bin/cc/libdecnumber/Makefile.depend +++ b/gnu/usr.bin/cc/libdecnumber/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/usr.bin/cc/cc_tools \ include \ diff --git a/gnu/usr.bin/cc/libiberty/Makefile.depend b/gnu/usr.bin/cc/libiberty/Makefile.depend index e248139c3a0e..639d45d8b9b0 100644 --- a/gnu/usr.bin/cc/libiberty/Makefile.depend +++ b/gnu/usr.bin/cc/libiberty/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/cvs/contrib/Makefile.depend b/gnu/usr.bin/cvs/contrib/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/cvs/contrib/Makefile.depend +++ b/gnu/usr.bin/cvs/contrib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/cvs/cvs/Makefile.depend b/gnu/usr.bin/cvs/cvs/Makefile.depend index 710302cda5fe..b851da317dcd 100644 --- a/gnu/usr.bin/cvs/cvs/Makefile.depend +++ b/gnu/usr.bin/cvs/cvs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libregex \ diff --git a/gnu/usr.bin/cvs/cvsbug/Makefile.depend b/gnu/usr.bin/cvs/cvsbug/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/cvs/cvsbug/Makefile.depend +++ b/gnu/usr.bin/cvs/cvsbug/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/cvs/lib/Makefile.depend b/gnu/usr.bin/cvs/lib/Makefile.depend index 0840c69a0436..bd8e11316c29 100644 --- a/gnu/usr.bin/cvs/lib/Makefile.depend +++ b/gnu/usr.bin/cvs/lib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/cvs/libdiff/Makefile.depend b/gnu/usr.bin/cvs/libdiff/Makefile.depend index 393ce879db82..f789459be5c8 100644 --- a/gnu/usr.bin/cvs/libdiff/Makefile.depend +++ b/gnu/usr.bin/cvs/libdiff/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libregex \ gnu/usr.bin/cvs/lib \ diff --git a/gnu/usr.bin/dialog/Makefile.depend b/gnu/usr.bin/dialog/Makefile.depend index 3f1092bbda13..adbf705a4046 100644 --- a/gnu/usr.bin/dialog/Makefile.depend +++ b/gnu/usr.bin/dialog/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libdialog \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/diff3/Makefile.depend b/gnu/usr.bin/diff3/Makefile.depend index 8f3703470bbf..4e45cf609073 100644 --- a/gnu/usr.bin/diff3/Makefile.depend +++ b/gnu/usr.bin/diff3/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/gnu/usr.bin/gdb/gdb/Makefile.depend b/gnu/usr.bin/gdb/gdb/Makefile.depend index f4044c218e19..2420584f9208 100644 --- a/gnu/usr.bin/gdb/gdb/Makefile.depend +++ b/gnu/usr.bin/gdb/gdb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libreadline/readline \ diff --git a/gnu/usr.bin/gdb/gdbserver/Makefile.depend b/gnu/usr.bin/gdb/gdbserver/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/gnu/usr.bin/gdb/gdbserver/Makefile.depend +++ b/gnu/usr.bin/gdb/gdbserver/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/gnu/usr.bin/gdb/gdbtui/Makefile.depend b/gnu/usr.bin/gdb/gdbtui/Makefile.depend index 1ced4733fc9e..37a24af7672c 100644 --- a/gnu/usr.bin/gdb/gdbtui/Makefile.depend +++ b/gnu/usr.bin/gdb/gdbtui/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libreadline/readline \ diff --git a/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 b/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 index a1746a263f76..16c1ab41dd20 100644 --- a/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 +++ b/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libreadline/readline \ diff --git a/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 b/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 index d29724c09960..17e8178fb4cc 100644 --- a/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 +++ b/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libreadline/readline \ include \ diff --git a/gnu/usr.bin/groff/contrib/mm/Makefile.depend b/gnu/usr.bin/groff/contrib/mm/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/contrib/mm/Makefile.depend +++ b/gnu/usr.bin/groff/contrib/mm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devascii/Makefile.depend b/gnu/usr.bin/groff/font/devascii/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devascii/Makefile.depend +++ b/gnu/usr.bin/groff/font/devascii/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devcp1047/Makefile.depend b/gnu/usr.bin/groff/font/devcp1047/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devcp1047/Makefile.depend +++ b/gnu/usr.bin/groff/font/devcp1047/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devdvi/Makefile.depend b/gnu/usr.bin/groff/font/devdvi/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devdvi/Makefile.depend +++ b/gnu/usr.bin/groff/font/devdvi/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devhtml/Makefile.depend b/gnu/usr.bin/groff/font/devhtml/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devhtml/Makefile.depend +++ b/gnu/usr.bin/groff/font/devhtml/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend b/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend +++ b/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devlatin1/Makefile.depend b/gnu/usr.bin/groff/font/devlatin1/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devlatin1/Makefile.depend +++ b/gnu/usr.bin/groff/font/devlatin1/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devlbp/Makefile.depend b/gnu/usr.bin/groff/font/devlbp/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devlbp/Makefile.depend +++ b/gnu/usr.bin/groff/font/devlbp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devlj4/Makefile.depend b/gnu/usr.bin/groff/font/devlj4/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devlj4/Makefile.depend +++ b/gnu/usr.bin/groff/font/devlj4/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devps/Makefile.depend b/gnu/usr.bin/groff/font/devps/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devps/Makefile.depend +++ b/gnu/usr.bin/groff/font/devps/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devutf8/Makefile.depend b/gnu/usr.bin/groff/font/devutf8/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devutf8/Makefile.depend +++ b/gnu/usr.bin/groff/font/devutf8/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/man/Makefile.depend b/gnu/usr.bin/groff/man/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/man/Makefile.depend +++ b/gnu/usr.bin/groff/man/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend index a5c44b5b3a5e..7d74dee1c118 100644 --- a/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend index a5c44b5b3a5e..7d74dee1c118 100644 --- a/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend index a5c44b5b3a5e..7d74dee1c118 100644 --- a/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend index a5c44b5b3a5e..7d74dee1c118 100644 --- a/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/devices/grops/Makefile.depend b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend index a5c44b5b3a5e..7d74dee1c118 100644 --- a/gnu/usr.bin/groff/src/devices/grops/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend index a5c44b5b3a5e..7d74dee1c118 100644 --- a/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend b/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend index e248139c3a0e..639d45d8b9b0 100644 --- a/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend b/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend index 6a3fc332584d..4e6cdd82297c 100644 --- a/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend +++ b/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend b/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend index 8ed89d7d53c1..e507cd0f2c05 100644 --- a/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend +++ b/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend index 971bd9543652..62a2ef18f86b 100644 --- a/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend index 65365863573a..2f960988132b 100644 --- a/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/preproc/html/Makefile.depend b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend index 65365863573a..2f960988132b 100644 --- a/gnu/usr.bin/groff/src/preproc/html/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend index 769449ca663f..07cdb43ccecb 100644 --- a/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend index e026f846ad56..6b27158b05d5 100644 --- a/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend b/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend index 65365863573a..2f960988132b 100644 --- a/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend index 65365863573a..2f960988132b 100644 --- a/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/roff/groff/Makefile.depend b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend index 65365863573a..2f960988132b 100644 --- a/gnu/usr.bin/groff/src/roff/groff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/roff/grog/Makefile.depend b/gnu/usr.bin/groff/src/roff/grog/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/src/roff/grog/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/grog/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend b/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend b/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/src/roff/troff/Makefile.depend b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend index fbf42cfa30f3..33acccf203c4 100644 --- a/gnu/usr.bin/groff/src/roff/troff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend index 65365863573a..2f960988132b 100644 --- a/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend index 65365863573a..2f960988132b 100644 --- a/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend index 339cc48feaed..65b677cf40db 100644 --- a/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend index 339cc48feaed..65b677cf40db 100644 --- a/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend index 339cc48feaed..65b677cf40db 100644 --- a/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend index c9e6df177b83..561d6e67f72e 100644 --- a/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/groff/src/libs/libgroff \ diff --git a/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend index 65365863573a..2f960988132b 100644 --- a/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/gnu/usr.bin/groff/tmac/Makefile.depend b/gnu/usr.bin/groff/tmac/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/tmac/Makefile.depend +++ b/gnu/usr.bin/groff/tmac/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/patch/Makefile.depend b/gnu/usr.bin/patch/Makefile.depend index e248139c3a0e..639d45d8b9b0 100644 --- a/gnu/usr.bin/patch/Makefile.depend +++ b/gnu/usr.bin/patch/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/rcs/ci/Makefile.depend b/gnu/usr.bin/rcs/ci/Makefile.depend index 42c54115ed6a..99d8b8de5b8a 100644 --- a/gnu/usr.bin/rcs/ci/Makefile.depend +++ b/gnu/usr.bin/rcs/ci/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ diff --git a/gnu/usr.bin/rcs/co/Makefile.depend b/gnu/usr.bin/rcs/co/Makefile.depend index 42c54115ed6a..99d8b8de5b8a 100644 --- a/gnu/usr.bin/rcs/co/Makefile.depend +++ b/gnu/usr.bin/rcs/co/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ diff --git a/gnu/usr.bin/rcs/ident/Makefile.depend b/gnu/usr.bin/rcs/ident/Makefile.depend index 42c54115ed6a..99d8b8de5b8a 100644 --- a/gnu/usr.bin/rcs/ident/Makefile.depend +++ b/gnu/usr.bin/rcs/ident/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ diff --git a/gnu/usr.bin/rcs/lib/Makefile.depend b/gnu/usr.bin/rcs/lib/Makefile.depend index e248139c3a0e..639d45d8b9b0 100644 --- a/gnu/usr.bin/rcs/lib/Makefile.depend +++ b/gnu/usr.bin/rcs/lib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/rcs/merge/Makefile.depend b/gnu/usr.bin/rcs/merge/Makefile.depend index 42c54115ed6a..99d8b8de5b8a 100644 --- a/gnu/usr.bin/rcs/merge/Makefile.depend +++ b/gnu/usr.bin/rcs/merge/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ diff --git a/gnu/usr.bin/rcs/rcs/Makefile.depend b/gnu/usr.bin/rcs/rcs/Makefile.depend index 42c54115ed6a..99d8b8de5b8a 100644 --- a/gnu/usr.bin/rcs/rcs/Makefile.depend +++ b/gnu/usr.bin/rcs/rcs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ diff --git a/gnu/usr.bin/rcs/rcsclean/Makefile.depend b/gnu/usr.bin/rcs/rcsclean/Makefile.depend index 42c54115ed6a..99d8b8de5b8a 100644 --- a/gnu/usr.bin/rcs/rcsclean/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsclean/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ diff --git a/gnu/usr.bin/rcs/rcsdiff/Makefile.depend b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend index 42c54115ed6a..99d8b8de5b8a 100644 --- a/gnu/usr.bin/rcs/rcsdiff/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ diff --git a/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend b/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/rcs/rcsmerge/Makefile.depend b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend index 42c54115ed6a..99d8b8de5b8a 100644 --- a/gnu/usr.bin/rcs/rcsmerge/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ diff --git a/gnu/usr.bin/rcs/rlog/Makefile.depend b/gnu/usr.bin/rcs/rlog/Makefile.depend index 42c54115ed6a..99d8b8de5b8a 100644 --- a/gnu/usr.bin/rcs/rlog/Makefile.depend +++ b/gnu/usr.bin/rcs/rlog/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ diff --git a/gnu/usr.bin/sdiff/Makefile.depend b/gnu/usr.bin/sdiff/Makefile.depend index a90cb9a9de68..6c984e45efac 100644 --- a/gnu/usr.bin/sdiff/Makefile.depend +++ b/gnu/usr.bin/sdiff/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/gnu/usr.bin/texinfo/info/Makefile.depend b/gnu/usr.bin/texinfo/info/Makefile.depend index a9061f130d26..a59305a34889 100644 --- a/gnu/usr.bin/texinfo/info/Makefile.depend +++ b/gnu/usr.bin/texinfo/info/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/texinfo/libtxi \ diff --git a/gnu/usr.bin/texinfo/infokey/Makefile.depend b/gnu/usr.bin/texinfo/infokey/Makefile.depend index cdde7ce36dcc..2f9a11170c44 100644 --- a/gnu/usr.bin/texinfo/infokey/Makefile.depend +++ b/gnu/usr.bin/texinfo/infokey/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/texinfo/libtxi \ diff --git a/gnu/usr.bin/texinfo/install-info/Makefile.depend b/gnu/usr.bin/texinfo/install-info/Makefile.depend index cdde7ce36dcc..2f9a11170c44 100644 --- a/gnu/usr.bin/texinfo/install-info/Makefile.depend +++ b/gnu/usr.bin/texinfo/install-info/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/texinfo/libtxi \ diff --git a/gnu/usr.bin/texinfo/libtxi/Makefile.depend b/gnu/usr.bin/texinfo/libtxi/Makefile.depend index e248139c3a0e..639d45d8b9b0 100644 --- a/gnu/usr.bin/texinfo/libtxi/Makefile.depend +++ b/gnu/usr.bin/texinfo/libtxi/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/texinfo/makeinfo/Makefile.depend b/gnu/usr.bin/texinfo/makeinfo/Makefile.depend index cdde7ce36dcc..2f9a11170c44 100644 --- a/gnu/usr.bin/texinfo/makeinfo/Makefile.depend +++ b/gnu/usr.bin/texinfo/makeinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/texinfo/libtxi \ diff --git a/gnu/usr.bin/texinfo/texindex/Makefile.depend b/gnu/usr.bin/texinfo/texindex/Makefile.depend index cdde7ce36dcc..2f9a11170c44 100644 --- a/gnu/usr.bin/texinfo/texindex/Makefile.depend +++ b/gnu/usr.bin/texinfo/texindex/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/texinfo/libtxi \ diff --git a/include/Makefile.depend b/include/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/include/Makefile.depend +++ b/include/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/include/arpa/Makefile.depend b/include/arpa/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/include/arpa/Makefile.depend +++ b/include/arpa/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/include/gssapi/Makefile.depend b/include/gssapi/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/include/gssapi/Makefile.depend +++ b/include/gssapi/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/include/protocols/Makefile.depend b/include/protocols/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/include/protocols/Makefile.depend +++ b/include/protocols/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/include/rpc/Makefile.depend b/include/rpc/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/include/rpc/Makefile.depend +++ b/include/rpc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/include/rpcsvc/Makefile.depend b/include/rpcsvc/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/include/rpcsvc/Makefile.depend +++ b/include/rpcsvc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/include/xlocale/Makefile.depend b/include/xlocale/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/include/xlocale/Makefile.depend +++ b/include/xlocale/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/kerberos5/lib/libasn1/Makefile.depend b/kerberos5/lib/libasn1/Makefile.depend index e946e45bcbcf..b1011ea08da5 100644 --- a/kerberos5/lib/libasn1/Makefile.depend +++ b/kerberos5/lib/libasn1/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libgssapi_krb5/Makefile.depend b/kerberos5/lib/libgssapi_krb5/Makefile.depend index dd9f7385eaed..0cf253c61c9b 100644 --- a/kerberos5/lib/libgssapi_krb5/Makefile.depend +++ b/kerberos5/lib/libgssapi_krb5/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libgssapi_ntlm/Makefile.depend b/kerberos5/lib/libgssapi_ntlm/Makefile.depend index fc8ecbd8b500..a1a6c9d99375 100644 --- a/kerberos5/lib/libgssapi_ntlm/Makefile.depend +++ b/kerberos5/lib/libgssapi_ntlm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libgssapi_spnego/Makefile.depend b/kerberos5/lib/libgssapi_spnego/Makefile.depend index a2ad481b9b98..97935f5c2496 100644 --- a/kerberos5/lib/libgssapi_spnego/Makefile.depend +++ b/kerberos5/lib/libgssapi_spnego/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libhdb/Makefile.depend b/kerberos5/lib/libhdb/Makefile.depend index da67b2e20f0a..5e03bfca340d 100644 --- a/kerberos5/lib/libhdb/Makefile.depend +++ b/kerberos5/lib/libhdb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libheimbase/Makefile.depend b/kerberos5/lib/libheimbase/Makefile.depend index a2742684c435..a34439e272da 100644 --- a/kerberos5/lib/libheimbase/Makefile.depend +++ b/kerberos5/lib/libheimbase/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libheimipcc/Makefile.depend b/kerberos5/lib/libheimipcc/Makefile.depend index a0383b5e3712..db82c43882fb 100644 --- a/kerberos5/lib/libheimipcc/Makefile.depend +++ b/kerberos5/lib/libheimipcc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/kerberos5/lib/libheimipcs/Makefile.depend b/kerberos5/lib/libheimipcs/Makefile.depend index fb53be096db2..ef25c4e6088b 100644 --- a/kerberos5/lib/libheimipcs/Makefile.depend +++ b/kerberos5/lib/libheimipcs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/kerberos5/lib/libheimntlm/Makefile.depend b/kerberos5/lib/libheimntlm/Makefile.depend index fd0132798aa3..007dc27a6548 100644 --- a/kerberos5/lib/libheimntlm/Makefile.depend +++ b/kerberos5/lib/libheimntlm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libheimsqlite/Makefile.depend b/kerberos5/lib/libheimsqlite/Makefile.depend index 4ef6bd26076f..bcff5cec3cc4 100644 --- a/kerberos5/lib/libheimsqlite/Makefile.depend +++ b/kerberos5/lib/libheimsqlite/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libhx509/Makefile.depend b/kerberos5/lib/libhx509/Makefile.depend index ccf6550260eb..d3f9000b1c64 100644 --- a/kerberos5/lib/libhx509/Makefile.depend +++ b/kerberos5/lib/libhx509/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libkadm5clnt/Makefile.depend b/kerberos5/lib/libkadm5clnt/Makefile.depend index c7acab4c162f..2069e73e8075 100644 --- a/kerberos5/lib/libkadm5clnt/Makefile.depend +++ b/kerberos5/lib/libkadm5clnt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libkadm5srv/Makefile.depend b/kerberos5/lib/libkadm5srv/Makefile.depend index cde994c2d02a..69dc119d9384 100644 --- a/kerberos5/lib/libkadm5srv/Makefile.depend +++ b/kerberos5/lib/libkadm5srv/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libkafs5/Makefile.depend b/kerberos5/lib/libkafs5/Makefile.depend index 8152b249da13..c596bb796e5b 100644 --- a/kerberos5/lib/libkafs5/Makefile.depend +++ b/kerberos5/lib/libkafs5/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libkdc/Makefile.depend b/kerberos5/lib/libkdc/Makefile.depend index 7942dd1d30b3..4c0b1e95fe15 100644 --- a/kerberos5/lib/libkdc/Makefile.depend +++ b/kerberos5/lib/libkdc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libkrb5/Makefile.depend b/kerberos5/lib/libkrb5/Makefile.depend index 7954e7254cb0..d9673773870a 100644 --- a/kerberos5/lib/libkrb5/Makefile.depend +++ b/kerberos5/lib/libkrb5/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libroken/Makefile.depend b/kerberos5/lib/libroken/Makefile.depend index 9ef705dec97c..cbfb7f2b226c 100644 --- a/kerberos5/lib/libroken/Makefile.depend +++ b/kerberos5/lib/libroken/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/lib/libsl/Makefile.depend b/kerberos5/lib/libsl/Makefile.depend index 2c791d37e507..37043e8431b2 100644 --- a/kerberos5/lib/libsl/Makefile.depend +++ b/kerberos5/lib/libsl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/kerberos5/lib/libvers/Makefile.depend b/kerberos5/lib/libvers/Makefile.depend index c42b0d7150ce..3c5440f5efff 100644 --- a/kerberos5/lib/libvers/Makefile.depend +++ b/kerberos5/lib/libvers/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/kerberos5/lib/libwind/Makefile.depend b/kerberos5/lib/libwind/Makefile.depend index 1a24097c020c..41b44cfd436e 100644 --- a/kerberos5/lib/libwind/Makefile.depend +++ b/kerberos5/lib/libwind/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/digest-service/Makefile.depend b/kerberos5/libexec/digest-service/Makefile.depend index 6accfead0809..dbb4f692be52 100644 --- a/kerberos5/libexec/digest-service/Makefile.depend +++ b/kerberos5/libexec/digest-service/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/hprop/Makefile.depend b/kerberos5/libexec/hprop/Makefile.depend index c0d0cd8eb27e..7fa91a41d259 100644 --- a/kerberos5/libexec/hprop/Makefile.depend +++ b/kerberos5/libexec/hprop/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/hpropd/Makefile.depend b/kerberos5/libexec/hpropd/Makefile.depend index 339a02998f30..54e7f0160ad4 100644 --- a/kerberos5/libexec/hpropd/Makefile.depend +++ b/kerberos5/libexec/hpropd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/ipropd-master/Makefile.depend b/kerberos5/libexec/ipropd-master/Makefile.depend index efca2cb7d71c..f24347d24619 100644 --- a/kerberos5/libexec/ipropd-master/Makefile.depend +++ b/kerberos5/libexec/ipropd-master/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/ipropd-slave/Makefile.depend b/kerberos5/libexec/ipropd-slave/Makefile.depend index d7818494d1d2..819b1a7f9414 100644 --- a/kerberos5/libexec/ipropd-slave/Makefile.depend +++ b/kerberos5/libexec/ipropd-slave/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/kadmind/Makefile.depend b/kerberos5/libexec/kadmind/Makefile.depend index 6ce5fa768361..336c5251a77c 100644 --- a/kerberos5/libexec/kadmind/Makefile.depend +++ b/kerberos5/libexec/kadmind/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/kcm/Makefile.depend b/kerberos5/libexec/kcm/Makefile.depend index 68fb1c89d5f6..b7a13a606022 100644 --- a/kerberos5/libexec/kcm/Makefile.depend +++ b/kerberos5/libexec/kcm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/kdc/Makefile.depend b/kerberos5/libexec/kdc/Makefile.depend index 657a9c8371c6..0f5cbdab3360 100644 --- a/kerberos5/libexec/kdc/Makefile.depend +++ b/kerberos5/libexec/kdc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/kdigest/Makefile.depend b/kerberos5/libexec/kdigest/Makefile.depend index 507b0ddf962d..1509f57e7918 100644 --- a/kerberos5/libexec/kdigest/Makefile.depend +++ b/kerberos5/libexec/kdigest/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/kfd/Makefile.depend b/kerberos5/libexec/kfd/Makefile.depend index 12d14d09b9a4..bec2b67c0836 100644 --- a/kerberos5/libexec/kfd/Makefile.depend +++ b/kerberos5/libexec/kfd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/kimpersonate/Makefile.depend b/kerberos5/libexec/kimpersonate/Makefile.depend index d7dceac3ddde..43fd22673b5f 100644 --- a/kerberos5/libexec/kimpersonate/Makefile.depend +++ b/kerberos5/libexec/kimpersonate/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/libexec/kpasswdd/Makefile.depend b/kerberos5/libexec/kpasswdd/Makefile.depend index 4670d04c0ab5..5d58c64a6477 100644 --- a/kerberos5/libexec/kpasswdd/Makefile.depend +++ b/kerberos5/libexec/kpasswdd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/tools/asn1_compile/Makefile.depend b/kerberos5/tools/asn1_compile/Makefile.depend index a7637fb533bc..8c934b664d6f 100644 --- a/kerberos5/tools/asn1_compile/Makefile.depend +++ b/kerberos5/tools/asn1_compile/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/tools/make-roken/Makefile.depend b/kerberos5/tools/make-roken/Makefile.depend index d0e44c19228d..f5c80026606d 100644 --- a/kerberos5/tools/make-roken/Makefile.depend +++ b/kerberos5/tools/make-roken/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/tools/slc/Makefile.depend b/kerberos5/tools/slc/Makefile.depend index 55e399c53c59..674b8d9ea7ce 100644 --- a/kerberos5/tools/slc/Makefile.depend +++ b/kerberos5/tools/slc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.bin/hxtool/Makefile.depend b/kerberos5/usr.bin/hxtool/Makefile.depend index ba8c2c0e0984..5507971ed07e 100644 --- a/kerberos5/usr.bin/hxtool/Makefile.depend +++ b/kerberos5/usr.bin/hxtool/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.bin/kadmin/Makefile.depend b/kerberos5/usr.bin/kadmin/Makefile.depend index c52f7bbf3aba..5d4838b5265d 100644 --- a/kerberos5/usr.bin/kadmin/Makefile.depend +++ b/kerberos5/usr.bin/kadmin/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.bin/kcc/Makefile.depend b/kerberos5/usr.bin/kcc/Makefile.depend index afb519d1bc5e..b763a5833f90 100644 --- a/kerberos5/usr.bin/kcc/Makefile.depend +++ b/kerberos5/usr.bin/kcc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.bin/kdestroy/Makefile.depend b/kerberos5/usr.bin/kdestroy/Makefile.depend index d7dceac3ddde..43fd22673b5f 100644 --- a/kerberos5/usr.bin/kdestroy/Makefile.depend +++ b/kerberos5/usr.bin/kdestroy/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.bin/kf/Makefile.depend b/kerberos5/usr.bin/kf/Makefile.depend index 12d14d09b9a4..bec2b67c0836 100644 --- a/kerberos5/usr.bin/kf/Makefile.depend +++ b/kerberos5/usr.bin/kf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.bin/kgetcred/Makefile.depend b/kerberos5/usr.bin/kgetcred/Makefile.depend index 127ffd0ce63e..035cc38782cb 100644 --- a/kerberos5/usr.bin/kgetcred/Makefile.depend +++ b/kerberos5/usr.bin/kgetcred/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.bin/kinit/Makefile.depend b/kerberos5/usr.bin/kinit/Makefile.depend index 103c89633442..22796f63a318 100644 --- a/kerberos5/usr.bin/kinit/Makefile.depend +++ b/kerberos5/usr.bin/kinit/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.bin/kpasswd/Makefile.depend b/kerberos5/usr.bin/kpasswd/Makefile.depend index 8c8f335707c5..c3196008d32c 100644 --- a/kerberos5/usr.bin/kpasswd/Makefile.depend +++ b/kerberos5/usr.bin/kpasswd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.bin/krb5-config/Makefile.depend b/kerberos5/usr.bin/krb5-config/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/kerberos5/usr.bin/krb5-config/Makefile.depend +++ b/kerberos5/usr.bin/krb5-config/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/kerberos5/usr.bin/ksu/Makefile.depend b/kerberos5/usr.bin/ksu/Makefile.depend index 4bb43fa8c441..e4ef5a290f1f 100644 --- a/kerberos5/usr.bin/ksu/Makefile.depend +++ b/kerberos5/usr.bin/ksu/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.bin/string2key/Makefile.depend b/kerberos5/usr.bin/string2key/Makefile.depend index 339a02998f30..54e7f0160ad4 100644 --- a/kerberos5/usr.bin/string2key/Makefile.depend +++ b/kerberos5/usr.bin/string2key/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend index a5015d74dd07..681d921d5154 100644 --- a/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend +++ b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.sbin/iprop-log/Makefile.depend b/kerberos5/usr.sbin/iprop-log/Makefile.depend index 85d7298e48f7..198944e1c163 100644 --- a/kerberos5/usr.sbin/iprop-log/Makefile.depend +++ b/kerberos5/usr.sbin/iprop-log/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.sbin/kstash/Makefile.depend b/kerberos5/usr.sbin/kstash/Makefile.depend index 339a02998f30..54e7f0160ad4 100644 --- a/kerberos5/usr.sbin/kstash/Makefile.depend +++ b/kerberos5/usr.sbin/kstash/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/kerberos5/usr.sbin/ktutil/Makefile.depend b/kerberos5/usr.sbin/ktutil/Makefile.depend index bb8333d67865..460edae4dc80 100644 --- a/kerberos5/usr.sbin/ktutil/Makefile.depend +++ b/kerberos5/usr.sbin/ktutil/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/atf/libatf-c++/Makefile.depend b/lib/atf/libatf-c++/Makefile.depend index 9f3438cbe628..fd68234c7003 100644 --- a/lib/atf/libatf-c++/Makefile.depend +++ b/lib/atf/libatf-c++/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/lib/atf/libatf-c/Makefile.depend b/lib/atf/libatf-c/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/atf/libatf-c/Makefile.depend +++ b/lib/atf/libatf-c/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/bind/bind9/Makefile.depend b/lib/bind/bind9/Makefile.depend index e54ec8c9f8a4..84c18191a454 100644 --- a/lib/bind/bind9/Makefile.depend +++ b/lib/bind/bind9/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/lib/bind/dns/Makefile.depend b/lib/bind/dns/Makefile.depend index 6fa3f641f835..fe9d7ff1eb62 100644 --- a/lib/bind/dns/Makefile.depend +++ b/lib/bind/dns/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/lib/bind/isc/Makefile.depend b/lib/bind/isc/Makefile.depend index e54ec8c9f8a4..84c18191a454 100644 --- a/lib/bind/isc/Makefile.depend +++ b/lib/bind/isc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/lib/bind/isccc/Makefile.depend b/lib/bind/isccc/Makefile.depend index e54ec8c9f8a4..84c18191a454 100644 --- a/lib/bind/isccc/Makefile.depend +++ b/lib/bind/isccc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/lib/bind/isccfg/Makefile.depend b/lib/bind/isccfg/Makefile.depend index e54ec8c9f8a4..84c18191a454 100644 --- a/lib/bind/isccfg/Makefile.depend +++ b/lib/bind/isccfg/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/lib/bind/lwres/Makefile.depend b/lib/bind/lwres/Makefile.depend index 59822b918ad0..da5b13581829 100644 --- a/lib/bind/lwres/Makefile.depend +++ b/lib/bind/lwres/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/csu/amd64/Makefile.depend b/lib/csu/amd64/Makefile.depend index ff699f730be6..7d982eb5c63a 100644 --- a/lib/csu/amd64/Makefile.depend +++ b/lib/csu/amd64/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ diff --git a/lib/libalias/libalias/Makefile.depend b/lib/libalias/libalias/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/lib/libalias/libalias/Makefile.depend +++ b/lib/libalias/libalias/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libalias/modules/cuseeme/Makefile.depend b/lib/libalias/modules/cuseeme/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libalias/modules/cuseeme/Makefile.depend +++ b/lib/libalias/modules/cuseeme/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libalias/modules/dummy/Makefile.depend b/lib/libalias/modules/dummy/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libalias/modules/dummy/Makefile.depend +++ b/lib/libalias/modules/dummy/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libalias/modules/ftp/Makefile.depend b/lib/libalias/modules/ftp/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libalias/modules/ftp/Makefile.depend +++ b/lib/libalias/modules/ftp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libalias/modules/irc/Makefile.depend b/lib/libalias/modules/irc/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libalias/modules/irc/Makefile.depend +++ b/lib/libalias/modules/irc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libalias/modules/nbt/Makefile.depend b/lib/libalias/modules/nbt/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libalias/modules/nbt/Makefile.depend +++ b/lib/libalias/modules/nbt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libalias/modules/pptp/Makefile.depend b/lib/libalias/modules/pptp/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libalias/modules/pptp/Makefile.depend +++ b/lib/libalias/modules/pptp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libalias/modules/skinny/Makefile.depend b/lib/libalias/modules/skinny/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libalias/modules/skinny/Makefile.depend +++ b/lib/libalias/modules/skinny/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libalias/modules/smedia/Makefile.depend b/lib/libalias/modules/smedia/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libalias/modules/smedia/Makefile.depend +++ b/lib/libalias/modules/smedia/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libarchive/Makefile.depend b/lib/libarchive/Makefile.depend index ad46344b5bd5..013d154a5f7c 100644 --- a/lib/libarchive/Makefile.depend +++ b/lib/libarchive/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libauditd/Makefile.depend b/lib/libauditd/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libauditd/Makefile.depend +++ b/lib/libauditd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libbegemot/Makefile.depend b/lib/libbegemot/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libbegemot/Makefile.depend +++ b/lib/libbegemot/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libblocksruntime/Makefile.depend b/lib/libblocksruntime/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libblocksruntime/Makefile.depend +++ b/lib/libblocksruntime/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libbluetooth/Makefile.depend b/lib/libbluetooth/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libbluetooth/Makefile.depend +++ b/lib/libbluetooth/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libbsm/Makefile.depend b/lib/libbsm/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/lib/libbsm/Makefile.depend +++ b/lib/libbsm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libbsnmp/libbsnmp/Makefile.depend b/lib/libbsnmp/libbsnmp/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/lib/libbsnmp/libbsnmp/Makefile.depend +++ b/lib/libbsnmp/libbsnmp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libbz2/Makefile.depend b/lib/libbz2/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libbz2/Makefile.depend +++ b/lib/libbz2/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libc/Makefile.depend b/lib/libc/Makefile.depend index 4aedcc77448e..ec2683f1db90 100644 --- a/lib/libc/Makefile.depend +++ b/lib/libc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/rpc \ diff --git a/lib/libcalendar/Makefile.depend b/lib/libcalendar/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/lib/libcalendar/Makefile.depend +++ b/lib/libcalendar/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libcam/Makefile.depend b/lib/libcam/Makefile.depend index 887c9bdcd4fd..2ee0ef13e57b 100644 --- a/lib/libcam/Makefile.depend +++ b/lib/libcam/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libcom_err/Makefile.depend b/lib/libcom_err/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libcom_err/Makefile.depend +++ b/lib/libcom_err/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libcompat/Makefile.depend b/lib/libcompat/Makefile.depend index e248139c3a0e..639d45d8b9b0 100644 --- a/lib/libcompat/Makefile.depend +++ b/lib/libcompat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libcompiler_rt/Makefile.depend b/lib/libcompiler_rt/Makefile.depend index ff699f730be6..7d982eb5c63a 100644 --- a/lib/libcompiler_rt/Makefile.depend +++ b/lib/libcompiler_rt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ diff --git a/lib/libcrypt/Makefile.depend b/lib/libcrypt/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/lib/libcrypt/Makefile.depend +++ b/lib/libcrypt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libdevinfo/Makefile.depend b/lib/libdevinfo/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libdevinfo/Makefile.depend +++ b/lib/libdevinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libdevstat/Makefile.depend b/lib/libdevstat/Makefile.depend index 553674c09429..70d796e23bfc 100644 --- a/lib/libdevstat/Makefile.depend +++ b/lib/libdevstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libdwarf/Makefile.depend b/lib/libdwarf/Makefile.depend index dc069b654cc3..9d3c6f56836f 100644 --- a/lib/libdwarf/Makefile.depend +++ b/lib/libdwarf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libedit/Makefile.depend b/lib/libedit/Makefile.depend index 3a5905dd12b0..23a2ee3e57c2 100644 --- a/lib/libedit/Makefile.depend +++ b/lib/libedit/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libedit/edit/readline/Makefile.depend b/lib/libedit/edit/readline/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/lib/libedit/edit/readline/Makefile.depend +++ b/lib/libedit/edit/readline/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/lib/libelf/Makefile.depend b/lib/libelf/Makefile.depend index 5fbb3274231f..8fa02a69b5c5 100644 --- a/lib/libelf/Makefile.depend +++ b/lib/libelf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libexpat/Makefile.depend b/lib/libexpat/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libexpat/Makefile.depend +++ b/lib/libexpat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libfetch/Makefile.depend b/lib/libfetch/Makefile.depend index 67b015f3651e..396224ddc51b 100644 --- a/lib/libfetch/Makefile.depend +++ b/lib/libfetch/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libgeom/Makefile.depend b/lib/libgeom/Makefile.depend index 0c4bf22366ef..7d95f58031b0 100644 --- a/lib/libgeom/Makefile.depend +++ b/lib/libgeom/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libgpib/Makefile.depend b/lib/libgpib/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/lib/libgpib/Makefile.depend +++ b/lib/libgpib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libgssapi/Makefile.depend b/lib/libgssapi/Makefile.depend index 55d781514a9e..e40bfe591cc7 100644 --- a/lib/libgssapi/Makefile.depend +++ b/lib/libgssapi/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libipsec/Makefile.depend b/lib/libipsec/Makefile.depend index d946c74ea757..faea21cd8208 100644 --- a/lib/libipsec/Makefile.depend +++ b/lib/libipsec/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libipx/Makefile.depend b/lib/libipx/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/lib/libipx/Makefile.depend +++ b/lib/libipx/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libjail/Makefile.depend b/lib/libjail/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/lib/libjail/Makefile.depend +++ b/lib/libjail/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libkiconv/Makefile.depend b/lib/libkiconv/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libkiconv/Makefile.depend +++ b/lib/libkiconv/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libkvm/Makefile.depend b/lib/libkvm/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libkvm/Makefile.depend +++ b/lib/libkvm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/liblzma/Makefile.depend b/lib/liblzma/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/liblzma/Makefile.depend +++ b/lib/liblzma/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libmagic/Makefile.depend b/lib/libmagic/Makefile.depend index 1e192bde3a22..0d6e068b73a8 100644 --- a/lib/libmagic/Makefile.depend +++ b/lib/libmagic/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libmandoc/Makefile.depend b/lib/libmandoc/Makefile.depend index e248139c3a0e..639d45d8b9b0 100644 --- a/lib/libmandoc/Makefile.depend +++ b/lib/libmandoc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libmd/Makefile.depend b/lib/libmd/Makefile.depend index f157012f0dbb..269139da1895 100644 --- a/lib/libmd/Makefile.depend +++ b/lib/libmd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libmemstat/Makefile.depend b/lib/libmemstat/Makefile.depend index 553674c09429..70d796e23bfc 100644 --- a/lib/libmemstat/Makefile.depend +++ b/lib/libmemstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libmilter/Makefile.depend b/lib/libmilter/Makefile.depend index 9a23d64e0d03..34129b7525d3 100644 --- a/lib/libmilter/Makefile.depend +++ b/lib/libmilter/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libmp/Makefile.depend b/lib/libmp/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/lib/libmp/Makefile.depend +++ b/lib/libmp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libnetgraph/Makefile.depend b/lib/libnetgraph/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libnetgraph/Makefile.depend +++ b/lib/libnetgraph/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libngatm/Makefile.depend b/lib/libngatm/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/lib/libngatm/Makefile.depend +++ b/lib/libngatm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libopie/Makefile.depend b/lib/libopie/Makefile.depend index f7894b5169ae..7d0552bd9062 100644 --- a/lib/libopie/Makefile.depend +++ b/lib/libopie/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/libpam/Makefile.depend b/lib/libpam/libpam/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libpam/libpam/Makefile.depend +++ b/lib/libpam/libpam/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_chroot/Makefile.depend b/lib/libpam/modules/pam_chroot/Makefile.depend index d6d3563e0fbc..c3c0ed437aff 100644 --- a/lib/libpam/modules/pam_chroot/Makefile.depend +++ b/lib/libpam/modules/pam_chroot/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_deny/Makefile.depend b/lib/libpam/modules/pam_deny/Makefile.depend index 28fb49b7fb5c..4f9591edd9e2 100644 --- a/lib/libpam/modules/pam_deny/Makefile.depend +++ b/lib/libpam/modules/pam_deny/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_echo/Makefile.depend b/lib/libpam/modules/pam_echo/Makefile.depend index d6d3563e0fbc..c3c0ed437aff 100644 --- a/lib/libpam/modules/pam_echo/Makefile.depend +++ b/lib/libpam/modules/pam_echo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_exec/Makefile.depend b/lib/libpam/modules/pam_exec/Makefile.depend index d6d3563e0fbc..c3c0ed437aff 100644 --- a/lib/libpam/modules/pam_exec/Makefile.depend +++ b/lib/libpam/modules/pam_exec/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_ftpusers/Makefile.depend b/lib/libpam/modules/pam_ftpusers/Makefile.depend index d6d3563e0fbc..c3c0ed437aff 100644 --- a/lib/libpam/modules/pam_ftpusers/Makefile.depend +++ b/lib/libpam/modules/pam_ftpusers/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_group/Makefile.depend b/lib/libpam/modules/pam_group/Makefile.depend index d6d3563e0fbc..c3c0ed437aff 100644 --- a/lib/libpam/modules/pam_group/Makefile.depend +++ b/lib/libpam/modules/pam_group/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_guest/Makefile.depend b/lib/libpam/modules/pam_guest/Makefile.depend index d6d3563e0fbc..c3c0ed437aff 100644 --- a/lib/libpam/modules/pam_guest/Makefile.depend +++ b/lib/libpam/modules/pam_guest/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_krb5/Makefile.depend b/lib/libpam/modules/pam_krb5/Makefile.depend index b8a9017607c9..5de8d9fec3fc 100644 --- a/lib/libpam/modules/pam_krb5/Makefile.depend +++ b/lib/libpam/modules/pam_krb5/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_ksu/Makefile.depend b/lib/libpam/modules/pam_ksu/Makefile.depend index b8a9017607c9..5de8d9fec3fc 100644 --- a/lib/libpam/modules/pam_ksu/Makefile.depend +++ b/lib/libpam/modules/pam_ksu/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_lastlog/Makefile.depend b/lib/libpam/modules/pam_lastlog/Makefile.depend index d6d3563e0fbc..c3c0ed437aff 100644 --- a/lib/libpam/modules/pam_lastlog/Makefile.depend +++ b/lib/libpam/modules/pam_lastlog/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_login_access/Makefile.depend b/lib/libpam/modules/pam_login_access/Makefile.depend index d6d3563e0fbc..c3c0ed437aff 100644 --- a/lib/libpam/modules/pam_login_access/Makefile.depend +++ b/lib/libpam/modules/pam_login_access/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_nologin/Makefile.depend b/lib/libpam/modules/pam_nologin/Makefile.depend index 641b39110c2c..3a8ef7010b22 100644 --- a/lib/libpam/modules/pam_nologin/Makefile.depend +++ b/lib/libpam/modules/pam_nologin/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_opie/Makefile.depend b/lib/libpam/modules/pam_opie/Makefile.depend index 3767c199333f..3e327fa93a5a 100644 --- a/lib/libpam/modules/pam_opie/Makefile.depend +++ b/lib/libpam/modules/pam_opie/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_opieaccess/Makefile.depend b/lib/libpam/modules/pam_opieaccess/Makefile.depend index 42afd9e586f4..8bf6251184f3 100644 --- a/lib/libpam/modules/pam_opieaccess/Makefile.depend +++ b/lib/libpam/modules/pam_opieaccess/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_passwdqc/Makefile.depend b/lib/libpam/modules/pam_passwdqc/Makefile.depend index d2abaae47b6a..677b2fe1c1a2 100644 --- a/lib/libpam/modules/pam_passwdqc/Makefile.depend +++ b/lib/libpam/modules/pam_passwdqc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_permit/Makefile.depend b/lib/libpam/modules/pam_permit/Makefile.depend index 28fb49b7fb5c..4f9591edd9e2 100644 --- a/lib/libpam/modules/pam_permit/Makefile.depend +++ b/lib/libpam/modules/pam_permit/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_radius/Makefile.depend b/lib/libpam/modules/pam_radius/Makefile.depend index fca7c7a5c15d..b5a9caacb9c8 100644 --- a/lib/libpam/modules/pam_radius/Makefile.depend +++ b/lib/libpam/modules/pam_radius/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_rhosts/Makefile.depend b/lib/libpam/modules/pam_rhosts/Makefile.depend index d6d3563e0fbc..c3c0ed437aff 100644 --- a/lib/libpam/modules/pam_rhosts/Makefile.depend +++ b/lib/libpam/modules/pam_rhosts/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_rootok/Makefile.depend b/lib/libpam/modules/pam_rootok/Makefile.depend index 28fb49b7fb5c..4f9591edd9e2 100644 --- a/lib/libpam/modules/pam_rootok/Makefile.depend +++ b/lib/libpam/modules/pam_rootok/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_securetty/Makefile.depend b/lib/libpam/modules/pam_securetty/Makefile.depend index d6d3563e0fbc..c3c0ed437aff 100644 --- a/lib/libpam/modules/pam_securetty/Makefile.depend +++ b/lib/libpam/modules/pam_securetty/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_self/Makefile.depend b/lib/libpam/modules/pam_self/Makefile.depend index 28fb49b7fb5c..4f9591edd9e2 100644 --- a/lib/libpam/modules/pam_self/Makefile.depend +++ b/lib/libpam/modules/pam_self/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_ssh/Makefile.depend b/lib/libpam/modules/pam_ssh/Makefile.depend index c4e939c43c97..a2a31da6648a 100644 --- a/lib/libpam/modules/pam_ssh/Makefile.depend +++ b/lib/libpam/modules/pam_ssh/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_tacplus/Makefile.depend b/lib/libpam/modules/pam_tacplus/Makefile.depend index 65ba8d917bf7..8a3d2e2083d6 100644 --- a/lib/libpam/modules/pam_tacplus/Makefile.depend +++ b/lib/libpam/modules/pam_tacplus/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpam/modules/pam_unix/Makefile.depend b/lib/libpam/modules/pam_unix/Makefile.depend index 1b5765a3fae9..3e132a82462d 100644 --- a/lib/libpam/modules/pam_unix/Makefile.depend +++ b/lib/libpam/modules/pam_unix/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpcap/Makefile.depend b/lib/libpcap/Makefile.depend index 527dd363d0fe..b46c962655c7 100644 --- a/lib/libpcap/Makefile.depend +++ b/lib/libpcap/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libpmc/Makefile.depend b/lib/libpmc/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libpmc/Makefile.depend +++ b/lib/libpmc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libproc/Makefile.depend b/lib/libproc/Makefile.depend index 08582037ec85..1da00383bcbb 100644 --- a/lib/libproc/Makefile.depend +++ b/lib/libproc/Makefile.depend @@ -2,11 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ - gnu/lib/libsupc++ \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/lib/libprocstat/Makefile.depend b/lib/libprocstat/Makefile.depend index ef3ea09e45d3..7d6dfa3d9988 100644 --- a/lib/libprocstat/Makefile.depend +++ b/lib/libprocstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libprocstat/zfs/Makefile.depend b/lib/libprocstat/zfs/Makefile.depend index cbc3887c1f50..b142a6736e9e 100644 --- a/lib/libprocstat/zfs/Makefile.depend +++ b/lib/libprocstat/zfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libradius/Makefile.depend b/lib/libradius/Makefile.depend index b72ea114ecbe..778b5ef5b96a 100644 --- a/lib/libradius/Makefile.depend +++ b/lib/libradius/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/librpcsec_gss/Makefile.depend b/lib/librpcsec_gss/Makefile.depend index feba7752520e..3fe1712f478c 100644 --- a/lib/librpcsec_gss/Makefile.depend +++ b/lib/librpcsec_gss/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/librpcsvc/Makefile.depend b/lib/librpcsvc/Makefile.depend index b740e28d897b..124500b8b056 100644 --- a/lib/librpcsvc/Makefile.depend +++ b/lib/librpcsvc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/librt/Makefile.depend b/lib/librt/Makefile.depend index a2742684c435..a34439e272da 100644 --- a/lib/librt/Makefile.depend +++ b/lib/librt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/librtld_db/Makefile.depend b/lib/librtld_db/Makefile.depend index 3e7a19e75409..050d82890f5b 100644 --- a/lib/librtld_db/Makefile.depend +++ b/lib/librtld_db/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libsbuf/Makefile.depend b/lib/libsbuf/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libsbuf/Makefile.depend +++ b/lib/libsbuf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libsdp/Makefile.depend b/lib/libsdp/Makefile.depend index ff4e7a5e55bd..c958d10a6981 100644 --- a/lib/libsdp/Makefile.depend +++ b/lib/libsdp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libsm/Makefile.depend b/lib/libsm/Makefile.depend index 6a23591de51e..46519815d1f7 100644 --- a/lib/libsm/Makefile.depend +++ b/lib/libsm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libsmdb/Makefile.depend b/lib/libsmdb/Makefile.depend index b8a2618cc70d..fa096c87b950 100644 --- a/lib/libsmdb/Makefile.depend +++ b/lib/libsmdb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libsmutil/Makefile.depend b/lib/libsmutil/Makefile.depend index dac33d9219bc..2a24094e085d 100644 --- a/lib/libsmutil/Makefile.depend +++ b/lib/libsmutil/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/lib/libstand/Makefile.depend b/lib/libstand/Makefile.depend index 81435c1252ad..34236cbeda95 100644 --- a/lib/libstand/Makefile.depend +++ b/lib/libstand/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/lib/libstdbuf/Makefile.depend b/lib/libstdbuf/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libstdbuf/Makefile.depend +++ b/lib/libstdbuf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libstdthreads/Makefile.depend b/lib/libstdthreads/Makefile.depend index a2742684c435..a34439e272da 100644 --- a/lib/libstdthreads/Makefile.depend +++ b/lib/libstdthreads/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libtacplus/Makefile.depend b/lib/libtacplus/Makefile.depend index f7894b5169ae..7d0552bd9062 100644 --- a/lib/libtacplus/Makefile.depend +++ b/lib/libtacplus/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libtelnet/Makefile.depend b/lib/libtelnet/Makefile.depend index 82ba0486dee1..3c4206715da7 100644 --- a/lib/libtelnet/Makefile.depend +++ b/lib/libtelnet/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libthr/Makefile.depend b/lib/libthr/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/lib/libthr/Makefile.depend +++ b/lib/libthr/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libthread_db/Makefile.depend b/lib/libthread_db/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libthread_db/Makefile.depend +++ b/lib/libthread_db/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libufs/Makefile.depend b/lib/libufs/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libufs/Makefile.depend +++ b/lib/libufs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libugidfw/Makefile.depend b/lib/libugidfw/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libugidfw/Makefile.depend +++ b/lib/libugidfw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libulog/Makefile.depend b/lib/libulog/Makefile.depend index 7520d5dc8b42..fb8b9ee55f44 100644 --- a/lib/libulog/Makefile.depend +++ b/lib/libulog/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libusb/Makefile.depend b/lib/libusb/Makefile.depend index a2742684c435..a34439e272da 100644 --- a/lib/libusb/Makefile.depend +++ b/lib/libusb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libusbhid/Makefile.depend b/lib/libusbhid/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libusbhid/Makefile.depend +++ b/lib/libusbhid/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libutil/Makefile.depend b/lib/libutil/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/lib/libutil/Makefile.depend +++ b/lib/libutil/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libvgl/Makefile.depend b/lib/libvgl/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libvgl/Makefile.depend +++ b/lib/libvgl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libwrap/Makefile.depend b/lib/libwrap/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/lib/libwrap/Makefile.depend +++ b/lib/libwrap/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/liby/Makefile.depend b/lib/liby/Makefile.depend index ff699f730be6..7d982eb5c63a 100644 --- a/lib/liby/Makefile.depend +++ b/lib/liby/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ diff --git a/lib/libypclnt/Makefile.depend b/lib/libypclnt/Makefile.depend index 689fa4739f09..b7eadf3719bd 100644 --- a/lib/libypclnt/Makefile.depend +++ b/lib/libypclnt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/libz/Makefile.depend b/lib/libz/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/libz/Makefile.depend +++ b/lib/libz/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/msun/Makefile.depend b/lib/msun/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/lib/msun/Makefile.depend +++ b/lib/msun/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/ncurses/form/Makefile.depend b/lib/ncurses/form/Makefile.depend index c385fd153f14..58dd56093015 100644 --- a/lib/ncurses/form/Makefile.depend +++ b/lib/ncurses/form/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/ncurses/formw/Makefile.depend b/lib/ncurses/formw/Makefile.depend index 2b7d64428353..b6406f6f74ff 100644 --- a/lib/ncurses/formw/Makefile.depend +++ b/lib/ncurses/formw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/ncurses/menu/Makefile.depend b/lib/ncurses/menu/Makefile.depend index 3659b8cba710..283227e745ce 100644 --- a/lib/ncurses/menu/Makefile.depend +++ b/lib/ncurses/menu/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/ncurses/menuw/Makefile.depend b/lib/ncurses/menuw/Makefile.depend index 95d37f9cd84a..a62a9c543d6c 100644 --- a/lib/ncurses/menuw/Makefile.depend +++ b/lib/ncurses/menuw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/ncurses/ncurses/Makefile.depend b/lib/ncurses/ncurses/Makefile.depend index ea66f0024d39..4b8f36b03146 100644 --- a/lib/ncurses/ncurses/Makefile.depend +++ b/lib/ncurses/ncurses/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/ncurses/ncursesw/Makefile.depend b/lib/ncurses/ncursesw/Makefile.depend index 8a0d422b1838..6c70a47cb884 100644 --- a/lib/ncurses/ncursesw/Makefile.depend +++ b/lib/ncurses/ncursesw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/ncurses/panel/Makefile.depend b/lib/ncurses/panel/Makefile.depend index 16a470db5308..6d24063d2b64 100644 --- a/lib/ncurses/panel/Makefile.depend +++ b/lib/ncurses/panel/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/lib/ncurses/panelw/Makefile.depend b/lib/ncurses/panelw/Makefile.depend index 58c34072e498..4bab195f80c8 100644 --- a/lib/ncurses/panelw/Makefile.depend +++ b/lib/ncurses/panelw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/atf/atf-check/Makefile.depend b/libexec/atf/atf-check/Makefile.depend index bb3a5445d647..727e9ecd01e2 100644 --- a/libexec/atf/atf-check/Makefile.depend +++ b/libexec/atf/atf-check/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/libexec/atrun/Makefile.depend b/libexec/atrun/Makefile.depend index 641b39110c2c..3a8ef7010b22 100644 --- a/libexec/atrun/Makefile.depend +++ b/libexec/atrun/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/bootpd/bootpgw/Makefile.depend b/libexec/bootpd/bootpgw/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/libexec/bootpd/bootpgw/Makefile.depend +++ b/libexec/bootpd/bootpgw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/bootpd/tools/bootpef/Makefile.depend b/libexec/bootpd/tools/bootpef/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/libexec/bootpd/tools/bootpef/Makefile.depend +++ b/libexec/bootpd/tools/bootpef/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/bootpd/tools/bootptest/Makefile.depend b/libexec/bootpd/tools/bootptest/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/libexec/bootpd/tools/bootptest/Makefile.depend +++ b/libexec/bootpd/tools/bootptest/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/comsat/Makefile.depend b/libexec/comsat/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/libexec/comsat/Makefile.depend +++ b/libexec/comsat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/fingerd/Makefile.depend b/libexec/fingerd/Makefile.depend index c262920aba6b..f253d0a15aed 100644 --- a/libexec/fingerd/Makefile.depend +++ b/libexec/fingerd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/ftpd/Makefile.depend b/libexec/ftpd/Makefile.depend index 082d01a7e26b..636a25b464ef 100644 --- a/libexec/ftpd/Makefile.depend +++ b/libexec/ftpd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/getty/Makefile.depend b/libexec/getty/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/libexec/getty/Makefile.depend +++ b/libexec/getty/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/mail.local/Makefile.depend b/libexec/mail.local/Makefile.depend index 5486088332b7..42b341305f88 100644 --- a/libexec/mail.local/Makefile.depend +++ b/libexec/mail.local/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/mknetid/Makefile.depend b/libexec/mknetid/Makefile.depend index 6e9b14f8d7a1..2f2a1c69ed2e 100644 --- a/libexec/mknetid/Makefile.depend +++ b/libexec/mknetid/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/pppoed/Makefile.depend b/libexec/pppoed/Makefile.depend index 18356441c25f..9febc4bdaa6a 100644 --- a/libexec/pppoed/Makefile.depend +++ b/libexec/pppoed/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/rbootd/Makefile.depend b/libexec/rbootd/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/libexec/rbootd/Makefile.depend +++ b/libexec/rbootd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/revnetgroup/Makefile.depend b/libexec/revnetgroup/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/libexec/revnetgroup/Makefile.depend +++ b/libexec/revnetgroup/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/rlogind/Makefile.depend b/libexec/rlogind/Makefile.depend index c262920aba6b..f253d0a15aed 100644 --- a/libexec/rlogind/Makefile.depend +++ b/libexec/rlogind/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/rpc.rquotad/Makefile.depend b/libexec/rpc.rquotad/Makefile.depend index ed142e7fcf6f..fb4c76342a01 100644 --- a/libexec/rpc.rquotad/Makefile.depend +++ b/libexec/rpc.rquotad/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/rpc.rstatd/Makefile.depend b/libexec/rpc.rstatd/Makefile.depend index 1cf1716cc757..74a5f0a50e64 100644 --- a/libexec/rpc.rstatd/Makefile.depend +++ b/libexec/rpc.rstatd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/rpc.rusersd/Makefile.depend b/libexec/rpc.rusersd/Makefile.depend index bf35174cdcf4..acb998b8aadb 100644 --- a/libexec/rpc.rusersd/Makefile.depend +++ b/libexec/rpc.rusersd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/rpc.rwalld/Makefile.depend b/libexec/rpc.rwalld/Makefile.depend index 7ca71becb366..c0c681e4e179 100644 --- a/libexec/rpc.rwalld/Makefile.depend +++ b/libexec/rpc.rwalld/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/rpc.sprayd/Makefile.depend b/libexec/rpc.sprayd/Makefile.depend index 60fe900ca5e6..c405bd7fe3f5 100644 --- a/libexec/rpc.sprayd/Makefile.depend +++ b/libexec/rpc.sprayd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/rshd/Makefile.depend b/libexec/rshd/Makefile.depend index b332af0edd15..4c4a03360852 100644 --- a/libexec/rshd/Makefile.depend +++ b/libexec/rshd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/rtld-elf/Makefile.depend b/libexec/rtld-elf/Makefile.depend index 32bd00bda02c..ea133a6ca5b7 100644 --- a/libexec/rtld-elf/Makefile.depend +++ b/libexec/rtld-elf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/libexec/smrsh/Makefile.depend b/libexec/smrsh/Makefile.depend index be1fe9458313..0fa4e158283d 100644 --- a/libexec/smrsh/Makefile.depend +++ b/libexec/smrsh/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/talkd/Makefile.depend b/libexec/talkd/Makefile.depend index 083e419a095a..43b5ccc56c3f 100644 --- a/libexec/talkd/Makefile.depend +++ b/libexec/talkd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/tcpd/Makefile.depend b/libexec/tcpd/Makefile.depend index cd2e9bbe3717..2e2a10bde164 100644 --- a/libexec/tcpd/Makefile.depend +++ b/libexec/tcpd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/telnetd/Makefile.depend b/libexec/telnetd/Makefile.depend index a12d055b6390..35a31547e0eb 100644 --- a/libexec/telnetd/Makefile.depend +++ b/libexec/telnetd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/tftp-proxy/Makefile.depend b/libexec/tftp-proxy/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/libexec/tftp-proxy/Makefile.depend +++ b/libexec/tftp-proxy/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/tftpd/Makefile.depend b/libexec/tftpd/Makefile.depend index b30ae55b6d65..f35353153c9c 100644 --- a/libexec/tftpd/Makefile.depend +++ b/libexec/tftpd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/ulog-helper/Makefile.depend b/libexec/ulog-helper/Makefile.depend index 1a4b120bf033..27913b6f9021 100644 --- a/libexec/ulog-helper/Makefile.depend +++ b/libexec/ulog-helper/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/libexec/ypxfr/Makefile.depend b/libexec/ypxfr/Makefile.depend index eb84d1589c03..175e52eab761 100644 --- a/libexec/ypxfr/Makefile.depend +++ b/libexec/ypxfr/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/pkgs/pseudo/bin/Makefile.depend b/pkgs/pseudo/bin/Makefile.depend index 9c817504ff42..e94e9c378f3c 100644 --- a/pkgs/pseudo/bin/Makefile.depend +++ b/pkgs/pseudo/bin/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ bin/cat \ bin/chflags \ diff --git a/pkgs/pseudo/cddl/Makefile.depend b/pkgs/pseudo/cddl/Makefile.depend index 275084e70acd..ad0f9f373d6e 100644 --- a/pkgs/pseudo/cddl/Makefile.depend +++ b/pkgs/pseudo/cddl/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ cddl/lib/drti \ cddl/lib/libavl \ diff --git a/pkgs/pseudo/clang/Makefile.depend b/pkgs/pseudo/clang/Makefile.depend index 0b47fe6604b6..128712a7e078 100644 --- a/pkgs/pseudo/clang/Makefile.depend +++ b/pkgs/pseudo/clang/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ lib/clang/libclanganalysis \ lib/clang/libclangarcmigrate \ diff --git a/pkgs/pseudo/games/Makefile.depend b/pkgs/pseudo/games/Makefile.depend index 4fbcb3d2128d..7f5cfa2d8ba1 100644 --- a/pkgs/pseudo/games/Makefile.depend +++ b/pkgs/pseudo/games/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ games/bcd \ games/caesar \ diff --git a/pkgs/pseudo/gcc/Makefile.depend b/pkgs/pseudo/gcc/Makefile.depend index 4e3a43b7b9d5..8136da6a0ae3 100644 --- a/pkgs/pseudo/gcc/Makefile.depend +++ b/pkgs/pseudo/gcc/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/usr.bin/cc/cc_tools \ gnu/usr.bin/cc/libiberty \ diff --git a/pkgs/pseudo/gnu/Makefile.depend b/pkgs/pseudo/gnu/Makefile.depend index 30011a5bf50c..7f18a63d0ac2 100644 --- a/pkgs/pseudo/gnu/Makefile.depend +++ b/pkgs/pseudo/gnu/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/pkgs/pseudo/include/Makefile.depend b/pkgs/pseudo/include/Makefile.depend index f809febf40fc..e8e6e09c0ebd 100644 --- a/pkgs/pseudo/include/Makefile.depend +++ b/pkgs/pseudo/include/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include/arpa \ include/gssapi \ diff --git a/pkgs/pseudo/kerberos5/Makefile.depend b/pkgs/pseudo/kerberos5/Makefile.depend index 5d4e9e48e863..525755d97bdc 100644 --- a/pkgs/pseudo/kerberos5/Makefile.depend +++ b/pkgs/pseudo/kerberos5/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ kerberos5/doc \ kerberos5/lib/libasn1 \ diff --git a/pkgs/pseudo/lib/Makefile.depend b/pkgs/pseudo/lib/Makefile.depend index f7e0c2e44e48..ff61cfb802bc 100644 --- a/pkgs/pseudo/lib/Makefile.depend +++ b/pkgs/pseudo/lib/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ diff --git a/pkgs/pseudo/libexec/Makefile.depend b/pkgs/pseudo/libexec/Makefile.depend index e81f621e8ae8..161dcffad22b 100644 --- a/pkgs/pseudo/libexec/Makefile.depend +++ b/pkgs/pseudo/libexec/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ libexec/atf/atf-check \ libexec/atrun \ diff --git a/pkgs/pseudo/misc/Makefile.depend b/pkgs/pseudo/misc/Makefile.depend index ecb32412c0cc..efc3bb7a9446 100644 --- a/pkgs/pseudo/misc/Makefile.depend +++ b/pkgs/pseudo/misc/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ rescue/librescue \ rescue/rescue \ @@ -13,8 +11,8 @@ DIRDEPS = \ etc/sendmail \ -.if ${_DEP_MACHINE:U${MACHINE}:S,amd64,i386,} == "i386" -DIRDEPS += \ + +DIRDEPS.x86sys= \ sys/boot/i386/mbr \ sys/boot/i386/pmbr \ sys/boot/i386/boot0 \ @@ -34,9 +32,9 @@ DIRDEPS += \ sys/boot/i386/gptzfsboot \ sys/boot/i386/zfsloader \ -.endif DIRDEPS.amd64= \ + ${DIRDEPS.x86sys} \ sys/boot/efi/libefi \ sys/boot/zfs \ sys/boot/userboot/ficl \ @@ -45,7 +43,7 @@ DIRDEPS.amd64= \ sys/boot/userboot/userboot \ DIRDEPS.arm= sys/boot/fdt sys/boot/uboot -DIRDEPS.i386= sys/boot/efi/libefi sys/boot/zfs +DIRDEPS.i386= ${DIRDEPS.x86sys} sys/boot/efi/libefi sys/boot/zfs DIRDEPS.ia64= sys/boot/efi/libefi sys/boot/zfs DIRDEPS.powerpc= sys/boot/fdt sys/boot/ofw sys/boot/uboot DIRDEPS.sparc64= sys/boot/ofw sys/boot/zfs diff --git a/pkgs/pseudo/sbin/Makefile.depend b/pkgs/pseudo/sbin/Makefile.depend index fe9cff7cb693..127876d40a53 100644 --- a/pkgs/pseudo/sbin/Makefile.depend +++ b/pkgs/pseudo/sbin/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ sbin/adjkerntz \ sbin/atacontrol \ diff --git a/pkgs/pseudo/secure/Makefile.depend b/pkgs/pseudo/secure/Makefile.depend index 062bc5e2bd55..803430d0d83c 100644 --- a/pkgs/pseudo/secure/Makefile.depend +++ b/pkgs/pseudo/secure/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ secure/lib/libcrypto/engines/lib4758cca \ secure/lib/libcrypto/engines/libaep \ diff --git a/pkgs/pseudo/share/Makefile.depend b/pkgs/pseudo/share/Makefile.depend index 5f86ebd13387..17107fd60d55 100644 --- a/pkgs/pseudo/share/Makefile.depend +++ b/pkgs/pseudo/share/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ share/info \ share/atf \ diff --git a/pkgs/pseudo/the-lot/Makefile.depend b/pkgs/pseudo/the-lot/Makefile.depend index aae54e01c3f3..1a0f8d1816d2 100644 --- a/pkgs/pseudo/the-lot/Makefile.depend +++ b/pkgs/pseudo/the-lot/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ pkgs/pseudo/userland \ diff --git a/pkgs/pseudo/usr.bin/Makefile.depend b/pkgs/pseudo/usr.bin/Makefile.depend index ee28b2d19074..cdfdc1a5f051 100644 --- a/pkgs/pseudo/usr.bin/Makefile.depend +++ b/pkgs/pseudo/usr.bin/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ usr.bin/alias \ usr.bin/apply \ diff --git a/pkgs/pseudo/usr.sbin/Makefile.depend b/pkgs/pseudo/usr.sbin/Makefile.depend index a1b8905f43c2..dc6977254817 100644 --- a/pkgs/pseudo/usr.sbin/Makefile.depend +++ b/pkgs/pseudo/usr.sbin/Makefile.depend @@ -4,8 +4,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ usr.sbin/IPXrouted \ usr.sbin/ac \ diff --git a/sbin/adjkerntz/Makefile.depend b/sbin/adjkerntz/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/adjkerntz/Makefile.depend +++ b/sbin/adjkerntz/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/atacontrol/Makefile.depend b/sbin/atacontrol/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/atacontrol/Makefile.depend +++ b/sbin/atacontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/atm/atmconfig/Makefile.depend b/sbin/atm/atmconfig/Makefile.depend index a79320028284..63d333eb3485 100644 --- a/sbin/atm/atmconfig/Makefile.depend +++ b/sbin/atm/atmconfig/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/badsect/Makefile.depend b/sbin/badsect/Makefile.depend index 250cad80a3e0..4c40401ac6e5 100644 --- a/sbin/badsect/Makefile.depend +++ b/sbin/badsect/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/bsdlabel/Makefile.depend b/sbin/bsdlabel/Makefile.depend index 378b35f0fc09..5f8a6c0cf014 100644 --- a/sbin/bsdlabel/Makefile.depend +++ b/sbin/bsdlabel/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/camcontrol/Makefile.depend b/sbin/camcontrol/Makefile.depend index f9f359744bf9..5e53403d170d 100644 --- a/sbin/camcontrol/Makefile.depend +++ b/sbin/camcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ccdconfig/Makefile.depend b/sbin/ccdconfig/Makefile.depend index 25f093b1c085..d1cb1204611f 100644 --- a/sbin/ccdconfig/Makefile.depend +++ b/sbin/ccdconfig/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/clri/Makefile.depend b/sbin/clri/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/clri/Makefile.depend +++ b/sbin/clri/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/comcontrol/Makefile.depend b/sbin/comcontrol/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/comcontrol/Makefile.depend +++ b/sbin/comcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/conscontrol/Makefile.depend b/sbin/conscontrol/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/conscontrol/Makefile.depend +++ b/sbin/conscontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ddb/Makefile.depend b/sbin/ddb/Makefile.depend index 553674c09429..70d796e23bfc 100644 --- a/sbin/ddb/Makefile.depend +++ b/sbin/ddb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/devd/Makefile.depend b/sbin/devd/Makefile.depend index 4d6909d7f36f..031da3523a8e 100644 --- a/sbin/devd/Makefile.depend +++ b/sbin/devd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libstdc++ \ gnu/lib/libsupc++ \ diff --git a/sbin/devfs/Makefile.depend b/sbin/devfs/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/devfs/Makefile.depend +++ b/sbin/devfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/dhclient/Makefile.depend b/sbin/dhclient/Makefile.depend index c262920aba6b..f253d0a15aed 100644 --- a/sbin/dhclient/Makefile.depend +++ b/sbin/dhclient/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/dmesg/Makefile.depend b/sbin/dmesg/Makefile.depend index 553674c09429..70d796e23bfc 100644 --- a/sbin/dmesg/Makefile.depend +++ b/sbin/dmesg/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/dump/Makefile.depend b/sbin/dump/Makefile.depend index 25ca34444ce3..9bd5a4552168 100644 --- a/sbin/dump/Makefile.depend +++ b/sbin/dump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/dumpfs/Makefile.depend b/sbin/dumpfs/Makefile.depend index 250cad80a3e0..4c40401ac6e5 100644 --- a/sbin/dumpfs/Makefile.depend +++ b/sbin/dumpfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/dumpon/Makefile.depend b/sbin/dumpon/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/dumpon/Makefile.depend +++ b/sbin/dumpon/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/etherswitchcfg/Makefile.depend b/sbin/etherswitchcfg/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/etherswitchcfg/Makefile.depend +++ b/sbin/etherswitchcfg/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/fdisk/Makefile.depend b/sbin/fdisk/Makefile.depend index 378b35f0fc09..5f8a6c0cf014 100644 --- a/sbin/fdisk/Makefile.depend +++ b/sbin/fdisk/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ffsinfo/Makefile.depend b/sbin/ffsinfo/Makefile.depend index 250cad80a3e0..4c40401ac6e5 100644 --- a/sbin/ffsinfo/Makefile.depend +++ b/sbin/ffsinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/fsck/Makefile.depend b/sbin/fsck/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/fsck/Makefile.depend +++ b/sbin/fsck/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/fsck_ffs/Makefile.depend b/sbin/fsck_ffs/Makefile.depend index 250cad80a3e0..4c40401ac6e5 100644 --- a/sbin/fsck_ffs/Makefile.depend +++ b/sbin/fsck_ffs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/fsck_msdosfs/Makefile.depend b/sbin/fsck_msdosfs/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/fsck_msdosfs/Makefile.depend +++ b/sbin/fsck_msdosfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/fsdb/Makefile.depend b/sbin/fsdb/Makefile.depend index a1ddabbceb16..8a852c01741c 100644 --- a/sbin/fsdb/Makefile.depend +++ b/sbin/fsdb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/fsirand/Makefile.depend b/sbin/fsirand/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/sbin/fsirand/Makefile.depend +++ b/sbin/fsirand/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/gbde/Makefile.depend b/sbin/gbde/Makefile.depend index 91fe7f3bfb83..04f8b794e156 100644 --- a/sbin/gbde/Makefile.depend +++ b/sbin/gbde/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/cache/Makefile.depend b/sbin/geom/class/cache/Makefile.depend index 25f093b1c085..d1cb1204611f 100644 --- a/sbin/geom/class/cache/Makefile.depend +++ b/sbin/geom/class/cache/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/concat/Makefile.depend b/sbin/geom/class/concat/Makefile.depend index 25f093b1c085..d1cb1204611f 100644 --- a/sbin/geom/class/concat/Makefile.depend +++ b/sbin/geom/class/concat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/eli/Makefile.depend b/sbin/geom/class/eli/Makefile.depend index 1c2fa6b9379b..378ee92158a0 100644 --- a/sbin/geom/class/eli/Makefile.depend +++ b/sbin/geom/class/eli/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/journal/Makefile.depend b/sbin/geom/class/journal/Makefile.depend index c6c70bfec51c..85c9a4f8e479 100644 --- a/sbin/geom/class/journal/Makefile.depend +++ b/sbin/geom/class/journal/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/label/Makefile.depend b/sbin/geom/class/label/Makefile.depend index 25f093b1c085..d1cb1204611f 100644 --- a/sbin/geom/class/label/Makefile.depend +++ b/sbin/geom/class/label/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/mirror/Makefile.depend b/sbin/geom/class/mirror/Makefile.depend index 047d873eb268..7c7cc94ec32f 100644 --- a/sbin/geom/class/mirror/Makefile.depend +++ b/sbin/geom/class/mirror/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/mountver/Makefile.depend b/sbin/geom/class/mountver/Makefile.depend index 25f093b1c085..d1cb1204611f 100644 --- a/sbin/geom/class/mountver/Makefile.depend +++ b/sbin/geom/class/mountver/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/multipath/Makefile.depend b/sbin/geom/class/multipath/Makefile.depend index 25f093b1c085..d1cb1204611f 100644 --- a/sbin/geom/class/multipath/Makefile.depend +++ b/sbin/geom/class/multipath/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/nop/Makefile.depend b/sbin/geom/class/nop/Makefile.depend index 25f093b1c085..d1cb1204611f 100644 --- a/sbin/geom/class/nop/Makefile.depend +++ b/sbin/geom/class/nop/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/part/Makefile.depend b/sbin/geom/class/part/Makefile.depend index 0ad6e954e78b..df3578f89d49 100644 --- a/sbin/geom/class/part/Makefile.depend +++ b/sbin/geom/class/part/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/raid/Makefile.depend b/sbin/geom/class/raid/Makefile.depend index 047d873eb268..7c7cc94ec32f 100644 --- a/sbin/geom/class/raid/Makefile.depend +++ b/sbin/geom/class/raid/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/raid3/Makefile.depend b/sbin/geom/class/raid3/Makefile.depend index 047d873eb268..7c7cc94ec32f 100644 --- a/sbin/geom/class/raid3/Makefile.depend +++ b/sbin/geom/class/raid3/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/sched/Makefile.depend b/sbin/geom/class/sched/Makefile.depend index 25f093b1c085..d1cb1204611f 100644 --- a/sbin/geom/class/sched/Makefile.depend +++ b/sbin/geom/class/sched/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/shsec/Makefile.depend b/sbin/geom/class/shsec/Makefile.depend index 25f093b1c085..d1cb1204611f 100644 --- a/sbin/geom/class/shsec/Makefile.depend +++ b/sbin/geom/class/shsec/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/stripe/Makefile.depend b/sbin/geom/class/stripe/Makefile.depend index 25f093b1c085..d1cb1204611f 100644 --- a/sbin/geom/class/stripe/Makefile.depend +++ b/sbin/geom/class/stripe/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/class/virstor/Makefile.depend b/sbin/geom/class/virstor/Makefile.depend index 25f093b1c085..d1cb1204611f 100644 --- a/sbin/geom/class/virstor/Makefile.depend +++ b/sbin/geom/class/virstor/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/geom/core/Makefile.depend b/sbin/geom/core/Makefile.depend index 8c8ea60f973d..db5f0a553db3 100644 --- a/sbin/geom/core/Makefile.depend +++ b/sbin/geom/core/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ggate/ggatec/Makefile.depend b/sbin/ggate/ggatec/Makefile.depend index 3ca9d6577ae5..12446ee94d39 100644 --- a/sbin/ggate/ggatec/Makefile.depend +++ b/sbin/ggate/ggatec/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ggate/ggated/Makefile.depend b/sbin/ggate/ggated/Makefile.depend index bcc7a2bc0c60..7bcfe66a2e66 100644 --- a/sbin/ggate/ggated/Makefile.depend +++ b/sbin/ggate/ggated/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ggate/ggatel/Makefile.depend b/sbin/ggate/ggatel/Makefile.depend index 21370bf8706a..a3c94c83277f 100644 --- a/sbin/ggate/ggatel/Makefile.depend +++ b/sbin/ggate/ggatel/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/growfs/Makefile.depend b/sbin/growfs/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/sbin/growfs/Makefile.depend +++ b/sbin/growfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/gvinum/Makefile.depend b/sbin/gvinum/Makefile.depend index e74fcab1343d..fdd328c17488 100644 --- a/sbin/gvinum/Makefile.depend +++ b/sbin/gvinum/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/hastctl/Makefile.depend b/sbin/hastctl/Makefile.depend index de07064eb62c..072daa8c7b53 100644 --- a/sbin/hastctl/Makefile.depend +++ b/sbin/hastctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/hastd/Makefile.depend b/sbin/hastd/Makefile.depend index 80d76560935c..326f871d1106 100644 --- a/sbin/hastd/Makefile.depend +++ b/sbin/hastd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ifconfig/Makefile.depend b/sbin/ifconfig/Makefile.depend index 71684ef7c2d4..f7e57cac41a6 100644 --- a/sbin/ifconfig/Makefile.depend +++ b/sbin/ifconfig/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/init/Makefile.depend b/sbin/init/Makefile.depend index 4478ec624a9d..db5bab0b1cc7 100644 --- a/sbin/init/Makefile.depend +++ b/sbin/init/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/sbin/ipf/ipf/Makefile.depend b/sbin/ipf/ipf/Makefile.depend index 5a71ca9b42dc..361cf169e2e0 100644 --- a/sbin/ipf/ipf/Makefile.depend +++ b/sbin/ipf/ipf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ipf/ipfs/Makefile.depend b/sbin/ipf/ipfs/Makefile.depend index ccb33b61106a..85a3c859f463 100644 --- a/sbin/ipf/ipfs/Makefile.depend +++ b/sbin/ipf/ipfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ipf/ipfstat/Makefile.depend b/sbin/ipf/ipfstat/Makefile.depend index 6ad33737e8ba..d09f062aaffb 100644 --- a/sbin/ipf/ipfstat/Makefile.depend +++ b/sbin/ipf/ipfstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ipf/ipftest/Makefile.depend b/sbin/ipf/ipftest/Makefile.depend index 7b891afa0a40..42f916405c69 100644 --- a/sbin/ipf/ipftest/Makefile.depend +++ b/sbin/ipf/ipftest/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ipf/ipmon/Makefile.depend b/sbin/ipf/ipmon/Makefile.depend index 7a9fb8791485..28ce828c73a4 100644 --- a/sbin/ipf/ipmon/Makefile.depend +++ b/sbin/ipf/ipmon/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ipf/ipnat/Makefile.depend b/sbin/ipf/ipnat/Makefile.depend index 4031ae53c1d8..26b88262f162 100644 --- a/sbin/ipf/ipnat/Makefile.depend +++ b/sbin/ipf/ipnat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ipf/ippool/Makefile.depend b/sbin/ipf/ippool/Makefile.depend index b7205670aa6e..a0da76e9ce70 100644 --- a/sbin/ipf/ippool/Makefile.depend +++ b/sbin/ipf/ippool/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ipf/ipresend/Makefile.depend b/sbin/ipf/ipresend/Makefile.depend index a326d52e1044..6c11eec2ff9c 100644 --- a/sbin/ipf/ipresend/Makefile.depend +++ b/sbin/ipf/ipresend/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ipf/libipf/Makefile.depend b/sbin/ipf/libipf/Makefile.depend index 3dfd462c7832..06fce29bf119 100644 --- a/sbin/ipf/libipf/Makefile.depend +++ b/sbin/ipf/libipf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/sbin/ipfw/Makefile.depend b/sbin/ipfw/Makefile.depend index 38cce3461511..a7206c2547c0 100644 --- a/sbin/ipfw/Makefile.depend +++ b/sbin/ipfw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/iscontrol/Makefile.depend b/sbin/iscontrol/Makefile.depend index 1725e2805fb4..2daf67fbcd1e 100644 --- a/sbin/iscontrol/Makefile.depend +++ b/sbin/iscontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/kldconfig/Makefile.depend b/sbin/kldconfig/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/kldconfig/Makefile.depend +++ b/sbin/kldconfig/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/kldload/Makefile.depend b/sbin/kldload/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/kldload/Makefile.depend +++ b/sbin/kldload/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/kldstat/Makefile.depend b/sbin/kldstat/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/sbin/kldstat/Makefile.depend +++ b/sbin/kldstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/kldunload/Makefile.depend b/sbin/kldunload/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/sbin/kldunload/Makefile.depend +++ b/sbin/kldunload/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ldconfig/Makefile.depend b/sbin/ldconfig/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/ldconfig/Makefile.depend +++ b/sbin/ldconfig/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/md5/Makefile.depend b/sbin/md5/Makefile.depend index 7520d5dc8b42..fb8b9ee55f44 100644 --- a/sbin/md5/Makefile.depend +++ b/sbin/md5/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mdconfig/Makefile.depend b/sbin/mdconfig/Makefile.depend index 11643b171703..0ab966c676ba 100644 --- a/sbin/mdconfig/Makefile.depend +++ b/sbin/mdconfig/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mdmfs/Makefile.depend b/sbin/mdmfs/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/mdmfs/Makefile.depend +++ b/sbin/mdmfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mknod/Makefile.depend b/sbin/mknod/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/mknod/Makefile.depend +++ b/sbin/mknod/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mksnap_ffs/Makefile.depend b/sbin/mksnap_ffs/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/mksnap_ffs/Makefile.depend +++ b/sbin/mksnap_ffs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mount/Makefile.depend b/sbin/mount/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/sbin/mount/Makefile.depend +++ b/sbin/mount/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mount_cd9660/Makefile.depend b/sbin/mount_cd9660/Makefile.depend index f09f976da114..59c6e9ac3a2b 100644 --- a/sbin/mount_cd9660/Makefile.depend +++ b/sbin/mount_cd9660/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mount_fusefs/Makefile.depend b/sbin/mount_fusefs/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/mount_fusefs/Makefile.depend +++ b/sbin/mount_fusefs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mount_msdosfs/Makefile.depend b/sbin/mount_msdosfs/Makefile.depend index 0dbc784cc478..42948ed51f48 100644 --- a/sbin/mount_msdosfs/Makefile.depend +++ b/sbin/mount_msdosfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mount_nfs/Makefile.depend b/sbin/mount_nfs/Makefile.depend index a3e1b44c73f2..4f9280207819 100644 --- a/sbin/mount_nfs/Makefile.depend +++ b/sbin/mount_nfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mount_nullfs/Makefile.depend b/sbin/mount_nullfs/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/mount_nullfs/Makefile.depend +++ b/sbin/mount_nullfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mount_udf/Makefile.depend b/sbin/mount_udf/Makefile.depend index 18a3d5f32450..63154a37542d 100644 --- a/sbin/mount_udf/Makefile.depend +++ b/sbin/mount_udf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/mount_unionfs/Makefile.depend b/sbin/mount_unionfs/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/mount_unionfs/Makefile.depend +++ b/sbin/mount_unionfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/natd/Makefile.depend b/sbin/natd/Makefile.depend index 34c524cfcd26..4d2fc7ea5b55 100644 --- a/sbin/natd/Makefile.depend +++ b/sbin/natd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/newfs/Makefile.depend b/sbin/newfs/Makefile.depend index da2c5d6910bd..714e1cf8f959 100644 --- a/sbin/newfs/Makefile.depend +++ b/sbin/newfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/newfs_msdos/Makefile.depend b/sbin/newfs_msdos/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/newfs_msdos/Makefile.depend +++ b/sbin/newfs_msdos/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/nfsiod/Makefile.depend b/sbin/nfsiod/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/sbin/nfsiod/Makefile.depend +++ b/sbin/nfsiod/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/nos-tun/Makefile.depend b/sbin/nos-tun/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/sbin/nos-tun/Makefile.depend +++ b/sbin/nos-tun/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/nvmecontrol/Makefile.depend b/sbin/nvmecontrol/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/nvmecontrol/Makefile.depend +++ b/sbin/nvmecontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/pfctl/Makefile.depend b/sbin/pfctl/Makefile.depend index 14e9867da47e..7503154d0f03 100644 --- a/sbin/pfctl/Makefile.depend +++ b/sbin/pfctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/pflogd/Makefile.depend b/sbin/pflogd/Makefile.depend index 447f53247e78..51c23051c607 100644 --- a/sbin/pflogd/Makefile.depend +++ b/sbin/pflogd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ping/Makefile.depend b/sbin/ping/Makefile.depend index 4e0ace67eee0..b8af33991711 100644 --- a/sbin/ping/Makefile.depend +++ b/sbin/ping/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/ping6/Makefile.depend b/sbin/ping6/Makefile.depend index e79eabfc5a8a..dab6e8d69438 100644 --- a/sbin/ping6/Makefile.depend +++ b/sbin/ping6/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/quotacheck/Makefile.depend b/sbin/quotacheck/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/sbin/quotacheck/Makefile.depend +++ b/sbin/quotacheck/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/rcorder/Makefile.depend b/sbin/rcorder/Makefile.depend index 670ea5bc553b..b49935f8a8bf 100644 --- a/sbin/rcorder/Makefile.depend +++ b/sbin/rcorder/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/reboot/Makefile.depend b/sbin/reboot/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/reboot/Makefile.depend +++ b/sbin/reboot/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/recoverdisk/Makefile.depend b/sbin/recoverdisk/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/recoverdisk/Makefile.depend +++ b/sbin/recoverdisk/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/resolvconf/Makefile.depend b/sbin/resolvconf/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/sbin/resolvconf/Makefile.depend +++ b/sbin/resolvconf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/sbin/restore/Makefile.depend b/sbin/restore/Makefile.depend index 25ca34444ce3..9bd5a4552168 100644 --- a/sbin/restore/Makefile.depend +++ b/sbin/restore/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/route/Makefile.depend b/sbin/route/Makefile.depend index ff427b81d978..4ddf99e46ff7 100644 --- a/sbin/route/Makefile.depend +++ b/sbin/route/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/routed/rtquery/Makefile.depend b/sbin/routed/rtquery/Makefile.depend index 2ceda9ee81ea..01a53c4d2e84 100644 --- a/sbin/routed/rtquery/Makefile.depend +++ b/sbin/routed/rtquery/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/rtsol/Makefile.depend b/sbin/rtsol/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/sbin/rtsol/Makefile.depend +++ b/sbin/rtsol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/savecore/Makefile.depend b/sbin/savecore/Makefile.depend index 1e192bde3a22..0d6e068b73a8 100644 --- a/sbin/savecore/Makefile.depend +++ b/sbin/savecore/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/setkey/Makefile.depend b/sbin/setkey/Makefile.depend index 03129d24825f..0f96ef0d19fc 100644 --- a/sbin/setkey/Makefile.depend +++ b/sbin/setkey/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/shutdown/Makefile.depend b/sbin/shutdown/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/shutdown/Makefile.depend +++ b/sbin/shutdown/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/spppcontrol/Makefile.depend b/sbin/spppcontrol/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/spppcontrol/Makefile.depend +++ b/sbin/spppcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/swapon/Makefile.depend b/sbin/swapon/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/sbin/swapon/Makefile.depend +++ b/sbin/swapon/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/sysctl/Makefile.depend b/sbin/sysctl/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/sbin/sysctl/Makefile.depend +++ b/sbin/sysctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/tunefs/Makefile.depend b/sbin/tunefs/Makefile.depend index 250cad80a3e0..4c40401ac6e5 100644 --- a/sbin/tunefs/Makefile.depend +++ b/sbin/tunefs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/sbin/umount/Makefile.depend b/sbin/umount/Makefile.depend index 6e9b14f8d7a1..2f2a1c69ed2e 100644 --- a/sbin/umount/Makefile.depend +++ b/sbin/umount/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libcrypto/Makefile.depend b/secure/lib/libcrypto/Makefile.depend index 249dc65ee7e2..40f7d3c19465 100644 --- a/secure/lib/libcrypto/Makefile.depend +++ b/secure/lib/libcrypto/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend +++ b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libcrypto/engines/libaep/Makefile.depend b/secure/lib/libcrypto/engines/libaep/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/secure/lib/libcrypto/engines/libaep/Makefile.depend +++ b/secure/lib/libcrypto/engines/libaep/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libcrypto/engines/libatalla/Makefile.depend b/secure/lib/libcrypto/engines/libatalla/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/secure/lib/libcrypto/engines/libatalla/Makefile.depend +++ b/secure/lib/libcrypto/engines/libatalla/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libcrypto/engines/libchil/Makefile.depend b/secure/lib/libcrypto/engines/libchil/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/secure/lib/libcrypto/engines/libchil/Makefile.depend +++ b/secure/lib/libcrypto/engines/libchil/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libcrypto/engines/libcswift/Makefile.depend b/secure/lib/libcrypto/engines/libcswift/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/secure/lib/libcrypto/engines/libcswift/Makefile.depend +++ b/secure/lib/libcrypto/engines/libcswift/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libcrypto/engines/libgost/Makefile.depend b/secure/lib/libcrypto/engines/libgost/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/secure/lib/libcrypto/engines/libgost/Makefile.depend +++ b/secure/lib/libcrypto/engines/libgost/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libcrypto/engines/libnuron/Makefile.depend b/secure/lib/libcrypto/engines/libnuron/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/secure/lib/libcrypto/engines/libnuron/Makefile.depend +++ b/secure/lib/libcrypto/engines/libnuron/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libcrypto/engines/libsureware/Makefile.depend b/secure/lib/libcrypto/engines/libsureware/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/secure/lib/libcrypto/engines/libsureware/Makefile.depend +++ b/secure/lib/libcrypto/engines/libsureware/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libcrypto/engines/libubsec/Makefile.depend b/secure/lib/libcrypto/engines/libubsec/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/secure/lib/libcrypto/engines/libubsec/Makefile.depend +++ b/secure/lib/libcrypto/engines/libubsec/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libssh/Makefile.depend b/secure/lib/libssh/Makefile.depend index 3e41c000ef0c..93b03305ef1d 100644 --- a/secure/lib/libssh/Makefile.depend +++ b/secure/lib/libssh/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/lib/libssl/Makefile.depend b/secure/lib/libssl/Makefile.depend index b72ea114ecbe..778b5ef5b96a 100644 --- a/secure/lib/libssl/Makefile.depend +++ b/secure/lib/libssl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/libexec/sftp-server/Makefile.depend b/secure/libexec/sftp-server/Makefile.depend index d4a2b7ef2456..99b777dec6bf 100644 --- a/secure/libexec/sftp-server/Makefile.depend +++ b/secure/libexec/sftp-server/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/libexec/ssh-keysign/Makefile.depend b/secure/libexec/ssh-keysign/Makefile.depend index d4a2b7ef2456..99b777dec6bf 100644 --- a/secure/libexec/ssh-keysign/Makefile.depend +++ b/secure/libexec/ssh-keysign/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/libexec/ssh-pkcs11-helper/Makefile.depend b/secure/libexec/ssh-pkcs11-helper/Makefile.depend index d4a2b7ef2456..99b777dec6bf 100644 --- a/secure/libexec/ssh-pkcs11-helper/Makefile.depend +++ b/secure/libexec/ssh-pkcs11-helper/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/usr.bin/bdes/Makefile.depend b/secure/usr.bin/bdes/Makefile.depend index 1ae71d98e8f9..9cc6bb23f470 100644 --- a/secure/usr.bin/bdes/Makefile.depend +++ b/secure/usr.bin/bdes/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/usr.bin/openssl/Makefile.depend b/secure/usr.bin/openssl/Makefile.depend index 6435f70bedba..a08ad37a2306 100644 --- a/secure/usr.bin/openssl/Makefile.depend +++ b/secure/usr.bin/openssl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/usr.bin/scp/Makefile.depend b/secure/usr.bin/scp/Makefile.depend index d4a2b7ef2456..99b777dec6bf 100644 --- a/secure/usr.bin/scp/Makefile.depend +++ b/secure/usr.bin/scp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/usr.bin/sftp/Makefile.depend b/secure/usr.bin/sftp/Makefile.depend index 6452c556e9c8..175a23d737dd 100644 --- a/secure/usr.bin/sftp/Makefile.depend +++ b/secure/usr.bin/sftp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/usr.bin/ssh-add/Makefile.depend b/secure/usr.bin/ssh-add/Makefile.depend index d4a2b7ef2456..99b777dec6bf 100644 --- a/secure/usr.bin/ssh-add/Makefile.depend +++ b/secure/usr.bin/ssh-add/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/usr.bin/ssh-agent/Makefile.depend b/secure/usr.bin/ssh-agent/Makefile.depend index d4a2b7ef2456..99b777dec6bf 100644 --- a/secure/usr.bin/ssh-agent/Makefile.depend +++ b/secure/usr.bin/ssh-agent/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/usr.bin/ssh-keygen/Makefile.depend b/secure/usr.bin/ssh-keygen/Makefile.depend index d4a2b7ef2456..99b777dec6bf 100644 --- a/secure/usr.bin/ssh-keygen/Makefile.depend +++ b/secure/usr.bin/ssh-keygen/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/usr.bin/ssh-keyscan/Makefile.depend b/secure/usr.bin/ssh-keyscan/Makefile.depend index d4a2b7ef2456..99b777dec6bf 100644 --- a/secure/usr.bin/ssh-keyscan/Makefile.depend +++ b/secure/usr.bin/ssh-keyscan/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/usr.bin/ssh/Makefile.depend b/secure/usr.bin/ssh/Makefile.depend index 37b112f9e644..ac53aefc693b 100644 --- a/secure/usr.bin/ssh/Makefile.depend +++ b/secure/usr.bin/ssh/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/secure/usr.sbin/sshd/Makefile.depend b/secure/usr.sbin/sshd/Makefile.depend index 255e652d266f..b1bfc1354309 100644 --- a/secure/usr.sbin/sshd/Makefile.depend +++ b/secure/usr.sbin/sshd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/share/colldef/Makefile.depend b/share/colldef/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/colldef/Makefile.depend +++ b/share/colldef/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/examples/ipfilter/Makefile.depend b/share/examples/ipfilter/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/examples/ipfilter/Makefile.depend +++ b/share/examples/ipfilter/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/man/man1/Makefile.depend b/share/man/man1/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/man/man1/Makefile.depend +++ b/share/man/man1/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/man/man3/Makefile.depend b/share/man/man3/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/man/man3/Makefile.depend +++ b/share/man/man3/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/man/man4/Makefile.depend b/share/man/man4/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/man/man4/Makefile.depend +++ b/share/man/man4/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/man/man5/Makefile.depend b/share/man/man5/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/man/man5/Makefile.depend +++ b/share/man/man5/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/man/man6/Makefile.depend b/share/man/man6/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/man/man6/Makefile.depend +++ b/share/man/man6/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/man/man7/Makefile.depend b/share/man/man7/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/man/man7/Makefile.depend +++ b/share/man/man7/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/man/man8/Makefile.depend b/share/man/man8/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/man/man8/Makefile.depend +++ b/share/man/man8/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/man/man9/Makefile.depend b/share/man/man9/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/man/man9/Makefile.depend +++ b/share/man/man9/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/me/Makefile.depend b/share/me/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/me/Makefile.depend +++ b/share/me/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/mklocale/Makefile.depend b/share/mklocale/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/mklocale/Makefile.depend +++ b/share/mklocale/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/monetdef/Makefile.depend b/share/monetdef/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/monetdef/Makefile.depend +++ b/share/monetdef/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/msgdef/Makefile.depend b/share/msgdef/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/msgdef/Makefile.depend +++ b/share/msgdef/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/numericdef/Makefile.depend b/share/numericdef/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/numericdef/Makefile.depend +++ b/share/numericdef/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/syscons/scrnmaps/Makefile.depend b/share/syscons/scrnmaps/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/share/syscons/scrnmaps/Makefile.depend +++ b/share/syscons/scrnmaps/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/share/tabset/Makefile.depend b/share/tabset/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/tabset/Makefile.depend +++ b/share/tabset/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/termcap/Makefile.depend b/share/termcap/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/termcap/Makefile.depend +++ b/share/termcap/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/timedef/Makefile.depend b/share/timedef/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/timedef/Makefile.depend +++ b/share/timedef/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/zoneinfo/Makefile.depend b/share/zoneinfo/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/zoneinfo/Makefile.depend +++ b/share/zoneinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.bin/apply/Makefile.depend b/usr.bin/apply/Makefile.depend index 887c9bdcd4fd..2ee0ef13e57b 100644 --- a/usr.bin/apply/Makefile.depend +++ b/usr.bin/apply/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ar/Makefile.depend b/usr.bin/ar/Makefile.depend index 2d7f2141c94d..2e7747049b94 100644 --- a/usr.bin/ar/Makefile.depend +++ b/usr.bin/ar/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/usr.bin/asa/Makefile.depend b/usr.bin/asa/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/asa/Makefile.depend +++ b/usr.bin/asa/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/at/Makefile.depend b/usr.bin/at/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/at/Makefile.depend +++ b/usr.bin/at/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/atf/atf-config/Makefile.depend b/usr.bin/atf/atf-config/Makefile.depend index bb3a5445d647..727e9ecd01e2 100644 --- a/usr.bin/atf/atf-config/Makefile.depend +++ b/usr.bin/atf/atf-config/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/usr.bin/atf/atf-report/Makefile.depend b/usr.bin/atf/atf-report/Makefile.depend index bb3a5445d647..727e9ecd01e2 100644 --- a/usr.bin/atf/atf-report/Makefile.depend +++ b/usr.bin/atf/atf-report/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/usr.bin/atf/atf-run/Makefile.depend b/usr.bin/atf/atf-run/Makefile.depend index bb3a5445d647..727e9ecd01e2 100644 --- a/usr.bin/atf/atf-run/Makefile.depend +++ b/usr.bin/atf/atf-run/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/usr.bin/atf/atf-sh/Makefile.depend b/usr.bin/atf/atf-sh/Makefile.depend index bb3a5445d647..727e9ecd01e2 100644 --- a/usr.bin/atf/atf-sh/Makefile.depend +++ b/usr.bin/atf/atf-sh/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/usr.bin/atf/atf-version/Makefile.depend b/usr.bin/atf/atf-version/Makefile.depend index f93557d3c96d..f121c8b44005 100644 --- a/usr.bin/atf/atf-version/Makefile.depend +++ b/usr.bin/atf/atf-version/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ diff --git a/usr.bin/atm/sscop/Makefile.depend b/usr.bin/atm/sscop/Makefile.depend index fa715848568a..29acfd8a4d5f 100644 --- a/usr.bin/atm/sscop/Makefile.depend +++ b/usr.bin/atm/sscop/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/awk/Makefile.depend b/usr.bin/awk/Makefile.depend index ad0c870c53c5..d1d7c17b737e 100644 --- a/usr.bin/awk/Makefile.depend +++ b/usr.bin/awk/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/banner/Makefile.depend b/usr.bin/banner/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/banner/Makefile.depend +++ b/usr.bin/banner/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/basename/Makefile.depend b/usr.bin/basename/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/basename/Makefile.depend +++ b/usr.bin/basename/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/bc/Makefile.depend b/usr.bin/bc/Makefile.depend index 1c743391dc9a..74fef6bfe62f 100644 --- a/usr.bin/bc/Makefile.depend +++ b/usr.bin/bc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/biff/Makefile.depend b/usr.bin/biff/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/biff/Makefile.depend +++ b/usr.bin/biff/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/bluetooth/bthost/Makefile.depend b/usr.bin/bluetooth/bthost/Makefile.depend index e188ca861463..9457f334c79f 100644 --- a/usr.bin/bluetooth/bthost/Makefile.depend +++ b/usr.bin/bluetooth/bthost/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/bluetooth/btsockstat/Makefile.depend b/usr.bin/bluetooth/btsockstat/Makefile.depend index ed9965ec2309..049b8d83f743 100644 --- a/usr.bin/bluetooth/btsockstat/Makefile.depend +++ b/usr.bin/bluetooth/btsockstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend index b3a6c2bde329..ceecdbe6dc35 100644 --- a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend +++ b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/bmake/Makefile.depend b/usr.bin/bmake/Makefile.depend index a83954553d0e..739cf2ec7dff 100644 --- a/usr.bin/bmake/Makefile.depend +++ b/usr.bin/bmake/Makefile.depend @@ -2,10 +2,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/usr.bin/brandelf/Makefile.depend b/usr.bin/brandelf/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/brandelf/Makefile.depend +++ b/usr.bin/brandelf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/bsdiff/bsdiff/Makefile.depend b/usr.bin/bsdiff/bsdiff/Makefile.depend index b2bb335f080a..aba373795e0b 100644 --- a/usr.bin/bsdiff/bsdiff/Makefile.depend +++ b/usr.bin/bsdiff/bsdiff/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/bsdiff/bspatch/Makefile.depend b/usr.bin/bsdiff/bspatch/Makefile.depend index b2bb335f080a..aba373795e0b 100644 --- a/usr.bin/bsdiff/bspatch/Makefile.depend +++ b/usr.bin/bsdiff/bspatch/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/bzip2/Makefile.depend b/usr.bin/bzip2/Makefile.depend index 44eda274e368..d945720de468 100644 --- a/usr.bin/bzip2/Makefile.depend +++ b/usr.bin/bzip2/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/bzip2recover/Makefile.depend b/usr.bin/bzip2recover/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/bzip2recover/Makefile.depend +++ b/usr.bin/bzip2recover/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/c89/Makefile.depend b/usr.bin/c89/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/c89/Makefile.depend +++ b/usr.bin/c89/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/c99/Makefile.depend b/usr.bin/c99/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/c99/Makefile.depend +++ b/usr.bin/c99/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/calendar/Makefile.depend b/usr.bin/calendar/Makefile.depend index d78f7b72e2c0..b6a920e8f5a7 100644 --- a/usr.bin/calendar/Makefile.depend +++ b/usr.bin/calendar/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/cap_mkdb/Makefile.depend b/usr.bin/cap_mkdb/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/cap_mkdb/Makefile.depend +++ b/usr.bin/cap_mkdb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/catman/Makefile.depend b/usr.bin/catman/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/catman/Makefile.depend +++ b/usr.bin/catman/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/chat/Makefile.depend b/usr.bin/chat/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/chat/Makefile.depend +++ b/usr.bin/chat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/checknr/Makefile.depend b/usr.bin/checknr/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/checknr/Makefile.depend +++ b/usr.bin/checknr/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/chkey/Makefile.depend b/usr.bin/chkey/Makefile.depend index 6e850335290f..b00143dc5c77 100644 --- a/usr.bin/chkey/Makefile.depend +++ b/usr.bin/chkey/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/chpass/Makefile.depend b/usr.bin/chpass/Makefile.depend index d9bca5678ffd..e315d9cac68f 100644 --- a/usr.bin/chpass/Makefile.depend +++ b/usr.bin/chpass/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/cksum/Makefile.depend b/usr.bin/cksum/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/cksum/Makefile.depend +++ b/usr.bin/cksum/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/cmp/Makefile.depend b/usr.bin/cmp/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/cmp/Makefile.depend +++ b/usr.bin/cmp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/col/Makefile.depend b/usr.bin/col/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/col/Makefile.depend +++ b/usr.bin/col/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/colcrt/Makefile.depend b/usr.bin/colcrt/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/colcrt/Makefile.depend +++ b/usr.bin/colcrt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/colldef/Makefile.depend b/usr.bin/colldef/Makefile.depend index 702a543c9b07..d3194b572160 100644 --- a/usr.bin/colldef/Makefile.depend +++ b/usr.bin/colldef/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/colrm/Makefile.depend b/usr.bin/colrm/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/colrm/Makefile.depend +++ b/usr.bin/colrm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/column/Makefile.depend b/usr.bin/column/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/column/Makefile.depend +++ b/usr.bin/column/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/comm/Makefile.depend b/usr.bin/comm/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/comm/Makefile.depend +++ b/usr.bin/comm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/compile_et/Makefile.depend b/usr.bin/compile_et/Makefile.depend index 35d6a7ce2571..1b29ec9ac0cd 100644 --- a/usr.bin/compile_et/Makefile.depend +++ b/usr.bin/compile_et/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/compress/Makefile.depend b/usr.bin/compress/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/compress/Makefile.depend +++ b/usr.bin/compress/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/cpio/Makefile.depend b/usr.bin/cpio/Makefile.depend index 97f5f9585715..0d41f1d58f1e 100644 --- a/usr.bin/cpio/Makefile.depend +++ b/usr.bin/cpio/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/cpuset/Makefile.depend b/usr.bin/cpuset/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/cpuset/Makefile.depend +++ b/usr.bin/cpuset/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/csplit/Makefile.depend b/usr.bin/csplit/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/csplit/Makefile.depend +++ b/usr.bin/csplit/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/csup/Makefile.depend b/usr.bin/csup/Makefile.depend index 3aaa868dc4e0..1c897981fde0 100644 --- a/usr.bin/csup/Makefile.depend +++ b/usr.bin/csup/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ctags/Makefile.depend b/usr.bin/ctags/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/ctags/Makefile.depend +++ b/usr.bin/ctags/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ctlstat/Makefile.depend b/usr.bin/ctlstat/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/ctlstat/Makefile.depend +++ b/usr.bin/ctlstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/cut/Makefile.depend b/usr.bin/cut/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/cut/Makefile.depend +++ b/usr.bin/cut/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/dc/Makefile.depend b/usr.bin/dc/Makefile.depend index 510b4fd7db03..d64957d52309 100644 --- a/usr.bin/dc/Makefile.depend +++ b/usr.bin/dc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/dig/Makefile.depend b/usr.bin/dig/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.bin/dig/Makefile.depend +++ b/usr.bin/dig/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/dirname/Makefile.depend b/usr.bin/dirname/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/dirname/Makefile.depend +++ b/usr.bin/dirname/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/du/Makefile.depend b/usr.bin/du/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.bin/du/Makefile.depend +++ b/usr.bin/du/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ee/Makefile.depend b/usr.bin/ee/Makefile.depend index c74c89fb77e8..a02469cc00d4 100644 --- a/usr.bin/ee/Makefile.depend +++ b/usr.bin/ee/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/elf2aout/Makefile.depend b/usr.bin/elf2aout/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/elf2aout/Makefile.depend +++ b/usr.bin/elf2aout/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/elfdump/Makefile.depend b/usr.bin/elfdump/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/elfdump/Makefile.depend +++ b/usr.bin/elfdump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/enigma/Makefile.depend b/usr.bin/enigma/Makefile.depend index aaceb6edba57..68e94281da52 100644 --- a/usr.bin/enigma/Makefile.depend +++ b/usr.bin/enigma/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/env/Makefile.depend b/usr.bin/env/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/env/Makefile.depend +++ b/usr.bin/env/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/expand/Makefile.depend b/usr.bin/expand/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/expand/Makefile.depend +++ b/usr.bin/expand/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/false/Makefile.depend b/usr.bin/false/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/false/Makefile.depend +++ b/usr.bin/false/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/fetch/Makefile.depend b/usr.bin/fetch/Makefile.depend index 341476be53e7..29fb457e7e30 100644 --- a/usr.bin/fetch/Makefile.depend +++ b/usr.bin/fetch/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/usr.bin/file/Makefile.depend b/usr.bin/file/Makefile.depend index d7d8c570c395..65c2c168676c 100644 --- a/usr.bin/file/Makefile.depend +++ b/usr.bin/file/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/file2c/Makefile.depend b/usr.bin/file2c/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/file2c/Makefile.depend +++ b/usr.bin/file2c/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/find/Makefile.depend b/usr.bin/find/Makefile.depend index a76cd46ec31c..962395588464 100644 --- a/usr.bin/find/Makefile.depend +++ b/usr.bin/find/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/finger/Makefile.depend b/usr.bin/finger/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/finger/Makefile.depend +++ b/usr.bin/finger/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/fmt/Makefile.depend b/usr.bin/fmt/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/fmt/Makefile.depend +++ b/usr.bin/fmt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/fold/Makefile.depend b/usr.bin/fold/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/fold/Makefile.depend +++ b/usr.bin/fold/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/from/Makefile.depend b/usr.bin/from/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/from/Makefile.depend +++ b/usr.bin/from/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/fstat/Makefile.depend b/usr.bin/fstat/Makefile.depend index c80d9db9a3d1..4040948b1e3d 100644 --- a/usr.bin/fstat/Makefile.depend +++ b/usr.bin/fstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/fsync/Makefile.depend b/usr.bin/fsync/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/fsync/Makefile.depend +++ b/usr.bin/fsync/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ftp/Makefile.depend b/usr.bin/ftp/Makefile.depend index cbd3920181ce..1c19f2449ac1 100644 --- a/usr.bin/ftp/Makefile.depend +++ b/usr.bin/ftp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/gcore/Makefile.depend b/usr.bin/gcore/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.bin/gcore/Makefile.depend +++ b/usr.bin/gcore/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/gencat/Makefile.depend b/usr.bin/gencat/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.bin/gencat/Makefile.depend +++ b/usr.bin/gencat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/getconf/Makefile.depend b/usr.bin/getconf/Makefile.depend index 714ee8b0b673..8a2a70339e6d 100644 --- a/usr.bin/getconf/Makefile.depend +++ b/usr.bin/getconf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/getent/Makefile.depend b/usr.bin/getent/Makefile.depend index 43e53d541e5d..da7438897e0f 100644 --- a/usr.bin/getent/Makefile.depend +++ b/usr.bin/getent/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/getopt/Makefile.depend b/usr.bin/getopt/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/getopt/Makefile.depend +++ b/usr.bin/getopt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/gprof/Makefile.depend b/usr.bin/gprof/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/gprof/Makefile.depend +++ b/usr.bin/gprof/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/grep/Makefile.depend b/usr.bin/grep/Makefile.depend index 9c356995dde7..e85683d314fe 100644 --- a/usr.bin/grep/Makefile.depend +++ b/usr.bin/grep/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libregex \ diff --git a/usr.bin/gzip/Makefile.depend b/usr.bin/gzip/Makefile.depend index 15ad9aaf0583..79f2d3897212 100644 --- a/usr.bin/gzip/Makefile.depend +++ b/usr.bin/gzip/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/head/Makefile.depend b/usr.bin/head/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/head/Makefile.depend +++ b/usr.bin/head/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/hexdump/Makefile.depend b/usr.bin/hexdump/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/hexdump/Makefile.depend +++ b/usr.bin/hexdump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/host/Makefile.depend b/usr.bin/host/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.bin/host/Makefile.depend +++ b/usr.bin/host/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/id/Makefile.depend b/usr.bin/id/Makefile.depend index 1aedff53c5fd..5c8cacb86cf4 100644 --- a/usr.bin/id/Makefile.depend +++ b/usr.bin/id/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/indent/Makefile.depend b/usr.bin/indent/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/indent/Makefile.depend +++ b/usr.bin/indent/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ipcrm/Makefile.depend b/usr.bin/ipcrm/Makefile.depend index 553674c09429..70d796e23bfc 100644 --- a/usr.bin/ipcrm/Makefile.depend +++ b/usr.bin/ipcrm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ipcs/Makefile.depend b/usr.bin/ipcs/Makefile.depend index 553674c09429..70d796e23bfc 100644 --- a/usr.bin/ipcs/Makefile.depend +++ b/usr.bin/ipcs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/join/Makefile.depend b/usr.bin/join/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/join/Makefile.depend +++ b/usr.bin/join/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/jot/Makefile.depend b/usr.bin/jot/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/jot/Makefile.depend +++ b/usr.bin/jot/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/kdump/Makefile.depend b/usr.bin/kdump/Makefile.depend index 562a76a1f507..f936f5df24a7 100644 --- a/usr.bin/kdump/Makefile.depend +++ b/usr.bin/kdump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/keylogin/Makefile.depend b/usr.bin/keylogin/Makefile.depend index 60fe900ca5e6..c405bd7fe3f5 100644 --- a/usr.bin/keylogin/Makefile.depend +++ b/usr.bin/keylogin/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/keylogout/Makefile.depend b/usr.bin/keylogout/Makefile.depend index 6e9b14f8d7a1..2f2a1c69ed2e 100644 --- a/usr.bin/keylogout/Makefile.depend +++ b/usr.bin/keylogout/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/killall/Makefile.depend b/usr.bin/killall/Makefile.depend index 7479d4624c14..6e8de981a34a 100644 --- a/usr.bin/killall/Makefile.depend +++ b/usr.bin/killall/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ktrace/Makefile.depend b/usr.bin/ktrace/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/ktrace/Makefile.depend +++ b/usr.bin/ktrace/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ktrdump/Makefile.depend b/usr.bin/ktrdump/Makefile.depend index 553674c09429..70d796e23bfc 100644 --- a/usr.bin/ktrdump/Makefile.depend +++ b/usr.bin/ktrdump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/lam/Makefile.depend b/usr.bin/lam/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/lam/Makefile.depend +++ b/usr.bin/lam/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/last/Makefile.depend b/usr.bin/last/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/last/Makefile.depend +++ b/usr.bin/last/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/lastcomm/Makefile.depend b/usr.bin/lastcomm/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/lastcomm/Makefile.depend +++ b/usr.bin/lastcomm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ldd/Makefile.depend b/usr.bin/ldd/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.bin/ldd/Makefile.depend +++ b/usr.bin/ldd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/leave/Makefile.depend b/usr.bin/leave/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/leave/Makefile.depend +++ b/usr.bin/leave/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/less/Makefile.depend b/usr.bin/less/Makefile.depend index c74c89fb77e8..a02469cc00d4 100644 --- a/usr.bin/less/Makefile.depend +++ b/usr.bin/less/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/lessecho/Makefile.depend b/usr.bin/lessecho/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/lessecho/Makefile.depend +++ b/usr.bin/lessecho/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/lesskey/Makefile.depend b/usr.bin/lesskey/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/lesskey/Makefile.depend +++ b/usr.bin/lesskey/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/lex/lib/Makefile.depend b/usr.bin/lex/lib/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.bin/lex/lib/Makefile.depend +++ b/usr.bin/lex/lib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.bin/limits/Makefile.depend b/usr.bin/limits/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.bin/limits/Makefile.depend +++ b/usr.bin/limits/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/locale/Makefile.depend b/usr.bin/locale/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/locale/Makefile.depend +++ b/usr.bin/locale/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/locate/bigram/Makefile.depend b/usr.bin/locate/bigram/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/locate/bigram/Makefile.depend +++ b/usr.bin/locate/bigram/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/locate/code/Makefile.depend b/usr.bin/locate/code/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/locate/code/Makefile.depend +++ b/usr.bin/locate/code/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/locate/locate/Makefile.depend b/usr.bin/locate/locate/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.bin/locate/locate/Makefile.depend +++ b/usr.bin/locate/locate/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/lock/Makefile.depend b/usr.bin/lock/Makefile.depend index aaceb6edba57..68e94281da52 100644 --- a/usr.bin/lock/Makefile.depend +++ b/usr.bin/lock/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/lockf/Makefile.depend b/usr.bin/lockf/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/lockf/Makefile.depend +++ b/usr.bin/lockf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/logger/Makefile.depend b/usr.bin/logger/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/logger/Makefile.depend +++ b/usr.bin/logger/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/login/Makefile.depend b/usr.bin/login/Makefile.depend index ef1e74a0bee1..133005b9e344 100644 --- a/usr.bin/login/Makefile.depend +++ b/usr.bin/login/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/logins/Makefile.depend b/usr.bin/logins/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/logins/Makefile.depend +++ b/usr.bin/logins/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/logname/Makefile.depend b/usr.bin/logname/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/logname/Makefile.depend +++ b/usr.bin/logname/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/look/Makefile.depend b/usr.bin/look/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/look/Makefile.depend +++ b/usr.bin/look/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/lorder/Makefile.depend b/usr.bin/lorder/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.bin/lorder/Makefile.depend +++ b/usr.bin/lorder/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.bin/lsvfs/Makefile.depend b/usr.bin/lsvfs/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/lsvfs/Makefile.depend +++ b/usr.bin/lsvfs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/lzmainfo/Makefile.depend b/usr.bin/lzmainfo/Makefile.depend index 5a47d9ea95db..e2fd14f8c004 100644 --- a/usr.bin/lzmainfo/Makefile.depend +++ b/usr.bin/lzmainfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/m4/Makefile.depend b/usr.bin/m4/Makefile.depend index 4953149131d3..42df53cc3551 100644 --- a/usr.bin/m4/Makefile.depend +++ b/usr.bin/m4/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/mail/Makefile.depend b/usr.bin/mail/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/mail/Makefile.depend +++ b/usr.bin/mail/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/makewhatis/Makefile.depend b/usr.bin/makewhatis/Makefile.depend index 1e192bde3a22..0d6e068b73a8 100644 --- a/usr.bin/makewhatis/Makefile.depend +++ b/usr.bin/makewhatis/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/man/Makefile.depend b/usr.bin/man/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.bin/man/Makefile.depend +++ b/usr.bin/man/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.bin/mandoc/Makefile.depend b/usr.bin/mandoc/Makefile.depend index 925018e2b1c4..d40cdc6feaf4 100644 --- a/usr.bin/mandoc/Makefile.depend +++ b/usr.bin/mandoc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/mesg/Makefile.depend b/usr.bin/mesg/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/mesg/Makefile.depend +++ b/usr.bin/mesg/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/minigzip/Makefile.depend b/usr.bin/minigzip/Makefile.depend index 1e192bde3a22..0d6e068b73a8 100644 --- a/usr.bin/minigzip/Makefile.depend +++ b/usr.bin/minigzip/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ministat/Makefile.depend b/usr.bin/ministat/Makefile.depend index d78f7b72e2c0..b6a920e8f5a7 100644 --- a/usr.bin/ministat/Makefile.depend +++ b/usr.bin/ministat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/mkdep/Makefile.depend b/usr.bin/mkdep/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.bin/mkdep/Makefile.depend +++ b/usr.bin/mkdep/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.bin/mkfifo/Makefile.depend b/usr.bin/mkfifo/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/mkfifo/Makefile.depend +++ b/usr.bin/mkfifo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/mklocale/Makefile.depend b/usr.bin/mklocale/Makefile.depend index 293b44bfa2e8..be00e32f017c 100644 --- a/usr.bin/mklocale/Makefile.depend +++ b/usr.bin/mklocale/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/mkstr/Makefile.depend b/usr.bin/mkstr/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/mkstr/Makefile.depend +++ b/usr.bin/mkstr/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/mktemp/Makefile.depend b/usr.bin/mktemp/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/mktemp/Makefile.depend +++ b/usr.bin/mktemp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/mkulzma/Makefile.depend b/usr.bin/mkulzma/Makefile.depend index 5a47d9ea95db..e2fd14f8c004 100644 --- a/usr.bin/mkulzma/Makefile.depend +++ b/usr.bin/mkulzma/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/mkuzip/Makefile.depend b/usr.bin/mkuzip/Makefile.depend index 1e192bde3a22..0d6e068b73a8 100644 --- a/usr.bin/mkuzip/Makefile.depend +++ b/usr.bin/mkuzip/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/msgs/Makefile.depend b/usr.bin/msgs/Makefile.depend index c74c89fb77e8..a02469cc00d4 100644 --- a/usr.bin/msgs/Makefile.depend +++ b/usr.bin/msgs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/mt/Makefile.depend b/usr.bin/mt/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/mt/Makefile.depend +++ b/usr.bin/mt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/nc/Makefile.depend b/usr.bin/nc/Makefile.depend index 3b4bd931c28c..358d239b4229 100644 --- a/usr.bin/nc/Makefile.depend +++ b/usr.bin/nc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ncal/Makefile.depend b/usr.bin/ncal/Makefile.depend index f07d64004f27..6fcf625b3e4b 100644 --- a/usr.bin/ncal/Makefile.depend +++ b/usr.bin/ncal/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/netstat/Makefile.depend b/usr.bin/netstat/Makefile.depend index 64ea564fd4d0..58161d077a6f 100644 --- a/usr.bin/netstat/Makefile.depend +++ b/usr.bin/netstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/newgrp/Makefile.depend b/usr.bin/newgrp/Makefile.depend index cf2b45501494..cff178c56d32 100644 --- a/usr.bin/newgrp/Makefile.depend +++ b/usr.bin/newgrp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/newkey/Makefile.depend b/usr.bin/newkey/Makefile.depend index 6e850335290f..b00143dc5c77 100644 --- a/usr.bin/newkey/Makefile.depend +++ b/usr.bin/newkey/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/nfsstat/Makefile.depend b/usr.bin/nfsstat/Makefile.depend index 553674c09429..70d796e23bfc 100644 --- a/usr.bin/nfsstat/Makefile.depend +++ b/usr.bin/nfsstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/nice/Makefile.depend b/usr.bin/nice/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/nice/Makefile.depend +++ b/usr.bin/nice/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/nl/Makefile.depend b/usr.bin/nl/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/nl/Makefile.depend +++ b/usr.bin/nl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/nohup/Makefile.depend b/usr.bin/nohup/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/nohup/Makefile.depend +++ b/usr.bin/nohup/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/nslookup/Makefile.depend b/usr.bin/nslookup/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.bin/nslookup/Makefile.depend +++ b/usr.bin/nslookup/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/nsupdate/Makefile.depend b/usr.bin/nsupdate/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.bin/nsupdate/Makefile.depend +++ b/usr.bin/nsupdate/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/opieinfo/Makefile.depend b/usr.bin/opieinfo/Makefile.depend index 3dd961e50101..804790918642 100644 --- a/usr.bin/opieinfo/Makefile.depend +++ b/usr.bin/opieinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/opiekey/Makefile.depend b/usr.bin/opiekey/Makefile.depend index 3dd961e50101..804790918642 100644 --- a/usr.bin/opiekey/Makefile.depend +++ b/usr.bin/opiekey/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/opiepasswd/Makefile.depend b/usr.bin/opiepasswd/Makefile.depend index 3dd961e50101..804790918642 100644 --- a/usr.bin/opiepasswd/Makefile.depend +++ b/usr.bin/opiepasswd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/pagesize/Makefile.depend b/usr.bin/pagesize/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.bin/pagesize/Makefile.depend +++ b/usr.bin/pagesize/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.bin/passwd/Makefile.depend b/usr.bin/passwd/Makefile.depend index 28fb49b7fb5c..4f9591edd9e2 100644 --- a/usr.bin/passwd/Makefile.depend +++ b/usr.bin/passwd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/paste/Makefile.depend b/usr.bin/paste/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/paste/Makefile.depend +++ b/usr.bin/paste/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/pathchk/Makefile.depend b/usr.bin/pathchk/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/pathchk/Makefile.depend +++ b/usr.bin/pathchk/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/perror/Makefile.depend b/usr.bin/perror/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/perror/Makefile.depend +++ b/usr.bin/perror/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/pr/Makefile.depend b/usr.bin/pr/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/pr/Makefile.depend +++ b/usr.bin/pr/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/printenv/Makefile.depend b/usr.bin/printenv/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/printenv/Makefile.depend +++ b/usr.bin/printenv/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/printf/Makefile.depend b/usr.bin/printf/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/printf/Makefile.depend +++ b/usr.bin/printf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/procstat/Makefile.depend b/usr.bin/procstat/Makefile.depend index 0dbdff259c1e..d7524073f60b 100644 --- a/usr.bin/procstat/Makefile.depend +++ b/usr.bin/procstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/quota/Makefile.depend b/usr.bin/quota/Makefile.depend index bf35174cdcf4..acb998b8aadb 100644 --- a/usr.bin/quota/Makefile.depend +++ b/usr.bin/quota/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/rctl/Makefile.depend b/usr.bin/rctl/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.bin/rctl/Makefile.depend +++ b/usr.bin/rctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/renice/Makefile.depend b/usr.bin/renice/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/renice/Makefile.depend +++ b/usr.bin/renice/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/rev/Makefile.depend b/usr.bin/rev/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/rev/Makefile.depend +++ b/usr.bin/rev/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/revoke/Makefile.depend b/usr.bin/revoke/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/revoke/Makefile.depend +++ b/usr.bin/revoke/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/rlogin/Makefile.depend b/usr.bin/rlogin/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/rlogin/Makefile.depend +++ b/usr.bin/rlogin/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/rpcgen/Makefile.depend b/usr.bin/rpcgen/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/rpcgen/Makefile.depend +++ b/usr.bin/rpcgen/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/rpcinfo/Makefile.depend b/usr.bin/rpcinfo/Makefile.depend index 43e53d541e5d..da7438897e0f 100644 --- a/usr.bin/rpcinfo/Makefile.depend +++ b/usr.bin/rpcinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/rs/Makefile.depend b/usr.bin/rs/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/rs/Makefile.depend +++ b/usr.bin/rs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/rsh/Makefile.depend b/usr.bin/rsh/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.bin/rsh/Makefile.depend +++ b/usr.bin/rsh/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/rup/Makefile.depend b/usr.bin/rup/Makefile.depend index 269301138753..e1c9bda373ab 100644 --- a/usr.bin/rup/Makefile.depend +++ b/usr.bin/rup/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ruptime/Makefile.depend b/usr.bin/ruptime/Makefile.depend index 25ca34444ce3..9bd5a4552168 100644 --- a/usr.bin/ruptime/Makefile.depend +++ b/usr.bin/ruptime/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/rusers/Makefile.depend b/usr.bin/rusers/Makefile.depend index 269301138753..e1c9bda373ab 100644 --- a/usr.bin/rusers/Makefile.depend +++ b/usr.bin/rusers/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/rwall/Makefile.depend b/usr.bin/rwall/Makefile.depend index 6e9b14f8d7a1..2f2a1c69ed2e 100644 --- a/usr.bin/rwall/Makefile.depend +++ b/usr.bin/rwall/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/rwho/Makefile.depend b/usr.bin/rwho/Makefile.depend index 25ca34444ce3..9bd5a4552168 100644 --- a/usr.bin/rwho/Makefile.depend +++ b/usr.bin/rwho/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/script/Makefile.depend b/usr.bin/script/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.bin/script/Makefile.depend +++ b/usr.bin/script/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/sed/Makefile.depend b/usr.bin/sed/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/sed/Makefile.depend +++ b/usr.bin/sed/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/seq/Makefile.depend b/usr.bin/seq/Makefile.depend index d78f7b72e2c0..b6a920e8f5a7 100644 --- a/usr.bin/seq/Makefile.depend +++ b/usr.bin/seq/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/shar/Makefile.depend b/usr.bin/shar/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.bin/shar/Makefile.depend +++ b/usr.bin/shar/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.bin/showmount/Makefile.depend b/usr.bin/showmount/Makefile.depend index 6e9b14f8d7a1..2f2a1c69ed2e 100644 --- a/usr.bin/showmount/Makefile.depend +++ b/usr.bin/showmount/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/sockstat/Makefile.depend b/usr.bin/sockstat/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.bin/sockstat/Makefile.depend +++ b/usr.bin/sockstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/sort/Makefile.depend b/usr.bin/sort/Makefile.depend index b6684ac83ce5..f4c5aaa9759d 100644 --- a/usr.bin/sort/Makefile.depend +++ b/usr.bin/sort/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/split/Makefile.depend b/usr.bin/split/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/split/Makefile.depend +++ b/usr.bin/split/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ssh-copy-id/Makefile.depend b/usr.bin/ssh-copy-id/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.bin/ssh-copy-id/Makefile.depend +++ b/usr.bin/ssh-copy-id/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.bin/stat/Makefile.depend b/usr.bin/stat/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/stat/Makefile.depend +++ b/usr.bin/stat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/stdbuf/Makefile.depend b/usr.bin/stdbuf/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/stdbuf/Makefile.depend +++ b/usr.bin/stdbuf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/su/Makefile.depend b/usr.bin/su/Makefile.depend index ef1e74a0bee1..133005b9e344 100644 --- a/usr.bin/su/Makefile.depend +++ b/usr.bin/su/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/systat/Makefile.depend b/usr.bin/systat/Makefile.depend index e190a3119ca6..b68d5ecd7023 100644 --- a/usr.bin/systat/Makefile.depend +++ b/usr.bin/systat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tabs/Makefile.depend b/usr.bin/tabs/Makefile.depend index c74c89fb77e8..a02469cc00d4 100644 --- a/usr.bin/tabs/Makefile.depend +++ b/usr.bin/tabs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tail/Makefile.depend b/usr.bin/tail/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/tail/Makefile.depend +++ b/usr.bin/tail/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/talk/Makefile.depend b/usr.bin/talk/Makefile.depend index b352c71fa627..5ebd4eda6c01 100644 --- a/usr.bin/talk/Makefile.depend +++ b/usr.bin/talk/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tar/Makefile.depend b/usr.bin/tar/Makefile.depend index 97f5f9585715..0d41f1d58f1e 100644 --- a/usr.bin/tar/Makefile.depend +++ b/usr.bin/tar/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tcopy/Makefile.depend b/usr.bin/tcopy/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/tcopy/Makefile.depend +++ b/usr.bin/tcopy/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tee/Makefile.depend b/usr.bin/tee/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/tee/Makefile.depend +++ b/usr.bin/tee/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/telnet/Makefile.depend b/usr.bin/telnet/Makefile.depend index f76673afea20..b87d3ac49983 100644 --- a/usr.bin/telnet/Makefile.depend +++ b/usr.bin/telnet/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tftp/Makefile.depend b/usr.bin/tftp/Makefile.depend index 501fd5198cb2..cbc8dc82ce41 100644 --- a/usr.bin/tftp/Makefile.depend +++ b/usr.bin/tftp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/time/Makefile.depend b/usr.bin/time/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/time/Makefile.depend +++ b/usr.bin/time/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tip/tip/Makefile.depend b/usr.bin/tip/tip/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/tip/tip/Makefile.depend +++ b/usr.bin/tip/tip/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/top/Makefile.depend b/usr.bin/top/Makefile.depend index 2f52b59b828b..4cb296006fb2 100644 --- a/usr.bin/top/Makefile.depend +++ b/usr.bin/top/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/touch/Makefile.depend b/usr.bin/touch/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/touch/Makefile.depend +++ b/usr.bin/touch/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tput/Makefile.depend b/usr.bin/tput/Makefile.depend index c74c89fb77e8..a02469cc00d4 100644 --- a/usr.bin/tput/Makefile.depend +++ b/usr.bin/tput/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tr/Makefile.depend b/usr.bin/tr/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/tr/Makefile.depend +++ b/usr.bin/tr/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/true/Makefile.depend b/usr.bin/true/Makefile.depend index 7267a8a407f5..6f5d13cf47bb 100644 --- a/usr.bin/true/Makefile.depend +++ b/usr.bin/true/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ lib/${CSU_DIR} \ diff --git a/usr.bin/truncate/Makefile.depend b/usr.bin/truncate/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.bin/truncate/Makefile.depend +++ b/usr.bin/truncate/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/truss/Makefile.depend.amd64 b/usr.bin/truss/Makefile.depend.amd64 index dc0f3fceda09..aed30ada4118 100644 --- a/usr.bin/truss/Makefile.depend.amd64 +++ b/usr.bin/truss/Makefile.depend.amd64 @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tset/Makefile.depend b/usr.bin/tset/Makefile.depend index c74c89fb77e8..a02469cc00d4 100644 --- a/usr.bin/tset/Makefile.depend +++ b/usr.bin/tset/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tsort/Makefile.depend b/usr.bin/tsort/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/tsort/Makefile.depend +++ b/usr.bin/tsort/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/tty/Makefile.depend b/usr.bin/tty/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/tty/Makefile.depend +++ b/usr.bin/tty/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ul/Makefile.depend b/usr.bin/ul/Makefile.depend index c74c89fb77e8..a02469cc00d4 100644 --- a/usr.bin/ul/Makefile.depend +++ b/usr.bin/ul/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/uname/Makefile.depend b/usr.bin/uname/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/uname/Makefile.depend +++ b/usr.bin/uname/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/unexpand/Makefile.depend b/usr.bin/unexpand/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/unexpand/Makefile.depend +++ b/usr.bin/unexpand/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/unifdef/Makefile.depend b/usr.bin/unifdef/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/unifdef/Makefile.depend +++ b/usr.bin/unifdef/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/uniq/Makefile.depend b/usr.bin/uniq/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/uniq/Makefile.depend +++ b/usr.bin/uniq/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/units/Makefile.depend b/usr.bin/units/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/units/Makefile.depend +++ b/usr.bin/units/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/unvis/Makefile.depend b/usr.bin/unvis/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/unvis/Makefile.depend +++ b/usr.bin/unvis/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/unzip/Makefile.depend b/usr.bin/unzip/Makefile.depend index 7a6a31a74a12..e809b995317f 100644 --- a/usr.bin/unzip/Makefile.depend +++ b/usr.bin/unzip/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/usbhidaction/Makefile.depend b/usr.bin/usbhidaction/Makefile.depend index f29032c5ec9a..e982c9bcb4b3 100644 --- a/usr.bin/usbhidaction/Makefile.depend +++ b/usr.bin/usbhidaction/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/usbhidctl/Makefile.depend b/usr.bin/usbhidctl/Makefile.depend index f29032c5ec9a..e982c9bcb4b3 100644 --- a/usr.bin/usbhidctl/Makefile.depend +++ b/usr.bin/usbhidctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/users/Makefile.depend b/usr.bin/users/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/users/Makefile.depend +++ b/usr.bin/users/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/uudecode/Makefile.depend b/usr.bin/uudecode/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.bin/uudecode/Makefile.depend +++ b/usr.bin/uudecode/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/uuencode/Makefile.depend b/usr.bin/uuencode/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.bin/uuencode/Makefile.depend +++ b/usr.bin/uuencode/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/vacation/Makefile.depend b/usr.bin/vacation/Makefile.depend index 8af48f521490..57083aafa80f 100644 --- a/usr.bin/vacation/Makefile.depend +++ b/usr.bin/vacation/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/vgrind/Makefile.depend b/usr.bin/vgrind/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/vgrind/Makefile.depend +++ b/usr.bin/vgrind/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/vi/Makefile.depend b/usr.bin/vi/Makefile.depend index c74c89fb77e8..a02469cc00d4 100644 --- a/usr.bin/vi/Makefile.depend +++ b/usr.bin/vi/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/vis/Makefile.depend b/usr.bin/vis/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/vis/Makefile.depend +++ b/usr.bin/vis/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/vmstat/Makefile.depend b/usr.bin/vmstat/Makefile.depend index 1a73c8dfc69e..33bcec03d0d6 100644 --- a/usr.bin/vmstat/Makefile.depend +++ b/usr.bin/vmstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/w/Makefile.depend b/usr.bin/w/Makefile.depend index 12b0105650cd..d15affa68baf 100644 --- a/usr.bin/w/Makefile.depend +++ b/usr.bin/w/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/wall/Makefile.depend b/usr.bin/wall/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/wall/Makefile.depend +++ b/usr.bin/wall/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/wc/Makefile.depend b/usr.bin/wc/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/wc/Makefile.depend +++ b/usr.bin/wc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/what/Makefile.depend b/usr.bin/what/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/what/Makefile.depend +++ b/usr.bin/what/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/whereis/Makefile.depend b/usr.bin/whereis/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/whereis/Makefile.depend +++ b/usr.bin/whereis/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/which/Makefile.depend b/usr.bin/which/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/which/Makefile.depend +++ b/usr.bin/which/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/who/Makefile.depend b/usr.bin/who/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/who/Makefile.depend +++ b/usr.bin/who/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/whois/Makefile.depend b/usr.bin/whois/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.bin/whois/Makefile.depend +++ b/usr.bin/whois/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/write/Makefile.depend b/usr.bin/write/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/write/Makefile.depend +++ b/usr.bin/write/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/xargs/Makefile.depend b/usr.bin/xargs/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/xargs/Makefile.depend +++ b/usr.bin/xargs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/xinstall/Makefile.depend b/usr.bin/xinstall/Makefile.depend index a83954553d0e..fe5eea72e31e 100644 --- a/usr.bin/xinstall/Makefile.depend +++ b/usr.bin/xinstall/Makefile.depend @@ -2,14 +2,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libmd \ + lib/libutil \ .include diff --git a/usr.bin/xlint/lint1/Makefile.depend b/usr.bin/xlint/lint1/Makefile.depend index 60d2a9b389f2..9fab44bc6be8 100644 --- a/usr.bin/xlint/lint1/Makefile.depend +++ b/usr.bin/xlint/lint1/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/xlint/lint2/Makefile.depend b/usr.bin/xlint/lint2/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/xlint/lint2/Makefile.depend +++ b/usr.bin/xlint/lint2/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/xlint/llib/Makefile.depend b/usr.bin/xlint/llib/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.bin/xlint/llib/Makefile.depend +++ b/usr.bin/xlint/llib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.bin/xlint/xlint/Makefile.depend b/usr.bin/xlint/xlint/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/xlint/xlint/Makefile.depend +++ b/usr.bin/xlint/xlint/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/xstr/Makefile.depend b/usr.bin/xstr/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/xstr/Makefile.depend +++ b/usr.bin/xstr/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/xz/Makefile.depend b/usr.bin/xz/Makefile.depend index 5a47d9ea95db..e2fd14f8c004 100644 --- a/usr.bin/xz/Makefile.depend +++ b/usr.bin/xz/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/xzdec/Makefile.depend b/usr.bin/xzdec/Makefile.depend index 5a47d9ea95db..e2fd14f8c004 100644 --- a/usr.bin/xzdec/Makefile.depend +++ b/usr.bin/xzdec/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/yacc/Makefile.depend b/usr.bin/yacc/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.bin/yacc/Makefile.depend +++ b/usr.bin/yacc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/yes/Makefile.depend b/usr.bin/yes/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.bin/yes/Makefile.depend +++ b/usr.bin/yes/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ypcat/Makefile.depend b/usr.bin/ypcat/Makefile.depend index 6e9b14f8d7a1..2f2a1c69ed2e 100644 --- a/usr.bin/ypcat/Makefile.depend +++ b/usr.bin/ypcat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ypmatch/Makefile.depend b/usr.bin/ypmatch/Makefile.depend index 6e9b14f8d7a1..2f2a1c69ed2e 100644 --- a/usr.bin/ypmatch/Makefile.depend +++ b/usr.bin/ypmatch/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.bin/ypwhich/Makefile.depend b/usr.bin/ypwhich/Makefile.depend index a3e1b44c73f2..4f9280207819 100644 --- a/usr.bin/ypwhich/Makefile.depend +++ b/usr.bin/ypwhich/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/IPXrouted/Makefile.depend b/usr.sbin/IPXrouted/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/IPXrouted/Makefile.depend +++ b/usr.sbin/IPXrouted/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ac/Makefile.depend b/usr.sbin/ac/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/ac/Makefile.depend +++ b/usr.sbin/ac/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/accton/Makefile.depend b/usr.sbin/accton/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/accton/Makefile.depend +++ b/usr.sbin/accton/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/acpi/acpiconf/Makefile.depend b/usr.sbin/acpi/acpiconf/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/acpi/acpiconf/Makefile.depend +++ b/usr.sbin/acpi/acpiconf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/acpi/acpidb/Makefile.depend b/usr.sbin/acpi/acpidb/Makefile.depend index a2742684c435..a34439e272da 100644 --- a/usr.sbin/acpi/acpidb/Makefile.depend +++ b/usr.sbin/acpi/acpidb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/acpi/acpidump/Makefile.depend b/usr.sbin/acpi/acpidump/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/acpi/acpidump/Makefile.depend +++ b/usr.sbin/acpi/acpidump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/acpi/iasl/Makefile.depend b/usr.sbin/acpi/iasl/Makefile.depend index ffc65caf80cb..6a6fa13f304d 100644 --- a/usr.sbin/acpi/iasl/Makefile.depend +++ b/usr.sbin/acpi/iasl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ @@ -38,6 +36,10 @@ aslload.o: aslcompiler.y.h aslload.po: aslcompiler.y.h asllookup.o: aslcompiler.y.h asllookup.po: aslcompiler.y.h +aslmethod.o: aslcompiler.y.h +aslmethod.po: aslcompiler.y.h +aslnamesp.o: aslcompiler.y.h +aslnamesp.po: aslcompiler.y.h aslopcodes.o: aslcompiler.y.h aslopcodes.po: aslcompiler.y.h asloperands.o: aslcompiler.y.h @@ -70,6 +72,8 @@ aslutils.o: aslcompiler.y.h aslutils.po: aslcompiler.y.h aslwalks.o: aslcompiler.y.h aslwalks.po: aslcompiler.y.h +aslxref.o: aslcompiler.y.h +aslxref.po: aslcompiler.y.h dtexpress.o: dtparser.y.h dtexpress.po: dtparser.y.h dtparserlex.o: dtparser.y.h diff --git a/usr.sbin/adduser/Makefile.depend b/usr.sbin/adduser/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/adduser/Makefile.depend +++ b/usr.sbin/adduser/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/amd/amd/Makefile.depend b/usr.sbin/amd/amd/Makefile.depend index fd1a688114d5..8b1230b5475f 100644 --- a/usr.sbin/amd/amd/Makefile.depend +++ b/usr.sbin/amd/amd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/amd/amq/Makefile.depend b/usr.sbin/amd/amq/Makefile.depend index 66f893e88e54..10029951de91 100644 --- a/usr.sbin/amd/amq/Makefile.depend +++ b/usr.sbin/amd/amq/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/amd/fixmount/Makefile.depend b/usr.sbin/amd/fixmount/Makefile.depend index 1ed02e5b92c2..3e0866508d2c 100644 --- a/usr.sbin/amd/fixmount/Makefile.depend +++ b/usr.sbin/amd/fixmount/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/amd/fsinfo/Makefile.depend b/usr.sbin/amd/fsinfo/Makefile.depend index 63070f4f43e5..a46cbf1e2970 100644 --- a/usr.sbin/amd/fsinfo/Makefile.depend +++ b/usr.sbin/amd/fsinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/amd/hlfsd/Makefile.depend b/usr.sbin/amd/hlfsd/Makefile.depend index 66f893e88e54..10029951de91 100644 --- a/usr.sbin/amd/hlfsd/Makefile.depend +++ b/usr.sbin/amd/hlfsd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/amd/include/Makefile.depend b/usr.sbin/amd/include/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/amd/include/Makefile.depend +++ b/usr.sbin/amd/include/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/amd/libamu/Makefile.depend b/usr.sbin/amd/libamu/Makefile.depend index a0399ceb62af..a869b197e3de 100644 --- a/usr.sbin/amd/libamu/Makefile.depend +++ b/usr.sbin/amd/libamu/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/usr.sbin/amd/mk-amd-map/Makefile.depend b/usr.sbin/amd/mk-amd-map/Makefile.depend index 66f893e88e54..10029951de91 100644 --- a/usr.sbin/amd/mk-amd-map/Makefile.depend +++ b/usr.sbin/amd/mk-amd-map/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/amd/pawd/Makefile.depend b/usr.sbin/amd/pawd/Makefile.depend index 66f893e88e54..10029951de91 100644 --- a/usr.sbin/amd/pawd/Makefile.depend +++ b/usr.sbin/amd/pawd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/amd/scripts/Makefile.depend b/usr.sbin/amd/scripts/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/amd/scripts/Makefile.depend +++ b/usr.sbin/amd/scripts/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/amd/wire-test/Makefile.depend b/usr.sbin/amd/wire-test/Makefile.depend index 66f893e88e54..10029951de91 100644 --- a/usr.sbin/amd/wire-test/Makefile.depend +++ b/usr.sbin/amd/wire-test/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ancontrol/Makefile.depend b/usr.sbin/ancontrol/Makefile.depend index f7894b5169ae..7d0552bd9062 100644 --- a/usr.sbin/ancontrol/Makefile.depend +++ b/usr.sbin/ancontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/apm/Makefile.depend b/usr.sbin/apm/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/apm/Makefile.depend +++ b/usr.sbin/apm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/arp/Makefile.depend b/usr.sbin/arp/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/arp/Makefile.depend +++ b/usr.sbin/arp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/arpaname/Makefile.depend b/usr.sbin/arpaname/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/arpaname/Makefile.depend +++ b/usr.sbin/arpaname/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/asf/Makefile.depend b/usr.sbin/asf/Makefile.depend index 553674c09429..70d796e23bfc 100644 --- a/usr.sbin/asf/Makefile.depend +++ b/usr.sbin/asf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/audit/Makefile.depend b/usr.sbin/audit/Makefile.depend index 1aedff53c5fd..5c8cacb86cf4 100644 --- a/usr.sbin/audit/Makefile.depend +++ b/usr.sbin/audit/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/auditd/Makefile.depend b/usr.sbin/auditd/Makefile.depend index e062403614d4..f683e4b5b74c 100644 --- a/usr.sbin/auditd/Makefile.depend +++ b/usr.sbin/auditd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/auditreduce/Makefile.depend b/usr.sbin/auditreduce/Makefile.depend index 1aedff53c5fd..5c8cacb86cf4 100644 --- a/usr.sbin/auditreduce/Makefile.depend +++ b/usr.sbin/auditreduce/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/authpf/Makefile.depend b/usr.sbin/authpf/Makefile.depend index 157f511c5479..1a0e74190d12 100644 --- a/usr.sbin/authpf/Makefile.depend +++ b/usr.sbin/authpf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/ath3kfw/Makefile.depend b/usr.sbin/bluetooth/ath3kfw/Makefile.depend index f7791510e25b..f4f874fece1b 100644 --- a/usr.sbin/bluetooth/ath3kfw/Makefile.depend +++ b/usr.sbin/bluetooth/ath3kfw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/bcmfw/Makefile.depend b/usr.sbin/bluetooth/bcmfw/Makefile.depend index e6d80d34e638..f817b0fe0e24 100644 --- a/usr.sbin/bluetooth/bcmfw/Makefile.depend +++ b/usr.sbin/bluetooth/bcmfw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/bt3cfw/Makefile.depend b/usr.sbin/bluetooth/bt3cfw/Makefile.depend index e6d80d34e638..f817b0fe0e24 100644 --- a/usr.sbin/bluetooth/bt3cfw/Makefile.depend +++ b/usr.sbin/bluetooth/bt3cfw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/bthidcontrol/Makefile.depend b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend index bf7f962df49f..31996a36242c 100644 --- a/usr.sbin/bluetooth/bthidcontrol/Makefile.depend +++ b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/bthidd/Makefile.depend b/usr.sbin/bluetooth/bthidd/Makefile.depend index 61ae9268dead..4265f5e7ad91 100644 --- a/usr.sbin/bluetooth/bthidd/Makefile.depend +++ b/usr.sbin/bluetooth/bthidd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/btpand/Makefile.depend b/usr.sbin/bluetooth/btpand/Makefile.depend index 336a9dba2bb9..84dda571af73 100644 --- a/usr.sbin/bluetooth/btpand/Makefile.depend +++ b/usr.sbin/bluetooth/btpand/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/hccontrol/Makefile.depend b/usr.sbin/bluetooth/hccontrol/Makefile.depend index e188ca861463..9457f334c79f 100644 --- a/usr.sbin/bluetooth/hccontrol/Makefile.depend +++ b/usr.sbin/bluetooth/hccontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/hcsecd/Makefile.depend b/usr.sbin/bluetooth/hcsecd/Makefile.depend index d800014f76f2..89de53999ac2 100644 --- a/usr.sbin/bluetooth/hcsecd/Makefile.depend +++ b/usr.sbin/bluetooth/hcsecd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/hcseriald/Makefile.depend b/usr.sbin/bluetooth/hcseriald/Makefile.depend index e6d80d34e638..f817b0fe0e24 100644 --- a/usr.sbin/bluetooth/hcseriald/Makefile.depend +++ b/usr.sbin/bluetooth/hcseriald/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/l2control/Makefile.depend b/usr.sbin/bluetooth/l2control/Makefile.depend index e188ca861463..9457f334c79f 100644 --- a/usr.sbin/bluetooth/l2control/Makefile.depend +++ b/usr.sbin/bluetooth/l2control/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/l2ping/Makefile.depend b/usr.sbin/bluetooth/l2ping/Makefile.depend index ff4e7a5e55bd..c958d10a6981 100644 --- a/usr.sbin/bluetooth/l2ping/Makefile.depend +++ b/usr.sbin/bluetooth/l2ping/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend index b3a6c2bde329..ceecdbe6dc35 100644 --- a/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend +++ b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/sdpcontrol/Makefile.depend b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend index b3a6c2bde329..ceecdbe6dc35 100644 --- a/usr.sbin/bluetooth/sdpcontrol/Makefile.depend +++ b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bluetooth/sdpd/Makefile.depend b/usr.sbin/bluetooth/sdpd/Makefile.depend index e98dae084371..e864c063d281 100644 --- a/usr.sbin/bluetooth/sdpd/Makefile.depend +++ b/usr.sbin/bluetooth/sdpd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/boot0cfg/Makefile.depend b/usr.sbin/boot0cfg/Makefile.depend index 378b35f0fc09..5f8a6c0cf014 100644 --- a/usr.sbin/boot0cfg/Makefile.depend +++ b/usr.sbin/boot0cfg/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bootparamd/bootparamd/Makefile.depend b/usr.sbin/bootparamd/bootparamd/Makefile.depend index 4a1ecc5a3a7a..667dbd8a198c 100644 --- a/usr.sbin/bootparamd/bootparamd/Makefile.depend +++ b/usr.sbin/bootparamd/bootparamd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bootparamd/callbootd/Makefile.depend b/usr.sbin/bootparamd/callbootd/Makefile.depend index a134d081877e..14059ea8a335 100644 --- a/usr.sbin/bootparamd/callbootd/Makefile.depend +++ b/usr.sbin/bootparamd/callbootd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsdinstall/distextract/Makefile.depend b/usr.sbin/bsdinstall/distextract/Makefile.depend index 975ca254cda3..7b51d6523f45 100644 --- a/usr.sbin/bsdinstall/distextract/Makefile.depend +++ b/usr.sbin/bsdinstall/distextract/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libdialog \ gnu/lib/libgcc \ diff --git a/usr.sbin/bsdinstall/distfetch/Makefile.depend b/usr.sbin/bsdinstall/distfetch/Makefile.depend index 2c289cd2cb8f..664b45e38adc 100644 --- a/usr.sbin/bsdinstall/distfetch/Makefile.depend +++ b/usr.sbin/bsdinstall/distfetch/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libdialog \ gnu/lib/libgcc \ diff --git a/usr.sbin/bsdinstall/partedit/Makefile.depend b/usr.sbin/bsdinstall/partedit/Makefile.depend index 2ec2bb407065..7bd84b4a7618 100644 --- a/usr.sbin/bsdinstall/partedit/Makefile.depend +++ b/usr.sbin/bsdinstall/partedit/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libdialog \ gnu/lib/libgcc \ diff --git a/usr.sbin/bsnmpd/bsnmpd/Makefile.depend b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend index 6b34d2938a72..2a05812bfc5c 100644 --- a/usr.sbin/bsnmpd/bsnmpd/Makefile.depend +++ b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/gensnmptree/Makefile.depend b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/bsnmpd/gensnmptree/Makefile.depend +++ b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/modules/Makefile.depend b/usr.sbin/bsnmpd/modules/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/bsnmpd/modules/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend index 16ad1b76fe42..a6d5e41f2a8e 100644 --- a/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend index 641377c1cafd..db36c09fa859 100644 --- a/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend index 4c2a9b4340ad..8edce6f52592 100644 --- a/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend index a7e812fdf66f..4f584aaabc79 100644 --- a/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend index 40f18705e4ca..c6b42e1f8466 100644 --- a/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend index 4c6aa36d5d42..b744eb0a8ee3 100644 --- a/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend index 59b4cb6a606e..7ee6bc20e952 100644 --- a/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend index 0854bd545ea3..a7306463a97e 100644 --- a/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend index d9d6652d8f14..680d89a53d31 100644 --- a/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend index 260fd586f9e6..2009d710c8a3 100644 --- a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend b/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend index 58da794aa880..bb0251d8a9bc 100644 --- a/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend +++ b/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend index 3f14910b5733..1f5554c679e3 100644 --- a/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend +++ b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/btxld/Makefile.depend b/usr.sbin/btxld/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/btxld/Makefile.depend +++ b/usr.sbin/btxld/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/burncd/Makefile.depend b/usr.sbin/burncd/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/burncd/Makefile.depend +++ b/usr.sbin/burncd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/cdcontrol/Makefile.depend b/usr.sbin/cdcontrol/Makefile.depend index 501fd5198cb2..cbc8dc82ce41 100644 --- a/usr.sbin/cdcontrol/Makefile.depend +++ b/usr.sbin/cdcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/chkgrp/Makefile.depend b/usr.sbin/chkgrp/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/chkgrp/Makefile.depend +++ b/usr.sbin/chkgrp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/chown/Makefile.depend b/usr.sbin/chown/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/chown/Makefile.depend +++ b/usr.sbin/chown/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/chroot/Makefile.depend b/usr.sbin/chroot/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/chroot/Makefile.depend +++ b/usr.sbin/chroot/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ckdist/Makefile.depend b/usr.sbin/ckdist/Makefile.depend index 7520d5dc8b42..fb8b9ee55f44 100644 --- a/usr.sbin/ckdist/Makefile.depend +++ b/usr.sbin/ckdist/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/clear_locks/Makefile.depend b/usr.sbin/clear_locks/Makefile.depend index 60fe900ca5e6..c405bd7fe3f5 100644 --- a/usr.sbin/clear_locks/Makefile.depend +++ b/usr.sbin/clear_locks/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/config/Makefile.depend b/usr.sbin/config/Makefile.depend index d4148407d3bc..36fb65517f0b 100644 --- a/usr.sbin/config/Makefile.depend +++ b/usr.sbin/config/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/cpucontrol/Makefile.depend b/usr.sbin/cpucontrol/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/cpucontrol/Makefile.depend +++ b/usr.sbin/cpucontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/crashinfo/Makefile.depend b/usr.sbin/crashinfo/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/crashinfo/Makefile.depend +++ b/usr.sbin/crashinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/cron/cron/Makefile.depend b/usr.sbin/cron/cron/Makefile.depend index e033fdf50d11..955bc6042329 100644 --- a/usr.sbin/cron/cron/Makefile.depend +++ b/usr.sbin/cron/cron/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/cron/crontab/Makefile.depend b/usr.sbin/cron/crontab/Makefile.depend index faa54bde8fc6..bce1e46d3dd1 100644 --- a/usr.sbin/cron/crontab/Makefile.depend +++ b/usr.sbin/cron/crontab/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/cron/lib/Makefile.depend b/usr.sbin/cron/lib/Makefile.depend index 4046f0e610b3..8780851ef9b5 100644 --- a/usr.sbin/cron/lib/Makefile.depend +++ b/usr.sbin/cron/lib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/usr.sbin/crunch/crunchgen/Makefile.depend b/usr.sbin/crunch/crunchgen/Makefile.depend index 56c209eba570..3c4a71c6d176 100644 --- a/usr.sbin/crunch/crunchgen/Makefile.depend +++ b/usr.sbin/crunch/crunchgen/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/crunch/crunchide/Makefile.depend b/usr.sbin/crunch/crunchide/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/crunch/crunchide/Makefile.depend +++ b/usr.sbin/crunch/crunchide/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ctladm/Makefile.depend b/usr.sbin/ctladm/Makefile.depend index 7dcf1b85da79..0ea26302910a 100644 --- a/usr.sbin/ctladm/Makefile.depend +++ b/usr.sbin/ctladm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ctm/ctm/Makefile.depend b/usr.sbin/ctm/ctm/Makefile.depend index 7520d5dc8b42..fb8b9ee55f44 100644 --- a/usr.sbin/ctm/ctm/Makefile.depend +++ b/usr.sbin/ctm/ctm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ctm/ctm_dequeue/Makefile.depend b/usr.sbin/ctm/ctm_dequeue/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/ctm/ctm_dequeue/Makefile.depend +++ b/usr.sbin/ctm/ctm_dequeue/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ctm/ctm_rmail/Makefile.depend b/usr.sbin/ctm/ctm_rmail/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/ctm/ctm_rmail/Makefile.depend +++ b/usr.sbin/ctm/ctm_rmail/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ctm/ctm_smail/Makefile.depend b/usr.sbin/ctm/ctm_smail/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/ctm/ctm_smail/Makefile.depend +++ b/usr.sbin/ctm/ctm_smail/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/daemon/Makefile.depend b/usr.sbin/daemon/Makefile.depend index 2530420caee3..460f30796e6d 100644 --- a/usr.sbin/daemon/Makefile.depend +++ b/usr.sbin/daemon/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/dconschat/Makefile.depend b/usr.sbin/dconschat/Makefile.depend index e6478bb43262..9d37e681073a 100644 --- a/usr.sbin/dconschat/Makefile.depend +++ b/usr.sbin/dconschat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ddns-confgen/Makefile.depend b/usr.sbin/ddns-confgen/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/ddns-confgen/Makefile.depend +++ b/usr.sbin/ddns-confgen/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/devinfo/Makefile.depend b/usr.sbin/devinfo/Makefile.depend index 36a5a328d56d..35bcca5faf82 100644 --- a/usr.sbin/devinfo/Makefile.depend +++ b/usr.sbin/devinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/digictl/Makefile.depend b/usr.sbin/digictl/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/digictl/Makefile.depend +++ b/usr.sbin/digictl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/diskinfo/Makefile.depend b/usr.sbin/diskinfo/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.sbin/diskinfo/Makefile.depend +++ b/usr.sbin/diskinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/dnssec-dsfromkey/Makefile.depend b/usr.sbin/dnssec-dsfromkey/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/dnssec-dsfromkey/Makefile.depend +++ b/usr.sbin/dnssec-dsfromkey/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/dnssec-keyfromlabel/Makefile.depend b/usr.sbin/dnssec-keyfromlabel/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/dnssec-keyfromlabel/Makefile.depend +++ b/usr.sbin/dnssec-keyfromlabel/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/dnssec-keygen/Makefile.depend b/usr.sbin/dnssec-keygen/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/dnssec-keygen/Makefile.depend +++ b/usr.sbin/dnssec-keygen/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/dnssec-revoke/Makefile.depend b/usr.sbin/dnssec-revoke/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/dnssec-revoke/Makefile.depend +++ b/usr.sbin/dnssec-revoke/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/dnssec-settime/Makefile.depend b/usr.sbin/dnssec-settime/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/dnssec-settime/Makefile.depend +++ b/usr.sbin/dnssec-settime/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/dnssec-signzone/Makefile.depend b/usr.sbin/dnssec-signzone/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/dnssec-signzone/Makefile.depend +++ b/usr.sbin/dnssec-signzone/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/dumpcis/Makefile.depend b/usr.sbin/dumpcis/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/dumpcis/Makefile.depend +++ b/usr.sbin/dumpcis/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/editmap/Makefile.depend b/usr.sbin/editmap/Makefile.depend index 48902cc11a52..081dc001ef57 100644 --- a/usr.sbin/editmap/Makefile.depend +++ b/usr.sbin/editmap/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/edquota/Makefile.depend b/usr.sbin/edquota/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.sbin/edquota/Makefile.depend +++ b/usr.sbin/edquota/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/etcupdate/Makefile.depend b/usr.sbin/etcupdate/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/etcupdate/Makefile.depend +++ b/usr.sbin/etcupdate/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/extattr/Makefile.depend b/usr.sbin/extattr/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.sbin/extattr/Makefile.depend +++ b/usr.sbin/extattr/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/extattrctl/Makefile.depend b/usr.sbin/extattrctl/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.sbin/extattrctl/Makefile.depend +++ b/usr.sbin/extattrctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/faithd/Makefile.depend b/usr.sbin/faithd/Makefile.depend index c262920aba6b..f253d0a15aed 100644 --- a/usr.sbin/faithd/Makefile.depend +++ b/usr.sbin/faithd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/fdcontrol/Makefile.depend b/usr.sbin/fdcontrol/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/fdcontrol/Makefile.depend +++ b/usr.sbin/fdcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/fdformat/Makefile.depend b/usr.sbin/fdformat/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/fdformat/Makefile.depend +++ b/usr.sbin/fdformat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/fdread/Makefile.depend b/usr.sbin/fdread/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/fdread/Makefile.depend +++ b/usr.sbin/fdread/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/fdwrite/Makefile.depend b/usr.sbin/fdwrite/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/fdwrite/Makefile.depend +++ b/usr.sbin/fdwrite/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/fifolog/fifolog_create/Makefile.depend b/usr.sbin/fifolog/fifolog_create/Makefile.depend index 46df9bbb8bdd..7e6c3cf17409 100644 --- a/usr.sbin/fifolog/fifolog_create/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_create/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/fifolog/fifolog_reader/Makefile.depend b/usr.sbin/fifolog/fifolog_reader/Makefile.depend index 5b0d32e507a2..0cd3c0408804 100644 --- a/usr.sbin/fifolog/fifolog_reader/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_reader/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/fifolog/fifolog_writer/Makefile.depend b/usr.sbin/fifolog/fifolog_writer/Makefile.depend index 5b0d32e507a2..0cd3c0408804 100644 --- a/usr.sbin/fifolog/fifolog_writer/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_writer/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/fifolog/lib/Makefile.depend b/usr.sbin/fifolog/lib/Makefile.depend index e28547c08674..7a06d248ad31 100644 --- a/usr.sbin/fifolog/lib/Makefile.depend +++ b/usr.sbin/fifolog/lib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/usr.sbin/flowctl/Makefile.depend b/usr.sbin/flowctl/Makefile.depend index 18356441c25f..9febc4bdaa6a 100644 --- a/usr.sbin/flowctl/Makefile.depend +++ b/usr.sbin/flowctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/freebsd-update/Makefile.depend b/usr.sbin/freebsd-update/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/freebsd-update/Makefile.depend +++ b/usr.sbin/freebsd-update/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend b/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend index dd343ad89b5e..38070dbcd49e 100644 --- a/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend +++ b/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ftp-proxy/libevent/Makefile.depend b/usr.sbin/ftp-proxy/libevent/Makefile.depend index e248139c3a0e..639d45d8b9b0 100644 --- a/usr.sbin/ftp-proxy/libevent/Makefile.depend +++ b/usr.sbin/ftp-proxy/libevent/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/usr.sbin/fwcontrol/Makefile.depend b/usr.sbin/fwcontrol/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/fwcontrol/Makefile.depend +++ b/usr.sbin/fwcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/genrandom/Makefile.depend b/usr.sbin/genrandom/Makefile.depend index 418e04108b2d..5f7eba975637 100644 --- a/usr.sbin/genrandom/Makefile.depend +++ b/usr.sbin/genrandom/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/getfmac/Makefile.depend b/usr.sbin/getfmac/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/getfmac/Makefile.depend +++ b/usr.sbin/getfmac/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/getpmac/Makefile.depend b/usr.sbin/getpmac/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/getpmac/Makefile.depend +++ b/usr.sbin/getpmac/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/gpioctl/Makefile.depend b/usr.sbin/gpioctl/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/gpioctl/Makefile.depend +++ b/usr.sbin/gpioctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/gssd/Makefile.depend b/usr.sbin/gssd/Makefile.depend index cdbb52527644..1a2527296d74 100644 --- a/usr.sbin/gssd/Makefile.depend +++ b/usr.sbin/gssd/Makefile.depend @@ -2,17 +2,22 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ include/gssapi \ include/rpc \ include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ + lib/libcrypt \ lib/libgssapi \ + secure/lib/libcrypto \ .include diff --git a/usr.sbin/gstat/Makefile.depend b/usr.sbin/gstat/Makefile.depend index b5ed1307c69b..a7ea5ad4499f 100644 --- a/usr.sbin/gstat/Makefile.depend +++ b/usr.sbin/gstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/i2c/Makefile.depend b/usr.sbin/i2c/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/i2c/Makefile.depend +++ b/usr.sbin/i2c/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ifmcstat/Makefile.depend b/usr.sbin/ifmcstat/Makefile.depend index e6478bb43262..9d37e681073a 100644 --- a/usr.sbin/ifmcstat/Makefile.depend +++ b/usr.sbin/ifmcstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/inetd/Makefile.depend b/usr.sbin/inetd/Makefile.depend index e9ba4b9771e2..ae24a874e9b2 100644 --- a/usr.sbin/inetd/Makefile.depend +++ b/usr.sbin/inetd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/iostat/Makefile.depend b/usr.sbin/iostat/Makefile.depend index 022357fe8b95..1a3a6ea5031b 100644 --- a/usr.sbin/iostat/Makefile.depend +++ b/usr.sbin/iostat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ip6addrctl/Makefile.depend b/usr.sbin/ip6addrctl/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/ip6addrctl/Makefile.depend +++ b/usr.sbin/ip6addrctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ipfwpcap/Makefile.depend b/usr.sbin/ipfwpcap/Makefile.depend index 447f53247e78..51c23051c607 100644 --- a/usr.sbin/ipfwpcap/Makefile.depend +++ b/usr.sbin/ipfwpcap/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/isc-hmac-fixup/Makefile.depend b/usr.sbin/isc-hmac-fixup/Makefile.depend index 418e04108b2d..5f7eba975637 100644 --- a/usr.sbin/isc-hmac-fixup/Makefile.depend +++ b/usr.sbin/isc-hmac-fixup/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/isfctl/Makefile.depend b/usr.sbin/isfctl/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/isfctl/Makefile.depend +++ b/usr.sbin/isfctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/jail/Makefile.depend b/usr.sbin/jail/Makefile.depend index e3e21598d67d..7876d3836430 100644 --- a/usr.sbin/jail/Makefile.depend +++ b/usr.sbin/jail/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/jexec/Makefile.depend b/usr.sbin/jexec/Makefile.depend index 5c682eef6f2e..97f7b210d15f 100644 --- a/usr.sbin/jexec/Makefile.depend +++ b/usr.sbin/jexec/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/jls/Makefile.depend b/usr.sbin/jls/Makefile.depend index 3d5f6abdbf27..19fac6bcd909 100644 --- a/usr.sbin/jls/Makefile.depend +++ b/usr.sbin/jls/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/kbdcontrol/Makefile.depend b/usr.sbin/kbdcontrol/Makefile.depend index 37e3bbdd1ba5..1542e1df4781 100644 --- a/usr.sbin/kbdcontrol/Makefile.depend +++ b/usr.sbin/kbdcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/kbdmap/Makefile.depend b/usr.sbin/kbdmap/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/kbdmap/Makefile.depend +++ b/usr.sbin/kbdmap/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/keyserv/Makefile.depend b/usr.sbin/keyserv/Makefile.depend index e5b3b8792c02..56f52bec6306 100644 --- a/usr.sbin/keyserv/Makefile.depend +++ b/usr.sbin/keyserv/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/kgmon/Makefile.depend b/usr.sbin/kgmon/Makefile.depend index 553674c09429..70d796e23bfc 100644 --- a/usr.sbin/kgmon/Makefile.depend +++ b/usr.sbin/kgmon/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/kldxref/Makefile.depend b/usr.sbin/kldxref/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/kldxref/Makefile.depend +++ b/usr.sbin/kldxref/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lastlogin/Makefile.depend b/usr.sbin/lastlogin/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/lastlogin/Makefile.depend +++ b/usr.sbin/lastlogin/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lmcconfig/Makefile.depend b/usr.sbin/lmcconfig/Makefile.depend index e6d80d34e638..f817b0fe0e24 100644 --- a/usr.sbin/lmcconfig/Makefile.depend +++ b/usr.sbin/lmcconfig/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lpr/chkprintcap/Makefile.depend b/usr.sbin/lpr/chkprintcap/Makefile.depend index 2eeeb7a95021..e263dc7529d7 100644 --- a/usr.sbin/lpr/chkprintcap/Makefile.depend +++ b/usr.sbin/lpr/chkprintcap/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lpr/common_source/Makefile.depend b/usr.sbin/lpr/common_source/Makefile.depend index e54ec8c9f8a4..84c18191a454 100644 --- a/usr.sbin/lpr/common_source/Makefile.depend +++ b/usr.sbin/lpr/common_source/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend +++ b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend +++ b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lpr/filters/Makefile.depend b/usr.sbin/lpr/filters/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/lpr/filters/Makefile.depend +++ b/usr.sbin/lpr/filters/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lpr/lp/Makefile.depend b/usr.sbin/lpr/lp/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/lpr/lp/Makefile.depend +++ b/usr.sbin/lpr/lp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/lpr/lpc/Makefile.depend b/usr.sbin/lpr/lpc/Makefile.depend index 529eecd2ca2d..3f6739af9db1 100644 --- a/usr.sbin/lpr/lpc/Makefile.depend +++ b/usr.sbin/lpr/lpc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lpr/lpd/Makefile.depend b/usr.sbin/lpr/lpd/Makefile.depend index a8a1c2bd1a15..758a6e6bc9e8 100644 --- a/usr.sbin/lpr/lpd/Makefile.depend +++ b/usr.sbin/lpr/lpd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lpr/lpq/Makefile.depend b/usr.sbin/lpr/lpq/Makefile.depend index 2eeeb7a95021..e263dc7529d7 100644 --- a/usr.sbin/lpr/lpq/Makefile.depend +++ b/usr.sbin/lpr/lpq/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lpr/lpr/Makefile.depend b/usr.sbin/lpr/lpr/Makefile.depend index 2eeeb7a95021..e263dc7529d7 100644 --- a/usr.sbin/lpr/lpr/Makefile.depend +++ b/usr.sbin/lpr/lpr/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lpr/lprm/Makefile.depend b/usr.sbin/lpr/lprm/Makefile.depend index 2eeeb7a95021..e263dc7529d7 100644 --- a/usr.sbin/lpr/lprm/Makefile.depend +++ b/usr.sbin/lpr/lprm/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lpr/lptest/Makefile.depend b/usr.sbin/lpr/lptest/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.sbin/lpr/lptest/Makefile.depend +++ b/usr.sbin/lpr/lptest/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lpr/pac/Makefile.depend b/usr.sbin/lpr/pac/Makefile.depend index 2eeeb7a95021..e263dc7529d7 100644 --- a/usr.sbin/lpr/pac/Makefile.depend +++ b/usr.sbin/lpr/pac/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/lptcontrol/Makefile.depend b/usr.sbin/lptcontrol/Makefile.depend index ac1b1319c7ef..943a383b89f7 100644 --- a/usr.sbin/lptcontrol/Makefile.depend +++ b/usr.sbin/lptcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/mailstats/Makefile.depend b/usr.sbin/mailstats/Makefile.depend index 19ee02b866e4..c9e5a98fa594 100644 --- a/usr.sbin/mailstats/Makefile.depend +++ b/usr.sbin/mailstats/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/mailwrapper/Makefile.depend b/usr.sbin/mailwrapper/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.sbin/mailwrapper/Makefile.depend +++ b/usr.sbin/mailwrapper/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/makefs/Makefile.depend b/usr.sbin/makefs/Makefile.depend index 887c9bdcd4fd..2ee0ef13e57b 100644 --- a/usr.sbin/makefs/Makefile.depend +++ b/usr.sbin/makefs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/makemap/Makefile.depend b/usr.sbin/makemap/Makefile.depend index c1dc46ad5753..751a401aa507 100644 --- a/usr.sbin/makemap/Makefile.depend +++ b/usr.sbin/makemap/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/manctl/Makefile.depend b/usr.sbin/manctl/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/manctl/Makefile.depend +++ b/usr.sbin/manctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/memcontrol/Makefile.depend b/usr.sbin/memcontrol/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/memcontrol/Makefile.depend +++ b/usr.sbin/memcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/mergemaster/Makefile.depend b/usr.sbin/mergemaster/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/mergemaster/Makefile.depend +++ b/usr.sbin/mergemaster/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/mfiutil/Makefile.depend b/usr.sbin/mfiutil/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.sbin/mfiutil/Makefile.depend +++ b/usr.sbin/mfiutil/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/mixer/Makefile.depend b/usr.sbin/mixer/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/mixer/Makefile.depend +++ b/usr.sbin/mixer/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/mld6query/Makefile.depend b/usr.sbin/mld6query/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/mld6query/Makefile.depend +++ b/usr.sbin/mld6query/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/mlxcontrol/Makefile.depend b/usr.sbin/mlxcontrol/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/mlxcontrol/Makefile.depend +++ b/usr.sbin/mlxcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/mountd/Makefile.depend b/usr.sbin/mountd/Makefile.depend index 7ca71becb366..c0c681e4e179 100644 --- a/usr.sbin/mountd/Makefile.depend +++ b/usr.sbin/mountd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/moused/Makefile.depend b/usr.sbin/moused/Makefile.depend index 8825ffd2082f..c1ace067b2e4 100644 --- a/usr.sbin/moused/Makefile.depend +++ b/usr.sbin/moused/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/mptable/Makefile.depend b/usr.sbin/mptable/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/mptable/Makefile.depend +++ b/usr.sbin/mptable/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/mptutil/Makefile.depend b/usr.sbin/mptutil/Makefile.depend index f9f359744bf9..5e53403d170d 100644 --- a/usr.sbin/mptutil/Makefile.depend +++ b/usr.sbin/mptutil/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/mtest/Makefile.depend b/usr.sbin/mtest/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/mtest/Makefile.depend +++ b/usr.sbin/mtest/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/mtree/Makefile.depend b/usr.sbin/mtree/Makefile.depend index 7520d5dc8b42..fb8b9ee55f44 100644 --- a/usr.sbin/mtree/Makefile.depend +++ b/usr.sbin/mtree/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/named-checkconf/Makefile.depend b/usr.sbin/named-checkconf/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/named-checkconf/Makefile.depend +++ b/usr.sbin/named-checkconf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/named-checkzone/Makefile.depend b/usr.sbin/named-checkzone/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/named-checkzone/Makefile.depend +++ b/usr.sbin/named-checkzone/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/named-journalprint/Makefile.depend b/usr.sbin/named-journalprint/Makefile.depend index 418e04108b2d..5f7eba975637 100644 --- a/usr.sbin/named-journalprint/Makefile.depend +++ b/usr.sbin/named-journalprint/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/named/Makefile.depend b/usr.sbin/named/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/named/Makefile.depend +++ b/usr.sbin/named/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ndiscvt/Makefile.depend b/usr.sbin/ndiscvt/Makefile.depend index ee58cc4b340f..974d568792b9 100644 --- a/usr.sbin/ndiscvt/Makefile.depend +++ b/usr.sbin/ndiscvt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ndp/Makefile.depend b/usr.sbin/ndp/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/ndp/Makefile.depend +++ b/usr.sbin/ndp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/newsyslog/Makefile.depend b/usr.sbin/newsyslog/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/newsyslog/Makefile.depend +++ b/usr.sbin/newsyslog/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/nfscbd/Makefile.depend b/usr.sbin/nfscbd/Makefile.depend index 1832799b7892..20333808ad27 100644 --- a/usr.sbin/nfscbd/Makefile.depend +++ b/usr.sbin/nfscbd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/nfsd/Makefile.depend b/usr.sbin/nfsd/Makefile.depend index a3e1b44c73f2..4f9280207819 100644 --- a/usr.sbin/nfsd/Makefile.depend +++ b/usr.sbin/nfsd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/nfsdumpstate/Makefile.depend b/usr.sbin/nfsdumpstate/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/nfsdumpstate/Makefile.depend +++ b/usr.sbin/nfsdumpstate/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/nfsrevoke/Makefile.depend b/usr.sbin/nfsrevoke/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/nfsrevoke/Makefile.depend +++ b/usr.sbin/nfsrevoke/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/nfsuserd/Makefile.depend b/usr.sbin/nfsuserd/Makefile.depend index 1832799b7892..20333808ad27 100644 --- a/usr.sbin/nfsuserd/Makefile.depend +++ b/usr.sbin/nfsuserd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ngctl/Makefile.depend b/usr.sbin/ngctl/Makefile.depend index 90942ad6b8d0..cb91a9dd936a 100644 --- a/usr.sbin/ngctl/Makefile.depend +++ b/usr.sbin/ngctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/nghook/Makefile.depend b/usr.sbin/nghook/Makefile.depend index e6d80d34e638..f817b0fe0e24 100644 --- a/usr.sbin/nghook/Makefile.depend +++ b/usr.sbin/nghook/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/nologin/Makefile.depend b/usr.sbin/nologin/Makefile.depend index f5418c0fbe7a..39dee2d206cb 100644 --- a/usr.sbin/nologin/Makefile.depend +++ b/usr.sbin/nologin/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ lib/${CSU_DIR} \ diff --git a/usr.sbin/nscd/Makefile.depend b/usr.sbin/nscd/Makefile.depend index 0853258e2391..394e5fa0e46c 100644 --- a/usr.sbin/nscd/Makefile.depend +++ b/usr.sbin/nscd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/nsec3hash/Makefile.depend b/usr.sbin/nsec3hash/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/nsec3hash/Makefile.depend +++ b/usr.sbin/nsec3hash/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ntp/doc/Makefile.depend b/usr.sbin/ntp/doc/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/ntp/doc/Makefile.depend +++ b/usr.sbin/ntp/doc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/ntp/libntp/Makefile.depend b/usr.sbin/ntp/libntp/Makefile.depend index 09476febac11..edf9194bf44f 100644 --- a/usr.sbin/ntp/libntp/Makefile.depend +++ b/usr.sbin/ntp/libntp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ diff --git a/usr.sbin/ntp/libopts/Makefile.depend b/usr.sbin/ntp/libopts/Makefile.depend index e248139c3a0e..639d45d8b9b0 100644 --- a/usr.sbin/ntp/libopts/Makefile.depend +++ b/usr.sbin/ntp/libopts/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/usr.sbin/ntp/libparse/Makefile.depend b/usr.sbin/ntp/libparse/Makefile.depend index db05d206adc7..83ac20fba32a 100644 --- a/usr.sbin/ntp/libparse/Makefile.depend +++ b/usr.sbin/ntp/libparse/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/usr.sbin/ntp/ntp-keygen/Makefile.depend b/usr.sbin/ntp/ntp-keygen/Makefile.depend index b26d4df06498..ca0436811fad 100644 --- a/usr.sbin/ntp/ntp-keygen/Makefile.depend +++ b/usr.sbin/ntp/ntp-keygen/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ntp/ntpd/Makefile.depend b/usr.sbin/ntp/ntpd/Makefile.depend index 72d3eb6ed628..be282676f6fc 100644 --- a/usr.sbin/ntp/ntpd/Makefile.depend +++ b/usr.sbin/ntp/ntpd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ntp/ntpdate/Makefile.depend b/usr.sbin/ntp/ntpdate/Makefile.depend index b27014c46e38..a051305b44f3 100644 --- a/usr.sbin/ntp/ntpdate/Makefile.depend +++ b/usr.sbin/ntp/ntpdate/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ntp/ntpdc/Makefile.depend b/usr.sbin/ntp/ntpdc/Makefile.depend index 80ce108f9e44..d253fe876eb8 100644 --- a/usr.sbin/ntp/ntpdc/Makefile.depend +++ b/usr.sbin/ntp/ntpdc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ntp/ntpq/Makefile.depend b/usr.sbin/ntp/ntpq/Makefile.depend index 80ce108f9e44..d253fe876eb8 100644 --- a/usr.sbin/ntp/ntpq/Makefile.depend +++ b/usr.sbin/ntp/ntpq/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ntp/ntptime/Makefile.depend b/usr.sbin/ntp/ntptime/Makefile.depend index d4203a9c7d60..cf5b9b8d8e53 100644 --- a/usr.sbin/ntp/ntptime/Makefile.depend +++ b/usr.sbin/ntp/ntptime/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ntp/sntp/Makefile.depend b/usr.sbin/ntp/sntp/Makefile.depend index 84c4708746dc..eb9c73c0bf62 100644 --- a/usr.sbin/ntp/sntp/Makefile.depend +++ b/usr.sbin/ntp/sntp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend b/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend +++ b/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/pciconf/Makefile.depend b/usr.sbin/pciconf/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/pciconf/Makefile.depend +++ b/usr.sbin/pciconf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/periodic/Makefile.depend b/usr.sbin/periodic/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/periodic/Makefile.depend +++ b/usr.sbin/periodic/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/pkg/Makefile.depend b/usr.sbin/pkg/Makefile.depend index b097b19022c2..242e091099c8 100644 --- a/usr.sbin/pkg/Makefile.depend +++ b/usr.sbin/pkg/Makefile.depend @@ -2,11 +2,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ + include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libarchive \ diff --git a/usr.sbin/pkg_install/add/Makefile.depend b/usr.sbin/pkg_install/add/Makefile.depend index fa35fef447d9..69f311929486 100644 --- a/usr.sbin/pkg_install/add/Makefile.depend +++ b/usr.sbin/pkg_install/add/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pkg_install/create/Makefile.depend b/usr.sbin/pkg_install/create/Makefile.depend index be409ac2cef4..5582399be1e8 100644 --- a/usr.sbin/pkg_install/create/Makefile.depend +++ b/usr.sbin/pkg_install/create/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pkg_install/delete/Makefile.depend b/usr.sbin/pkg_install/delete/Makefile.depend index be409ac2cef4..5582399be1e8 100644 --- a/usr.sbin/pkg_install/delete/Makefile.depend +++ b/usr.sbin/pkg_install/delete/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pkg_install/info/Makefile.depend b/usr.sbin/pkg_install/info/Makefile.depend index fa35fef447d9..69f311929486 100644 --- a/usr.sbin/pkg_install/info/Makefile.depend +++ b/usr.sbin/pkg_install/info/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pkg_install/lib/Makefile.depend b/usr.sbin/pkg_install/lib/Makefile.depend index 8d84ca1b302d..87f72c2ebaac 100644 --- a/usr.sbin/pkg_install/lib/Makefile.depend +++ b/usr.sbin/pkg_install/lib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/xlocale \ diff --git a/usr.sbin/pkg_install/updating/Makefile.depend b/usr.sbin/pkg_install/updating/Makefile.depend index fa35fef447d9..69f311929486 100644 --- a/usr.sbin/pkg_install/updating/Makefile.depend +++ b/usr.sbin/pkg_install/updating/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pkg_install/version/Makefile.depend b/usr.sbin/pkg_install/version/Makefile.depend index fa35fef447d9..69f311929486 100644 --- a/usr.sbin/pkg_install/version/Makefile.depend +++ b/usr.sbin/pkg_install/version/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pmcannotate/Makefile.depend b/usr.sbin/pmcannotate/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/pmcannotate/Makefile.depend +++ b/usr.sbin/pmcannotate/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pmccontrol/Makefile.depend b/usr.sbin/pmccontrol/Makefile.depend index 43f31ea32e04..e192d41bf6f9 100644 --- a/usr.sbin/pmccontrol/Makefile.depend +++ b/usr.sbin/pmccontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pmcstat/Makefile.depend b/usr.sbin/pmcstat/Makefile.depend index c2f6f6474ae6..6511c0634142 100644 --- a/usr.sbin/pmcstat/Makefile.depend +++ b/usr.sbin/pmcstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/portsnap/make_index/Makefile.depend b/usr.sbin/portsnap/make_index/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/portsnap/make_index/Makefile.depend +++ b/usr.sbin/portsnap/make_index/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/portsnap/phttpget/Makefile.depend b/usr.sbin/portsnap/phttpget/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/portsnap/phttpget/Makefile.depend +++ b/usr.sbin/portsnap/phttpget/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/portsnap/portsnap/Makefile.depend b/usr.sbin/portsnap/portsnap/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/portsnap/portsnap/Makefile.depend +++ b/usr.sbin/portsnap/portsnap/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/powerd/Makefile.depend b/usr.sbin/powerd/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.sbin/powerd/Makefile.depend +++ b/usr.sbin/powerd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ppp/Makefile.depend b/usr.sbin/ppp/Makefile.depend index 70221369f30a..b942b109ced8 100644 --- a/usr.sbin/ppp/Makefile.depend +++ b/usr.sbin/ppp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pppctl/Makefile.depend b/usr.sbin/pppctl/Makefile.depend index bc668b210103..8d0379090391 100644 --- a/usr.sbin/pppctl/Makefile.depend +++ b/usr.sbin/pppctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/praliases/Makefile.depend b/usr.sbin/praliases/Makefile.depend index fd254a5bd975..5bb640428218 100644 --- a/usr.sbin/praliases/Makefile.depend +++ b/usr.sbin/praliases/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/praudit/Makefile.depend b/usr.sbin/praudit/Makefile.depend index 1aedff53c5fd..5c8cacb86cf4 100644 --- a/usr.sbin/praudit/Makefile.depend +++ b/usr.sbin/praudit/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/procctl/Makefile.depend b/usr.sbin/procctl/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/procctl/Makefile.depend +++ b/usr.sbin/procctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pstat/Makefile.depend b/usr.sbin/pstat/Makefile.depend index f814107df94f..b31da2391c20 100644 --- a/usr.sbin/pstat/Makefile.depend +++ b/usr.sbin/pstat/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pw/Makefile.depend b/usr.sbin/pw/Makefile.depend index cf2b45501494..cff178c56d32 100644 --- a/usr.sbin/pw/Makefile.depend +++ b/usr.sbin/pw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/pwd_mkdb/Makefile.depend b/usr.sbin/pwd_mkdb/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/pwd_mkdb/Makefile.depend +++ b/usr.sbin/pwd_mkdb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/quot/Makefile.depend b/usr.sbin/quot/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/quot/Makefile.depend +++ b/usr.sbin/quot/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/quotaon/Makefile.depend b/usr.sbin/quotaon/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.sbin/quotaon/Makefile.depend +++ b/usr.sbin/quotaon/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rarpd/Makefile.depend b/usr.sbin/rarpd/Makefile.depend index c262920aba6b..f253d0a15aed 100644 --- a/usr.sbin/rarpd/Makefile.depend +++ b/usr.sbin/rarpd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/repquota/Makefile.depend b/usr.sbin/repquota/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.sbin/repquota/Makefile.depend +++ b/usr.sbin/repquota/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rip6query/Makefile.depend b/usr.sbin/rip6query/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/rip6query/Makefile.depend +++ b/usr.sbin/rip6query/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rmt/Makefile.depend b/usr.sbin/rmt/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/rmt/Makefile.depend +++ b/usr.sbin/rmt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rndc-confgen/Makefile.depend b/usr.sbin/rndc-confgen/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/rndc-confgen/Makefile.depend +++ b/usr.sbin/rndc-confgen/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rndc/Makefile.depend b/usr.sbin/rndc/Makefile.depend index 78e28c0b3162..570d683102b2 100644 --- a/usr.sbin/rndc/Makefile.depend +++ b/usr.sbin/rndc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/route6d/Makefile.depend b/usr.sbin/route6d/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/route6d/Makefile.depend +++ b/usr.sbin/route6d/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rpc.lockd/Makefile.depend b/usr.sbin/rpc.lockd/Makefile.depend index 5b4792291e0d..926b8a27582c 100644 --- a/usr.sbin/rpc.lockd/Makefile.depend +++ b/usr.sbin/rpc.lockd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rpc.statd/Makefile.depend b/usr.sbin/rpc.statd/Makefile.depend index f541eb98d0db..08f029fca20b 100644 --- a/usr.sbin/rpc.statd/Makefile.depend +++ b/usr.sbin/rpc.statd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rpc.umntall/Makefile.depend b/usr.sbin/rpc.umntall/Makefile.depend index 6e9b14f8d7a1..2f2a1c69ed2e 100644 --- a/usr.sbin/rpc.umntall/Makefile.depend +++ b/usr.sbin/rpc.umntall/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rpc.yppasswdd/Makefile.depend b/usr.sbin/rpc.yppasswdd/Makefile.depend index 52d3eca2cd0b..097f4464eff9 100644 --- a/usr.sbin/rpc.yppasswdd/Makefile.depend +++ b/usr.sbin/rpc.yppasswdd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rpc.ypupdated/Makefile.depend b/usr.sbin/rpc.ypupdated/Makefile.depend index 51b99b7a8710..3f47be70fece 100644 --- a/usr.sbin/rpc.ypupdated/Makefile.depend +++ b/usr.sbin/rpc.ypupdated/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rpc.ypxfrd/Makefile.depend b/usr.sbin/rpc.ypxfrd/Makefile.depend index f5063de2043c..5a9e421908a5 100644 --- a/usr.sbin/rpc.ypxfrd/Makefile.depend +++ b/usr.sbin/rpc.ypxfrd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rpcbind/Makefile.depend b/usr.sbin/rpcbind/Makefile.depend index 018259c93cee..02101272db72 100644 --- a/usr.sbin/rpcbind/Makefile.depend +++ b/usr.sbin/rpcbind/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rrenumd/Makefile.depend b/usr.sbin/rrenumd/Makefile.depend index 8b4e2b8f0455..13bf89612d3a 100644 --- a/usr.sbin/rrenumd/Makefile.depend +++ b/usr.sbin/rrenumd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rtadvctl/Makefile.depend b/usr.sbin/rtadvctl/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/rtadvctl/Makefile.depend +++ b/usr.sbin/rtadvctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rtadvd/Makefile.depend b/usr.sbin/rtadvd/Makefile.depend index c262920aba6b..f253d0a15aed 100644 --- a/usr.sbin/rtadvd/Makefile.depend +++ b/usr.sbin/rtadvd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rtprio/Makefile.depend b/usr.sbin/rtprio/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/rtprio/Makefile.depend +++ b/usr.sbin/rtprio/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rtsold/Makefile.depend b/usr.sbin/rtsold/Makefile.depend index e6478bb43262..9d37e681073a 100644 --- a/usr.sbin/rtsold/Makefile.depend +++ b/usr.sbin/rtsold/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/rwhod/Makefile.depend b/usr.sbin/rwhod/Makefile.depend index 083e419a095a..43b5ccc56c3f 100644 --- a/usr.sbin/rwhod/Makefile.depend +++ b/usr.sbin/rwhod/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/sa/Makefile.depend b/usr.sbin/sa/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/sa/Makefile.depend +++ b/usr.sbin/sa/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/sendmail/Makefile.depend b/usr.sbin/sendmail/Makefile.depend index 9298bd4eb1dc..8cf93690c293 100644 --- a/usr.sbin/sendmail/Makefile.depend +++ b/usr.sbin/sendmail/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/service/Makefile.depend b/usr.sbin/service/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/service/Makefile.depend +++ b/usr.sbin/service/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/services_mkdb/Makefile.depend b/usr.sbin/services_mkdb/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.sbin/services_mkdb/Makefile.depend +++ b/usr.sbin/services_mkdb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/setfib/Makefile.depend b/usr.sbin/setfib/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/setfib/Makefile.depend +++ b/usr.sbin/setfib/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/setfmac/Makefile.depend b/usr.sbin/setfmac/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/setfmac/Makefile.depend +++ b/usr.sbin/setfmac/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/setpmac/Makefile.depend b/usr.sbin/setpmac/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/setpmac/Makefile.depend +++ b/usr.sbin/setpmac/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/sicontrol/Makefile.depend b/usr.sbin/sicontrol/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/sicontrol/Makefile.depend +++ b/usr.sbin/sicontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/smbmsg/Makefile.depend b/usr.sbin/smbmsg/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/smbmsg/Makefile.depend +++ b/usr.sbin/smbmsg/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/snapinfo/Makefile.depend b/usr.sbin/snapinfo/Makefile.depend index 250cad80a3e0..4c40401ac6e5 100644 --- a/usr.sbin/snapinfo/Makefile.depend +++ b/usr.sbin/snapinfo/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/spkrtest/Makefile.depend b/usr.sbin/spkrtest/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/spkrtest/Makefile.depend +++ b/usr.sbin/spkrtest/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/spray/Makefile.depend b/usr.sbin/spray/Makefile.depend index 60fe900ca5e6..c405bd7fe3f5 100644 --- a/usr.sbin/spray/Makefile.depend +++ b/usr.sbin/spray/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/syslogd/Makefile.depend b/usr.sbin/syslogd/Makefile.depend index c262920aba6b..f253d0a15aed 100644 --- a/usr.sbin/syslogd/Makefile.depend +++ b/usr.sbin/syslogd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/tcpdchk/Makefile.depend b/usr.sbin/tcpdchk/Makefile.depend index b30ae55b6d65..f35353153c9c 100644 --- a/usr.sbin/tcpdchk/Makefile.depend +++ b/usr.sbin/tcpdchk/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/tcpdmatch/Makefile.depend b/usr.sbin/tcpdmatch/Makefile.depend index b30ae55b6d65..f35353153c9c 100644 --- a/usr.sbin/tcpdmatch/Makefile.depend +++ b/usr.sbin/tcpdmatch/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/tcpdrop/Makefile.depend b/usr.sbin/tcpdrop/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/tcpdrop/Makefile.depend +++ b/usr.sbin/tcpdrop/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/tcpdump/tcpdump/Makefile.depend b/usr.sbin/tcpdump/tcpdump/Makefile.depend index 02177cbc728d..70cbba11de48 100644 --- a/usr.sbin/tcpdump/tcpdump/Makefile.depend +++ b/usr.sbin/tcpdump/tcpdump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/timed/timed/Makefile.depend b/usr.sbin/timed/timed/Makefile.depend index 359f90d6ebee..0f1a53cc1e4f 100644 --- a/usr.sbin/timed/timed/Makefile.depend +++ b/usr.sbin/timed/timed/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/timed/timedc/Makefile.depend b/usr.sbin/timed/timedc/Makefile.depend index 083e419a095a..43b5ccc56c3f 100644 --- a/usr.sbin/timed/timedc/Makefile.depend +++ b/usr.sbin/timed/timedc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/traceroute/Makefile.depend b/usr.sbin/traceroute/Makefile.depend index 3c92034c5a12..45e13efc19c8 100644 --- a/usr.sbin/traceroute/Makefile.depend +++ b/usr.sbin/traceroute/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/traceroute6/Makefile.depend b/usr.sbin/traceroute6/Makefile.depend index 3b4bd931c28c..358d239b4229 100644 --- a/usr.sbin/traceroute6/Makefile.depend +++ b/usr.sbin/traceroute6/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/trpt/Makefile.depend b/usr.sbin/trpt/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/trpt/Makefile.depend +++ b/usr.sbin/trpt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/tzsetup/Makefile.depend b/usr.sbin/tzsetup/Makefile.depend index 3f1092bbda13..adbf705a4046 100644 --- a/usr.sbin/tzsetup/Makefile.depend +++ b/usr.sbin/tzsetup/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libdialog \ gnu/lib/libgcc \ diff --git a/usr.sbin/uathload/Makefile.depend b/usr.sbin/uathload/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/uathload/Makefile.depend +++ b/usr.sbin/uathload/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ugidfw/Makefile.depend b/usr.sbin/ugidfw/Makefile.depend index 2b665a8fde6f..300b64999a55 100644 --- a/usr.sbin/ugidfw/Makefile.depend +++ b/usr.sbin/ugidfw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/uhsoctl/Makefile.depend b/usr.sbin/uhsoctl/Makefile.depend index c262920aba6b..f253d0a15aed 100644 --- a/usr.sbin/uhsoctl/Makefile.depend +++ b/usr.sbin/uhsoctl/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/usbconfig/Makefile.depend b/usr.sbin/usbconfig/Makefile.depend index f7791510e25b..f4f874fece1b 100644 --- a/usr.sbin/usbconfig/Makefile.depend +++ b/usr.sbin/usbconfig/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/usbdump/Makefile.depend b/usr.sbin/usbdump/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/usbdump/Makefile.depend +++ b/usr.sbin/usbdump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/utx/Makefile.depend b/usr.sbin/utx/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/utx/Makefile.depend +++ b/usr.sbin/utx/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/vidcontrol/Makefile.depend b/usr.sbin/vidcontrol/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/vidcontrol/Makefile.depend +++ b/usr.sbin/vidcontrol/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/vipw/Makefile.depend b/usr.sbin/vipw/Makefile.depend index 2dd29af87618..9eb5e857442f 100644 --- a/usr.sbin/vipw/Makefile.depend +++ b/usr.sbin/vipw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/wake/Makefile.depend b/usr.sbin/wake/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/wake/Makefile.depend +++ b/usr.sbin/wake/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/watch/Makefile.depend b/usr.sbin/watch/Makefile.depend index c74c89fb77e8..a02469cc00d4 100644 --- a/usr.sbin/watch/Makefile.depend +++ b/usr.sbin/watch/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/watchdogd/Makefile.depend b/usr.sbin/watchdogd/Makefile.depend index 8825ffd2082f..c1ace067b2e4 100644 --- a/usr.sbin/watchdogd/Makefile.depend +++ b/usr.sbin/watchdogd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/wlandebug/Makefile.depend b/usr.sbin/wlandebug/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/wlandebug/Makefile.depend +++ b/usr.sbin/wlandebug/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/wpa/hostapd/Makefile.depend b/usr.sbin/wpa/hostapd/Makefile.depend index 07fb89b9ba9d..82fe1dccb006 100644 --- a/usr.sbin/wpa/hostapd/Makefile.depend +++ b/usr.sbin/wpa/hostapd/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/wpa/hostapd_cli/Makefile.depend b/usr.sbin/wpa/hostapd_cli/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/wpa/hostapd_cli/Makefile.depend +++ b/usr.sbin/wpa/hostapd_cli/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/wpa/ndis_events/Makefile.depend b/usr.sbin/wpa/ndis_events/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/wpa/ndis_events/Makefile.depend +++ b/usr.sbin/wpa/ndis_events/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/wpa/wpa_cli/Makefile.depend b/usr.sbin/wpa/wpa_cli/Makefile.depend index 501821812871..035d9ccd48a6 100644 --- a/usr.sbin/wpa/wpa_cli/Makefile.depend +++ b/usr.sbin/wpa/wpa_cli/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/wpa/wpa_passphrase/Makefile.depend b/usr.sbin/wpa/wpa_passphrase/Makefile.depend index 16b5e42e296a..dc36998105c4 100644 --- a/usr.sbin/wpa/wpa_passphrase/Makefile.depend +++ b/usr.sbin/wpa/wpa_passphrase/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/wpa/wpa_supplicant/Makefile.depend b/usr.sbin/wpa/wpa_supplicant/Makefile.depend index 07fb89b9ba9d..82fe1dccb006 100644 --- a/usr.sbin/wpa/wpa_supplicant/Makefile.depend +++ b/usr.sbin/wpa/wpa_supplicant/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/yp_mkdb/Makefile.depend b/usr.sbin/yp_mkdb/Makefile.depend index 6e9b14f8d7a1..2f2a1c69ed2e 100644 --- a/usr.sbin/yp_mkdb/Makefile.depend +++ b/usr.sbin/yp_mkdb/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ypbind/Makefile.depend b/usr.sbin/ypbind/Makefile.depend index a3e1b44c73f2..4f9280207819 100644 --- a/usr.sbin/ypbind/Makefile.depend +++ b/usr.sbin/ypbind/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/yppoll/Makefile.depend b/usr.sbin/yppoll/Makefile.depend index 6e9b14f8d7a1..2f2a1c69ed2e 100644 --- a/usr.sbin/yppoll/Makefile.depend +++ b/usr.sbin/yppoll/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/yppush/Makefile.depend b/usr.sbin/yppush/Makefile.depend index ff4f7afd80f9..4ba04081ccc2 100644 --- a/usr.sbin/yppush/Makefile.depend +++ b/usr.sbin/yppush/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ypserv/Makefile.depend b/usr.sbin/ypserv/Makefile.depend index c00e10543e37..81513424201a 100644 --- a/usr.sbin/ypserv/Makefile.depend +++ b/usr.sbin/ypserv/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/ypset/Makefile.depend b/usr.sbin/ypset/Makefile.depend index a3e1b44c73f2..4f9280207819 100644 --- a/usr.sbin/ypset/Makefile.depend +++ b/usr.sbin/ypset/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/zic/zdump/Makefile.depend b/usr.sbin/zic/zdump/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/zic/zdump/Makefile.depend +++ b/usr.sbin/zic/zdump/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/zic/zic/Makefile.depend b/usr.sbin/zic/zic/Makefile.depend index a83954553d0e..61e5f50bc12b 100644 --- a/usr.sbin/zic/zic/Makefile.depend +++ b/usr.sbin/zic/zic/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/zzz/Makefile.depend b/usr.sbin/zzz/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/zzz/Makefile.depend +++ b/usr.sbin/zzz/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ From ddafe925432ffaebfb6a947e0ee6219729c179e2 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 16 Feb 2013 01:32:03 +0000 Subject: [PATCH 039/228] ftpd needs telnet.h so install it regardless --- include/arpa/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/arpa/Makefile b/include/arpa/Makefile index be1e7e3b00c3..2e29e2c88333 100644 --- a/include/arpa/Makefile +++ b/include/arpa/Makefile @@ -3,9 +3,8 @@ .include INCS= ftp.h inet.h nameser.h nameser_compat.h tftp.h -.if ${MK_TELNET} == "no" INCS+= telnet.h -.endif + INCSDIR=${INCLUDEDIR}/arpa .include From b068afb4a2591b2e1bf32a707bd9e53e2c2905d3 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 16 Feb 2013 01:36:14 +0000 Subject: [PATCH 040/228] Avoid problems with read-only osreldate.h --- include/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/include/Makefile b/include/Makefile index c5bfe5ea7e01..a983e225560a 100644 --- a/include/Makefile +++ b/include/Makefile @@ -99,6 +99,7 @@ osreldate.h: ${.CURDIR}/../sys/conf/newvers.sh ${.CURDIR}/../sys/sys/param.h \ @MAKE=${MAKE}; \ PARAMFILE=${.CURDIR}/../sys/sys/param.h; \ . ${.CURDIR}/../sys/conf/newvers.sh; \ + rm -f osreldate.h; \ echo "$$COPYRIGHT" > osreldate.h; \ echo "#ifdef _KERNEL" >> osreldate.h; \ echo "#error \" cannot be used in the kernel, use \"" >> osreldate.h; \ From 945407b1e2bf1c369b88c000351863619d207a8e Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 16 Feb 2013 05:22:48 +0000 Subject: [PATCH 041/228] target to build toolchain --- pkgs/pseudo/toolchain/Makefile | 3 +++ pkgs/pseudo/toolchain/Makefile.depend | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 pkgs/pseudo/toolchain/Makefile create mode 100644 pkgs/pseudo/toolchain/Makefile.depend diff --git a/pkgs/pseudo/toolchain/Makefile b/pkgs/pseudo/toolchain/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/toolchain/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/toolchain/Makefile.depend b/pkgs/pseudo/toolchain/Makefile.depend new file mode 100644 index 000000000000..1e42b26aabed --- /dev/null +++ b/pkgs/pseudo/toolchain/Makefile.depend @@ -0,0 +1,12 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + pkgs/pseudo/clang \ + pkgs/pseudo/gcc \ + usr.bin/xinstall \ + +.include From ea7315fe663139cc9619ebc3508f93e700641ae2 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 17 Feb 2013 23:46:17 +0000 Subject: [PATCH 042/228] Cleanup --- include/arpa/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/arpa/Makefile b/include/arpa/Makefile index 2e29e2c88333..260b3b347ebe 100644 --- a/include/arpa/Makefile +++ b/include/arpa/Makefile @@ -2,8 +2,7 @@ .include -INCS= ftp.h inet.h nameser.h nameser_compat.h tftp.h -INCS+= telnet.h +INCS= ftp.h inet.h nameser.h nameser_compat.h telnet.h tftp.h INCSDIR=${INCLUDEDIR}/arpa From 34ce9cc44fbbd7b19853f50d4e7b224e34fc1823 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 20 Feb 2013 00:13:26 +0000 Subject: [PATCH 043/228] Do no assume ${DESTDIR}/usr/include is always valid --- share/mk/local.sys.mk | 1 + usr.bin/top/Makefile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index f36632863404..d10076c38736 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -163,6 +163,7 @@ CXXFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} CFLAGS_LAST+= --sysroot=${STAGE_OBJTOP} -isystem ${STAGE_OBJTOP}/include .endif .endif +STAGED_INCLUDE_DIR= ${STAGE_OBJTOP}/include .if ${USE_META:Uyes} == "yes" .include "meta.sys.mk" .endif diff --git a/usr.bin/top/Makefile b/usr.bin/top/Makefile index 864473f5c614..977b3c3b71b6 100644 --- a/usr.bin/top/Makefile +++ b/usr.bin/top/Makefile @@ -26,7 +26,8 @@ LDADD= -ltermcap -lm -lkvm CLEANFILES= sigdesc.h SIGCONV_AWK= ${.CURDIR}/../../contrib/top/sigconv.awk -SIGNAL_H= ${DESTDIR}/usr/include/sys/signal.h +STAGED_INCLUDE_DIR?= ${DESTDIR}/usr/include +SIGNAL_H= ${STAGED_INCLUDE_DIR}/sys/signal.h sigdesc.h: ${SIGCONV_AWK} ${SIGNAL_H} awk -f ${SIGCONV_AWK} < ${SIGNAL_H} > ${.TARGET} From 57c4bd13166be63ce0084a26331cd501e19d8411 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 26 Feb 2013 05:44:12 +0000 Subject: [PATCH 044/228] Simplify handling of chmod --- share/mk/meta.stage.mk | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index 303e7b8afd7d..ebb9330a8507 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -1,4 +1,4 @@ -# $Id: meta.stage.mk,v 1.15 2012/10/14 02:50:38 sjg Exp $ +# $Id: meta.stage.mk,v 1.18 2013/02/26 05:40:49 sjg Exp $ # # @(#) Copyright (c) 2011, Simon J. Gerraty # @@ -74,7 +74,7 @@ STAGE_FILE_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageFiles() { \ rm -f $$t; \ { ln $$f $$t 2> /dev/null || \ cp -p $$f $$t; }; \ - $${mode:+chmod $$mode $$t}; \ + [ -z "$$mode" ] || chmod $$mode $$t; \ done; :; } STAGE_LINKS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageLinks() { \ @@ -106,7 +106,7 @@ STAGE_AS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageAs() { \ rm -f $$t; \ { ln $$s $$t 2> /dev/null || \ cp -p $$s $$t; }; \ - $${mode:+chmod $$mode $$t}; \ + [ -z "$$mode" ] || chmod $$mode $$t; \ done; :; } # this is simple, a list of the "staged" files depends on this, @@ -152,7 +152,6 @@ STAGE_SYMLINKS ?= ${.ALLSRC:T:N.dirdep:Nstage_*} .endif .if !empty(STAGE_SETS) - CLEANFILES += ${STAGE_SETS:@s@stage*$s@} # some makefiles need to populate multiple directories @@ -193,7 +192,6 @@ stage_symlinks: .dirdep .endif .if !empty(STAGE_AS_SETS) - CLEANFILES += ${STAGE_AS_SETS:@s@stage*$s@} # sometimes things need to be renamed as they are staged From 76fbd285d2f341c40353dc2703139bf2c4c1b9e8 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 26 Feb 2013 05:44:48 +0000 Subject: [PATCH 045/228] Need .ORDER for various stage_* targets --- share/mk/bsd.prog.mk | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index 758756992046..67e955dcea1e 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -259,21 +259,27 @@ all: stage_files .endif .endif +.if !empty(STAGE_AS_SETS) +all: stage_as +.endif .if !empty(LINKS) all: stage_links +.ORDER: stage_files stage_links +.if !empty(STAGE_AS_SETS) +.ORDER: stage_as stage_links +.endif STAGE_SETS+= prog STAGE_LINKS.prog= ${LINKS} .endif .if !empty(SYMLINKS) all: stage_symlinks +.if !empty(STAGE_AS_SETS) +.ORDER: stage_as stage_symlinks +.endif STAGE_SETS+= prog STAGE_SYMLINKS.prog= ${SYMLINKS} .endif -.if !empty(STAGE_AS_SETS) -all: stage_as -.endif - .endif .include .endif From c2ec0b518350f624858e6f334e2f115883430c16 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 4 Mar 2013 21:35:49 +0000 Subject: [PATCH 046/228] Handle multiple M2D_OBJROOTS better --- share/mk/gendirdeps.mk | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk index 8572a7adeb12..f54d629e04af 100644 --- a/share/mk/gendirdeps.mk +++ b/share/mk/gendirdeps.mk @@ -114,7 +114,7 @@ META2DEPS_CMD = ${_time} ${PYTHON} ${META2DEPS} ${_py_d} \ META2DEPS_CMD += -D ${DPDEPS} .endif -M2D_OBJROOTS += ${OBJTOP}/ ${_OBJROOT} +M2D_OBJROOTS += ${OBJTOP}/ ${_OBJROOT} ${_objroot} .if defined(SB_OBJROOT) M2D_OBJROOTS += ${SB_OBJROOT} .endif @@ -157,7 +157,21 @@ dir_list != cd ${_OBJDIR} && \ .if !empty(DPADD) _nonlibs := ${DPADD:T:Nlib*:N*include} .if !empty(_nonlibs) -dir_list += ${_nonlibs:@x@${DPADD:M*/$x}@:H:tA} +ddep_list = +.for f in ${_nonlibs:@x@${DPADD:M*/$x}@:tA} +.if exists($f.dirdep) +ddep_list += $f.dirdep +.elif exists(${f:H}.dirdep) +ddep_list += ${f:H}.dirdep +.else +dir_list += ${f:H} +.endif +.endfor +.if !empty(ddep_list) +ddeps != cat ${ddep_list:O:u} | ${META2DEPS_FILTER} ${_skip_gendirdeps} \ + sed 's,//*$$,,;s,\.${HOST_TARGET}$$,.host,' +dir_list += ${ddeps} +.endif .endif .endif @@ -173,22 +187,21 @@ dirdep_list = \ ${dir_list:M${_objtop}*/*:C,${_objtop}[^/]*/,,} \ ${GENDIRDEPS_DIR_LIST_XTRAS} +# sort longest first +M2D_OBJROOTS := ${M2D_OBJROOTS:O:u:[-1..1]} + # anything we use from an object dir other than ours # needs to be qualified with its . suffix # (we used the pseudo machine "host" for the HOST_TARGET). -qualdir_list = \ - ${dir_list:M${_objroot}*/*/*:N${SRCTOP}*:N${_objtop}*:C,${_objroot}([^/]+)/(.*),\2.\1,:S,.${HOST_TARGET},.host,} - -.if ${_OBJROOT} != ${_objroot} -dirdep_list += \ - ${dir_list:M${_OBJTOP}*/*:C,${_OBJTOP}[^/]*/,,} - +skip_ql= ${SRCTOP}* ${_objtop}* +.for o in ${M2D_OBJROOTS:${skip_ql:${M_ListToSkip}}} qualdir_list += \ - ${dir_list:M${_OBJROOT}*/*/*:N${SRCTOP}*:N${_OBJTOP}*:C,${_OBJROOT}([^/]+)/(.*),\2.\1,:S,.${HOST_TARGET},.host,} -.endif + ${dir_list:${skip_ql:${M_ListToSkip}}:M$o*/*/*:C,$o([^/]+)/(.*),\2.\1,:S,.${HOST_TARGET},.host,} +skip_ql+= $o* +.endfor dirdep_list := ${dirdep_list:O:u} -qualdir_list := ${qualdir_list:O:u} +qualdir_list := ${qualdir_list:N*.${MACHINE}:O:u} DIRDEPS = \ ${dirdep_list:N${RELDIR}:N${RELDIR}/*} \ @@ -209,6 +222,7 @@ DIRDEPS += \ DIRDEPS := ${DIRDEPS:${GENDIRDEPS_FILTER:UNno:ts:}:O:u} .if ${DEBUG_GENDIRDEPS:Uno:@x@${RELDIR:M$x}@} != "" +.info ${RELDIR}: M2D_OBJROOTS=${M2D_OBJROOTS} .info ${RELDIR}: dir_list='${dir_list}' .info ${RELDIR}: dirdep_list='${dirdep_list}' .info ${RELDIR}: qualdir_list='${qualdir_list}' From 57bf5f75baa3489b0d1afdeb3d7792ecf334ce59 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 4 Mar 2013 21:36:34 +0000 Subject: [PATCH 047/228] Move STAGING related setup to bsd.sys.mk --- share/mk/bsd.lib.mk | 23 ++------------ share/mk/bsd.prog.mk | 46 --------------------------- share/mk/bsd.sys.mk | 76 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 78 insertions(+), 67 deletions(-) diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index bdc5310fdd89..fa7ebcc3b7cc 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -112,8 +112,8 @@ PO_FLAG=-pg ${CTFCONVERT_CMD} .if !defined(_SKIP_BUILD) -all: prebuild .WAIT -prebuild: objwarn +all: beforebuild .WAIT +beforebuild: objwarn .if !defined(.PARSEDIR) # this is a no-op .WAIT: @@ -429,22 +429,3 @@ clean: .include .include - -.if ${MK_STAGING} != "no" -.if defined(_SKIP_BUILD) -stage_libs stage_files stage_as: -.else -.if !empty(_LIBS) && !defined(INTERNALLIB) -stage_libs: ${_LIBS} -.for t in stage_libs stage_files stage_as -.if target($t) -all: $t -.endif -.endfor -.endif -.if !empty(INCS) || !empty(INCSGROUPS) -prebuild: buildincludes -.endif -.include -.endif -.endif diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index 67e955dcea1e..f07e16ac2cc6 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -238,49 +238,3 @@ ${OBJS}: ${SRCS:M*.h} .if defined(PORTNAME) .include .endif - -.if ${MK_STAGING} != "no" -.if defined(_SKIP_BUILD) -stage_files stage_as: -.else -# normally only libs and includes are staged -.if ${MK_STAGING_PROG:Uno} != "no" -STAGE_DIR.prog= ${STAGE_OBJTOP}${BINDIR} - -.if !empty(PROG) -.if defined(PROGNAME) -STAGE_AS_SETS+= prog -STAGE_AS_${PROG}= ${PROGNAME} -stage_as.prog: ${PROG} -.else -STAGE_SETS+= prog -stage_files.prog: ${PROG} -all: stage_files -.endif -.endif - -.if !empty(STAGE_AS_SETS) -all: stage_as -.endif -.if !empty(LINKS) -all: stage_links -.ORDER: stage_files stage_links -.if !empty(STAGE_AS_SETS) -.ORDER: stage_as stage_links -.endif -STAGE_SETS+= prog -STAGE_LINKS.prog= ${LINKS} -.endif -.if !empty(SYMLINKS) -all: stage_symlinks -.if !empty(STAGE_AS_SETS) -.ORDER: stage_as stage_symlinks -.endif -STAGE_SETS+= prog -STAGE_SYMLINKS.prog= ${SYMLINKS} -.endif - -.endif -.include -.endif -.endif diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk index 847e571e0d17..233ce3eea27e 100644 --- a/share/mk/bsd.sys.mk +++ b/share/mk/bsd.sys.mk @@ -141,3 +141,79 @@ PHONY_NOTMAIN = afterdepend afterinstall all beforedepend beforeinstall \ .PHONY: ${PHONY_NOTMAIN} .NOTMAIN: ${PHONY_NOTMAIN} + +.if ${MK_STAGING} != "no" +.if defined(_SKIP_BUILD) || !make(all) +stage_libs stage_files stage_as stage_links stage_symlinks: +.else +# allow targets like beforeinstall to be leveraged +DESTDIR= ${STAGE_OBJTOP} + +.if target(beforeinstall) +.if !empty(_LIBS) || ${MK_STAGING_PROG} != "no" +stage_files: beforeinstall +.endif +.endif + +# normally only libs and includes are staged +.if ${MK_STAGING_PROG} != "no" +STAGE_DIR.prog= ${STAGE_OBJTOP}${BINDIR} + +.if !empty(PROG) +.if defined(PROGNAME) +STAGE_AS_SETS+= prog +STAGE_AS_${PROG}= ${PROGNAME} +stage_as.prog: ${PROG} +.else +STAGE_SETS+= prog +stage_files.prog: ${PROG} +all: stage_files +.endif +.endif +.endif + +.if !empty(_LIBS) && !defined(INTERNALLIB) +stage_libs: ${_LIBS} +.endif + +.if !empty(INCS) || !empty(INCSGROUPS) && target(buildincludes) +beforebuild: buildincludes +.endif + +.if !empty(STAGE_AS_SETS) +all: stage_as +.endif + +.if !empty(_LIBS) || ${MK_STAGING_PROG} != "no" + +.if !empty(LINKS) +all: stage_links +.ORDER: stage_files stage_links +.if !empty(STAGE_AS_SETS) +.ORDER: stage_as stage_links +.endif +STAGE_SETS+= links +STAGE_LINKS.links= ${LINKS} +.endif + +.if !empty(SYMLINKS) +all: stage_symlinks +.if !empty(STAGE_AS_SETS) +.ORDER: stage_as stage_symlinks +.endif +STAGE_SETS+= links +STAGE_SYMLINKS.links= ${SYMLINKS} +.endif + +.endif + +.for t in stage_libs stage_files stage_as +.if target($t) +all: $t +.endif +.endfor + +.include +.endif +.endif + From daba14838c79e0f40165771d2113cad2ce701a66 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 6 Mar 2013 18:35:57 +0000 Subject: [PATCH 048/228] Use pkgs/pseudo/stage to run mtree against STAGE_OBJTOP --- pkgs/pseudo/stage/Makefile | 17 +++++++++++++++++ share/mk/local.dirdeps.mk | 5 +++++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/pseudo/stage/Makefile diff --git a/pkgs/pseudo/stage/Makefile b/pkgs/pseudo/stage/Makefile new file mode 100644 index 000000000000..dac840cb2455 --- /dev/null +++ b/pkgs/pseudo/stage/Makefile @@ -0,0 +1,17 @@ +# $FreeBSD$ + +# this makefile gets hooked into everyone's dependencies so that +# distrib-dirs can be done in STAGE_OBJTOP +all: + +# mtree makes a lot of noise if we are not root, +# we don't need to see it. +stage-distrib-dirs: .META + mkdir -p ${STAGE_OBJTOP} + ${.MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${STAGE_OBJTOP} > $@ + +.include + +.if ${.MAKE.LEVEL} > 0 && ${MK_STAGING} == "yes" +all: stage-distrib-dirs +.endif diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index dedf9e274134..7feb63b4654c 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -13,3 +13,8 @@ DIRDEPS_FILTER+= \ .if ${MK_SSP:Uno} != "no" && defined(PROG) DIRDEPS += gnu/lib/libssp/libssp_nonshared .endif + +# we need pkgs/pseudo/stage to prep the stage tree +.if ${DEP_RELDIR:U${RELDIR}} != "pkgs/pseudo/stage" +DIRDEPS += pkgs/pseudo/stage +.endif From 7da8703584e2ef715537708434ab59c49a50cf7c Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 6 Mar 2013 18:39:40 +0000 Subject: [PATCH 049/228] DESTDIR is set already --- usr.bin/kdump/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/usr.bin/kdump/Makefile b/usr.bin/kdump/Makefile index 25416563ba25..f4b200bc7a52 100644 --- a/usr.bin/kdump/Makefile +++ b/usr.bin/kdump/Makefile @@ -41,6 +41,5 @@ linux_syscalls.c: .if ${MK_STAGING} != "" # we are interested in the files put in ${STAGE_OBJTOP}/include -DESTDIR= ${STAGE_OBJTOP} INCLUDEDIR= /include .endif From 55f2e9ab1c0736f4d025aa51165cd3586e16d662 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 8 Mar 2013 00:05:34 +0000 Subject: [PATCH 050/228] Stage*(): return early if no args, and thow error if cp etc., fails. --- share/mk/meta.stage.mk | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index ebb9330a8507..039c2fafdc1f 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -1,4 +1,4 @@ -# $Id: meta.stage.mk,v 1.18 2013/02/26 05:40:49 sjg Exp $ +# $Id: meta.stage.mk,v 1.20 2013/03/08 00:00:57 sjg Exp $ # # @(#) Copyright (c) 2011, Simon J. Gerraty # @@ -58,13 +58,13 @@ STAGE_DIRDEP_SCRIPT = StageDirdep() { \ exit 1; \ fi; \ ln .dirdep $$t.dirdep 2> /dev/null || \ - cp .dirdep $$t.dirdep; } + cp .dirdep $$t.dirdep || exit 1; } # common logic for staging files # this all relies on RELDIR being set to a subdir of SRCTOP # we use ln(1) if we can, else cp(1) STAGE_FILE_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageFiles() { \ - case "$$1" in -m) mode=$$2; shift 2;; *) mode=;; esac; \ + case "$$1" in "") return;; -m) mode=$$2; shift 2;; *) mode=;; esac; \ dest=$$1; shift; \ mkdir -p $$dest; \ [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \ @@ -73,12 +73,12 @@ STAGE_FILE_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageFiles() { \ StageDirdep $$t; \ rm -f $$t; \ { ln $$f $$t 2> /dev/null || \ - cp -p $$f $$t; }; \ + cp -p $$f $$t; } || exit 1; \ [ -z "$$mode" ] || chmod $$mode $$t; \ done; :; } STAGE_LINKS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageLinks() { \ - case "$$1" in --) shift;; -*) ldest= lnf=$$1; shift;; /*) ldest=$$1/;; esac; \ + case "$$1" in "") return;; --) shift;; -*) ldest= lnf=$$1; shift;; /*) ldest=$$1/;; esac; \ dest=$$1; shift; \ mkdir -p $$dest; \ [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \ @@ -89,11 +89,11 @@ STAGE_LINKS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageLinks() { \ shift; \ StageDirdep $$t; \ rm -f $$t 2>/dev/null; \ - ln $$lnf $$l $$t; \ + ln $$lnf $$l $$t || exit 1; \ done; :; } STAGE_AS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageAs() { \ - case "$$1" in -m) mode=$$2; shift 2;; *) mode=;; esac; \ + case "$$1" in "") return;; -m) mode=$$2; shift 2;; *) mode=;; esac; \ dest=$$1; shift; \ mkdir -p $$dest; \ [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \ @@ -105,7 +105,7 @@ STAGE_AS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageAs() { \ StageDirdep $$t; \ rm -f $$t; \ { ln $$s $$t 2> /dev/null || \ - cp -p $$s $$t; }; \ + cp -p $$s $$t; } || exit 1; \ [ -z "$$mode" ] || chmod $$mode $$t; \ done; :; } From 92054a537ebf734dd4af652fa5dcd9d27f5e1e0b Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 8 Mar 2013 00:23:21 +0000 Subject: [PATCH 051/228] Ensure natural order of stage_*: matches the .ORDER in meta.stage.mk --- share/mk/bsd.sys.mk | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk index 233ce3eea27e..a5c3a10171d7 100644 --- a/share/mk/bsd.sys.mk +++ b/share/mk/bsd.sys.mk @@ -180,6 +180,12 @@ stage_libs: ${_LIBS} beforebuild: buildincludes .endif +.for t in stage_libs stage_files stage_as +.if target($t) +all: $t +.endif +.endfor + .if !empty(STAGE_AS_SETS) all: stage_as .endif @@ -188,31 +194,18 @@ all: stage_as .if !empty(LINKS) all: stage_links -.ORDER: stage_files stage_links -.if !empty(STAGE_AS_SETS) -.ORDER: stage_as stage_links -.endif STAGE_SETS+= links STAGE_LINKS.links= ${LINKS} .endif .if !empty(SYMLINKS) all: stage_symlinks -.if !empty(STAGE_AS_SETS) -.ORDER: stage_as stage_symlinks -.endif STAGE_SETS+= links STAGE_SYMLINKS.links= ${SYMLINKS} .endif .endif -.for t in stage_libs stage_files stage_as -.if target($t) -all: $t -.endif -.endfor - .include .endif .endif From 360b9875360ef4cf045c462eb479b2df4f508016 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 8 Mar 2013 00:23:42 +0000 Subject: [PATCH 052/228] One .ORDER should suffice --- share/mk/meta.stage.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index 039c2fafdc1f..c09af35a9579 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -208,4 +208,7 @@ stage_as.$s: .dirdep .endfor .endif +# if we have to do any of these, do them in this order +.ORDER: stage_incs stage_libs stage_files stage_as stage_links stage_symlinks + .endif From 9c6f3ad90fa295300c9f108200e6f4c5dba5115c Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 8 Mar 2013 01:51:32 +0000 Subject: [PATCH 053/228] Control default .MAKE.DEPENDFILE indepentend of .MAKE.DEPENDFILE_PREFERENCE --- share/mk/local.sys.mk | 12 ++++++++---- share/mk/sys.dependfile.mk | 14 +++++++++----- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index d10076c38736..af6e72cc9a19 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -168,11 +168,15 @@ STAGED_INCLUDE_DIR= ${STAGE_OBJTOP}/include .include "meta.sys.mk" .endif -# most dirs can be satisfied with one Makefile.depend -.undef .MAKE.DEPENDFILE +# this is sufficient for most of the tree. +.MAKE.DEPENDFILE_DEFAULT = ${.MAKE.DEPENDFILE_PREFIX} + +# but if we have a machine qualified file it should be used in preference .MAKE.DEPENDFILE_PREFERENCE = \ - ${.MAKE.DEPENDFILE_PREFIX} \ - ${.MAKE.DEPENDFILE_PREFIX}.${MACHINE} + ${.MAKE.DEPENDFILE_PREFIX}.${MACHINE} \ + ${.MAKE.DEPENDFILE_PREFIX} + +.undef .MAKE.DEPENDFILE .include "sys.dependfile.mk" diff --git a/share/mk/sys.dependfile.mk b/share/mk/sys.dependfile.mk index 432cc4fabb98..42cec61fce13 100644 --- a/share/mk/sys.dependfile.mk +++ b/share/mk/sys.dependfile.mk @@ -1,4 +1,4 @@ -# $Id: sys.dependfile.mk,v 1.3 2012/04/25 15:45:04 sjg Exp $ +# $Id: sys.dependfile.mk,v 1.5 2013/03/08 00:59:21 sjg Exp $ # # @(#) Copyright (c) 2012, Simon J. Gerraty # @@ -25,16 +25,20 @@ # All depend file names should start with this .MAKE.DEPENDFILE_PREFIX ?= Makefile.depend -# The order of preference: we will use the first one of these we find -# otherwise the 1st entry will be used by default. +# The order of preference: we will use the first one of these we find. +# It usually makes sense to order from most specific to least. .MAKE.DEPENDFILE_PREFERENCE ?= \ ${.CURDIR}/${.MAKE.DEPENDFILE_PREFIX}.${MACHINE} \ ${.CURDIR}/${.MAKE.DEPENDFILE_PREFIX} +# Normally the 1st entry is our default choice +# Another useful default is ${.MAKE.DEPENDFILE_PREFIX} +.MAKE.DEPENDFILE_DEFAULT ?= ${.MAKE.DEPENDFILE_PREFERENCE:[1]} + _e := ${.MAKE.DEPENDFILE_PREFERENCE:@m@${exists($m):?$m:}@} .if !empty(_e) .MAKE.DEPENDFILE := ${_e:[1]} -.elif ${.MAKE.DEPENDFILE_PREFERENCE:M*${MACHINE}} != "" && ${.MAKE.DEPENDFILE_PREFERENCE:[1]:E} != ${MACHINE} +.elif ${.MAKE.DEPENDFILE_PREFERENCE:M*${MACHINE}} != "" && ${.MAKE.DEPENDFILE_DEFAULT:E} != ${MACHINE} # MACHINE specific depend files are supported, but *not* default. # If any already exist, we should follow suit. _aml = ${ALL_MACHINE_LIST:Uarm amd64 i386 powerpc:N${MACHINE}} ${MACHINE} @@ -44,4 +48,4 @@ _e := ${_aml:@MACHINE@${.MAKE.DEPENDFILE_PREFERENCE:@m@${exists($m):?$m:}@}@} .MAKE.DEPENDFILE ?= ${.MAKE.DEPENDFILE_PREFERENCE:M*${MACHINE}:[1]} .endif .endif -.MAKE.DEPENDFILE ?= ${.MAKE.DEPENDFILE_PREFERENCE:[1]} +.MAKE.DEPENDFILE ?= ${.MAKE.DEPENDFILE_DEFAULT} From 8fe4beee0430001da2da7dde791d5595429ccd59 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 8 Mar 2013 22:02:08 +0000 Subject: [PATCH 054/228] Allow staging to be help up (by .WAIT) until other bits of all: are done. --- share/mk/bsd.incs.mk | 2 +- share/mk/bsd.lib.mk | 4 ---- share/mk/bsd.nls.mk | 2 +- share/mk/bsd.sys.mk | 21 +++++++++++++-------- share/mk/meta.stage.mk | 29 +++++++++++++++++++++++------ 5 files changed, 38 insertions(+), 20 deletions(-) diff --git a/share/mk/bsd.incs.mk b/share/mk/bsd.incs.mk index 9d614be4a2a9..c84f97aa28b5 100644 --- a/share/mk/bsd.incs.mk +++ b/share/mk/bsd.incs.mk @@ -99,7 +99,7 @@ buildincludes: stage_as .endif .endif .if !empty(INCSLINKS) -stage_files: stage_symlinks +staging: stage_symlinks STAGE_SYMLINKS.INCS= ${INCSLINKS} .endif .endif diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index fa7ebcc3b7cc..b0a63775c363 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -114,10 +114,6 @@ PO_FLAG=-pg .if !defined(_SKIP_BUILD) all: beforebuild .WAIT beforebuild: objwarn -.if !defined(.PARSEDIR) -# this is a no-op -.WAIT: -.endif .endif .include diff --git a/share/mk/bsd.nls.mk b/share/mk/bsd.nls.mk index 3d2efc120e29..bf8305cb459e 100644 --- a/share/mk/bsd.nls.mk +++ b/share/mk/bsd.nls.mk @@ -63,7 +63,7 @@ NLSDIR?= ${SHAREDIR}/nls # .if ${MK_STAGING_PROG} == "yes" .if !defined(_SKIP_BUILD) -all: stage_symlinks +staging: stage_symlinks .endif STAGE_SYMLINKS.NLS= ${NLSSYMLINKS} STAGE_SYMLINKS_DIR.NLS= ${STAGE_OBJTOP} diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk index a5c3a10171d7..ac20086a19cd 100644 --- a/share/mk/bsd.sys.mk +++ b/share/mk/bsd.sys.mk @@ -142,16 +142,21 @@ PHONY_NOTMAIN = afterdepend afterinstall all beforedepend beforeinstall \ .PHONY: ${PHONY_NOTMAIN} .NOTMAIN: ${PHONY_NOTMAIN} +.if !defined(.PARSEDIR) +# this is a no-op +.WAIT: +.endif + .if ${MK_STAGING} != "no" .if defined(_SKIP_BUILD) || !make(all) -stage_libs stage_files stage_as stage_links stage_symlinks: +staging stage_libs stage_files stage_as stage_links stage_symlinks: .else # allow targets like beforeinstall to be leveraged DESTDIR= ${STAGE_OBJTOP} -.if target(beforeinstall) +.if commands(beforeinstall) .if !empty(_LIBS) || ${MK_STAGING_PROG} != "no" -stage_files: beforeinstall +staging: beforeinstall .endif .endif @@ -167,7 +172,7 @@ stage_as.prog: ${PROG} .else STAGE_SETS+= prog stage_files.prog: ${PROG} -all: stage_files +staging: stage_files .endif .endif .endif @@ -182,24 +187,24 @@ beforebuild: buildincludes .for t in stage_libs stage_files stage_as .if target($t) -all: $t +staging: $t .endif .endfor .if !empty(STAGE_AS_SETS) -all: stage_as +staging: stage_as .endif .if !empty(_LIBS) || ${MK_STAGING_PROG} != "no" .if !empty(LINKS) -all: stage_links +staging: stage_links STAGE_SETS+= links STAGE_LINKS.links= ${LINKS} .endif .if !empty(SYMLINKS) -all: stage_symlinks +staging: stage_symlinks STAGE_SETS+= links STAGE_SYMLINKS.links= ${SYMLINKS} .endif diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index c09af35a9579..2bc9fbdcfdd4 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -1,4 +1,4 @@ -# $Id: meta.stage.mk,v 1.20 2013/03/08 00:00:57 sjg Exp $ +# $Id: meta.stage.mk,v 1.22 2013/03/08 17:52:11 sjg Exp $ # # @(#) Copyright (c) 2011, Simon J. Gerraty # @@ -114,8 +114,7 @@ _STAGE_BASENAME_USE: .USE ${.TARGET:T} @${STAGE_FILE_SCRIPT}; StageFiles ${.TARGET:H:${STAGE_DIR_FILTER}} ${.TARGET:T} .if !empty(STAGE_INCSDIR) -CLEANFILES += stage_incs - +STAGE_TARGETS += stage_incs STAGE_INCS ?= ${.ALLSRC:N.dirdep} stage_incs: .dirdep @@ -124,7 +123,7 @@ stage_incs: .dirdep .endif .if !empty(STAGE_LIBDIR) -CLEANFILES += stage_libs +STAGE_TARGETS += stage_libs STAGE_LIBS ?= ${.ALLSRC:N.dirdep} @@ -161,6 +160,7 @@ STAGE_SYMLINKS.$s ?= ${.ALLSRC:N.dirdep} STAGE_LINKS_DIR.$s ?= ${STAGE_OBJTOP} STAGE_SYMLINKS_DIR.$s ?= ${STAGE_OBJTOP} +STAGE_TARGETS += stage_files .if $s != "_default" stage_files: stage_files.$s stage_files.$s: .dirdep @@ -170,6 +170,7 @@ stage_files: .dirdep @${STAGE_FILE_SCRIPT}; StageFiles ${FLAGS.$@} ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_FILES.$s} @touch $@ +STAGE_TARGETS += stage_links .if $s != "_default" stage_links: stage_links.$s stage_links.$s: .dirdep @@ -179,6 +180,7 @@ stage_links: .dirdep @${STAGE_LINKS_SCRIPT}; StageLinks ${STAGE_LINKS_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_LINKS.$s} @touch $@ +STAGE_TARGETS += stage_symlinks .if $s != "_default" stage_symlinks: stage_symlinks.$s stage_symlinks.$s: .dirdep @@ -194,6 +196,8 @@ stage_symlinks: .dirdep .if !empty(STAGE_AS_SETS) CLEANFILES += ${STAGE_AS_SETS:@s@stage*$s@} +STAGE_TARGETS += stage_as + # sometimes things need to be renamed as they are staged # each ${file} will be staged as ${STAGE_AS_${file:T}} # one could achieve the same with SYMLINKS @@ -208,7 +212,20 @@ stage_as.$s: .dirdep .endfor .endif -# if we have to do any of these, do them in this order -.ORDER: stage_incs stage_libs stage_files stage_as stage_links stage_symlinks +CLEANFILES += ${STAGE_TARGETS} + +# stage_*links usually needs to follow any others. +.for t in ${STAGE_TARGETS:N*links:O:u} +.ORDER: $t stage_links +.ORDER: $t stage_symlinks +.endfor + +# make sure this exists +staging: + +# generally we want staging to wait until everything else is done +STAGING_WAIT ?= .WAIT + +all: ${STAGING_WAIT} staging .endif From e8eb6b5cd648669c59375286dbd6aa180da46115 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 8 Mar 2013 22:15:00 +0000 Subject: [PATCH 055/228] Always report elapsed time --- pkgs/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/Makefile b/pkgs/Makefile index c6b0ed2e5996..b605cae0ef39 100644 --- a/pkgs/Makefile +++ b/pkgs/Makefile @@ -131,16 +131,18 @@ dirdeps: ${_begin} .WAIT $t: dirdeps .endfor +elapsed_time= seconds=`expr ${now_utc} - ${start_utc}` + count-makefiles: .NOMETA - @echo "${TIME_STAMP} Makefiles read: total=${.MAKE.MAKEFILES:[#]} depend=${.MAKE.MAKEFILES:M*depend*:[#]} seconds=`expr ${now_utc} - ${start_utc}`" + @echo "${TIME_STAMP} Makefiles read: total=${.MAKE.MAKEFILES:[#]} depend=${.MAKE.MAKEFILES:M*depend*:[#]} ${elapsed_time}" .END: _build_finish _build_finish: .NOMETA - @echo "${TIME_STAMP} Finished ${.TARGETS}" + @echo "${TIME_STAMP} Finished ${.TARGETS} ${elapsed_time}" .ERROR: _build_failed _build_failed: .NOMETA - @echo "${TIME_STAMP} Failed ${.TARGETS}" + @echo "${TIME_STAMP} Failed ${.TARGETS} ${elapsed_time}" .endif # !empty(DIRDEPS) From 7cf3a1c6b250b3d5403c89c485b8a9ae77d2d89d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 11 Mar 2013 17:21:52 +0000 Subject: [PATCH 056/228] Updated dependencies --- bin/cat/Makefile.depend | 1 + bin/chflags/Makefile.depend | 1 + bin/chio/Makefile.depend | 1 + bin/chmod/Makefile.depend | 1 + bin/cp/Makefile.depend | 1 + bin/csh/Makefile.depend | 1 + bin/date/Makefile.depend | 1 + bin/dd/Makefile.depend | 1 + bin/df/Makefile.depend | 1 + bin/domainname/Makefile.depend | 1 + bin/echo/Makefile.depend | 1 + bin/ed/Makefile.depend | 1 + bin/expr/Makefile.depend | 1 + bin/getfacl/Makefile.depend | 1 + bin/hostname/Makefile.depend | 1 + bin/kenv/Makefile.depend | 1 + bin/kill/Makefile.depend | 1 + bin/ln/Makefile.depend | 1 + bin/ls/Makefile.depend | 1 + bin/mkdir/Makefile.depend | 1 + bin/mv/Makefile.depend | 1 + bin/pax/Makefile.depend | 1 + bin/pkill/Makefile.depend | 1 + bin/ps/Makefile.depend | 1 + bin/pwait/Makefile.depend | 1 + bin/pwd/Makefile.depend | 1 + bin/rcp/Makefile.depend | 1 + bin/realpath/Makefile.depend | 1 + bin/rm/Makefile.depend | 1 + bin/rmail/Makefile.depend | 1 + bin/rmdir/Makefile.depend | 1 + bin/setfacl/Makefile.depend | 1 + bin/sh/Makefile.depend | 1 + bin/sleep/Makefile.depend | 1 + bin/stty/Makefile.depend | 1 + bin/sync/Makefile.depend | 1 + bin/test/Makefile.depend | 1 + bin/uuidgen/Makefile.depend | 1 + cddl/lib/libavl/Makefile.depend | 1 + cddl/lib/libctf/Makefile.depend | 1 + cddl/lib/libdtrace/Makefile.depend | 1 + cddl/lib/libnvpair/Makefile.depend | 1 + cddl/lib/libumem/Makefile.depend | 1 + cddl/lib/libuutil/Makefile.depend | 1 + cddl/lib/libzfs/Makefile.depend | 1 + cddl/lib/libzpool/Makefile.depend | 1 + cddl/sbin/zfs/Makefile.depend | 1 + cddl/sbin/zpool/Makefile.depend | 1 + cddl/usr.bin/ctfconvert/Makefile.depend | 1 + cddl/usr.bin/ctfdump/Makefile.depend | 1 + cddl/usr.bin/ctfmerge/Makefile.depend | 1 + cddl/usr.bin/sgsmsg/Makefile.depend | 1 + cddl/usr.bin/zinject/Makefile.depend | 1 + cddl/usr.bin/zstreamdump/Makefile.depend | 1 + cddl/usr.bin/ztest/Makefile.depend | 1 + cddl/usr.sbin/dtrace/Makefile.depend | 2 ++ cddl/usr.sbin/lockstat/Makefile.depend | 2 ++ cddl/usr.sbin/zdb/Makefile.depend | 1 + cddl/usr.sbin/zhack/Makefile.depend | 1 + games/bcd/Makefile.depend | 1 + games/caesar/Makefile.depend | 1 + games/factor/Makefile.depend | 1 + games/fortune/fortune/Makefile.depend | 1 + games/fortune/strfile/Makefile.depend | 1 + games/fortune/unstr/Makefile.depend | 1 + games/grdc/Makefile.depend | 1 + games/morse/Makefile.depend | 1 + games/number/Makefile.depend | 1 + games/pom/Makefile.depend | 1 + games/ppt/Makefile.depend | 1 + games/primes/Makefile.depend | 1 + games/random/Makefile.depend | 1 + gnu/lib/libdialog/Makefile.depend | 1 + gnu/lib/libgomp/Makefile.depend | 1 + gnu/lib/libreadline/readline/Makefile.depend | 1 + gnu/lib/libregex/Makefile.depend | 1 + gnu/lib/libstdc++/Makefile.depend | 1 + gnu/lib/libsupc++/Makefile.depend | 1 + gnu/usr.bin/binutils/addr2line/Makefile.depend | 1 + gnu/usr.bin/binutils/ar/Makefile.depend | 1 + gnu/usr.bin/binutils/as/Makefile.depend | 1 + gnu/usr.bin/binutils/ld/Makefile.depend.amd64 | 1 + gnu/usr.bin/binutils/nm/Makefile.depend | 1 + gnu/usr.bin/binutils/objcopy/Makefile.depend | 1 + gnu/usr.bin/binutils/objdump/Makefile.depend | 1 + gnu/usr.bin/binutils/ranlib/Makefile.depend | 1 + gnu/usr.bin/binutils/readelf/Makefile.depend | 1 + gnu/usr.bin/binutils/size/Makefile.depend | 1 + gnu/usr.bin/binutils/strings/Makefile.depend | 1 + gnu/usr.bin/binutils/strip/Makefile.depend | 1 + gnu/usr.bin/cvs/cvs/Makefile.depend | 1 + gnu/usr.bin/dialog/Makefile.depend | 1 + gnu/usr.bin/diff3/Makefile.depend | 1 + gnu/usr.bin/gdb/gdb/Makefile.depend | 1 + gnu/usr.bin/gdb/gdbserver/Makefile.depend | 1 + gnu/usr.bin/gdb/gdbtui/Makefile.depend | 1 + gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 | 1 + gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend | 1 + gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend | 1 + gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend | 1 + gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend | 1 + gnu/usr.bin/groff/src/devices/grops/Makefile.depend | 1 + gnu/usr.bin/groff/src/devices/grotty/Makefile.depend | 1 + gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend | 1 + gnu/usr.bin/groff/src/preproc/grn/Makefile.depend | 1 + gnu/usr.bin/groff/src/preproc/html/Makefile.depend | 1 + gnu/usr.bin/groff/src/preproc/pic/Makefile.depend | 1 + gnu/usr.bin/groff/src/preproc/refer/Makefile.depend | 1 + gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend | 1 + gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend | 1 + gnu/usr.bin/groff/src/roff/groff/Makefile.depend | 1 + gnu/usr.bin/groff/src/roff/troff/Makefile.depend | 1 + gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend | 1 + gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend | 1 + gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend | 1 + gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend | 1 + gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend | 1 + gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend | 1 + gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend | 1 + gnu/usr.bin/rcs/ci/Makefile.depend | 1 + gnu/usr.bin/rcs/co/Makefile.depend | 1 + gnu/usr.bin/rcs/ident/Makefile.depend | 1 + gnu/usr.bin/rcs/merge/Makefile.depend | 1 + gnu/usr.bin/rcs/rcs/Makefile.depend | 1 + gnu/usr.bin/rcs/rcsclean/Makefile.depend | 1 + gnu/usr.bin/rcs/rcsdiff/Makefile.depend | 1 + gnu/usr.bin/rcs/rcsmerge/Makefile.depend | 1 + gnu/usr.bin/rcs/rlog/Makefile.depend | 1 + gnu/usr.bin/sdiff/Makefile.depend | 1 + gnu/usr.bin/texinfo/info/Makefile.depend | 1 + gnu/usr.bin/texinfo/infokey/Makefile.depend | 1 + gnu/usr.bin/texinfo/install-info/Makefile.depend | 1 + gnu/usr.bin/texinfo/makeinfo/Makefile.depend | 1 + gnu/usr.bin/texinfo/texindex/Makefile.depend | 1 + kerberos5/lib/libasn1/Makefile.depend | 1 + kerberos5/lib/libgssapi_krb5/Makefile.depend | 1 + kerberos5/lib/libgssapi_ntlm/Makefile.depend | 1 + kerberos5/lib/libgssapi_spnego/Makefile.depend | 1 + kerberos5/lib/libhdb/Makefile.depend | 1 + kerberos5/lib/libheimbase/Makefile.depend | 1 + kerberos5/lib/libheimntlm/Makefile.depend | 1 + kerberos5/lib/libheimsqlite/Makefile.depend | 1 + kerberos5/lib/libhx509/Makefile.depend | 1 + kerberos5/lib/libkadm5clnt/Makefile.depend | 1 + kerberos5/lib/libkadm5srv/Makefile.depend | 1 + kerberos5/lib/libkafs5/Makefile.depend | 1 + kerberos5/lib/libkdc/Makefile.depend | 1 + kerberos5/lib/libkrb5/Makefile.depend | 1 + kerberos5/lib/libroken/Makefile.depend | 1 + kerberos5/lib/libwind/Makefile.depend | 1 + kerberos5/libexec/digest-service/Makefile.depend | 1 + kerberos5/libexec/hprop/Makefile.depend | 1 + kerberos5/libexec/hpropd/Makefile.depend | 1 + kerberos5/libexec/ipropd-master/Makefile.depend | 1 + kerberos5/libexec/ipropd-slave/Makefile.depend | 1 + kerberos5/libexec/kadmind/Makefile.depend | 1 + kerberos5/libexec/kcm/Makefile.depend | 1 + kerberos5/libexec/kdc/Makefile.depend | 1 + kerberos5/libexec/kdigest/Makefile.depend | 1 + kerberos5/libexec/kfd/Makefile.depend | 1 + kerberos5/libexec/kimpersonate/Makefile.depend | 1 + kerberos5/libexec/kpasswdd/Makefile.depend | 1 + kerberos5/tools/asn1_compile/Makefile.depend | 1 + kerberos5/tools/make-roken/Makefile.depend | 1 + kerberos5/tools/slc/Makefile.depend | 1 + kerberos5/usr.bin/hxtool/Makefile.depend | 1 + kerberos5/usr.bin/kadmin/Makefile.depend | 1 + kerberos5/usr.bin/kcc/Makefile.depend | 1 + kerberos5/usr.bin/kdestroy/Makefile.depend | 1 + kerberos5/usr.bin/kf/Makefile.depend | 1 + kerberos5/usr.bin/kgetcred/Makefile.depend | 1 + kerberos5/usr.bin/kinit/Makefile.depend | 1 + kerberos5/usr.bin/kpasswd/Makefile.depend | 1 + kerberos5/usr.bin/ksu/Makefile.depend | 1 + kerberos5/usr.bin/string2key/Makefile.depend | 1 + kerberos5/usr.bin/verify_krb5_conf/Makefile.depend | 1 + kerberos5/usr.sbin/iprop-log/Makefile.depend | 1 + kerberos5/usr.sbin/kstash/Makefile.depend | 1 + kerberos5/usr.sbin/ktutil/Makefile.depend | 1 + lib/atf/libatf-c++/Makefile.depend | 1 + lib/atf/libatf-c/Makefile.depend | 1 + lib/bind/lwres/Makefile.depend | 1 + lib/libalias/libalias/Makefile.depend | 1 + lib/libalias/modules/cuseeme/Makefile.depend | 1 + lib/libalias/modules/dummy/Makefile.depend | 1 + lib/libalias/modules/ftp/Makefile.depend | 1 + lib/libalias/modules/irc/Makefile.depend | 1 + lib/libalias/modules/nbt/Makefile.depend | 1 + lib/libalias/modules/pptp/Makefile.depend | 1 + lib/libalias/modules/skinny/Makefile.depend | 1 + lib/libalias/modules/smedia/Makefile.depend | 1 + lib/libarchive/Makefile.depend | 1 + lib/libauditd/Makefile.depend | 1 + lib/libbegemot/Makefile.depend | 1 + lib/libblocksruntime/Makefile.depend | 1 + lib/libbluetooth/Makefile.depend | 1 + lib/libbsm/Makefile.depend | 1 + lib/libbsnmp/libbsnmp/Makefile.depend | 1 + lib/libbz2/Makefile.depend | 1 + lib/libc/Makefile.depend | 1 + lib/libcalendar/Makefile.depend | 1 + lib/libcam/Makefile.depend | 1 + lib/libcom_err/Makefile.depend | 1 + lib/libcrypt/Makefile.depend | 1 + lib/libdevinfo/Makefile.depend | 1 + lib/libdevstat/Makefile.depend | 1 + lib/libdwarf/Makefile.depend | 1 + lib/libedit/Makefile.depend | 1 + lib/libelf/Makefile.depend | 1 + lib/libexpat/Makefile.depend | 1 + lib/libfetch/Makefile.depend | 1 + lib/libgeom/Makefile.depend | 1 + lib/libgpib/Makefile.depend | 1 + lib/libgssapi/Makefile.depend | 1 + lib/libipsec/Makefile.depend | 1 + lib/libipx/Makefile.depend | 1 + lib/libjail/Makefile.depend | 1 + lib/libkiconv/Makefile.depend | 1 + lib/libkvm/Makefile.depend | 1 + lib/liblzma/Makefile.depend | 1 + lib/libmagic/Makefile.depend | 1 + lib/libmd/Makefile.depend | 1 + lib/libmemstat/Makefile.depend | 1 + lib/libmilter/Makefile.depend | 1 + lib/libmp/Makefile.depend | 1 + lib/libnetgraph/Makefile.depend | 1 + lib/libngatm/Makefile.depend | 1 + lib/libopie/Makefile.depend | 1 + lib/libpam/libpam/Makefile.depend | 1 + lib/libpam/modules/pam_chroot/Makefile.depend | 1 + lib/libpam/modules/pam_deny/Makefile.depend | 1 + lib/libpam/modules/pam_echo/Makefile.depend | 1 + lib/libpam/modules/pam_exec/Makefile.depend | 1 + lib/libpam/modules/pam_ftpusers/Makefile.depend | 1 + lib/libpam/modules/pam_group/Makefile.depend | 1 + lib/libpam/modules/pam_guest/Makefile.depend | 1 + lib/libpam/modules/pam_krb5/Makefile.depend | 1 + lib/libpam/modules/pam_ksu/Makefile.depend | 1 + lib/libpam/modules/pam_lastlog/Makefile.depend | 1 + lib/libpam/modules/pam_login_access/Makefile.depend | 1 + lib/libpam/modules/pam_nologin/Makefile.depend | 1 + lib/libpam/modules/pam_opie/Makefile.depend | 1 + lib/libpam/modules/pam_opieaccess/Makefile.depend | 1 + lib/libpam/modules/pam_passwdqc/Makefile.depend | 1 + lib/libpam/modules/pam_permit/Makefile.depend | 1 + lib/libpam/modules/pam_radius/Makefile.depend | 1 + lib/libpam/modules/pam_rhosts/Makefile.depend | 1 + lib/libpam/modules/pam_rootok/Makefile.depend | 1 + lib/libpam/modules/pam_securetty/Makefile.depend | 1 + lib/libpam/modules/pam_self/Makefile.depend | 1 + lib/libpam/modules/pam_ssh/Makefile.depend | 1 + lib/libpam/modules/pam_tacplus/Makefile.depend | 1 + lib/libpam/modules/pam_unix/Makefile.depend | 1 + lib/libpcap/Makefile.depend | 1 + lib/libpmc/Makefile.depend | 1 + lib/libproc/Makefile.depend | 1 + lib/libprocstat/Makefile.depend | 1 + lib/libradius/Makefile.depend | 1 + lib/librpcsec_gss/Makefile.depend | 1 + lib/librpcsvc/Makefile.depend | 1 + lib/librt/Makefile.depend | 1 + lib/librtld_db/Makefile.depend | 1 + lib/libsbuf/Makefile.depend | 1 + lib/libsdp/Makefile.depend | 1 + lib/libstdbuf/Makefile.depend | 1 + lib/libstdthreads/Makefile.depend | 1 + lib/libtacplus/Makefile.depend | 1 + lib/libthr/Makefile.depend | 1 + lib/libthread_db/Makefile.depend | 1 + lib/libufs/Makefile.depend | 1 + lib/libugidfw/Makefile.depend | 1 + lib/libulog/Makefile.depend | 1 + lib/libusb/Makefile.depend | 1 + lib/libusbhid/Makefile.depend | 1 + lib/libutil/Makefile.depend | 1 + lib/libvgl/Makefile.depend | 1 + lib/libwrap/Makefile.depend | 1 + lib/libypclnt/Makefile.depend | 1 + lib/libz/Makefile.depend | 1 + lib/msun/Makefile.depend | 1 + lib/ncurses/form/Makefile.depend | 1 + lib/ncurses/formw/Makefile.depend | 1 + lib/ncurses/menu/Makefile.depend | 1 + lib/ncurses/menuw/Makefile.depend | 1 + lib/ncurses/ncurses/Makefile.depend | 1 + lib/ncurses/ncursesw/Makefile.depend | 1 + lib/ncurses/panel/Makefile.depend | 1 + lib/ncurses/panelw/Makefile.depend | 1 + libexec/atf/atf-check/Makefile.depend | 1 + libexec/atrun/Makefile.depend | 1 + libexec/bootpd/bootpgw/Makefile.depend | 1 + libexec/bootpd/tools/bootpef/Makefile.depend | 1 + libexec/bootpd/tools/bootptest/Makefile.depend | 1 + libexec/comsat/Makefile.depend | 1 + libexec/fingerd/Makefile.depend | 1 + libexec/ftpd/Makefile.depend | 1 + libexec/getty/Makefile.depend | 1 + libexec/mail.local/Makefile.depend | 1 + libexec/mknetid/Makefile.depend | 1 + libexec/pppoed/Makefile.depend | 1 + libexec/rbootd/Makefile.depend | 1 + libexec/revnetgroup/Makefile.depend | 1 + libexec/rlogind/Makefile.depend | 1 + libexec/rpc.rquotad/Makefile.depend | 1 + libexec/rpc.rstatd/Makefile.depend | 1 + libexec/rpc.rusersd/Makefile.depend | 1 + libexec/rpc.rwalld/Makefile.depend | 1 + libexec/rpc.sprayd/Makefile.depend | 1 + libexec/rshd/Makefile.depend | 1 + libexec/smrsh/Makefile.depend | 1 + libexec/talkd/Makefile.depend | 1 + libexec/tcpd/Makefile.depend | 1 + libexec/telnetd/Makefile.depend | 1 + libexec/tftp-proxy/Makefile.depend | 1 + libexec/tftpd/Makefile.depend | 1 + libexec/ulog-helper/Makefile.depend | 1 + libexec/ypxfr/Makefile.depend | 1 + sbin/adjkerntz/Makefile.depend | 1 + sbin/atacontrol/Makefile.depend | 1 + sbin/atm/atmconfig/Makefile.depend | 1 + sbin/badsect/Makefile.depend | 1 + sbin/bsdlabel/Makefile.depend | 1 + sbin/camcontrol/Makefile.depend | 1 + sbin/ccdconfig/Makefile.depend | 1 + sbin/clri/Makefile.depend | 1 + sbin/comcontrol/Makefile.depend | 1 + sbin/conscontrol/Makefile.depend | 1 + sbin/ddb/Makefile.depend | 1 + sbin/devd/Makefile.depend | 2 ++ sbin/devfs/Makefile.depend | 1 + sbin/dhclient/Makefile.depend | 1 + sbin/dmesg/Makefile.depend | 1 + sbin/dump/Makefile.depend | 1 + sbin/dumpfs/Makefile.depend | 1 + sbin/dumpon/Makefile.depend | 1 + sbin/etherswitchcfg/Makefile.depend | 1 + sbin/fdisk/Makefile.depend | 1 + sbin/ffsinfo/Makefile.depend | 1 + sbin/fsck/Makefile.depend | 1 + sbin/fsck_ffs/Makefile.depend | 1 + sbin/fsck_msdosfs/Makefile.depend | 1 + sbin/fsdb/Makefile.depend | 1 + sbin/fsirand/Makefile.depend | 1 + sbin/gbde/Makefile.depend | 1 + sbin/geom/class/cache/Makefile.depend | 2 ++ sbin/geom/class/concat/Makefile.depend | 2 ++ sbin/geom/class/eli/Makefile.depend | 2 ++ sbin/geom/class/journal/Makefile.depend | 2 ++ sbin/geom/class/label/Makefile.depend | 2 ++ sbin/geom/class/mirror/Makefile.depend | 2 ++ sbin/geom/class/mountver/Makefile.depend | 2 ++ sbin/geom/class/multipath/Makefile.depend | 2 ++ sbin/geom/class/nop/Makefile.depend | 2 ++ sbin/geom/class/part/Makefile.depend | 2 ++ sbin/geom/class/raid/Makefile.depend | 2 ++ sbin/geom/class/raid3/Makefile.depend | 2 ++ sbin/geom/class/sched/Makefile.depend | 2 ++ sbin/geom/class/shsec/Makefile.depend | 2 ++ sbin/geom/class/stripe/Makefile.depend | 2 ++ sbin/geom/class/virstor/Makefile.depend | 2 ++ sbin/geom/core/Makefile.depend | 1 + sbin/ggate/ggatec/Makefile.depend | 1 + sbin/ggate/ggated/Makefile.depend | 1 + sbin/ggate/ggatel/Makefile.depend | 1 + sbin/growfs/Makefile.depend | 1 + sbin/gvinum/Makefile.depend | 1 + sbin/hastctl/Makefile.depend | 2 ++ sbin/hastd/Makefile.depend | 2 ++ sbin/ifconfig/Makefile.depend | 1 + sbin/init/Makefile.depend | 1 + sbin/ipf/ipf/Makefile.depend | 1 + sbin/ipf/ipfs/Makefile.depend | 1 + sbin/ipf/ipfstat/Makefile.depend | 1 + sbin/ipf/ipftest/Makefile.depend | 1 + sbin/ipf/ipmon/Makefile.depend | 1 + sbin/ipf/ipnat/Makefile.depend | 1 + sbin/ipf/ippool/Makefile.depend | 1 + sbin/ipf/ipresend/Makefile.depend | 1 + sbin/ipfw/Makefile.depend | 1 + sbin/iscontrol/Makefile.depend | 1 + sbin/kldconfig/Makefile.depend | 1 + sbin/kldload/Makefile.depend | 1 + sbin/kldstat/Makefile.depend | 1 + sbin/kldunload/Makefile.depend | 1 + sbin/ldconfig/Makefile.depend | 1 + sbin/md5/Makefile.depend | 1 + sbin/mdconfig/Makefile.depend | 1 + sbin/mdmfs/Makefile.depend | 1 + sbin/mknod/Makefile.depend | 1 + sbin/mksnap_ffs/Makefile.depend | 1 + sbin/mount/Makefile.depend | 1 + sbin/mount_cd9660/Makefile.depend | 1 + sbin/mount_fusefs/Makefile.depend | 1 + sbin/mount_msdosfs/Makefile.depend | 1 + sbin/mount_nfs/Makefile.depend | 1 + sbin/mount_nullfs/Makefile.depend | 1 + sbin/mount_udf/Makefile.depend | 1 + sbin/mount_unionfs/Makefile.depend | 1 + sbin/natd/Makefile.depend | 1 + sbin/newfs/Makefile.depend | 1 + sbin/newfs_msdos/Makefile.depend | 1 + sbin/nfsiod/Makefile.depend | 1 + sbin/nos-tun/Makefile.depend | 1 + sbin/nvmecontrol/Makefile.depend | 1 + sbin/pfctl/Makefile.depend | 1 + sbin/pflogd/Makefile.depend | 1 + sbin/ping/Makefile.depend | 1 + sbin/ping6/Makefile.depend | 1 + sbin/quotacheck/Makefile.depend | 1 + sbin/rcorder/Makefile.depend | 1 + sbin/reboot/Makefile.depend | 1 + sbin/recoverdisk/Makefile.depend | 1 + sbin/restore/Makefile.depend | 1 + sbin/route/Makefile.depend | 1 + sbin/routed/rtquery/Makefile.depend | 1 + sbin/rtsol/Makefile.depend | 1 + sbin/savecore/Makefile.depend | 1 + sbin/setkey/Makefile.depend | 2 ++ sbin/shutdown/Makefile.depend | 1 + sbin/spppcontrol/Makefile.depend | 1 + sbin/swapon/Makefile.depend | 1 + sbin/sysctl/Makefile.depend | 1 + sbin/tunefs/Makefile.depend | 1 + sbin/umount/Makefile.depend | 1 + secure/lib/libcrypto/Makefile.depend | 1 + secure/lib/libcrypto/engines/lib4758cca/Makefile.depend | 1 + secure/lib/libcrypto/engines/libaep/Makefile.depend | 1 + secure/lib/libcrypto/engines/libatalla/Makefile.depend | 1 + secure/lib/libcrypto/engines/libchil/Makefile.depend | 1 + secure/lib/libcrypto/engines/libcswift/Makefile.depend | 1 + secure/lib/libcrypto/engines/libgost/Makefile.depend | 1 + secure/lib/libcrypto/engines/libnuron/Makefile.depend | 1 + secure/lib/libcrypto/engines/libsureware/Makefile.depend | 1 + secure/lib/libcrypto/engines/libubsec/Makefile.depend | 1 + secure/lib/libssh/Makefile.depend | 1 + secure/lib/libssl/Makefile.depend | 1 + secure/libexec/sftp-server/Makefile.depend | 1 + secure/libexec/ssh-keysign/Makefile.depend | 1 + secure/libexec/ssh-pkcs11-helper/Makefile.depend | 1 + secure/usr.bin/bdes/Makefile.depend | 1 + secure/usr.bin/openssl/Makefile.depend | 1 + secure/usr.bin/scp/Makefile.depend | 1 + secure/usr.bin/sftp/Makefile.depend | 1 + secure/usr.bin/ssh-add/Makefile.depend | 1 + secure/usr.bin/ssh-agent/Makefile.depend | 1 + secure/usr.bin/ssh-keygen/Makefile.depend | 1 + secure/usr.bin/ssh-keyscan/Makefile.depend | 1 + secure/usr.bin/ssh/Makefile.depend | 1 + secure/usr.sbin/sshd/Makefile.depend | 1 + share/syscons/scrnmaps/Makefile.depend | 1 + usr.bin/apply/Makefile.depend | 1 + usr.bin/ar/Makefile.depend | 1 + usr.bin/asa/Makefile.depend | 1 + usr.bin/at/Makefile.depend | 1 + usr.bin/atf/atf-config/Makefile.depend | 1 + usr.bin/atf/atf-report/Makefile.depend | 1 + usr.bin/atf/atf-run/Makefile.depend | 1 + usr.bin/atf/atf-sh/Makefile.depend | 1 + usr.bin/atf/atf-version/Makefile.depend | 1 + usr.bin/atm/sscop/Makefile.depend | 1 + usr.bin/awk/Makefile.depend | 1 + usr.bin/banner/Makefile.depend | 1 + usr.bin/basename/Makefile.depend | 1 + usr.bin/bc/Makefile.depend | 1 + usr.bin/biff/Makefile.depend | 1 + usr.bin/bluetooth/bthost/Makefile.depend | 1 + usr.bin/bluetooth/btsockstat/Makefile.depend | 1 + usr.bin/bluetooth/rfcomm_sppd/Makefile.depend | 1 + usr.bin/bmake/Makefile.depend | 1 + usr.bin/brandelf/Makefile.depend | 1 + usr.bin/bsdiff/bsdiff/Makefile.depend | 1 + usr.bin/bsdiff/bspatch/Makefile.depend | 1 + usr.bin/bzip2/Makefile.depend | 1 + usr.bin/bzip2recover/Makefile.depend | 1 + usr.bin/c89/Makefile.depend | 1 + usr.bin/c99/Makefile.depend | 1 + usr.bin/calendar/Makefile.depend | 1 + usr.bin/cap_mkdb/Makefile.depend | 1 + usr.bin/catman/Makefile.depend | 1 + usr.bin/chat/Makefile.depend | 1 + usr.bin/checknr/Makefile.depend | 1 + usr.bin/chkey/Makefile.depend | 1 + usr.bin/chpass/Makefile.depend | 1 + usr.bin/cksum/Makefile.depend | 1 + usr.bin/cmp/Makefile.depend | 1 + usr.bin/col/Makefile.depend | 1 + usr.bin/colcrt/Makefile.depend | 1 + usr.bin/colldef/Makefile.depend | 2 ++ usr.bin/colrm/Makefile.depend | 1 + usr.bin/column/Makefile.depend | 1 + usr.bin/comm/Makefile.depend | 1 + usr.bin/compile_et/Makefile.depend | 1 + usr.bin/compress/Makefile.depend | 1 + usr.bin/cpio/Makefile.depend | 1 + usr.bin/cpuset/Makefile.depend | 1 + usr.bin/csplit/Makefile.depend | 1 + usr.bin/csup/Makefile.depend | 1 + usr.bin/ctags/Makefile.depend | 1 + usr.bin/ctlstat/Makefile.depend | 1 + usr.bin/cut/Makefile.depend | 1 + usr.bin/dc/Makefile.depend | 1 + usr.bin/dig/Makefile.depend | 1 + usr.bin/dirname/Makefile.depend | 1 + usr.bin/du/Makefile.depend | 1 + usr.bin/ee/Makefile.depend | 1 + usr.bin/elf2aout/Makefile.depend | 1 + usr.bin/elfdump/Makefile.depend | 1 + usr.bin/enigma/Makefile.depend | 1 + usr.bin/env/Makefile.depend | 1 + usr.bin/expand/Makefile.depend | 1 + usr.bin/false/Makefile.depend | 1 + usr.bin/file/Makefile.depend | 1 + usr.bin/file2c/Makefile.depend | 1 + usr.bin/find/Makefile.depend | 1 + usr.bin/finger/Makefile.depend | 1 + usr.bin/fmt/Makefile.depend | 1 + usr.bin/fold/Makefile.depend | 1 + usr.bin/from/Makefile.depend | 1 + usr.bin/fstat/Makefile.depend | 1 + usr.bin/fsync/Makefile.depend | 1 + usr.bin/ftp/Makefile.depend | 1 + usr.bin/gcore/Makefile.depend | 1 + usr.bin/gencat/Makefile.depend | 1 + usr.bin/getconf/Makefile.depend | 1 + usr.bin/getent/Makefile.depend | 1 + usr.bin/getopt/Makefile.depend | 1 + usr.bin/gprof/Makefile.depend | 1 + usr.bin/grep/Makefile.depend | 1 + usr.bin/gzip/Makefile.depend | 1 + usr.bin/head/Makefile.depend | 1 + usr.bin/hexdump/Makefile.depend | 1 + usr.bin/host/Makefile.depend | 1 + usr.bin/id/Makefile.depend | 1 + usr.bin/indent/Makefile.depend | 1 + usr.bin/ipcrm/Makefile.depend | 1 + usr.bin/ipcs/Makefile.depend | 1 + usr.bin/join/Makefile.depend | 1 + usr.bin/jot/Makefile.depend | 1 + usr.bin/kdump/Makefile.depend | 1 + usr.bin/keylogin/Makefile.depend | 1 + usr.bin/keylogout/Makefile.depend | 1 + usr.bin/killall/Makefile.depend | 1 + usr.bin/ktrace/Makefile.depend | 1 + usr.bin/ktrdump/Makefile.depend | 1 + usr.bin/lam/Makefile.depend | 1 + usr.bin/last/Makefile.depend | 1 + usr.bin/lastcomm/Makefile.depend | 1 + usr.bin/ldd/Makefile.depend | 1 + usr.bin/leave/Makefile.depend | 1 + usr.bin/less/Makefile.depend | 1 + usr.bin/lessecho/Makefile.depend | 1 + usr.bin/lesskey/Makefile.depend | 1 + usr.bin/limits/Makefile.depend | 1 + usr.bin/locale/Makefile.depend | 1 + usr.bin/locate/bigram/Makefile.depend | 1 + usr.bin/locate/code/Makefile.depend | 1 + usr.bin/locate/locate/Makefile.depend | 1 + usr.bin/lock/Makefile.depend | 1 + usr.bin/lockf/Makefile.depend | 1 + usr.bin/logger/Makefile.depend | 1 + usr.bin/login/Makefile.depend | 1 + usr.bin/logins/Makefile.depend | 1 + usr.bin/logname/Makefile.depend | 1 + usr.bin/look/Makefile.depend | 1 + usr.bin/lsvfs/Makefile.depend | 1 + usr.bin/lzmainfo/Makefile.depend | 1 + usr.bin/m4/Makefile.depend | 2 ++ usr.bin/mail/Makefile.depend | 1 + usr.bin/makewhatis/Makefile.depend | 1 + usr.bin/mandoc/Makefile.depend | 1 + usr.bin/mesg/Makefile.depend | 1 + usr.bin/minigzip/Makefile.depend | 1 + usr.bin/ministat/Makefile.depend | 1 + usr.bin/mkfifo/Makefile.depend | 1 + usr.bin/mklocale/Makefile.depend | 1 + usr.bin/mkstr/Makefile.depend | 1 + usr.bin/mktemp/Makefile.depend | 1 + usr.bin/mkulzma/Makefile.depend | 1 + usr.bin/mkuzip/Makefile.depend | 1 + usr.bin/msgs/Makefile.depend | 1 + usr.bin/mt/Makefile.depend | 1 + usr.bin/nc/Makefile.depend | 1 + usr.bin/ncal/Makefile.depend | 1 + usr.bin/netstat/Makefile.depend | 1 + usr.bin/newgrp/Makefile.depend | 1 + usr.bin/newkey/Makefile.depend | 1 + usr.bin/nfsstat/Makefile.depend | 1 + usr.bin/nice/Makefile.depend | 1 + usr.bin/nl/Makefile.depend | 1 + usr.bin/nohup/Makefile.depend | 1 + usr.bin/nslookup/Makefile.depend | 1 + usr.bin/nsupdate/Makefile.depend | 1 + usr.bin/opieinfo/Makefile.depend | 1 + usr.bin/opiekey/Makefile.depend | 1 + usr.bin/opiepasswd/Makefile.depend | 1 + usr.bin/passwd/Makefile.depend | 1 + usr.bin/paste/Makefile.depend | 1 + usr.bin/pathchk/Makefile.depend | 1 + usr.bin/perror/Makefile.depend | 1 + usr.bin/pr/Makefile.depend | 1 + usr.bin/printenv/Makefile.depend | 1 + usr.bin/printf/Makefile.depend | 1 + usr.bin/procstat/Makefile.depend | 1 + usr.bin/quota/Makefile.depend | 1 + usr.bin/rctl/Makefile.depend | 1 + usr.bin/renice/Makefile.depend | 1 + usr.bin/rev/Makefile.depend | 1 + usr.bin/revoke/Makefile.depend | 1 + usr.bin/rlogin/Makefile.depend | 1 + usr.bin/rpcgen/Makefile.depend | 1 + usr.bin/rpcinfo/Makefile.depend | 1 + usr.bin/rs/Makefile.depend | 1 + usr.bin/rsh/Makefile.depend | 1 + usr.bin/rup/Makefile.depend | 1 + usr.bin/ruptime/Makefile.depend | 1 + usr.bin/rusers/Makefile.depend | 1 + usr.bin/rwall/Makefile.depend | 1 + usr.bin/rwho/Makefile.depend | 1 + usr.bin/script/Makefile.depend | 1 + usr.bin/sed/Makefile.depend | 1 + usr.bin/seq/Makefile.depend | 1 + usr.bin/showmount/Makefile.depend | 1 + usr.bin/sockstat/Makefile.depend | 1 + usr.bin/sort/Makefile.depend | 1 + usr.bin/split/Makefile.depend | 1 + usr.bin/stat/Makefile.depend | 1 + usr.bin/stdbuf/Makefile.depend | 1 + usr.bin/su/Makefile.depend | 1 + usr.bin/systat/Makefile.depend | 1 + usr.bin/tabs/Makefile.depend | 1 + usr.bin/tail/Makefile.depend | 1 + usr.bin/talk/Makefile.depend | 1 + usr.bin/tar/Makefile.depend | 1 + usr.bin/tcopy/Makefile.depend | 1 + usr.bin/tee/Makefile.depend | 1 + usr.bin/telnet/Makefile.depend | 1 + usr.bin/tftp/Makefile.depend | 1 + usr.bin/time/Makefile.depend | 1 + usr.bin/tip/tip/Makefile.depend | 1 + usr.bin/top/Makefile.depend | 1 + usr.bin/touch/Makefile.depend | 1 + usr.bin/tput/Makefile.depend | 1 + usr.bin/tr/Makefile.depend | 1 + usr.bin/true/Makefile.depend | 1 + usr.bin/truncate/Makefile.depend | 1 + usr.bin/truss/Makefile.depend.amd64 | 1 + usr.bin/tset/Makefile.depend | 1 + usr.bin/tsort/Makefile.depend | 1 + usr.bin/tty/Makefile.depend | 1 + usr.bin/ul/Makefile.depend | 1 + usr.bin/uname/Makefile.depend | 1 + usr.bin/unexpand/Makefile.depend | 1 + usr.bin/unifdef/Makefile.depend | 1 + usr.bin/uniq/Makefile.depend | 1 + usr.bin/units/Makefile.depend | 1 + usr.bin/unvis/Makefile.depend | 1 + usr.bin/unzip/Makefile.depend | 1 + usr.bin/usbhidaction/Makefile.depend | 1 + usr.bin/usbhidctl/Makefile.depend | 1 + usr.bin/users/Makefile.depend | 1 + usr.bin/uudecode/Makefile.depend | 1 + usr.bin/uuencode/Makefile.depend | 1 + usr.bin/vacation/Makefile.depend | 1 + usr.bin/vgrind/Makefile.depend | 1 + usr.bin/vi/Makefile.depend | 1 + usr.bin/vis/Makefile.depend | 1 + usr.bin/vmstat/Makefile.depend | 1 + usr.bin/w/Makefile.depend | 1 + usr.bin/wall/Makefile.depend | 1 + usr.bin/wc/Makefile.depend | 1 + usr.bin/what/Makefile.depend | 1 + usr.bin/whereis/Makefile.depend | 1 + usr.bin/which/Makefile.depend | 1 + usr.bin/who/Makefile.depend | 1 + usr.bin/whois/Makefile.depend | 1 + usr.bin/write/Makefile.depend | 1 + usr.bin/xargs/Makefile.depend | 1 + usr.bin/xinstall/Makefile.depend | 1 + usr.bin/xlint/lint1/Makefile.depend | 2 ++ usr.bin/xlint/lint2/Makefile.depend | 1 + usr.bin/xlint/xlint/Makefile.depend | 1 + usr.bin/xstr/Makefile.depend | 1 + usr.bin/xz/Makefile.depend | 1 + usr.bin/xzdec/Makefile.depend | 1 + usr.bin/yacc/Makefile.depend | 1 + usr.bin/yes/Makefile.depend | 1 + usr.bin/ypcat/Makefile.depend | 1 + usr.bin/ypmatch/Makefile.depend | 1 + usr.bin/ypwhich/Makefile.depend | 1 + usr.sbin/IPXrouted/Makefile.depend | 1 + usr.sbin/ac/Makefile.depend | 1 + usr.sbin/accton/Makefile.depend | 1 + usr.sbin/acpi/acpiconf/Makefile.depend | 1 + usr.sbin/acpi/acpidb/Makefile.depend | 1 + usr.sbin/acpi/acpidump/Makefile.depend | 1 + usr.sbin/acpi/iasl/Makefile.depend | 1 + usr.sbin/amd/amd/Makefile.depend | 1 + usr.sbin/amd/amq/Makefile.depend | 1 + usr.sbin/amd/fixmount/Makefile.depend | 1 + usr.sbin/amd/fsinfo/Makefile.depend | 1 + usr.sbin/amd/hlfsd/Makefile.depend | 1 + usr.sbin/amd/mk-amd-map/Makefile.depend | 1 + usr.sbin/amd/pawd/Makefile.depend | 1 + usr.sbin/amd/wire-test/Makefile.depend | 1 + usr.sbin/ancontrol/Makefile.depend | 1 + usr.sbin/apm/Makefile.depend | 1 + usr.sbin/arp/Makefile.depend | 1 + usr.sbin/arpaname/Makefile.depend | 1 + usr.sbin/asf/Makefile.depend | 1 + usr.sbin/audit/Makefile.depend | 1 + usr.sbin/auditd/Makefile.depend | 1 + usr.sbin/auditreduce/Makefile.depend | 1 + usr.sbin/authpf/Makefile.depend | 1 + usr.sbin/bluetooth/ath3kfw/Makefile.depend | 1 + usr.sbin/bluetooth/bcmfw/Makefile.depend | 1 + usr.sbin/bluetooth/bt3cfw/Makefile.depend | 1 + usr.sbin/bluetooth/bthidcontrol/Makefile.depend | 1 + usr.sbin/bluetooth/bthidd/Makefile.depend | 1 + usr.sbin/bluetooth/btpand/Makefile.depend | 1 + usr.sbin/bluetooth/hccontrol/Makefile.depend | 1 + usr.sbin/bluetooth/hcsecd/Makefile.depend | 1 + usr.sbin/bluetooth/hcseriald/Makefile.depend | 1 + usr.sbin/bluetooth/l2control/Makefile.depend | 1 + usr.sbin/bluetooth/l2ping/Makefile.depend | 1 + usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend | 1 + usr.sbin/bluetooth/sdpcontrol/Makefile.depend | 1 + usr.sbin/bluetooth/sdpd/Makefile.depend | 1 + usr.sbin/boot0cfg/Makefile.depend | 1 + usr.sbin/bootparamd/bootparamd/Makefile.depend | 1 + usr.sbin/bootparamd/callbootd/Makefile.depend | 2 ++ usr.sbin/bsdinstall/distextract/Makefile.depend | 1 + usr.sbin/bsdinstall/distfetch/Makefile.depend | 1 + usr.sbin/bsdinstall/partedit/Makefile.depend | 1 + usr.sbin/bsnmpd/bsnmpd/Makefile.depend | 1 + usr.sbin/bsnmpd/gensnmptree/Makefile.depend | 1 + usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend | 1 + usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend | 1 + usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend | 1 + usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend | 1 + usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend | 1 + usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend | 1 + usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend | 1 + usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend | 1 + usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend | 1 + usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend | 1 + usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend | 1 + usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend | 1 + usr.sbin/btxld/Makefile.depend | 1 + usr.sbin/burncd/Makefile.depend | 1 + usr.sbin/cdcontrol/Makefile.depend | 1 + usr.sbin/chkgrp/Makefile.depend | 1 + usr.sbin/chown/Makefile.depend | 1 + usr.sbin/chroot/Makefile.depend | 1 + usr.sbin/ckdist/Makefile.depend | 1 + usr.sbin/clear_locks/Makefile.depend | 1 + usr.sbin/config/Makefile.depend | 2 ++ usr.sbin/cpucontrol/Makefile.depend | 1 + usr.sbin/cron/cron/Makefile.depend | 1 + usr.sbin/cron/crontab/Makefile.depend | 1 + usr.sbin/crunch/crunchgen/Makefile.depend | 1 + usr.sbin/crunch/crunchide/Makefile.depend | 1 + usr.sbin/ctladm/Makefile.depend | 1 + usr.sbin/ctm/ctm/Makefile.depend | 1 + usr.sbin/ctm/ctm_dequeue/Makefile.depend | 1 + usr.sbin/ctm/ctm_rmail/Makefile.depend | 1 + usr.sbin/ctm/ctm_smail/Makefile.depend | 1 + usr.sbin/daemon/Makefile.depend | 1 + usr.sbin/dconschat/Makefile.depend | 1 + usr.sbin/ddns-confgen/Makefile.depend | 1 + usr.sbin/devinfo/Makefile.depend | 1 + usr.sbin/digictl/Makefile.depend | 1 + usr.sbin/diskinfo/Makefile.depend | 1 + usr.sbin/dnssec-dsfromkey/Makefile.depend | 1 + usr.sbin/dnssec-keyfromlabel/Makefile.depend | 1 + usr.sbin/dnssec-keygen/Makefile.depend | 1 + usr.sbin/dnssec-revoke/Makefile.depend | 1 + usr.sbin/dnssec-settime/Makefile.depend | 1 + usr.sbin/dnssec-signzone/Makefile.depend | 1 + usr.sbin/dumpcis/Makefile.depend | 1 + usr.sbin/editmap/Makefile.depend | 1 + usr.sbin/edquota/Makefile.depend | 1 + usr.sbin/extattr/Makefile.depend | 1 + usr.sbin/extattrctl/Makefile.depend | 1 + usr.sbin/faithd/Makefile.depend | 1 + usr.sbin/fdcontrol/Makefile.depend | 1 + usr.sbin/fdformat/Makefile.depend | 1 + usr.sbin/fdread/Makefile.depend | 1 + usr.sbin/fdwrite/Makefile.depend | 1 + usr.sbin/fifolog/fifolog_create/Makefile.depend | 1 + usr.sbin/fifolog/fifolog_reader/Makefile.depend | 1 + usr.sbin/fifolog/fifolog_writer/Makefile.depend | 1 + usr.sbin/flowctl/Makefile.depend | 1 + usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend | 1 + usr.sbin/fwcontrol/Makefile.depend | 1 + usr.sbin/genrandom/Makefile.depend | 1 + usr.sbin/getfmac/Makefile.depend | 1 + usr.sbin/getpmac/Makefile.depend | 1 + usr.sbin/gpioctl/Makefile.depend | 1 + usr.sbin/gssd/Makefile.depend | 1 + usr.sbin/gstat/Makefile.depend | 1 + usr.sbin/i2c/Makefile.depend | 1 + usr.sbin/ifmcstat/Makefile.depend | 1 + usr.sbin/inetd/Makefile.depend | 1 + usr.sbin/iostat/Makefile.depend | 1 + usr.sbin/ip6addrctl/Makefile.depend | 1 + usr.sbin/ipfwpcap/Makefile.depend | 1 + usr.sbin/isc-hmac-fixup/Makefile.depend | 1 + usr.sbin/isfctl/Makefile.depend | 1 + usr.sbin/jail/Makefile.depend | 2 ++ usr.sbin/jexec/Makefile.depend | 1 + usr.sbin/jls/Makefile.depend | 1 + usr.sbin/kbdcontrol/Makefile.depend | 2 ++ usr.sbin/kbdmap/Makefile.depend | 1 + usr.sbin/keyserv/Makefile.depend | 1 + usr.sbin/kgmon/Makefile.depend | 1 + usr.sbin/kldxref/Makefile.depend | 1 + usr.sbin/lastlogin/Makefile.depend | 1 + usr.sbin/lmcconfig/Makefile.depend | 1 + usr.sbin/lpr/chkprintcap/Makefile.depend | 1 + usr.sbin/lpr/filters.ru/koi2855/Makefile.depend | 1 + usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend | 1 + usr.sbin/lpr/filters/Makefile.depend | 1 + usr.sbin/lpr/lpc/Makefile.depend | 1 + usr.sbin/lpr/lpd/Makefile.depend | 1 + usr.sbin/lpr/lpq/Makefile.depend | 1 + usr.sbin/lpr/lpr/Makefile.depend | 1 + usr.sbin/lpr/lprm/Makefile.depend | 1 + usr.sbin/lpr/lptest/Makefile.depend | 1 + usr.sbin/lpr/pac/Makefile.depend | 1 + usr.sbin/lptcontrol/Makefile.depend | 1 + usr.sbin/mailstats/Makefile.depend | 1 + usr.sbin/mailwrapper/Makefile.depend | 1 + usr.sbin/makefs/Makefile.depend | 1 + usr.sbin/makemap/Makefile.depend | 1 + usr.sbin/memcontrol/Makefile.depend | 1 + usr.sbin/mfiutil/Makefile.depend | 1 + usr.sbin/mixer/Makefile.depend | 1 + usr.sbin/mld6query/Makefile.depend | 1 + usr.sbin/mlxcontrol/Makefile.depend | 1 + usr.sbin/mountd/Makefile.depend | 1 + usr.sbin/moused/Makefile.depend | 1 + usr.sbin/mptable/Makefile.depend | 1 + usr.sbin/mptutil/Makefile.depend | 1 + usr.sbin/mtest/Makefile.depend | 1 + usr.sbin/mtree/Makefile.depend | 1 + usr.sbin/named-checkconf/Makefile.depend | 1 + usr.sbin/named-checkzone/Makefile.depend | 1 + usr.sbin/named-journalprint/Makefile.depend | 1 + usr.sbin/named/Makefile.depend | 1 + usr.sbin/ndiscvt/Makefile.depend | 2 ++ usr.sbin/ndp/Makefile.depend | 1 + usr.sbin/newsyslog/Makefile.depend | 1 + usr.sbin/nfscbd/Makefile.depend | 1 + usr.sbin/nfsd/Makefile.depend | 1 + usr.sbin/nfsdumpstate/Makefile.depend | 1 + usr.sbin/nfsrevoke/Makefile.depend | 1 + usr.sbin/nfsuserd/Makefile.depend | 1 + usr.sbin/ngctl/Makefile.depend | 1 + usr.sbin/nghook/Makefile.depend | 1 + usr.sbin/nologin/Makefile.depend | 1 + usr.sbin/nscd/Makefile.depend | 1 + usr.sbin/nsec3hash/Makefile.depend | 1 + usr.sbin/ntp/ntp-keygen/Makefile.depend | 1 + usr.sbin/ntp/ntpd/Makefile.depend | 1 + usr.sbin/ntp/ntpdate/Makefile.depend | 1 + usr.sbin/ntp/ntpdc/Makefile.depend | 1 + usr.sbin/ntp/ntpq/Makefile.depend | 1 + usr.sbin/ntp/ntptime/Makefile.depend | 1 + usr.sbin/ntp/sntp/Makefile.depend | 1 + usr.sbin/pciconf/Makefile.depend | 1 + usr.sbin/pkg/Makefile.depend | 1 + usr.sbin/pkg_install/add/Makefile.depend | 1 + usr.sbin/pkg_install/create/Makefile.depend | 1 + usr.sbin/pkg_install/delete/Makefile.depend | 1 + usr.sbin/pkg_install/info/Makefile.depend | 1 + usr.sbin/pkg_install/updating/Makefile.depend | 1 + usr.sbin/pkg_install/version/Makefile.depend | 1 + usr.sbin/pmcannotate/Makefile.depend | 1 + usr.sbin/pmccontrol/Makefile.depend | 1 + usr.sbin/pmcstat/Makefile.depend | 1 + usr.sbin/portsnap/make_index/Makefile.depend | 1 + usr.sbin/portsnap/phttpget/Makefile.depend | 1 + usr.sbin/powerd/Makefile.depend | 1 + usr.sbin/ppp/Makefile.depend | 1 + usr.sbin/pppctl/Makefile.depend | 1 + usr.sbin/praliases/Makefile.depend | 1 + usr.sbin/praudit/Makefile.depend | 1 + usr.sbin/procctl/Makefile.depend | 1 + usr.sbin/pstat/Makefile.depend | 1 + usr.sbin/pw/Makefile.depend | 1 + usr.sbin/pwd_mkdb/Makefile.depend | 1 + usr.sbin/quot/Makefile.depend | 1 + usr.sbin/quotaon/Makefile.depend | 1 + usr.sbin/rarpd/Makefile.depend | 1 + usr.sbin/repquota/Makefile.depend | 1 + usr.sbin/rip6query/Makefile.depend | 1 + usr.sbin/rmt/Makefile.depend | 1 + usr.sbin/rndc-confgen/Makefile.depend | 1 + usr.sbin/rndc/Makefile.depend | 1 + usr.sbin/route6d/Makefile.depend | 1 + usr.sbin/rpc.lockd/Makefile.depend | 1 + usr.sbin/rpc.statd/Makefile.depend | 2 ++ usr.sbin/rpc.umntall/Makefile.depend | 1 + usr.sbin/rpc.yppasswdd/Makefile.depend | 1 + usr.sbin/rpc.ypupdated/Makefile.depend | 1 + usr.sbin/rpc.ypxfrd/Makefile.depend | 1 + usr.sbin/rpcbind/Makefile.depend | 1 + usr.sbin/rrenumd/Makefile.depend | 2 ++ usr.sbin/rtadvctl/Makefile.depend | 1 + usr.sbin/rtadvd/Makefile.depend | 1 + usr.sbin/rtprio/Makefile.depend | 1 + usr.sbin/rtsold/Makefile.depend | 1 + usr.sbin/rwhod/Makefile.depend | 1 + usr.sbin/sa/Makefile.depend | 1 + usr.sbin/sendmail/Makefile.depend | 1 + usr.sbin/services_mkdb/Makefile.depend | 1 + usr.sbin/setfib/Makefile.depend | 1 + usr.sbin/setfmac/Makefile.depend | 1 + usr.sbin/setpmac/Makefile.depend | 1 + usr.sbin/sicontrol/Makefile.depend | 1 + usr.sbin/smbmsg/Makefile.depend | 1 + usr.sbin/snapinfo/Makefile.depend | 1 + usr.sbin/spray/Makefile.depend | 1 + usr.sbin/syslogd/Makefile.depend | 1 + usr.sbin/tcpdchk/Makefile.depend | 1 + usr.sbin/tcpdmatch/Makefile.depend | 1 + usr.sbin/tcpdrop/Makefile.depend | 1 + usr.sbin/tcpdump/tcpdump/Makefile.depend | 2 ++ usr.sbin/timed/timed/Makefile.depend | 1 + usr.sbin/timed/timedc/Makefile.depend | 1 + usr.sbin/traceroute/Makefile.depend | 1 + usr.sbin/traceroute6/Makefile.depend | 1 + usr.sbin/trpt/Makefile.depend | 1 + usr.sbin/tzsetup/Makefile.depend | 1 + usr.sbin/uathload/Makefile.depend | 1 + usr.sbin/ugidfw/Makefile.depend | 1 + usr.sbin/uhsoctl/Makefile.depend | 1 + usr.sbin/usbconfig/Makefile.depend | 1 + usr.sbin/usbdump/Makefile.depend | 1 + usr.sbin/utx/Makefile.depend | 1 + usr.sbin/vidcontrol/Makefile.depend | 1 + usr.sbin/vipw/Makefile.depend | 1 + usr.sbin/wake/Makefile.depend | 1 + usr.sbin/watch/Makefile.depend | 1 + usr.sbin/watchdogd/Makefile.depend | 1 + usr.sbin/wlandebug/Makefile.depend | 1 + usr.sbin/wpa/hostapd/Makefile.depend | 1 + usr.sbin/wpa/hostapd_cli/Makefile.depend | 1 + usr.sbin/wpa/ndis_events/Makefile.depend | 1 + usr.sbin/wpa/wpa_cli/Makefile.depend | 1 + usr.sbin/wpa/wpa_passphrase/Makefile.depend | 1 + usr.sbin/wpa/wpa_supplicant/Makefile.depend | 1 + usr.sbin/yp_mkdb/Makefile.depend | 1 + usr.sbin/ypbind/Makefile.depend | 1 + usr.sbin/yppoll/Makefile.depend | 1 + usr.sbin/yppush/Makefile.depend | 1 + usr.sbin/ypserv/Makefile.depend | 1 + usr.sbin/ypset/Makefile.depend | 1 + usr.sbin/zic/zdump/Makefile.depend | 1 + usr.sbin/zic/zic/Makefile.depend | 1 + 960 files changed, 993 insertions(+) diff --git a/bin/cat/Makefile.depend b/bin/cat/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/cat/Makefile.depend +++ b/bin/cat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/chflags/Makefile.depend b/bin/chflags/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/chflags/Makefile.depend +++ b/bin/chflags/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/chio/Makefile.depend b/bin/chio/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/chio/Makefile.depend +++ b/bin/chio/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/chmod/Makefile.depend b/bin/chmod/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/chmod/Makefile.depend +++ b/bin/chmod/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/cp/Makefile.depend b/bin/cp/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/cp/Makefile.depend +++ b/bin/cp/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/csh/Makefile.depend b/bin/csh/Makefile.depend index 91ebfaabe022..84ceca8c32fb 100644 --- a/bin/csh/Makefile.depend +++ b/bin/csh/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/ncurses/ncurses \ diff --git a/bin/date/Makefile.depend b/bin/date/Makefile.depend index 9bd5a4552168..591ea4c790a0 100644 --- a/bin/date/Makefile.depend +++ b/bin/date/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/dd/Makefile.depend b/bin/dd/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/dd/Makefile.depend +++ b/bin/dd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/df/Makefile.depend b/bin/df/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/bin/df/Makefile.depend +++ b/bin/df/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/bin/domainname/Makefile.depend b/bin/domainname/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/domainname/Makefile.depend +++ b/bin/domainname/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/echo/Makefile.depend b/bin/echo/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/echo/Makefile.depend +++ b/bin/echo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/ed/Makefile.depend b/bin/ed/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/bin/ed/Makefile.depend +++ b/bin/ed/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/bin/expr/Makefile.depend b/bin/expr/Makefile.depend index 29e35ba5b054..ce3b6ab0d1b3 100644 --- a/bin/expr/Makefile.depend +++ b/bin/expr/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/getfacl/Makefile.depend b/bin/getfacl/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/getfacl/Makefile.depend +++ b/bin/getfacl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/hostname/Makefile.depend b/bin/hostname/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/hostname/Makefile.depend +++ b/bin/hostname/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/kenv/Makefile.depend b/bin/kenv/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/kenv/Makefile.depend +++ b/bin/kenv/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/kill/Makefile.depend b/bin/kill/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/kill/Makefile.depend +++ b/bin/kill/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/ln/Makefile.depend b/bin/ln/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/ln/Makefile.depend +++ b/bin/ln/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/ls/Makefile.depend b/bin/ls/Makefile.depend index d12e98988950..ad3c317dabfe 100644 --- a/bin/ls/Makefile.depend +++ b/bin/ls/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/bin/mkdir/Makefile.depend b/bin/mkdir/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/mkdir/Makefile.depend +++ b/bin/mkdir/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/mv/Makefile.depend b/bin/mv/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/mv/Makefile.depend +++ b/bin/mv/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/pax/Makefile.depend b/bin/pax/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/pax/Makefile.depend +++ b/bin/pax/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/pkill/Makefile.depend b/bin/pkill/Makefile.depend index 70d796e23bfc..d65cbb5d7110 100644 --- a/bin/pkill/Makefile.depend +++ b/bin/pkill/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/bin/ps/Makefile.depend b/bin/ps/Makefile.depend index da6984549049..d0dee83e31ae 100644 --- a/bin/ps/Makefile.depend +++ b/bin/ps/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ lib/msun \ diff --git a/bin/pwait/Makefile.depend b/bin/pwait/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/pwait/Makefile.depend +++ b/bin/pwait/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/pwd/Makefile.depend b/bin/pwd/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/pwd/Makefile.depend +++ b/bin/pwd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/rcp/Makefile.depend b/bin/rcp/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/rcp/Makefile.depend +++ b/bin/rcp/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/realpath/Makefile.depend b/bin/realpath/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/bin/realpath/Makefile.depend +++ b/bin/realpath/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/rm/Makefile.depend b/bin/rm/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/rm/Makefile.depend +++ b/bin/rm/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/rmail/Makefile.depend b/bin/rmail/Makefile.depend index 24e10b1ab55c..5d4653b26ee4 100644 --- a/bin/rmail/Makefile.depend +++ b/bin/rmail/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsm \ lib/libutil \ diff --git a/bin/rmdir/Makefile.depend b/bin/rmdir/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/rmdir/Makefile.depend +++ b/bin/rmdir/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/setfacl/Makefile.depend b/bin/setfacl/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/setfacl/Makefile.depend +++ b/bin/setfacl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/sh/Makefile.depend b/bin/sh/Makefile.depend index d14e92210d57..7841ce0b8d05 100644 --- a/bin/sh/Makefile.depend +++ b/bin/sh/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/bin/sleep/Makefile.depend b/bin/sleep/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/sleep/Makefile.depend +++ b/bin/sleep/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/stty/Makefile.depend b/bin/stty/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/stty/Makefile.depend +++ b/bin/stty/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/sync/Makefile.depend b/bin/sync/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/bin/sync/Makefile.depend +++ b/bin/sync/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/test/Makefile.depend b/bin/test/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/bin/test/Makefile.depend +++ b/bin/test/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/bin/uuidgen/Makefile.depend b/bin/uuidgen/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/bin/uuidgen/Makefile.depend +++ b/bin/uuidgen/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/cddl/lib/libavl/Makefile.depend b/cddl/lib/libavl/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/cddl/lib/libavl/Makefile.depend +++ b/cddl/lib/libavl/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/cddl/lib/libctf/Makefile.depend b/cddl/lib/libctf/Makefile.depend index bc9d5c895f1e..7cebd167f56b 100644 --- a/cddl/lib/libctf/Makefile.depend +++ b/cddl/lib/libctf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ lib/libz \ diff --git a/cddl/lib/libdtrace/Makefile.depend b/cddl/lib/libdtrace/Makefile.depend index d05493ae9e65..3ecdaf9d9f7e 100644 --- a/cddl/lib/libdtrace/Makefile.depend +++ b/cddl/lib/libdtrace/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ lib/libproc \ lib/librtld_db \ diff --git a/cddl/lib/libnvpair/Makefile.depend b/cddl/lib/libnvpair/Makefile.depend index b6a920e8f5a7..c0e2c4ad739d 100644 --- a/cddl/lib/libnvpair/Makefile.depend +++ b/cddl/lib/libnvpair/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/cddl/lib/libumem/Makefile.depend b/cddl/lib/libumem/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/cddl/lib/libumem/Makefile.depend +++ b/cddl/lib/libumem/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/cddl/lib/libuutil/Makefile.depend b/cddl/lib/libuutil/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/cddl/lib/libuutil/Makefile.depend +++ b/cddl/lib/libuutil/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/cddl/lib/libzfs/Makefile.depend b/cddl/lib/libzfs/Makefile.depend index bc712676313e..6f4784a07bed 100644 --- a/cddl/lib/libzfs/Makefile.depend +++ b/cddl/lib/libzfs/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ lib/libthr \ diff --git a/cddl/lib/libzpool/Makefile.depend b/cddl/lib/libzpool/Makefile.depend index fb831e2ff591..f7e66f1c71d7 100644 --- a/cddl/lib/libzpool/Makefile.depend +++ b/cddl/lib/libzpool/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/libthr \ lib/libz \ diff --git a/cddl/sbin/zfs/Makefile.depend b/cddl/sbin/zfs/Makefile.depend index 2048b45b56af..070b0ebc271e 100644 --- a/cddl/sbin/zfs/Makefile.depend +++ b/cddl/sbin/zfs/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libjail \ lib/libutil \ diff --git a/cddl/sbin/zpool/Makefile.depend b/cddl/sbin/zpool/Makefile.depend index fe80c62e4e10..5e542ca7c83f 100644 --- a/cddl/sbin/zpool/Makefile.depend +++ b/cddl/sbin/zpool/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libutil \ lib/msun \ diff --git a/cddl/usr.bin/ctfconvert/Makefile.depend b/cddl/usr.bin/ctfconvert/Makefile.depend index cda806b0f4c2..0dfef4dcd518 100644 --- a/cddl/usr.bin/ctfconvert/Makefile.depend +++ b/cddl/usr.bin/ctfconvert/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libdwarf \ lib/libelf \ lib/libthr \ diff --git a/cddl/usr.bin/ctfdump/Makefile.depend b/cddl/usr.bin/ctfdump/Makefile.depend index a28015a975e0..ada171346726 100644 --- a/cddl/usr.bin/ctfdump/Makefile.depend +++ b/cddl/usr.bin/ctfdump/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ lib/libthr \ lib/libz \ diff --git a/cddl/usr.bin/ctfmerge/Makefile.depend b/cddl/usr.bin/ctfmerge/Makefile.depend index cda806b0f4c2..0dfef4dcd518 100644 --- a/cddl/usr.bin/ctfmerge/Makefile.depend +++ b/cddl/usr.bin/ctfmerge/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libdwarf \ lib/libelf \ lib/libthr \ diff --git a/cddl/usr.bin/sgsmsg/Makefile.depend b/cddl/usr.bin/sgsmsg/Makefile.depend index 9d3c6f56836f..df2384b66d87 100644 --- a/cddl/usr.bin/sgsmsg/Makefile.depend +++ b/cddl/usr.bin/sgsmsg/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ diff --git a/cddl/usr.bin/zinject/Makefile.depend b/cddl/usr.bin/zinject/Makefile.depend index b096c839c304..53dba7321cf7 100644 --- a/cddl/usr.bin/zinject/Makefile.depend +++ b/cddl/usr.bin/zinject/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/msun \ diff --git a/cddl/usr.bin/zstreamdump/Makefile.depend b/cddl/usr.bin/zstreamdump/Makefile.depend index 1f41f8b99f7a..9aedb23c6ed1 100644 --- a/cddl/usr.bin/zstreamdump/Makefile.depend +++ b/cddl/usr.bin/zstreamdump/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ lib/libz \ lib/msun \ diff --git a/cddl/usr.bin/ztest/Makefile.depend b/cddl/usr.bin/ztest/Makefile.depend index 302b03ef0ad8..d12b9e10fc9e 100644 --- a/cddl/usr.bin/ztest/Makefile.depend +++ b/cddl/usr.bin/ztest/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libthr \ lib/msun \ diff --git a/cddl/usr.sbin/dtrace/Makefile.depend b/cddl/usr.sbin/dtrace/Makefile.depend index 7dee666bed93..e5f3c82c5133 100644 --- a/cddl/usr.sbin/dtrace/Makefile.depend +++ b/cddl/usr.sbin/dtrace/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ lib/libproc \ lib/librtld_db \ @@ -17,6 +18,7 @@ DIRDEPS = \ lib/libutil \ lib/liby \ lib/libz \ + usr.bin/lex/lib \ .include diff --git a/cddl/usr.sbin/lockstat/Makefile.depend b/cddl/usr.sbin/lockstat/Makefile.depend index d93614f3705d..e5e0670ecbf5 100644 --- a/cddl/usr.sbin/lockstat/Makefile.depend +++ b/cddl/usr.sbin/lockstat/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ lib/libproc \ lib/librt \ @@ -18,6 +19,7 @@ DIRDEPS = \ lib/libutil \ lib/liby \ lib/libz \ + usr.bin/lex/lib \ .include diff --git a/cddl/usr.sbin/zdb/Makefile.depend b/cddl/usr.sbin/zdb/Makefile.depend index 0ea2461bf0b8..bf5b42084865 100644 --- a/cddl/usr.sbin/zdb/Makefile.depend +++ b/cddl/usr.sbin/zdb/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libthr \ lib/msun \ diff --git a/cddl/usr.sbin/zhack/Makefile.depend b/cddl/usr.sbin/zhack/Makefile.depend index 0ea2461bf0b8..bf5b42084865 100644 --- a/cddl/usr.sbin/zhack/Makefile.depend +++ b/cddl/usr.sbin/zhack/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libthr \ lib/msun \ diff --git a/games/bcd/Makefile.depend b/games/bcd/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/games/bcd/Makefile.depend +++ b/games/bcd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/games/caesar/Makefile.depend b/games/caesar/Makefile.depend index b6a920e8f5a7..c0e2c4ad739d 100644 --- a/games/caesar/Makefile.depend +++ b/games/caesar/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/games/factor/Makefile.depend b/games/factor/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/games/factor/Makefile.depend +++ b/games/factor/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/games/fortune/fortune/Makefile.depend b/games/fortune/fortune/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/games/fortune/fortune/Makefile.depend +++ b/games/fortune/fortune/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/games/fortune/strfile/Makefile.depend b/games/fortune/strfile/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/games/fortune/strfile/Makefile.depend +++ b/games/fortune/strfile/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/games/fortune/unstr/Makefile.depend b/games/fortune/unstr/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/games/fortune/unstr/Makefile.depend +++ b/games/fortune/unstr/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/games/grdc/Makefile.depend b/games/grdc/Makefile.depend index a02469cc00d4..dd43fad9b357 100644 --- a/games/grdc/Makefile.depend +++ b/games/grdc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/games/morse/Makefile.depend b/games/morse/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/games/morse/Makefile.depend +++ b/games/morse/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/games/number/Makefile.depend b/games/number/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/games/number/Makefile.depend +++ b/games/number/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/games/pom/Makefile.depend b/games/pom/Makefile.depend index b6a920e8f5a7..c0e2c4ad739d 100644 --- a/games/pom/Makefile.depend +++ b/games/pom/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/games/ppt/Makefile.depend b/games/ppt/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/games/ppt/Makefile.depend +++ b/games/ppt/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/games/primes/Makefile.depend b/games/primes/Makefile.depend index b6a920e8f5a7..c0e2c4ad739d 100644 --- a/games/primes/Makefile.depend +++ b/games/primes/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/games/random/Makefile.depend b/games/random/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/games/random/Makefile.depend +++ b/games/random/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/lib/libdialog/Makefile.depend b/gnu/lib/libdialog/Makefile.depend index 8d113d38e4da..1375164ddc52 100644 --- a/gnu/lib/libdialog/Makefile.depend +++ b/gnu/lib/libdialog/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncursesw \ diff --git a/gnu/lib/libgomp/Makefile.depend b/gnu/lib/libgomp/Makefile.depend index 7ad6b2d64d0f..e9550952ded0 100644 --- a/gnu/lib/libgomp/Makefile.depend +++ b/gnu/lib/libgomp/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/lib/libreadline/readline/Makefile.depend b/gnu/lib/libreadline/readline/Makefile.depend index a02469cc00d4..dd43fad9b357 100644 --- a/gnu/lib/libreadline/readline/Makefile.depend +++ b/gnu/lib/libreadline/readline/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/gnu/lib/libregex/Makefile.depend b/gnu/lib/libregex/Makefile.depend index 49c1b2f6ae31..aeea88b2fa87 100644 --- a/gnu/lib/libregex/Makefile.depend +++ b/gnu/lib/libregex/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/lib/libstdc++/Makefile.depend b/gnu/lib/libstdc++/Makefile.depend index 9c790ca722ca..f9644cd4852c 100644 --- a/gnu/lib/libstdc++/Makefile.depend +++ b/gnu/lib/libstdc++/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/lib/libsupc++/Makefile.depend b/gnu/lib/libsupc++/Makefile.depend index 41d89be8f013..5d533a4fcd45 100644 --- a/gnu/lib/libsupc++/Makefile.depend +++ b/gnu/lib/libsupc++/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/addr2line/Makefile.depend b/gnu/usr.bin/binutils/addr2line/Makefile.depend index 857a823cfd08..e583d947164b 100644 --- a/gnu/usr.bin/binutils/addr2line/Makefile.depend +++ b/gnu/usr.bin/binutils/addr2line/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/ar/Makefile.depend b/gnu/usr.bin/binutils/ar/Makefile.depend index e3f5497145d6..968d47f2f454 100644 --- a/gnu/usr.bin/binutils/ar/Makefile.depend +++ b/gnu/usr.bin/binutils/ar/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/as/Makefile.depend b/gnu/usr.bin/binutils/as/Makefile.depend index fedc6e955393..03255c03729a 100644 --- a/gnu/usr.bin/binutils/as/Makefile.depend +++ b/gnu/usr.bin/binutils/as/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 b/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 index 5258b64f9728..d12d3720b2c3 100644 --- a/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 +++ b/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/nm/Makefile.depend b/gnu/usr.bin/binutils/nm/Makefile.depend index 857a823cfd08..e583d947164b 100644 --- a/gnu/usr.bin/binutils/nm/Makefile.depend +++ b/gnu/usr.bin/binutils/nm/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/objcopy/Makefile.depend b/gnu/usr.bin/binutils/objcopy/Makefile.depend index 857a823cfd08..e583d947164b 100644 --- a/gnu/usr.bin/binutils/objcopy/Makefile.depend +++ b/gnu/usr.bin/binutils/objcopy/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/objdump/Makefile.depend b/gnu/usr.bin/binutils/objdump/Makefile.depend index a834ea86b27c..0b25f2ae2ac4 100644 --- a/gnu/usr.bin/binutils/objdump/Makefile.depend +++ b/gnu/usr.bin/binutils/objdump/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/ranlib/Makefile.depend b/gnu/usr.bin/binutils/ranlib/Makefile.depend index e3f5497145d6..968d47f2f454 100644 --- a/gnu/usr.bin/binutils/ranlib/Makefile.depend +++ b/gnu/usr.bin/binutils/ranlib/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/readelf/Makefile.depend b/gnu/usr.bin/binutils/readelf/Makefile.depend index 857a823cfd08..e583d947164b 100644 --- a/gnu/usr.bin/binutils/readelf/Makefile.depend +++ b/gnu/usr.bin/binutils/readelf/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/size/Makefile.depend b/gnu/usr.bin/binutils/size/Makefile.depend index 857a823cfd08..e583d947164b 100644 --- a/gnu/usr.bin/binutils/size/Makefile.depend +++ b/gnu/usr.bin/binutils/size/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/strings/Makefile.depend b/gnu/usr.bin/binutils/strings/Makefile.depend index 857a823cfd08..e583d947164b 100644 --- a/gnu/usr.bin/binutils/strings/Makefile.depend +++ b/gnu/usr.bin/binutils/strings/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/binutils/strip/Makefile.depend b/gnu/usr.bin/binutils/strip/Makefile.depend index 857a823cfd08..e583d947164b 100644 --- a/gnu/usr.bin/binutils/strip/Makefile.depend +++ b/gnu/usr.bin/binutils/strip/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/cvs/cvs/Makefile.depend b/gnu/usr.bin/cvs/cvs/Makefile.depend index b851da317dcd..177e6e03e827 100644 --- a/gnu/usr.bin/cvs/cvs/Makefile.depend +++ b/gnu/usr.bin/cvs/cvs/Makefile.depend @@ -18,6 +18,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ lib/libmd \ diff --git a/gnu/usr.bin/dialog/Makefile.depend b/gnu/usr.bin/dialog/Makefile.depend index adbf705a4046..35a0b670a376 100644 --- a/gnu/usr.bin/dialog/Makefile.depend +++ b/gnu/usr.bin/dialog/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncursesw \ diff --git a/gnu/usr.bin/diff3/Makefile.depend b/gnu/usr.bin/diff3/Makefile.depend index 4e45cf609073..51d3c70a7766 100644 --- a/gnu/usr.bin/diff3/Makefile.depend +++ b/gnu/usr.bin/diff3/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/gdb/gdb/Makefile.depend b/gnu/usr.bin/gdb/gdb/Makefile.depend index 2420584f9208..c3a2af4da2f6 100644 --- a/gnu/usr.bin/gdb/gdb/Makefile.depend +++ b/gnu/usr.bin/gdb/gdb/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncurses \ diff --git a/gnu/usr.bin/gdb/gdbserver/Makefile.depend b/gnu/usr.bin/gdb/gdbserver/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/gnu/usr.bin/gdb/gdbserver/Makefile.depend +++ b/gnu/usr.bin/gdb/gdbserver/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/gdb/gdbtui/Makefile.depend b/gnu/usr.bin/gdb/gdbtui/Makefile.depend index 37a24af7672c..8ba7b928ece2 100644 --- a/gnu/usr.bin/gdb/gdbtui/Makefile.depend +++ b/gnu/usr.bin/gdb/gdbtui/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncurses \ diff --git a/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 b/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 index 16c1ab41dd20..d2192d3b2971 100644 --- a/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 +++ b/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 @@ -14,6 +14,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ lib/msun \ lib/ncurses/ncurses \ diff --git a/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend index 7d74dee1c118..a1f877240498 100644 --- a/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend index 7d74dee1c118..a1f877240498 100644 --- a/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend index 7d74dee1c118..a1f877240498 100644 --- a/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend index 7d74dee1c118..a1f877240498 100644 --- a/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grops/Makefile.depend b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend index 7d74dee1c118..a1f877240498 100644 --- a/gnu/usr.bin/groff/src/devices/grops/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend index 7d74dee1c118..a1f877240498 100644 --- a/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend index 62a2ef18f86b..6666db6dddae 100644 --- a/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend index 2f960988132b..5a1d3f9ca69b 100644 --- a/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/html/Makefile.depend b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend index 2f960988132b..5a1d3f9ca69b 100644 --- a/gnu/usr.bin/groff/src/preproc/html/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend index 07cdb43ccecb..e57b66ca5165 100644 --- a/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend index 6b27158b05d5..c42313497c77 100644 --- a/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend b/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend index 2f960988132b..5a1d3f9ca69b 100644 --- a/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend index 2f960988132b..5a1d3f9ca69b 100644 --- a/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/roff/groff/Makefile.depend b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend index 2f960988132b..5a1d3f9ca69b 100644 --- a/gnu/usr.bin/groff/src/roff/groff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/roff/troff/Makefile.depend b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend index 33acccf203c4..a7a2cfe57d2c 100644 --- a/gnu/usr.bin/groff/src/roff/troff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend index 2f960988132b..5a1d3f9ca69b 100644 --- a/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend index 2f960988132b..5a1d3f9ca69b 100644 --- a/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend index 65b677cf40db..ffeaed7041b4 100644 --- a/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend index 65b677cf40db..ffeaed7041b4 100644 --- a/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend index 65b677cf40db..ffeaed7041b4 100644 --- a/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend index 561d6e67f72e..30aa91829204 100644 --- a/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend index 2f960988132b..5a1d3f9ca69b 100644 --- a/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/rcs/ci/Makefile.depend b/gnu/usr.bin/rcs/ci/Makefile.depend index 99d8b8de5b8a..78b71f28e9a2 100644 --- a/gnu/usr.bin/rcs/ci/Makefile.depend +++ b/gnu/usr.bin/rcs/ci/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/rcs/co/Makefile.depend b/gnu/usr.bin/rcs/co/Makefile.depend index 99d8b8de5b8a..78b71f28e9a2 100644 --- a/gnu/usr.bin/rcs/co/Makefile.depend +++ b/gnu/usr.bin/rcs/co/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/rcs/ident/Makefile.depend b/gnu/usr.bin/rcs/ident/Makefile.depend index 99d8b8de5b8a..78b71f28e9a2 100644 --- a/gnu/usr.bin/rcs/ident/Makefile.depend +++ b/gnu/usr.bin/rcs/ident/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/rcs/merge/Makefile.depend b/gnu/usr.bin/rcs/merge/Makefile.depend index 99d8b8de5b8a..78b71f28e9a2 100644 --- a/gnu/usr.bin/rcs/merge/Makefile.depend +++ b/gnu/usr.bin/rcs/merge/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/rcs/rcs/Makefile.depend b/gnu/usr.bin/rcs/rcs/Makefile.depend index 99d8b8de5b8a..78b71f28e9a2 100644 --- a/gnu/usr.bin/rcs/rcs/Makefile.depend +++ b/gnu/usr.bin/rcs/rcs/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/rcs/rcsclean/Makefile.depend b/gnu/usr.bin/rcs/rcsclean/Makefile.depend index 99d8b8de5b8a..78b71f28e9a2 100644 --- a/gnu/usr.bin/rcs/rcsclean/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsclean/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/rcs/rcsdiff/Makefile.depend b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend index 99d8b8de5b8a..78b71f28e9a2 100644 --- a/gnu/usr.bin/rcs/rcsdiff/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/rcs/rcsmerge/Makefile.depend b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend index 99d8b8de5b8a..78b71f28e9a2 100644 --- a/gnu/usr.bin/rcs/rcsmerge/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/rcs/rlog/Makefile.depend b/gnu/usr.bin/rcs/rlog/Makefile.depend index 99d8b8de5b8a..78b71f28e9a2 100644 --- a/gnu/usr.bin/rcs/rlog/Makefile.depend +++ b/gnu/usr.bin/rcs/rlog/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/sdiff/Makefile.depend b/gnu/usr.bin/sdiff/Makefile.depend index 6c984e45efac..f9f14bd89125 100644 --- a/gnu/usr.bin/sdiff/Makefile.depend +++ b/gnu/usr.bin/sdiff/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/texinfo/info/Makefile.depend b/gnu/usr.bin/texinfo/info/Makefile.depend index a59305a34889..eb62ba113e3d 100644 --- a/gnu/usr.bin/texinfo/info/Makefile.depend +++ b/gnu/usr.bin/texinfo/info/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/gnu/usr.bin/texinfo/infokey/Makefile.depend b/gnu/usr.bin/texinfo/infokey/Makefile.depend index 2f9a11170c44..e3b3fdbac9fb 100644 --- a/gnu/usr.bin/texinfo/infokey/Makefile.depend +++ b/gnu/usr.bin/texinfo/infokey/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/texinfo/install-info/Makefile.depend b/gnu/usr.bin/texinfo/install-info/Makefile.depend index 2f9a11170c44..e3b3fdbac9fb 100644 --- a/gnu/usr.bin/texinfo/install-info/Makefile.depend +++ b/gnu/usr.bin/texinfo/install-info/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/texinfo/makeinfo/Makefile.depend b/gnu/usr.bin/texinfo/makeinfo/Makefile.depend index 2f9a11170c44..e3b3fdbac9fb 100644 --- a/gnu/usr.bin/texinfo/makeinfo/Makefile.depend +++ b/gnu/usr.bin/texinfo/makeinfo/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/texinfo/texindex/Makefile.depend b/gnu/usr.bin/texinfo/texindex/Makefile.depend index 2f9a11170c44..e3b3fdbac9fb 100644 --- a/gnu/usr.bin/texinfo/texindex/Makefile.depend +++ b/gnu/usr.bin/texinfo/texindex/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/kerberos5/lib/libasn1/Makefile.depend b/kerberos5/lib/libasn1/Makefile.depend index b1011ea08da5..b82dd514321d 100644 --- a/kerberos5/lib/libasn1/Makefile.depend +++ b/kerberos5/lib/libasn1/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ .include diff --git a/kerberos5/lib/libgssapi_krb5/Makefile.depend b/kerberos5/lib/libgssapi_krb5/Makefile.depend index 0cf253c61c9b..3806b8fdf44b 100644 --- a/kerberos5/lib/libgssapi_krb5/Makefile.depend +++ b/kerberos5/lib/libgssapi_krb5/Makefile.depend @@ -16,6 +16,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ secure/lib/libcrypto \ diff --git a/kerberos5/lib/libgssapi_ntlm/Makefile.depend b/kerberos5/lib/libgssapi_ntlm/Makefile.depend index a1a6c9d99375..750e245754e2 100644 --- a/kerberos5/lib/libgssapi_ntlm/Makefile.depend +++ b/kerberos5/lib/libgssapi_ntlm/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ kerberos5/lib/libroken \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgssapi \ secure/lib/libcrypto \ diff --git a/kerberos5/lib/libgssapi_spnego/Makefile.depend b/kerberos5/lib/libgssapi_spnego/Makefile.depend index 97935f5c2496..4c515bba5be2 100644 --- a/kerberos5/lib/libgssapi_spnego/Makefile.depend +++ b/kerberos5/lib/libgssapi_spnego/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ kerberos5/lib/libroken \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgssapi \ diff --git a/kerberos5/lib/libhdb/Makefile.depend b/kerberos5/lib/libhdb/Makefile.depend index 5e03bfca340d..57b04f9a36d4 100644 --- a/kerberos5/lib/libhdb/Makefile.depend +++ b/kerberos5/lib/libhdb/Makefile.depend @@ -17,6 +17,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/kerberos5/lib/libheimbase/Makefile.depend b/kerberos5/lib/libheimbase/Makefile.depend index a34439e272da..9926a3a7caa6 100644 --- a/kerberos5/lib/libheimbase/Makefile.depend +++ b/kerberos5/lib/libheimbase/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ diff --git a/kerberos5/lib/libheimntlm/Makefile.depend b/kerberos5/lib/libheimntlm/Makefile.depend index 007dc27a6548..80d5c7a4d4be 100644 --- a/kerberos5/lib/libheimntlm/Makefile.depend +++ b/kerberos5/lib/libheimntlm/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/kerberos5/lib/libheimsqlite/Makefile.depend b/kerberos5/lib/libheimsqlite/Makefile.depend index bcff5cec3cc4..d1272937d3bc 100644 --- a/kerberos5/lib/libheimsqlite/Makefile.depend +++ b/kerberos5/lib/libheimsqlite/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ diff --git a/kerberos5/lib/libhx509/Makefile.depend b/kerberos5/lib/libhx509/Makefile.depend index d3f9000b1c64..a0673df9d6d6 100644 --- a/kerberos5/lib/libhx509/Makefile.depend +++ b/kerberos5/lib/libhx509/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/kerberos5/lib/libkadm5clnt/Makefile.depend b/kerberos5/lib/libkadm5clnt/Makefile.depend index 2069e73e8075..8481de4880e0 100644 --- a/kerberos5/lib/libkadm5clnt/Makefile.depend +++ b/kerberos5/lib/libkadm5clnt/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ .include diff --git a/kerberos5/lib/libkadm5srv/Makefile.depend b/kerberos5/lib/libkadm5srv/Makefile.depend index 69dc119d9384..58c19dcc9660 100644 --- a/kerberos5/lib/libkadm5srv/Makefile.depend +++ b/kerberos5/lib/libkadm5srv/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ .include diff --git a/kerberos5/lib/libkafs5/Makefile.depend b/kerberos5/lib/libkafs5/Makefile.depend index c596bb796e5b..1abcc6a570df 100644 --- a/kerberos5/lib/libkafs5/Makefile.depend +++ b/kerberos5/lib/libkafs5/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ kerberos5/lib/libroken \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/kerberos5/lib/libkdc/Makefile.depend b/kerberos5/lib/libkdc/Makefile.depend index 4c0b1e95fe15..b906e0fbfef4 100644 --- a/kerberos5/lib/libkdc/Makefile.depend +++ b/kerberos5/lib/libkdc/Makefile.depend @@ -18,6 +18,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/lib/libkrb5/Makefile.depend b/kerberos5/lib/libkrb5/Makefile.depend index d9673773870a..420c842f72d0 100644 --- a/kerberos5/lib/libkrb5/Makefile.depend +++ b/kerberos5/lib/libkrb5/Makefile.depend @@ -16,6 +16,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ diff --git a/kerberos5/lib/libroken/Makefile.depend b/kerberos5/lib/libroken/Makefile.depend index cbfb7f2b226c..d679d16abc16 100644 --- a/kerberos5/lib/libroken/Makefile.depend +++ b/kerberos5/lib/libroken/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ diff --git a/kerberos5/lib/libwind/Makefile.depend b/kerberos5/lib/libwind/Makefile.depend index 41b44cfd436e..7ae977189d60 100644 --- a/kerberos5/lib/libwind/Makefile.depend +++ b/kerberos5/lib/libwind/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ .include diff --git a/kerberos5/libexec/digest-service/Makefile.depend b/kerberos5/libexec/digest-service/Makefile.depend index dbb4f692be52..547f3d1d7e23 100644 --- a/kerberos5/libexec/digest-service/Makefile.depend +++ b/kerberos5/libexec/digest-service/Makefile.depend @@ -21,6 +21,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/hprop/Makefile.depend b/kerberos5/libexec/hprop/Makefile.depend index 7fa91a41d259..fcc6c0e0a3ba 100644 --- a/kerberos5/libexec/hprop/Makefile.depend +++ b/kerberos5/libexec/hprop/Makefile.depend @@ -20,6 +20,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/hpropd/Makefile.depend b/kerberos5/libexec/hpropd/Makefile.depend index 54e7f0160ad4..67b8878c99c3 100644 --- a/kerberos5/libexec/hpropd/Makefile.depend +++ b/kerberos5/libexec/hpropd/Makefile.depend @@ -19,6 +19,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/ipropd-master/Makefile.depend b/kerberos5/libexec/ipropd-master/Makefile.depend index f24347d24619..e3775f6db14f 100644 --- a/kerberos5/libexec/ipropd-master/Makefile.depend +++ b/kerberos5/libexec/ipropd-master/Makefile.depend @@ -17,6 +17,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/ipropd-slave/Makefile.depend b/kerberos5/libexec/ipropd-slave/Makefile.depend index 819b1a7f9414..cb6ce21977c6 100644 --- a/kerberos5/libexec/ipropd-slave/Makefile.depend +++ b/kerberos5/libexec/ipropd-slave/Makefile.depend @@ -17,6 +17,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kadmind/Makefile.depend b/kerberos5/libexec/kadmind/Makefile.depend index 336c5251a77c..2a175991b728 100644 --- a/kerberos5/libexec/kadmind/Makefile.depend +++ b/kerberos5/libexec/kadmind/Makefile.depend @@ -21,6 +21,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ lib/libutil \ diff --git a/kerberos5/libexec/kcm/Makefile.depend b/kerberos5/libexec/kcm/Makefile.depend index b7a13a606022..e41f376dc0dd 100644 --- a/kerberos5/libexec/kcm/Makefile.depend +++ b/kerberos5/libexec/kcm/Makefile.depend @@ -16,6 +16,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kdc/Makefile.depend b/kerberos5/libexec/kdc/Makefile.depend index 0f5cbdab3360..a053454f262a 100644 --- a/kerberos5/libexec/kdc/Makefile.depend +++ b/kerberos5/libexec/kdc/Makefile.depend @@ -20,6 +20,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kdigest/Makefile.depend b/kerberos5/libexec/kdigest/Makefile.depend index 1509f57e7918..3a7824117c3e 100644 --- a/kerberos5/libexec/kdigest/Makefile.depend +++ b/kerberos5/libexec/kdigest/Makefile.depend @@ -16,6 +16,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kfd/Makefile.depend b/kerberos5/libexec/kfd/Makefile.depend index bec2b67c0836..e6b860e5da68 100644 --- a/kerberos5/libexec/kfd/Makefile.depend +++ b/kerberos5/libexec/kfd/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kimpersonate/Makefile.depend b/kerberos5/libexec/kimpersonate/Makefile.depend index 43fd22673b5f..bd55a19741e0 100644 --- a/kerberos5/libexec/kimpersonate/Makefile.depend +++ b/kerberos5/libexec/kimpersonate/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kpasswdd/Makefile.depend b/kerberos5/libexec/kpasswdd/Makefile.depend index 5d58c64a6477..1aaf85697a3f 100644 --- a/kerberos5/libexec/kpasswdd/Makefile.depend +++ b/kerberos5/libexec/kpasswdd/Makefile.depend @@ -18,6 +18,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/tools/asn1_compile/Makefile.depend b/kerberos5/tools/asn1_compile/Makefile.depend index 8c934b664d6f..085cac44091c 100644 --- a/kerberos5/tools/asn1_compile/Makefile.depend +++ b/kerberos5/tools/asn1_compile/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/kerberos5/tools/make-roken/Makefile.depend b/kerberos5/tools/make-roken/Makefile.depend index f5c80026606d..25028476c082 100644 --- a/kerberos5/tools/make-roken/Makefile.depend +++ b/kerberos5/tools/make-roken/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/kerberos5/tools/slc/Makefile.depend b/kerberos5/tools/slc/Makefile.depend index 674b8d9ea7ce..d8062556edc3 100644 --- a/kerberos5/tools/slc/Makefile.depend +++ b/kerberos5/tools/slc/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/kerberos5/usr.bin/hxtool/Makefile.depend b/kerberos5/usr.bin/hxtool/Makefile.depend index 5507971ed07e..812660b4a08a 100644 --- a/kerberos5/usr.bin/hxtool/Makefile.depend +++ b/kerberos5/usr.bin/hxtool/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kadmin/Makefile.depend b/kerberos5/usr.bin/kadmin/Makefile.depend index 5d4838b5265d..edbc6a3bdc8d 100644 --- a/kerberos5/usr.bin/kadmin/Makefile.depend +++ b/kerberos5/usr.bin/kadmin/Makefile.depend @@ -21,6 +21,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ lib/libutil \ diff --git a/kerberos5/usr.bin/kcc/Makefile.depend b/kerberos5/usr.bin/kcc/Makefile.depend index b763a5833f90..50a9a43eb8aa 100644 --- a/kerberos5/usr.bin/kcc/Makefile.depend +++ b/kerberos5/usr.bin/kcc/Makefile.depend @@ -16,6 +16,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kdestroy/Makefile.depend b/kerberos5/usr.bin/kdestroy/Makefile.depend index 43fd22673b5f..bd55a19741e0 100644 --- a/kerberos5/usr.bin/kdestroy/Makefile.depend +++ b/kerberos5/usr.bin/kdestroy/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kf/Makefile.depend b/kerberos5/usr.bin/kf/Makefile.depend index bec2b67c0836..e6b860e5da68 100644 --- a/kerberos5/usr.bin/kf/Makefile.depend +++ b/kerberos5/usr.bin/kf/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kgetcred/Makefile.depend b/kerberos5/usr.bin/kgetcred/Makefile.depend index 035cc38782cb..24f2774f76cb 100644 --- a/kerberos5/usr.bin/kgetcred/Makefile.depend +++ b/kerberos5/usr.bin/kgetcred/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kinit/Makefile.depend b/kerberos5/usr.bin/kinit/Makefile.depend index 22796f63a318..b268a2c7e401 100644 --- a/kerberos5/usr.bin/kinit/Makefile.depend +++ b/kerberos5/usr.bin/kinit/Makefile.depend @@ -16,6 +16,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kpasswd/Makefile.depend b/kerberos5/usr.bin/kpasswd/Makefile.depend index c3196008d32c..faa19fee1738 100644 --- a/kerberos5/usr.bin/kpasswd/Makefile.depend +++ b/kerberos5/usr.bin/kpasswd/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/ksu/Makefile.depend b/kerberos5/usr.bin/ksu/Makefile.depend index e4ef5a290f1f..067c51cf6a87 100644 --- a/kerberos5/usr.bin/ksu/Makefile.depend +++ b/kerberos5/usr.bin/ksu/Makefile.depend @@ -16,6 +16,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/string2key/Makefile.depend b/kerberos5/usr.bin/string2key/Makefile.depend index 54e7f0160ad4..67b8878c99c3 100644 --- a/kerberos5/usr.bin/string2key/Makefile.depend +++ b/kerberos5/usr.bin/string2key/Makefile.depend @@ -19,6 +19,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend index 681d921d5154..e90fd2405104 100644 --- a/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend +++ b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend @@ -18,6 +18,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.sbin/iprop-log/Makefile.depend b/kerberos5/usr.sbin/iprop-log/Makefile.depend index 198944e1c163..17672cd5abc1 100644 --- a/kerberos5/usr.sbin/iprop-log/Makefile.depend +++ b/kerberos5/usr.sbin/iprop-log/Makefile.depend @@ -16,6 +16,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.sbin/kstash/Makefile.depend b/kerberos5/usr.sbin/kstash/Makefile.depend index 54e7f0160ad4..67b8878c99c3 100644 --- a/kerberos5/usr.sbin/kstash/Makefile.depend +++ b/kerberos5/usr.sbin/kstash/Makefile.depend @@ -19,6 +19,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.sbin/ktutil/Makefile.depend b/kerberos5/usr.sbin/ktutil/Makefile.depend index 460edae4dc80..ecb965b3cb6a 100644 --- a/kerberos5/usr.sbin/ktutil/Makefile.depend +++ b/kerberos5/usr.sbin/ktutil/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ secure/lib/libcrypto \ diff --git a/lib/atf/libatf-c++/Makefile.depend b/lib/atf/libatf-c++/Makefile.depend index fd68234c7003..fc6d95f383e3 100644 --- a/lib/atf/libatf-c++/Makefile.depend +++ b/lib/atf/libatf-c++/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/atf/libatf-c \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/atf/libatf-c/Makefile.depend b/lib/atf/libatf-c/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/atf/libatf-c/Makefile.depend +++ b/lib/atf/libatf-c/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/bind/lwres/Makefile.depend b/lib/bind/lwres/Makefile.depend index da5b13581829..c97302179cc0 100644 --- a/lib/bind/lwres/Makefile.depend +++ b/lib/bind/lwres/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ diff --git a/lib/libalias/libalias/Makefile.depend b/lib/libalias/libalias/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/lib/libalias/libalias/Makefile.depend +++ b/lib/libalias/libalias/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libalias/modules/cuseeme/Makefile.depend b/lib/libalias/modules/cuseeme/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libalias/modules/cuseeme/Makefile.depend +++ b/lib/libalias/modules/cuseeme/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libalias/modules/dummy/Makefile.depend b/lib/libalias/modules/dummy/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libalias/modules/dummy/Makefile.depend +++ b/lib/libalias/modules/dummy/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libalias/modules/ftp/Makefile.depend b/lib/libalias/modules/ftp/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libalias/modules/ftp/Makefile.depend +++ b/lib/libalias/modules/ftp/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libalias/modules/irc/Makefile.depend b/lib/libalias/modules/irc/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libalias/modules/irc/Makefile.depend +++ b/lib/libalias/modules/irc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libalias/modules/nbt/Makefile.depend b/lib/libalias/modules/nbt/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libalias/modules/nbt/Makefile.depend +++ b/lib/libalias/modules/nbt/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libalias/modules/pptp/Makefile.depend b/lib/libalias/modules/pptp/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libalias/modules/pptp/Makefile.depend +++ b/lib/libalias/modules/pptp/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libalias/modules/skinny/Makefile.depend b/lib/libalias/modules/skinny/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libalias/modules/skinny/Makefile.depend +++ b/lib/libalias/modules/skinny/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libalias/modules/smedia/Makefile.depend b/lib/libalias/modules/smedia/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libalias/modules/smedia/Makefile.depend +++ b/lib/libalias/modules/smedia/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libarchive/Makefile.depend b/lib/libarchive/Makefile.depend index 013d154a5f7c..aec02f3165be 100644 --- a/lib/libarchive/Makefile.depend +++ b/lib/libarchive/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/liblzma \ lib/libz \ diff --git a/lib/libauditd/Makefile.depend b/lib/libauditd/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libauditd/Makefile.depend +++ b/lib/libauditd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libbegemot/Makefile.depend b/lib/libbegemot/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libbegemot/Makefile.depend +++ b/lib/libbegemot/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libblocksruntime/Makefile.depend b/lib/libblocksruntime/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libblocksruntime/Makefile.depend +++ b/lib/libblocksruntime/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libbluetooth/Makefile.depend b/lib/libbluetooth/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libbluetooth/Makefile.depend +++ b/lib/libbluetooth/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libbsm/Makefile.depend b/lib/libbsm/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/lib/libbsm/Makefile.depend +++ b/lib/libbsm/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libbsnmp/libbsnmp/Makefile.depend b/lib/libbsnmp/libbsnmp/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/lib/libbsnmp/libbsnmp/Makefile.depend +++ b/lib/libbsnmp/libbsnmp/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/lib/libbz2/Makefile.depend b/lib/libbz2/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libbz2/Makefile.depend +++ b/lib/libbz2/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libc/Makefile.depend b/lib/libc/Makefile.depend index ec2683f1db90..b030effca2ff 100644 --- a/lib/libc/Makefile.depend +++ b/lib/libc/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include/rpc \ include/rpcsvc \ lib/${CSU_DIR} \ + lib/libcompiler_rt \ .include diff --git a/lib/libcalendar/Makefile.depend b/lib/libcalendar/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/lib/libcalendar/Makefile.depend +++ b/lib/libcalendar/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libcam/Makefile.depend b/lib/libcam/Makefile.depend index 2ee0ef13e57b..8a69c213c3c2 100644 --- a/lib/libcam/Makefile.depend +++ b/lib/libcam/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsbuf \ diff --git a/lib/libcom_err/Makefile.depend b/lib/libcom_err/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libcom_err/Makefile.depend +++ b/lib/libcom_err/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libcrypt/Makefile.depend b/lib/libcrypt/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/lib/libcrypt/Makefile.depend +++ b/lib/libcrypt/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libdevinfo/Makefile.depend b/lib/libdevinfo/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libdevinfo/Makefile.depend +++ b/lib/libdevinfo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libdevstat/Makefile.depend b/lib/libdevstat/Makefile.depend index 70d796e23bfc..d65cbb5d7110 100644 --- a/lib/libdevstat/Makefile.depend +++ b/lib/libdevstat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/lib/libdwarf/Makefile.depend b/lib/libdwarf/Makefile.depend index 9d3c6f56836f..df2384b66d87 100644 --- a/lib/libdwarf/Makefile.depend +++ b/lib/libdwarf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ diff --git a/lib/libedit/Makefile.depend b/lib/libedit/Makefile.depend index 23a2ee3e57c2..11dc760ac2db 100644 --- a/lib/libedit/Makefile.depend +++ b/lib/libedit/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/lib/libelf/Makefile.depend b/lib/libelf/Makefile.depend index 8fa02a69b5c5..b5d32499cb84 100644 --- a/lib/libelf/Makefile.depend +++ b/lib/libelf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libexpat/Makefile.depend b/lib/libexpat/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libexpat/Makefile.depend +++ b/lib/libexpat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libfetch/Makefile.depend b/lib/libfetch/Makefile.depend index 396224ddc51b..02237e854efd 100644 --- a/lib/libfetch/Makefile.depend +++ b/lib/libfetch/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ secure/lib/libssl \ diff --git a/lib/libgeom/Makefile.depend b/lib/libgeom/Makefile.depend index 7d95f58031b0..b55a47429e7a 100644 --- a/lib/libgeom/Makefile.depend +++ b/lib/libgeom/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/libsbuf \ diff --git a/lib/libgpib/Makefile.depend b/lib/libgpib/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/lib/libgpib/Makefile.depend +++ b/lib/libgpib/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libgssapi/Makefile.depend b/lib/libgssapi/Makefile.depend index e40bfe591cc7..a0b3a1c093fd 100644 --- a/lib/libgssapi/Makefile.depend +++ b/lib/libgssapi/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libipsec/Makefile.depend b/lib/libipsec/Makefile.depend index faea21cd8208..e5717fca49c2 100644 --- a/lib/libipsec/Makefile.depend +++ b/lib/libipsec/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libipx/Makefile.depend b/lib/libipx/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/lib/libipx/Makefile.depend +++ b/lib/libipx/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libjail/Makefile.depend b/lib/libjail/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/lib/libjail/Makefile.depend +++ b/lib/libjail/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libkiconv/Makefile.depend b/lib/libkiconv/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libkiconv/Makefile.depend +++ b/lib/libkiconv/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libkvm/Makefile.depend b/lib/libkvm/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libkvm/Makefile.depend +++ b/lib/libkvm/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/liblzma/Makefile.depend b/lib/liblzma/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/liblzma/Makefile.depend +++ b/lib/liblzma/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libmagic/Makefile.depend b/lib/libmagic/Makefile.depend index 0d6e068b73a8..569fd1c18b9a 100644 --- a/lib/libmagic/Makefile.depend +++ b/lib/libmagic/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libz \ diff --git a/lib/libmd/Makefile.depend b/lib/libmd/Makefile.depend index 269139da1895..6d52fa5934c9 100644 --- a/lib/libmd/Makefile.depend +++ b/lib/libmd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libmemstat/Makefile.depend b/lib/libmemstat/Makefile.depend index 70d796e23bfc..d65cbb5d7110 100644 --- a/lib/libmemstat/Makefile.depend +++ b/lib/libmemstat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/lib/libmilter/Makefile.depend b/lib/libmilter/Makefile.depend index 34129b7525d3..9ca55561cff5 100644 --- a/lib/libmilter/Makefile.depend +++ b/lib/libmilter/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/lib/libmp/Makefile.depend b/lib/libmp/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/lib/libmp/Makefile.depend +++ b/lib/libmp/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/lib/libnetgraph/Makefile.depend b/lib/libnetgraph/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libnetgraph/Makefile.depend +++ b/lib/libnetgraph/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libngatm/Makefile.depend b/lib/libngatm/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/lib/libngatm/Makefile.depend +++ b/lib/libngatm/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libopie/Makefile.depend b/lib/libopie/Makefile.depend index 7d0552bd9062..f73af6bdb0a2 100644 --- a/lib/libopie/Makefile.depend +++ b/lib/libopie/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ diff --git a/lib/libpam/libpam/Makefile.depend b/lib/libpam/libpam/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libpam/libpam/Makefile.depend +++ b/lib/libpam/libpam/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libpam/modules/pam_chroot/Makefile.depend b/lib/libpam/modules/pam_chroot/Makefile.depend index c3c0ed437aff..499706a8d131 100644 --- a/lib/libpam/modules/pam_chroot/Makefile.depend +++ b/lib/libpam/modules/pam_chroot/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_deny/Makefile.depend b/lib/libpam/modules/pam_deny/Makefile.depend index 4f9591edd9e2..d12466d6a618 100644 --- a/lib/libpam/modules/pam_deny/Makefile.depend +++ b/lib/libpam/modules/pam_deny/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_echo/Makefile.depend b/lib/libpam/modules/pam_echo/Makefile.depend index c3c0ed437aff..499706a8d131 100644 --- a/lib/libpam/modules/pam_echo/Makefile.depend +++ b/lib/libpam/modules/pam_echo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_exec/Makefile.depend b/lib/libpam/modules/pam_exec/Makefile.depend index c3c0ed437aff..499706a8d131 100644 --- a/lib/libpam/modules/pam_exec/Makefile.depend +++ b/lib/libpam/modules/pam_exec/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_ftpusers/Makefile.depend b/lib/libpam/modules/pam_ftpusers/Makefile.depend index c3c0ed437aff..499706a8d131 100644 --- a/lib/libpam/modules/pam_ftpusers/Makefile.depend +++ b/lib/libpam/modules/pam_ftpusers/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_group/Makefile.depend b/lib/libpam/modules/pam_group/Makefile.depend index c3c0ed437aff..499706a8d131 100644 --- a/lib/libpam/modules/pam_group/Makefile.depend +++ b/lib/libpam/modules/pam_group/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_guest/Makefile.depend b/lib/libpam/modules/pam_guest/Makefile.depend index c3c0ed437aff..499706a8d131 100644 --- a/lib/libpam/modules/pam_guest/Makefile.depend +++ b/lib/libpam/modules/pam_guest/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_krb5/Makefile.depend b/lib/libpam/modules/pam_krb5/Makefile.depend index 5de8d9fec3fc..43e39273fcd1 100644 --- a/lib/libpam/modules/pam_krb5/Makefile.depend +++ b/lib/libpam/modules/pam_krb5/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ secure/lib/libcrypto \ diff --git a/lib/libpam/modules/pam_ksu/Makefile.depend b/lib/libpam/modules/pam_ksu/Makefile.depend index 5de8d9fec3fc..43e39273fcd1 100644 --- a/lib/libpam/modules/pam_ksu/Makefile.depend +++ b/lib/libpam/modules/pam_ksu/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ secure/lib/libcrypto \ diff --git a/lib/libpam/modules/pam_lastlog/Makefile.depend b/lib/libpam/modules/pam_lastlog/Makefile.depend index c3c0ed437aff..499706a8d131 100644 --- a/lib/libpam/modules/pam_lastlog/Makefile.depend +++ b/lib/libpam/modules/pam_lastlog/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_login_access/Makefile.depend b/lib/libpam/modules/pam_login_access/Makefile.depend index c3c0ed437aff..499706a8d131 100644 --- a/lib/libpam/modules/pam_login_access/Makefile.depend +++ b/lib/libpam/modules/pam_login_access/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_nologin/Makefile.depend b/lib/libpam/modules/pam_nologin/Makefile.depend index 3a8ef7010b22..5947196b49e4 100644 --- a/lib/libpam/modules/pam_nologin/Makefile.depend +++ b/lib/libpam/modules/pam_nologin/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/lib/libpam/modules/pam_opie/Makefile.depend b/lib/libpam/modules/pam_opie/Makefile.depend index 3e327fa93a5a..3bef9098f85c 100644 --- a/lib/libpam/modules/pam_opie/Makefile.depend +++ b/lib/libpam/modules/pam_opie/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libopie \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_opieaccess/Makefile.depend b/lib/libpam/modules/pam_opieaccess/Makefile.depend index 8bf6251184f3..bbe263ef9217 100644 --- a/lib/libpam/modules/pam_opieaccess/Makefile.depend +++ b/lib/libpam/modules/pam_opieaccess/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libopie \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_passwdqc/Makefile.depend b/lib/libpam/modules/pam_passwdqc/Makefile.depend index 677b2fe1c1a2..07deaf653875 100644 --- a/lib/libpam/modules/pam_passwdqc/Makefile.depend +++ b/lib/libpam/modules/pam_passwdqc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_permit/Makefile.depend b/lib/libpam/modules/pam_permit/Makefile.depend index 4f9591edd9e2..d12466d6a618 100644 --- a/lib/libpam/modules/pam_permit/Makefile.depend +++ b/lib/libpam/modules/pam_permit/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_radius/Makefile.depend b/lib/libpam/modules/pam_radius/Makefile.depend index b5a9caacb9c8..6a72e9b8e25d 100644 --- a/lib/libpam/modules/pam_radius/Makefile.depend +++ b/lib/libpam/modules/pam_radius/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ lib/libradius \ diff --git a/lib/libpam/modules/pam_rhosts/Makefile.depend b/lib/libpam/modules/pam_rhosts/Makefile.depend index c3c0ed437aff..499706a8d131 100644 --- a/lib/libpam/modules/pam_rhosts/Makefile.depend +++ b/lib/libpam/modules/pam_rhosts/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_rootok/Makefile.depend b/lib/libpam/modules/pam_rootok/Makefile.depend index 4f9591edd9e2..d12466d6a618 100644 --- a/lib/libpam/modules/pam_rootok/Makefile.depend +++ b/lib/libpam/modules/pam_rootok/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_securetty/Makefile.depend b/lib/libpam/modules/pam_securetty/Makefile.depend index c3c0ed437aff..499706a8d131 100644 --- a/lib/libpam/modules/pam_securetty/Makefile.depend +++ b/lib/libpam/modules/pam_securetty/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_self/Makefile.depend b/lib/libpam/modules/pam_self/Makefile.depend index 4f9591edd9e2..d12466d6a618 100644 --- a/lib/libpam/modules/pam_self/Makefile.depend +++ b/lib/libpam/modules/pam_self/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_ssh/Makefile.depend b/lib/libpam/modules/pam_ssh/Makefile.depend index a2a31da6648a..425795df2d57 100644 --- a/lib/libpam/modules/pam_ssh/Makefile.depend +++ b/lib/libpam/modules/pam_ssh/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ lib/libutil \ diff --git a/lib/libpam/modules/pam_tacplus/Makefile.depend b/lib/libpam/modules/pam_tacplus/Makefile.depend index 8a3d2e2083d6..8dd8b0abde1d 100644 --- a/lib/libpam/modules/pam_tacplus/Makefile.depend +++ b/lib/libpam/modules/pam_tacplus/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ lib/libtacplus \ diff --git a/lib/libpam/modules/pam_unix/Makefile.depend b/lib/libpam/modules/pam_unix/Makefile.depend index 3e132a82462d..f34115b0ca05 100644 --- a/lib/libpam/modules/pam_unix/Makefile.depend +++ b/lib/libpam/modules/pam_unix/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ lib/libutil \ diff --git a/lib/libpcap/Makefile.depend b/lib/libpcap/Makefile.depend index b46c962655c7..32085ed84645 100644 --- a/lib/libpcap/Makefile.depend +++ b/lib/libpcap/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libpmc/Makefile.depend b/lib/libpmc/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libpmc/Makefile.depend +++ b/lib/libpmc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libproc/Makefile.depend b/lib/libproc/Makefile.depend index 1da00383bcbb..54f6bead1e6e 100644 --- a/lib/libproc/Makefile.depend +++ b/lib/libproc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ lib/libutil \ diff --git a/lib/libprocstat/Makefile.depend b/lib/libprocstat/Makefile.depend index 7d6dfa3d9988..4a629c0d1890 100644 --- a/lib/libprocstat/Makefile.depend +++ b/lib/libprocstat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ lib/libprocstat/zfs \ lib/libutil \ diff --git a/lib/libradius/Makefile.depend b/lib/libradius/Makefile.depend index 778b5ef5b96a..2c3cff5e1329 100644 --- a/lib/libradius/Makefile.depend +++ b/lib/libradius/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/lib/librpcsec_gss/Makefile.depend b/lib/librpcsec_gss/Makefile.depend index 3fe1712f478c..4764e3d90d2f 100644 --- a/lib/librpcsec_gss/Makefile.depend +++ b/lib/librpcsec_gss/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/rpc \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgssapi \ diff --git a/lib/librpcsvc/Makefile.depend b/lib/librpcsvc/Makefile.depend index 124500b8b056..7053f44c8544 100644 --- a/lib/librpcsvc/Makefile.depend +++ b/lib/librpcsvc/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/librt/Makefile.depend b/lib/librt/Makefile.depend index a34439e272da..9926a3a7caa6 100644 --- a/lib/librt/Makefile.depend +++ b/lib/librt/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ diff --git a/lib/librtld_db/Makefile.depend b/lib/librtld_db/Makefile.depend index 050d82890f5b..ec27fe402f3b 100644 --- a/lib/librtld_db/Makefile.depend +++ b/lib/librtld_db/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ lib/libproc \ lib/libutil \ diff --git a/lib/libsbuf/Makefile.depend b/lib/libsbuf/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libsbuf/Makefile.depend +++ b/lib/libsbuf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libsdp/Makefile.depend b/lib/libsdp/Makefile.depend index c958d10a6981..1b2f1e2c7240 100644 --- a/lib/libsdp/Makefile.depend +++ b/lib/libsdp/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libstdbuf/Makefile.depend b/lib/libstdbuf/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libstdbuf/Makefile.depend +++ b/lib/libstdbuf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libstdthreads/Makefile.depend b/lib/libstdthreads/Makefile.depend index a34439e272da..9926a3a7caa6 100644 --- a/lib/libstdthreads/Makefile.depend +++ b/lib/libstdthreads/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ diff --git a/lib/libtacplus/Makefile.depend b/lib/libtacplus/Makefile.depend index 7d0552bd9062..f73af6bdb0a2 100644 --- a/lib/libtacplus/Makefile.depend +++ b/lib/libtacplus/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ diff --git a/lib/libthr/Makefile.depend b/lib/libthr/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/lib/libthr/Makefile.depend +++ b/lib/libthr/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libthread_db/Makefile.depend b/lib/libthread_db/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libthread_db/Makefile.depend +++ b/lib/libthread_db/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libufs/Makefile.depend b/lib/libufs/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libufs/Makefile.depend +++ b/lib/libufs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libugidfw/Makefile.depend b/lib/libugidfw/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libugidfw/Makefile.depend +++ b/lib/libugidfw/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libulog/Makefile.depend b/lib/libulog/Makefile.depend index fb8b9ee55f44..5d619f8fac05 100644 --- a/lib/libulog/Makefile.depend +++ b/lib/libulog/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ diff --git a/lib/libusb/Makefile.depend b/lib/libusb/Makefile.depend index a34439e272da..9926a3a7caa6 100644 --- a/lib/libusb/Makefile.depend +++ b/lib/libusb/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ diff --git a/lib/libusbhid/Makefile.depend b/lib/libusbhid/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libusbhid/Makefile.depend +++ b/lib/libusbhid/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libutil/Makefile.depend b/lib/libutil/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/lib/libutil/Makefile.depend +++ b/lib/libutil/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libvgl/Makefile.depend b/lib/libvgl/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libvgl/Makefile.depend +++ b/lib/libvgl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libwrap/Makefile.depend b/lib/libwrap/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/lib/libwrap/Makefile.depend +++ b/lib/libwrap/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libypclnt/Makefile.depend b/lib/libypclnt/Makefile.depend index b7eadf3719bd..cca28a5934a6 100644 --- a/lib/libypclnt/Makefile.depend +++ b/lib/libypclnt/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/libz/Makefile.depend b/lib/libz/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/libz/Makefile.depend +++ b/lib/libz/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/msun/Makefile.depend b/lib/msun/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/lib/msun/Makefile.depend +++ b/lib/msun/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/ncurses/form/Makefile.depend b/lib/ncurses/form/Makefile.depend index 58dd56093015..44fd13d38a6c 100644 --- a/lib/ncurses/form/Makefile.depend +++ b/lib/ncurses/form/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ diff --git a/lib/ncurses/formw/Makefile.depend b/lib/ncurses/formw/Makefile.depend index b6406f6f74ff..d8fdf1b99945 100644 --- a/lib/ncurses/formw/Makefile.depend +++ b/lib/ncurses/formw/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncursesw \ diff --git a/lib/ncurses/menu/Makefile.depend b/lib/ncurses/menu/Makefile.depend index 283227e745ce..64dab5575bd5 100644 --- a/lib/ncurses/menu/Makefile.depend +++ b/lib/ncurses/menu/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ diff --git a/lib/ncurses/menuw/Makefile.depend b/lib/ncurses/menuw/Makefile.depend index a62a9c543d6c..d46744f5e033 100644 --- a/lib/ncurses/menuw/Makefile.depend +++ b/lib/ncurses/menuw/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncursesw \ diff --git a/lib/ncurses/ncurses/Makefile.depend b/lib/ncurses/ncurses/Makefile.depend index 4b8f36b03146..e57a590ea791 100644 --- a/lib/ncurses/ncurses/Makefile.depend +++ b/lib/ncurses/ncurses/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/ncurses/ncursesw/Makefile.depend b/lib/ncurses/ncursesw/Makefile.depend index 6c70a47cb884..c1c18b271ec9 100644 --- a/lib/ncurses/ncursesw/Makefile.depend +++ b/lib/ncurses/ncursesw/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/ncurses/panel/Makefile.depend b/lib/ncurses/panel/Makefile.depend index 6d24063d2b64..5db7c851afdf 100644 --- a/lib/ncurses/panel/Makefile.depend +++ b/lib/ncurses/panel/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ diff --git a/lib/ncurses/panelw/Makefile.depend b/lib/ncurses/panelw/Makefile.depend index 4bab195f80c8..9cc13a251fbf 100644 --- a/lib/ncurses/panelw/Makefile.depend +++ b/lib/ncurses/panelw/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncursesw \ diff --git a/libexec/atf/atf-check/Makefile.depend b/libexec/atf/atf-check/Makefile.depend index 727e9ecd01e2..aa1a20886895 100644 --- a/libexec/atf/atf-check/Makefile.depend +++ b/libexec/atf/atf-check/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/atf/libatf-c \ lib/atf/libatf-c++ \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/libexec/atrun/Makefile.depend b/libexec/atrun/Makefile.depend index 3a8ef7010b22..5947196b49e4 100644 --- a/libexec/atrun/Makefile.depend +++ b/libexec/atrun/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/libexec/bootpd/bootpgw/Makefile.depend b/libexec/bootpd/bootpgw/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/libexec/bootpd/bootpgw/Makefile.depend +++ b/libexec/bootpd/bootpgw/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/libexec/bootpd/tools/bootpef/Makefile.depend b/libexec/bootpd/tools/bootpef/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/libexec/bootpd/tools/bootpef/Makefile.depend +++ b/libexec/bootpd/tools/bootpef/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/libexec/bootpd/tools/bootptest/Makefile.depend b/libexec/bootpd/tools/bootptest/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/libexec/bootpd/tools/bootptest/Makefile.depend +++ b/libexec/bootpd/tools/bootptest/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/libexec/comsat/Makefile.depend b/libexec/comsat/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/libexec/comsat/Makefile.depend +++ b/libexec/comsat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/libexec/fingerd/Makefile.depend b/libexec/fingerd/Makefile.depend index f253d0a15aed..ee948eaa011e 100644 --- a/libexec/fingerd/Makefile.depend +++ b/libexec/fingerd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/ftpd/Makefile.depend b/libexec/ftpd/Makefile.depend index 636a25b464ef..44ee786b7e19 100644 --- a/libexec/ftpd/Makefile.depend +++ b/libexec/ftpd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libmd \ lib/libopie \ diff --git a/libexec/getty/Makefile.depend b/libexec/getty/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/libexec/getty/Makefile.depend +++ b/libexec/getty/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/mail.local/Makefile.depend b/libexec/mail.local/Makefile.depend index 42b341305f88..1d3e8d899246 100644 --- a/libexec/mail.local/Makefile.depend +++ b/libexec/mail.local/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsm \ lib/libutil \ diff --git a/libexec/mknetid/Makefile.depend b/libexec/mknetid/Makefile.depend index 2f2a1c69ed2e..d074335f4466 100644 --- a/libexec/mknetid/Makefile.depend +++ b/libexec/mknetid/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/libexec/pppoed/Makefile.depend b/libexec/pppoed/Makefile.depend index 9febc4bdaa6a..2b972daf01f6 100644 --- a/libexec/pppoed/Makefile.depend +++ b/libexec/pppoed/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/libexec/rbootd/Makefile.depend b/libexec/rbootd/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/libexec/rbootd/Makefile.depend +++ b/libexec/rbootd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/libexec/revnetgroup/Makefile.depend b/libexec/revnetgroup/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/libexec/revnetgroup/Makefile.depend +++ b/libexec/revnetgroup/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/libexec/rlogind/Makefile.depend b/libexec/rlogind/Makefile.depend index f253d0a15aed..ee948eaa011e 100644 --- a/libexec/rlogind/Makefile.depend +++ b/libexec/rlogind/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/rpc.rquotad/Makefile.depend b/libexec/rpc.rquotad/Makefile.depend index fb4c76342a01..74982d7fcb45 100644 --- a/libexec/rpc.rquotad/Makefile.depend +++ b/libexec/rpc.rquotad/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/libexec/rpc.rstatd/Makefile.depend b/libexec/rpc.rstatd/Makefile.depend index 74a5f0a50e64..35a6e3704da8 100644 --- a/libexec/rpc.rstatd/Makefile.depend +++ b/libexec/rpc.rstatd/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ lib/librpcsvc \ diff --git a/libexec/rpc.rusersd/Makefile.depend b/libexec/rpc.rusersd/Makefile.depend index acb998b8aadb..f3b4295fa83f 100644 --- a/libexec/rpc.rusersd/Makefile.depend +++ b/libexec/rpc.rusersd/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/libexec/rpc.rwalld/Makefile.depend b/libexec/rpc.rwalld/Makefile.depend index c0c681e4e179..bd7098e0b6ce 100644 --- a/libexec/rpc.rwalld/Makefile.depend +++ b/libexec/rpc.rwalld/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/rpc.sprayd/Makefile.depend b/libexec/rpc.sprayd/Makefile.depend index c405bd7fe3f5..6514930150d7 100644 --- a/libexec/rpc.sprayd/Makefile.depend +++ b/libexec/rpc.sprayd/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/libexec/rshd/Makefile.depend b/libexec/rshd/Makefile.depend index 4c4a03360852..9473758ae465 100644 --- a/libexec/rshd/Makefile.depend +++ b/libexec/rshd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/libexec/smrsh/Makefile.depend b/libexec/smrsh/Makefile.depend index 0fa4e158283d..6515b7d984da 100644 --- a/libexec/smrsh/Makefile.depend +++ b/libexec/smrsh/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsm \ lib/libutil \ diff --git a/libexec/talkd/Makefile.depend b/libexec/talkd/Makefile.depend index 43b5ccc56c3f..48e46367c59a 100644 --- a/libexec/talkd/Makefile.depend +++ b/libexec/talkd/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/libexec/tcpd/Makefile.depend b/libexec/tcpd/Makefile.depend index 2e2a10bde164..52befbc6e6ad 100644 --- a/libexec/tcpd/Makefile.depend +++ b/libexec/tcpd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ diff --git a/libexec/telnetd/Makefile.depend b/libexec/telnetd/Makefile.depend index 35a31547e0eb..764aaef0da15 100644 --- a/libexec/telnetd/Makefile.depend +++ b/libexec/telnetd/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libmp \ lib/libpam/libpam \ diff --git a/libexec/tftp-proxy/Makefile.depend b/libexec/tftp-proxy/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/libexec/tftp-proxy/Makefile.depend +++ b/libexec/tftp-proxy/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/libexec/tftpd/Makefile.depend b/libexec/tftpd/Makefile.depend index f35353153c9c..74a1dd9afe70 100644 --- a/libexec/tftpd/Makefile.depend +++ b/libexec/tftpd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ diff --git a/libexec/ulog-helper/Makefile.depend b/libexec/ulog-helper/Makefile.depend index 27913b6f9021..0ff36232e3b7 100644 --- a/libexec/ulog-helper/Makefile.depend +++ b/libexec/ulog-helper/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libulog \ diff --git a/libexec/ypxfr/Makefile.depend b/libexec/ypxfr/Makefile.depend index 175e52eab761..37e8f0c298b4 100644 --- a/libexec/ypxfr/Makefile.depend +++ b/libexec/ypxfr/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/sbin/adjkerntz/Makefile.depend b/sbin/adjkerntz/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/adjkerntz/Makefile.depend +++ b/sbin/adjkerntz/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/atacontrol/Makefile.depend b/sbin/atacontrol/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/atacontrol/Makefile.depend +++ b/sbin/atacontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/atm/atmconfig/Makefile.depend b/sbin/atm/atmconfig/Makefile.depend index 63d333eb3485..4db19e895daa 100644 --- a/sbin/atm/atmconfig/Makefile.depend +++ b/sbin/atm/atmconfig/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/sbin/badsect/Makefile.depend b/sbin/badsect/Makefile.depend index 4c40401ac6e5..374b5e7b5c94 100644 --- a/sbin/badsect/Makefile.depend +++ b/sbin/badsect/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/bsdlabel/Makefile.depend b/sbin/bsdlabel/Makefile.depend index 5f8a6c0cf014..099436d63905 100644 --- a/sbin/bsdlabel/Makefile.depend +++ b/sbin/bsdlabel/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ lib/libsbuf \ diff --git a/sbin/camcontrol/Makefile.depend b/sbin/camcontrol/Makefile.depend index 5e53403d170d..0b2207fafdc4 100644 --- a/sbin/camcontrol/Makefile.depend +++ b/sbin/camcontrol/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcam \ + lib/libcompiler_rt \ lib/libsbuf \ lib/libutil \ diff --git a/sbin/ccdconfig/Makefile.depend b/sbin/ccdconfig/Makefile.depend index d1cb1204611f..ecf630226e25 100644 --- a/sbin/ccdconfig/Makefile.depend +++ b/sbin/ccdconfig/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ diff --git a/sbin/clri/Makefile.depend b/sbin/clri/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/clri/Makefile.depend +++ b/sbin/clri/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/comcontrol/Makefile.depend b/sbin/comcontrol/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/comcontrol/Makefile.depend +++ b/sbin/comcontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/conscontrol/Makefile.depend b/sbin/conscontrol/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/conscontrol/Makefile.depend +++ b/sbin/conscontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/ddb/Makefile.depend b/sbin/ddb/Makefile.depend index 70d796e23bfc..d65cbb5d7110 100644 --- a/sbin/ddb/Makefile.depend +++ b/sbin/ddb/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/sbin/devd/Makefile.depend b/sbin/devd/Makefile.depend index 031da3523a8e..fdd8a7ca9a2d 100644 --- a/sbin/devd/Makefile.depend +++ b/sbin/devd/Makefile.depend @@ -9,8 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ lib/msun \ + usr.bin/lex/lib \ .include diff --git a/sbin/devfs/Makefile.depend b/sbin/devfs/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/devfs/Makefile.depend +++ b/sbin/devfs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/dhclient/Makefile.depend b/sbin/dhclient/Makefile.depend index f253d0a15aed..ee948eaa011e 100644 --- a/sbin/dhclient/Makefile.depend +++ b/sbin/dhclient/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/dmesg/Makefile.depend b/sbin/dmesg/Makefile.depend index 70d796e23bfc..d65cbb5d7110 100644 --- a/sbin/dmesg/Makefile.depend +++ b/sbin/dmesg/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/sbin/dump/Makefile.depend b/sbin/dump/Makefile.depend index 9bd5a4552168..591ea4c790a0 100644 --- a/sbin/dump/Makefile.depend +++ b/sbin/dump/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/dumpfs/Makefile.depend b/sbin/dumpfs/Makefile.depend index 4c40401ac6e5..374b5e7b5c94 100644 --- a/sbin/dumpfs/Makefile.depend +++ b/sbin/dumpfs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/dumpon/Makefile.depend b/sbin/dumpon/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/dumpon/Makefile.depend +++ b/sbin/dumpon/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/etherswitchcfg/Makefile.depend b/sbin/etherswitchcfg/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/etherswitchcfg/Makefile.depend +++ b/sbin/etherswitchcfg/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/fdisk/Makefile.depend b/sbin/fdisk/Makefile.depend index 5f8a6c0cf014..099436d63905 100644 --- a/sbin/fdisk/Makefile.depend +++ b/sbin/fdisk/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ lib/libsbuf \ diff --git a/sbin/ffsinfo/Makefile.depend b/sbin/ffsinfo/Makefile.depend index 4c40401ac6e5..374b5e7b5c94 100644 --- a/sbin/ffsinfo/Makefile.depend +++ b/sbin/ffsinfo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/fsck/Makefile.depend b/sbin/fsck/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/fsck/Makefile.depend +++ b/sbin/fsck/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/fsck_ffs/Makefile.depend b/sbin/fsck_ffs/Makefile.depend index 4c40401ac6e5..374b5e7b5c94 100644 --- a/sbin/fsck_ffs/Makefile.depend +++ b/sbin/fsck_ffs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/fsck_msdosfs/Makefile.depend b/sbin/fsck_msdosfs/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/fsck_msdosfs/Makefile.depend +++ b/sbin/fsck_msdosfs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/fsdb/Makefile.depend b/sbin/fsdb/Makefile.depend index 8a852c01741c..be095ed989df 100644 --- a/sbin/fsdb/Makefile.depend +++ b/sbin/fsdb/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/libufs \ lib/ncurses/ncurses \ diff --git a/sbin/fsirand/Makefile.depend b/sbin/fsirand/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/sbin/fsirand/Makefile.depend +++ b/sbin/fsirand/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/gbde/Makefile.depend b/sbin/gbde/Makefile.depend index 04f8b794e156..491be48ebd09 100644 --- a/sbin/gbde/Makefile.depend +++ b/sbin/gbde/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ lib/libutil \ diff --git a/sbin/geom/class/cache/Makefile.depend b/sbin/geom/class/cache/Makefile.depend index d1cb1204611f..1f1fba6599ac 100644 --- a/sbin/geom/class/cache/Makefile.depend +++ b/sbin/geom/class/cache/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/concat/Makefile.depend b/sbin/geom/class/concat/Makefile.depend index d1cb1204611f..1f1fba6599ac 100644 --- a/sbin/geom/class/concat/Makefile.depend +++ b/sbin/geom/class/concat/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/eli/Makefile.depend b/sbin/geom/class/eli/Makefile.depend index 378ee92158a0..fd13a8bc1924 100644 --- a/sbin/geom/class/eli/Makefile.depend +++ b/sbin/geom/class/eli/Makefile.depend @@ -8,8 +8,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ + sbin/geom/core \ secure/lib/libcrypto \ diff --git a/sbin/geom/class/journal/Makefile.depend b/sbin/geom/class/journal/Makefile.depend index 85c9a4f8e479..8511c7e6b492 100644 --- a/sbin/geom/class/journal/Makefile.depend +++ b/sbin/geom/class/journal/Makefile.depend @@ -8,9 +8,11 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ lib/libufs \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/label/Makefile.depend b/sbin/geom/class/label/Makefile.depend index d1cb1204611f..1f1fba6599ac 100644 --- a/sbin/geom/class/label/Makefile.depend +++ b/sbin/geom/class/label/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/mirror/Makefile.depend b/sbin/geom/class/mirror/Makefile.depend index 7c7cc94ec32f..096ef6a38bc9 100644 --- a/sbin/geom/class/mirror/Makefile.depend +++ b/sbin/geom/class/mirror/Makefile.depend @@ -8,8 +8,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/mountver/Makefile.depend b/sbin/geom/class/mountver/Makefile.depend index d1cb1204611f..1f1fba6599ac 100644 --- a/sbin/geom/class/mountver/Makefile.depend +++ b/sbin/geom/class/mountver/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/multipath/Makefile.depend b/sbin/geom/class/multipath/Makefile.depend index d1cb1204611f..1f1fba6599ac 100644 --- a/sbin/geom/class/multipath/Makefile.depend +++ b/sbin/geom/class/multipath/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/nop/Makefile.depend b/sbin/geom/class/nop/Makefile.depend index d1cb1204611f..1f1fba6599ac 100644 --- a/sbin/geom/class/nop/Makefile.depend +++ b/sbin/geom/class/nop/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/part/Makefile.depend b/sbin/geom/class/part/Makefile.depend index df3578f89d49..5a31f61e93b3 100644 --- a/sbin/geom/class/part/Makefile.depend +++ b/sbin/geom/class/part/Makefile.depend @@ -8,8 +8,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libutil \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/raid/Makefile.depend b/sbin/geom/class/raid/Makefile.depend index 7c7cc94ec32f..096ef6a38bc9 100644 --- a/sbin/geom/class/raid/Makefile.depend +++ b/sbin/geom/class/raid/Makefile.depend @@ -8,8 +8,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/raid3/Makefile.depend b/sbin/geom/class/raid3/Makefile.depend index 7c7cc94ec32f..096ef6a38bc9 100644 --- a/sbin/geom/class/raid3/Makefile.depend +++ b/sbin/geom/class/raid3/Makefile.depend @@ -8,8 +8,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/sched/Makefile.depend b/sbin/geom/class/sched/Makefile.depend index d1cb1204611f..1f1fba6599ac 100644 --- a/sbin/geom/class/sched/Makefile.depend +++ b/sbin/geom/class/sched/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/shsec/Makefile.depend b/sbin/geom/class/shsec/Makefile.depend index d1cb1204611f..1f1fba6599ac 100644 --- a/sbin/geom/class/shsec/Makefile.depend +++ b/sbin/geom/class/shsec/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/stripe/Makefile.depend b/sbin/geom/class/stripe/Makefile.depend index d1cb1204611f..1f1fba6599ac 100644 --- a/sbin/geom/class/stripe/Makefile.depend +++ b/sbin/geom/class/stripe/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ + sbin/geom/core \ .include diff --git a/sbin/geom/class/virstor/Makefile.depend b/sbin/geom/class/virstor/Makefile.depend index d1cb1204611f..1f1fba6599ac 100644 --- a/sbin/geom/class/virstor/Makefile.depend +++ b/sbin/geom/class/virstor/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ + sbin/geom/core \ .include diff --git a/sbin/geom/core/Makefile.depend b/sbin/geom/core/Makefile.depend index db5f0a553db3..e45c05bdbf52 100644 --- a/sbin/geom/core/Makefile.depend +++ b/sbin/geom/core/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ lib/libsbuf \ diff --git a/sbin/ggate/ggatec/Makefile.depend b/sbin/ggate/ggatec/Makefile.depend index 12446ee94d39..f02e48a24412 100644 --- a/sbin/ggate/ggatec/Makefile.depend +++ b/sbin/ggate/ggatec/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ lib/libsbuf \ diff --git a/sbin/ggate/ggated/Makefile.depend b/sbin/ggate/ggated/Makefile.depend index 7bcfe66a2e66..5390077c5805 100644 --- a/sbin/ggate/ggated/Makefile.depend +++ b/sbin/ggate/ggated/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libthr \ lib/libutil \ diff --git a/sbin/ggate/ggatel/Makefile.depend b/sbin/ggate/ggatel/Makefile.depend index a3c94c83277f..f769d32fd3a4 100644 --- a/sbin/ggate/ggatel/Makefile.depend +++ b/sbin/ggate/ggatel/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ lib/libsbuf \ diff --git a/sbin/growfs/Makefile.depend b/sbin/growfs/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/sbin/growfs/Makefile.depend +++ b/sbin/growfs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/gvinum/Makefile.depend b/sbin/gvinum/Makefile.depend index fdd328c17488..7a3df726feb2 100644 --- a/sbin/gvinum/Makefile.depend +++ b/sbin/gvinum/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libdevstat \ lib/libedit \ lib/libedit/edit/readline \ diff --git a/sbin/hastctl/Makefile.depend b/sbin/hastctl/Makefile.depend index 072daa8c7b53..a7f85effb2ff 100644 --- a/sbin/hastctl/Makefile.depend +++ b/sbin/hastctl/Makefile.depend @@ -9,8 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ secure/lib/libcrypto \ + usr.bin/lex/lib \ .include diff --git a/sbin/hastd/Makefile.depend b/sbin/hastd/Makefile.depend index 326f871d1106..cfbc40b1270b 100644 --- a/sbin/hastd/Makefile.depend +++ b/sbin/hastd/Makefile.depend @@ -9,12 +9,14 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ lib/libsbuf \ lib/libthr \ lib/libutil \ secure/lib/libcrypto \ + usr.bin/lex/lib \ .include diff --git a/sbin/ifconfig/Makefile.depend b/sbin/ifconfig/Makefile.depend index f7e57cac41a6..81e22e1a6347 100644 --- a/sbin/ifconfig/Makefile.depend +++ b/sbin/ifconfig/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/libipx \ lib/libjail \ diff --git a/sbin/init/Makefile.depend b/sbin/init/Makefile.depend index db5bab0b1cc7..e6bd1bdc009b 100644 --- a/sbin/init/Makefile.depend +++ b/sbin/init/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ diff --git a/sbin/ipf/ipf/Makefile.depend b/sbin/ipf/ipf/Makefile.depend index 361cf169e2e0..758bc4a86581 100644 --- a/sbin/ipf/ipf/Makefile.depend +++ b/sbin/ipf/ipf/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ lib/libpcap \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipfs/Makefile.depend b/sbin/ipf/ipfs/Makefile.depend index 85a3c859f463..a529f3d9bf0d 100644 --- a/sbin/ipf/ipfs/Makefile.depend +++ b/sbin/ipf/ipfs/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipfstat/Makefile.depend b/sbin/ipf/ipfstat/Makefile.depend index d09f062aaffb..ced2fec81ba6 100644 --- a/sbin/ipf/ipfstat/Makefile.depend +++ b/sbin/ipf/ipfstat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/sbin/ipf/ipftest/Makefile.depend b/sbin/ipf/ipftest/Makefile.depend index 42f916405c69..66f35a9d7324 100644 --- a/sbin/ipf/ipftest/Makefile.depend +++ b/sbin/ipf/ipftest/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipmon/Makefile.depend b/sbin/ipf/ipmon/Makefile.depend index 28ce828c73a4..de6d116b4359 100644 --- a/sbin/ipf/ipmon/Makefile.depend +++ b/sbin/ipf/ipmon/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipnat/Makefile.depend b/sbin/ipf/ipnat/Makefile.depend index 26b88262f162..2567c30aa30a 100644 --- a/sbin/ipf/ipnat/Makefile.depend +++ b/sbin/ipf/ipnat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ippool/Makefile.depend b/sbin/ipf/ippool/Makefile.depend index a0da76e9ce70..ee54bccf27ab 100644 --- a/sbin/ipf/ippool/Makefile.depend +++ b/sbin/ipf/ippool/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipresend/Makefile.depend b/sbin/ipf/ipresend/Makefile.depend index 6c11eec2ff9c..a086482f151b 100644 --- a/sbin/ipf/ipresend/Makefile.depend +++ b/sbin/ipf/ipresend/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ lib/msun \ sbin/ipf/libipf \ diff --git a/sbin/ipfw/Makefile.depend b/sbin/ipfw/Makefile.depend index a7206c2547c0..007e48a6829b 100644 --- a/sbin/ipfw/Makefile.depend +++ b/sbin/ipfw/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libalias/libalias \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/iscontrol/Makefile.depend b/sbin/iscontrol/Makefile.depend index 2daf67fbcd1e..b4c8c6f88999 100644 --- a/sbin/iscontrol/Makefile.depend +++ b/sbin/iscontrol/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcam \ + lib/libcompiler_rt \ lib/libmd \ diff --git a/sbin/kldconfig/Makefile.depend b/sbin/kldconfig/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/kldconfig/Makefile.depend +++ b/sbin/kldconfig/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/kldload/Makefile.depend b/sbin/kldload/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/kldload/Makefile.depend +++ b/sbin/kldload/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/kldstat/Makefile.depend b/sbin/kldstat/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/sbin/kldstat/Makefile.depend +++ b/sbin/kldstat/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/kldunload/Makefile.depend b/sbin/kldunload/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/sbin/kldunload/Makefile.depend +++ b/sbin/kldunload/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/ldconfig/Makefile.depend b/sbin/ldconfig/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/ldconfig/Makefile.depend +++ b/sbin/ldconfig/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/md5/Makefile.depend b/sbin/md5/Makefile.depend index fb8b9ee55f44..5d619f8fac05 100644 --- a/sbin/md5/Makefile.depend +++ b/sbin/md5/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ diff --git a/sbin/mdconfig/Makefile.depend b/sbin/mdconfig/Makefile.depend index 0ab966c676ba..5166c2950d6d 100644 --- a/sbin/mdconfig/Makefile.depend +++ b/sbin/mdconfig/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libdevstat \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/mdmfs/Makefile.depend b/sbin/mdmfs/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/mdmfs/Makefile.depend +++ b/sbin/mdmfs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/mknod/Makefile.depend b/sbin/mknod/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/mknod/Makefile.depend +++ b/sbin/mknod/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/mksnap_ffs/Makefile.depend b/sbin/mksnap_ffs/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/mksnap_ffs/Makefile.depend +++ b/sbin/mksnap_ffs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/mount/Makefile.depend b/sbin/mount/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/sbin/mount/Makefile.depend +++ b/sbin/mount/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/mount_cd9660/Makefile.depend b/sbin/mount_cd9660/Makefile.depend index 59c6e9ac3a2b..fc61e1a87937 100644 --- a/sbin/mount_cd9660/Makefile.depend +++ b/sbin/mount_cd9660/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkiconv \ diff --git a/sbin/mount_fusefs/Makefile.depend b/sbin/mount_fusefs/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/mount_fusefs/Makefile.depend +++ b/sbin/mount_fusefs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/mount_msdosfs/Makefile.depend b/sbin/mount_msdosfs/Makefile.depend index 42948ed51f48..1c4739697605 100644 --- a/sbin/mount_msdosfs/Makefile.depend +++ b/sbin/mount_msdosfs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkiconv \ lib/libutil \ diff --git a/sbin/mount_nfs/Makefile.depend b/sbin/mount_nfs/Makefile.depend index 4f9280207819..8800879854fe 100644 --- a/sbin/mount_nfs/Makefile.depend +++ b/sbin/mount_nfs/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/mount_nullfs/Makefile.depend b/sbin/mount_nullfs/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/mount_nullfs/Makefile.depend +++ b/sbin/mount_nullfs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/mount_udf/Makefile.depend b/sbin/mount_udf/Makefile.depend index 63154a37542d..02925dbfb3c8 100644 --- a/sbin/mount_udf/Makefile.depend +++ b/sbin/mount_udf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkiconv \ diff --git a/sbin/mount_unionfs/Makefile.depend b/sbin/mount_unionfs/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/mount_unionfs/Makefile.depend +++ b/sbin/mount_unionfs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/natd/Makefile.depend b/sbin/natd/Makefile.depend index 4d2fc7ea5b55..4895a6be1adc 100644 --- a/sbin/natd/Makefile.depend +++ b/sbin/natd/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libalias/libalias \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/newfs/Makefile.depend b/sbin/newfs/Makefile.depend index 714e1cf8f959..5d3e06f00b2b 100644 --- a/sbin/newfs/Makefile.depend +++ b/sbin/newfs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libufs \ lib/libutil \ diff --git a/sbin/newfs_msdos/Makefile.depend b/sbin/newfs_msdos/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/newfs_msdos/Makefile.depend +++ b/sbin/newfs_msdos/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/nfsiod/Makefile.depend b/sbin/nfsiod/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/sbin/nfsiod/Makefile.depend +++ b/sbin/nfsiod/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/nos-tun/Makefile.depend b/sbin/nos-tun/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/sbin/nos-tun/Makefile.depend +++ b/sbin/nos-tun/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/nvmecontrol/Makefile.depend b/sbin/nvmecontrol/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/nvmecontrol/Makefile.depend +++ b/sbin/nvmecontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/pfctl/Makefile.depend b/sbin/pfctl/Makefile.depend index 7503154d0f03..2bcf5c8ba653 100644 --- a/sbin/pfctl/Makefile.depend +++ b/sbin/pfctl/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/msun \ diff --git a/sbin/pflogd/Makefile.depend b/sbin/pflogd/Makefile.depend index 51c23051c607..33251c64b4c0 100644 --- a/sbin/pflogd/Makefile.depend +++ b/sbin/pflogd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpcap \ diff --git a/sbin/ping/Makefile.depend b/sbin/ping/Makefile.depend index b8af33991711..39b873c5e2d9 100644 --- a/sbin/ping/Makefile.depend +++ b/sbin/ping/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libipsec \ lib/msun \ diff --git a/sbin/ping6/Makefile.depend b/sbin/ping6/Makefile.depend index dab6e8d69438..cabd9aaaf7e1 100644 --- a/sbin/ping6/Makefile.depend +++ b/sbin/ping6/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libipsec \ lib/libmd \ lib/msun \ diff --git a/sbin/quotacheck/Makefile.depend b/sbin/quotacheck/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/sbin/quotacheck/Makefile.depend +++ b/sbin/quotacheck/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/rcorder/Makefile.depend b/sbin/rcorder/Makefile.depend index b49935f8a8bf..ec5b06b88b13 100644 --- a/sbin/rcorder/Makefile.depend +++ b/sbin/rcorder/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/reboot/Makefile.depend b/sbin/reboot/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/reboot/Makefile.depend +++ b/sbin/reboot/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/recoverdisk/Makefile.depend b/sbin/recoverdisk/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/recoverdisk/Makefile.depend +++ b/sbin/recoverdisk/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/restore/Makefile.depend b/sbin/restore/Makefile.depend index 9bd5a4552168..591ea4c790a0 100644 --- a/sbin/restore/Makefile.depend +++ b/sbin/restore/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/route/Makefile.depend b/sbin/route/Makefile.depend index 4ddf99e46ff7..6eb2cfd3e1d4 100644 --- a/sbin/route/Makefile.depend +++ b/sbin/route/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/routed/rtquery/Makefile.depend b/sbin/routed/rtquery/Makefile.depend index 01a53c4d2e84..98a7ed97a3ba 100644 --- a/sbin/routed/rtquery/Makefile.depend +++ b/sbin/routed/rtquery/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ diff --git a/sbin/rtsol/Makefile.depend b/sbin/rtsol/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/sbin/rtsol/Makefile.depend +++ b/sbin/rtsol/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/savecore/Makefile.depend b/sbin/savecore/Makefile.depend index 0d6e068b73a8..569fd1c18b9a 100644 --- a/sbin/savecore/Makefile.depend +++ b/sbin/savecore/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libz \ diff --git a/sbin/setkey/Makefile.depend b/sbin/setkey/Makefile.depend index 0f96ef0d19fc..ca1104186a79 100644 --- a/sbin/setkey/Makefile.depend +++ b/sbin/setkey/Makefile.depend @@ -9,8 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libipsec \ lib/liby \ + usr.bin/lex/lib \ .include diff --git a/sbin/shutdown/Makefile.depend b/sbin/shutdown/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/shutdown/Makefile.depend +++ b/sbin/shutdown/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/spppcontrol/Makefile.depend b/sbin/spppcontrol/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/spppcontrol/Makefile.depend +++ b/sbin/spppcontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/swapon/Makefile.depend b/sbin/swapon/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/sbin/swapon/Makefile.depend +++ b/sbin/swapon/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/sysctl/Makefile.depend b/sbin/sysctl/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/sbin/sysctl/Makefile.depend +++ b/sbin/sysctl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/sbin/tunefs/Makefile.depend b/sbin/tunefs/Makefile.depend index 4c40401ac6e5..374b5e7b5c94 100644 --- a/sbin/tunefs/Makefile.depend +++ b/sbin/tunefs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/umount/Makefile.depend b/sbin/umount/Makefile.depend index 2f2a1c69ed2e..d074335f4466 100644 --- a/sbin/umount/Makefile.depend +++ b/sbin/umount/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/secure/lib/libcrypto/Makefile.depend b/secure/lib/libcrypto/Makefile.depend index 40f7d3c19465..c29f848fe460 100644 --- a/secure/lib/libcrypto/Makefile.depend +++ b/secure/lib/libcrypto/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend +++ b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/secure/lib/libcrypto/engines/libaep/Makefile.depend b/secure/lib/libcrypto/engines/libaep/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/secure/lib/libcrypto/engines/libaep/Makefile.depend +++ b/secure/lib/libcrypto/engines/libaep/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/secure/lib/libcrypto/engines/libatalla/Makefile.depend b/secure/lib/libcrypto/engines/libatalla/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/secure/lib/libcrypto/engines/libatalla/Makefile.depend +++ b/secure/lib/libcrypto/engines/libatalla/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/secure/lib/libcrypto/engines/libchil/Makefile.depend b/secure/lib/libcrypto/engines/libchil/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/secure/lib/libcrypto/engines/libchil/Makefile.depend +++ b/secure/lib/libcrypto/engines/libchil/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/secure/lib/libcrypto/engines/libcswift/Makefile.depend b/secure/lib/libcrypto/engines/libcswift/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/secure/lib/libcrypto/engines/libcswift/Makefile.depend +++ b/secure/lib/libcrypto/engines/libcswift/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/secure/lib/libcrypto/engines/libgost/Makefile.depend b/secure/lib/libcrypto/engines/libgost/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/secure/lib/libcrypto/engines/libgost/Makefile.depend +++ b/secure/lib/libcrypto/engines/libgost/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/secure/lib/libcrypto/engines/libnuron/Makefile.depend b/secure/lib/libcrypto/engines/libnuron/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/secure/lib/libcrypto/engines/libnuron/Makefile.depend +++ b/secure/lib/libcrypto/engines/libnuron/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/secure/lib/libcrypto/engines/libsureware/Makefile.depend b/secure/lib/libcrypto/engines/libsureware/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/secure/lib/libcrypto/engines/libsureware/Makefile.depend +++ b/secure/lib/libcrypto/engines/libsureware/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/secure/lib/libcrypto/engines/libubsec/Makefile.depend b/secure/lib/libcrypto/engines/libubsec/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/secure/lib/libcrypto/engines/libubsec/Makefile.depend +++ b/secure/lib/libcrypto/engines/libubsec/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/secure/lib/libssh/Makefile.depend b/secure/lib/libssh/Makefile.depend index 93b03305ef1d..494483b5b282 100644 --- a/secure/lib/libssh/Makefile.depend +++ b/secure/lib/libssh/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ lib/libmd \ diff --git a/secure/lib/libssl/Makefile.depend b/secure/lib/libssl/Makefile.depend index 778b5ef5b96a..2c3cff5e1329 100644 --- a/secure/lib/libssl/Makefile.depend +++ b/secure/lib/libssl/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/secure/libexec/sftp-server/Makefile.depend b/secure/libexec/sftp-server/Makefile.depend index 99b777dec6bf..e31fa30260eb 100644 --- a/secure/libexec/sftp-server/Makefile.depend +++ b/secure/libexec/sftp-server/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ lib/libutil \ diff --git a/secure/libexec/ssh-keysign/Makefile.depend b/secure/libexec/ssh-keysign/Makefile.depend index 99b777dec6bf..e31fa30260eb 100644 --- a/secure/libexec/ssh-keysign/Makefile.depend +++ b/secure/libexec/ssh-keysign/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ lib/libutil \ diff --git a/secure/libexec/ssh-pkcs11-helper/Makefile.depend b/secure/libexec/ssh-pkcs11-helper/Makefile.depend index 99b777dec6bf..e31fa30260eb 100644 --- a/secure/libexec/ssh-pkcs11-helper/Makefile.depend +++ b/secure/libexec/ssh-pkcs11-helper/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ lib/libutil \ diff --git a/secure/usr.bin/bdes/Makefile.depend b/secure/usr.bin/bdes/Makefile.depend index 9cc6bb23f470..761a02420758 100644 --- a/secure/usr.bin/bdes/Makefile.depend +++ b/secure/usr.bin/bdes/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ diff --git a/secure/usr.bin/openssl/Makefile.depend b/secure/usr.bin/openssl/Makefile.depend index a08ad37a2306..88ac4865f8fc 100644 --- a/secure/usr.bin/openssl/Makefile.depend +++ b/secure/usr.bin/openssl/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ secure/lib/libcrypto \ secure/lib/libssl \ diff --git a/secure/usr.bin/scp/Makefile.depend b/secure/usr.bin/scp/Makefile.depend index 99b777dec6bf..e31fa30260eb 100644 --- a/secure/usr.bin/scp/Makefile.depend +++ b/secure/usr.bin/scp/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ lib/libutil \ diff --git a/secure/usr.bin/sftp/Makefile.depend b/secure/usr.bin/sftp/Makefile.depend index 175a23d737dd..48894d8f77cf 100644 --- a/secure/usr.bin/sftp/Makefile.depend +++ b/secure/usr.bin/sftp/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ lib/libpam/libpam \ diff --git a/secure/usr.bin/ssh-add/Makefile.depend b/secure/usr.bin/ssh-add/Makefile.depend index 99b777dec6bf..e31fa30260eb 100644 --- a/secure/usr.bin/ssh-add/Makefile.depend +++ b/secure/usr.bin/ssh-add/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ lib/libutil \ diff --git a/secure/usr.bin/ssh-agent/Makefile.depend b/secure/usr.bin/ssh-agent/Makefile.depend index 99b777dec6bf..e31fa30260eb 100644 --- a/secure/usr.bin/ssh-agent/Makefile.depend +++ b/secure/usr.bin/ssh-agent/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ lib/libutil \ diff --git a/secure/usr.bin/ssh-keygen/Makefile.depend b/secure/usr.bin/ssh-keygen/Makefile.depend index 99b777dec6bf..e31fa30260eb 100644 --- a/secure/usr.bin/ssh-keygen/Makefile.depend +++ b/secure/usr.bin/ssh-keygen/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ lib/libutil \ diff --git a/secure/usr.bin/ssh-keyscan/Makefile.depend b/secure/usr.bin/ssh-keyscan/Makefile.depend index 99b777dec6bf..e31fa30260eb 100644 --- a/secure/usr.bin/ssh-keyscan/Makefile.depend +++ b/secure/usr.bin/ssh-keyscan/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ lib/libutil \ diff --git a/secure/usr.bin/ssh/Makefile.depend b/secure/usr.bin/ssh/Makefile.depend index ac53aefc693b..97edbeb27da7 100644 --- a/secure/usr.bin/ssh/Makefile.depend +++ b/secure/usr.bin/ssh/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ kerberos5/lib/libkrb5 \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ lib/libpam/libpam \ diff --git a/secure/usr.sbin/sshd/Makefile.depend b/secure/usr.sbin/sshd/Makefile.depend index b1bfc1354309..f6a2ce1f5e8f 100644 --- a/secure/usr.sbin/sshd/Makefile.depend +++ b/secure/usr.sbin/sshd/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ lib/libpam/libpam \ diff --git a/share/syscons/scrnmaps/Makefile.depend b/share/syscons/scrnmaps/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/share/syscons/scrnmaps/Makefile.depend +++ b/share/syscons/scrnmaps/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/apply/Makefile.depend b/usr.bin/apply/Makefile.depend index 2ee0ef13e57b..8a69c213c3c2 100644 --- a/usr.bin/apply/Makefile.depend +++ b/usr.bin/apply/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsbuf \ diff --git a/usr.bin/ar/Makefile.depend b/usr.bin/ar/Makefile.depend index 2e7747049b94..5e87915bb67b 100644 --- a/usr.bin/ar/Makefile.depend +++ b/usr.bin/ar/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libarchive \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ diff --git a/usr.bin/asa/Makefile.depend b/usr.bin/asa/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/asa/Makefile.depend +++ b/usr.bin/asa/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/at/Makefile.depend b/usr.bin/at/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/at/Makefile.depend +++ b/usr.bin/at/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/atf/atf-config/Makefile.depend b/usr.bin/atf/atf-config/Makefile.depend index 727e9ecd01e2..aa1a20886895 100644 --- a/usr.bin/atf/atf-config/Makefile.depend +++ b/usr.bin/atf/atf-config/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/atf/libatf-c \ lib/atf/libatf-c++ \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/atf/atf-report/Makefile.depend b/usr.bin/atf/atf-report/Makefile.depend index 727e9ecd01e2..aa1a20886895 100644 --- a/usr.bin/atf/atf-report/Makefile.depend +++ b/usr.bin/atf/atf-report/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/atf/libatf-c \ lib/atf/libatf-c++ \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/atf/atf-run/Makefile.depend b/usr.bin/atf/atf-run/Makefile.depend index 727e9ecd01e2..aa1a20886895 100644 --- a/usr.bin/atf/atf-run/Makefile.depend +++ b/usr.bin/atf/atf-run/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/atf/libatf-c \ lib/atf/libatf-c++ \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/atf/atf-sh/Makefile.depend b/usr.bin/atf/atf-sh/Makefile.depend index 727e9ecd01e2..aa1a20886895 100644 --- a/usr.bin/atf/atf-sh/Makefile.depend +++ b/usr.bin/atf/atf-sh/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/atf/libatf-c \ lib/atf/libatf-c++ \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/atf/atf-version/Makefile.depend b/usr.bin/atf/atf-version/Makefile.depend index f121c8b44005..d91f200c4244 100644 --- a/usr.bin/atf/atf-version/Makefile.depend +++ b/usr.bin/atf/atf-version/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/atf/libatf-c \ lib/atf/libatf-c++ \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/atm/sscop/Makefile.depend b/usr.bin/atm/sscop/Makefile.depend index 29acfd8a4d5f..f584b912ab47 100644 --- a/usr.bin/atm/sscop/Makefile.depend +++ b/usr.bin/atm/sscop/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbegemot \ lib/libc \ + lib/libcompiler_rt \ lib/libnetgraph \ lib/libngatm \ diff --git a/usr.bin/awk/Makefile.depend b/usr.bin/awk/Makefile.depend index d1d7c17b737e..6add1330aa92 100644 --- a/usr.bin/awk/Makefile.depend +++ b/usr.bin/awk/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/banner/Makefile.depend b/usr.bin/banner/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/banner/Makefile.depend +++ b/usr.bin/banner/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/basename/Makefile.depend b/usr.bin/basename/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/basename/Makefile.depend +++ b/usr.bin/basename/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/bc/Makefile.depend b/usr.bin/bc/Makefile.depend index 74fef6bfe62f..6a928de28300 100644 --- a/usr.bin/bc/Makefile.depend +++ b/usr.bin/bc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.bin/biff/Makefile.depend b/usr.bin/biff/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/biff/Makefile.depend +++ b/usr.bin/biff/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/bluetooth/bthost/Makefile.depend b/usr.bin/bluetooth/bthost/Makefile.depend index 9457f334c79f..2a95a05d0df9 100644 --- a/usr.bin/bluetooth/bthost/Makefile.depend +++ b/usr.bin/bluetooth/bthost/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/bluetooth/btsockstat/Makefile.depend b/usr.bin/bluetooth/btsockstat/Makefile.depend index 049b8d83f743..233d193fa383 100644 --- a/usr.bin/bluetooth/btsockstat/Makefile.depend +++ b/usr.bin/bluetooth/btsockstat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend index ceecdbe6dc35..71d0106e87c2 100644 --- a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend +++ b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.bin/bmake/Makefile.depend b/usr.bin/bmake/Makefile.depend index 739cf2ec7dff..154abfc2fcdc 100644 --- a/usr.bin/bmake/Makefile.depend +++ b/usr.bin/bmake/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/brandelf/Makefile.depend b/usr.bin/brandelf/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/brandelf/Makefile.depend +++ b/usr.bin/brandelf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/bsdiff/bsdiff/Makefile.depend b/usr.bin/bsdiff/bsdiff/Makefile.depend index aba373795e0b..815fd2408131 100644 --- a/usr.bin/bsdiff/bsdiff/Makefile.depend +++ b/usr.bin/bsdiff/bsdiff/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/bsdiff/bspatch/Makefile.depend b/usr.bin/bsdiff/bspatch/Makefile.depend index aba373795e0b..815fd2408131 100644 --- a/usr.bin/bsdiff/bspatch/Makefile.depend +++ b/usr.bin/bsdiff/bspatch/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/bzip2/Makefile.depend b/usr.bin/bzip2/Makefile.depend index d945720de468..f2d5926917ad 100644 --- a/usr.bin/bzip2/Makefile.depend +++ b/usr.bin/bzip2/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/bzip2recover/Makefile.depend b/usr.bin/bzip2recover/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/bzip2recover/Makefile.depend +++ b/usr.bin/bzip2recover/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/c89/Makefile.depend b/usr.bin/c89/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/c89/Makefile.depend +++ b/usr.bin/c89/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/c99/Makefile.depend b/usr.bin/c99/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/c99/Makefile.depend +++ b/usr.bin/c99/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/calendar/Makefile.depend b/usr.bin/calendar/Makefile.depend index b6a920e8f5a7..c0e2c4ad739d 100644 --- a/usr.bin/calendar/Makefile.depend +++ b/usr.bin/calendar/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/cap_mkdb/Makefile.depend b/usr.bin/cap_mkdb/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/cap_mkdb/Makefile.depend +++ b/usr.bin/cap_mkdb/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/catman/Makefile.depend b/usr.bin/catman/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/catman/Makefile.depend +++ b/usr.bin/catman/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/chat/Makefile.depend b/usr.bin/chat/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/chat/Makefile.depend +++ b/usr.bin/chat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/checknr/Makefile.depend b/usr.bin/checknr/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/checknr/Makefile.depend +++ b/usr.bin/checknr/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/chkey/Makefile.depend b/usr.bin/chkey/Makefile.depend index b00143dc5c77..c04a0a5edede 100644 --- a/usr.bin/chkey/Makefile.depend +++ b/usr.bin/chkey/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmp \ lib/librpcsvc \ secure/lib/libcrypto \ diff --git a/usr.bin/chpass/Makefile.depend b/usr.bin/chpass/Makefile.depend index e315d9cac68f..32257f856051 100644 --- a/usr.bin/chpass/Makefile.depend +++ b/usr.bin/chpass/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ lib/libypclnt \ diff --git a/usr.bin/cksum/Makefile.depend b/usr.bin/cksum/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/cksum/Makefile.depend +++ b/usr.bin/cksum/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/cmp/Makefile.depend b/usr.bin/cmp/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/cmp/Makefile.depend +++ b/usr.bin/cmp/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/col/Makefile.depend b/usr.bin/col/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/col/Makefile.depend +++ b/usr.bin/col/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/colcrt/Makefile.depend b/usr.bin/colcrt/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/colcrt/Makefile.depend +++ b/usr.bin/colcrt/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/colldef/Makefile.depend b/usr.bin/colldef/Makefile.depend index d3194b572160..99cfa04656b7 100644 --- a/usr.bin/colldef/Makefile.depend +++ b/usr.bin/colldef/Makefile.depend @@ -9,6 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ + usr.bin/lex/lib \ .include diff --git a/usr.bin/colrm/Makefile.depend b/usr.bin/colrm/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/colrm/Makefile.depend +++ b/usr.bin/colrm/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/column/Makefile.depend b/usr.bin/column/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/column/Makefile.depend +++ b/usr.bin/column/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/comm/Makefile.depend b/usr.bin/comm/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/comm/Makefile.depend +++ b/usr.bin/comm/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/compile_et/Makefile.depend b/usr.bin/compile_et/Makefile.depend index 1b29ec9ac0cd..d0a5c7cfe8da 100644 --- a/usr.bin/compile_et/Makefile.depend +++ b/usr.bin/compile_et/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/compress/Makefile.depend b/usr.bin/compress/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/compress/Makefile.depend +++ b/usr.bin/compress/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/cpio/Makefile.depend b/usr.bin/cpio/Makefile.depend index 0d41f1d58f1e..91c0c581ff74 100644 --- a/usr.bin/cpio/Makefile.depend +++ b/usr.bin/cpio/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/libarchive \ lib/libbz2 \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/liblzma \ lib/libz \ diff --git a/usr.bin/cpuset/Makefile.depend b/usr.bin/cpuset/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/cpuset/Makefile.depend +++ b/usr.bin/cpuset/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/csplit/Makefile.depend b/usr.bin/csplit/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/csplit/Makefile.depend +++ b/usr.bin/csplit/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/csup/Makefile.depend b/usr.bin/csup/Makefile.depend index 1c897981fde0..50f15cd0e6cb 100644 --- a/usr.bin/csup/Makefile.depend +++ b/usr.bin/csup/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/libthr \ lib/libz \ diff --git a/usr.bin/ctags/Makefile.depend b/usr.bin/ctags/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/ctags/Makefile.depend +++ b/usr.bin/ctags/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/ctlstat/Makefile.depend b/usr.bin/ctlstat/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/ctlstat/Makefile.depend +++ b/usr.bin/ctlstat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/cut/Makefile.depend b/usr.bin/cut/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/cut/Makefile.depend +++ b/usr.bin/cut/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/dc/Makefile.depend b/usr.bin/dc/Makefile.depend index d64957d52309..d4efe3363e45 100644 --- a/usr.bin/dc/Makefile.depend +++ b/usr.bin/dc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ secure/lib/libssl \ diff --git a/usr.bin/dig/Makefile.depend b/usr.bin/dig/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.bin/dig/Makefile.depend +++ b/usr.bin/dig/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.bin/dirname/Makefile.depend b/usr.bin/dirname/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/dirname/Makefile.depend +++ b/usr.bin/dirname/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/du/Makefile.depend b/usr.bin/du/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.bin/du/Makefile.depend +++ b/usr.bin/du/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/ee/Makefile.depend b/usr.bin/ee/Makefile.depend index a02469cc00d4..dd43fad9b357 100644 --- a/usr.bin/ee/Makefile.depend +++ b/usr.bin/ee/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/elf2aout/Makefile.depend b/usr.bin/elf2aout/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/elf2aout/Makefile.depend +++ b/usr.bin/elf2aout/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/elfdump/Makefile.depend b/usr.bin/elfdump/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/elfdump/Makefile.depend +++ b/usr.bin/elfdump/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/enigma/Makefile.depend b/usr.bin/enigma/Makefile.depend index 68e94281da52..ecfa29edb713 100644 --- a/usr.bin/enigma/Makefile.depend +++ b/usr.bin/enigma/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ diff --git a/usr.bin/env/Makefile.depend b/usr.bin/env/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/env/Makefile.depend +++ b/usr.bin/env/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/expand/Makefile.depend b/usr.bin/expand/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/expand/Makefile.depend +++ b/usr.bin/expand/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/false/Makefile.depend b/usr.bin/false/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/false/Makefile.depend +++ b/usr.bin/false/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/file/Makefile.depend b/usr.bin/file/Makefile.depend index 65c2c168676c..a88f1ac3e5e2 100644 --- a/usr.bin/file/Makefile.depend +++ b/usr.bin/file/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmagic \ lib/libz \ diff --git a/usr.bin/file2c/Makefile.depend b/usr.bin/file2c/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/file2c/Makefile.depend +++ b/usr.bin/file2c/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/find/Makefile.depend b/usr.bin/find/Makefile.depend index 962395588464..bcc0a7a3c016 100644 --- a/usr.bin/find/Makefile.depend +++ b/usr.bin/find/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/finger/Makefile.depend b/usr.bin/finger/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/finger/Makefile.depend +++ b/usr.bin/finger/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/fmt/Makefile.depend b/usr.bin/fmt/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/fmt/Makefile.depend +++ b/usr.bin/fmt/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/fold/Makefile.depend b/usr.bin/fold/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/fold/Makefile.depend +++ b/usr.bin/fold/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/from/Makefile.depend b/usr.bin/from/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/from/Makefile.depend +++ b/usr.bin/from/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/fstat/Makefile.depend b/usr.bin/fstat/Makefile.depend index 4040948b1e3d..4e70e8c882d5 100644 --- a/usr.bin/fstat/Makefile.depend +++ b/usr.bin/fstat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ lib/libprocstat \ lib/libutil \ diff --git a/usr.bin/fsync/Makefile.depend b/usr.bin/fsync/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/fsync/Makefile.depend +++ b/usr.bin/fsync/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/ftp/Makefile.depend b/usr.bin/ftp/Makefile.depend index 1c19f2449ac1..ff175d71ad8f 100644 --- a/usr.bin/ftp/Makefile.depend +++ b/usr.bin/ftp/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/libutil \ lib/ncurses/ncurses \ diff --git a/usr.bin/gcore/Makefile.depend b/usr.bin/gcore/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.bin/gcore/Makefile.depend +++ b/usr.bin/gcore/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/gencat/Makefile.depend b/usr.bin/gencat/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.bin/gencat/Makefile.depend +++ b/usr.bin/gencat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/getconf/Makefile.depend b/usr.bin/getconf/Makefile.depend index 8a2a70339e6d..57b0e222f129 100644 --- a/usr.bin/getconf/Makefile.depend +++ b/usr.bin/getconf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/getent/Makefile.depend b/usr.bin/getent/Makefile.depend index da7438897e0f..8e92349d5291 100644 --- a/usr.bin/getent/Makefile.depend +++ b/usr.bin/getent/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/getopt/Makefile.depend b/usr.bin/getopt/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/getopt/Makefile.depend +++ b/usr.bin/getopt/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/gprof/Makefile.depend b/usr.bin/gprof/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/gprof/Makefile.depend +++ b/usr.bin/gprof/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/grep/Makefile.depend b/usr.bin/grep/Makefile.depend index e85683d314fe..75c9e1296644 100644 --- a/usr.bin/grep/Makefile.depend +++ b/usr.bin/grep/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ + lib/libcompiler_rt \ lib/liblzma \ lib/libz \ diff --git a/usr.bin/gzip/Makefile.depend b/usr.bin/gzip/Makefile.depend index 79f2d3897212..2649c1675bc9 100644 --- a/usr.bin/gzip/Makefile.depend +++ b/usr.bin/gzip/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ + lib/libcompiler_rt \ lib/liblzma \ lib/libz \ diff --git a/usr.bin/head/Makefile.depend b/usr.bin/head/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/head/Makefile.depend +++ b/usr.bin/head/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/hexdump/Makefile.depend b/usr.bin/hexdump/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/hexdump/Makefile.depend +++ b/usr.bin/hexdump/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/host/Makefile.depend b/usr.bin/host/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.bin/host/Makefile.depend +++ b/usr.bin/host/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.bin/id/Makefile.depend b/usr.bin/id/Makefile.depend index 5c8cacb86cf4..86905b4e7296 100644 --- a/usr.bin/id/Makefile.depend +++ b/usr.bin/id/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/indent/Makefile.depend b/usr.bin/indent/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/indent/Makefile.depend +++ b/usr.bin/indent/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/ipcrm/Makefile.depend b/usr.bin/ipcrm/Makefile.depend index 70d796e23bfc..d65cbb5d7110 100644 --- a/usr.bin/ipcrm/Makefile.depend +++ b/usr.bin/ipcrm/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/ipcs/Makefile.depend b/usr.bin/ipcs/Makefile.depend index 70d796e23bfc..d65cbb5d7110 100644 --- a/usr.bin/ipcs/Makefile.depend +++ b/usr.bin/ipcs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/join/Makefile.depend b/usr.bin/join/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/join/Makefile.depend +++ b/usr.bin/join/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/jot/Makefile.depend b/usr.bin/jot/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/jot/Makefile.depend +++ b/usr.bin/jot/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/kdump/Makefile.depend b/usr.bin/kdump/Makefile.depend index f936f5df24a7..2ced1ce060f2 100644 --- a/usr.bin/kdump/Makefile.depend +++ b/usr.bin/kdump/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/keylogin/Makefile.depend b/usr.bin/keylogin/Makefile.depend index c405bd7fe3f5..6514930150d7 100644 --- a/usr.bin/keylogin/Makefile.depend +++ b/usr.bin/keylogin/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.bin/keylogout/Makefile.depend b/usr.bin/keylogout/Makefile.depend index 2f2a1c69ed2e..d074335f4466 100644 --- a/usr.bin/keylogout/Makefile.depend +++ b/usr.bin/keylogout/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/killall/Makefile.depend b/usr.bin/killall/Makefile.depend index 6e8de981a34a..ac8f6253c607 100644 --- a/usr.bin/killall/Makefile.depend +++ b/usr.bin/killall/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libjail \ diff --git a/usr.bin/ktrace/Makefile.depend b/usr.bin/ktrace/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/ktrace/Makefile.depend +++ b/usr.bin/ktrace/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/ktrdump/Makefile.depend b/usr.bin/ktrdump/Makefile.depend index 70d796e23bfc..d65cbb5d7110 100644 --- a/usr.bin/ktrdump/Makefile.depend +++ b/usr.bin/ktrdump/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/lam/Makefile.depend b/usr.bin/lam/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/lam/Makefile.depend +++ b/usr.bin/lam/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/last/Makefile.depend b/usr.bin/last/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/last/Makefile.depend +++ b/usr.bin/last/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/lastcomm/Makefile.depend b/usr.bin/lastcomm/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/lastcomm/Makefile.depend +++ b/usr.bin/lastcomm/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/ldd/Makefile.depend b/usr.bin/ldd/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.bin/ldd/Makefile.depend +++ b/usr.bin/ldd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/leave/Makefile.depend b/usr.bin/leave/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/leave/Makefile.depend +++ b/usr.bin/leave/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/less/Makefile.depend b/usr.bin/less/Makefile.depend index a02469cc00d4..dd43fad9b357 100644 --- a/usr.bin/less/Makefile.depend +++ b/usr.bin/less/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/lessecho/Makefile.depend b/usr.bin/lessecho/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/lessecho/Makefile.depend +++ b/usr.bin/lessecho/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/lesskey/Makefile.depend b/usr.bin/lesskey/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/lesskey/Makefile.depend +++ b/usr.bin/lesskey/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/limits/Makefile.depend b/usr.bin/limits/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.bin/limits/Makefile.depend +++ b/usr.bin/limits/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/locale/Makefile.depend b/usr.bin/locale/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/locale/Makefile.depend +++ b/usr.bin/locale/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/locate/bigram/Makefile.depend b/usr.bin/locate/bigram/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/locate/bigram/Makefile.depend +++ b/usr.bin/locate/bigram/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/locate/code/Makefile.depend b/usr.bin/locate/code/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/locate/code/Makefile.depend +++ b/usr.bin/locate/code/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/locate/locate/Makefile.depend b/usr.bin/locate/locate/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.bin/locate/locate/Makefile.depend +++ b/usr.bin/locate/locate/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/lock/Makefile.depend b/usr.bin/lock/Makefile.depend index 68e94281da52..ecfa29edb713 100644 --- a/usr.bin/lock/Makefile.depend +++ b/usr.bin/lock/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ diff --git a/usr.bin/lockf/Makefile.depend b/usr.bin/lockf/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/lockf/Makefile.depend +++ b/usr.bin/lockf/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/logger/Makefile.depend b/usr.bin/logger/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/logger/Makefile.depend +++ b/usr.bin/logger/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/login/Makefile.depend b/usr.bin/login/Makefile.depend index 133005b9e344..cc80c7c09c21 100644 --- a/usr.bin/login/Makefile.depend +++ b/usr.bin/login/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/usr.bin/logins/Makefile.depend b/usr.bin/logins/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/logins/Makefile.depend +++ b/usr.bin/logins/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/logname/Makefile.depend b/usr.bin/logname/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/logname/Makefile.depend +++ b/usr.bin/logname/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/look/Makefile.depend b/usr.bin/look/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/look/Makefile.depend +++ b/usr.bin/look/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/lsvfs/Makefile.depend b/usr.bin/lsvfs/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/lsvfs/Makefile.depend +++ b/usr.bin/lsvfs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/lzmainfo/Makefile.depend b/usr.bin/lzmainfo/Makefile.depend index e2fd14f8c004..8375ef67fd6d 100644 --- a/usr.bin/lzmainfo/Makefile.depend +++ b/usr.bin/lzmainfo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/m4/Makefile.depend b/usr.bin/m4/Makefile.depend index 42df53cc3551..6ea36dcc046d 100644 --- a/usr.bin/m4/Makefile.depend +++ b/usr.bin/m4/Makefile.depend @@ -8,8 +8,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/liby \ lib/msun \ + usr.bin/lex/lib \ .include diff --git a/usr.bin/mail/Makefile.depend b/usr.bin/mail/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/mail/Makefile.depend +++ b/usr.bin/mail/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/makewhatis/Makefile.depend b/usr.bin/makewhatis/Makefile.depend index 0d6e068b73a8..569fd1c18b9a 100644 --- a/usr.bin/makewhatis/Makefile.depend +++ b/usr.bin/makewhatis/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libz \ diff --git a/usr.bin/mandoc/Makefile.depend b/usr.bin/mandoc/Makefile.depend index d40cdc6feaf4..baa289a3eb1c 100644 --- a/usr.bin/mandoc/Makefile.depend +++ b/usr.bin/mandoc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmandoc \ diff --git a/usr.bin/mesg/Makefile.depend b/usr.bin/mesg/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/mesg/Makefile.depend +++ b/usr.bin/mesg/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/minigzip/Makefile.depend b/usr.bin/minigzip/Makefile.depend index 0d6e068b73a8..569fd1c18b9a 100644 --- a/usr.bin/minigzip/Makefile.depend +++ b/usr.bin/minigzip/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libz \ diff --git a/usr.bin/ministat/Makefile.depend b/usr.bin/ministat/Makefile.depend index b6a920e8f5a7..c0e2c4ad739d 100644 --- a/usr.bin/ministat/Makefile.depend +++ b/usr.bin/ministat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/mkfifo/Makefile.depend b/usr.bin/mkfifo/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/mkfifo/Makefile.depend +++ b/usr.bin/mkfifo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/mklocale/Makefile.depend b/usr.bin/mklocale/Makefile.depend index be00e32f017c..c534fe6ed1c6 100644 --- a/usr.bin/mklocale/Makefile.depend +++ b/usr.bin/mklocale/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/mkstr/Makefile.depend b/usr.bin/mkstr/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/mkstr/Makefile.depend +++ b/usr.bin/mkstr/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/mktemp/Makefile.depend b/usr.bin/mktemp/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/mktemp/Makefile.depend +++ b/usr.bin/mktemp/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/mkulzma/Makefile.depend b/usr.bin/mkulzma/Makefile.depend index e2fd14f8c004..8375ef67fd6d 100644 --- a/usr.bin/mkulzma/Makefile.depend +++ b/usr.bin/mkulzma/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/mkuzip/Makefile.depend b/usr.bin/mkuzip/Makefile.depend index 0d6e068b73a8..569fd1c18b9a 100644 --- a/usr.bin/mkuzip/Makefile.depend +++ b/usr.bin/mkuzip/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libz \ diff --git a/usr.bin/msgs/Makefile.depend b/usr.bin/msgs/Makefile.depend index a02469cc00d4..dd43fad9b357 100644 --- a/usr.bin/msgs/Makefile.depend +++ b/usr.bin/msgs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/mt/Makefile.depend b/usr.bin/mt/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/mt/Makefile.depend +++ b/usr.bin/mt/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/nc/Makefile.depend b/usr.bin/nc/Makefile.depend index 358d239b4229..25b01eb5a09b 100644 --- a/usr.bin/nc/Makefile.depend +++ b/usr.bin/nc/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libipsec \ diff --git a/usr.bin/ncal/Makefile.depend b/usr.bin/ncal/Makefile.depend index 6fcf625b3e4b..6f21a492a45d 100644 --- a/usr.bin/ncal/Makefile.depend +++ b/usr.bin/ncal/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcalendar \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/netstat/Makefile.depend b/usr.bin/netstat/Makefile.depend index 58161d077a6f..258cf562a2c1 100644 --- a/usr.bin/netstat/Makefile.depend +++ b/usr.bin/netstat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libipx \ lib/libkvm \ lib/libmemstat \ diff --git a/usr.bin/newgrp/Makefile.depend b/usr.bin/newgrp/Makefile.depend index cff178c56d32..1797aa74422f 100644 --- a/usr.bin/newgrp/Makefile.depend +++ b/usr.bin/newgrp/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ diff --git a/usr.bin/newkey/Makefile.depend b/usr.bin/newkey/Makefile.depend index b00143dc5c77..c04a0a5edede 100644 --- a/usr.bin/newkey/Makefile.depend +++ b/usr.bin/newkey/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmp \ lib/librpcsvc \ secure/lib/libcrypto \ diff --git a/usr.bin/nfsstat/Makefile.depend b/usr.bin/nfsstat/Makefile.depend index 70d796e23bfc..d65cbb5d7110 100644 --- a/usr.bin/nfsstat/Makefile.depend +++ b/usr.bin/nfsstat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/nice/Makefile.depend b/usr.bin/nice/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/nice/Makefile.depend +++ b/usr.bin/nice/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/nl/Makefile.depend b/usr.bin/nl/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/nl/Makefile.depend +++ b/usr.bin/nl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/nohup/Makefile.depend b/usr.bin/nohup/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/nohup/Makefile.depend +++ b/usr.bin/nohup/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/nslookup/Makefile.depend b/usr.bin/nslookup/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.bin/nslookup/Makefile.depend +++ b/usr.bin/nslookup/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.bin/nsupdate/Makefile.depend b/usr.bin/nsupdate/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.bin/nsupdate/Makefile.depend +++ b/usr.bin/nsupdate/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.bin/opieinfo/Makefile.depend b/usr.bin/opieinfo/Makefile.depend index 804790918642..4c63db9b2496 100644 --- a/usr.bin/opieinfo/Makefile.depend +++ b/usr.bin/opieinfo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/libopie \ diff --git a/usr.bin/opiekey/Makefile.depend b/usr.bin/opiekey/Makefile.depend index 804790918642..4c63db9b2496 100644 --- a/usr.bin/opiekey/Makefile.depend +++ b/usr.bin/opiekey/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/libopie \ diff --git a/usr.bin/opiepasswd/Makefile.depend b/usr.bin/opiepasswd/Makefile.depend index 804790918642..4c63db9b2496 100644 --- a/usr.bin/opiepasswd/Makefile.depend +++ b/usr.bin/opiepasswd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/libopie \ diff --git a/usr.bin/passwd/Makefile.depend b/usr.bin/passwd/Makefile.depend index 4f9591edd9e2..d12466d6a618 100644 --- a/usr.bin/passwd/Makefile.depend +++ b/usr.bin/passwd/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/usr.bin/paste/Makefile.depend b/usr.bin/paste/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/paste/Makefile.depend +++ b/usr.bin/paste/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/pathchk/Makefile.depend b/usr.bin/pathchk/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/pathchk/Makefile.depend +++ b/usr.bin/pathchk/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/perror/Makefile.depend b/usr.bin/perror/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/perror/Makefile.depend +++ b/usr.bin/perror/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/pr/Makefile.depend b/usr.bin/pr/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/pr/Makefile.depend +++ b/usr.bin/pr/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/printenv/Makefile.depend b/usr.bin/printenv/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/printenv/Makefile.depend +++ b/usr.bin/printenv/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/printf/Makefile.depend b/usr.bin/printf/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/printf/Makefile.depend +++ b/usr.bin/printf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/procstat/Makefile.depend b/usr.bin/procstat/Makefile.depend index d7524073f60b..4b8ec136cafd 100644 --- a/usr.bin/procstat/Makefile.depend +++ b/usr.bin/procstat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ lib/libprocstat \ lib/libutil \ diff --git a/usr.bin/quota/Makefile.depend b/usr.bin/quota/Makefile.depend index acb998b8aadb..f3b4295fa83f 100644 --- a/usr.bin/quota/Makefile.depend +++ b/usr.bin/quota/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/usr.bin/rctl/Makefile.depend b/usr.bin/rctl/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.bin/rctl/Makefile.depend +++ b/usr.bin/rctl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/renice/Makefile.depend b/usr.bin/renice/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/renice/Makefile.depend +++ b/usr.bin/renice/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/rev/Makefile.depend b/usr.bin/rev/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/rev/Makefile.depend +++ b/usr.bin/rev/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/revoke/Makefile.depend b/usr.bin/revoke/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/revoke/Makefile.depend +++ b/usr.bin/revoke/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/rlogin/Makefile.depend b/usr.bin/rlogin/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/rlogin/Makefile.depend +++ b/usr.bin/rlogin/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/rpcgen/Makefile.depend b/usr.bin/rpcgen/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/rpcgen/Makefile.depend +++ b/usr.bin/rpcgen/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/rpcinfo/Makefile.depend b/usr.bin/rpcinfo/Makefile.depend index da7438897e0f..8e92349d5291 100644 --- a/usr.bin/rpcinfo/Makefile.depend +++ b/usr.bin/rpcinfo/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/rs/Makefile.depend b/usr.bin/rs/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/rs/Makefile.depend +++ b/usr.bin/rs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/rsh/Makefile.depend b/usr.bin/rsh/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.bin/rsh/Makefile.depend +++ b/usr.bin/rsh/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/rup/Makefile.depend b/usr.bin/rup/Makefile.depend index e1c9bda373ab..75cde037ea8f 100644 --- a/usr.bin/rup/Makefile.depend +++ b/usr.bin/rup/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.bin/ruptime/Makefile.depend b/usr.bin/ruptime/Makefile.depend index 9bd5a4552168..591ea4c790a0 100644 --- a/usr.bin/ruptime/Makefile.depend +++ b/usr.bin/ruptime/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/rusers/Makefile.depend b/usr.bin/rusers/Makefile.depend index e1c9bda373ab..75cde037ea8f 100644 --- a/usr.bin/rusers/Makefile.depend +++ b/usr.bin/rusers/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.bin/rwall/Makefile.depend b/usr.bin/rwall/Makefile.depend index 2f2a1c69ed2e..d074335f4466 100644 --- a/usr.bin/rwall/Makefile.depend +++ b/usr.bin/rwall/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/rwho/Makefile.depend b/usr.bin/rwho/Makefile.depend index 9bd5a4552168..591ea4c790a0 100644 --- a/usr.bin/rwho/Makefile.depend +++ b/usr.bin/rwho/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/script/Makefile.depend b/usr.bin/script/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.bin/script/Makefile.depend +++ b/usr.bin/script/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/sed/Makefile.depend b/usr.bin/sed/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/sed/Makefile.depend +++ b/usr.bin/sed/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/seq/Makefile.depend b/usr.bin/seq/Makefile.depend index b6a920e8f5a7..c0e2c4ad739d 100644 --- a/usr.bin/seq/Makefile.depend +++ b/usr.bin/seq/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/showmount/Makefile.depend b/usr.bin/showmount/Makefile.depend index 2f2a1c69ed2e..d074335f4466 100644 --- a/usr.bin/showmount/Makefile.depend +++ b/usr.bin/showmount/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/sockstat/Makefile.depend b/usr.bin/sockstat/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.bin/sockstat/Makefile.depend +++ b/usr.bin/sockstat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/sort/Makefile.depend b/usr.bin/sort/Makefile.depend index f4c5aaa9759d..8e6ef04f61bf 100644 --- a/usr.bin/sort/Makefile.depend +++ b/usr.bin/sort/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/msun \ diff --git a/usr.bin/split/Makefile.depend b/usr.bin/split/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/split/Makefile.depend +++ b/usr.bin/split/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/stat/Makefile.depend b/usr.bin/stat/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/stat/Makefile.depend +++ b/usr.bin/stat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/stdbuf/Makefile.depend b/usr.bin/stdbuf/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/stdbuf/Makefile.depend +++ b/usr.bin/stdbuf/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/su/Makefile.depend b/usr.bin/su/Makefile.depend index 133005b9e344..cc80c7c09c21 100644 --- a/usr.bin/su/Makefile.depend +++ b/usr.bin/su/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/usr.bin/systat/Makefile.depend b/usr.bin/systat/Makefile.depend index b68d5ecd7023..ea1044b9c939 100644 --- a/usr.bin/systat/Makefile.depend +++ b/usr.bin/systat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ lib/msun \ diff --git a/usr.bin/tabs/Makefile.depend b/usr.bin/tabs/Makefile.depend index a02469cc00d4..dd43fad9b357 100644 --- a/usr.bin/tabs/Makefile.depend +++ b/usr.bin/tabs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tail/Makefile.depend b/usr.bin/tail/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/tail/Makefile.depend +++ b/usr.bin/tail/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/talk/Makefile.depend b/usr.bin/talk/Makefile.depend index 5ebd4eda6c01..86fad698731b 100644 --- a/usr.bin/talk/Makefile.depend +++ b/usr.bin/talk/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tar/Makefile.depend b/usr.bin/tar/Makefile.depend index 0d41f1d58f1e..91c0c581ff74 100644 --- a/usr.bin/tar/Makefile.depend +++ b/usr.bin/tar/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/libarchive \ lib/libbz2 \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/liblzma \ lib/libz \ diff --git a/usr.bin/tcopy/Makefile.depend b/usr.bin/tcopy/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/tcopy/Makefile.depend +++ b/usr.bin/tcopy/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/tee/Makefile.depend b/usr.bin/tee/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/tee/Makefile.depend +++ b/usr.bin/tee/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/telnet/Makefile.depend b/usr.bin/telnet/Makefile.depend index b87d3ac49983..a36800dfb395 100644 --- a/usr.bin/telnet/Makefile.depend +++ b/usr.bin/telnet/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libipsec \ lib/libmp \ diff --git a/usr.bin/tftp/Makefile.depend b/usr.bin/tftp/Makefile.depend index cbc8dc82ce41..0ca3031c40a5 100644 --- a/usr.bin/tftp/Makefile.depend +++ b/usr.bin/tftp/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.bin/time/Makefile.depend b/usr.bin/time/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/time/Makefile.depend +++ b/usr.bin/time/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/tip/tip/Makefile.depend b/usr.bin/tip/tip/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/tip/tip/Makefile.depend +++ b/usr.bin/tip/tip/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/top/Makefile.depend b/usr.bin/top/Makefile.depend index 4cb296006fb2..f66c56b61909 100644 --- a/usr.bin/top/Makefile.depend +++ b/usr.bin/top/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ lib/msun \ lib/ncurses/ncurses \ diff --git a/usr.bin/touch/Makefile.depend b/usr.bin/touch/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/touch/Makefile.depend +++ b/usr.bin/touch/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/tput/Makefile.depend b/usr.bin/tput/Makefile.depend index a02469cc00d4..dd43fad9b357 100644 --- a/usr.bin/tput/Makefile.depend +++ b/usr.bin/tput/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tr/Makefile.depend b/usr.bin/tr/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/tr/Makefile.depend +++ b/usr.bin/tr/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/true/Makefile.depend b/usr.bin/true/Makefile.depend index 6f5d13cf47bb..9547aa79a6f4 100644 --- a/usr.bin/true/Makefile.depend +++ b/usr.bin/true/Makefile.depend @@ -6,6 +6,7 @@ DIRDEPS = \ gnu/lib/libgcc \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/truncate/Makefile.depend b/usr.bin/truncate/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.bin/truncate/Makefile.depend +++ b/usr.bin/truncate/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/truss/Makefile.depend.amd64 b/usr.bin/truss/Makefile.depend.amd64 index aed30ada4118..2d6f867d4c8a 100644 --- a/usr.bin/truss/Makefile.depend.amd64 +++ b/usr.bin/truss/Makefile.depend.amd64 @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/tset/Makefile.depend b/usr.bin/tset/Makefile.depend index a02469cc00d4..dd43fad9b357 100644 --- a/usr.bin/tset/Makefile.depend +++ b/usr.bin/tset/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tsort/Makefile.depend b/usr.bin/tsort/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/tsort/Makefile.depend +++ b/usr.bin/tsort/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/tty/Makefile.depend b/usr.bin/tty/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/tty/Makefile.depend +++ b/usr.bin/tty/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/ul/Makefile.depend b/usr.bin/ul/Makefile.depend index a02469cc00d4..dd43fad9b357 100644 --- a/usr.bin/ul/Makefile.depend +++ b/usr.bin/ul/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/uname/Makefile.depend b/usr.bin/uname/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/uname/Makefile.depend +++ b/usr.bin/uname/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/unexpand/Makefile.depend b/usr.bin/unexpand/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/unexpand/Makefile.depend +++ b/usr.bin/unexpand/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/unifdef/Makefile.depend b/usr.bin/unifdef/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/unifdef/Makefile.depend +++ b/usr.bin/unifdef/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/uniq/Makefile.depend b/usr.bin/uniq/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/uniq/Makefile.depend +++ b/usr.bin/uniq/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/units/Makefile.depend b/usr.bin/units/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/units/Makefile.depend +++ b/usr.bin/units/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/unvis/Makefile.depend b/usr.bin/unvis/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/unvis/Makefile.depend +++ b/usr.bin/unvis/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/unzip/Makefile.depend b/usr.bin/unzip/Makefile.depend index e809b995317f..06dac81d817e 100644 --- a/usr.bin/unzip/Makefile.depend +++ b/usr.bin/unzip/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libarchive \ lib/libc \ + lib/libcompiler_rt \ lib/libz \ diff --git a/usr.bin/usbhidaction/Makefile.depend b/usr.bin/usbhidaction/Makefile.depend index e982c9bcb4b3..86ee446e313e 100644 --- a/usr.bin/usbhidaction/Makefile.depend +++ b/usr.bin/usbhidaction/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libusbhid \ diff --git a/usr.bin/usbhidctl/Makefile.depend b/usr.bin/usbhidctl/Makefile.depend index e982c9bcb4b3..86ee446e313e 100644 --- a/usr.bin/usbhidctl/Makefile.depend +++ b/usr.bin/usbhidctl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libusbhid \ diff --git a/usr.bin/users/Makefile.depend b/usr.bin/users/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/users/Makefile.depend +++ b/usr.bin/users/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/uudecode/Makefile.depend b/usr.bin/uudecode/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.bin/uudecode/Makefile.depend +++ b/usr.bin/uudecode/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/uuencode/Makefile.depend b/usr.bin/uuencode/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.bin/uuencode/Makefile.depend +++ b/usr.bin/uuencode/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/vacation/Makefile.depend b/usr.bin/vacation/Makefile.depend index 57083aafa80f..799cb2895e14 100644 --- a/usr.bin/vacation/Makefile.depend +++ b/usr.bin/vacation/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ lib/libsmutil \ diff --git a/usr.bin/vgrind/Makefile.depend b/usr.bin/vgrind/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/vgrind/Makefile.depend +++ b/usr.bin/vgrind/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/vi/Makefile.depend b/usr.bin/vi/Makefile.depend index a02469cc00d4..dd43fad9b357 100644 --- a/usr.bin/vi/Makefile.depend +++ b/usr.bin/vi/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/vis/Makefile.depend b/usr.bin/vis/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/vis/Makefile.depend +++ b/usr.bin/vis/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/vmstat/Makefile.depend b/usr.bin/vmstat/Makefile.depend index 33bcec03d0d6..8f934055b0c5 100644 --- a/usr.bin/vmstat/Makefile.depend +++ b/usr.bin/vmstat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ lib/libmemstat \ diff --git a/usr.bin/w/Makefile.depend b/usr.bin/w/Makefile.depend index d15affa68baf..963ecaeaf315 100644 --- a/usr.bin/w/Makefile.depend +++ b/usr.bin/w/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ lib/libutil \ diff --git a/usr.bin/wall/Makefile.depend b/usr.bin/wall/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/wall/Makefile.depend +++ b/usr.bin/wall/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/wc/Makefile.depend b/usr.bin/wc/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/wc/Makefile.depend +++ b/usr.bin/wc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/what/Makefile.depend b/usr.bin/what/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/what/Makefile.depend +++ b/usr.bin/what/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/whereis/Makefile.depend b/usr.bin/whereis/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/whereis/Makefile.depend +++ b/usr.bin/whereis/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/which/Makefile.depend b/usr.bin/which/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/which/Makefile.depend +++ b/usr.bin/which/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/who/Makefile.depend b/usr.bin/who/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/who/Makefile.depend +++ b/usr.bin/who/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/whois/Makefile.depend b/usr.bin/whois/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.bin/whois/Makefile.depend +++ b/usr.bin/whois/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/write/Makefile.depend b/usr.bin/write/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/write/Makefile.depend +++ b/usr.bin/write/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/xargs/Makefile.depend b/usr.bin/xargs/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/xargs/Makefile.depend +++ b/usr.bin/xargs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/xinstall/Makefile.depend b/usr.bin/xinstall/Makefile.depend index fe5eea72e31e..97ae6066098d 100644 --- a/usr.bin/xinstall/Makefile.depend +++ b/usr.bin/xinstall/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/libutil \ diff --git a/usr.bin/xlint/lint1/Makefile.depend b/usr.bin/xlint/lint1/Makefile.depend index 9fab44bc6be8..4715298eeb90 100644 --- a/usr.bin/xlint/lint1/Makefile.depend +++ b/usr.bin/xlint/lint1/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ + usr.bin/lex/lib \ .include diff --git a/usr.bin/xlint/lint2/Makefile.depend b/usr.bin/xlint/lint2/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/xlint/lint2/Makefile.depend +++ b/usr.bin/xlint/lint2/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/xlint/xlint/Makefile.depend b/usr.bin/xlint/xlint/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/xlint/xlint/Makefile.depend +++ b/usr.bin/xlint/xlint/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/xstr/Makefile.depend b/usr.bin/xstr/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/xstr/Makefile.depend +++ b/usr.bin/xstr/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/xz/Makefile.depend b/usr.bin/xz/Makefile.depend index e2fd14f8c004..8375ef67fd6d 100644 --- a/usr.bin/xz/Makefile.depend +++ b/usr.bin/xz/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/xzdec/Makefile.depend b/usr.bin/xzdec/Makefile.depend index e2fd14f8c004..8375ef67fd6d 100644 --- a/usr.bin/xzdec/Makefile.depend +++ b/usr.bin/xzdec/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/yacc/Makefile.depend b/usr.bin/yacc/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.bin/yacc/Makefile.depend +++ b/usr.bin/yacc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/yes/Makefile.depend b/usr.bin/yes/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.bin/yes/Makefile.depend +++ b/usr.bin/yes/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/ypcat/Makefile.depend b/usr.bin/ypcat/Makefile.depend index 2f2a1c69ed2e..d074335f4466 100644 --- a/usr.bin/ypcat/Makefile.depend +++ b/usr.bin/ypcat/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/ypmatch/Makefile.depend b/usr.bin/ypmatch/Makefile.depend index 2f2a1c69ed2e..d074335f4466 100644 --- a/usr.bin/ypmatch/Makefile.depend +++ b/usr.bin/ypmatch/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.bin/ypwhich/Makefile.depend b/usr.bin/ypwhich/Makefile.depend index 4f9280207819..8800879854fe 100644 --- a/usr.bin/ypwhich/Makefile.depend +++ b/usr.bin/ypwhich/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/IPXrouted/Makefile.depend b/usr.sbin/IPXrouted/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/IPXrouted/Makefile.depend +++ b/usr.sbin/IPXrouted/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/ac/Makefile.depend b/usr.sbin/ac/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/ac/Makefile.depend +++ b/usr.sbin/ac/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/accton/Makefile.depend b/usr.sbin/accton/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/accton/Makefile.depend +++ b/usr.sbin/accton/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/acpi/acpiconf/Makefile.depend b/usr.sbin/acpi/acpiconf/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/acpi/acpiconf/Makefile.depend +++ b/usr.sbin/acpi/acpiconf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/acpi/acpidb/Makefile.depend b/usr.sbin/acpi/acpidb/Makefile.depend index a34439e272da..9926a3a7caa6 100644 --- a/usr.sbin/acpi/acpidb/Makefile.depend +++ b/usr.sbin/acpi/acpidb/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ diff --git a/usr.sbin/acpi/acpidump/Makefile.depend b/usr.sbin/acpi/acpidump/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/acpi/acpidump/Makefile.depend +++ b/usr.sbin/acpi/acpidump/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/acpi/iasl/Makefile.depend b/usr.sbin/acpi/iasl/Makefile.depend index 6a6fa13f304d..8f2a22dd3e5f 100644 --- a/usr.sbin/acpi/iasl/Makefile.depend +++ b/usr.sbin/acpi/iasl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/amd/amd/Makefile.depend b/usr.sbin/amd/amd/Makefile.depend index 8b1230b5475f..f251242ceea2 100644 --- a/usr.sbin/amd/amd/Makefile.depend +++ b/usr.sbin/amd/amd/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ usr.sbin/amd/libamu \ diff --git a/usr.sbin/amd/amq/Makefile.depend b/usr.sbin/amd/amq/Makefile.depend index 10029951de91..1c84a42c87fd 100644 --- a/usr.sbin/amd/amq/Makefile.depend +++ b/usr.sbin/amd/amq/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ usr.sbin/amd/libamu \ diff --git a/usr.sbin/amd/fixmount/Makefile.depend b/usr.sbin/amd/fixmount/Makefile.depend index 3e0866508d2c..00b10ef6ddd6 100644 --- a/usr.sbin/amd/fixmount/Makefile.depend +++ b/usr.sbin/amd/fixmount/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/fsinfo/Makefile.depend b/usr.sbin/amd/fsinfo/Makefile.depend index a46cbf1e2970..875ca03a4ca9 100644 --- a/usr.sbin/amd/fsinfo/Makefile.depend +++ b/usr.sbin/amd/fsinfo/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ usr.sbin/amd/libamu \ diff --git a/usr.sbin/amd/hlfsd/Makefile.depend b/usr.sbin/amd/hlfsd/Makefile.depend index 10029951de91..1c84a42c87fd 100644 --- a/usr.sbin/amd/hlfsd/Makefile.depend +++ b/usr.sbin/amd/hlfsd/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ usr.sbin/amd/libamu \ diff --git a/usr.sbin/amd/mk-amd-map/Makefile.depend b/usr.sbin/amd/mk-amd-map/Makefile.depend index 10029951de91..1c84a42c87fd 100644 --- a/usr.sbin/amd/mk-amd-map/Makefile.depend +++ b/usr.sbin/amd/mk-amd-map/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ usr.sbin/amd/libamu \ diff --git a/usr.sbin/amd/pawd/Makefile.depend b/usr.sbin/amd/pawd/Makefile.depend index 10029951de91..1c84a42c87fd 100644 --- a/usr.sbin/amd/pawd/Makefile.depend +++ b/usr.sbin/amd/pawd/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ usr.sbin/amd/libamu \ diff --git a/usr.sbin/amd/wire-test/Makefile.depend b/usr.sbin/amd/wire-test/Makefile.depend index 10029951de91..1c84a42c87fd 100644 --- a/usr.sbin/amd/wire-test/Makefile.depend +++ b/usr.sbin/amd/wire-test/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ usr.sbin/amd/libamu \ diff --git a/usr.sbin/ancontrol/Makefile.depend b/usr.sbin/ancontrol/Makefile.depend index 7d0552bd9062..f73af6bdb0a2 100644 --- a/usr.sbin/ancontrol/Makefile.depend +++ b/usr.sbin/ancontrol/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/apm/Makefile.depend b/usr.sbin/apm/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/apm/Makefile.depend +++ b/usr.sbin/apm/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/arp/Makefile.depend b/usr.sbin/arp/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/arp/Makefile.depend +++ b/usr.sbin/arp/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/arpaname/Makefile.depend b/usr.sbin/arpaname/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/arpaname/Makefile.depend +++ b/usr.sbin/arpaname/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/asf/Makefile.depend b/usr.sbin/asf/Makefile.depend index 70d796e23bfc..d65cbb5d7110 100644 --- a/usr.sbin/asf/Makefile.depend +++ b/usr.sbin/asf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/audit/Makefile.depend b/usr.sbin/audit/Makefile.depend index 5c8cacb86cf4..86905b4e7296 100644 --- a/usr.sbin/audit/Makefile.depend +++ b/usr.sbin/audit/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/auditd/Makefile.depend b/usr.sbin/auditd/Makefile.depend index f683e4b5b74c..6930b9381da8 100644 --- a/usr.sbin/auditd/Makefile.depend +++ b/usr.sbin/auditd/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/libauditd \ lib/libbsm \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/auditreduce/Makefile.depend b/usr.sbin/auditreduce/Makefile.depend index 5c8cacb86cf4..86905b4e7296 100644 --- a/usr.sbin/auditreduce/Makefile.depend +++ b/usr.sbin/auditreduce/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/authpf/Makefile.depend b/usr.sbin/authpf/Makefile.depend index 1a0e74190d12..b13e8fa18e96 100644 --- a/usr.sbin/authpf/Makefile.depend +++ b/usr.sbin/authpf/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/bluetooth/ath3kfw/Makefile.depend b/usr.sbin/bluetooth/ath3kfw/Makefile.depend index f4f874fece1b..0deec238fc56 100644 --- a/usr.sbin/bluetooth/ath3kfw/Makefile.depend +++ b/usr.sbin/bluetooth/ath3kfw/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libusb \ diff --git a/usr.sbin/bluetooth/bcmfw/Makefile.depend b/usr.sbin/bluetooth/bcmfw/Makefile.depend index f817b0fe0e24..0fadb2183fbe 100644 --- a/usr.sbin/bluetooth/bcmfw/Makefile.depend +++ b/usr.sbin/bluetooth/bcmfw/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/bluetooth/bt3cfw/Makefile.depend b/usr.sbin/bluetooth/bt3cfw/Makefile.depend index f817b0fe0e24..0fadb2183fbe 100644 --- a/usr.sbin/bluetooth/bt3cfw/Makefile.depend +++ b/usr.sbin/bluetooth/bt3cfw/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/bluetooth/bthidcontrol/Makefile.depend b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend index 31996a36242c..9d5ce26f3e7e 100644 --- a/usr.sbin/bluetooth/bthidcontrol/Makefile.depend +++ b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ lib/libsdp \ lib/libusbhid \ diff --git a/usr.sbin/bluetooth/bthidd/Makefile.depend b/usr.sbin/bluetooth/bthidd/Makefile.depend index 4265f5e7ad91..dd522cf64a22 100644 --- a/usr.sbin/bluetooth/bthidd/Makefile.depend +++ b/usr.sbin/bluetooth/bthidd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ lib/libusbhid \ diff --git a/usr.sbin/bluetooth/btpand/Makefile.depend b/usr.sbin/bluetooth/btpand/Makefile.depend index 84dda571af73..51c0276323a3 100644 --- a/usr.sbin/bluetooth/btpand/Makefile.depend +++ b/usr.sbin/bluetooth/btpand/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ lib/libsdp \ lib/libutil \ diff --git a/usr.sbin/bluetooth/hccontrol/Makefile.depend b/usr.sbin/bluetooth/hccontrol/Makefile.depend index 9457f334c79f..2a95a05d0df9 100644 --- a/usr.sbin/bluetooth/hccontrol/Makefile.depend +++ b/usr.sbin/bluetooth/hccontrol/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/bluetooth/hcsecd/Makefile.depend b/usr.sbin/bluetooth/hcsecd/Makefile.depend index 89de53999ac2..7af5744dfd34 100644 --- a/usr.sbin/bluetooth/hcsecd/Makefile.depend +++ b/usr.sbin/bluetooth/hcsecd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/bluetooth/hcseriald/Makefile.depend b/usr.sbin/bluetooth/hcseriald/Makefile.depend index f817b0fe0e24..0fadb2183fbe 100644 --- a/usr.sbin/bluetooth/hcseriald/Makefile.depend +++ b/usr.sbin/bluetooth/hcseriald/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/bluetooth/l2control/Makefile.depend b/usr.sbin/bluetooth/l2control/Makefile.depend index 9457f334c79f..2a95a05d0df9 100644 --- a/usr.sbin/bluetooth/l2control/Makefile.depend +++ b/usr.sbin/bluetooth/l2control/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/bluetooth/l2ping/Makefile.depend b/usr.sbin/bluetooth/l2ping/Makefile.depend index c958d10a6981..1b2f1e2c7240 100644 --- a/usr.sbin/bluetooth/l2ping/Makefile.depend +++ b/usr.sbin/bluetooth/l2ping/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend index ceecdbe6dc35..71d0106e87c2 100644 --- a/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend +++ b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.sbin/bluetooth/sdpcontrol/Makefile.depend b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend index ceecdbe6dc35..71d0106e87c2 100644 --- a/usr.sbin/bluetooth/sdpcontrol/Makefile.depend +++ b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.sbin/bluetooth/sdpd/Makefile.depend b/usr.sbin/bluetooth/sdpd/Makefile.depend index e864c063d281..8724ad104b03 100644 --- a/usr.sbin/bluetooth/sdpd/Makefile.depend +++ b/usr.sbin/bluetooth/sdpd/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.sbin/boot0cfg/Makefile.depend b/usr.sbin/boot0cfg/Makefile.depend index 5f8a6c0cf014..099436d63905 100644 --- a/usr.sbin/boot0cfg/Makefile.depend +++ b/usr.sbin/boot0cfg/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ lib/libsbuf \ diff --git a/usr.sbin/bootparamd/bootparamd/Makefile.depend b/usr.sbin/bootparamd/bootparamd/Makefile.depend index 667dbd8a198c..c774bad0ac70 100644 --- a/usr.sbin/bootparamd/bootparamd/Makefile.depend +++ b/usr.sbin/bootparamd/bootparamd/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/bootparamd/callbootd/Makefile.depend b/usr.sbin/bootparamd/callbootd/Makefile.depend index 14059ea8a335..9a29bf8b8e62 100644 --- a/usr.sbin/bootparamd/callbootd/Makefile.depend +++ b/usr.sbin/bootparamd/callbootd/Makefile.depend @@ -7,9 +7,11 @@ DIRDEPS = \ include \ include/arpa \ include/rpc \ + include/rpcsvc \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/bsdinstall/distextract/Makefile.depend b/usr.sbin/bsdinstall/distextract/Makefile.depend index 7b51d6523f45..7d3e85efdbdc 100644 --- a/usr.sbin/bsdinstall/distextract/Makefile.depend +++ b/usr.sbin/bsdinstall/distextract/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libarchive \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncursesw \ diff --git a/usr.sbin/bsdinstall/distfetch/Makefile.depend b/usr.sbin/bsdinstall/distfetch/Makefile.depend index 664b45e38adc..8d38d7427c31 100644 --- a/usr.sbin/bsdinstall/distfetch/Makefile.depend +++ b/usr.sbin/bsdinstall/distfetch/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libfetch \ lib/msun \ lib/ncurses/ncursesw \ diff --git a/usr.sbin/bsdinstall/partedit/Makefile.depend b/usr.sbin/bsdinstall/partedit/Makefile.depend index 7bd84b4a7618..6fb2e121f3ca 100644 --- a/usr.sbin/bsdinstall/partedit/Makefile.depend +++ b/usr.sbin/bsdinstall/partedit/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libgeom \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/bsnmpd/bsnmpd/Makefile.depend b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend index 2a05812bfc5c..4756a45418b3 100644 --- a/usr.sbin/bsnmpd/bsnmpd/Makefile.depend +++ b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ lib/libbegemot \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ diff --git a/usr.sbin/bsnmpd/gensnmptree/Makefile.depend b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/bsnmpd/gensnmptree/Makefile.depend +++ b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend index a6d5e41f2a8e..fb4901460f3f 100644 --- a/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/bsnmpd/modules \ usr.sbin/bsnmpd/modules/snmp_mibII \ usr.sbin/bsnmpd/modules/snmp_netgraph \ diff --git a/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend index db36c09fa859..2d95ace79f8d 100644 --- a/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/bsnmpd/modules \ usr.sbin/bsnmpd/modules/snmp_mibII \ diff --git a/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend index 8edce6f52592..5158a2371cae 100644 --- a/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ lib/libdevinfo \ lib/libgeom \ lib/libkvm \ diff --git a/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend index 4f584aaabc79..f950f14c9028 100644 --- a/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend index c6b42e1f8466..d32cc0c0a114 100644 --- a/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ lib/libnetgraph \ usr.sbin/bsnmpd/modules \ diff --git a/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend index b744eb0a8ee3..7a31aae4f659 100644 --- a/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/bsnmpd/modules \ diff --git a/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend index 7ee6bc20e952..2b6c9afdf1cb 100644 --- a/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend index a7306463a97e..4ef736ec47a0 100644 --- a/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend index 680d89a53d31..36af0186eeb6 100644 --- a/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend index 2009d710c8a3..cbd984e1df08 100644 --- a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/bsnmpd/modules \ usr.sbin/bsnmpd/modules/snmp_mibII \ diff --git a/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend b/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend index bb0251d8a9bc..9ebea21d0aa5 100644 --- a/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend +++ b/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ secure/lib/libcrypto \ usr.sbin/bsnmpd/tools/libbsnmptools \ diff --git a/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend index 1f5554c679e3..a34009537f95 100644 --- a/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend +++ b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsnmp/libbsnmp \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/btxld/Makefile.depend b/usr.sbin/btxld/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/btxld/Makefile.depend +++ b/usr.sbin/btxld/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/burncd/Makefile.depend b/usr.sbin/burncd/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/burncd/Makefile.depend +++ b/usr.sbin/burncd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/cdcontrol/Makefile.depend b/usr.sbin/cdcontrol/Makefile.depend index cbc8dc82ce41..0ca3031c40a5 100644 --- a/usr.sbin/cdcontrol/Makefile.depend +++ b/usr.sbin/cdcontrol/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.sbin/chkgrp/Makefile.depend b/usr.sbin/chkgrp/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/chkgrp/Makefile.depend +++ b/usr.sbin/chkgrp/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/chown/Makefile.depend b/usr.sbin/chown/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/chown/Makefile.depend +++ b/usr.sbin/chown/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/chroot/Makefile.depend b/usr.sbin/chroot/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/chroot/Makefile.depend +++ b/usr.sbin/chroot/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/ckdist/Makefile.depend b/usr.sbin/ckdist/Makefile.depend index fb8b9ee55f44..5d619f8fac05 100644 --- a/usr.sbin/ckdist/Makefile.depend +++ b/usr.sbin/ckdist/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/clear_locks/Makefile.depend b/usr.sbin/clear_locks/Makefile.depend index c405bd7fe3f5..6514930150d7 100644 --- a/usr.sbin/clear_locks/Makefile.depend +++ b/usr.sbin/clear_locks/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/config/Makefile.depend b/usr.sbin/config/Makefile.depend index 36fb65517f0b..fff9db282af7 100644 --- a/usr.sbin/config/Makefile.depend +++ b/usr.sbin/config/Makefile.depend @@ -8,7 +8,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsbuf \ + usr.bin/lex/lib \ .include diff --git a/usr.sbin/cpucontrol/Makefile.depend b/usr.sbin/cpucontrol/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/cpucontrol/Makefile.depend +++ b/usr.sbin/cpucontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/cron/cron/Makefile.depend b/usr.sbin/cron/cron/Makefile.depend index 955bc6042329..fb8227522460 100644 --- a/usr.sbin/cron/cron/Makefile.depend +++ b/usr.sbin/cron/cron/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ usr.sbin/cron/lib \ diff --git a/usr.sbin/cron/crontab/Makefile.depend b/usr.sbin/cron/crontab/Makefile.depend index bce1e46d3dd1..f04de102faeb 100644 --- a/usr.sbin/cron/crontab/Makefile.depend +++ b/usr.sbin/cron/crontab/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/libutil \ usr.sbin/cron/lib \ diff --git a/usr.sbin/crunch/crunchgen/Makefile.depend b/usr.sbin/crunch/crunchgen/Makefile.depend index 3c4a71c6d176..f1dd969d39d9 100644 --- a/usr.sbin/crunch/crunchgen/Makefile.depend +++ b/usr.sbin/crunch/crunchgen/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/crunch/crunchide/Makefile.depend b/usr.sbin/crunch/crunchide/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/crunch/crunchide/Makefile.depend +++ b/usr.sbin/crunch/crunchide/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/ctladm/Makefile.depend b/usr.sbin/ctladm/Makefile.depend index 0ea26302910a..abbcb84aaa9f 100644 --- a/usr.sbin/ctladm/Makefile.depend +++ b/usr.sbin/ctladm/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcam \ + lib/libcompiler_rt \ lib/libexpat \ lib/libsbuf \ lib/libutil \ diff --git a/usr.sbin/ctm/ctm/Makefile.depend b/usr.sbin/ctm/ctm/Makefile.depend index fb8b9ee55f44..5d619f8fac05 100644 --- a/usr.sbin/ctm/ctm/Makefile.depend +++ b/usr.sbin/ctm/ctm/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/ctm/ctm_dequeue/Makefile.depend b/usr.sbin/ctm/ctm_dequeue/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/ctm/ctm_dequeue/Makefile.depend +++ b/usr.sbin/ctm/ctm_dequeue/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/ctm/ctm_rmail/Makefile.depend b/usr.sbin/ctm/ctm_rmail/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/ctm/ctm_rmail/Makefile.depend +++ b/usr.sbin/ctm/ctm_rmail/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/ctm/ctm_smail/Makefile.depend b/usr.sbin/ctm/ctm_smail/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/ctm/ctm_smail/Makefile.depend +++ b/usr.sbin/ctm/ctm_smail/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/daemon/Makefile.depend b/usr.sbin/daemon/Makefile.depend index 460f30796e6d..7417785c6430 100644 --- a/usr.sbin/daemon/Makefile.depend +++ b/usr.sbin/daemon/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/dconschat/Makefile.depend b/usr.sbin/dconschat/Makefile.depend index 9d37e681073a..d7113b4351cf 100644 --- a/usr.sbin/dconschat/Makefile.depend +++ b/usr.sbin/dconschat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/ddns-confgen/Makefile.depend b/usr.sbin/ddns-confgen/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/ddns-confgen/Makefile.depend +++ b/usr.sbin/ddns-confgen/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/devinfo/Makefile.depend b/usr.sbin/devinfo/Makefile.depend index 35bcca5faf82..f56fdc6cc68d 100644 --- a/usr.sbin/devinfo/Makefile.depend +++ b/usr.sbin/devinfo/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libdevinfo \ diff --git a/usr.sbin/digictl/Makefile.depend b/usr.sbin/digictl/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/digictl/Makefile.depend +++ b/usr.sbin/digictl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/diskinfo/Makefile.depend b/usr.sbin/diskinfo/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.sbin/diskinfo/Makefile.depend +++ b/usr.sbin/diskinfo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/dnssec-dsfromkey/Makefile.depend b/usr.sbin/dnssec-dsfromkey/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/dnssec-dsfromkey/Makefile.depend +++ b/usr.sbin/dnssec-dsfromkey/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/dnssec-keyfromlabel/Makefile.depend b/usr.sbin/dnssec-keyfromlabel/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/dnssec-keyfromlabel/Makefile.depend +++ b/usr.sbin/dnssec-keyfromlabel/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/dnssec-keygen/Makefile.depend b/usr.sbin/dnssec-keygen/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/dnssec-keygen/Makefile.depend +++ b/usr.sbin/dnssec-keygen/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/dnssec-revoke/Makefile.depend b/usr.sbin/dnssec-revoke/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/dnssec-revoke/Makefile.depend +++ b/usr.sbin/dnssec-revoke/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/dnssec-settime/Makefile.depend b/usr.sbin/dnssec-settime/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/dnssec-settime/Makefile.depend +++ b/usr.sbin/dnssec-settime/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/dnssec-signzone/Makefile.depend b/usr.sbin/dnssec-signzone/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/dnssec-signzone/Makefile.depend +++ b/usr.sbin/dnssec-signzone/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/dumpcis/Makefile.depend b/usr.sbin/dumpcis/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/dumpcis/Makefile.depend +++ b/usr.sbin/dumpcis/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/editmap/Makefile.depend b/usr.sbin/editmap/Makefile.depend index 081dc001ef57..fcc2f04134f9 100644 --- a/usr.sbin/editmap/Makefile.depend +++ b/usr.sbin/editmap/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ lib/libsmutil \ diff --git a/usr.sbin/edquota/Makefile.depend b/usr.sbin/edquota/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.sbin/edquota/Makefile.depend +++ b/usr.sbin/edquota/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/extattr/Makefile.depend b/usr.sbin/extattr/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.sbin/extattr/Makefile.depend +++ b/usr.sbin/extattr/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/extattrctl/Makefile.depend b/usr.sbin/extattrctl/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.sbin/extattrctl/Makefile.depend +++ b/usr.sbin/extattrctl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/faithd/Makefile.depend b/usr.sbin/faithd/Makefile.depend index f253d0a15aed..ee948eaa011e 100644 --- a/usr.sbin/faithd/Makefile.depend +++ b/usr.sbin/faithd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/fdcontrol/Makefile.depend b/usr.sbin/fdcontrol/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/fdcontrol/Makefile.depend +++ b/usr.sbin/fdcontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/fdformat/Makefile.depend b/usr.sbin/fdformat/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/fdformat/Makefile.depend +++ b/usr.sbin/fdformat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/fdread/Makefile.depend b/usr.sbin/fdread/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/fdread/Makefile.depend +++ b/usr.sbin/fdread/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/fdwrite/Makefile.depend b/usr.sbin/fdwrite/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/fdwrite/Makefile.depend +++ b/usr.sbin/fdwrite/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/fifolog/fifolog_create/Makefile.depend b/usr.sbin/fifolog/fifolog_create/Makefile.depend index 7e6c3cf17409..26ca8b56e34f 100644 --- a/usr.sbin/fifolog/fifolog_create/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_create/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ usr.sbin/fifolog/lib \ diff --git a/usr.sbin/fifolog/fifolog_reader/Makefile.depend b/usr.sbin/fifolog/fifolog_reader/Makefile.depend index 0cd3c0408804..28635880e338 100644 --- a/usr.sbin/fifolog/fifolog_reader/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_reader/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ lib/libz \ usr.sbin/fifolog/lib \ diff --git a/usr.sbin/fifolog/fifolog_writer/Makefile.depend b/usr.sbin/fifolog/fifolog_writer/Makefile.depend index 0cd3c0408804..28635880e338 100644 --- a/usr.sbin/fifolog/fifolog_writer/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_writer/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ lib/libz \ usr.sbin/fifolog/lib \ diff --git a/usr.sbin/flowctl/Makefile.depend b/usr.sbin/flowctl/Makefile.depend index 9febc4bdaa6a..2b972daf01f6 100644 --- a/usr.sbin/flowctl/Makefile.depend +++ b/usr.sbin/flowctl/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend b/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend index 38070dbcd49e..262510be803e 100644 --- a/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend +++ b/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/ftp-proxy/libevent \ diff --git a/usr.sbin/fwcontrol/Makefile.depend b/usr.sbin/fwcontrol/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/fwcontrol/Makefile.depend +++ b/usr.sbin/fwcontrol/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/genrandom/Makefile.depend b/usr.sbin/genrandom/Makefile.depend index 5f7eba975637..a1ed6b64798b 100644 --- a/usr.sbin/genrandom/Makefile.depend +++ b/usr.sbin/genrandom/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/getfmac/Makefile.depend b/usr.sbin/getfmac/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/getfmac/Makefile.depend +++ b/usr.sbin/getfmac/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/getpmac/Makefile.depend b/usr.sbin/getpmac/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/getpmac/Makefile.depend +++ b/usr.sbin/getpmac/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/gpioctl/Makefile.depend b/usr.sbin/gpioctl/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/gpioctl/Makefile.depend +++ b/usr.sbin/gpioctl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/gssd/Makefile.depend b/usr.sbin/gssd/Makefile.depend index 1a2527296d74..6771558ce4e7 100644 --- a/usr.sbin/gssd/Makefile.depend +++ b/usr.sbin/gssd/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ secure/lib/libcrypto \ diff --git a/usr.sbin/gstat/Makefile.depend b/usr.sbin/gstat/Makefile.depend index a7ea5ad4499f..4c1d38fb0a90 100644 --- a/usr.sbin/gstat/Makefile.depend +++ b/usr.sbin/gstat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libdevstat \ lib/libedit \ lib/libexpat \ diff --git a/usr.sbin/i2c/Makefile.depend b/usr.sbin/i2c/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/i2c/Makefile.depend +++ b/usr.sbin/i2c/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/ifmcstat/Makefile.depend b/usr.sbin/ifmcstat/Makefile.depend index 9d37e681073a..d7113b4351cf 100644 --- a/usr.sbin/ifmcstat/Makefile.depend +++ b/usr.sbin/ifmcstat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/inetd/Makefile.depend b/usr.sbin/inetd/Makefile.depend index ae24a874e9b2..f76682596a62 100644 --- a/usr.sbin/inetd/Makefile.depend +++ b/usr.sbin/inetd/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libipsec \ lib/libutil \ lib/libwrap \ diff --git a/usr.sbin/iostat/Makefile.depend b/usr.sbin/iostat/Makefile.depend index 1a3a6ea5031b..7078381a77e6 100644 --- a/usr.sbin/iostat/Makefile.depend +++ b/usr.sbin/iostat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ lib/msun \ diff --git a/usr.sbin/ip6addrctl/Makefile.depend b/usr.sbin/ip6addrctl/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/ip6addrctl/Makefile.depend +++ b/usr.sbin/ip6addrctl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/ipfwpcap/Makefile.depend b/usr.sbin/ipfwpcap/Makefile.depend index 51c23051c607..33251c64b4c0 100644 --- a/usr.sbin/ipfwpcap/Makefile.depend +++ b/usr.sbin/ipfwpcap/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpcap \ diff --git a/usr.sbin/isc-hmac-fixup/Makefile.depend b/usr.sbin/isc-hmac-fixup/Makefile.depend index 5f7eba975637..a1ed6b64798b 100644 --- a/usr.sbin/isc-hmac-fixup/Makefile.depend +++ b/usr.sbin/isc-hmac-fixup/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/isfctl/Makefile.depend b/usr.sbin/isfctl/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/isfctl/Makefile.depend +++ b/usr.sbin/isfctl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/jail/Makefile.depend b/usr.sbin/jail/Makefile.depend index 7876d3836430..9ac6f6869424 100644 --- a/usr.sbin/jail/Makefile.depend +++ b/usr.sbin/jail/Makefile.depend @@ -9,9 +9,11 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libjail \ lib/libkvm \ lib/libutil \ + usr.bin/lex/lib \ .include diff --git a/usr.sbin/jexec/Makefile.depend b/usr.sbin/jexec/Makefile.depend index 97f7b210d15f..beac2722e7de 100644 --- a/usr.sbin/jexec/Makefile.depend +++ b/usr.sbin/jexec/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libjail \ lib/libutil \ diff --git a/usr.sbin/jls/Makefile.depend b/usr.sbin/jls/Makefile.depend index 19fac6bcd909..b323301e7ab8 100644 --- a/usr.sbin/jls/Makefile.depend +++ b/usr.sbin/jls/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libjail \ diff --git a/usr.sbin/kbdcontrol/Makefile.depend b/usr.sbin/kbdcontrol/Makefile.depend index 1542e1df4781..49de3bc70fc0 100644 --- a/usr.sbin/kbdcontrol/Makefile.depend +++ b/usr.sbin/kbdcontrol/Makefile.depend @@ -8,6 +8,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ + usr.bin/lex/lib \ .include diff --git a/usr.sbin/kbdmap/Makefile.depend b/usr.sbin/kbdmap/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/kbdmap/Makefile.depend +++ b/usr.sbin/kbdmap/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/keyserv/Makefile.depend b/usr.sbin/keyserv/Makefile.depend index 56f52bec6306..acbf9bbc36ac 100644 --- a/usr.sbin/keyserv/Makefile.depend +++ b/usr.sbin/keyserv/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmp \ lib/librpcsvc \ secure/lib/libcrypto \ diff --git a/usr.sbin/kgmon/Makefile.depend b/usr.sbin/kgmon/Makefile.depend index 70d796e23bfc..d65cbb5d7110 100644 --- a/usr.sbin/kgmon/Makefile.depend +++ b/usr.sbin/kgmon/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/kldxref/Makefile.depend b/usr.sbin/kldxref/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/kldxref/Makefile.depend +++ b/usr.sbin/kldxref/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/lastlogin/Makefile.depend b/usr.sbin/lastlogin/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/lastlogin/Makefile.depend +++ b/usr.sbin/lastlogin/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/lmcconfig/Makefile.depend b/usr.sbin/lmcconfig/Makefile.depend index f817b0fe0e24..0fadb2183fbe 100644 --- a/usr.sbin/lmcconfig/Makefile.depend +++ b/usr.sbin/lmcconfig/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/lpr/chkprintcap/Makefile.depend b/usr.sbin/lpr/chkprintcap/Makefile.depend index e263dc7529d7..8f77f91c01d2 100644 --- a/usr.sbin/lpr/chkprintcap/Makefile.depend +++ b/usr.sbin/lpr/chkprintcap/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend +++ b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend +++ b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/lpr/filters/Makefile.depend b/usr.sbin/lpr/filters/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/lpr/filters/Makefile.depend +++ b/usr.sbin/lpr/filters/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/lpr/lpc/Makefile.depend b/usr.sbin/lpr/lpc/Makefile.depend index 3f6739af9db1..6d57f0188bb6 100644 --- a/usr.sbin/lpr/lpc/Makefile.depend +++ b/usr.sbin/lpr/lpc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lpd/Makefile.depend b/usr.sbin/lpr/lpd/Makefile.depend index 758a6e6bc9e8..0243d450e61b 100644 --- a/usr.sbin/lpr/lpd/Makefile.depend +++ b/usr.sbin/lpr/lpd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lpq/Makefile.depend b/usr.sbin/lpr/lpq/Makefile.depend index e263dc7529d7..8f77f91c01d2 100644 --- a/usr.sbin/lpr/lpq/Makefile.depend +++ b/usr.sbin/lpr/lpq/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lpr/Makefile.depend b/usr.sbin/lpr/lpr/Makefile.depend index e263dc7529d7..8f77f91c01d2 100644 --- a/usr.sbin/lpr/lpr/Makefile.depend +++ b/usr.sbin/lpr/lpr/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lprm/Makefile.depend b/usr.sbin/lpr/lprm/Makefile.depend index e263dc7529d7..8f77f91c01d2 100644 --- a/usr.sbin/lpr/lprm/Makefile.depend +++ b/usr.sbin/lpr/lprm/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lptest/Makefile.depend b/usr.sbin/lpr/lptest/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.sbin/lpr/lptest/Makefile.depend +++ b/usr.sbin/lpr/lptest/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/lpr/pac/Makefile.depend b/usr.sbin/lpr/pac/Makefile.depend index e263dc7529d7..8f77f91c01d2 100644 --- a/usr.sbin/lpr/pac/Makefile.depend +++ b/usr.sbin/lpr/pac/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lptcontrol/Makefile.depend b/usr.sbin/lptcontrol/Makefile.depend index 943a383b89f7..82222e2879c7 100644 --- a/usr.sbin/lptcontrol/Makefile.depend +++ b/usr.sbin/lptcontrol/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/mailstats/Makefile.depend b/usr.sbin/mailstats/Makefile.depend index c9e5a98fa594..86a4151e9700 100644 --- a/usr.sbin/mailstats/Makefile.depend +++ b/usr.sbin/mailstats/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsm \ lib/libsmutil \ lib/libutil \ diff --git a/usr.sbin/mailwrapper/Makefile.depend b/usr.sbin/mailwrapper/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.sbin/mailwrapper/Makefile.depend +++ b/usr.sbin/mailwrapper/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/makefs/Makefile.depend b/usr.sbin/makefs/Makefile.depend index 2ee0ef13e57b..8a69c213c3c2 100644 --- a/usr.sbin/makefs/Makefile.depend +++ b/usr.sbin/makefs/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsbuf \ diff --git a/usr.sbin/makemap/Makefile.depend b/usr.sbin/makemap/Makefile.depend index 751a401aa507..3363ae1d7261 100644 --- a/usr.sbin/makemap/Makefile.depend +++ b/usr.sbin/makemap/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ lib/libsmutil \ diff --git a/usr.sbin/memcontrol/Makefile.depend b/usr.sbin/memcontrol/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/memcontrol/Makefile.depend +++ b/usr.sbin/memcontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/mfiutil/Makefile.depend b/usr.sbin/mfiutil/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.sbin/mfiutil/Makefile.depend +++ b/usr.sbin/mfiutil/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/mixer/Makefile.depend b/usr.sbin/mixer/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/mixer/Makefile.depend +++ b/usr.sbin/mixer/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/mld6query/Makefile.depend b/usr.sbin/mld6query/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/mld6query/Makefile.depend +++ b/usr.sbin/mld6query/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/mlxcontrol/Makefile.depend b/usr.sbin/mlxcontrol/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/mlxcontrol/Makefile.depend +++ b/usr.sbin/mlxcontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/mountd/Makefile.depend b/usr.sbin/mountd/Makefile.depend index c0c681e4e179..bd7098e0b6ce 100644 --- a/usr.sbin/mountd/Makefile.depend +++ b/usr.sbin/mountd/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/moused/Makefile.depend b/usr.sbin/moused/Makefile.depend index c1ace067b2e4..ccc35b8af14f 100644 --- a/usr.sbin/moused/Makefile.depend +++ b/usr.sbin/moused/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/mptable/Makefile.depend b/usr.sbin/mptable/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/mptable/Makefile.depend +++ b/usr.sbin/mptable/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/mptutil/Makefile.depend b/usr.sbin/mptutil/Makefile.depend index 5e53403d170d..0b2207fafdc4 100644 --- a/usr.sbin/mptutil/Makefile.depend +++ b/usr.sbin/mptutil/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcam \ + lib/libcompiler_rt \ lib/libsbuf \ lib/libutil \ diff --git a/usr.sbin/mtest/Makefile.depend b/usr.sbin/mtest/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/mtest/Makefile.depend +++ b/usr.sbin/mtest/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/mtree/Makefile.depend b/usr.sbin/mtree/Makefile.depend index fb8b9ee55f44..5d619f8fac05 100644 --- a/usr.sbin/mtree/Makefile.depend +++ b/usr.sbin/mtree/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/named-checkconf/Makefile.depend b/usr.sbin/named-checkconf/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/named-checkconf/Makefile.depend +++ b/usr.sbin/named-checkconf/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/named-checkzone/Makefile.depend b/usr.sbin/named-checkzone/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/named-checkzone/Makefile.depend +++ b/usr.sbin/named-checkzone/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/named-journalprint/Makefile.depend b/usr.sbin/named-journalprint/Makefile.depend index 5f7eba975637..a1ed6b64798b 100644 --- a/usr.sbin/named-journalprint/Makefile.depend +++ b/usr.sbin/named-journalprint/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/named/Makefile.depend b/usr.sbin/named/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/named/Makefile.depend +++ b/usr.sbin/named/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/ndiscvt/Makefile.depend b/usr.sbin/ndiscvt/Makefile.depend index 974d568792b9..717e7b61a974 100644 --- a/usr.sbin/ndiscvt/Makefile.depend +++ b/usr.sbin/ndiscvt/Makefile.depend @@ -8,6 +8,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ + usr.bin/lex/lib \ .include diff --git a/usr.sbin/ndp/Makefile.depend b/usr.sbin/ndp/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/ndp/Makefile.depend +++ b/usr.sbin/ndp/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/newsyslog/Makefile.depend b/usr.sbin/newsyslog/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/newsyslog/Makefile.depend +++ b/usr.sbin/newsyslog/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/nfscbd/Makefile.depend b/usr.sbin/nfscbd/Makefile.depend index 20333808ad27..0de3a4ae3d33 100644 --- a/usr.sbin/nfscbd/Makefile.depend +++ b/usr.sbin/nfscbd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/nfsd/Makefile.depend b/usr.sbin/nfsd/Makefile.depend index 4f9280207819..8800879854fe 100644 --- a/usr.sbin/nfsd/Makefile.depend +++ b/usr.sbin/nfsd/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/nfsdumpstate/Makefile.depend b/usr.sbin/nfsdumpstate/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/nfsdumpstate/Makefile.depend +++ b/usr.sbin/nfsdumpstate/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/nfsrevoke/Makefile.depend b/usr.sbin/nfsrevoke/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/nfsrevoke/Makefile.depend +++ b/usr.sbin/nfsrevoke/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/nfsuserd/Makefile.depend b/usr.sbin/nfsuserd/Makefile.depend index 20333808ad27..0de3a4ae3d33 100644 --- a/usr.sbin/nfsuserd/Makefile.depend +++ b/usr.sbin/nfsuserd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/ngctl/Makefile.depend b/usr.sbin/ngctl/Makefile.depend index cb91a9dd936a..272b5cc87938 100644 --- a/usr.sbin/ngctl/Makefile.depend +++ b/usr.sbin/ngctl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/libnetgraph \ lib/libthr \ diff --git a/usr.sbin/nghook/Makefile.depend b/usr.sbin/nghook/Makefile.depend index f817b0fe0e24..0fadb2183fbe 100644 --- a/usr.sbin/nghook/Makefile.depend +++ b/usr.sbin/nghook/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/nologin/Makefile.depend b/usr.sbin/nologin/Makefile.depend index 39dee2d206cb..6871eb59a0e8 100644 --- a/usr.sbin/nologin/Makefile.depend +++ b/usr.sbin/nologin/Makefile.depend @@ -6,6 +6,7 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/nscd/Makefile.depend b/usr.sbin/nscd/Makefile.depend index 394e5fa0e46c..a4729648ced7 100644 --- a/usr.sbin/nscd/Makefile.depend +++ b/usr.sbin/nscd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/nsec3hash/Makefile.depend b/usr.sbin/nsec3hash/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/nsec3hash/Makefile.depend +++ b/usr.sbin/nsec3hash/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/ntp/ntp-keygen/Makefile.depend b/usr.sbin/ntp/ntp-keygen/Makefile.depend index ca0436811fad..83e463362acf 100644 --- a/usr.sbin/ntp/ntp-keygen/Makefile.depend +++ b/usr.sbin/ntp/ntp-keygen/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ secure/lib/libcrypto \ usr.sbin/ntp/libntp \ diff --git a/usr.sbin/ntp/ntpd/Makefile.depend b/usr.sbin/ntp/ntpd/Makefile.depend index be282676f6fc..3c9274aaff61 100644 --- a/usr.sbin/ntp/ntpd/Makefile.depend +++ b/usr.sbin/ntp/ntpd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/librt \ lib/msun \ diff --git a/usr.sbin/ntp/ntpdate/Makefile.depend b/usr.sbin/ntp/ntpdate/Makefile.depend index a051305b44f3..da518fb7554e 100644 --- a/usr.sbin/ntp/ntpdate/Makefile.depend +++ b/usr.sbin/ntp/ntpdate/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/librt \ lib/msun \ diff --git a/usr.sbin/ntp/ntpdc/Makefile.depend b/usr.sbin/ntp/ntpdc/Makefile.depend index d253fe876eb8..69a85599b00c 100644 --- a/usr.sbin/ntp/ntpdc/Makefile.depend +++ b/usr.sbin/ntp/ntpdc/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/libedit/edit/readline \ lib/libmd \ diff --git a/usr.sbin/ntp/ntpq/Makefile.depend b/usr.sbin/ntp/ntpq/Makefile.depend index d253fe876eb8..69a85599b00c 100644 --- a/usr.sbin/ntp/ntpq/Makefile.depend +++ b/usr.sbin/ntp/ntpq/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/libedit/edit/readline \ lib/libmd \ diff --git a/usr.sbin/ntp/ntptime/Makefile.depend b/usr.sbin/ntp/ntptime/Makefile.depend index cf5b9b8d8e53..f0385c9962ac 100644 --- a/usr.sbin/ntp/ntptime/Makefile.depend +++ b/usr.sbin/ntp/ntptime/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ usr.sbin/ntp/libntp \ diff --git a/usr.sbin/ntp/sntp/Makefile.depend b/usr.sbin/ntp/sntp/Makefile.depend index eb9c73c0bf62..4433894e8af9 100644 --- a/usr.sbin/ntp/sntp/Makefile.depend +++ b/usr.sbin/ntp/sntp/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ usr.sbin/ntp/libopts \ diff --git a/usr.sbin/pciconf/Makefile.depend b/usr.sbin/pciconf/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/pciconf/Makefile.depend +++ b/usr.sbin/pciconf/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/pkg/Makefile.depend b/usr.sbin/pkg/Makefile.depend index 242e091099c8..577a6ea1c4eb 100644 --- a/usr.sbin/pkg/Makefile.depend +++ b/usr.sbin/pkg/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libarchive \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ lib/libfetch \ diff --git a/usr.sbin/pkg_install/add/Makefile.depend b/usr.sbin/pkg_install/add/Makefile.depend index 69f311929486..9507bb244572 100644 --- a/usr.sbin/pkg_install/add/Makefile.depend +++ b/usr.sbin/pkg_install/add/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libfetch \ lib/libmd \ lib/libutil \ diff --git a/usr.sbin/pkg_install/create/Makefile.depend b/usr.sbin/pkg_install/create/Makefile.depend index 5582399be1e8..86f84fed8e3d 100644 --- a/usr.sbin/pkg_install/create/Makefile.depend +++ b/usr.sbin/pkg_install/create/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/libutil \ usr.sbin/pkg_install/lib \ diff --git a/usr.sbin/pkg_install/delete/Makefile.depend b/usr.sbin/pkg_install/delete/Makefile.depend index 5582399be1e8..86f84fed8e3d 100644 --- a/usr.sbin/pkg_install/delete/Makefile.depend +++ b/usr.sbin/pkg_install/delete/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libmd \ lib/libutil \ usr.sbin/pkg_install/lib \ diff --git a/usr.sbin/pkg_install/info/Makefile.depend b/usr.sbin/pkg_install/info/Makefile.depend index 69f311929486..9507bb244572 100644 --- a/usr.sbin/pkg_install/info/Makefile.depend +++ b/usr.sbin/pkg_install/info/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libfetch \ lib/libmd \ lib/libutil \ diff --git a/usr.sbin/pkg_install/updating/Makefile.depend b/usr.sbin/pkg_install/updating/Makefile.depend index 69f311929486..9507bb244572 100644 --- a/usr.sbin/pkg_install/updating/Makefile.depend +++ b/usr.sbin/pkg_install/updating/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libfetch \ lib/libmd \ lib/libutil \ diff --git a/usr.sbin/pkg_install/version/Makefile.depend b/usr.sbin/pkg_install/version/Makefile.depend index 69f311929486..9507bb244572 100644 --- a/usr.sbin/pkg_install/version/Makefile.depend +++ b/usr.sbin/pkg_install/version/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libfetch \ lib/libmd \ lib/libutil \ diff --git a/usr.sbin/pmcannotate/Makefile.depend b/usr.sbin/pmcannotate/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/pmcannotate/Makefile.depend +++ b/usr.sbin/pmcannotate/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/pmccontrol/Makefile.depend b/usr.sbin/pmccontrol/Makefile.depend index e192d41bf6f9..6a9aed0d32d9 100644 --- a/usr.sbin/pmccontrol/Makefile.depend +++ b/usr.sbin/pmccontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpmc \ diff --git a/usr.sbin/pmcstat/Makefile.depend b/usr.sbin/pmcstat/Makefile.depend index 6511c0634142..bed53d87edb3 100644 --- a/usr.sbin/pmcstat/Makefile.depend +++ b/usr.sbin/pmcstat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libelf \ lib/libkvm \ lib/libpmc \ diff --git a/usr.sbin/portsnap/make_index/Makefile.depend b/usr.sbin/portsnap/make_index/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/portsnap/make_index/Makefile.depend +++ b/usr.sbin/portsnap/make_index/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/portsnap/phttpget/Makefile.depend b/usr.sbin/portsnap/phttpget/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/portsnap/phttpget/Makefile.depend +++ b/usr.sbin/portsnap/phttpget/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/powerd/Makefile.depend b/usr.sbin/powerd/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.sbin/powerd/Makefile.depend +++ b/usr.sbin/powerd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/ppp/Makefile.depend b/usr.sbin/ppp/Makefile.depend index b942b109ced8..24931b03655f 100644 --- a/usr.sbin/ppp/Makefile.depend +++ b/usr.sbin/ppp/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libalias/libalias \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libmd \ lib/libnetgraph \ diff --git a/usr.sbin/pppctl/Makefile.depend b/usr.sbin/pppctl/Makefile.depend index 8d0379090391..7df722139e91 100644 --- a/usr.sbin/pppctl/Makefile.depend +++ b/usr.sbin/pppctl/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/libthr \ lib/ncurses/ncurses \ diff --git a/usr.sbin/praliases/Makefile.depend b/usr.sbin/praliases/Makefile.depend index 5bb640428218..7c8c5bc0ced6 100644 --- a/usr.sbin/praliases/Makefile.depend +++ b/usr.sbin/praliases/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ lib/libsmutil \ diff --git a/usr.sbin/praudit/Makefile.depend b/usr.sbin/praudit/Makefile.depend index 5c8cacb86cf4..86905b4e7296 100644 --- a/usr.sbin/praudit/Makefile.depend +++ b/usr.sbin/praudit/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/procctl/Makefile.depend b/usr.sbin/procctl/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/procctl/Makefile.depend +++ b/usr.sbin/procctl/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/pstat/Makefile.depend b/usr.sbin/pstat/Makefile.depend index b31da2391c20..8ab5cd4582a1 100644 --- a/usr.sbin/pstat/Makefile.depend +++ b/usr.sbin/pstat/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ lib/libutil \ diff --git a/usr.sbin/pw/Makefile.depend b/usr.sbin/pw/Makefile.depend index cff178c56d32..1797aa74422f 100644 --- a/usr.sbin/pw/Makefile.depend +++ b/usr.sbin/pw/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ diff --git a/usr.sbin/pwd_mkdb/Makefile.depend b/usr.sbin/pwd_mkdb/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/pwd_mkdb/Makefile.depend +++ b/usr.sbin/pwd_mkdb/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/quot/Makefile.depend b/usr.sbin/quot/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/quot/Makefile.depend +++ b/usr.sbin/quot/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/quotaon/Makefile.depend b/usr.sbin/quotaon/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.sbin/quotaon/Makefile.depend +++ b/usr.sbin/quotaon/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/rarpd/Makefile.depend b/usr.sbin/rarpd/Makefile.depend index f253d0a15aed..ee948eaa011e 100644 --- a/usr.sbin/rarpd/Makefile.depend +++ b/usr.sbin/rarpd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/repquota/Makefile.depend b/usr.sbin/repquota/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.sbin/repquota/Makefile.depend +++ b/usr.sbin/repquota/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/rip6query/Makefile.depend b/usr.sbin/rip6query/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/rip6query/Makefile.depend +++ b/usr.sbin/rip6query/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/rmt/Makefile.depend b/usr.sbin/rmt/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/rmt/Makefile.depend +++ b/usr.sbin/rmt/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/rndc-confgen/Makefile.depend b/usr.sbin/rndc-confgen/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/rndc-confgen/Makefile.depend +++ b/usr.sbin/rndc-confgen/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/rndc/Makefile.depend b/usr.sbin/rndc/Makefile.depend index 570d683102b2..3740d8204809 100644 --- a/usr.sbin/rndc/Makefile.depend +++ b/usr.sbin/rndc/Makefile.depend @@ -15,6 +15,7 @@ DIRDEPS = \ lib/bind/isccfg \ lib/bind/lwres \ lib/libc \ + lib/libcompiler_rt \ lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/route6d/Makefile.depend b/usr.sbin/route6d/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/route6d/Makefile.depend +++ b/usr.sbin/route6d/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/rpc.lockd/Makefile.depend b/usr.sbin/rpc.lockd/Makefile.depend index 926b8a27582c..3c9d7a38f9ec 100644 --- a/usr.sbin/rpc.lockd/Makefile.depend +++ b/usr.sbin/rpc.lockd/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/usr.sbin/rpc.statd/Makefile.depend b/usr.sbin/rpc.statd/Makefile.depend index 08f029fca20b..74608330b620 100644 --- a/usr.sbin/rpc.statd/Makefile.depend +++ b/usr.sbin/rpc.statd/Makefile.depend @@ -7,9 +7,11 @@ DIRDEPS = \ include \ include/arpa \ include/rpc \ + include/rpcsvc \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/rpc.umntall/Makefile.depend b/usr.sbin/rpc.umntall/Makefile.depend index 2f2a1c69ed2e..d074335f4466 100644 --- a/usr.sbin/rpc.umntall/Makefile.depend +++ b/usr.sbin/rpc.umntall/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/rpc.yppasswdd/Makefile.depend b/usr.sbin/rpc.yppasswdd/Makefile.depend index 097f4464eff9..d8b9fa8fcb51 100644 --- a/usr.sbin/rpc.yppasswdd/Makefile.depend +++ b/usr.sbin/rpc.yppasswdd/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libcrypt \ lib/librpcsvc \ lib/libutil \ diff --git a/usr.sbin/rpc.ypupdated/Makefile.depend b/usr.sbin/rpc.ypupdated/Makefile.depend index 3f47be70fece..b88e71079efb 100644 --- a/usr.sbin/rpc.ypupdated/Makefile.depend +++ b/usr.sbin/rpc.ypupdated/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/rpc.ypxfrd/Makefile.depend b/usr.sbin/rpc.ypxfrd/Makefile.depend index 5a9e421908a5..48f98922bdad 100644 --- a/usr.sbin/rpc.ypxfrd/Makefile.depend +++ b/usr.sbin/rpc.ypxfrd/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/rpcbind/Makefile.depend b/usr.sbin/rpcbind/Makefile.depend index 02101272db72..2503b486bf4e 100644 --- a/usr.sbin/rpcbind/Makefile.depend +++ b/usr.sbin/rpcbind/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ lib/libwrap \ diff --git a/usr.sbin/rrenumd/Makefile.depend b/usr.sbin/rrenumd/Makefile.depend index 13bf89612d3a..368f2482f09d 100644 --- a/usr.sbin/rrenumd/Makefile.depend +++ b/usr.sbin/rrenumd/Makefile.depend @@ -9,8 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libipsec \ lib/liby \ + usr.bin/lex/lib \ .include diff --git a/usr.sbin/rtadvctl/Makefile.depend b/usr.sbin/rtadvctl/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/rtadvctl/Makefile.depend +++ b/usr.sbin/rtadvctl/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/rtadvd/Makefile.depend b/usr.sbin/rtadvd/Makefile.depend index f253d0a15aed..ee948eaa011e 100644 --- a/usr.sbin/rtadvd/Makefile.depend +++ b/usr.sbin/rtadvd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/rtprio/Makefile.depend b/usr.sbin/rtprio/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/rtprio/Makefile.depend +++ b/usr.sbin/rtprio/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/rtsold/Makefile.depend b/usr.sbin/rtsold/Makefile.depend index 9d37e681073a..d7113b4351cf 100644 --- a/usr.sbin/rtsold/Makefile.depend +++ b/usr.sbin/rtsold/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/rwhod/Makefile.depend b/usr.sbin/rwhod/Makefile.depend index 43b5ccc56c3f..48e46367c59a 100644 --- a/usr.sbin/rwhod/Makefile.depend +++ b/usr.sbin/rwhod/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/sa/Makefile.depend b/usr.sbin/sa/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/sa/Makefile.depend +++ b/usr.sbin/sa/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/sendmail/Makefile.depend b/usr.sbin/sendmail/Makefile.depend index 8cf93690c293..f8c574cf28ff 100644 --- a/usr.sbin/sendmail/Makefile.depend +++ b/usr.sbin/sendmail/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libsm \ lib/libsmutil \ lib/libutil \ diff --git a/usr.sbin/services_mkdb/Makefile.depend b/usr.sbin/services_mkdb/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.sbin/services_mkdb/Makefile.depend +++ b/usr.sbin/services_mkdb/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/setfib/Makefile.depend b/usr.sbin/setfib/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/setfib/Makefile.depend +++ b/usr.sbin/setfib/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/setfmac/Makefile.depend b/usr.sbin/setfmac/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/setfmac/Makefile.depend +++ b/usr.sbin/setfmac/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/setpmac/Makefile.depend b/usr.sbin/setpmac/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/setpmac/Makefile.depend +++ b/usr.sbin/setpmac/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/sicontrol/Makefile.depend b/usr.sbin/sicontrol/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/sicontrol/Makefile.depend +++ b/usr.sbin/sicontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/smbmsg/Makefile.depend b/usr.sbin/smbmsg/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/smbmsg/Makefile.depend +++ b/usr.sbin/smbmsg/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/snapinfo/Makefile.depend b/usr.sbin/snapinfo/Makefile.depend index 4c40401ac6e5..374b5e7b5c94 100644 --- a/usr.sbin/snapinfo/Makefile.depend +++ b/usr.sbin/snapinfo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libufs \ diff --git a/usr.sbin/spray/Makefile.depend b/usr.sbin/spray/Makefile.depend index c405bd7fe3f5..6514930150d7 100644 --- a/usr.sbin/spray/Makefile.depend +++ b/usr.sbin/spray/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/syslogd/Makefile.depend b/usr.sbin/syslogd/Makefile.depend index f253d0a15aed..ee948eaa011e 100644 --- a/usr.sbin/syslogd/Makefile.depend +++ b/usr.sbin/syslogd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/tcpdchk/Makefile.depend b/usr.sbin/tcpdchk/Makefile.depend index f35353153c9c..74a1dd9afe70 100644 --- a/usr.sbin/tcpdchk/Makefile.depend +++ b/usr.sbin/tcpdchk/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ diff --git a/usr.sbin/tcpdmatch/Makefile.depend b/usr.sbin/tcpdmatch/Makefile.depend index f35353153c9c..74a1dd9afe70 100644 --- a/usr.sbin/tcpdmatch/Makefile.depend +++ b/usr.sbin/tcpdmatch/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ diff --git a/usr.sbin/tcpdrop/Makefile.depend b/usr.sbin/tcpdrop/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/tcpdrop/Makefile.depend +++ b/usr.sbin/tcpdrop/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/tcpdump/tcpdump/Makefile.depend b/usr.sbin/tcpdump/tcpdump/Makefile.depend index 70cbba11de48..91bd6d387bd7 100644 --- a/usr.sbin/tcpdump/tcpdump/Makefile.depend +++ b/usr.sbin/tcpdump/tcpdump/Makefile.depend @@ -10,8 +10,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpcap \ secure/lib/libcrypto \ + usr.bin/lex/lib \ .include diff --git a/usr.sbin/timed/timed/Makefile.depend b/usr.sbin/timed/timed/Makefile.depend index 0f1a53cc1e4f..87c803cdcc89 100644 --- a/usr.sbin/timed/timed/Makefile.depend +++ b/usr.sbin/timed/timed/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/timed/timedc/Makefile.depend b/usr.sbin/timed/timedc/Makefile.depend index 43b5ccc56c3f..48e46367c59a 100644 --- a/usr.sbin/timed/timedc/Makefile.depend +++ b/usr.sbin/timed/timedc/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/traceroute/Makefile.depend b/usr.sbin/traceroute/Makefile.depend index 45e13efc19c8..a34f13856acd 100644 --- a/usr.sbin/traceroute/Makefile.depend +++ b/usr.sbin/traceroute/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libipsec \ diff --git a/usr.sbin/traceroute6/Makefile.depend b/usr.sbin/traceroute6/Makefile.depend index 358d239b4229..25b01eb5a09b 100644 --- a/usr.sbin/traceroute6/Makefile.depend +++ b/usr.sbin/traceroute6/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libipsec \ diff --git a/usr.sbin/trpt/Makefile.depend b/usr.sbin/trpt/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/trpt/Makefile.depend +++ b/usr.sbin/trpt/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/tzsetup/Makefile.depend b/usr.sbin/tzsetup/Makefile.depend index adbf705a4046..35a0b670a376 100644 --- a/usr.sbin/tzsetup/Makefile.depend +++ b/usr.sbin/tzsetup/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncursesw \ diff --git a/usr.sbin/uathload/Makefile.depend b/usr.sbin/uathload/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/uathload/Makefile.depend +++ b/usr.sbin/uathload/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/ugidfw/Makefile.depend b/usr.sbin/ugidfw/Makefile.depend index 300b64999a55..d0b08acfebf4 100644 --- a/usr.sbin/ugidfw/Makefile.depend +++ b/usr.sbin/ugidfw/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libugidfw \ diff --git a/usr.sbin/uhsoctl/Makefile.depend b/usr.sbin/uhsoctl/Makefile.depend index f253d0a15aed..ee948eaa011e 100644 --- a/usr.sbin/uhsoctl/Makefile.depend +++ b/usr.sbin/uhsoctl/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/usbconfig/Makefile.depend b/usr.sbin/usbconfig/Makefile.depend index f4f874fece1b..0deec238fc56 100644 --- a/usr.sbin/usbconfig/Makefile.depend +++ b/usr.sbin/usbconfig/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libusb \ diff --git a/usr.sbin/usbdump/Makefile.depend b/usr.sbin/usbdump/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/usbdump/Makefile.depend +++ b/usr.sbin/usbdump/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/utx/Makefile.depend b/usr.sbin/utx/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/utx/Makefile.depend +++ b/usr.sbin/utx/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/vidcontrol/Makefile.depend b/usr.sbin/vidcontrol/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/vidcontrol/Makefile.depend +++ b/usr.sbin/vidcontrol/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/vipw/Makefile.depend b/usr.sbin/vipw/Makefile.depend index 9eb5e857442f..afbe02588041 100644 --- a/usr.sbin/vipw/Makefile.depend +++ b/usr.sbin/vipw/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/wake/Makefile.depend b/usr.sbin/wake/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/wake/Makefile.depend +++ b/usr.sbin/wake/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/watch/Makefile.depend b/usr.sbin/watch/Makefile.depend index a02469cc00d4..dd43fad9b357 100644 --- a/usr.sbin/watch/Makefile.depend +++ b/usr.sbin/watch/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.sbin/watchdogd/Makefile.depend b/usr.sbin/watchdogd/Makefile.depend index c1ace067b2e4..ccc35b8af14f 100644 --- a/usr.sbin/watchdogd/Makefile.depend +++ b/usr.sbin/watchdogd/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/wlandebug/Makefile.depend b/usr.sbin/wlandebug/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/wlandebug/Makefile.depend +++ b/usr.sbin/wlandebug/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/wpa/hostapd/Makefile.depend b/usr.sbin/wpa/hostapd/Makefile.depend index 82fe1dccb006..4d8f09c4314f 100644 --- a/usr.sbin/wpa/hostapd/Makefile.depend +++ b/usr.sbin/wpa/hostapd/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpcap \ secure/lib/libcrypto \ secure/lib/libssl \ diff --git a/usr.sbin/wpa/hostapd_cli/Makefile.depend b/usr.sbin/wpa/hostapd_cli/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/wpa/hostapd_cli/Makefile.depend +++ b/usr.sbin/wpa/hostapd_cli/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/wpa/ndis_events/Makefile.depend b/usr.sbin/wpa/ndis_events/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/wpa/ndis_events/Makefile.depend +++ b/usr.sbin/wpa/ndis_events/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/wpa/wpa_cli/Makefile.depend b/usr.sbin/wpa/wpa_cli/Makefile.depend index 035d9ccd48a6..b9f4c018df24 100644 --- a/usr.sbin/wpa/wpa_cli/Makefile.depend +++ b/usr.sbin/wpa/wpa_cli/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libedit \ lib/libedit/edit/readline \ lib/ncurses/ncurses \ diff --git a/usr.sbin/wpa/wpa_passphrase/Makefile.depend b/usr.sbin/wpa/wpa_passphrase/Makefile.depend index dc36998105c4..26cf1959f6fe 100644 --- a/usr.sbin/wpa/wpa_passphrase/Makefile.depend +++ b/usr.sbin/wpa/wpa_passphrase/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/wpa/wpa_supplicant/Makefile.depend b/usr.sbin/wpa/wpa_supplicant/Makefile.depend index 82fe1dccb006..4d8f09c4314f 100644 --- a/usr.sbin/wpa/wpa_supplicant/Makefile.depend +++ b/usr.sbin/wpa/wpa_supplicant/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libpcap \ secure/lib/libcrypto \ secure/lib/libssl \ diff --git a/usr.sbin/yp_mkdb/Makefile.depend b/usr.sbin/yp_mkdb/Makefile.depend index 2f2a1c69ed2e..d074335f4466 100644 --- a/usr.sbin/yp_mkdb/Makefile.depend +++ b/usr.sbin/yp_mkdb/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/ypbind/Makefile.depend b/usr.sbin/ypbind/Makefile.depend index 4f9280207819..8800879854fe 100644 --- a/usr.sbin/ypbind/Makefile.depend +++ b/usr.sbin/ypbind/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/yppoll/Makefile.depend b/usr.sbin/yppoll/Makefile.depend index 2f2a1c69ed2e..d074335f4466 100644 --- a/usr.sbin/yppoll/Makefile.depend +++ b/usr.sbin/yppoll/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/yppush/Makefile.depend b/usr.sbin/yppush/Makefile.depend index 4ba04081ccc2..a13e0bc329c8 100644 --- a/usr.sbin/yppush/Makefile.depend +++ b/usr.sbin/yppush/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/ypserv/Makefile.depend b/usr.sbin/ypserv/Makefile.depend index 81513424201a..9748bb8e6261 100644 --- a/usr.sbin/ypserv/Makefile.depend +++ b/usr.sbin/ypserv/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/libwrap \ diff --git a/usr.sbin/ypset/Makefile.depend b/usr.sbin/ypset/Makefile.depend index 4f9280207819..8800879854fe 100644 --- a/usr.sbin/ypset/Makefile.depend +++ b/usr.sbin/ypset/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/zic/zdump/Makefile.depend b/usr.sbin/zic/zdump/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/zic/zdump/Makefile.depend +++ b/usr.sbin/zic/zdump/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/usr.sbin/zic/zic/Makefile.depend b/usr.sbin/zic/zic/Makefile.depend index 61e5f50bc12b..65ce5679ccda 100644 --- a/usr.sbin/zic/zic/Makefile.depend +++ b/usr.sbin/zic/zic/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include From 00140433d241f7a18665c04e74e0e03d2e1fe711 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 12 Mar 2013 17:21:03 +0000 Subject: [PATCH 057/228] Apply DEP_DIRDEPS_FILTER.${DEP_MACHINE} as needed. Use DEP_DIRDEPS_FILTER.host to supress dependencies for host tools. --- share/mk/local.dirdeps.mk | 22 ++++++++++++---------- share/mk/local.sys.mk | 4 ++++ 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index 7feb63b4654c..dc7fd3338b88 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -1,13 +1,3 @@ -.if !target(_DIRDEP_USE) -# first time read -.if ${MACHINE} == "host" -DIRDEPS_FILTER+= \ - Ninclude* \ - Nlib/* \ - Ngnu/lib/* \ - -.endif -.endif # this is how we can handle optional dependencies .if ${MK_SSP:Uno} != "no" && defined(PROG) @@ -18,3 +8,15 @@ DIRDEPS += gnu/lib/libssp/libssp_nonshared .if ${DEP_RELDIR:U${RELDIR}} != "pkgs/pseudo/stage" DIRDEPS += pkgs/pseudo/stage .endif + +# we want to supress these dependencies for host tools +DEP_DIRDEPS_FILTER.host = \ + Ninclude* \ + Nlib/* \ + Ngnu/lib/* \ + + +.if !empty(DIRDEPS) && !empty(DEP_DIRDEPS_FILTER.${DEP_MACHINE}) +DIRDEPS := ${DIRDEPS:${DEP_DIRDEPS_FILTER.${DEP_MACHINE}:ts:}} +.endif + diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index af6e72cc9a19..b4be48fee0d0 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -83,6 +83,10 @@ HOST_OBJTOP ?= ${OBJROOT}${HOST_TARGET} .if ${OBJTOP} == ${HOST_OBJTOP} || ${REQUESTED_MACHINE:U${MACHINE}} == "host" MACHINE= host +.if ${TARGET_MACHINE:Uno} == ${HOST_TARGET} +# not what we want +TARGET_MACHINE= host +.endif .endif .if ${MACHINE} == "host" OBJTOP := ${HOST_OBJTOP} From 0a7402f27847cac3c6900bbc568e42cd5c871a80 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 12 Mar 2013 17:23:23 +0000 Subject: [PATCH 058/228] If .MAKE.DEPENDFILE_DEFAULT is not machine qualified, and we find oursleves creating a machine qualified .MAKE.DEPENDFILE which is identical to a default which exists - skip it. This allows us to create Makefile.depend.host where it matters, while leveraging Makefile.depend where it is sufficient. --- share/mk/gendirdeps.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk index f54d629e04af..87e8d5fdbfdf 100644 --- a/share/mk/gendirdeps.mk +++ b/share/mk/gendirdeps.mk @@ -276,6 +276,10 @@ CAT_DEPEND ?= .depend # .depend may contain things we don't want. # The sed command at the end of the stream, allows for the filters # to output _{VAR} tokens which we will turn into proper ${VAR} references. +# Note: if we have a non-machine qualified .MAKE.DEPENDFILE_DEFAULT +# which exists and _DEPENDFILE does not yet and is machine qualified; +# compare new _DEPENDFILE to default and if they are the same we do +# not need _DEPENDFILE. ${_DEPENDFILE}: ${CAT_DEPEND:M.depend} ${META_FILES:O:u:@m@${exists($m):?$m:}@} ${_this} ${META2DEPS} @(echo '# Autogenerated - do NOT edit!'; echo; \ echo 'DEP_RELDIR := $${_PARSEDIR:S,$${SRCTOP}/,,}'; echo; \ @@ -288,6 +292,9 @@ ${_DEPENDFILE}: ${CAT_DEPEND:M.depend} ${META_FILES:O:u:@m@${exists($m):?$m:}@} echo '# local dependencies - needed for -jN in clean tree'; \ [ -s ${CAT_DEPEND} ] && { grep : ${CAT_DEPEND} | grep -v '[/\\]'; }; \ echo '.endif' ) | sed 's,_\([{(]\),$$\1,g' > $@.new${.MAKE.PID} +.if ${.MAKE.DEPENDFILE_DEFAULT:E} != ${MACHINE} && ${@:E} == ${MACHINE} && !exists($@) && exists(${@:H}/${.MAKE.DEPENDFILE_DEFAULT:T}) + @cmp -s ${@:H}/${.MAKE.DEPENDFILE_DEFAULT:T} $@.new${.MAKE.PID} && rm $@.new${.MAKE.PID}; : +.endif @${InstallNew}; InstallNew -s $@.new${.MAKE.PID} .endif # meta2deps failed From ab103c462827c49cb1ba845e7b81d3e2fbb95c0e Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 14 Mar 2013 22:04:25 +0000 Subject: [PATCH 059/228] Build kernel --- pkgs/pseudo/kernel/Makefile | 31 ++++++++++++++++++++++++++++++ pkgs/pseudo/kernel/Makefile.depend | 11 +++++++++++ 2 files changed, 42 insertions(+) create mode 100644 pkgs/pseudo/kernel/Makefile create mode 100644 pkgs/pseudo/kernel/Makefile.depend diff --git a/pkgs/pseudo/kernel/Makefile b/pkgs/pseudo/kernel/Makefile new file mode 100644 index 000000000000..b619eeb2af2c --- /dev/null +++ b/pkgs/pseudo/kernel/Makefile @@ -0,0 +1,31 @@ +# $FreeBSD$ + +# Build the kernel ${KERNCONF} +KERNCONF?= ${KERNEL:UGENERIC} + +TARGET?= ${MACHINE} +# keep this compatible with peoples expectations... +KERN_OBJDIR= ${OBJTOP}/sys/compile/${KERNCONF} +KERN_CONFDIR= ${SRCTOP}/sys/${TARGET}/conf + +CONFIG= ${STAGE_HOST_OBJTOP}/usr/sbin/config + +${KERNCONF}.config: .MAKE .META + mkdir -p ${KERN_OBJDIR:H} + (cd ${KERN_CONFDIR} && \ + ${CONFIG} ${CONFIGARGS} -d ${KERN_OBJDIR} ${KERNCONF}) + (cd ${KERN_OBJDIR} && ${.MAKE} depend) + @touch $@ + +# we need to pass curdirOk=yes to meta mode, since we want .meta files +# in ${KERN_OBJDIR} +${KERNCONF}.build: .MAKE ${KERNCONF}.config + (cd ${KERN_OBJDIR} && META_MODE="${.MAKE.MODE} curdirOk=yes" ${.MAKE}) + +.if ${.MAKE.LEVEL} > 0 +all: ${KERNCONF}.build +.endif + +UPDATE_DEPENDFILE= no + +.include diff --git a/pkgs/pseudo/kernel/Makefile.depend b/pkgs/pseudo/kernel/Makefile.depend new file mode 100644 index 000000000000..76c87add44d7 --- /dev/null +++ b/pkgs/pseudo/kernel/Makefile.depend @@ -0,0 +1,11 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.sbin/config.host \ + + +.include From b023fdc47ac892b00b1fba9936bd9c623e3593ad Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 14 Mar 2013 22:04:53 +0000 Subject: [PATCH 060/228] We want meta.stage.mk when cleaning --- share/mk/bsd.sys.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk index ac20086a19cd..920f560f4af1 100644 --- a/share/mk/bsd.sys.mk +++ b/share/mk/bsd.sys.mk @@ -148,7 +148,7 @@ PHONY_NOTMAIN = afterdepend afterinstall all beforedepend beforeinstall \ .endif .if ${MK_STAGING} != "no" -.if defined(_SKIP_BUILD) || !make(all) +.if defined(_SKIP_BUILD) || (!make(all) && !make(clean*)) staging stage_libs stage_files stage_as stage_links stage_symlinks: .else # allow targets like beforeinstall to be leveraged From 8c95c434cb372df4d6aa8ddbbb225d5b2512579c Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 15 Mar 2013 20:18:30 +0000 Subject: [PATCH 061/228] If self.machine is host we need to also trim self.host_target from objroots to ensure we do not get confused. --- share/mk/meta2deps.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/share/mk/meta2deps.py b/share/mk/meta2deps.py index a2bf05b3d3c0..a7af98a8be4f 100755 --- a/share/mk/meta2deps.py +++ b/share/mk/meta2deps.py @@ -192,8 +192,11 @@ def __init__(self, name, conf={}): if not _srctop in self.srctops: self.srctops.append(_srctop) + trim_list = ['/' + self.machine, '/' + self.machine + '/'] + if self.machine == 'host': + trim_list += ['/' + self.host_target, '/' + self.host_target + '/'] for objroot in getv(conf, 'OBJROOTS', []): - for e in ['/' + self.machine, '/' + self.machine + '/']: + for e in trim_list: if objroot.endswith(e): # this is not what we want - fix it objroot = objroot[0:-len(e)] From cb9c7ed1cfd819bec51fd7e68fe415d71a07c479 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 15 Mar 2013 20:19:18 +0000 Subject: [PATCH 062/228] A bit finer control so we can build toolchain for host --- share/mk/local.dirdeps.mk | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index dc7fd3338b88..1046c80c37ae 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -12,8 +12,11 @@ DIRDEPS += pkgs/pseudo/stage # we want to supress these dependencies for host tools DEP_DIRDEPS_FILTER.host = \ Ninclude* \ - Nlib/* \ - Ngnu/lib/* \ + Nlib/lib* \ + Nlib/csu* \ + Nlib/[mn]* \ + Ngnu/lib/csu* \ + Ngnu/lib/lib[a-r]* \ .if !empty(DIRDEPS) && !empty(DEP_DIRDEPS_FILTER.${DEP_MACHINE}) From 10cd22b1e63168bf8aeea6d197a26163c905c130 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 15 Mar 2013 20:20:14 +0000 Subject: [PATCH 063/228] Make sure we qualify _objroot with trailing / if needed --- share/mk/gendirdeps.mk | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk index 87e8d5fdbfdf..5beb3f58df6a 100644 --- a/share/mk/gendirdeps.mk +++ b/share/mk/gendirdeps.mk @@ -51,7 +51,12 @@ _CURDIR ?= ${.CURDIR} _OBJDIR ?= ${.OBJDIR} _OBJTOP ?= ${OBJTOP} _OBJROOT ?= ${OBJROOT:U${_OBJTOP}} -_objroot ?= ${_OBJROOT:tA} +.if ${_OBJROOT:M*/} +_slash=/ +.else +_slash= +.endif +_objroot ?= ${_OBJROOT:tA}${_slash} _this = ${.PARSEDIR}/${.PARSEFILE} From 922a6047aa9ab50d8997e2c44d7dabd44fec2d33 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 15 Mar 2013 20:21:18 +0000 Subject: [PATCH 064/228] Check if we already have all: --- pkgs/pseudo/Makefile.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/pseudo/Makefile.inc b/pkgs/pseudo/Makefile.inc index 8a14c5e7f3c6..40f3828ec7d4 100644 --- a/pkgs/pseudo/Makefile.inc +++ b/pkgs/pseudo/Makefile.inc @@ -5,7 +5,9 @@ UPDATE_DEPENDFILE= no +.if !target(all) all: @echo Done! +.endif From f1b3609366809b7bf6e276a4c77c48c07197d9b6 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 17 Mar 2013 01:48:56 +0000 Subject: [PATCH 065/228] Add kernel and toolchains to the-lot --- pkgs/pseudo/kernel/Makefile.depend | 2 ++ pkgs/pseudo/the-lot/Makefile.depend | 6 +++--- pkgs/pseudo/userland/Makefile.depend | 4 ---- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/pseudo/kernel/Makefile.depend b/pkgs/pseudo/kernel/Makefile.depend index 76c87add44d7..7bcff699ea9d 100644 --- a/pkgs/pseudo/kernel/Makefile.depend +++ b/pkgs/pseudo/kernel/Makefile.depend @@ -5,6 +5,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + include \ + include/xlocale \ usr.sbin/config.host \ diff --git a/pkgs/pseudo/the-lot/Makefile.depend b/pkgs/pseudo/the-lot/Makefile.depend index 1a0f8d1816d2..589f9c2b0a7a 100644 --- a/pkgs/pseudo/the-lot/Makefile.depend +++ b/pkgs/pseudo/the-lot/Makefile.depend @@ -5,10 +5,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + pkgs/pseudo/kernel \ + pkgs/pseudo/toolchain \ + pkgs/pseudo/toolchain.host \ pkgs/pseudo/userland \ -# pkgs/pseudo/clang \ -# pkgs/pseudo/gcc \ - .include diff --git a/pkgs/pseudo/userland/Makefile.depend b/pkgs/pseudo/userland/Makefile.depend index e64a54d3dc78..10591bdc5f12 100644 --- a/pkgs/pseudo/userland/Makefile.depend +++ b/pkgs/pseudo/userland/Makefile.depend @@ -21,8 +21,4 @@ DIRDEPS = \ pkgs/pseudo/usr.bin \ pkgs/pseudo/usr.sbin \ - -# pkgs/pseudo/clang \ -# pkgs/pseudo/gcc \ - .include From c3a4fd2f26f0e18194de654335bcb04c57e069aa Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 17 Mar 2013 01:49:30 +0000 Subject: [PATCH 066/228] Should not be here --- share/mk/Makefile.depend | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 share/mk/Makefile.depend diff --git a/share/mk/Makefile.depend b/share/mk/Makefile.depend deleted file mode 100644 index 29fda55c252f..000000000000 --- a/share/mk/Makefile.depend +++ /dev/null @@ -1,14 +0,0 @@ -# Autogenerated - do NOT edit! - -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - -DEP_MACHINE := ${.PARSEFILE:E} - -DIRDEPS = \ - - -.include - -.if ${DEP_RELDIR} == ${_DEP_RELDIR} -# local dependencies - needed for -jN in clean tree -.endif From 6c5406e48c81993f49e73fa28c4ac8088cbee97a Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 17 Mar 2013 01:51:23 +0000 Subject: [PATCH 067/228] Improve DIRDEP filtering. Allow DEP_SKIP_DIR and DEP_DIRDEPS_FILTER to vary by DEP_MACHINE. --- share/mk/dirdeps.mk | 18 ++++++++++++------ share/mk/local.dirdeps.mk | 7 +------ 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/share/mk/dirdeps.mk b/share/mk/dirdeps.mk index 316fe022f2f9..e7e19c9f8413 100644 --- a/share/mk/dirdeps.mk +++ b/share/mk/dirdeps.mk @@ -246,17 +246,17 @@ _DEP_RELDIR := ${DEP_RELDIR} SKIP_HOSTDIR ?= NSkipHostDir = ${SKIP_HOSTDIR:N*.host:S,$,.host,:N.host:${M_ListToSkip}} -NSkipHostDep = ${SKIP_HOSTDIR:R:@d@*/$d*.host@:${M_ListToSkip}} # things we always skip # SKIP_DIRDEPS allows for adding entries on command line. SKIP_DIR += .host *.WAIT ${SKIP_DIRDEPS} +SKIP_DIR.host += ${SKIP_HOSTDIR} -.ifdef HOSTPROG -SKIP_DIR += ${SKIP_HOSTDIR} -.endif +DEP_SKIP_DIR = ${SKIP_DIR} \ + ${SKIP_DIR.${DEP_MACHINE}:U} \ + ${SKIP_DIRDEPS.${DEP_MACHINE}:U} -NSkipDir = ${SKIP_DIR:${M_ListToSkip}} +NSkipDir = ${DEP_SKIP_DIR:${M_ListToSkip}} .if defined(NO_DIRDEPS) || defined(NODIRDEPS) # confine ourselves to the original dir @@ -374,9 +374,15 @@ _build_dirs += ${_machines:N${DEP_TARGET_SPEC}:@m@${_CURDIR}.$m@} .endif .if !empty(DIRDEPS) +# these we reset each time through as they can depend on DEP_MACHINE +DEP_DIRDEPS_FILTER = ${DIRDEPS_FILTER.${DEP_MACHINE}:U} ${DIRDEPS_FILTER:U} +.if empty(DEP_DIRDEPS_FILTER) +# something harmless +DEP_DIRDEPS_FILTER = U +.endif # this is what we start with -__depdirs := ${DIRDEPS:${NSkipDir}:${DIRDEPS_FILTER:ts:}:O:u:@d@${SRCTOP}/$d@} +__depdirs := ${DIRDEPS:${NSkipDir}:${DEP_DIRDEPS_FILTER:ts:}:O:u:@d@${SRCTOP}/$d@} # some entries may be qualified with . # the :M*/*/*.* just tries to limit the dirs we check to likely ones. diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index 1046c80c37ae..71470470f2c7 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -10,7 +10,7 @@ DIRDEPS += pkgs/pseudo/stage .endif # we want to supress these dependencies for host tools -DEP_DIRDEPS_FILTER.host = \ +DIRDEPS_FILTER.host = \ Ninclude* \ Nlib/lib* \ Nlib/csu* \ @@ -18,8 +18,3 @@ DEP_DIRDEPS_FILTER.host = \ Ngnu/lib/csu* \ Ngnu/lib/lib[a-r]* \ - -.if !empty(DIRDEPS) && !empty(DEP_DIRDEPS_FILTER.${DEP_MACHINE}) -DIRDEPS := ${DIRDEPS:${DEP_DIRDEPS_FILTER.${DEP_MACHINE}:ts:}} -.endif - From 0014c9fea8808c98efec51c32f598937ac6bd0ad Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 17 Mar 2013 01:53:47 +0000 Subject: [PATCH 068/228] We need .OBJDIR done earlier --- share/mk/local.sys.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index b4be48fee0d0..98827a53d52c 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -93,8 +93,10 @@ OBJTOP := ${HOST_OBJTOP} .endif # if you want objdirs make them automatic -.if ${MKOBJDIRS:Uno} == "auto" +# we need .OBJDIR made before we start populating .PATH +.if ${MKOBJDIRS:Uno} == "auto" || defined(WITH_AUTO_OBJ) WITH_AUTO_OBJ= yes +MKOBJDIRS=auto .include .endif From c2365cc4cc232ee984d97e8981a93012e1439ccc Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 17 Mar 2013 01:54:35 +0000 Subject: [PATCH 069/228] Updated dependencies --- gnu/usr.bin/cc/c++/Makefile.depend | 3 +- gnu/usr.bin/cc/c++filt/Makefile.depend | 3 +- gnu/usr.bin/cc/cc/Makefile.depend | 3 +- gnu/usr.bin/cc/cc1/Makefile.depend | 3 +- gnu/usr.bin/cc/cc1plus/Makefile.depend | 3 +- gnu/usr.bin/cc/cc_tools/Makefile.depend | 1 + gnu/usr.bin/cc/cpp/Makefile.depend | 3 +- gnu/usr.bin/cc/gcov/Makefile.depend | 3 +- lib/clang/include/Makefile.depend | 2 - lib/clang/libclanganalysis/Makefile.depend | 22 +++- lib/clang/libclangarcmigrate/Makefile.depend | 6 +- lib/clang/libclangast/Makefile.depend | 82 +++++++++++- lib/clang/libclangbasic/Makefile.depend | 7 +- lib/clang/libclangcodegen/Makefile.depend | 6 +- lib/clang/libclangdriver/Makefile.depend | 8 +- lib/clang/libclangedit/Makefile.depend | 4 +- lib/clang/libclangfrontend/Makefile.depend | 16 ++- .../libclangfrontendtool/Makefile.depend | 8 +- lib/clang/libclanglex/Makefile.depend | 5 +- lib/clang/libclangparse/Makefile.depend | 8 +- lib/clang/libclangsema/Makefile.depend | 44 ++++++- .../libclangserialization/Makefile.depend | 4 +- .../Makefile.depend | 124 ++++++++++++------ .../Makefile.depend | 44 +++---- .../Makefile.depend | 4 +- lib/clang/libllvmanalysis/Makefile.depend | 12 +- lib/clang/libllvmarchive/Makefile.depend | 4 +- lib/clang/libllvmarmasmparser/Makefile.depend | 4 +- lib/clang/libllvmarmcodegen/Makefile.depend | 4 +- lib/clang/libllvmarmdesc/Makefile.depend | 4 +- .../libllvmarmdisassembler/Makefile.depend | 4 +- lib/clang/libllvmarminfo/Makefile.depend | 4 +- .../libllvmarminstprinter/Makefile.depend | 4 +- lib/clang/libllvmasmparser/Makefile.depend | 4 +- lib/clang/libllvmasmprinter/Makefile.depend | 4 +- lib/clang/libllvmbitreader/Makefile.depend | 4 +- lib/clang/libllvmbitwriter/Makefile.depend | 4 +- lib/clang/libllvmcodegen/Makefile.depend | 4 +- lib/clang/libllvmcore/Makefile.depend | 8 +- lib/clang/libllvminstcombine/Makefile.depend | 4 +- .../libllvminstrumentation/Makefile.depend | 6 +- lib/clang/libllvmipa/Makefile.depend | 4 +- lib/clang/libllvmipo/Makefile.depend | 4 +- lib/clang/libllvmlinker/Makefile.depend | 4 +- lib/clang/libllvmmc/Makefile.depend | 4 +- lib/clang/libllvmmcparser/Makefile.depend | 4 +- .../libllvmmipsasmparser/Makefile.depend | 6 +- lib/clang/libllvmmipscodegen/Makefile.depend | 60 +++++++-- lib/clang/libllvmmipsdesc/Makefile.depend | 10 +- lib/clang/libllvmmipsinfo/Makefile.depend | 4 +- .../libllvmmipsinstprinter/Makefile.depend | 10 +- lib/clang/libllvmobject/Makefile.depend | 4 +- .../libllvmpowerpccodegen/Makefile.depend | 10 +- lib/clang/libllvmpowerpcdesc/Makefile.depend | 4 +- lib/clang/libllvmpowerpcinfo/Makefile.depend | 4 +- .../libllvmpowerpcinstprinter/Makefile.depend | 4 +- lib/clang/libllvmscalaropts/Makefile.depend | 8 +- lib/clang/libllvmselectiondag/Makefile.depend | 4 +- lib/clang/libllvmsupport/Makefile.depend | 2 - lib/clang/libllvmtablegen/Makefile.depend | 2 - lib/clang/libllvmtarget/Makefile.depend | 4 +- .../libllvmtransformutils/Makefile.depend | 6 +- lib/clang/libllvmvectorize/Makefile.depend | 4 +- lib/clang/libllvmx86asmparser/Makefile.depend | 4 +- lib/clang/libllvmx86codegen/Makefile.depend | 4 +- lib/clang/libllvmx86desc/Makefile.depend | 4 +- .../libllvmx86disassembler/Makefile.depend | 4 +- lib/clang/libllvmx86info/Makefile.depend | 4 +- .../libllvmx86instprinter/Makefile.depend | 4 +- lib/clang/libllvmx86utils/Makefile.depend | 4 +- usr.bin/clang/clang-tblgen/Makefile.depend | 3 +- usr.bin/clang/clang/Makefile.depend | 17 +-- usr.bin/clang/tblgen/Makefile.depend | 3 +- 73 files changed, 481 insertions(+), 230 deletions(-) diff --git a/gnu/usr.bin/cc/c++/Makefile.depend b/gnu/usr.bin/cc/c++/Makefile.depend index e0c846e62e61..d16e7b05543e 100644 --- a/gnu/usr.bin/cc/c++/Makefile.depend +++ b/gnu/usr.bin/cc/c++/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/cc/cc_tools \ @@ -13,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/cc/c++filt/Makefile.depend b/gnu/usr.bin/cc/c++filt/Makefile.depend index 763be51c55b7..2db3c0066df0 100644 --- a/gnu/usr.bin/cc/c++filt/Makefile.depend +++ b/gnu/usr.bin/cc/c++filt/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/cc/cc_tools \ @@ -12,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/cc/cc/Makefile.depend b/gnu/usr.bin/cc/cc/Makefile.depend index ce7738d1ce5f..12613ee5fe5b 100644 --- a/gnu/usr.bin/cc/cc/Makefile.depend +++ b/gnu/usr.bin/cc/cc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/usr.bin/cc/cc_tools \ gnu/usr.bin/cc/libcpp \ @@ -12,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/cc/cc1/Makefile.depend b/gnu/usr.bin/cc/cc1/Makefile.depend index 2e76ab713a5a..be55de564f8f 100644 --- a/gnu/usr.bin/cc/cc1/Makefile.depend +++ b/gnu/usr.bin/cc/cc1/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/usr.bin/cc/cc_int \ gnu/usr.bin/cc/cc_tools \ @@ -14,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/cc/cc1plus/Makefile.depend b/gnu/usr.bin/cc/cc1plus/Makefile.depend index 4d8689895e58..cf800a6311dd 100644 --- a/gnu/usr.bin/cc/cc1plus/Makefile.depend +++ b/gnu/usr.bin/cc/cc1plus/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/usr.bin/cc/cc_int \ gnu/usr.bin/cc/cc_tools \ @@ -14,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/cc/cc_tools/Makefile.depend b/gnu/usr.bin/cc/cc_tools/Makefile.depend index dc535a669625..986bc33a6253 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile.depend +++ b/gnu/usr.bin/cc/cc_tools/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/cc/cpp/Makefile.depend b/gnu/usr.bin/cc/cpp/Makefile.depend index e0c846e62e61..d16e7b05543e 100644 --- a/gnu/usr.bin/cc/cpp/Makefile.depend +++ b/gnu/usr.bin/cc/cpp/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/cc/cc_tools \ @@ -13,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/gnu/usr.bin/cc/gcov/Makefile.depend b/gnu/usr.bin/cc/gcov/Makefile.depend index 763be51c55b7..2db3c0066df0 100644 --- a/gnu/usr.bin/cc/gcov/Makefile.depend +++ b/gnu/usr.bin/cc/gcov/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/usr.bin/cc/cc_tools \ @@ -12,6 +10,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include diff --git a/lib/clang/include/Makefile.depend b/lib/clang/include/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/lib/clang/include/Makefile.depend +++ b/lib/clang/include/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/lib/clang/libclanganalysis/Makefile.depend b/lib/clang/libclanganalysis/Makefile.depend index 1a5a8b2f0eff..45402951915d 100644 --- a/lib/clang/libclanganalysis/Makefile.depend +++ b/lib/clang/libclanganalysis/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libstdc++ \ gnu/lib/libsupc++ \ @@ -26,6 +24,16 @@ AnalysisDeclContext.po: Attrs.inc.h AnalysisDeclContext.po: DeclNodes.inc.h AnalysisDeclContext.po: DiagnosticCommonKinds.inc.h AnalysisDeclContext.po: StmtNodes.inc.h +BodyFarm.o: AttrList.inc.h +BodyFarm.o: Attrs.inc.h +BodyFarm.o: DeclNodes.inc.h +BodyFarm.o: DiagnosticCommonKinds.inc.h +BodyFarm.o: StmtNodes.inc.h +BodyFarm.po: AttrList.inc.h +BodyFarm.po: Attrs.inc.h +BodyFarm.po: DeclNodes.inc.h +BodyFarm.po: DiagnosticCommonKinds.inc.h +BodyFarm.po: StmtNodes.inc.h CFG.o: AttrList.inc.h CFG.o: Attrs.inc.h CFG.o: DeclNodes.inc.h @@ -98,6 +106,16 @@ LiveVariables.po: Attrs.inc.h LiveVariables.po: DeclNodes.inc.h LiveVariables.po: DiagnosticCommonKinds.inc.h LiveVariables.po: StmtNodes.inc.h +ObjCNoReturn.o: AttrList.inc.h +ObjCNoReturn.o: Attrs.inc.h +ObjCNoReturn.o: DeclNodes.inc.h +ObjCNoReturn.o: DiagnosticCommonKinds.inc.h +ObjCNoReturn.o: StmtNodes.inc.h +ObjCNoReturn.po: AttrList.inc.h +ObjCNoReturn.po: Attrs.inc.h +ObjCNoReturn.po: DeclNodes.inc.h +ObjCNoReturn.po: DiagnosticCommonKinds.inc.h +ObjCNoReturn.po: StmtNodes.inc.h PostOrderCFGView.o: AttrList.inc.h PostOrderCFGView.o: Attrs.inc.h PostOrderCFGView.o: DeclNodes.inc.h diff --git a/lib/clang/libclangarcmigrate/Makefile.depend b/lib/clang/libclangarcmigrate/Makefile.depend index ba37a31c36c3..8d249a0437e5 100644 --- a/lib/clang/libclangarcmigrate/Makefile.depend +++ b/lib/clang/libclangarcmigrate/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -195,12 +195,14 @@ TransformActions.po: DeclNodes.inc.h TransformActions.po: DiagnosticCommonKinds.inc.h TransformActions.po: StmtNodes.inc.h Transforms.o: AttrList.inc.h +Transforms.o: AttrParsedAttrList.inc.h Transforms.o: Attrs.inc.h Transforms.o: DeclNodes.inc.h Transforms.o: DiagnosticCommonKinds.inc.h Transforms.o: DiagnosticSemaKinds.inc.h Transforms.o: StmtNodes.inc.h Transforms.po: AttrList.inc.h +Transforms.po: AttrParsedAttrList.inc.h Transforms.po: Attrs.inc.h Transforms.po: DeclNodes.inc.h Transforms.po: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangast/Makefile.depend b/lib/clang/libclangast/Makefile.depend index b15ee05f4621..52ba6508bdae 100644 --- a/lib/clang/libclangast/Makefile.depend +++ b/lib/clang/libclangast/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -24,13 +24,23 @@ APValue.po: Attrs.inc.h APValue.po: DeclNodes.inc.h APValue.po: DiagnosticCommonKinds.inc.h APValue.po: StmtNodes.inc.h +ASTConsumer.o: AttrList.inc.h +ASTConsumer.o: Attrs.inc.h +ASTConsumer.o: DeclNodes.inc.h +ASTConsumer.o: DiagnosticCommonKinds.inc.h +ASTConsumer.po: AttrList.inc.h +ASTConsumer.po: Attrs.inc.h +ASTConsumer.po: DeclNodes.inc.h +ASTConsumer.po: DiagnosticCommonKinds.inc.h ASTContext.o: AttrList.inc.h ASTContext.o: Attrs.inc.h +ASTContext.o: CommentNodes.inc.h ASTContext.o: DeclNodes.inc.h ASTContext.o: DiagnosticCommonKinds.inc.h ASTContext.o: StmtNodes.inc.h ASTContext.po: AttrList.inc.h ASTContext.po: Attrs.inc.h +ASTContext.po: CommentNodes.inc.h ASTContext.po: DeclNodes.inc.h ASTContext.po: DiagnosticCommonKinds.inc.h ASTContext.po: StmtNodes.inc.h @@ -39,11 +49,13 @@ ASTDiagnostic.o: Attrs.inc.h ASTDiagnostic.o: DeclNodes.inc.h ASTDiagnostic.o: DiagnosticASTKinds.inc.h ASTDiagnostic.o: DiagnosticCommonKinds.inc.h +ASTDiagnostic.o: StmtNodes.inc.h ASTDiagnostic.po: AttrList.inc.h ASTDiagnostic.po: Attrs.inc.h ASTDiagnostic.po: DeclNodes.inc.h ASTDiagnostic.po: DiagnosticASTKinds.inc.h ASTDiagnostic.po: DiagnosticCommonKinds.inc.h +ASTDiagnostic.po: StmtNodes.inc.h ASTImporter.o: AttrList.inc.h ASTImporter.o: Attrs.inc.h ASTImporter.o: DeclNodes.inc.h @@ -78,6 +90,60 @@ CXXInheritance.po: Attrs.inc.h CXXInheritance.po: DeclNodes.inc.h CXXInheritance.po: DiagnosticCommonKinds.inc.h CXXInheritance.po: StmtNodes.inc.h +Comment.o: AttrList.inc.h +Comment.o: Attrs.inc.h +Comment.o: CommentNodes.inc.h +Comment.o: DeclNodes.inc.h +Comment.o: DiagnosticCommonKinds.inc.h +Comment.o: StmtNodes.inc.h +Comment.po: AttrList.inc.h +Comment.po: Attrs.inc.h +Comment.po: CommentNodes.inc.h +Comment.po: DeclNodes.inc.h +Comment.po: DiagnosticCommonKinds.inc.h +Comment.po: StmtNodes.inc.h +CommentCommandTraits.o: CommentCommandInfo.inc.h +CommentCommandTraits.po: CommentCommandInfo.inc.h +CommentDumper.o: AttrList.inc.h +CommentDumper.o: Attrs.inc.h +CommentDumper.o: CommentNodes.inc.h +CommentDumper.o: DeclNodes.inc.h +CommentDumper.o: DiagnosticCommonKinds.inc.h +CommentDumper.po: AttrList.inc.h +CommentDumper.po: Attrs.inc.h +CommentDumper.po: CommentNodes.inc.h +CommentDumper.po: DeclNodes.inc.h +CommentDumper.po: DiagnosticCommonKinds.inc.h +CommentLexer.o: CommentHTMLTags.inc.h +CommentLexer.po: CommentHTMLTags.inc.h +CommentParser.o: AttrList.inc.h +CommentParser.o: Attrs.inc.h +CommentParser.o: CommentNodes.inc.h +CommentParser.o: DeclNodes.inc.h +CommentParser.o: DiagnosticCommentKinds.inc.h +CommentParser.o: DiagnosticCommonKinds.inc.h +CommentParser.po: AttrList.inc.h +CommentParser.po: Attrs.inc.h +CommentParser.po: CommentNodes.inc.h +CommentParser.po: DeclNodes.inc.h +CommentParser.po: DiagnosticCommentKinds.inc.h +CommentParser.po: DiagnosticCommonKinds.inc.h +CommentSema.o: AttrList.inc.h +CommentSema.o: Attrs.inc.h +CommentSema.o: CommentHTMLTagsProperties.inc.h +CommentSema.o: CommentNodes.inc.h +CommentSema.o: DeclNodes.inc.h +CommentSema.o: DiagnosticCommentKinds.inc.h +CommentSema.o: DiagnosticCommonKinds.inc.h +CommentSema.o: StmtNodes.inc.h +CommentSema.po: AttrList.inc.h +CommentSema.po: Attrs.inc.h +CommentSema.po: CommentHTMLTagsProperties.inc.h +CommentSema.po: CommentNodes.inc.h +CommentSema.po: DeclNodes.inc.h +CommentSema.po: DiagnosticCommentKinds.inc.h +CommentSema.po: DiagnosticCommonKinds.inc.h +CommentSema.po: StmtNodes.inc.h Decl.o: AttrList.inc.h Decl.o: Attrs.inc.h Decl.o: DeclNodes.inc.h @@ -300,10 +366,12 @@ NSAPI.o: AttrList.inc.h NSAPI.o: Attrs.inc.h NSAPI.o: DeclNodes.inc.h NSAPI.o: DiagnosticCommonKinds.inc.h +NSAPI.o: StmtNodes.inc.h NSAPI.po: AttrList.inc.h NSAPI.po: Attrs.inc.h NSAPI.po: DeclNodes.inc.h NSAPI.po: DiagnosticCommonKinds.inc.h +NSAPI.po: StmtNodes.inc.h NestedNameSpecifier.o: AttrList.inc.h NestedNameSpecifier.o: Attrs.inc.h NestedNameSpecifier.o: DeclNodes.inc.h @@ -324,6 +392,16 @@ ParentMap.po: Attrs.inc.h ParentMap.po: DeclNodes.inc.h ParentMap.po: DiagnosticCommonKinds.inc.h ParentMap.po: StmtNodes.inc.h +RawCommentList.o: AttrList.inc.h +RawCommentList.o: Attrs.inc.h +RawCommentList.o: CommentNodes.inc.h +RawCommentList.o: DeclNodes.inc.h +RawCommentList.o: DiagnosticCommonKinds.inc.h +RawCommentList.po: AttrList.inc.h +RawCommentList.po: Attrs.inc.h +RawCommentList.po: CommentNodes.inc.h +RawCommentList.po: DeclNodes.inc.h +RawCommentList.po: DiagnosticCommonKinds.inc.h RecordLayout.o: AttrList.inc.h RecordLayout.o: Attrs.inc.h RecordLayout.o: DeclNodes.inc.h diff --git a/lib/clang/libclangbasic/Makefile.depend b/lib/clang/libclangbasic/Makefile.depend index 2c9222657df5..74a968f9daef 100644 --- a/lib/clang/libclangbasic/Makefile.depend +++ b/lib/clang/libclangbasic/Makefile.depend @@ -2,11 +2,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ lib/msun \ @@ -18,6 +19,7 @@ Diagnostic.o: DiagnosticCommonKinds.inc.h Diagnostic.po: DiagnosticCommonKinds.inc.h DiagnosticIDs.o: DiagnosticASTKinds.inc.h DiagnosticIDs.o: DiagnosticAnalysisKinds.inc.h +DiagnosticIDs.o: DiagnosticCommentKinds.inc.h DiagnosticIDs.o: DiagnosticCommonKinds.inc.h DiagnosticIDs.o: DiagnosticDriverKinds.inc.h DiagnosticIDs.o: DiagnosticFrontendKinds.inc.h @@ -28,6 +30,7 @@ DiagnosticIDs.o: DiagnosticSemaKinds.inc.h DiagnosticIDs.o: DiagnosticSerializationKinds.inc.h DiagnosticIDs.po: DiagnosticASTKinds.inc.h DiagnosticIDs.po: DiagnosticAnalysisKinds.inc.h +DiagnosticIDs.po: DiagnosticCommentKinds.inc.h DiagnosticIDs.po: DiagnosticCommonKinds.inc.h DiagnosticIDs.po: DiagnosticDriverKinds.inc.h DiagnosticIDs.po: DiagnosticFrontendKinds.inc.h diff --git a/lib/clang/libclangcodegen/Makefile.depend b/lib/clang/libclangcodegen/Makefile.depend index 9ed7af295c39..94780585c27b 100644 --- a/lib/clang/libclangcodegen/Makefile.depend +++ b/lib/clang/libclangcodegen/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -372,10 +372,12 @@ CodeGenTBAA.o: AttrList.inc.h CodeGenTBAA.o: Attrs.inc.h CodeGenTBAA.o: DeclNodes.inc.h CodeGenTBAA.o: DiagnosticCommonKinds.inc.h +CodeGenTBAA.o: StmtNodes.inc.h CodeGenTBAA.po: AttrList.inc.h CodeGenTBAA.po: Attrs.inc.h CodeGenTBAA.po: DeclNodes.inc.h CodeGenTBAA.po: DiagnosticCommonKinds.inc.h +CodeGenTBAA.po: StmtNodes.inc.h CodeGenTypes.o: AttrList.inc.h CodeGenTypes.o: Attrs.inc.h CodeGenTypes.o: DeclNodes.inc.h diff --git a/lib/clang/libclangdriver/Makefile.depend b/lib/clang/libclangdriver/Makefile.depend index dab9912fbc37..ec0ab5d0d338 100644 --- a/lib/clang/libclangdriver/Makefile.depend +++ b/lib/clang/libclangdriver/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -20,8 +20,6 @@ ArgList.po: DiagnosticCommonKinds.inc.h ArgList.po: DiagnosticDriverKinds.inc.h CC1AsOptions.o: CC1AsOptions.inc.h CC1AsOptions.po: CC1AsOptions.inc.h -CC1Options.o: CC1Options.inc.h -CC1Options.po: CC1Options.inc.h Compilation.o: DiagnosticCommonKinds.inc.h Compilation.o: DiagnosticDriverKinds.inc.h Compilation.o: Options.inc.h @@ -36,6 +34,8 @@ Driver.po: DiagnosticDriverKinds.inc.h Driver.po: Options.inc.h DriverOptions.o: Options.inc.h DriverOptions.po: Options.inc.h +OptTable.o: Options.inc.h +OptTable.po: Options.inc.h ToolChain.o: DiagnosticCommonKinds.inc.h ToolChain.o: DiagnosticDriverKinds.inc.h ToolChain.o: Options.inc.h diff --git a/lib/clang/libclangedit/Makefile.depend b/lib/clang/libclangedit/Makefile.depend index 9c2823c5ff44..9bacc88a2928 100644 --- a/lib/clang/libclangedit/Makefile.depend +++ b/lib/clang/libclangedit/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libclangfrontend/Makefile.depend b/lib/clang/libclangfrontend/Makefile.depend index a9a8a2a81208..ec1859e27742 100644 --- a/lib/clang/libclangfrontend/Makefile.depend +++ b/lib/clang/libclangfrontend/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -44,7 +44,6 @@ ASTUnit.o: Attrs.inc.h ASTUnit.o: DeclNodes.inc.h ASTUnit.o: DiagnosticCommonKinds.inc.h ASTUnit.o: DiagnosticFrontendKinds.inc.h -ASTUnit.o: Options.inc.h ASTUnit.o: StmtNodes.inc.h ASTUnit.po: AttrList.inc.h ASTUnit.po: AttrParsedAttrList.inc.h @@ -52,7 +51,6 @@ ASTUnit.po: Attrs.inc.h ASTUnit.po: DeclNodes.inc.h ASTUnit.po: DiagnosticCommonKinds.inc.h ASTUnit.po: DiagnosticFrontendKinds.inc.h -ASTUnit.po: Options.inc.h ASTUnit.po: StmtNodes.inc.h CacheTokens.o: DiagnosticCommonKinds.inc.h CacheTokens.po: DiagnosticCommonKinds.inc.h @@ -86,16 +84,16 @@ CompilerInstance.po: DiagnosticFrontendKinds.inc.h CompilerInstance.po: StmtNodes.inc.h CompilerInvocation.o: AttrList.inc.h CompilerInvocation.o: Attrs.inc.h -CompilerInvocation.o: CC1Options.inc.h CompilerInvocation.o: DeclNodes.inc.h CompilerInvocation.o: DiagnosticCommonKinds.inc.h CompilerInvocation.o: DiagnosticDriverKinds.inc.h +CompilerInvocation.o: Options.inc.h CompilerInvocation.po: AttrList.inc.h CompilerInvocation.po: Attrs.inc.h -CompilerInvocation.po: CC1Options.inc.h CompilerInvocation.po: DeclNodes.inc.h CompilerInvocation.po: DiagnosticCommonKinds.inc.h CompilerInvocation.po: DiagnosticDriverKinds.inc.h +CompilerInvocation.po: Options.inc.h CreateInvocationFromCommandLine.o: DiagnosticCommonKinds.inc.h CreateInvocationFromCommandLine.o: DiagnosticFrontendKinds.inc.h CreateInvocationFromCommandLine.o: Options.inc.h @@ -148,8 +146,14 @@ HeaderIncludeGen.po: DiagnosticCommonKinds.inc.h HeaderIncludeGen.po: DiagnosticFrontendKinds.inc.h InitHeaderSearch.o: DiagnosticCommonKinds.inc.h InitHeaderSearch.po: DiagnosticCommonKinds.inc.h +InitPreprocessor.o: AttrList.inc.h +InitPreprocessor.o: Attrs.inc.h +InitPreprocessor.o: DeclNodes.inc.h InitPreprocessor.o: DiagnosticCommonKinds.inc.h InitPreprocessor.o: DiagnosticFrontendKinds.inc.h +InitPreprocessor.po: AttrList.inc.h +InitPreprocessor.po: Attrs.inc.h +InitPreprocessor.po: DeclNodes.inc.h InitPreprocessor.po: DiagnosticCommonKinds.inc.h InitPreprocessor.po: DiagnosticFrontendKinds.inc.h LayoutOverrideSource.o: AttrList.inc.h diff --git a/lib/clang/libclangfrontendtool/Makefile.depend b/lib/clang/libclangfrontendtool/Makefile.depend index 0c4a02dbc66c..94f1694cf5e0 100644 --- a/lib/clang/libclangfrontendtool/Makefile.depend +++ b/lib/clang/libclangfrontendtool/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -14,10 +14,10 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -ExecuteCompilerInvocation.o: CC1Options.inc.h ExecuteCompilerInvocation.o: DiagnosticCommonKinds.inc.h ExecuteCompilerInvocation.o: DiagnosticFrontendKinds.inc.h -ExecuteCompilerInvocation.po: CC1Options.inc.h +ExecuteCompilerInvocation.o: Options.inc.h ExecuteCompilerInvocation.po: DiagnosticCommonKinds.inc.h ExecuteCompilerInvocation.po: DiagnosticFrontendKinds.inc.h +ExecuteCompilerInvocation.po: Options.inc.h .endif diff --git a/lib/clang/libclanglex/Makefile.depend b/lib/clang/libclanglex/Makefile.depend index b0b30a1b09bf..5835901a9b0d 100644 --- a/lib/clang/libclanglex/Makefile.depend +++ b/lib/clang/libclanglex/Makefile.depend @@ -2,11 +2,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ lib/msun \ diff --git a/lib/clang/libclangparse/Makefile.depend b/lib/clang/libclangparse/Makefile.depend index ebf96ff7d398..ad1985d933cb 100644 --- a/lib/clang/libclangparse/Makefile.depend +++ b/lib/clang/libclangparse/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -19,12 +19,14 @@ ParseAST.o: AttrParsedAttrList.inc.h ParseAST.o: Attrs.inc.h ParseAST.o: DeclNodes.inc.h ParseAST.o: DiagnosticCommonKinds.inc.h +ParseAST.o: DiagnosticParseKinds.inc.h ParseAST.o: StmtNodes.inc.h ParseAST.po: AttrList.inc.h ParseAST.po: AttrParsedAttrList.inc.h ParseAST.po: Attrs.inc.h ParseAST.po: DeclNodes.inc.h ParseAST.po: DiagnosticCommonKinds.inc.h +ParseAST.po: DiagnosticParseKinds.inc.h ParseAST.po: StmtNodes.inc.h ParseCXXInlineMethods.o: AttrList.inc.h ParseCXXInlineMethods.o: AttrParsedAttrList.inc.h @@ -62,6 +64,7 @@ ParseDeclCXX.o: Attrs.inc.h ParseDeclCXX.o: DeclNodes.inc.h ParseDeclCXX.o: DiagnosticCommonKinds.inc.h ParseDeclCXX.o: DiagnosticParseKinds.inc.h +ParseDeclCXX.o: DiagnosticSemaKinds.inc.h ParseDeclCXX.o: StmtNodes.inc.h ParseDeclCXX.po: AttrList.inc.h ParseDeclCXX.po: AttrParsedAttrList.inc.h @@ -69,6 +72,7 @@ ParseDeclCXX.po: Attrs.inc.h ParseDeclCXX.po: DeclNodes.inc.h ParseDeclCXX.po: DiagnosticCommonKinds.inc.h ParseDeclCXX.po: DiagnosticParseKinds.inc.h +ParseDeclCXX.po: DiagnosticSemaKinds.inc.h ParseDeclCXX.po: StmtNodes.inc.h ParseExpr.o: AttrList.inc.h ParseExpr.o: AttrParsedAttrList.inc.h diff --git a/lib/clang/libclangsema/Makefile.depend b/lib/clang/libclangsema/Makefile.depend index d33e42fa913a..8dc76e021c70 100644 --- a/lib/clang/libclangsema/Makefile.depend +++ b/lib/clang/libclangsema/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -71,11 +71,13 @@ DeclSpec.po: DiagnosticParseKinds.inc.h DeclSpec.po: DiagnosticSemaKinds.inc.h DeclSpec.po: StmtNodes.inc.h DelayedDiagnostic.o: AttrList.inc.h +DelayedDiagnostic.o: AttrParsedAttrList.inc.h DelayedDiagnostic.o: Attrs.inc.h DelayedDiagnostic.o: DeclNodes.inc.h DelayedDiagnostic.o: DiagnosticCommonKinds.inc.h DelayedDiagnostic.o: StmtNodes.inc.h DelayedDiagnostic.po: AttrList.inc.h +DelayedDiagnostic.po: AttrParsedAttrList.inc.h DelayedDiagnostic.po: Attrs.inc.h DelayedDiagnostic.po: DeclNodes.inc.h DelayedDiagnostic.po: DiagnosticCommonKinds.inc.h @@ -102,8 +104,30 @@ JumpDiagnostics.po: DeclNodes.inc.h JumpDiagnostics.po: DiagnosticCommonKinds.inc.h JumpDiagnostics.po: DiagnosticSemaKinds.inc.h JumpDiagnostics.po: StmtNodes.inc.h +MultiplexExternalSemaSource.o: AttrList.inc.h +MultiplexExternalSemaSource.o: AttrParsedAttrList.inc.h +MultiplexExternalSemaSource.o: Attrs.inc.h +MultiplexExternalSemaSource.o: DeclNodes.inc.h +MultiplexExternalSemaSource.o: DiagnosticCommonKinds.inc.h +MultiplexExternalSemaSource.o: StmtNodes.inc.h +MultiplexExternalSemaSource.po: AttrList.inc.h +MultiplexExternalSemaSource.po: AttrParsedAttrList.inc.h +MultiplexExternalSemaSource.po: Attrs.inc.h +MultiplexExternalSemaSource.po: DeclNodes.inc.h +MultiplexExternalSemaSource.po: DiagnosticCommonKinds.inc.h +MultiplexExternalSemaSource.po: StmtNodes.inc.h Scope.o: DiagnosticCommonKinds.inc.h Scope.po: DiagnosticCommonKinds.inc.h +ScopeInfo.o: AttrList.inc.h +ScopeInfo.o: Attrs.inc.h +ScopeInfo.o: DeclNodes.inc.h +ScopeInfo.o: DiagnosticCommonKinds.inc.h +ScopeInfo.o: StmtNodes.inc.h +ScopeInfo.po: AttrList.inc.h +ScopeInfo.po: Attrs.inc.h +ScopeInfo.po: DeclNodes.inc.h +ScopeInfo.po: DiagnosticCommonKinds.inc.h +ScopeInfo.po: StmtNodes.inc.h Sema.o: AttrList.inc.h Sema.o: AttrParsedAttrList.inc.h Sema.o: Attrs.inc.h @@ -210,6 +234,7 @@ SemaDecl.o: AttrList.inc.h SemaDecl.o: AttrParsedAttrList.inc.h SemaDecl.o: Attrs.inc.h SemaDecl.o: DeclNodes.inc.h +SemaDecl.o: DiagnosticCommentKinds.inc.h SemaDecl.o: DiagnosticCommonKinds.inc.h SemaDecl.o: DiagnosticParseKinds.inc.h SemaDecl.o: DiagnosticSemaKinds.inc.h @@ -218,6 +243,7 @@ SemaDecl.po: AttrList.inc.h SemaDecl.po: AttrParsedAttrList.inc.h SemaDecl.po: Attrs.inc.h SemaDecl.po: DeclNodes.inc.h +SemaDecl.po: DiagnosticCommentKinds.inc.h SemaDecl.po: DiagnosticCommonKinds.inc.h SemaDecl.po: DiagnosticParseKinds.inc.h SemaDecl.po: DiagnosticSemaKinds.inc.h @@ -444,6 +470,20 @@ SemaStmt.po: DeclNodes.inc.h SemaStmt.po: DiagnosticCommonKinds.inc.h SemaStmt.po: DiagnosticSemaKinds.inc.h SemaStmt.po: StmtNodes.inc.h +SemaStmtAsm.o: AttrList.inc.h +SemaStmtAsm.o: AttrParsedAttrList.inc.h +SemaStmtAsm.o: Attrs.inc.h +SemaStmtAsm.o: DeclNodes.inc.h +SemaStmtAsm.o: DiagnosticCommonKinds.inc.h +SemaStmtAsm.o: DiagnosticSemaKinds.inc.h +SemaStmtAsm.o: StmtNodes.inc.h +SemaStmtAsm.po: AttrList.inc.h +SemaStmtAsm.po: AttrParsedAttrList.inc.h +SemaStmtAsm.po: Attrs.inc.h +SemaStmtAsm.po: DeclNodes.inc.h +SemaStmtAsm.po: DiagnosticCommonKinds.inc.h +SemaStmtAsm.po: DiagnosticSemaKinds.inc.h +SemaStmtAsm.po: StmtNodes.inc.h SemaStmtAttr.o: AttrList.inc.h SemaStmtAttr.o: AttrParsedAttrList.inc.h SemaStmtAttr.o: Attrs.inc.h diff --git a/lib/clang/libclangserialization/Makefile.depend b/lib/clang/libclangserialization/Makefile.depend index 96ace8927e93..7aee5f8756e0 100644 --- a/lib/clang/libclangserialization/Makefile.depend +++ b/lib/clang/libclangserialization/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libclangstaticanalyzercheckers/Makefile.depend b/lib/clang/libclangstaticanalyzercheckers/Makefile.depend index d287f2bc3816..a479b5622ecd 100644 --- a/lib/clang/libclangstaticanalyzercheckers/Makefile.depend +++ b/lib/clang/libclangstaticanalyzercheckers/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -14,18 +14,6 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -AdjustedReturnValueChecker.o: AttrList.inc.h -AdjustedReturnValueChecker.o: Attrs.inc.h -AdjustedReturnValueChecker.o: Checkers.inc.h -AdjustedReturnValueChecker.o: DeclNodes.inc.h -AdjustedReturnValueChecker.o: DiagnosticCommonKinds.inc.h -AdjustedReturnValueChecker.o: StmtNodes.inc.h -AdjustedReturnValueChecker.po: AttrList.inc.h -AdjustedReturnValueChecker.po: Attrs.inc.h -AdjustedReturnValueChecker.po: Checkers.inc.h -AdjustedReturnValueChecker.po: DeclNodes.inc.h -AdjustedReturnValueChecker.po: DiagnosticCommonKinds.inc.h -AdjustedReturnValueChecker.po: StmtNodes.inc.h AnalyzerStatsChecker.o: AttrList.inc.h AnalyzerStatsChecker.o: Attrs.inc.h AnalyzerStatsChecker.o: Checkers.inc.h @@ -290,6 +278,18 @@ DereferenceChecker.po: Checkers.inc.h DereferenceChecker.po: DeclNodes.inc.h DereferenceChecker.po: DiagnosticCommonKinds.inc.h DereferenceChecker.po: StmtNodes.inc.h +DirectIvarAssignment.o: AttrList.inc.h +DirectIvarAssignment.o: Attrs.inc.h +DirectIvarAssignment.o: Checkers.inc.h +DirectIvarAssignment.o: DeclNodes.inc.h +DirectIvarAssignment.o: DiagnosticCommonKinds.inc.h +DirectIvarAssignment.o: StmtNodes.inc.h +DirectIvarAssignment.po: AttrList.inc.h +DirectIvarAssignment.po: Attrs.inc.h +DirectIvarAssignment.po: Checkers.inc.h +DirectIvarAssignment.po: DeclNodes.inc.h +DirectIvarAssignment.po: DiagnosticCommonKinds.inc.h +DirectIvarAssignment.po: StmtNodes.inc.h DivZeroChecker.o: AttrList.inc.h DivZeroChecker.o: Attrs.inc.h DivZeroChecker.o: Checkers.inc.h @@ -302,6 +302,30 @@ DivZeroChecker.po: Checkers.inc.h DivZeroChecker.po: DeclNodes.inc.h DivZeroChecker.po: DiagnosticCommonKinds.inc.h DivZeroChecker.po: StmtNodes.inc.h +DynamicTypePropagation.o: AttrList.inc.h +DynamicTypePropagation.o: Attrs.inc.h +DynamicTypePropagation.o: Checkers.inc.h +DynamicTypePropagation.o: DeclNodes.inc.h +DynamicTypePropagation.o: DiagnosticCommonKinds.inc.h +DynamicTypePropagation.o: StmtNodes.inc.h +DynamicTypePropagation.po: AttrList.inc.h +DynamicTypePropagation.po: Attrs.inc.h +DynamicTypePropagation.po: Checkers.inc.h +DynamicTypePropagation.po: DeclNodes.inc.h +DynamicTypePropagation.po: DiagnosticCommonKinds.inc.h +DynamicTypePropagation.po: StmtNodes.inc.h +ExprInspectionChecker.o: AttrList.inc.h +ExprInspectionChecker.o: Attrs.inc.h +ExprInspectionChecker.o: Checkers.inc.h +ExprInspectionChecker.o: DeclNodes.inc.h +ExprInspectionChecker.o: DiagnosticCommonKinds.inc.h +ExprInspectionChecker.o: StmtNodes.inc.h +ExprInspectionChecker.po: AttrList.inc.h +ExprInspectionChecker.po: Attrs.inc.h +ExprInspectionChecker.po: Checkers.inc.h +ExprInspectionChecker.po: DeclNodes.inc.h +ExprInspectionChecker.po: DiagnosticCommonKinds.inc.h +ExprInspectionChecker.po: StmtNodes.inc.h FixedAddressChecker.o: AttrList.inc.h FixedAddressChecker.o: Attrs.inc.h FixedAddressChecker.o: Checkers.inc.h @@ -338,18 +362,18 @@ IdempotentOperationChecker.po: Checkers.inc.h IdempotentOperationChecker.po: DeclNodes.inc.h IdempotentOperationChecker.po: DiagnosticCommonKinds.inc.h IdempotentOperationChecker.po: StmtNodes.inc.h -IteratorsChecker.o: AttrList.inc.h -IteratorsChecker.o: Attrs.inc.h -IteratorsChecker.o: Checkers.inc.h -IteratorsChecker.o: DeclNodes.inc.h -IteratorsChecker.o: DiagnosticCommonKinds.inc.h -IteratorsChecker.o: StmtNodes.inc.h -IteratorsChecker.po: AttrList.inc.h -IteratorsChecker.po: Attrs.inc.h -IteratorsChecker.po: Checkers.inc.h -IteratorsChecker.po: DeclNodes.inc.h -IteratorsChecker.po: DiagnosticCommonKinds.inc.h -IteratorsChecker.po: StmtNodes.inc.h +IvarInvalidationChecker.o: AttrList.inc.h +IvarInvalidationChecker.o: Attrs.inc.h +IvarInvalidationChecker.o: Checkers.inc.h +IvarInvalidationChecker.o: DeclNodes.inc.h +IvarInvalidationChecker.o: DiagnosticCommonKinds.inc.h +IvarInvalidationChecker.o: StmtNodes.inc.h +IvarInvalidationChecker.po: AttrList.inc.h +IvarInvalidationChecker.po: Attrs.inc.h +IvarInvalidationChecker.po: Checkers.inc.h +IvarInvalidationChecker.po: DeclNodes.inc.h +IvarInvalidationChecker.po: DiagnosticCommonKinds.inc.h +IvarInvalidationChecker.po: StmtNodes.inc.h LLVMConventionsChecker.o: AttrList.inc.h LLVMConventionsChecker.o: Attrs.inc.h LLVMConventionsChecker.o: Checkers.inc.h @@ -458,18 +482,6 @@ NoReturnFunctionChecker.po: Checkers.inc.h NoReturnFunctionChecker.po: DeclNodes.inc.h NoReturnFunctionChecker.po: DiagnosticCommonKinds.inc.h NoReturnFunctionChecker.po: StmtNodes.inc.h -OSAtomicChecker.o: AttrList.inc.h -OSAtomicChecker.o: Attrs.inc.h -OSAtomicChecker.o: Checkers.inc.h -OSAtomicChecker.o: DeclNodes.inc.h -OSAtomicChecker.o: DiagnosticCommonKinds.inc.h -OSAtomicChecker.o: StmtNodes.inc.h -OSAtomicChecker.po: AttrList.inc.h -OSAtomicChecker.po: Attrs.inc.h -OSAtomicChecker.po: Checkers.inc.h -OSAtomicChecker.po: DeclNodes.inc.h -OSAtomicChecker.po: DiagnosticCommonKinds.inc.h -OSAtomicChecker.po: StmtNodes.inc.h ObjCAtSyncChecker.o: AttrList.inc.h ObjCAtSyncChecker.o: Attrs.inc.h ObjCAtSyncChecker.o: Checkers.inc.h @@ -506,6 +518,18 @@ ObjCContainersChecker.po: Checkers.inc.h ObjCContainersChecker.po: DeclNodes.inc.h ObjCContainersChecker.po: DiagnosticCommonKinds.inc.h ObjCContainersChecker.po: StmtNodes.inc.h +ObjCMissingSuperCallChecker.o: AttrList.inc.h +ObjCMissingSuperCallChecker.o: Attrs.inc.h +ObjCMissingSuperCallChecker.o: Checkers.inc.h +ObjCMissingSuperCallChecker.o: DeclNodes.inc.h +ObjCMissingSuperCallChecker.o: DiagnosticCommonKinds.inc.h +ObjCMissingSuperCallChecker.o: StmtNodes.inc.h +ObjCMissingSuperCallChecker.po: AttrList.inc.h +ObjCMissingSuperCallChecker.po: Attrs.inc.h +ObjCMissingSuperCallChecker.po: Checkers.inc.h +ObjCMissingSuperCallChecker.po: DeclNodes.inc.h +ObjCMissingSuperCallChecker.po: DiagnosticCommonKinds.inc.h +ObjCMissingSuperCallChecker.po: StmtNodes.inc.h ObjCSelfInitChecker.o: AttrList.inc.h ObjCSelfInitChecker.o: Attrs.inc.h ObjCSelfInitChecker.o: Checkers.inc.h @@ -602,6 +626,18 @@ ReturnUndefChecker.po: Checkers.inc.h ReturnUndefChecker.po: DeclNodes.inc.h ReturnUndefChecker.po: DiagnosticCommonKinds.inc.h ReturnUndefChecker.po: StmtNodes.inc.h +SimpleStreamChecker.o: AttrList.inc.h +SimpleStreamChecker.o: Attrs.inc.h +SimpleStreamChecker.o: Checkers.inc.h +SimpleStreamChecker.o: DeclNodes.inc.h +SimpleStreamChecker.o: DiagnosticCommonKinds.inc.h +SimpleStreamChecker.o: StmtNodes.inc.h +SimpleStreamChecker.po: AttrList.inc.h +SimpleStreamChecker.po: Attrs.inc.h +SimpleStreamChecker.po: Checkers.inc.h +SimpleStreamChecker.po: DeclNodes.inc.h +SimpleStreamChecker.po: DiagnosticCommonKinds.inc.h +SimpleStreamChecker.po: StmtNodes.inc.h StackAddrEscapeChecker.o: AttrList.inc.h StackAddrEscapeChecker.o: Attrs.inc.h StackAddrEscapeChecker.o: Checkers.inc.h @@ -638,6 +674,18 @@ TaintTesterChecker.po: Checkers.inc.h TaintTesterChecker.po: DeclNodes.inc.h TaintTesterChecker.po: DiagnosticCommonKinds.inc.h TaintTesterChecker.po: StmtNodes.inc.h +TraversalChecker.o: AttrList.inc.h +TraversalChecker.o: Attrs.inc.h +TraversalChecker.o: Checkers.inc.h +TraversalChecker.o: DeclNodes.inc.h +TraversalChecker.o: DiagnosticCommonKinds.inc.h +TraversalChecker.o: StmtNodes.inc.h +TraversalChecker.po: AttrList.inc.h +TraversalChecker.po: Attrs.inc.h +TraversalChecker.po: Checkers.inc.h +TraversalChecker.po: DeclNodes.inc.h +TraversalChecker.po: DiagnosticCommonKinds.inc.h +TraversalChecker.po: StmtNodes.inc.h UndefBranchChecker.o: AttrList.inc.h UndefBranchChecker.o: Attrs.inc.h UndefBranchChecker.o: Checkers.inc.h diff --git a/lib/clang/libclangstaticanalyzercore/Makefile.depend b/lib/clang/libclangstaticanalyzercore/Makefile.depend index 846f7763bff5..1e4a32fe8b87 100644 --- a/lib/clang/libclangstaticanalyzercore/Makefile.depend +++ b/lib/clang/libclangstaticanalyzercore/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -24,16 +24,6 @@ AnalysisManager.po: Attrs.inc.h AnalysisManager.po: DeclNodes.inc.h AnalysisManager.po: DiagnosticCommonKinds.inc.h AnalysisManager.po: StmtNodes.inc.h -BasicConstraintManager.o: AttrList.inc.h -BasicConstraintManager.o: Attrs.inc.h -BasicConstraintManager.o: DeclNodes.inc.h -BasicConstraintManager.o: DiagnosticCommonKinds.inc.h -BasicConstraintManager.o: StmtNodes.inc.h -BasicConstraintManager.po: AttrList.inc.h -BasicConstraintManager.po: Attrs.inc.h -BasicConstraintManager.po: DeclNodes.inc.h -BasicConstraintManager.po: DiagnosticCommonKinds.inc.h -BasicConstraintManager.po: StmtNodes.inc.h BasicValueFactory.o: AttrList.inc.h BasicValueFactory.o: Attrs.inc.h BasicValueFactory.o: DeclNodes.inc.h @@ -64,6 +54,16 @@ BugReporterVisitors.po: Attrs.inc.h BugReporterVisitors.po: DeclNodes.inc.h BugReporterVisitors.po: DiagnosticCommonKinds.inc.h BugReporterVisitors.po: StmtNodes.inc.h +CallEvent.o: AttrList.inc.h +CallEvent.o: Attrs.inc.h +CallEvent.o: DeclNodes.inc.h +CallEvent.o: DiagnosticCommonKinds.inc.h +CallEvent.o: StmtNodes.inc.h +CallEvent.po: AttrList.inc.h +CallEvent.po: Attrs.inc.h +CallEvent.po: DeclNodes.inc.h +CallEvent.po: DiagnosticCommonKinds.inc.h +CallEvent.po: StmtNodes.inc.h Checker.o: AttrList.inc.h Checker.o: Attrs.inc.h Checker.o: DeclNodes.inc.h @@ -114,6 +114,16 @@ CheckerRegistry.po: Attrs.inc.h CheckerRegistry.po: DeclNodes.inc.h CheckerRegistry.po: DiagnosticCommonKinds.inc.h CheckerRegistry.po: StmtNodes.inc.h +ConstraintManager.o: AttrList.inc.h +ConstraintManager.o: Attrs.inc.h +ConstraintManager.o: DeclNodes.inc.h +ConstraintManager.o: DiagnosticCommonKinds.inc.h +ConstraintManager.o: StmtNodes.inc.h +ConstraintManager.po: AttrList.inc.h +ConstraintManager.po: Attrs.inc.h +ConstraintManager.po: DeclNodes.inc.h +ConstraintManager.po: DiagnosticCommonKinds.inc.h +ConstraintManager.po: StmtNodes.inc.h CoreEngine.o: AttrList.inc.h CoreEngine.o: Attrs.inc.h CoreEngine.o: DeclNodes.inc.h @@ -222,16 +232,6 @@ MemRegion.po: Attrs.inc.h MemRegion.po: DeclNodes.inc.h MemRegion.po: DiagnosticCommonKinds.inc.h MemRegion.po: StmtNodes.inc.h -ObjCMessage.o: AttrList.inc.h -ObjCMessage.o: Attrs.inc.h -ObjCMessage.o: DeclNodes.inc.h -ObjCMessage.o: DiagnosticCommonKinds.inc.h -ObjCMessage.o: StmtNodes.inc.h -ObjCMessage.po: AttrList.inc.h -ObjCMessage.po: Attrs.inc.h -ObjCMessage.po: DeclNodes.inc.h -ObjCMessage.po: DiagnosticCommonKinds.inc.h -ObjCMessage.po: StmtNodes.inc.h PathDiagnostic.o: AttrList.inc.h PathDiagnostic.o: Attrs.inc.h PathDiagnostic.o: DeclNodes.inc.h diff --git a/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend b/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend index bcae1efe21a2..47f5ad017ede 100644 --- a/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend +++ b/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmanalysis/Makefile.depend b/lib/clang/libllvmanalysis/Makefile.depend index be777d8409c9..e8d0b1b5fe81 100644 --- a/lib/clang/libllvmanalysis/Makefile.depend +++ b/lib/clang/libllvmanalysis/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -24,20 +24,20 @@ CodeMetrics.o: Intrinsics.inc.h CodeMetrics.po: Intrinsics.inc.h ConstantFolding.o: Intrinsics.inc.h ConstantFolding.po: Intrinsics.inc.h -DIBuilder.o: Intrinsics.inc.h -DIBuilder.po: Intrinsics.inc.h DbgInfoPrinter.o: Intrinsics.inc.h DbgInfoPrinter.po: Intrinsics.inc.h -DebugInfo.o: Intrinsics.inc.h -DebugInfo.po: Intrinsics.inc.h InlineCost.o: Intrinsics.inc.h InlineCost.po: Intrinsics.inc.h +InstCount.o: Intrinsics.inc.h +InstCount.po: Intrinsics.inc.h LazyValueInfo.o: Intrinsics.inc.h LazyValueInfo.po: Intrinsics.inc.h Lint.o: Intrinsics.inc.h Lint.po: Intrinsics.inc.h Loads.o: Intrinsics.inc.h Loads.po: Intrinsics.inc.h +MemoryBuiltins.o: Intrinsics.inc.h +MemoryBuiltins.po: Intrinsics.inc.h MemoryDependenceAnalysis.o: Intrinsics.inc.h MemoryDependenceAnalysis.po: Intrinsics.inc.h ScalarEvolutionExpander.o: Intrinsics.inc.h diff --git a/lib/clang/libllvmarchive/Makefile.depend b/lib/clang/libllvmarchive/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmarchive/Makefile.depend +++ b/lib/clang/libllvmarchive/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmarmasmparser/Makefile.depend b/lib/clang/libllvmarmasmparser/Makefile.depend index d4e4af4fd790..971d85199472 100644 --- a/lib/clang/libllvmarmasmparser/Makefile.depend +++ b/lib/clang/libllvmarmasmparser/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmarmcodegen/Makefile.depend b/lib/clang/libllvmarmcodegen/Makefile.depend index abc1e04e5be4..cda3e6090377 100644 --- a/lib/clang/libllvmarmcodegen/Makefile.depend +++ b/lib/clang/libllvmarmcodegen/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmarmdesc/Makefile.depend b/lib/clang/libllvmarmdesc/Makefile.depend index 1f4c1657cb3e..d0482a0ff645 100644 --- a/lib/clang/libllvmarmdesc/Makefile.depend +++ b/lib/clang/libllvmarmdesc/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmarmdisassembler/Makefile.depend b/lib/clang/libllvmarmdisassembler/Makefile.depend index 0e7992868e3a..6fd3c24a1300 100644 --- a/lib/clang/libllvmarmdisassembler/Makefile.depend +++ b/lib/clang/libllvmarmdisassembler/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmarminfo/Makefile.depend b/lib/clang/libllvmarminfo/Makefile.depend index 06b4fd9e981c..36e229b7b9da 100644 --- a/lib/clang/libllvmarminfo/Makefile.depend +++ b/lib/clang/libllvmarminfo/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmarminstprinter/Makefile.depend b/lib/clang/libllvmarminstprinter/Makefile.depend index 9bcf0c7abc45..ec220f978f51 100644 --- a/lib/clang/libllvmarminstprinter/Makefile.depend +++ b/lib/clang/libllvmarminstprinter/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmasmparser/Makefile.depend b/lib/clang/libllvmasmparser/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmasmparser/Makefile.depend +++ b/lib/clang/libllvmasmparser/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmasmprinter/Makefile.depend b/lib/clang/libllvmasmprinter/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmasmprinter/Makefile.depend +++ b/lib/clang/libllvmasmprinter/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmbitreader/Makefile.depend b/lib/clang/libllvmbitreader/Makefile.depend index 97f57a5f93f1..b947096fea4f 100644 --- a/lib/clang/libllvmbitreader/Makefile.depend +++ b/lib/clang/libllvmbitreader/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmbitwriter/Makefile.depend b/lib/clang/libllvmbitwriter/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmbitwriter/Makefile.depend +++ b/lib/clang/libllvmbitwriter/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmcodegen/Makefile.depend b/lib/clang/libllvmcodegen/Makefile.depend index 026d1de8e952..384bed583cce 100644 --- a/lib/clang/libllvmcodegen/Makefile.depend +++ b/lib/clang/libllvmcodegen/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmcore/Makefile.depend b/lib/clang/libllvmcore/Makefile.depend index cdb43737d781..489ec2bc7cbe 100644 --- a/lib/clang/libllvmcore/Makefile.depend +++ b/lib/clang/libllvmcore/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -22,6 +22,10 @@ BasicBlock.o: Intrinsics.inc.h BasicBlock.po: Intrinsics.inc.h Core.o: Intrinsics.inc.h Core.po: Intrinsics.inc.h +DIBuilder.o: Intrinsics.inc.h +DIBuilder.po: Intrinsics.inc.h +DebugInfo.o: Intrinsics.inc.h +DebugInfo.po: Intrinsics.inc.h Function.o: Intrinsics.inc.h Function.po: Intrinsics.inc.h IRBuilder.o: Intrinsics.inc.h diff --git a/lib/clang/libllvminstcombine/Makefile.depend b/lib/clang/libllvminstcombine/Makefile.depend index 27d7724f9a75..0851afa916c8 100644 --- a/lib/clang/libllvminstcombine/Makefile.depend +++ b/lib/clang/libllvminstcombine/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvminstrumentation/Makefile.depend b/lib/clang/libllvminstrumentation/Makefile.depend index 2574cd56aa71..a730fc235327 100644 --- a/lib/clang/libllvminstrumentation/Makefile.depend +++ b/lib/clang/libllvminstrumentation/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -16,6 +16,8 @@ DIRDEPS = \ # local dependencies - needed for -jN in clean tree AddressSanitizer.o: Intrinsics.inc.h AddressSanitizer.po: Intrinsics.inc.h +BoundsChecking.o: Intrinsics.inc.h +BoundsChecking.po: Intrinsics.inc.h ThreadSanitizer.o: Intrinsics.inc.h ThreadSanitizer.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvmipa/Makefile.depend b/lib/clang/libllvmipa/Makefile.depend index 9b4317f5d016..8c10ddd906d9 100644 --- a/lib/clang/libllvmipa/Makefile.depend +++ b/lib/clang/libllvmipa/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmipo/Makefile.depend b/lib/clang/libllvmipo/Makefile.depend index 6f90d4d62450..54309eef69b1 100644 --- a/lib/clang/libllvmipo/Makefile.depend +++ b/lib/clang/libllvmipo/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmlinker/Makefile.depend b/lib/clang/libllvmlinker/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmlinker/Makefile.depend +++ b/lib/clang/libllvmlinker/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmmc/Makefile.depend b/lib/clang/libllvmmc/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmmc/Makefile.depend +++ b/lib/clang/libllvmmc/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmmcparser/Makefile.depend b/lib/clang/libllvmmcparser/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmmcparser/Makefile.depend +++ b/lib/clang/libllvmmcparser/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmmipsasmparser/Makefile.depend b/lib/clang/libllvmmipsasmparser/Makefile.depend index a215c2c9d5ab..89bde7286af8 100644 --- a/lib/clang/libllvmmipsasmparser/Makefile.depend +++ b/lib/clang/libllvmmipsasmparser/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -14,9 +14,11 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +MipsAsmParser.o: MipsGenAsmMatcher.inc.h MipsAsmParser.o: MipsGenInstrInfo.inc.h MipsAsmParser.o: MipsGenRegisterInfo.inc.h MipsAsmParser.o: MipsGenSubtargetInfo.inc.h +MipsAsmParser.po: MipsGenAsmMatcher.inc.h MipsAsmParser.po: MipsGenInstrInfo.inc.h MipsAsmParser.po: MipsGenRegisterInfo.inc.h MipsAsmParser.po: MipsGenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmmipscodegen/Makefile.depend b/lib/clang/libllvmmipscodegen/Makefile.depend index 28ee9944de05..f1a985dbeca9 100644 --- a/lib/clang/libllvmmipscodegen/Makefile.depend +++ b/lib/clang/libllvmmipscodegen/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -14,6 +14,24 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +Mips16FrameLowering.o: MipsGenInstrInfo.inc.h +Mips16FrameLowering.o: MipsGenRegisterInfo.inc.h +Mips16FrameLowering.o: MipsGenSubtargetInfo.inc.h +Mips16FrameLowering.po: MipsGenInstrInfo.inc.h +Mips16FrameLowering.po: MipsGenRegisterInfo.inc.h +Mips16FrameLowering.po: MipsGenSubtargetInfo.inc.h +Mips16InstrInfo.o: MipsGenInstrInfo.inc.h +Mips16InstrInfo.o: MipsGenRegisterInfo.inc.h +Mips16InstrInfo.o: MipsGenSubtargetInfo.inc.h +Mips16InstrInfo.po: MipsGenInstrInfo.inc.h +Mips16InstrInfo.po: MipsGenRegisterInfo.inc.h +Mips16InstrInfo.po: MipsGenSubtargetInfo.inc.h +Mips16RegisterInfo.o: MipsGenInstrInfo.inc.h +Mips16RegisterInfo.o: MipsGenRegisterInfo.inc.h +Mips16RegisterInfo.o: MipsGenSubtargetInfo.inc.h +Mips16RegisterInfo.po: MipsGenInstrInfo.inc.h +Mips16RegisterInfo.po: MipsGenRegisterInfo.inc.h +Mips16RegisterInfo.po: MipsGenSubtargetInfo.inc.h MipsAnalyzeImmediate.o: MipsGenInstrInfo.inc.h MipsAnalyzeImmediate.o: MipsGenRegisterInfo.inc.h MipsAnalyzeImmediate.o: MipsGenSubtargetInfo.inc.h @@ -21,9 +39,11 @@ MipsAnalyzeImmediate.po: MipsGenInstrInfo.inc.h MipsAnalyzeImmediate.po: MipsGenRegisterInfo.inc.h MipsAnalyzeImmediate.po: MipsGenSubtargetInfo.inc.h MipsAsmPrinter.o: MipsGenInstrInfo.inc.h +MipsAsmPrinter.o: MipsGenMCPseudoLowering.inc.h MipsAsmPrinter.o: MipsGenRegisterInfo.inc.h MipsAsmPrinter.o: MipsGenSubtargetInfo.inc.h MipsAsmPrinter.po: MipsGenInstrInfo.inc.h +MipsAsmPrinter.po: MipsGenMCPseudoLowering.inc.h MipsAsmPrinter.po: MipsGenRegisterInfo.inc.h MipsAsmPrinter.po: MipsGenSubtargetInfo.inc.h MipsCodeEmitter.o: MipsGenCodeEmitter.inc.h @@ -40,18 +60,6 @@ MipsDelaySlotFiller.o: MipsGenSubtargetInfo.inc.h MipsDelaySlotFiller.po: MipsGenInstrInfo.inc.h MipsDelaySlotFiller.po: MipsGenRegisterInfo.inc.h MipsDelaySlotFiller.po: MipsGenSubtargetInfo.inc.h -MipsEmitGPRestore.o: MipsGenInstrInfo.inc.h -MipsEmitGPRestore.o: MipsGenRegisterInfo.inc.h -MipsEmitGPRestore.o: MipsGenSubtargetInfo.inc.h -MipsEmitGPRestore.po: MipsGenInstrInfo.inc.h -MipsEmitGPRestore.po: MipsGenRegisterInfo.inc.h -MipsEmitGPRestore.po: MipsGenSubtargetInfo.inc.h -MipsExpandPseudo.o: MipsGenInstrInfo.inc.h -MipsExpandPseudo.o: MipsGenRegisterInfo.inc.h -MipsExpandPseudo.o: MipsGenSubtargetInfo.inc.h -MipsExpandPseudo.po: MipsGenInstrInfo.inc.h -MipsExpandPseudo.po: MipsGenRegisterInfo.inc.h -MipsExpandPseudo.po: MipsGenSubtargetInfo.inc.h MipsFrameLowering.o: MipsGenInstrInfo.inc.h MipsFrameLowering.o: MipsGenRegisterInfo.inc.h MipsFrameLowering.o: MipsGenSubtargetInfo.inc.h @@ -90,6 +98,12 @@ MipsJITInfo.o: MipsGenSubtargetInfo.inc.h MipsJITInfo.po: MipsGenInstrInfo.inc.h MipsJITInfo.po: MipsGenRegisterInfo.inc.h MipsJITInfo.po: MipsGenSubtargetInfo.inc.h +MipsLongBranch.o: MipsGenInstrInfo.inc.h +MipsLongBranch.o: MipsGenRegisterInfo.inc.h +MipsLongBranch.o: MipsGenSubtargetInfo.inc.h +MipsLongBranch.po: MipsGenInstrInfo.inc.h +MipsLongBranch.po: MipsGenRegisterInfo.inc.h +MipsLongBranch.po: MipsGenSubtargetInfo.inc.h MipsMCInstLower.o: MipsGenInstrInfo.inc.h MipsMCInstLower.o: MipsGenRegisterInfo.inc.h MipsMCInstLower.o: MipsGenSubtargetInfo.inc.h @@ -108,6 +122,24 @@ MipsRegisterInfo.o: MipsGenSubtargetInfo.inc.h MipsRegisterInfo.po: MipsGenInstrInfo.inc.h MipsRegisterInfo.po: MipsGenRegisterInfo.inc.h MipsRegisterInfo.po: MipsGenSubtargetInfo.inc.h +MipsSEFrameLowering.o: MipsGenInstrInfo.inc.h +MipsSEFrameLowering.o: MipsGenRegisterInfo.inc.h +MipsSEFrameLowering.o: MipsGenSubtargetInfo.inc.h +MipsSEFrameLowering.po: MipsGenInstrInfo.inc.h +MipsSEFrameLowering.po: MipsGenRegisterInfo.inc.h +MipsSEFrameLowering.po: MipsGenSubtargetInfo.inc.h +MipsSEInstrInfo.o: MipsGenInstrInfo.inc.h +MipsSEInstrInfo.o: MipsGenRegisterInfo.inc.h +MipsSEInstrInfo.o: MipsGenSubtargetInfo.inc.h +MipsSEInstrInfo.po: MipsGenInstrInfo.inc.h +MipsSEInstrInfo.po: MipsGenRegisterInfo.inc.h +MipsSEInstrInfo.po: MipsGenSubtargetInfo.inc.h +MipsSERegisterInfo.o: MipsGenInstrInfo.inc.h +MipsSERegisterInfo.o: MipsGenRegisterInfo.inc.h +MipsSERegisterInfo.o: MipsGenSubtargetInfo.inc.h +MipsSERegisterInfo.po: MipsGenInstrInfo.inc.h +MipsSERegisterInfo.po: MipsGenRegisterInfo.inc.h +MipsSERegisterInfo.po: MipsGenSubtargetInfo.inc.h MipsSelectionDAGInfo.o: MipsGenInstrInfo.inc.h MipsSelectionDAGInfo.o: MipsGenRegisterInfo.inc.h MipsSelectionDAGInfo.o: MipsGenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmmipsdesc/Makefile.depend b/lib/clang/libllvmmipsdesc/Makefile.depend index 1aceb5f3ac2e..431b91616045 100644 --- a/lib/clang/libllvmmipsdesc/Makefile.depend +++ b/lib/clang/libllvmmipsdesc/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -20,6 +20,12 @@ MipsAsmBackend.o: MipsGenSubtargetInfo.inc.h MipsAsmBackend.po: MipsGenInstrInfo.inc.h MipsAsmBackend.po: MipsGenRegisterInfo.inc.h MipsAsmBackend.po: MipsGenSubtargetInfo.inc.h +MipsDirectObjLower.o: MipsGenInstrInfo.inc.h +MipsDirectObjLower.o: MipsGenRegisterInfo.inc.h +MipsDirectObjLower.o: MipsGenSubtargetInfo.inc.h +MipsDirectObjLower.po: MipsGenInstrInfo.inc.h +MipsDirectObjLower.po: MipsGenRegisterInfo.inc.h +MipsDirectObjLower.po: MipsGenSubtargetInfo.inc.h MipsELFObjectWriter.o: MipsGenInstrInfo.inc.h MipsELFObjectWriter.o: MipsGenRegisterInfo.inc.h MipsELFObjectWriter.o: MipsGenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmmipsinfo/Makefile.depend b/lib/clang/libllvmmipsinfo/Makefile.depend index 54441b5d8752..d137771a1589 100644 --- a/lib/clang/libllvmmipsinfo/Makefile.depend +++ b/lib/clang/libllvmmipsinfo/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmmipsinstprinter/Makefile.depend b/lib/clang/libllvmmipsinstprinter/Makefile.depend index 5ecd0b52f349..e30b14ba5aa7 100644 --- a/lib/clang/libllvmmipsinstprinter/Makefile.depend +++ b/lib/clang/libllvmmipsinstprinter/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -15,5 +15,11 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree MipsInstPrinter.o: MipsGenAsmWriter.inc.h +MipsInstPrinter.o: MipsGenInstrInfo.inc.h +MipsInstPrinter.o: MipsGenRegisterInfo.inc.h +MipsInstPrinter.o: MipsGenSubtargetInfo.inc.h MipsInstPrinter.po: MipsGenAsmWriter.inc.h +MipsInstPrinter.po: MipsGenInstrInfo.inc.h +MipsInstPrinter.po: MipsGenRegisterInfo.inc.h +MipsInstPrinter.po: MipsGenSubtargetInfo.inc.h .endif diff --git a/lib/clang/libllvmobject/Makefile.depend b/lib/clang/libllvmobject/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmobject/Makefile.depend +++ b/lib/clang/libllvmobject/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmpowerpccodegen/Makefile.depend b/lib/clang/libllvmpowerpccodegen/Makefile.depend index 988435f466bf..ae70ab60647a 100644 --- a/lib/clang/libllvmpowerpccodegen/Makefile.depend +++ b/lib/clang/libllvmpowerpccodegen/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -26,6 +26,12 @@ PPCBranchSelector.o: PPCGenSubtargetInfo.inc.h PPCBranchSelector.po: PPCGenInstrInfo.inc.h PPCBranchSelector.po: PPCGenRegisterInfo.inc.h PPCBranchSelector.po: PPCGenSubtargetInfo.inc.h +PPCCTRLoops.o: PPCGenInstrInfo.inc.h +PPCCTRLoops.o: PPCGenRegisterInfo.inc.h +PPCCTRLoops.o: PPCGenSubtargetInfo.inc.h +PPCCTRLoops.po: PPCGenInstrInfo.inc.h +PPCCTRLoops.po: PPCGenRegisterInfo.inc.h +PPCCTRLoops.po: PPCGenSubtargetInfo.inc.h PPCCodeEmitter.o: PPCGenCodeEmitter.inc.h PPCCodeEmitter.o: PPCGenInstrInfo.inc.h PPCCodeEmitter.o: PPCGenRegisterInfo.inc.h diff --git a/lib/clang/libllvmpowerpcdesc/Makefile.depend b/lib/clang/libllvmpowerpcdesc/Makefile.depend index b67f8a9b2d39..e08c52ee04f0 100644 --- a/lib/clang/libllvmpowerpcdesc/Makefile.depend +++ b/lib/clang/libllvmpowerpcdesc/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmpowerpcinfo/Makefile.depend b/lib/clang/libllvmpowerpcinfo/Makefile.depend index 22102dc6f313..000ccdafcf74 100644 --- a/lib/clang/libllvmpowerpcinfo/Makefile.depend +++ b/lib/clang/libllvmpowerpcinfo/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmpowerpcinstprinter/Makefile.depend b/lib/clang/libllvmpowerpcinstprinter/Makefile.depend index da1fa0fb4964..b684e2531769 100644 --- a/lib/clang/libllvmpowerpcinstprinter/Makefile.depend +++ b/lib/clang/libllvmpowerpcinstprinter/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmscalaropts/Makefile.depend b/lib/clang/libllvmscalaropts/Makefile.depend index 5b49aa40b311..4eb3de81ec94 100644 --- a/lib/clang/libllvmscalaropts/Makefile.depend +++ b/lib/clang/libllvmscalaropts/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -46,6 +46,10 @@ ObjCARC.o: Intrinsics.inc.h ObjCARC.po: Intrinsics.inc.h Reassociate.o: Intrinsics.inc.h Reassociate.po: Intrinsics.inc.h +SCCP.o: Intrinsics.inc.h +SCCP.po: Intrinsics.inc.h +SROA.o: Intrinsics.inc.h +SROA.po: Intrinsics.inc.h ScalarReplAggregates.o: Intrinsics.inc.h ScalarReplAggregates.po: Intrinsics.inc.h SimplifyCFGPass.o: Intrinsics.inc.h diff --git a/lib/clang/libllvmselectiondag/Makefile.depend b/lib/clang/libllvmselectiondag/Makefile.depend index cae65c829615..6db6d7ed1eaa 100644 --- a/lib/clang/libllvmselectiondag/Makefile.depend +++ b/lib/clang/libllvmselectiondag/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmsupport/Makefile.depend b/lib/clang/libllvmsupport/Makefile.depend index 65a0021777cb..422d37c93228 100644 --- a/lib/clang/libllvmsupport/Makefile.depend +++ b/lib/clang/libllvmsupport/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libstdc++ \ gnu/lib/libsupc++ \ diff --git a/lib/clang/libllvmtablegen/Makefile.depend b/lib/clang/libllvmtablegen/Makefile.depend index 65a0021777cb..422d37c93228 100644 --- a/lib/clang/libllvmtablegen/Makefile.depend +++ b/lib/clang/libllvmtablegen/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libstdc++ \ gnu/lib/libsupc++ \ diff --git a/lib/clang/libllvmtarget/Makefile.depend b/lib/clang/libllvmtarget/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmtarget/Makefile.depend +++ b/lib/clang/libllvmtarget/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmtransformutils/Makefile.depend b/lib/clang/libllvmtransformutils/Makefile.depend index 16320acc92a5..f7d03f410666 100644 --- a/lib/clang/libllvmtransformutils/Makefile.depend +++ b/lib/clang/libllvmtransformutils/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ @@ -24,6 +24,8 @@ CodeExtractor.o: Intrinsics.inc.h CodeExtractor.po: Intrinsics.inc.h InlineFunction.o: Intrinsics.inc.h InlineFunction.po: Intrinsics.inc.h +IntegerDivision.o: Intrinsics.inc.h +IntegerDivision.po: Intrinsics.inc.h Local.o: Intrinsics.inc.h Local.po: Intrinsics.inc.h LoopSimplify.o: Intrinsics.inc.h diff --git a/lib/clang/libllvmvectorize/Makefile.depend b/lib/clang/libllvmvectorize/Makefile.depend index 4bf19437a5f0..f44ea477f2c6 100644 --- a/lib/clang/libllvmvectorize/Makefile.depend +++ b/lib/clang/libllvmvectorize/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmx86asmparser/Makefile.depend b/lib/clang/libllvmx86asmparser/Makefile.depend index 22486a920273..e89abf7c1290 100644 --- a/lib/clang/libllvmx86asmparser/Makefile.depend +++ b/lib/clang/libllvmx86asmparser/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmx86codegen/Makefile.depend b/lib/clang/libllvmx86codegen/Makefile.depend index f1da7d609dab..47eea8c800cc 100644 --- a/lib/clang/libllvmx86codegen/Makefile.depend +++ b/lib/clang/libllvmx86codegen/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmx86desc/Makefile.depend b/lib/clang/libllvmx86desc/Makefile.depend index 2c335d731977..a5e3e540a7a5 100644 --- a/lib/clang/libllvmx86desc/Makefile.depend +++ b/lib/clang/libllvmx86desc/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmx86disassembler/Makefile.depend b/lib/clang/libllvmx86disassembler/Makefile.depend index 4c1fae90e03d..802a851c07cb 100644 --- a/lib/clang/libllvmx86disassembler/Makefile.depend +++ b/lib/clang/libllvmx86disassembler/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmx86info/Makefile.depend b/lib/clang/libllvmx86info/Makefile.depend index 2da8b5381f3d..1540a5fab645 100644 --- a/lib/clang/libllvmx86info/Makefile.depend +++ b/lib/clang/libllvmx86info/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmx86instprinter/Makefile.depend b/lib/clang/libllvmx86instprinter/Makefile.depend index 9eafb9145f9e..ab56eb6eee79 100644 --- a/lib/clang/libllvmx86instprinter/Makefile.depend +++ b/lib/clang/libllvmx86instprinter/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmx86utils/Makefile.depend b/lib/clang/libllvmx86utils/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmx86utils/Makefile.depend +++ b/lib/clang/libllvmx86utils/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/usr.bin/clang/clang-tblgen/Makefile.depend b/usr.bin/clang/clang-tblgen/Makefile.depend index 9148fc2c7e55..1a3fce45f4e3 100644 --- a/usr.bin/clang/clang-tblgen/Makefile.depend +++ b/usr.bin/clang/clang-tblgen/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ @@ -14,6 +12,7 @@ DIRDEPS = \ lib/clang/libllvmsupport \ lib/clang/libllvmtablegen \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/clang/clang/Makefile.depend b/usr.bin/clang/clang/Makefile.depend index 9c26a6933977..f7b95b070285 100644 --- a/usr.bin/clang/clang/Makefile.depend +++ b/usr.bin/clang/clang/Makefile.depend @@ -2,11 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - gnu/lib/libgcc \ gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/${CSU_DIR} \ @@ -21,7 +19,8 @@ DIRDEPS = \ lib/clang/libclangfrontendtool \ lib/clang/libclanglex \ lib/clang/libclangparse \ - lib/clang/libclangrewrite \ + lib/clang/libclangrewritecore \ + lib/clang/libclangrewritefrontend \ lib/clang/libclangsema \ lib/clang/libclangserialization \ lib/clang/libclangstaticanalyzercheckers \ @@ -51,6 +50,7 @@ DIRDEPS = \ lib/clang/libllvmmipsasmparser \ lib/clang/libllvmmipscodegen \ lib/clang/libllvmmipsdesc \ + lib/clang/libllvmmipsdisassembler \ lib/clang/libllvmmipsinfo \ lib/clang/libllvmmipsinstprinter \ lib/clang/libllvmobject \ @@ -72,6 +72,7 @@ DIRDEPS = \ lib/clang/libllvmx86instprinter \ lib/clang/libllvmx86utils \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ @@ -79,14 +80,14 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -cc1_main.o: CC1Options.inc.h cc1_main.o: DiagnosticCommonKinds.inc.h cc1_main.o: DiagnosticDriverKinds.inc.h cc1_main.o: DiagnosticFrontendKinds.inc.h -cc1_main.po: CC1Options.inc.h +cc1_main.o: Options.inc.h cc1_main.po: DiagnosticCommonKinds.inc.h cc1_main.po: DiagnosticDriverKinds.inc.h cc1_main.po: DiagnosticFrontendKinds.inc.h +cc1_main.po: Options.inc.h cc1as_main.o: CC1AsOptions.inc.h cc1as_main.o: DiagnosticCommonKinds.inc.h cc1as_main.o: DiagnosticDriverKinds.inc.h @@ -97,8 +98,8 @@ cc1as_main.po: DiagnosticCommonKinds.inc.h cc1as_main.po: DiagnosticDriverKinds.inc.h cc1as_main.po: DiagnosticFrontendKinds.inc.h cc1as_main.po: Options.inc.h -driver.o: CC1Options.inc.h driver.o: DiagnosticCommonKinds.inc.h -driver.po: CC1Options.inc.h +driver.o: Options.inc.h driver.po: DiagnosticCommonKinds.inc.h +driver.po: Options.inc.h .endif diff --git a/usr.bin/clang/tblgen/Makefile.depend b/usr.bin/clang/tblgen/Makefile.depend index 9148fc2c7e55..1a3fce45f4e3 100644 --- a/usr.bin/clang/tblgen/Makefile.depend +++ b/usr.bin/clang/tblgen/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ @@ -14,6 +12,7 @@ DIRDEPS = \ lib/clang/libllvmsupport \ lib/clang/libllvmtablegen \ lib/libc \ + lib/libcompiler_rt \ lib/msun \ From 8ee28ef6692df5d2b2cd9900fe18540b7b1f81e1 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 17 Mar 2013 03:06:49 +0000 Subject: [PATCH 070/228] Don't add libssp for host --- share/mk/local.dirdeps.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index 71470470f2c7..a92a9f705766 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -1,9 +1,13 @@ +.if ${DEP_MACHINE} != "host" + # this is how we can handle optional dependencies .if ${MK_SSP:Uno} != "no" && defined(PROG) DIRDEPS += gnu/lib/libssp/libssp_nonshared .endif +.endif + # we need pkgs/pseudo/stage to prep the stage tree .if ${DEP_RELDIR:U${RELDIR}} != "pkgs/pseudo/stage" DIRDEPS += pkgs/pseudo/stage From a4b2fbdde2b84106b120d5292d4f3bd8bd7011fc Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 17 Mar 2013 03:07:13 +0000 Subject: [PATCH 071/228] Don't forget DEP_TARGET_SPEC --- share/mk/dirdeps.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/share/mk/dirdeps.mk b/share/mk/dirdeps.mk index e7e19c9f8413..65e5b03cadcf 100644 --- a/share/mk/dirdeps.mk +++ b/share/mk/dirdeps.mk @@ -253,6 +253,7 @@ SKIP_DIR += .host *.WAIT ${SKIP_DIRDEPS} SKIP_DIR.host += ${SKIP_HOSTDIR} DEP_SKIP_DIR = ${SKIP_DIR} \ + ${SKIP_DIR.${DEP_TARGET_SPEC}:U} \ ${SKIP_DIR.${DEP_MACHINE}:U} \ ${SKIP_DIRDEPS.${DEP_MACHINE}:U} @@ -375,7 +376,10 @@ _build_dirs += ${_machines:N${DEP_TARGET_SPEC}:@m@${_CURDIR}.$m@} .if !empty(DIRDEPS) # these we reset each time through as they can depend on DEP_MACHINE -DEP_DIRDEPS_FILTER = ${DIRDEPS_FILTER.${DEP_MACHINE}:U} ${DIRDEPS_FILTER:U} +DEP_DIRDEPS_FILTER = \ + ${DIRDEPS_FILTER.${DEP_TARGET_SPEC}:U} \ + ${DIRDEPS_FILTER.${DEP_MACHINE}:U} \ + ${DIRDEPS_FILTER:U} .if empty(DEP_DIRDEPS_FILTER) # something harmless DEP_DIRDEPS_FILTER = U From fd2ff6a08722c1d7f1e4cc5983dcadde49715882 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 17 Mar 2013 03:09:08 +0000 Subject: [PATCH 072/228] If building for "host" and we do not have Makefile.depend.host; do not update it. This allows us to avoid populating the tree with Makefile.depend.host that aren't absolutely necessary. --- share/mk/local.sys.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index 98827a53d52c..aea9a75d61f7 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -186,9 +186,9 @@ STAGED_INCLUDE_DIR= ${STAGE_OBJTOP}/include .include "sys.dependfile.mk" -.if ${MACHINE} == "host" -# need a machine specific file -.MAKE.DEPENDFILE= ${.MAKE.DEPENDFILE_PREFIX}.${MACHINE} +.if ${.MAKE.LEVEL} > 0 && ${MACHINE} == "host" && ${.MAKE.DEPENDFILE:E} != "host" +# we can use this but should not update it. +UPDATE_DEPENDFILE= NO .endif .MAKE.META.BAILIWICK = ${SB} ${OBJROOT} ${STAGE_ROOT} From 1190d98ed8c883f3b886f800d21c30e091fc863f Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 18 Mar 2013 21:29:31 +0000 Subject: [PATCH 073/228] Revert the dance for skipping machine qualified dependfile. We just note when using non-machine qualified dependfile for "host" and skip update. --- share/mk/gendirdeps.mk | 7 ------- 1 file changed, 7 deletions(-) diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk index 5beb3f58df6a..cdbfb282a180 100644 --- a/share/mk/gendirdeps.mk +++ b/share/mk/gendirdeps.mk @@ -281,10 +281,6 @@ CAT_DEPEND ?= .depend # .depend may contain things we don't want. # The sed command at the end of the stream, allows for the filters # to output _{VAR} tokens which we will turn into proper ${VAR} references. -# Note: if we have a non-machine qualified .MAKE.DEPENDFILE_DEFAULT -# which exists and _DEPENDFILE does not yet and is machine qualified; -# compare new _DEPENDFILE to default and if they are the same we do -# not need _DEPENDFILE. ${_DEPENDFILE}: ${CAT_DEPEND:M.depend} ${META_FILES:O:u:@m@${exists($m):?$m:}@} ${_this} ${META2DEPS} @(echo '# Autogenerated - do NOT edit!'; echo; \ echo 'DEP_RELDIR := $${_PARSEDIR:S,$${SRCTOP}/,,}'; echo; \ @@ -297,9 +293,6 @@ ${_DEPENDFILE}: ${CAT_DEPEND:M.depend} ${META_FILES:O:u:@m@${exists($m):?$m:}@} echo '# local dependencies - needed for -jN in clean tree'; \ [ -s ${CAT_DEPEND} ] && { grep : ${CAT_DEPEND} | grep -v '[/\\]'; }; \ echo '.endif' ) | sed 's,_\([{(]\),$$\1,g' > $@.new${.MAKE.PID} -.if ${.MAKE.DEPENDFILE_DEFAULT:E} != ${MACHINE} && ${@:E} == ${MACHINE} && !exists($@) && exists(${@:H}/${.MAKE.DEPENDFILE_DEFAULT:T}) - @cmp -s ${@:H}/${.MAKE.DEPENDFILE_DEFAULT:T} $@.new${.MAKE.PID} && rm $@.new${.MAKE.PID}; : -.endif @${InstallNew}; InstallNew -s $@.new${.MAKE.PID} .endif # meta2deps failed From b1993b51d67b09eb16026fb4fabee577042f29fb Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 20 Mar 2013 03:34:24 +0000 Subject: [PATCH 074/228] Add newline before for better formatting --- pkgs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/Makefile b/pkgs/Makefile index b605cae0ef39..949eea6b9b4d 100644 --- a/pkgs/Makefile +++ b/pkgs/Makefile @@ -102,7 +102,7 @@ $v = yes # This allows us to work out how long reading # Makefile.depend* takes. .if ${.MAKEFLAGS:M-V} == "" -.info ${TIME_STAMP} Start ${.TARGETS} +.info ${.newline}${TIME_STAMP} Start ${.TARGETS} now_utc = ${%s:L:gmtime} start_utc := ${now_utc} .endif From 2cb6de20c61aa04b47610746a0eb8a0595bb73bf Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 22 Mar 2013 01:34:27 +0000 Subject: [PATCH 075/228] When processing DPADD, defer application of :tA (realpath) so we do not lose /. --- share/mk/gendirdeps.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk index cdbfb282a180..7dc33fe272f6 100644 --- a/share/mk/gendirdeps.mk +++ b/share/mk/gendirdeps.mk @@ -163,13 +163,13 @@ dir_list != cd ${_OBJDIR} && \ _nonlibs := ${DPADD:T:Nlib*:N*include} .if !empty(_nonlibs) ddep_list = -.for f in ${_nonlibs:@x@${DPADD:M*/$x}@:tA} +.for f in ${_nonlibs:@x@${DPADD:M*/$x}@} .if exists($f.dirdep) ddep_list += $f.dirdep .elif exists(${f:H}.dirdep) ddep_list += ${f:H}.dirdep .else -dir_list += ${f:H} +dir_list += ${f:H:tA} .endif .endfor .if !empty(ddep_list) From 51048477bcc79bcc8753121ec91c150648df3d1b Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 22 Mar 2013 01:35:08 +0000 Subject: [PATCH 076/228] sync latest meta2deps --- share/mk/meta2deps.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/share/mk/meta2deps.py b/share/mk/meta2deps.py index a7af98a8be4f..82a3d61729d8 100755 --- a/share/mk/meta2deps.py +++ b/share/mk/meta2deps.py @@ -35,7 +35,7 @@ """ RCSid: - $Id: meta2deps.py,v 1.8 2013/02/10 19:21:46 sjg Exp $ + $Id: meta2deps.py,v 1.10 2013/03/17 03:10:09 sjg Exp $ Copyright (c) 2011-2013, Juniper Networks, Inc. All rights reserved. @@ -150,6 +150,7 @@ def __init__(self, name, conf={}): MACHINE the machine we built for. set to 'none' if we are not cross-building. + More specifically if machine cannot be deduced from objdirs. HOST_TARGET when we build for the psuedo machine 'host' @@ -176,6 +177,9 @@ def __init__(self, name, conf={}): self.debug_out = getv(conf, 'debug_out', sys.stderr) self.machine = getv(conf, 'MACHINE', '') + self.curdir = getv(conf, 'CURDIR') + self.reldir = getv(conf, 'RELDIR') + self.dpdeps = getv(conf, 'DPDEPS') if not self.conf: # some of the steps below we want to do only once @@ -221,9 +225,6 @@ def __init__(self, name, conf={}): self.dirdep_re = re.compile(r'([^/]+)/(.+)') - self.curdir = getv(conf, 'CURDIR') - self.reldir = getv(conf, 'RELDIR') - self.dpdeps = getv(conf, 'DPDEPS') if self.dpdeps and not self.reldir: if self.debug: print >> self.debug_out, "need reldir:", From 876336c858865f10a4dd309194142b0094a9073b Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 14 Apr 2013 01:21:20 +0000 Subject: [PATCH 077/228] Sync latest versions --- share/mk/dirdeps.mk | 14 ++++++++++++-- share/mk/gendirdeps.mk | 22 +++++++++++++++------- share/mk/meta.autodep.mk | 3 ++- share/mk/meta.stage.mk | 20 ++++++++++---------- share/mk/meta2deps.py | 16 +++++++++++++--- 5 files changed, 52 insertions(+), 23 deletions(-) diff --git a/share/mk/dirdeps.mk b/share/mk/dirdeps.mk index 65e5b03cadcf..e812416cc88e 100644 --- a/share/mk/dirdeps.mk +++ b/share/mk/dirdeps.mk @@ -1,4 +1,4 @@ -# $Id: dirdeps.mk,v 1.24 2013/02/10 19:21:46 sjg Exp $ +# $Id: dirdeps.mk,v 1.28 2013/03/25 21:11:43 sjg Exp $ # Copyright (c) 2010-2013, Juniper Networks, Inc. # All rights reserved. @@ -86,19 +86,29 @@ # # For example: # -# # variables other than MACHINE might be optional +# # Always list MACHINE first, +# # other variables might be optional. # TARGET_SPEC_VARS = MACHINE TARGET_OS # .if ${TARGET_SPEC:Uno:M*,*} != "" # _tspec := ${TARGET_SPEC:S/,/ /g} # MACHINE := ${_tspec:[1]} # TARGET_OS := ${_tspec:[2]} # # etc. +# # We need to stop that TARGET_SPEC affecting any submakes +# # and deal with MACHINE=${TARGET_SPEC} in the environment. +# TARGET_SPEC = +# # export but do not track +# .export-env TARGET_SPEC +# .export ${TARGET_SPEC_VARS} # .for v in ${TARGET_SPEC_VARS:O:u} # .if empty($v) # .undef $v # .endif # .endfor # .endif +# # make sure we know what TARGET_SPEC is +# # as we may need it to find Makefile.depend* +# TARGET_SPEC = ${TARGET_SPEC_VARS:@v@${$v:U}@:ts,} # .if ${.MAKE.LEVEL} == 0 diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk index 7dc33fe272f6..5742c6fbcc1d 100644 --- a/share/mk/gendirdeps.mk +++ b/share/mk/gendirdeps.mk @@ -1,4 +1,4 @@ -# $Id: gendirdeps.mk,v 1.12 2013/02/10 19:59:10 sjg Exp $ +# $Id: gendirdeps.mk,v 1.21 2013/03/28 20:01:05 sjg Exp $ # Copyright (c) 2010-2013, Juniper Networks, Inc. # All rights reserved. @@ -119,7 +119,7 @@ META2DEPS_CMD = ${_time} ${PYTHON} ${META2DEPS} ${_py_d} \ META2DEPS_CMD += -D ${DPDEPS} .endif -M2D_OBJROOTS += ${OBJTOP}/ ${_OBJROOT} ${_objroot} +M2D_OBJROOTS += ${OBJTOP} ${_OBJROOT} ${_objroot} .if defined(SB_OBJROOT) M2D_OBJROOTS += ${SB_OBJROOT} .endif @@ -174,7 +174,12 @@ dir_list += ${f:H:tA} .endfor .if !empty(ddep_list) ddeps != cat ${ddep_list:O:u} | ${META2DEPS_FILTER} ${_skip_gendirdeps} \ - sed 's,//*$$,,;s,\.${HOST_TARGET}$$,.host,' + sed 's,//*$$,,;s,\.${HOST_TARGET}$$,.host,;s,\.${MACHINE}$$,,' + +.if ${DEBUG_GENDIRDEPS:Uno:@x@${RELDIR:M$x}@} != "" +.info ${RELDIR}: raw_dir_list='${dir_list}' +.info ${RELDIR}: ddeps='${ddeps}' +.endif dir_list += ${ddeps} .endif .endif @@ -188,8 +193,10 @@ dir_list += ${ddeps} # so we add # ${"${dir_list:M*bsd/sys/${MACHINE_ARCH}/include}":?bsd/include:} # to GENDIRDEPS_DIR_LIST_XTRAS +_objtops = ${OBJTOP} ${_OBJTOP} ${_obtop} +_objtops := ${_objtops:O:u} dirdep_list = \ - ${dir_list:M${_objtop}*/*:C,${_objtop}[^/]*/,,} \ + ${_objtops:@o@${dir_list:M$o*/*:C,$o[^/]*/,,}@} \ ${GENDIRDEPS_DIR_LIST_XTRAS} # sort longest first @@ -198,10 +205,11 @@ M2D_OBJROOTS := ${M2D_OBJROOTS:O:u:[-1..1]} # anything we use from an object dir other than ours # needs to be qualified with its . suffix # (we used the pseudo machine "host" for the HOST_TARGET). -skip_ql= ${SRCTOP}* ${_objtop}* +skip_ql= ${SRCTOP}* ${_objtops:@o@$o*@} .for o in ${M2D_OBJROOTS:${skip_ql:${M_ListToSkip}}} -qualdir_list += \ - ${dir_list:${skip_ql:${M_ListToSkip}}:M$o*/*/*:C,$o([^/]+)/(.*),\2.\1,:S,.${HOST_TARGET},.host,} +# we need := so only skip_ql to this point applies +ql := ${dir_list:${skip_ql:${M_ListToSkip}}:M$o*/*/*:C,$o([^/]+)/(.*),\2.\1,:S,.${HOST_TARGET},.host,} +qualdir_list += ${ql} skip_ql+= $o* .endfor diff --git a/share/mk/meta.autodep.mk b/share/mk/meta.autodep.mk index f063837ca980..c29c26e85e24 100644 --- a/share/mk/meta.autodep.mk +++ b/share/mk/meta.autodep.mk @@ -1,4 +1,4 @@ -# $Id: meta.autodep.mk,v 1.28 2012/07/13 15:38:16 sjg Exp $ +# $Id: meta.autodep.mk,v 1.32 2012/11/13 00:44:26 sjg Exp $ # # @(#) Copyright (c) 2010, Simon J. Gerraty @@ -235,6 +235,7 @@ META_FILES = ${.MAKE.META.FILES:T:N.depend*:N*o.meta:O:u} \ .export GENDIRDEPS_FILTER .endif +# we might have .../ in MAKESYSPATH _makesyspath:= ${_PARSEDIR} ${_DEPENDFILE}: ${_depend} ${.PARSEDIR}/gendirdeps.mk ${META2DEPS} $${.MAKE.META.CREATED} @echo Checking $@: ${.OODATE:T:[1..8]} diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index 2bc9fbdcfdd4..0faeef34cbcc 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -1,4 +1,4 @@ -# $Id: meta.stage.mk,v 1.22 2013/03/08 17:52:11 sjg Exp $ +# $Id: meta.stage.mk,v 1.24 2013/03/23 02:25:19 sjg Exp $ # # @(#) Copyright (c) 2011, Simon J. Gerraty # @@ -48,17 +48,21 @@ GENDIRDEPS_FILTER += Nnot-empty-is-important \ ${_STAGED_DIRS:O:u:M${OBJTOP}*:S,${OBJTOP}/,N,} \ ${_STAGED_DIRS:O:u:N${OBJTOP}*:S,${_objroot},,:C,^([^/]+)/(.*),N\2.\1,:S,${HOST_TARGET},.host,} +LN_CP_SCRIPT = LnCp() { \ + rm -f $$2 2> /dev/null; \ + ln $$1 $$2 2> /dev/null || \ + cp -p $$1 $$2; } + # it is an error for more than one src dir to try and stage # the same file -STAGE_DIRDEP_SCRIPT = StageDirdep() { \ +STAGE_DIRDEP_SCRIPT = ${LN_CP_SCRIPT}; StageDirdep() { \ t=$$1; \ if [ -s $$t.dirdep ]; then \ cmp -s .dirdep $$t.dirdep && return; \ echo "ERROR: $$t installed by `cat $$t.dirdep` not ${_dirdep}" >&2; \ exit 1; \ fi; \ - ln .dirdep $$t.dirdep 2> /dev/null || \ - cp .dirdep $$t.dirdep || exit 1; } + LnCp .dirdep $$t.dirdep || exit 1; } # common logic for staging files # this all relies on RELDIR being set to a subdir of SRCTOP @@ -71,9 +75,7 @@ STAGE_FILE_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageFiles() { \ for f in "$$@"; do \ case "$$f" in */*) t=$$dest/${_stage_file_basename};; *) t=$$dest/$$f;; esac; \ StageDirdep $$t; \ - rm -f $$t; \ - { ln $$f $$t 2> /dev/null || \ - cp -p $$f $$t; } || exit 1; \ + LnCp $$f $$t || exit 1; \ [ -z "$$mode" ] || chmod $$mode $$t; \ done; :; } @@ -103,9 +105,7 @@ STAGE_AS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageAs() { \ case "$$1" in */*) mkdir -p ${_stage_target_dirname};; esac; \ shift; \ StageDirdep $$t; \ - rm -f $$t; \ - { ln $$s $$t 2> /dev/null || \ - cp -p $$s $$t; } || exit 1; \ + LnCp $$s $$t || exit 1; \ [ -z "$$mode" ] || chmod $$mode $$t; \ done; :; } diff --git a/share/mk/meta2deps.py b/share/mk/meta2deps.py index 82a3d61729d8..6b6157c3ab4c 100755 --- a/share/mk/meta2deps.py +++ b/share/mk/meta2deps.py @@ -35,7 +35,7 @@ """ RCSid: - $Id: meta2deps.py,v 1.10 2013/03/17 03:10:09 sjg Exp $ + $Id: meta2deps.py,v 1.12 2013/03/31 22:31:59 sjg Exp $ Copyright (c) 2011-2013, Juniper Networks, Inc. All rights reserved. @@ -196,9 +196,17 @@ def __init__(self, name, conf={}): if not _srctop in self.srctops: self.srctops.append(_srctop) - trim_list = ['/' + self.machine, '/' + self.machine + '/'] + trim_list = ['/' + self.machine + '/', + '/' + self.machine, + self.machine + '/', + self.machine] + if self.machine == 'host': - trim_list += ['/' + self.host_target, '/' + self.host_target + '/'] + trim_list += ['/' + self.host_target + '/', + '/' + self.host_target, + self.host_target + '/', + self.host_target] + for objroot in getv(conf, 'OBJROOTS', []): for e in trim_list: if objroot.endswith(e): @@ -237,6 +245,8 @@ def __init__(self, name, conf={}): if not self.reldir: self.dpdeps = None # we cannot do it? + self.cwd = os.getcwd() # make sure this is initialized + if name: self.parse() From 89e0f621b2f1a3f233fbc464000fac2b1224c5fb Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 14 Apr 2013 01:22:39 +0000 Subject: [PATCH 078/228] New/updated dependencies --- cddl/lib/libzfs/Makefile.depend | 1 + cddl/lib/libzfs_core/Makefile.depend | 20 +++++++++++++++++++ cddl/sbin/zfs/Makefile.depend | 1 + cddl/sbin/zpool/Makefile.depend | 1 + cddl/usr.bin/zinject/Makefile.depend | 1 + cddl/usr.bin/ztest/Makefile.depend | 1 + cddl/usr.sbin/zdb/Makefile.depend | 1 + cddl/usr.sbin/zhack/Makefile.depend | 1 + lib/libyaml/Makefile.depend | 18 +++++++++++++++++ share/doc/bind9/Makefile.depend | 2 -- share/misc/Makefile.depend | 2 -- usr.bin/ar/Makefile.depend | 1 + usr.sbin/acpi/iasl/Makefile.depend | 6 ++++++ .../backend-query/Makefile.depend | 2 -- .../pc-sysinstall/backend/Makefile.depend | 2 -- usr.sbin/pc-sysinstall/conf/Makefile.depend | 2 -- usr.sbin/pkg/Makefile.depend | 2 ++ 17 files changed, 54 insertions(+), 10 deletions(-) create mode 100644 cddl/lib/libzfs_core/Makefile.depend create mode 100644 lib/libyaml/Makefile.depend diff --git a/cddl/lib/libzfs/Makefile.depend b/cddl/lib/libzfs/Makefile.depend index 6f4784a07bed..21b3f4a4d49c 100644 --- a/cddl/lib/libzfs/Makefile.depend +++ b/cddl/lib/libzfs/Makefile.depend @@ -5,6 +5,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ cddl/lib/libnvpair \ cddl/lib/libumem \ + cddl/lib/libzfs_core \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/cddl/lib/libzfs_core/Makefile.depend b/cddl/lib/libzfs_core/Makefile.depend new file mode 100644 index 000000000000..5491942bf46e --- /dev/null +++ b/cddl/lib/libzfs_core/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + cddl/lib/libnvpair \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/cddl/sbin/zfs/Makefile.depend b/cddl/sbin/zfs/Makefile.depend index 070b0ebc271e..713889f58aee 100644 --- a/cddl/sbin/zfs/Makefile.depend +++ b/cddl/sbin/zfs/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ cddl/lib/libumem \ cddl/lib/libuutil \ cddl/lib/libzfs \ + cddl/lib/libzfs_core \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/cddl/sbin/zpool/Makefile.depend b/cddl/sbin/zpool/Makefile.depend index 5e542ca7c83f..29ad8ef20352 100644 --- a/cddl/sbin/zpool/Makefile.depend +++ b/cddl/sbin/zpool/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ cddl/lib/libumem \ cddl/lib/libuutil \ cddl/lib/libzfs \ + cddl/lib/libzfs_core \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/cddl/usr.bin/zinject/Makefile.depend b/cddl/usr.bin/zinject/Makefile.depend index 53dba7321cf7..f3c17d06268f 100644 --- a/cddl/usr.bin/zinject/Makefile.depend +++ b/cddl/usr.bin/zinject/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ cddl/lib/libumem \ cddl/lib/libuutil \ cddl/lib/libzfs \ + cddl/lib/libzfs_core \ cddl/lib/libzpool \ gnu/lib/libgcc \ include \ diff --git a/cddl/usr.bin/ztest/Makefile.depend b/cddl/usr.bin/ztest/Makefile.depend index d12b9e10fc9e..6d5095711643 100644 --- a/cddl/usr.bin/ztest/Makefile.depend +++ b/cddl/usr.bin/ztest/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ cddl/lib/libumem \ cddl/lib/libuutil \ cddl/lib/libzfs \ + cddl/lib/libzfs_core \ cddl/lib/libzpool \ gnu/lib/libgcc \ include \ diff --git a/cddl/usr.sbin/zdb/Makefile.depend b/cddl/usr.sbin/zdb/Makefile.depend index bf5b42084865..05444d4717f7 100644 --- a/cddl/usr.sbin/zdb/Makefile.depend +++ b/cddl/usr.sbin/zdb/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ cddl/lib/libumem \ cddl/lib/libuutil \ cddl/lib/libzfs \ + cddl/lib/libzfs_core \ cddl/lib/libzpool \ gnu/lib/libgcc \ include \ diff --git a/cddl/usr.sbin/zhack/Makefile.depend b/cddl/usr.sbin/zhack/Makefile.depend index bf5b42084865..05444d4717f7 100644 --- a/cddl/usr.sbin/zhack/Makefile.depend +++ b/cddl/usr.sbin/zhack/Makefile.depend @@ -7,6 +7,7 @@ DIRDEPS = \ cddl/lib/libumem \ cddl/lib/libuutil \ cddl/lib/libzfs \ + cddl/lib/libzfs_core \ cddl/lib/libzpool \ gnu/lib/libgcc \ include \ diff --git a/lib/libyaml/Makefile.depend b/lib/libyaml/Makefile.depend new file mode 100644 index 000000000000..65ce5679ccda --- /dev/null +++ b/lib/libyaml/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/doc/bind9/Makefile.depend b/share/doc/bind9/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/doc/bind9/Makefile.depend +++ b/share/doc/bind9/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/misc/Makefile.depend b/share/misc/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/misc/Makefile.depend +++ b/share/misc/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.bin/ar/Makefile.depend b/usr.bin/ar/Makefile.depend index 5e87915bb67b..fb5f3e35a21b 100644 --- a/usr.bin/ar/Makefile.depend +++ b/usr.bin/ar/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libelf \ + lib/libz \ .include diff --git a/usr.sbin/acpi/iasl/Makefile.depend b/usr.sbin/acpi/iasl/Makefile.depend index 8f2a22dd3e5f..2d5671eabcd8 100644 --- a/usr.sbin/acpi/iasl/Makefile.depend +++ b/usr.sbin/acpi/iasl/Makefile.depend @@ -33,6 +33,8 @@ asllength.o: aslcompiler.y.h asllength.po: aslcompiler.y.h asllisting.o: aslcompiler.y.h asllisting.po: aslcompiler.y.h +asllistsup.o: aslcompiler.y.h +asllistsup.po: aslcompiler.y.h aslload.o: aslcompiler.y.h aslload.po: aslcompiler.y.h asllookup.o: aslcompiler.y.h @@ -41,6 +43,8 @@ aslmethod.o: aslcompiler.y.h aslmethod.po: aslcompiler.y.h aslnamesp.o: aslcompiler.y.h aslnamesp.po: aslcompiler.y.h +asloffset.o: aslcompiler.y.h +asloffset.po: aslcompiler.y.h aslopcodes.o: aslcompiler.y.h aslopcodes.po: aslcompiler.y.h asloperands.o: aslcompiler.y.h @@ -49,6 +53,8 @@ aslopt.o: aslcompiler.y.h aslopt.po: aslcompiler.y.h aslpredef.o: aslcompiler.y.h aslpredef.po: aslcompiler.y.h +aslprepkg.o: aslcompiler.y.h +aslprepkg.po: aslcompiler.y.h aslresource.o: aslcompiler.y.h aslresource.po: aslcompiler.y.h aslrestype1.o: aslcompiler.y.h diff --git a/usr.sbin/pc-sysinstall/backend-query/Makefile.depend b/usr.sbin/pc-sysinstall/backend-query/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/pc-sysinstall/backend-query/Makefile.depend +++ b/usr.sbin/pc-sysinstall/backend-query/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/pc-sysinstall/backend/Makefile.depend b/usr.sbin/pc-sysinstall/backend/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/pc-sysinstall/backend/Makefile.depend +++ b/usr.sbin/pc-sysinstall/backend/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/pc-sysinstall/conf/Makefile.depend b/usr.sbin/pc-sysinstall/conf/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/pc-sysinstall/conf/Makefile.depend +++ b/usr.sbin/pc-sysinstall/conf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/pkg/Makefile.depend b/usr.sbin/pkg/Makefile.depend index 577a6ea1c4eb..309336a6a058 100644 --- a/usr.sbin/pkg/Makefile.depend +++ b/usr.sbin/pkg/Makefile.depend @@ -13,6 +13,8 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libelf \ lib/libfetch \ + lib/libsbuf \ + lib/libyaml \ .include From fb0cb808467c9991a4fa6208ee61907d1eb45dfe Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 19 Apr 2013 18:45:03 +0000 Subject: [PATCH 079/228] Add stage-install.sh so we can do away with the need to have $STAGE_OBJTOP/include for src/include. --- include/Makefile | 8 --- share/mk/local.sys.mk | 6 +-- share/mk/meta.stage.mk | 15 +++++- share/mk/stage-install.sh | 98 +++++++++++++++++++++++++++++++++++ usr.bin/kdump/Makefile | 5 -- usr.bin/kdump/Makefile.depend | 1 + 6 files changed, 116 insertions(+), 17 deletions(-) create mode 100755 share/mk/stage-install.sh diff --git a/include/Makefile b/include/Makefile index a983e225560a..87de693f72c3 100644 --- a/include/Makefile +++ b/include/Makefile @@ -135,9 +135,6 @@ stage_includes: .if ${MK_STAGING} != "no" && !defined(_SKIP_BUILD) .if make(all) DESTDIR= ${STAGE_OBJTOP} -# we want to keep this separate from the folk who -# do staging "normally" -INCLUDEDIR= /include all: stage_includes installincludes: buildincludes @@ -148,11 +145,6 @@ stage_prep: @touch $@ stage_includes: .dirdep installincludes - @find ${DESTDIR}${INCLUDEDIR} -type d | while read d; do \ - rm -f $$d/.dirdep; \ - { ln .dirdep $$d/.dirdep 2> /dev/null || \ - cp -p .dirdep $$d/.dirdep; }; \ - done @touch $@ .endif .endif diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index aea9a75d61f7..5d5c2c88f74e 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -156,7 +156,7 @@ STAGE_SYMLINKS_DIR= ${STAGE_OBJTOP} .if ${MACHINE} != "host" CFLAGS_LAST+= -nostdinc .endif -CFLAGS_LAST+= -isystem ${STAGE_OBJTOP}/usr/include -isystem ${STAGE_OBJTOP}/include +CFLAGS_LAST+= -isystem ${STAGE_OBJTOP}/usr/include CFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} LDFLAGS_LAST+= -B${STAGE_LIBDIR} -L${STAGE_LIBDIR} CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER:U4.2} @@ -166,10 +166,10 @@ CFLAGS_LAST.clang += -isystem ${STAGE_OBJTOP}/usr/include/clang/3.2 CXXFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} .else # if ld suppored sysroot, this would suffice -CFLAGS_LAST+= --sysroot=${STAGE_OBJTOP} -isystem ${STAGE_OBJTOP}/include +CFLAGS_LAST+= --sysroot=${STAGE_OBJTOP} .endif .endif -STAGED_INCLUDE_DIR= ${STAGE_OBJTOP}/include +STAGED_INCLUDE_DIR= ${STAGE_OBJTOP}/usr/include .if ${USE_META:Uyes} == "yes" .include "meta.sys.mk" .endif diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index 0faeef34cbcc..2f02700fdc19 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -1,4 +1,4 @@ -# $Id: meta.stage.mk,v 1.24 2013/03/23 02:25:19 sjg Exp $ +# $Id: meta.stage.mk,v 1.30 2013/04/19 16:32:57 sjg Exp $ # # @(#) Copyright (c) 2011, Simon J. Gerraty # @@ -228,4 +228,17 @@ STAGING_WAIT ?= .WAIT all: ${STAGING_WAIT} staging +.if exists(${.PARSEDIR}/stage-install.sh) && !defined(STAGE_INSTALL) +# this will run install(1) and then followup with .dirdep files. +STAGE_INSTALL := sh ${.PARSEDIR:tA}/stage-install.sh INSTALL="${INSTALL}" OBJDIR=${.OBJDIR:tA} +.endif + +# if ${INSTALL} gets run during 'all' assume it is for staging? +.if ${.TARGETS:Nall} == "" && defined(STAGE_INSTALL) +INSTALL := ${STAGE_INSTALL} +.if target(beforeinstall) +beforeinstall: .dirdep +.endif +.endif + .endif diff --git a/share/mk/stage-install.sh b/share/mk/stage-install.sh new file mode 100755 index 000000000000..64d044fa048c --- /dev/null +++ b/share/mk/stage-install.sh @@ -0,0 +1,98 @@ +#!/bin/sh + +# NAME: +# stage-install.sh - wrapper around install +# +# SYNOPSIS: +# stage-install.sh [variable="value"] "args" "dest" +# +# DESCRIPTION: +# This script is a wrapper around the normal install(1). +# Its role is to add '.dirdep' files to the destination. +# The variables we might use are: +# +# INSTALL +# Path to actual install(1), default is +# $REAL_INSTALL +# +# OBJDIR +# Path to the dir where '.dirdep' was generated, +# default is '.' +# +# _DIRDEP +# Path to actual '.dirdep' file, default is +# $OBJDIR/.dirdep +# +# The "args" and "dest" are passed as is to install(1), and if a +# '.dirdep' file exists it will be linked or copied to each +# "file".dirdep placed in "dest" or "dest".dirdep if it happed +# to be a file rather than a directory. +# +# SEE ALSO: +# meta.stage.mk +# + +# RCSid: +# $Id: stage-install.sh,v 1.5 2013/04/19 16:32:24 sjg Exp $ +# +# @(#) Copyright (c) 2013, Simon J. Gerraty +# +# This file is provided in the hope that it will +# be of use. There is absolutely NO WARRANTY. +# Permission to copy, redistribute or otherwise +# use this file is hereby granted provided that +# the above copyright notice and this notice are +# left intact. +# +# Please send copies of changes and bug-fixes to: +# sjg@crufty.net +# + +INSTALL=${REAL_INSTALL:-install} +OBJDIR=. + +while : +do + case "$1" in + *=*) eval "$1"; shift;; + *) break;; + esac +done + +# if .dirdep doesn't exist, just run install and be done +_DIRDEP=${_DIRDEP:-$OBJDIR/.dirdep} +[ -s $_DIRDEP ] && EXEC= || EXEC=exec +$EXEC $INSTALL "$@" || exit 1 + +# from meta.stage.mk +LnCp() { + rm -f $2 2> /dev/null + ln $1 $2 2> /dev/null || cp -p $1 $2 +} + +StageDirdep() { + t=$1 + if [ -s $t.dirdep ]; then + cmp -s $_DIRDEP $t.dirdep && return + echo "ERROR: $t installed by `cat $t.dirdep` not `cat $_DIRDEP`" >&2 + exit 1 + fi + LnCp $_DIRDEP $t.dirdep || exit 1 +} + +args="$@" +while [ $# -gt 8 ] +do + shift 8 +done +eval dest=\$$# +if [ -f $dest ]; then + # a file, there can be only one .dirdep needed + StageDirdep $dest +elif [ -d $dest ]; then + for f in $args + do + test -f $f || continue + StageDirdep $dest/${f##*/} + done +fi diff --git a/usr.bin/kdump/Makefile b/usr.bin/kdump/Makefile index f4b200bc7a52..ba81083e94ce 100644 --- a/usr.bin/kdump/Makefile +++ b/usr.bin/kdump/Makefile @@ -38,8 +38,3 @@ linux_syscalls.c: >> linux_syscalls.c .include - -.if ${MK_STAGING} != "" -# we are interested in the files put in ${STAGE_OBJTOP}/include -INCLUDEDIR= /include -.endif diff --git a/usr.bin/kdump/Makefile.depend b/usr.bin/kdump/Makefile.depend index 2ced1ce060f2..519b37138281 100644 --- a/usr.bin/kdump/Makefile.depend +++ b/usr.bin/kdump/Makefile.depend @@ -6,6 +6,7 @@ DIRDEPS = \ gnu/lib/libgcc \ include \ include/arpa \ + include/rpc \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ From 0bc8845fb95a0fc849cd9b609ec62849b0fb0c11 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 9 May 2013 22:28:16 +0000 Subject: [PATCH 080/228] We no longer need to fiddle with INCLUDEDIR --- usr.bin/truss/Makefile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/usr.bin/truss/Makefile b/usr.bin/truss/Makefile index 5fde72360746..34a6ef449291 100644 --- a/usr.bin/truss/Makefile +++ b/usr.bin/truss/Makefile @@ -73,10 +73,3 @@ freebsd32_syscalls.h: fbsd32-syscalls.master .endif .include - - -.if ${MK_STAGING} != "" -# we are interested in the files put in ${STAGE_OBJTOP}/include -DESTDIR= ${STAGE_OBJTOP} -INCLUDEDIR= /include -.endif From 3655322b2183ced3124aa0c718573dd307d914b4 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 9 May 2013 22:29:33 +0000 Subject: [PATCH 081/228] updated dirdeps --- usr.bin/truss/Makefile.depend.amd64 | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.bin/truss/Makefile.depend.amd64 b/usr.bin/truss/Makefile.depend.amd64 index 2d6f867d4c8a..7c9eb58b782b 100644 --- a/usr.bin/truss/Makefile.depend.amd64 +++ b/usr.bin/truss/Makefile.depend.amd64 @@ -6,6 +6,7 @@ DIRDEPS = \ gnu/lib/libgcc \ include \ include/arpa \ + include/rpc \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ From bf0627757fb8f95773e96a26fe7d71c795f7e806 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 11 May 2013 00:50:00 +0000 Subject: [PATCH 082/228] Allow caller to pass a TARGET_SPEC which may be more complex than just MACHINE, for recognizing objects which do not need qualifying in dirdeps. --- share/mk/meta2deps.py | 39 ++++++++++++++++++++++++++++----------- 1 file changed, 28 insertions(+), 11 deletions(-) diff --git a/share/mk/meta2deps.py b/share/mk/meta2deps.py index 6b6157c3ab4c..97b2381ae48f 100755 --- a/share/mk/meta2deps.py +++ b/share/mk/meta2deps.py @@ -124,6 +124,12 @@ def sort_unique(list, cmp=None, key=None, reverse=False): nl.append(e) return nl +def add_trims(x): + return ['/' + x + '/', + '/' + x, + x + '/', + x] + class MetaFile: """class to parse meta files generated by bmake.""" @@ -152,6 +158,9 @@ def __init__(self, name, conf={}): set to 'none' if we are not cross-building. More specifically if machine cannot be deduced from objdirs. + TARGET_SPEC + Sometimes MACHINE isn't enough. + HOST_TARGET when we build for the psuedo machine 'host' the object tree uses HOST_TARGET rather than MACHINE. @@ -177,6 +186,8 @@ def __init__(self, name, conf={}): self.debug_out = getv(conf, 'debug_out', sys.stderr) self.machine = getv(conf, 'MACHINE', '') + self.machine_arch = getv(conf, 'MACHINE_ARCH', '') + self.target_spec = getv(conf, 'TARGET_SPEC', '') self.curdir = getv(conf, 'CURDIR') self.reldir = getv(conf, 'RELDIR') self.dpdeps = getv(conf, 'DPDEPS') @@ -196,16 +207,11 @@ def __init__(self, name, conf={}): if not _srctop in self.srctops: self.srctops.append(_srctop) - trim_list = ['/' + self.machine + '/', - '/' + self.machine, - self.machine + '/', - self.machine] - + trim_list = add_trims(self.machine) if self.machine == 'host': - trim_list += ['/' + self.host_target + '/', - '/' + self.host_target, - self.host_target + '/', - self.host_target] + trim_list += add_trims(self.host_target) + if self.target_spec: + trim_list += add_trims(self.target_spec) for objroot in getv(conf, 'OBJROOTS', []): for e in trim_list: @@ -303,6 +309,8 @@ def find_obj(self, objroot, dir, path, input): print >> self.debug_out, "found %s: %s\n" % (ddepf, ddep) if ddep.endswith(self.machine): ddep = ddep[0:-(1+len(self.machine))] + elif self.target_spec and ddep.endswith(self.target_spec): + ddep = ddep[0:-(1+len(self.target_spec))] if not ddep: # no .dirdeps, so remember that we've seen the raw input @@ -520,6 +528,8 @@ def main(argv, klass=MetaFile, xopts='', xoptf=None): -m "MACHINE" + -a "MACHINE_ARCH" + -H "HOST_TARGET" -D "DPDEPS" @@ -548,6 +558,9 @@ def main(argv, klass=MetaFile, xopts='', xoptf=None): machine = os.environ['MACHINE'] if machine: conf['MACHINE'] = machine + machine_arch = os.environ['MACHINE_ARCH'] + if machine_arch: + conf['MACHINE_ARCH'] = machine_arch srctop = os.environ['SB_SRC'] if srctop: conf['SRCTOPS'].append(srctop) @@ -560,9 +573,11 @@ def main(argv, klass=MetaFile, xopts='', xoptf=None): debug = 0 output = True - opts, args = getopt.getopt(argv[1:], 'dS:C:O:R:m:D:H:q' + xopts) + opts, args = getopt.getopt(argv[1:], 'a:dS:C:O:R:m:D:H:qT:' + xopts) for o, a in opts: - if o == '-d': + if o == '-a': + conf['MACHINE_ARCH'] = a + elif o == '-d': debug += 1 elif o == '-q': output = False @@ -582,6 +597,8 @@ def main(argv, klass=MetaFile, xopts='', xoptf=None): conf['DPDEPS'] = a elif o == '-m': conf['MACHINE'] = a + elif o == '-T': + conf['TARGET_SPEC'] = a elif xoptf: xoptf(o, a, conf) From 05d14a14474cb93ba36baf6bf00f30ed0ad0d08d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 11 May 2013 00:51:59 +0000 Subject: [PATCH 083/228] Keep dirdeps for pseudo machines like "host" and "common" simple. Also we need to use DEP_MACHINE_ARCH when expanding CSU_DIR --- share/mk/local.dirdeps.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index a92a9f705766..92dfe7bd0a8d 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -13,6 +13,13 @@ DIRDEPS += gnu/lib/libssp/libssp_nonshared DIRDEPS += pkgs/pseudo/stage .endif +M_dep_qual_fixes += C;\.host,[^/.,]*$$;.host; +M_dep_qual_fixes += C;\.common,[^/.,]*$$;.common; + +CSU_DIR.i386 = csu/i386-elf +CSU_DIR.${DEP_MACHINE_ARCH} ?= csu/${DEP_MACHINE_ARCH} +CSU_DIR := ${CSU_DIR.${DEP_MACHINE_ARCH}} + # we want to supress these dependencies for host tools DIRDEPS_FILTER.host = \ Ninclude* \ From 01f18a0c87ea1d666db43fd659622c750bba4140 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 11 May 2013 00:52:57 +0000 Subject: [PATCH 084/228] If TARGET_OBJ_SPEC is no just MACHINE, pass it to meta2deps.py --- share/mk/gendirdeps.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk index 5742c6fbcc1d..d7fd6e3fbea6 100644 --- a/share/mk/gendirdeps.mk +++ b/share/mk/gendirdeps.mk @@ -115,6 +115,9 @@ META2DEPS_CMD = ${_time} ${PYTHON} ${META2DEPS} ${_py_d} \ -R ${RELDIR} -H ${HOST_TARGET} \ ${M2D_OBJROOTS:O:u:@o@-O $o@} +.if ${TARGET_OBJ_SPEC:U${MACHINE}} != ${MACHINE} +META2DEPS_CMD += -T ${TARGET_OBJ_SPEC} +.endif .if ${DPDEPS:tl} != "no" META2DEPS_CMD += -D ${DPDEPS} .endif From 3f97663be024ac594caaeff4229aa77cf4bfe8b1 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 11 May 2013 01:03:29 +0000 Subject: [PATCH 085/228] Cleanup some backwards compat stuff we do not need. Introduce TARGET_OBJ_SPEC (derrived from TARGET_SPEC_VARS) so we can build something like universe. --- share/mk/local.sys.mk | 68 ++++++++++++++++++++++++++++++++----------- 1 file changed, 51 insertions(+), 17 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index 5d5c2c88f74e..3d855133cc5d 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -25,22 +25,12 @@ M_whence = ${M_type}:M/* # convert a path to a valid shell variable M_P2V = tu:C,[./-],_,g -# convert path to absolute -.if ${MAKE_VERSION:U0} > 20100408 -M_tA = tA -.else -M_tA = C,.*,('cd' & \&\& 'pwd') 2> /dev/null || echo &,:sh -.endif - -# this is handy for forcing a space into something. -AnEmptyVar= - # absoulte path to what we are reading. -_PARSEDIR = ${.PARSEDIR:${M_tA}} +_PARSEDIR = ${.PARSEDIR:tA} .if !empty(SB) SB_SRC ?= ${SB}/src -SB_OBJROOT ?= ${SB}/obj +SB_OBJROOT ?= ${SB}/obj/ # this is what we use below SRCTOP ?= ${SB_SRC} OBJROOT ?= ${SB_OBJROOT} @@ -55,7 +45,21 @@ OBJROOT ?= ${SRCTOP:H}/obj/ # we need HOST_TARGET etc below. .include -OBJTOP ?= ${OBJROOT}${MACHINE} +# from src/Makefile (for universe) +TARGET_ARCHES_arm?= arm armeb armv6 armv6eb +TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 +TARGET_ARCHES_powerpc?= powerpc powerpc64 +TARGET_ARCHES_pc98?= i386 + +# the list of machines we support +ALL_MACHINE_LIST?= amd64 arm i386 ia64 mips pc98 powerpc sparc64 +.for m in ${ALL_MACHINE_LIST:O:u} +MACHINE_ARCH_LIST.$m?= ${TARGET_ARCHES_${m}:U$m} +MACHINE_ARCH.$m?= ${MACHINE_ARCH_LIST.$m:[1]} +.endfor +.if empty(MACHINE_ARCH) +MACHINE_ARCH:= ${TARGET_ARCH:U${MACHINE_ARCH.${MACHINE}}} +.endif .if !defined(_TARGETS) # some things we do only once @@ -71,6 +75,36 @@ OBJROOT:= ${OBJROOT:H:tA}/${OBJROOT:T} .endif .endif +# now because for universe we want to potentially +# build for multiple MACHINE_ARCH per MACHINE +# we need more than MACHINE in TARGET_SPEC +TARGET_SPEC_VARS= MACHINE MACHINE_ARCH +# see dirdeps.mk +.if ${TARGET_SPEC:Uno:M*,*} != "" +_tspec := ${TARGET_SPEC:S/,/ /g} +MACHINE := ${_tspec:[1]} +MACHINE_ARCH := ${_tspec:[2]} +# etc. +# We need to stop that TARGET_SPEC affecting any submakes +# and deal with MACHINE=${TARGET_SPEC} in the environment. +TARGET_SPEC= +# export but do not track +.export-env TARGET_SPEC +.export ${TARGET_SPEC_VARS} +.for v in ${TARGET_SPEC_VARS:O:u} +.if empty($v) +.undef $v +.endif +.endfor +.endif +# make sure we know what TARGET_SPEC is +# as we may need it to find Makefile.depend* +TARGET_SPEC = ${TARGET_SPEC_VARS:@v@${$v:U}@:ts,} + +# to be consistent with src/Makefile just concatenate with '.'s +TARGET_OBJ_SPEC:= ${TARGET_SPEC:S;,;.;g} +OBJTOP:= ${OBJROOT}${TARGET_OBJ_SPEC} + .if !empty(SRCTOP) .if ${.CURDIR} == ${SRCTOP} RELDIR = . @@ -140,11 +174,11 @@ STAGE_ROOT?= ${OBJROOT}stage .if ${MACHINE} == "host" STAGE_MACHINE= ${HOST_TARGET} .else -STAGE_MACHINE= ${MACHINE} +STAGE_MACHINE:= ${TARGET_OBJ_SPEC} .endif -STAGE_OBJTOP= ${STAGE_ROOT}/${STAGE_MACHINE} -STAGE_COMMON_OBJTOP= ${STAGE_ROOT}/common -STAGE_HOST_OBJTOP= ${STAGE_ROOT}/${HOST_TARGET} +STAGE_OBJTOP:= ${STAGE_ROOT}/${STAGE_MACHINE} +STAGE_COMMON_OBJTOP:= ${STAGE_ROOT}/common +STAGE_HOST_OBJTOP:= ${STAGE_ROOT}/${HOST_TARGET} STAGE_LIBDIR= ${STAGE_OBJTOP}${LIBDIR:U/lib} # this is not the same as INCLUDEDIR From 06137b0f50368e104034bf92d3e7fcbdb407d6d9 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 11 May 2013 05:10:31 +0000 Subject: [PATCH 086/228] Bring meta2deps.sh closer to par with meta2deps.py --- share/mk/gendirdeps.mk | 27 ++++++------- share/mk/meta2deps.sh | 86 ++++++++++++++++++++++++++++++++++++++---- 2 files changed, 93 insertions(+), 20 deletions(-) diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk index d7fd6e3fbea6..21bb489327b7 100644 --- a/share/mk/gendirdeps.mk +++ b/share/mk/gendirdeps.mk @@ -111,16 +111,24 @@ _py_d = .if ${META2DEPS:E} == "py" # we can afford to do this all the time. DPDEPS ?= no -META2DEPS_CMD = ${_time} ${PYTHON} ${META2DEPS} ${_py_d} \ - -R ${RELDIR} -H ${HOST_TARGET} \ - ${M2D_OBJROOTS:O:u:@o@-O $o@} +META2DEPS_CMD = ${_time} ${PYTHON} ${META2DEPS} ${_py_d} +.if ${DPDEPS:tl} != "no" +META2DEPS_CMD += -D ${DPDEPS} +.endif +META2DEPS_FILTER = sed 's,^src:,${SRCTOP}/,;s,^\([^/]\),${OBJTOP}/\1,' | +.elif ${META2DEPS:E} == "sh" +META2DEPS_CMD = ${_time} ${_sh_x} ${META2DEPS} OBJTOP=${_OBJTOP} +.else +META2DEPS_CMD ?= ${META2DEPS} +.endif .if ${TARGET_OBJ_SPEC:U${MACHINE}} != ${MACHINE} META2DEPS_CMD += -T ${TARGET_OBJ_SPEC} .endif -.if ${DPDEPS:tl} != "no" -META2DEPS_CMD += -D ${DPDEPS} -.endif +META2DEPS_CMD += \ + -R ${RELDIR} -H ${HOST_TARGET} \ + ${M2D_OBJROOTS:O:u:@o@-O $o@} + M2D_OBJROOTS += ${OBJTOP} ${_OBJROOT} ${_objroot} .if defined(SB_OBJROOT) @@ -136,13 +144,6 @@ META2DEPS_ARGS += MACHINE=none META2DEPS_CMD += -S ${SB_BACKING_SB}/src M2D_OBJROOTS += ${SB_BACKING_SB}/${SB_OBJPREFIX} .endif -META2DEPS_FILTER = sed 's,^src:,${SRCTOP}/,;s,^\([^/]\),${OBJTOP}/\1,' | -.elif ${META2DEPS:E} == "sh" -META2DEPS_CMD = ${_time} ${_sh_x} ${META2DEPS} \ - OBJTOP=${_objtop} SB_OBJROOT=${_objroot} -.else -META2DEPS_CMD ?= ${META2DEPS} -.endif # we are only interested in the dirs # sepecifically those we read something from. diff --git a/share/mk/meta2deps.sh b/share/mk/meta2deps.sh index 2fec368103bc..f6b58947c666 100755 --- a/share/mk/meta2deps.sh +++ b/share/mk/meta2deps.sh @@ -114,16 +114,89 @@ meta2dirs() { sort -u } +add_list() { + sep=' ' + suffix= + while : + do + case "$1" in + "|") sep="$1"; shift;; + -s) suffix="$2"; shift 2;; + *) break;; + esac + done + name=$1 + shift + eval list="\$$name" + for top in "$@" + do + case "$sep$list$sep" in + *"$sep$top$suffix$sep"*) continue;; + esac + list="${list:+$list$sep}$top$suffix" + done + eval "$name=\"$list\"" +} + meta2deps() { DPDEPS= + SRCTOPS=$SRCTOP + OBJROOTS= while : do case "$1" in *=*) eval export "$1"; shift;; + -a) MACHINE_ARCH=$2; shift 2;; + -m) MACHINE=$2; shift 2;; + -C) CURDIR=$2; shift 2;; + -H) HOST_TARGET=$2; shift 2;; + -S) add_list SRCTOPS $2; shift 2;; + -O) add_list OBJROOTS $2; shift 2;; + -R) RELDIR=$2; shift 2;; + -T) TARGET_SPEC=$2; shift 2;; *) break;; esac done + _th= _o= + case "$MACHINE" in + host) _ht=$HOST_TARGET;; + esac + + for o in $OBJROOTS + do + case "$MACHINE,/$o/" in + host,*$HOST_TARGET*) ;; + *$MACHINE*|*${TARGET_SPEC:-$MACHINE}*) ;; + *) add_list _o $o; continue;; + esac + for x in $_ht $TARGET_SPEC $MACHINE + do + case "$o" in + "") continue;; + */$x/) add_list _o ${o%$x/}; o=;; + */$x) add_list _o ${o%$x}; o=;; + *$x/) add_list _o ${o%$x/}; o=;; + *$x) add_list _o ${o%$x}; o=;; + esac + done + done + OBJROOTS="$_o" + + case "$OBJTOP" in + "") + for o in $OBJROOTS + do + OBJTOP=$o${TARGET_SPEC:-$MACHINE} + break + done + ;; + esac + src_re= + obj_re= + add_list '|' -s '/*' src_re $SRCTOPS + add_list '|' -s '*' obj_re $OBJROOTS + [ -z "$RELDIR" ] && unset DPDEPS tf=/tmp/m2d$$-$USER rm -f $tf.* @@ -165,7 +238,7 @@ meta2deps() { esac case "$op,$path" in - W,*srcrel) continue;; + W,*srcrel|*.dirdep) continue;; C,*) case "$path" in /*) cwd=$path;; @@ -180,8 +253,7 @@ meta2deps() { ;; *) dir=${path%/*} case "$path" in - $SB/*|${SB_BACKING_SB:-$SB}/*) ;; - $SB_OBJROOT*) ;; + $src_re|$obj_re) ;; /*/stage/*) ;; /*) continue;; *) for path in $ldir/$path $cwd/$path @@ -213,7 +285,7 @@ meta2deps() { esac case "$dir" in ${CURDIR:-.}|${CURDIR:-.}/*|"") continue;; - $SRCTOP/*|${SB_BACKING_SB:-$SB}/src/*) + $src_re) # avoid repeating ourselves... case "$DPDEPS,$seensrc," in ,*) @@ -239,7 +311,7 @@ meta2deps() { [ -f $path ] || continue case "$dir" in $CWD) continue;; # ignore - $SRCTOP/*|${SB_BACKING_SB:-$SB}/src/*) + $src_re) seenit="$seenit,$seen" echo $dir >> $tf.srcdep case "$DPDEPS,$reldir,$seensrc," in @@ -265,7 +337,7 @@ meta2deps() { fi seenit="$seenit,$seen" case "$dir" in - $SB/*|${SB_OBJROOT:-$SB/}*|${SB_BACKING_SB:-$SB}/*) + $obj_re) echo $dir;; esac done > $tf.dirdep @@ -281,7 +353,7 @@ meta2deps() { # qualified with . as needed. # We strip .$MACHINE though xargs cat < $f | sort -u | - sed "s,^# ,,;s,^,$OBJTOP/,;s,\.$MACHINE\$,," + sed "s,^# ,,;s,^,$OBJTOP/,;s,\.${TARGET_SPEC:-$MACHINE}\$,,;s,\.$MACHINE\$,," ;; *) sort -u $f;; esac From a0108088f8a8ac039a4316507daa15d50eb6d3af Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 4 Jun 2013 15:25:57 +0000 Subject: [PATCH 087/228] Include more stuff within the meta mode block, so that buildworld can function normally. Submitted by: John Van Horne --- share/mk/local.sys.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index 3d855133cc5d..b259b39260a2 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -227,11 +227,6 @@ UPDATE_DEPENDFILE= NO .MAKE.META.BAILIWICK = ${SB} ${OBJROOT} ${STAGE_ROOT} -.endif # meta mode - -# ensure we have a value -.MAKE.MODE ?= normal - # don't rely on MACHINE_ARCH being set or valid MACHINE_ARCH.host = ${_HOST_ARCH} @@ -242,6 +237,11 @@ CSU_DIR.i386 = csu/i386-elf CSU_DIR.${MACHINE_ARCH} ?= csu/${MACHINE_ARCH} CSU_DIR := ${CSU_DIR.${MACHINE_ARCH}} +.endif # meta mode + +# ensure we have a value +.MAKE.MODE ?= normal + MAKE_PRINT_VAR_ON_ERROR+= \ .CURDIR \ .MAKE \ From 62eec430f31138fdb4bc22d6caf7a06df1c7d993 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 4 Jun 2013 15:27:09 +0000 Subject: [PATCH 088/228] Remove external/bsd (not in this branch yet). --- Makefile.inc1 | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 6b7ca5316faa..ec72a88337d8 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -91,7 +91,6 @@ SUBDIR+=sys usr.bin usr.sbin .if ${MK_OFED} != "no" SUBDIR+=contrib/ofed .endif -SUBDIR+=external/bsd # # We must do etc/ last for install/distribute to work. From 5a968130d572d570d69890b19563930d415feed6 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 4 Jun 2013 15:27:41 +0000 Subject: [PATCH 089/228] Ensure this makefile and anything it runs, does so without meta mode. Allows buildworld etc. --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index a396fc9c167c..b48b78465ac5 100644 --- a/Makefile +++ b/Makefile @@ -458,3 +458,11 @@ universe_epilogue: buildLINT: ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT + +.if defined(.PARSEDIR) +# this makefile does not run in meta mode +.MAKE.MODE= normal +# make sure things we run from here don't either +WITHOUT_META_MODE= +.export WITHOUT_META_MODE +.endif From 12d4083451fc39b3e831d4ea0bfa67d3b32cfb54 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 25 Jun 2013 05:05:10 +0000 Subject: [PATCH 090/228] Fix building of crypt_tests --- lib/libcrypt/tests/Makefile.depend | 19 +++++++++++++++++++ lib/libcrypt/tests/crypt_tests.c | 3 +-- 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 lib/libcrypt/tests/Makefile.depend diff --git a/lib/libcrypt/tests/Makefile.depend b/lib/libcrypt/tests/Makefile.depend new file mode 100644 index 000000000000..cef7a1fc65b8 --- /dev/null +++ b/lib/libcrypt/tests/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/atf/libatf-c \ + lib/libc \ + lib/libcompiler_rt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libcrypt/tests/crypt_tests.c b/lib/libcrypt/tests/crypt_tests.c index 3331d12d05f1..d0db8aba9500 100644 --- a/lib/libcrypt/tests/crypt_tests.c +++ b/lib/libcrypt/tests/crypt_tests.c @@ -2,10 +2,9 @@ __FBSDID("$FreeBSD$"); #include -#include #include -#include +#include #define LEET "0.s0.l33t" From dafd85b401a57a85e358439985bac55095137694 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:31:56 +0000 Subject: [PATCH 091/228] Report the number of dirdeps so we can track progress. --- pkgs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/Makefile b/pkgs/Makefile index 949eea6b9b4d..64a77046a796 100644 --- a/pkgs/Makefile +++ b/pkgs/Makefile @@ -134,7 +134,7 @@ $t: dirdeps elapsed_time= seconds=`expr ${now_utc} - ${start_utc}` count-makefiles: .NOMETA - @echo "${TIME_STAMP} Makefiles read: total=${.MAKE.MAKEFILES:[#]} depend=${.MAKE.MAKEFILES:M*depend*:[#]} ${elapsed_time}" + @echo "${TIME_STAMP} Makefiles read: total=${.MAKE.MAKEFILES:[#]} depend=${.MAKE.MAKEFILES:M*depend*:[#]} dirdeps=${.ALLTARGETS:M${SRCTOP}*:O:u:[#]} ${elapsed_time}" .END: _build_finish _build_finish: .NOMETA From e97689cb2444c58804ea0089802fa75f44c2bf63 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:32:48 +0000 Subject: [PATCH 092/228] Make sure we trigger generation of headers --- lib/clang/clang.build.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/clang/clang.build.mk b/lib/clang/clang.build.mk index 2cf1e5b8b864..9bcf5064681b 100644 --- a/lib/clang/clang.build.mk +++ b/lib/clang/clang.build.mk @@ -196,3 +196,7 @@ Checkers.inc.h: ${CLANG_SRCS}/lib/StaticAnalyzer/Checkers/Checkers.td \ SRCS+= ${TGHDRS:C/$/.inc.h/} DPADD+= ${TGHDRS:C/$/.inc.h/} CLEANFILES+= ${TGHDRS:C/$/.inc.h/} + +# if we are not doing explicit 'make depend', there is +# nothing to cause these to be generated. +beforebuild: ${SRCS:M*.inc.h} From 7f430eb166674d639af52389cd3c77eda78b517e Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:33:36 +0000 Subject: [PATCH 093/228] Tell cpp to only look where we told it --- usr.bin/kdump/mkioctls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/kdump/mkioctls b/usr.bin/kdump/mkioctls index 0dac68425b0e..d6209aa9a8e1 100644 --- a/usr.bin/kdump/mkioctls +++ b/usr.bin/kdump/mkioctls @@ -38,7 +38,7 @@ case "${MACHINE}" in esac awk -v x="$ioctl_includes" 'BEGIN {print x}' | - $CPP -I$1 -dM -DCOMPAT_43TTY - | + $CPP -nostdinc -I$1 -dM -DCOMPAT_43TTY - | awk -v ioctl_includes="$ioctl_includes" -v style="$style" ' BEGIN { print "/* XXX obnoxious prerequisites. */" From 43425d65d24b3f174acccf9059a5a1b8bd32458a Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:37:47 +0000 Subject: [PATCH 094/228] In meta mode touch targets like copies so we don't needlessly repeat them. --- include/Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/include/Makefile b/include/Makefile index d7556935c2f5..2c6ac4366115 100644 --- a/include/Makefile +++ b/include/Makefile @@ -93,7 +93,7 @@ _libiconv_compat.h: ${.CURDIR}/Makefile echo "#undef __LIBICONV_COMPAT" >> _libiconv_compat.h .endif .endif - + # Define SHARED to indicate whether you want symbolic links to the system # source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is @@ -178,6 +178,9 @@ compat: -f ${.CURDIR}/../etc/mtree/BIND.include.dist \ -p ${DESTDIR}${INCLUDEDIR} > /dev/null .endif +.if ${MK_META_MODE} == "yes" + touch ${.TARGET} +.endif copies: .for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \ @@ -257,6 +260,9 @@ copies: cd ${.CURDIR}/../sys/rpc; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \ ${DESTDIR}${INCLUDEDIR}/rpc +.if ${MK_META_MODE} == "yes" + touch ${.TARGET} +.endif symlinks: @${ECHO} "Setting up symlinks to kernel source tree..." @@ -369,3 +375,6 @@ symlinks: ln -fs ../../../sys/rpc/$$h \ ${DESTDIR}${INCLUDEDIR}/rpc; \ done +.if ${MK_META_MODE} == "yes" + touch ${.TARGET} +.endif From 707ae8d2e7264e030f364461385da5ccc3b5489c Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:40:17 +0000 Subject: [PATCH 095/228] When TARGET_SPEC_VARS is non-trivial, we need to apply the same filtering when setting _machines as we do to _build_dirs. --- share/mk/dirdeps.mk | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/share/mk/dirdeps.mk b/share/mk/dirdeps.mk index e812416cc88e..7e585a7e40f4 100644 --- a/share/mk/dirdeps.mk +++ b/share/mk/dirdeps.mk @@ -149,11 +149,11 @@ DEP_$v ?= ${$v} JOT ?= jot _tspec_x := ${${JOT} ${TARGET_SPEC_VARS:[#]}:L:sh} # this handles unqualified entries -M_dep_qual_fixes = C;(/[^/.,]+)$$;\1.${DEP_TARGET_SPEC}; +M_dep_qual_fixes = C;(/[^/.,]+)$$;\1.$${DEP_TARGET_SPEC}; # there needs to be at least one item missing for these to make sense .for i in ${_tspec_x:[2..-1]} _tspec_m$i := ${TARGET_SPEC_VARS:[2..$i]:@w@[^,]+@:ts,} -_tspec_a$i := ,${TARGET_SPEC_VARS:[$i..-1]:@v@$${DEP_$v}@:ts,} +_tspec_a$i := ,${TARGET_SPEC_VARS:[$i..-1]:@v@$$$${DEP_$v}@:ts,} M_dep_qual_fixes += C;(\.${_tspec_m$i})$$;\1${_tspec_a$i}; .endfor .else @@ -359,7 +359,8 @@ _machines := ${_machines:O:u} .if ${TARGET_SPEC_VARS:[#]} > 1 # we need to tweak _machines _dm := ${DEP_MACHINE} -_machines := ${_machines:@DEP_MACHINE@${DEP_TARGET_SPEC}@} +# apply the same filtering that we do when qualifying DIRDEPS. +_machines := ${_machines:@DEP_MACHINE@${DEP_TARGET_SPEC}@:${M_dep_qual_fixes:ts:}:O:u} DEP_MACHINE := ${_dm} .endif @@ -464,6 +465,9 @@ ${_this_dir}.$m: ${_build_dirs:M*.$m:N${_this_dir}.$m} .if ${_DIRDEP_CHECKED:M$d} == "" # once only _DIRDEP_CHECKED += $d +.if !empty(_debug_search) +.info checking $d +.endif # Note: _build_dirs is fully qualifed so d:R is always the directory .if exists(${d:R}) # Warning: there is an assumption here that MACHINE is always @@ -471,7 +475,8 @@ _DIRDEP_CHECKED += $d # If TARGET_SPEC and MACHINE are insufficient, you have a problem. _m := ${.MAKE.DEPENDFILE_PREFERENCE:T:S;${TARGET_SPEC}$;${d:E};:S;${MACHINE};${d:E:C/,.*//};:@m@${exists(${d:R}/$m):?${d:R}/$m:}@:[1]} .if !empty(_m) -_qm := ${_m:${M_dep_qual_fixes:ts:}} +# M_dep_qual_fixes isn't geared to Makefile.depend +_qm := ${_m:C;(\.depend)$;\1.${d:E};:${M_dep_qual_fixes:ts:}} .if !empty(_debug_search) .info Looking for ${_qm} .endif From 3d0fb7cf44040d2c372856fc9a9bf0ef6abadf98 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:42:55 +0000 Subject: [PATCH 096/228] Some re-org and cleanup. Make it easier to subst some dirs in dirdeps with variables. Tweak M_dep_qual_fixes esp. for pseudo machines like "host" so that it can DTRT against _machines (in dirdeps.mk). --- share/mk/local.dirdeps.mk | 63 ++++++++++++++++++++++++++++----------- 1 file changed, 46 insertions(+), 17 deletions(-) diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index 92dfe7bd0a8d..de95ba97a364 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -1,25 +1,24 @@ +.if !target(_DIRDEP_USE) +# we are the 1st makefile -.if ${DEP_MACHINE} != "host" +# DEP_MACHINE is set before we get here, this may not be. +DEP_RELDIR ?= ${RELDIR} -# this is how we can handle optional dependencies -.if ${MK_SSP:Uno} != "no" && defined(PROG) -DIRDEPS += gnu/lib/libssp/libssp_nonshared +.if ${.TARGETS:Uall:M*/*} && empty(DIRDEPS) +# This little trick let's us do +# +# mk -f dirdeps.mk some/dir.i386,bsd +# +DIRDEPS := ${.TARGETS:M*/*} +${.TARGETS:Nall}: all .endif -.endif - -# we need pkgs/pseudo/stage to prep the stage tree -.if ${DEP_RELDIR:U${RELDIR}} != "pkgs/pseudo/stage" -DIRDEPS += pkgs/pseudo/stage -.endif - -M_dep_qual_fixes += C;\.host,[^/.,]*$$;.host; -M_dep_qual_fixes += C;\.common,[^/.,]*$$;.common; - -CSU_DIR.i386 = csu/i386-elf -CSU_DIR.${DEP_MACHINE_ARCH} ?= csu/${DEP_MACHINE_ARCH} -CSU_DIR := ${CSU_DIR.${DEP_MACHINE_ARCH}} +# pseudo machines get no qualification +.for m in host common +M_dep_qual_fixes += C;($m),[^/.,]*$$;\1; +.endfor +#.info M_dep_qual_fixes=${M_dep_qual_fixes} # we want to supress these dependencies for host tools DIRDEPS_FILTER.host = \ Ninclude* \ @@ -29,3 +28,33 @@ DIRDEPS_FILTER.host = \ Ngnu/lib/csu* \ Ngnu/lib/lib[a-r]* \ + +.endif + +.if ${DEP_MACHINE} != "host" + +# this is how we can handle optional dependencies +.if ${MK_SSP:Uno} != "no" && defined(PROG) +DIRDEPS += gnu/lib/libssp/libssp_nonshared +.endif + +# some optional things +.if !defined(WITHOUT_CTF) && ${DEP_RELDIR:U${RELDIR}:Mcddl/usr.bin/ctf*} == "" +DIRDEPS += \ + cddl/usr.bin/ctfconvert.host \ + cddl/usr.bin/ctfmerge.host +.endif + +.endif + +# we need pkgs/pseudo/stage to prep the stage tree +.if ${DEP_RELDIR:U${RELDIR}} != "pkgs/pseudo/stage" +DIRDEPS += pkgs/pseudo/stage +.endif + +CSU_DIR.i386 = csu/i386-elf +DEP_MACHINE_ARCH = ${MACHINE_ARCH.${DEP_MACHINE}} +CSU_DIR.${DEP_MACHINE_ARCH} ?= csu/${DEP_MACHINE_ARCH} +CSU_DIR := ${CSU_DIR.${DEP_MACHINE_ARCH}} +BOOT_MACHINE_DIR:= ${BOOT_MACHINE_DIR.${DEP_MACHINE}} +KERNEL_NAME:= ${KERNEL_NAME.${DEP_MACHINE}} From 6f5639e3f15e70b927ad10fdfe22a2df3a6d0038 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:44:50 +0000 Subject: [PATCH 097/228] Sync-up with what's being use in Juniper for building ATF in meta mode. --- share/mk/bsd.own.mk | 3 +++ share/mk/bsd.test.mk | 24 +++++++++++++++++++++++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index dcb2b5e70f18..dd88b78d69e0 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -192,6 +192,9 @@ NLSMODE?= ${NOBINMODE} INCLUDEDIR?= /usr/include +TESTSBASE?= /usr/tests +TESTSDIR?= ${TESTSBASE}/${RELDIR:S,/tests,,} + # # install(1) parameters. # diff --git a/share/mk/bsd.test.mk b/share/mk/bsd.test.mk index a75298f42d65..24b6b61dc160 100644 --- a/share/mk/bsd.test.mk +++ b/share/mk/bsd.test.mk @@ -36,9 +36,15 @@ WITHOUT_MAN=yes .endif # tell progs.mk we might want to install things -PROG_VARS+= BINDIR +BINDIR = ${TESTSDIR} PROGS_TARGETS+= install +.ifdef PROG +# we came here via bsd.progs.mk below +# parent will do staging. +MK_STAGING= no +.endif + .if !empty(PROGS) || !empty(PROGS_CXX) || !empty(SCRIPTS) .include .endif @@ -76,4 +82,20 @@ test: beforetest realtest test: aftertest .endif +.if !defined(PROG) && ${MK_STAGING} != "no" +.if !defined(_SKIP_BUILD) +# this will handle staging if needed +_SKIP_STAGING= no +# but we don't want it to build anything +_SKIP_BUILD= +.endif +.if !empty(PROGS) +stage_files.prog: ${PROGS} +.endif + +.include + +.endif +.if !target(objwarn) .include +.endif From 402be6b029170c1268c5491d0376f11cc2cf1c44 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:46:41 +0000 Subject: [PATCH 098/228] Some cleanup and re-org. Also update CFLAGS_LAST.clang to match new compiler version. Add BOOT_MACHINE_DIR (so we can stick to unqualified Makefile.depend) --- share/mk/local.sys.mk | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index b259b39260a2..6376b948a9e9 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -51,15 +51,19 @@ TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 TARGET_ARCHES_pc98?= i386 +# some corner cases +CSU_DIR.i386 = csu/i386-elf +BOOT_MACHINE_DIR.amd64 = boot/i386 +MACHINE_ARCH.host = ${_HOST_ARCH} + # the list of machines we support ALL_MACHINE_LIST?= amd64 arm i386 ia64 mips pc98 powerpc sparc64 .for m in ${ALL_MACHINE_LIST:O:u} MACHINE_ARCH_LIST.$m?= ${TARGET_ARCHES_${m}:U$m} MACHINE_ARCH.$m?= ${MACHINE_ARCH_LIST.$m:[1]} +BOOT_MACHINE_DIR.$m ?= boot/$m .endfor -.if empty(MACHINE_ARCH) MACHINE_ARCH:= ${TARGET_ARCH:U${MACHINE_ARCH.${MACHINE}}} -.endif .if !defined(_TARGETS) # some things we do only once @@ -196,13 +200,14 @@ LDFLAGS_LAST+= -B${STAGE_LIBDIR} -L${STAGE_LIBDIR} CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER:U4.2} # backward doesn't get searched if -nostdinc CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER:U4.2}/backward -CFLAGS_LAST.clang += -isystem ${STAGE_OBJTOP}/usr/include/clang/3.2 +CFLAGS_LAST.clang += -isystem ${STAGE_OBJTOP}/usr/include/clang/${CLANGVER:U3.3} CXXFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} .else # if ld suppored sysroot, this would suffice CFLAGS_LAST+= --sysroot=${STAGE_OBJTOP} .endif .endif +LDFLAGS_LAST+= -Wl,-rpath-link,${STAGE_LIBDIR} STAGED_INCLUDE_DIR= ${STAGE_OBJTOP}/usr/include .if ${USE_META:Uyes} == "yes" .include "meta.sys.mk" @@ -227,12 +232,6 @@ UPDATE_DEPENDFILE= NO .MAKE.META.BAILIWICK = ${SB} ${OBJROOT} ${STAGE_ROOT} -# don't rely on MACHINE_ARCH being set or valid - -MACHINE_ARCH.host = ${_HOST_ARCH} -MACHINE_ARCH.${MACHINE} ?= ${MACHINE} -MACHINE_ARCH := ${MACHINE_ARCH.${MACHINE}} - CSU_DIR.i386 = csu/i386-elf CSU_DIR.${MACHINE_ARCH} ?= csu/${MACHINE_ARCH} CSU_DIR := ${CSU_DIR.${MACHINE_ARCH}} From 04667c47607e3dd1770a6cc3e37bdaddaf8cfcb6 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:48:21 +0000 Subject: [PATCH 099/228] Add more vars we subst into DIRDEPS eg. BOOT_MACHINE_DIR and KERNEL_NAME. Make it easier to add more. --- share/mk/local.gendirdeps.mk | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/share/mk/local.gendirdeps.mk b/share/mk/local.gendirdeps.mk index 88c11e9db194..28b589daf994 100644 --- a/share/mk/local.gendirdeps.mk +++ b/share/mk/local.gendirdeps.mk @@ -1,10 +1,26 @@ -# supress optional dependecies +# supress optional/auto dependecies # local.dirdeps.mk will put them in if necessary -GENDIRDEPS_FILTER+= Ngnu/lib/libssp/libssp_nonshared +GENDIRDEPS_FILTER+= \ + Ngnu/lib/libssp/libssp_nonshared \ + Ncddl/usr.bin/ctf* \ + Npkgs/pseudo/stage* # gendirdeps.mk will turn _{VAR} into ${VAR} which keeps this simple -GENDIRDEPS_FILTER+= ${CSU_DIR:L:@v@S,/${$v},/_{${v}},@} +# order of this list matters! +GENDIRDEPS_FILTER_DIR_VARS+= \ + CSU_DIR \ + BOOT_MACHINE_DIR -# this could easily get confused -GENDIRDEPS_FILTER+= ${MACHINE_CPUARCH MACHINE_CPU MACHINE_ARCH MACHINE:L:@v@S,/${$v}/,/_{${v}}/,@:NS,//,*:u} +# order of this list matters! +GENDIRDEPS_FILTER_VARS+= \ + KERNEL_NAME \ + MACHINE_CPUARCH \ + MACHINE_ARCH \ + MACHINE + +GENDIRDEPS_FILTER+= ${GENDIRDEPS_FILTER_DIR_VARS:@v@S,${$v},_{${v}},@} +GENDIRDEPS_FILTER+= ${GENDIRDEPS_FILTER_VARS:@v@S,/${$v}/,/_{${v}}/,@:NS,//,*:u} + +# handle the non-standard way that gnu/usr.bin/groff/tmac is staged +GENDIRDEPS_FILTER+= C,.*usr/share/tmac.*stage,gnu/usr.bin/groff/tmac, From 9d82612e13899d709e960cd0d55c316b052d68ee Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:49:26 +0000 Subject: [PATCH 100/228] Avoid errors when MACHINE is a pseudo machine like "common". --- share/mk/bsd.compiler.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/mk/bsd.compiler.mk b/share/mk/bsd.compiler.mk index 2d648de6c485..cd2b35d25731 100644 --- a/share/mk/bsd.compiler.mk +++ b/share/mk/bsd.compiler.mk @@ -1,5 +1,9 @@ # $FreeBSD$ +.if ${MACHINE} == "common" +COMPILER_TYPE= none +.endif + .if !defined(COMPILER_TYPE) . if ${CC:T:Mgcc*} COMPILER_TYPE:= gcc From 72484446459491d41572770e0d42bcbf0a7af7b7 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 12 Oct 2013 23:51:00 +0000 Subject: [PATCH 101/228] Ensure that $PROG isn't make .PHONY Also add some additional control over staging (for use by bsd.test.mk) --- share/mk/bsd.sys.mk | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk index e0b2357b2dcb..6df0dab24e2e 100644 --- a/share/mk/bsd.sys.mk +++ b/share/mk/bsd.sys.mk @@ -143,7 +143,12 @@ PHONY_NOTMAIN = afterdepend afterinstall all beforedepend beforeinstall \ realinstall regress subdir-all subdir-depend subdir-install \ tags whereobj +.if defined(.PARSEDIR) +# we don't want ${PROG} to be PHONY +.PHONY: ${PHONY_NOTMAIN:N${PROG:U}} +.else .PHONY: ${PHONY_NOTMAIN} +.endif .NOTMAIN: ${PHONY_NOTMAIN} .if !defined(.PARSEDIR) @@ -153,6 +158,9 @@ PHONY_NOTMAIN = afterdepend afterinstall all beforedepend beforeinstall \ .if ${MK_STAGING} != "no" .if defined(_SKIP_BUILD) || (!make(all) && !make(clean*)) +_SKIP_STAGING?= yes +.endif +.if ${_SKIP_STAGING:Uno} == "yes" staging stage_libs stage_files stage_as stage_links stage_symlinks: .else # allow targets like beforeinstall to be leveraged @@ -168,7 +176,7 @@ staging: beforeinstall .if ${MK_STAGING_PROG} != "no" STAGE_DIR.prog= ${STAGE_OBJTOP}${BINDIR} -.if !empty(PROG) +.if !empty(PROG) || !empty(PROGS) .if defined(PROGNAME) STAGE_AS_SETS+= prog STAGE_AS_${PROG}= ${PROGNAME} @@ -183,6 +191,9 @@ staging: stage_files .if !empty(_LIBS) && !defined(INTERNALLIB) stage_libs: ${_LIBS} +.if defined(SHLIB_NAME) && defined(DEBUG_FLAGS) && target(${SHLIB_NAME}.symbols) +stage_libs: ${SHLIB_NAME}.symbols +.endif .endif .if !empty(INCS) || !empty(INCSGROUPS) && target(buildincludes) @@ -203,6 +214,9 @@ staging: stage_as .if !empty(LINKS) staging: stage_links +.if ${MAKE_VERSION} < 20131001 +stage_links.links: ${_LIBS} ${PROG} +.endif STAGE_SETS+= links STAGE_LINKS.links= ${LINKS} .endif From 81ea16de6caf5a60b83c2d0c8cb7f03a15a027c7 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 13 Oct 2013 00:17:24 +0000 Subject: [PATCH 102/228] Ensure _objroot is correctly formatted --- share/mk/meta.stage.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index 2f02700fdc19..8498adf13523 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -35,7 +35,13 @@ _stage_file_basename = $${f\#\#*/} _stage_target_dirname = $${t%/*} .endif +_OBJROOT ?= ${OBJROOT:U${OBJTOP:H}} +.if ${_OBJROOT:M*/} != "" +_objroot ?= ${_OBJROOT:tA}/ +.else _objroot ?= ${_OBJROOT:tA} +.endif + # make sure this is global _STAGED_DIRS ?= .export _STAGED_DIRS From d5ddb276a689dabb97836323f017b7f72d72241e Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 13 Oct 2013 00:19:31 +0000 Subject: [PATCH 103/228] Latest version. Report better parse errors. --- share/mk/meta2deps.py | 36 ++++++++++++++++++++++++++++-------- 1 file changed, 28 insertions(+), 8 deletions(-) diff --git a/share/mk/meta2deps.py b/share/mk/meta2deps.py index 97b2381ae48f..254f230688a7 100755 --- a/share/mk/meta2deps.py +++ b/share/mk/meta2deps.py @@ -35,7 +35,7 @@ """ RCSid: - $Id: meta2deps.py,v 1.12 2013/03/31 22:31:59 sjg Exp $ + $Id: meta2deps.py,v 1.15 2013/07/29 20:41:23 sjg Exp $ Copyright (c) 2011-2013, Juniper Networks, Inc. All rights reserved. @@ -77,7 +77,7 @@ def resolve(path, cwd, last_dir=None, debug=0, debug_out=sys.stderr): """ if path.endswith('/.'): path = path[0:-2] - if path[0] == '/': + if len(path) > 0 and path[0] == '/': return path if path == '.': return cwd @@ -107,10 +107,12 @@ def abspath(path, cwd, last_dir=None, debug=0, debug_out=sys.stderr): this gets called a lot, so we try to avoid calling realpath until we know we have something. """ - path = resolve(path, cwd, last_dir, debug, debug_out) - if path and (path.find('./') > 0 or - path.endswith('/..') or - os.path.islink(path)): + rpath = resolve(path, cwd, last_dir, debug, debug_out) + if rpath: + path = rpath + if (path.find('./') > 0 or + path.endswith('/..') or + os.path.islink(path)): return os.path.realpath(path) return path @@ -191,6 +193,7 @@ def __init__(self, name, conf={}): self.curdir = getv(conf, 'CURDIR') self.reldir = getv(conf, 'RELDIR') self.dpdeps = getv(conf, 'DPDEPS') + self.line = 0 if not self.conf: # some of the steps below we want to do only once @@ -254,7 +257,7 @@ def __init__(self, name, conf={}): self.cwd = os.getcwd() # make sure this is initialized if name: - self.parse() + self.try_parse() def reset(self): """reset state if we are being passed meta files from multiple directories.""" @@ -333,6 +336,15 @@ def find_obj(self, objroot, dir, path, input): return ddep + def try_parse(self, name=None, file=None): + """give file and line number causing exception""" + try: + self.parse(name, file) + except: + # give a useful clue + print >> sys.stderr, '{}:{}: '.format(self.name, self.line), + raise + def parse(self, name=None, file=None): """A meta file looks like: @@ -373,11 +385,13 @@ def parse(self, name=None, file=None): pid_last_dir = {} last_pid = 0 + self.line = 0 if self.curdir: self.seenit(self.curdir) # we ignore this interesting = 'CEFLRV' for line in f: + self.line += 1 # ignore anything we don't care about if not line[0] in interesting: continue @@ -634,7 +648,13 @@ def main(argv, klass=MetaFile, xopts='', xoptf=None): print >> debug_out, "%s=%s" % (k,v) for a in args: - m = klass(a, conf) + if a.endswith('.meta'): + m = klass(a, conf) + elif a.startswith('@'): + # there can actually multiple files per line + for line in open(a[1:]): + for f in line.strip().split(): + m = klass(f, conf) if output: print m.dirdeps() From dc644fdb98c32c87abc98fd97a496513b3d66abe Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 13 Oct 2013 00:20:12 +0000 Subject: [PATCH 104/228] We want an objdir --- share/mk/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/share/mk/Makefile b/share/mk/Makefile index 2110b26ba3d5..96f99da8eca7 100644 --- a/share/mk/Makefile +++ b/share/mk/Makefile @@ -40,7 +40,6 @@ FILES= \ sys.mk \ version_gen.awk -NO_OBJ= FILESDIR= ${BINDIR}/mk .if ${MK_ATF} != "no" From 4fd0d10e0fe684211328bc148edf89a792425b39 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 13 Oct 2013 00:22:44 +0000 Subject: [PATCH 105/228] New dependencies --- lib/clang/libclangrewritecore/Makefile.depend | 26 +++++++ .../libclangrewritefrontend/Makefile.depend | 74 +++++++++++++++++++ lib/clang/libllvmirreader/Makefile.depend | 17 +++++ .../libllvmmipsdisassembler/Makefile.depend | 26 +++++++ lib/clang/libllvmobjcarcopts/Makefile.depend | 20 +++++ lib/libexecinfo/Makefile.depend | 19 +++++ lib/libiconv_compat/Makefile.depend | 16 ++++ lib/libldns/Makefile.depend | 21 ++++++ lib/libnetbsd/Makefile.depend | 15 ++++ libexec/save-entropy/Makefile.depend | 12 +++ share/doc/legal/realtek/Makefile.depend | 12 +++ .../file/fcntlflags/Makefile.depend | 17 +++++ .../include/stdatomic/Makefile.depend | 18 +++++ .../ath/ath_ee_9300_print/Makefile.depend | 20 +++++ .../drm/radeon/mkregtable/Makefile.depend | 18 +++++ tools/tools/makeroot/Makefile.depend | 12 +++ tools/tools/usbtest/Makefile.depend | 19 +++++ usr.bin/svn/lib/libapr/Makefile.depend | 16 ++++ usr.bin/svn/lib/libapr_util/Makefile.depend | 15 ++++ usr.bin/svn/lib/libserf/Makefile.depend | 17 +++++ usr.bin/svn/lib/libsqlite3/Makefile.depend | 14 ++++ usr.bin/svn/lib/libsvn_client/Makefile.depend | 14 ++++ usr.bin/svn/lib/libsvn_delta/Makefile.depend | 15 ++++ usr.bin/svn/lib/libsvn_diff/Makefile.depend | 14 ++++ usr.bin/svn/lib/libsvn_fs/Makefile.depend | 14 ++++ usr.bin/svn/lib/libsvn_fs_fs/Makefile.depend | 14 ++++ .../svn/lib/libsvn_fs_util/Makefile.depend | 14 ++++ usr.bin/svn/lib/libsvn_ra/Makefile.depend | 14 ++++ .../svn/lib/libsvn_ra_local/Makefile.depend | 14 ++++ .../svn/lib/libsvn_ra_serf/Makefile.depend | 15 ++++ usr.bin/svn/lib/libsvn_ra_svn/Makefile.depend | 14 ++++ usr.bin/svn/lib/libsvn_repos/Makefile.depend | 14 ++++ usr.bin/svn/lib/libsvn_subr/Makefile.depend | 17 +++++ usr.bin/svn/lib/libsvn_wc/Makefile.depend | 14 ++++ usr.bin/svn/svn/Makefile.depend | 42 +++++++++++ usr.bin/svn/svnadmin/Makefile.depend | 30 ++++++++ usr.bin/svn/svndumpfilter/Makefile.depend | 30 ++++++++ usr.bin/svn/svnlook/Makefile.depend | 31 ++++++++ usr.bin/svn/svnmucc/Makefile.depend | 40 ++++++++++ usr.bin/svn/svnrdump/Makefile.depend | 42 +++++++++++ usr.bin/svn/svnserve/Makefile.depend | 39 ++++++++++ usr.bin/svn/svnsync/Makefile.depend | 39 ++++++++++ usr.bin/svn/svnversion/Makefile.depend | 28 +++++++ usr.sbin/bsdconfig/packages/Makefile.depend | 12 +++ .../packages/include/Makefile.depend | 12 +++ .../bsdconfig/share/packages/Makefile.depend | 12 +++ usr.sbin/bsdinstall/scripts/Makefile.depend | 12 +++ .../bsnmpd/modules/snmp_hast/Makefile.depend | 36 +++++++++ .../pc-sysinstall/examples/Makefile.depend | 12 +++ 49 files changed, 1028 insertions(+) create mode 100644 lib/clang/libclangrewritecore/Makefile.depend create mode 100644 lib/clang/libclangrewritefrontend/Makefile.depend create mode 100644 lib/clang/libllvmirreader/Makefile.depend create mode 100644 lib/clang/libllvmmipsdisassembler/Makefile.depend create mode 100644 lib/clang/libllvmobjcarcopts/Makefile.depend create mode 100644 lib/libexecinfo/Makefile.depend create mode 100644 lib/libiconv_compat/Makefile.depend create mode 100644 lib/libldns/Makefile.depend create mode 100644 lib/libnetbsd/Makefile.depend create mode 100644 libexec/save-entropy/Makefile.depend create mode 100644 share/doc/legal/realtek/Makefile.depend create mode 100644 tools/regression/file/fcntlflags/Makefile.depend create mode 100644 tools/regression/include/stdatomic/Makefile.depend create mode 100644 tools/tools/ath/ath_ee_9300_print/Makefile.depend create mode 100644 tools/tools/drm/radeon/mkregtable/Makefile.depend create mode 100644 tools/tools/makeroot/Makefile.depend create mode 100644 tools/tools/usbtest/Makefile.depend create mode 100644 usr.bin/svn/lib/libapr/Makefile.depend create mode 100644 usr.bin/svn/lib/libapr_util/Makefile.depend create mode 100644 usr.bin/svn/lib/libserf/Makefile.depend create mode 100644 usr.bin/svn/lib/libsqlite3/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_client/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_delta/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_diff/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_fs/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_fs_fs/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_fs_util/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_ra/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_ra_local/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_ra_serf/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_ra_svn/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_repos/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_subr/Makefile.depend create mode 100644 usr.bin/svn/lib/libsvn_wc/Makefile.depend create mode 100644 usr.bin/svn/svn/Makefile.depend create mode 100644 usr.bin/svn/svnadmin/Makefile.depend create mode 100644 usr.bin/svn/svndumpfilter/Makefile.depend create mode 100644 usr.bin/svn/svnlook/Makefile.depend create mode 100644 usr.bin/svn/svnmucc/Makefile.depend create mode 100644 usr.bin/svn/svnrdump/Makefile.depend create mode 100644 usr.bin/svn/svnserve/Makefile.depend create mode 100644 usr.bin/svn/svnsync/Makefile.depend create mode 100644 usr.bin/svn/svnversion/Makefile.depend create mode 100644 usr.sbin/bsdconfig/packages/Makefile.depend create mode 100644 usr.sbin/bsdconfig/packages/include/Makefile.depend create mode 100644 usr.sbin/bsdconfig/share/packages/Makefile.depend create mode 100644 usr.sbin/bsdinstall/scripts/Makefile.depend create mode 100644 usr.sbin/bsnmpd/modules/snmp_hast/Makefile.depend create mode 100644 usr.sbin/pc-sysinstall/examples/Makefile.depend diff --git a/lib/clang/libclangrewritecore/Makefile.depend b/lib/clang/libclangrewritecore/Makefile.depend new file mode 100644 index 000000000000..a15fa635d8b4 --- /dev/null +++ b/lib/clang/libclangrewritecore/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/msun \ + usr.bin/clang/clang-tblgen.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +HTMLRewrite.o: DiagnosticCommonKinds.inc.h +HTMLRewrite.po: DiagnosticCommonKinds.inc.h +Rewriter.o: DeclNodes.inc.h +Rewriter.o: DiagnosticCommonKinds.inc.h +Rewriter.o: StmtNodes.inc.h +Rewriter.po: DeclNodes.inc.h +Rewriter.po: DiagnosticCommonKinds.inc.h +Rewriter.po: StmtNodes.inc.h +.endif diff --git a/lib/clang/libclangrewritefrontend/Makefile.depend b/lib/clang/libclangrewritefrontend/Makefile.depend new file mode 100644 index 000000000000..fd47556d5116 --- /dev/null +++ b/lib/clang/libclangrewritefrontend/Makefile.depend @@ -0,0 +1,74 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/msun \ + usr.bin/clang/clang-tblgen.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +FixItRewriter.o: DiagnosticCommonKinds.inc.h +FixItRewriter.o: DiagnosticFrontendKinds.inc.h +FixItRewriter.po: DiagnosticCommonKinds.inc.h +FixItRewriter.po: DiagnosticFrontendKinds.inc.h +FrontendActions.o: AttrList.inc.h +FrontendActions.o: AttrParsedAttrList.inc.h +FrontendActions.o: Attrs.inc.h +FrontendActions.o: DeclNodes.inc.h +FrontendActions.o: DiagnosticCommonKinds.inc.h +FrontendActions.o: DiagnosticFrontendKinds.inc.h +FrontendActions.o: StmtNodes.inc.h +FrontendActions.po: AttrList.inc.h +FrontendActions.po: AttrParsedAttrList.inc.h +FrontendActions.po: Attrs.inc.h +FrontendActions.po: DeclNodes.inc.h +FrontendActions.po: DiagnosticCommonKinds.inc.h +FrontendActions.po: DiagnosticFrontendKinds.inc.h +FrontendActions.po: StmtNodes.inc.h +HTMLPrint.o: CommentCommandList.inc.h +HTMLPrint.o: DeclNodes.inc.h +HTMLPrint.o: DiagnosticCommonKinds.inc.h +HTMLPrint.o: StmtNodes.inc.h +HTMLPrint.po: CommentCommandList.inc.h +HTMLPrint.po: DeclNodes.inc.h +HTMLPrint.po: DiagnosticCommonKinds.inc.h +HTMLPrint.po: StmtNodes.inc.h +InclusionRewriter.o: DiagnosticCommonKinds.inc.h +InclusionRewriter.po: DiagnosticCommonKinds.inc.h +RewriteMacros.o: DiagnosticCommonKinds.inc.h +RewriteMacros.po: DiagnosticCommonKinds.inc.h +RewriteModernObjC.o: AttrList.inc.h +RewriteModernObjC.o: Attrs.inc.h +RewriteModernObjC.o: CommentCommandList.inc.h +RewriteModernObjC.o: DeclNodes.inc.h +RewriteModernObjC.o: DiagnosticCommonKinds.inc.h +RewriteModernObjC.o: StmtNodes.inc.h +RewriteModernObjC.po: AttrList.inc.h +RewriteModernObjC.po: Attrs.inc.h +RewriteModernObjC.po: CommentCommandList.inc.h +RewriteModernObjC.po: DeclNodes.inc.h +RewriteModernObjC.po: DiagnosticCommonKinds.inc.h +RewriteModernObjC.po: StmtNodes.inc.h +RewriteObjC.o: AttrList.inc.h +RewriteObjC.o: Attrs.inc.h +RewriteObjC.o: CommentCommandList.inc.h +RewriteObjC.o: DeclNodes.inc.h +RewriteObjC.o: DiagnosticCommonKinds.inc.h +RewriteObjC.o: StmtNodes.inc.h +RewriteObjC.po: AttrList.inc.h +RewriteObjC.po: Attrs.inc.h +RewriteObjC.po: CommentCommandList.inc.h +RewriteObjC.po: DeclNodes.inc.h +RewriteObjC.po: DiagnosticCommonKinds.inc.h +RewriteObjC.po: StmtNodes.inc.h +RewriteTest.o: DiagnosticCommonKinds.inc.h +RewriteTest.po: DiagnosticCommonKinds.inc.h +.endif diff --git a/lib/clang/libllvmirreader/Makefile.depend b/lib/clang/libllvmirreader/Makefile.depend new file mode 100644 index 000000000000..422d37c93228 --- /dev/null +++ b/lib/clang/libllvmirreader/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmmipsdisassembler/Makefile.depend b/lib/clang/libllvmmipsdisassembler/Makefile.depend new file mode 100644 index 000000000000..062877f6c133 --- /dev/null +++ b/lib/clang/libllvmmipsdisassembler/Makefile.depend @@ -0,0 +1,26 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/msun \ + usr.bin/clang/tblgen.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +MipsDisassembler.o: MipsGenDisassemblerTables.inc.h +MipsDisassembler.o: MipsGenInstrInfo.inc.h +MipsDisassembler.o: MipsGenRegisterInfo.inc.h +MipsDisassembler.o: MipsGenSubtargetInfo.inc.h +MipsDisassembler.po: MipsGenDisassemblerTables.inc.h +MipsDisassembler.po: MipsGenInstrInfo.inc.h +MipsDisassembler.po: MipsGenRegisterInfo.inc.h +MipsDisassembler.po: MipsGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmobjcarcopts/Makefile.depend b/lib/clang/libllvmobjcarcopts/Makefile.depend new file mode 100644 index 000000000000..faea27b7f43f --- /dev/null +++ b/lib/clang/libllvmobjcarcopts/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ + include \ + include/xlocale \ + lib/msun \ + usr.bin/clang/tblgen.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +ObjCARCUtil.o: Intrinsics.inc.h +ObjCARCUtil.po: Intrinsics.inc.h +.endif diff --git a/lib/libexecinfo/Makefile.depend b/lib/libexecinfo/Makefile.depend new file mode 100644 index 000000000000..df2384b66d87 --- /dev/null +++ b/lib/libexecinfo/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libelf \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_compat/Makefile.depend b/lib/libiconv_compat/Makefile.depend new file mode 100644 index 000000000000..9547aa79a6f4 --- /dev/null +++ b/lib/libiconv_compat/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libldns/Makefile.depend b/lib/libldns/Makefile.depend new file mode 100644 index 000000000000..4ea74e5d0c67 --- /dev/null +++ b/lib/libldns/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + secure/lib/libcrypto \ + secure/lib/libssl \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libnetbsd/Makefile.depend b/lib/libnetbsd/Makefile.depend new file mode 100644 index 000000000000..8780851ef9b5 --- /dev/null +++ b/lib/libnetbsd/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/libexec/save-entropy/Makefile.depend b/libexec/save-entropy/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/libexec/save-entropy/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/doc/legal/realtek/Makefile.depend b/share/doc/legal/realtek/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/share/doc/legal/realtek/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/tools/regression/file/fcntlflags/Makefile.depend b/tools/regression/file/fcntlflags/Makefile.depend new file mode 100644 index 000000000000..82222e2879c7 --- /dev/null +++ b/tools/regression/file/fcntlflags/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/tools/regression/include/stdatomic/Makefile.depend b/tools/regression/include/stdatomic/Makefile.depend new file mode 100644 index 000000000000..65ce5679ccda --- /dev/null +++ b/tools/regression/include/stdatomic/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/tools/tools/ath/ath_ee_9300_print/Makefile.depend b/tools/tools/ath/ath_ee_9300_print/Makefile.depend new file mode 100644 index 000000000000..d8c68bc7d07b --- /dev/null +++ b/tools/tools/ath/ath_ee_9300_print/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +main.o: opt_ah.h +main.po: opt_ah.h +.endif diff --git a/tools/tools/drm/radeon/mkregtable/Makefile.depend b/tools/tools/drm/radeon/mkregtable/Makefile.depend new file mode 100644 index 000000000000..65ce5679ccda --- /dev/null +++ b/tools/tools/drm/radeon/mkregtable/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/tools/tools/makeroot/Makefile.depend b/tools/tools/makeroot/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/tools/tools/makeroot/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/tools/tools/usbtest/Makefile.depend b/tools/tools/usbtest/Makefile.depend new file mode 100644 index 000000000000..0deec238fc56 --- /dev/null +++ b/tools/tools/usbtest/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libusb \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libapr/Makefile.depend b/usr.bin/svn/lib/libapr/Makefile.depend new file mode 100644 index 000000000000..90e44e224be5 --- /dev/null +++ b/usr.bin/svn/lib/libapr/Makefile.depend @@ -0,0 +1,16 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/arpa \ + include/xlocale \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libapr_util/Makefile.depend b/usr.bin/svn/lib/libapr_util/Makefile.depend new file mode 100644 index 000000000000..4d5963b874a3 --- /dev/null +++ b/usr.bin/svn/lib/libapr_util/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libexpat \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libserf/Makefile.depend b/usr.bin/svn/lib/libserf/Makefile.depend new file mode 100644 index 000000000000..ebe4414f83cc --- /dev/null +++ b/usr.bin/svn/lib/libserf/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssl \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsqlite3/Makefile.depend b/usr.bin/svn/lib/libsqlite3/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/usr.bin/svn/lib/libsqlite3/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_client/Makefile.depend b/usr.bin/svn/lib/libsvn_client/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_client/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_delta/Makefile.depend b/usr.bin/svn/lib/libsvn_delta/Makefile.depend new file mode 100644 index 000000000000..4c8e09daf41d --- /dev/null +++ b/usr.bin/svn/lib/libsvn_delta/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_diff/Makefile.depend b/usr.bin/svn/lib/libsvn_diff/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_diff/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_fs/Makefile.depend b/usr.bin/svn/lib/libsvn_fs/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_fs/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_fs_fs/Makefile.depend b/usr.bin/svn/lib/libsvn_fs_fs/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_fs_fs/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_fs_util/Makefile.depend b/usr.bin/svn/lib/libsvn_fs_util/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_fs_util/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_ra/Makefile.depend b/usr.bin/svn/lib/libsvn_ra/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_ra/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_ra_local/Makefile.depend b/usr.bin/svn/lib/libsvn_ra_local/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_ra_local/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_ra_serf/Makefile.depend b/usr.bin/svn/lib/libsvn_ra_serf/Makefile.depend new file mode 100644 index 000000000000..4d5963b874a3 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_ra_serf/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libexpat \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_ra_svn/Makefile.depend b/usr.bin/svn/lib/libsvn_ra_svn/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_ra_svn/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_repos/Makefile.depend b/usr.bin/svn/lib/libsvn_repos/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_repos/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_subr/Makefile.depend b/usr.bin/svn/lib/libsvn_subr/Makefile.depend new file mode 100644 index 000000000000..dba394dd301c --- /dev/null +++ b/usr.bin/svn/lib/libsvn_subr/Makefile.depend @@ -0,0 +1,17 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libexpat \ + lib/libmagic \ + lib/libz \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/lib/libsvn_wc/Makefile.depend b/usr.bin/svn/lib/libsvn_wc/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_wc/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/svn/Makefile.depend b/usr.bin/svn/svn/Makefile.depend new file mode 100644 index 000000000000..d0700e56d60f --- /dev/null +++ b/usr.bin/svn/svn/Makefile.depend @@ -0,0 +1,42 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libcrypt \ + lib/libexpat \ + lib/libmagic \ + lib/libthr \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssl \ + usr.bin/svn/lib/libapr \ + usr.bin/svn/lib/libapr_util \ + usr.bin/svn/lib/libserf \ + usr.bin/svn/lib/libsqlite3 \ + usr.bin/svn/lib/libsvn_client \ + usr.bin/svn/lib/libsvn_delta \ + usr.bin/svn/lib/libsvn_diff \ + usr.bin/svn/lib/libsvn_fs \ + usr.bin/svn/lib/libsvn_fs_fs \ + usr.bin/svn/lib/libsvn_fs_util \ + usr.bin/svn/lib/libsvn_ra \ + usr.bin/svn/lib/libsvn_ra_local \ + usr.bin/svn/lib/libsvn_ra_serf \ + usr.bin/svn/lib/libsvn_ra_svn \ + usr.bin/svn/lib/libsvn_repos \ + usr.bin/svn/lib/libsvn_subr \ + usr.bin/svn/lib/libsvn_wc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/svnadmin/Makefile.depend b/usr.bin/svn/svnadmin/Makefile.depend new file mode 100644 index 000000000000..78e5746ee960 --- /dev/null +++ b/usr.bin/svn/svnadmin/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libcrypt \ + lib/libexpat \ + lib/libz \ + usr.bin/svn/lib/libapr \ + usr.bin/svn/lib/libapr_util \ + usr.bin/svn/lib/libsqlite3 \ + usr.bin/svn/lib/libsvn_delta \ + usr.bin/svn/lib/libsvn_fs \ + usr.bin/svn/lib/libsvn_fs_fs \ + usr.bin/svn/lib/libsvn_fs_util \ + usr.bin/svn/lib/libsvn_repos \ + usr.bin/svn/lib/libsvn_subr \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/svndumpfilter/Makefile.depend b/usr.bin/svn/svndumpfilter/Makefile.depend new file mode 100644 index 000000000000..78e5746ee960 --- /dev/null +++ b/usr.bin/svn/svndumpfilter/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libcrypt \ + lib/libexpat \ + lib/libz \ + usr.bin/svn/lib/libapr \ + usr.bin/svn/lib/libapr_util \ + usr.bin/svn/lib/libsqlite3 \ + usr.bin/svn/lib/libsvn_delta \ + usr.bin/svn/lib/libsvn_fs \ + usr.bin/svn/lib/libsvn_fs_fs \ + usr.bin/svn/lib/libsvn_fs_util \ + usr.bin/svn/lib/libsvn_repos \ + usr.bin/svn/lib/libsvn_subr \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/svnlook/Makefile.depend b/usr.bin/svn/svnlook/Makefile.depend new file mode 100644 index 000000000000..bac503844946 --- /dev/null +++ b/usr.bin/svn/svnlook/Makefile.depend @@ -0,0 +1,31 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libcrypt \ + lib/libexpat \ + lib/libz \ + usr.bin/svn/lib/libapr \ + usr.bin/svn/lib/libapr_util \ + usr.bin/svn/lib/libsqlite3 \ + usr.bin/svn/lib/libsvn_delta \ + usr.bin/svn/lib/libsvn_diff \ + usr.bin/svn/lib/libsvn_fs \ + usr.bin/svn/lib/libsvn_fs_fs \ + usr.bin/svn/lib/libsvn_fs_util \ + usr.bin/svn/lib/libsvn_repos \ + usr.bin/svn/lib/libsvn_subr \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/svnmucc/Makefile.depend b/usr.bin/svn/svnmucc/Makefile.depend new file mode 100644 index 000000000000..ec3d47e4593a --- /dev/null +++ b/usr.bin/svn/svnmucc/Makefile.depend @@ -0,0 +1,40 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libcrypt \ + lib/libexpat \ + lib/libmagic \ + lib/libthr \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssl \ + usr.bin/svn/lib/libapr \ + usr.bin/svn/lib/libapr_util \ + usr.bin/svn/lib/libserf \ + usr.bin/svn/lib/libsqlite3 \ + usr.bin/svn/lib/libsvn_client \ + usr.bin/svn/lib/libsvn_delta \ + usr.bin/svn/lib/libsvn_fs \ + usr.bin/svn/lib/libsvn_fs_fs \ + usr.bin/svn/lib/libsvn_fs_util \ + usr.bin/svn/lib/libsvn_ra \ + usr.bin/svn/lib/libsvn_ra_local \ + usr.bin/svn/lib/libsvn_ra_serf \ + usr.bin/svn/lib/libsvn_ra_svn \ + usr.bin/svn/lib/libsvn_repos \ + usr.bin/svn/lib/libsvn_subr \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/svnrdump/Makefile.depend b/usr.bin/svn/svnrdump/Makefile.depend new file mode 100644 index 000000000000..d0700e56d60f --- /dev/null +++ b/usr.bin/svn/svnrdump/Makefile.depend @@ -0,0 +1,42 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libcrypt \ + lib/libexpat \ + lib/libmagic \ + lib/libthr \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssl \ + usr.bin/svn/lib/libapr \ + usr.bin/svn/lib/libapr_util \ + usr.bin/svn/lib/libserf \ + usr.bin/svn/lib/libsqlite3 \ + usr.bin/svn/lib/libsvn_client \ + usr.bin/svn/lib/libsvn_delta \ + usr.bin/svn/lib/libsvn_diff \ + usr.bin/svn/lib/libsvn_fs \ + usr.bin/svn/lib/libsvn_fs_fs \ + usr.bin/svn/lib/libsvn_fs_util \ + usr.bin/svn/lib/libsvn_ra \ + usr.bin/svn/lib/libsvn_ra_local \ + usr.bin/svn/lib/libsvn_ra_serf \ + usr.bin/svn/lib/libsvn_ra_svn \ + usr.bin/svn/lib/libsvn_repos \ + usr.bin/svn/lib/libsvn_subr \ + usr.bin/svn/lib/libsvn_wc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/svnserve/Makefile.depend b/usr.bin/svn/svnserve/Makefile.depend new file mode 100644 index 000000000000..ac3b82ceacc5 --- /dev/null +++ b/usr.bin/svn/svnserve/Makefile.depend @@ -0,0 +1,39 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libcrypt \ + lib/libexpat \ + lib/libmagic \ + lib/libthr \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssl \ + usr.bin/svn/lib/libapr \ + usr.bin/svn/lib/libapr_util \ + usr.bin/svn/lib/libserf \ + usr.bin/svn/lib/libsqlite3 \ + usr.bin/svn/lib/libsvn_delta \ + usr.bin/svn/lib/libsvn_fs \ + usr.bin/svn/lib/libsvn_fs_fs \ + usr.bin/svn/lib/libsvn_fs_util \ + usr.bin/svn/lib/libsvn_ra \ + usr.bin/svn/lib/libsvn_ra_local \ + usr.bin/svn/lib/libsvn_ra_serf \ + usr.bin/svn/lib/libsvn_ra_svn \ + usr.bin/svn/lib/libsvn_repos \ + usr.bin/svn/lib/libsvn_subr \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/svnsync/Makefile.depend b/usr.bin/svn/svnsync/Makefile.depend new file mode 100644 index 000000000000..ac3b82ceacc5 --- /dev/null +++ b/usr.bin/svn/svnsync/Makefile.depend @@ -0,0 +1,39 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libcrypt \ + lib/libexpat \ + lib/libmagic \ + lib/libthr \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssl \ + usr.bin/svn/lib/libapr \ + usr.bin/svn/lib/libapr_util \ + usr.bin/svn/lib/libserf \ + usr.bin/svn/lib/libsqlite3 \ + usr.bin/svn/lib/libsvn_delta \ + usr.bin/svn/lib/libsvn_fs \ + usr.bin/svn/lib/libsvn_fs_fs \ + usr.bin/svn/lib/libsvn_fs_util \ + usr.bin/svn/lib/libsvn_ra \ + usr.bin/svn/lib/libsvn_ra_local \ + usr.bin/svn/lib/libsvn_ra_serf \ + usr.bin/svn/lib/libsvn_ra_svn \ + usr.bin/svn/lib/libsvn_repos \ + usr.bin/svn/lib/libsvn_subr \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/svn/svnversion/Makefile.depend b/usr.bin/svn/svnversion/Makefile.depend new file mode 100644 index 000000000000..7d30edf8b5cc --- /dev/null +++ b/usr.bin/svn/svnversion/Makefile.depend @@ -0,0 +1,28 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libcrypt \ + lib/libexpat \ + lib/libz \ + usr.bin/svn/lib/libapr \ + usr.bin/svn/lib/libapr_util \ + usr.bin/svn/lib/libsqlite3 \ + usr.bin/svn/lib/libsvn_delta \ + usr.bin/svn/lib/libsvn_diff \ + usr.bin/svn/lib/libsvn_subr \ + usr.bin/svn/lib/libsvn_wc \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsdconfig/packages/Makefile.depend b/usr.sbin/bsdconfig/packages/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/usr.sbin/bsdconfig/packages/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsdconfig/packages/include/Makefile.depend b/usr.sbin/bsdconfig/packages/include/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/usr.sbin/bsdconfig/packages/include/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsdconfig/share/packages/Makefile.depend b/usr.sbin/bsdconfig/share/packages/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/usr.sbin/bsdconfig/share/packages/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsdinstall/scripts/Makefile.depend b/usr.sbin/bsdinstall/scripts/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/usr.sbin/bsdinstall/scripts/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/bsnmpd/modules/snmp_hast/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_hast/Makefile.depend new file mode 100644 index 000000000000..38dee6b503ec --- /dev/null +++ b/usr.sbin/bsnmpd/modules/snmp_hast/Makefile.depend @@ -0,0 +1,36 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libbsnmp/libbsnmp \ + lib/libc \ + lib/libcompiler_rt \ + lib/libutil \ + usr.sbin/bsnmpd/modules \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +hast_snmp.So: hast_oid.h +hast_snmp.So: hast_tree.h +hast_snmp.po: hast_oid.h +hast_snmp.po: hast_tree.h +hast_tree.So: hast_tree.c +hast_tree.So: hast_tree.h +hast_tree.po: hast_tree.c +hast_tree.po: hast_tree.h +parse.So: parse.c +parse.po: parse.c +token.So: token.c +token.So: y.tab.h +token.po: token.c +token.po: y.tab.h +.endif diff --git a/usr.sbin/pc-sysinstall/examples/Makefile.depend b/usr.sbin/pc-sysinstall/examples/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/usr.sbin/pc-sysinstall/examples/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif From 34b33809b72a545cddfc512b09fed786f3e5b685 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 13 Oct 2013 00:24:00 +0000 Subject: [PATCH 106/228] Updated dependencies --- bin/csh/Makefile.depend | 104 ----- bin/sh/Makefile.depend | 2 - cddl/sbin/zfs/Makefile.depend | 4 + cddl/sbin/zpool/Makefile.depend | 4 + cddl/usr.bin/zinject/Makefile.depend | 6 + cddl/usr.bin/zstreamdump/Makefile.depend | 1 + cddl/usr.bin/ztest/Makefile.depend | 5 + cddl/usr.sbin/zdb/Makefile.depend | 5 + cddl/usr.sbin/zhack/Makefile.depend | 5 + gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 | 14 +- .../groff/font/devX100-12/Makefile.depend | 2 - .../groff/font/devX100/Makefile.depend | 2 - .../groff/font/devX75-12/Makefile.depend | 2 - gnu/usr.bin/groff/font/devX75/Makefile.depend | 2 - kerberos5/lib/libheimipcc/Makefile.depend | 6 + kerberos5/lib/libheimipcs/Makefile.depend | 6 + .../libexec/digest-service/Makefile.depend | 3 + kerberos5/libexec/hprop/Makefile.depend | 3 + kerberos5/libexec/hpropd/Makefile.depend | 3 + .../libexec/ipropd-master/Makefile.depend | 5 + .../libexec/ipropd-slave/Makefile.depend | 5 + kerberos5/libexec/kadmind/Makefile.depend | 3 + kerberos5/libexec/kcm/Makefile.depend | 7 + kerberos5/libexec/kdc/Makefile.depend | 3 + kerberos5/libexec/kdigest/Makefile.depend | 7 + kerberos5/libexec/kfd/Makefile.depend | 6 + .../libexec/kimpersonate/Makefile.depend | 6 + kerberos5/libexec/kpasswdd/Makefile.depend | 5 + kerberos5/usr.bin/hxtool/Makefile.depend | 2 + kerberos5/usr.bin/kadmin/Makefile.depend | 3 + kerberos5/usr.bin/kcc/Makefile.depend | 7 + kerberos5/usr.bin/kdestroy/Makefile.depend | 6 + kerberos5/usr.bin/kf/Makefile.depend | 6 + kerberos5/usr.bin/kgetcred/Makefile.depend | 6 + kerberos5/usr.bin/kinit/Makefile.depend | 5 + kerberos5/usr.bin/kpasswd/Makefile.depend | 4 + kerberos5/usr.bin/ksu/Makefile.depend | 4 + kerberos5/usr.bin/string2key/Makefile.depend | 3 + .../usr.bin/verify_krb5_conf/Makefile.depend | 2 + kerberos5/usr.sbin/iprop-log/Makefile.depend | 8 + kerberos5/usr.sbin/kstash/Makefile.depend | 3 + kerberos5/usr.sbin/ktutil/Makefile.depend | 7 + lib/clang/libclanganalysis/Makefile.depend | 93 ++--- lib/clang/libclangarcmigrate/Makefile.depend | 89 ++--- lib/clang/libclangast/Makefile.depend | 293 +++++++------- lib/clang/libclangbasic/Makefile.depend | 1 + lib/clang/libclangcodegen/Makefile.depend | 100 ++++- lib/clang/libclangdriver/Makefile.depend | 3 + lib/clang/libclangedit/Makefile.depend | 7 +- lib/clang/libclangfrontend/Makefile.depend | 31 +- .../libclangfrontendtool/Makefile.depend | 1 + lib/clang/libclanglex/Makefile.depend | 3 + lib/clang/libclangparse/Makefile.depend | 21 + lib/clang/libclangsema/Makefile.depend | 107 ++++- .../libclangserialization/Makefile.depend | 43 +- .../Makefile.depend | 371 +++++++----------- .../Makefile.depend | 199 +++------- .../Makefile.depend | 13 +- lib/clang/libllvmanalysis/Makefile.depend | 13 +- lib/clang/libllvmarmasmparser/Makefile.depend | 7 +- lib/clang/libllvmarmcodegen/Makefile.depend | 15 + lib/clang/libllvmarmdesc/Makefile.depend | 7 + .../libllvmarmdisassembler/Makefile.depend | 3 +- lib/clang/libllvmarminfo/Makefile.depend | 1 + .../libllvmarminstprinter/Makefile.depend | 1 + lib/clang/libllvmasmprinter/Makefile.depend | 3 + lib/clang/libllvmbitreader/Makefile.depend | 1 + lib/clang/libllvmcodegen/Makefile.depend | 3 + lib/clang/libllvmcore/Makefile.depend | 1 + lib/clang/libllvmdebuginfo/Makefile.depend | 4 +- .../libllvmexecutionengine/Makefile.depend | 4 +- lib/clang/libllvminstcombine/Makefile.depend | 1 + .../libllvminstrumentation/Makefile.depend | 3 + lib/clang/libllvminterpreter/Makefile.depend | 7 +- lib/clang/libllvmipa/Makefile.depend | 3 + lib/clang/libllvmipo/Makefile.depend | 1 + lib/clang/libllvmjit/Makefile.depend | 4 +- .../libllvmmcdisassembler/Makefile.depend | 4 +- lib/clang/libllvmmcjit/Makefile.depend | 4 +- .../libllvmmipsasmparser/Makefile.depend | 1 + lib/clang/libllvmmipscodegen/Makefile.depend | 61 ++- lib/clang/libllvmmipsdesc/Makefile.depend | 5 + lib/clang/libllvmmipsinfo/Makefile.depend | 1 + .../libllvmmipsinstprinter/Makefile.depend | 1 + .../libllvmpowerpccodegen/Makefile.depend | 9 + lib/clang/libllvmpowerpcdesc/Makefile.depend | 1 + lib/clang/libllvmpowerpcinfo/Makefile.depend | 1 + .../libllvmpowerpcinstprinter/Makefile.depend | 1 + lib/clang/libllvmruntimedyld/Makefile.depend | 4 +- lib/clang/libllvmscalaropts/Makefile.depend | 7 +- lib/clang/libllvmselectiondag/Makefile.depend | 1 + .../libllvmtransformutils/Makefile.depend | 3 + lib/clang/libllvmvectorize/Makefile.depend | 7 + lib/clang/libllvmx86asmparser/Makefile.depend | 9 +- lib/clang/libllvmx86codegen/Makefile.depend | 27 +- lib/clang/libllvmx86desc/Makefile.depend | 1 + .../libllvmx86disassembler/Makefile.depend | 3 +- lib/clang/libllvmx86info/Makefile.depend | 1 + .../libllvmx86instprinter/Makefile.depend | 1 + lib/libprocstat/Makefile.depend | 1 + libexec/telnetd/Makefile.depend | 4 + libexec/ulog-helper/Makefile.depend | 1 + pkgs/pseudo/clang/Makefile.depend | 44 ++- sbin/atm/atmconfig/Makefile.depend | 1 + sbin/ccdconfig/Makefile.depend | 2 + sbin/gbde/Makefile.depend | 2 + sbin/gvinum/Makefile.depend | 2 + sbin/hastctl/Makefile.depend | 1 - sbin/hastd/Makefile.depend | 1 - sbin/iscontrol/Makefile.depend | 1 + secure/lib/libssh/Makefile.depend | 2 + secure/libexec/sftp-server/Makefile.depend | 12 + secure/libexec/ssh-keysign/Makefile.depend | 12 + .../libexec/ssh-pkcs11-helper/Makefile.depend | 12 + secure/usr.bin/scp/Makefile.depend | 12 + secure/usr.bin/sftp/Makefile.depend | 12 + secure/usr.bin/ssh-add/Makefile.depend | 12 + secure/usr.bin/ssh-agent/Makefile.depend | 12 + secure/usr.bin/ssh-keygen/Makefile.depend | 12 + secure/usr.bin/ssh-keyscan/Makefile.depend | 12 + secure/usr.bin/ssh/Makefile.depend | 9 + secure/usr.sbin/sshd/Makefile.depend | 9 + share/atf/Makefile.depend | 12 + share/dict/Makefile.depend | 2 - share/doc/IPv6/Makefile.depend | 2 - share/doc/atf/Makefile.depend | 12 + share/doc/legal/intel_ipw/Makefile.depend | 2 - share/doc/legal/intel_iwi/Makefile.depend | 2 - share/doc/legal/intel_iwn/Makefile.depend | 2 - share/doc/legal/intel_wpi/Makefile.depend | 2 - share/doc/llvm/clang/Makefile.depend | 2 - share/dtrace/toolkit/Makefile.depend | 12 + share/examples/atf/Makefile.depend | 12 + share/examples/pf/Makefile.depend | 12 + share/skel/Makefile.depend | 2 - share/snmp/mibs/Makefile.depend | 2 - share/syscons/fonts/Makefile.depend | 2 - share/syscons/keymaps/Makefile.depend | 2 - share/xml/atf/Makefile.depend | 12 + share/xsl/atf/Makefile.depend | 12 + usr.bin/alias/Makefile.depend | 12 + usr.bin/clang/clang/Makefile.depend | 6 +- usr.bin/compile_et/Makefile.depend | 1 + usr.bin/fetch/Makefile.depend | 6 + usr.bin/fstat/Makefile.depend | 1 + usr.bin/gcore/Makefile.depend | 1 + usr.bin/nslookup/Makefile.depend | 3 + usr.bin/nsupdate/Makefile.depend | 3 + usr.bin/procstat/Makefile.depend | 1 + usr.bin/telnet/Makefile.depend | 4 + usr.bin/unzip/Makefile.depend | 4 + usr.bin/vi/Makefile.depend | 3 +- usr.sbin/bluetooth/ath3kfw/Makefile.depend | 1 + .../bsdinstall/distextract/Makefile.depend | 5 + usr.sbin/bsdinstall/distfetch/Makefile.depend | 2 + usr.sbin/bsdinstall/partedit/Makefile.depend | 2 + usr.sbin/bsnmpd/bsnmpd/Makefile.depend | 1 + usr.sbin/gssd/Makefile.depend | 4 + usr.sbin/makefs/Makefile.depend | 2 + usr.sbin/ntp/ntpd/Makefile.depend | 1 + usr.sbin/ntp/ntpdate/Makefile.depend | 1 + .../backend-partmanager/Makefile.depend | 2 - usr.sbin/pc-sysinstall/doc/Makefile.depend | 12 + usr.sbin/pkg/Makefile.depend | 6 + usr.sbin/usbconfig/Makefile.depend | 1 + usr.sbin/wpa/wpa_cli/Makefile.depend | 1 - 166 files changed, 1362 insertions(+), 920 deletions(-) create mode 100644 share/atf/Makefile.depend create mode 100644 share/doc/atf/Makefile.depend create mode 100644 share/dtrace/toolkit/Makefile.depend create mode 100644 share/examples/atf/Makefile.depend create mode 100644 share/examples/pf/Makefile.depend create mode 100644 share/xml/atf/Makefile.depend create mode 100644 share/xsl/atf/Makefile.depend create mode 100644 usr.bin/alias/Makefile.depend create mode 100644 usr.sbin/pc-sysinstall/doc/Makefile.depend diff --git a/bin/csh/Makefile.depend b/bin/csh/Makefile.depend index 84ceca8c32fb..09144cacba33 100644 --- a/bin/csh/Makefile.depend +++ b/bin/csh/Makefile.depend @@ -19,329 +19,225 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree ed.chared.o: ed.defns.h -ed.chared.o: iconv.h ed.chared.o: sh.err.h ed.chared.o: tc.const.h ed.chared.po: ed.defns.h -ed.chared.po: iconv.h ed.chared.po: sh.err.h ed.chared.po: tc.const.h -ed.defns.o: iconv.h ed.defns.o: sh.err.h ed.defns.o: tc.const.h -ed.defns.po: iconv.h ed.defns.po: sh.err.h ed.defns.po: tc.const.h ed.init.o: ed.defns.h -ed.init.o: iconv.h ed.init.o: sh.err.h ed.init.o: tc.const.h ed.init.po: ed.defns.h -ed.init.po: iconv.h ed.init.po: sh.err.h ed.init.po: tc.const.h ed.inputl.o: ed.defns.h -ed.inputl.o: iconv.h ed.inputl.o: sh.err.h ed.inputl.o: tc.const.h ed.inputl.po: ed.defns.h -ed.inputl.po: iconv.h ed.inputl.po: sh.err.h ed.inputl.po: tc.const.h -ed.refresh.o: iconv.h ed.refresh.o: sh.err.h ed.refresh.o: tc.const.h -ed.refresh.po: iconv.h ed.refresh.po: sh.err.h ed.refresh.po: tc.const.h ed.screen.o: ed.defns.h -ed.screen.o: iconv.h ed.screen.o: sh.err.h ed.screen.o: tc.const.h ed.screen.po: ed.defns.h -ed.screen.po: iconv.h ed.screen.po: sh.err.h ed.screen.po: tc.const.h -ed.term.o: iconv.h ed.term.o: sh.err.h ed.term.o: tc.const.h -ed.term.po: iconv.h ed.term.po: sh.err.h ed.term.po: tc.const.h ed.xmap.o: ed.defns.h -ed.xmap.o: iconv.h ed.xmap.o: sh.err.h ed.xmap.o: tc.const.h ed.xmap.po: ed.defns.h -ed.xmap.po: iconv.h ed.xmap.po: sh.err.h ed.xmap.po: tc.const.h -glob.o: iconv.h glob.o: sh.err.h glob.o: tc.const.h -glob.po: iconv.h glob.po: sh.err.h glob.po: tc.const.h -iconv_stub.o: iconv.h -iconv_stub.po: iconv.h -mi.termios.o: iconv.h mi.termios.o: sh.err.h mi.termios.o: tc.const.h -mi.termios.po: iconv.h mi.termios.po: sh.err.h mi.termios.po: tc.const.h -sh.char.o: iconv.h sh.char.o: sh.err.h sh.char.o: tc.const.h -sh.char.po: iconv.h sh.char.po: sh.err.h sh.char.po: tc.const.h -sh.dir.o: iconv.h sh.dir.o: sh.err.h sh.dir.o: tc.const.h -sh.dir.po: iconv.h sh.dir.po: sh.err.h sh.dir.po: tc.const.h -sh.dol.o: iconv.h sh.dol.o: sh.err.h sh.dol.o: tc.const.h -sh.dol.po: iconv.h sh.dol.po: sh.err.h sh.dol.po: tc.const.h -sh.err.o: iconv.h sh.err.o: sh.err.h sh.err.o: tc.const.h -sh.err.po: iconv.h sh.err.po: sh.err.h sh.err.po: tc.const.h -sh.exec.o: iconv.h sh.exec.o: sh.err.h sh.exec.o: tc.const.h -sh.exec.po: iconv.h sh.exec.po: sh.err.h sh.exec.po: tc.const.h -sh.exp.o: iconv.h sh.exp.o: sh.err.h sh.exp.o: tc.const.h -sh.exp.po: iconv.h sh.exp.po: sh.err.h sh.exp.po: tc.const.h -sh.file.o: iconv.h sh.file.o: sh.err.h sh.file.o: tc.const.h -sh.file.po: iconv.h sh.file.po: sh.err.h sh.file.po: tc.const.h -sh.func.o: iconv.h sh.func.o: sh.err.h sh.func.o: tc.const.h -sh.func.po: iconv.h sh.func.po: sh.err.h sh.func.po: tc.const.h -sh.glob.o: iconv.h sh.glob.o: sh.err.h sh.glob.o: tc.const.h -sh.glob.po: iconv.h sh.glob.po: sh.err.h sh.glob.po: tc.const.h -sh.hist.o: iconv.h sh.hist.o: sh.err.h sh.hist.o: tc.const.h -sh.hist.po: iconv.h sh.hist.po: sh.err.h sh.hist.po: tc.const.h -sh.init.o: iconv.h sh.init.o: sh.err.h sh.init.o: tc.const.h -sh.init.po: iconv.h sh.init.po: sh.err.h sh.init.po: tc.const.h -sh.lex.o: iconv.h sh.lex.o: sh.err.h sh.lex.o: tc.const.h -sh.lex.po: iconv.h sh.lex.po: sh.err.h sh.lex.po: tc.const.h -sh.misc.o: iconv.h sh.misc.o: sh.err.h sh.misc.o: tc.const.h -sh.misc.po: iconv.h sh.misc.po: sh.err.h sh.misc.po: tc.const.h -sh.o: iconv.h sh.o: sh.err.h sh.o: tc.const.h -sh.parse.o: iconv.h sh.parse.o: sh.err.h sh.parse.o: tc.const.h -sh.parse.po: iconv.h sh.parse.po: sh.err.h sh.parse.po: tc.const.h -sh.po: iconv.h sh.po: sh.err.h sh.po: tc.const.h -sh.print.o: iconv.h sh.print.o: sh.err.h sh.print.o: tc.const.h -sh.print.po: iconv.h sh.print.po: sh.err.h sh.print.po: tc.const.h -sh.proc.o: iconv.h sh.proc.o: sh.err.h sh.proc.o: tc.const.h -sh.proc.po: iconv.h sh.proc.po: sh.err.h sh.proc.po: tc.const.h -sh.sem.o: iconv.h sh.sem.o: sh.err.h sh.sem.o: tc.const.h -sh.sem.po: iconv.h sh.sem.po: sh.err.h sh.sem.po: tc.const.h -sh.set.o: iconv.h sh.set.o: sh.err.h sh.set.o: tc.const.h -sh.set.po: iconv.h sh.set.po: sh.err.h sh.set.po: tc.const.h -sh.time.o: iconv.h sh.time.o: sh.err.h sh.time.o: tc.const.h -sh.time.po: iconv.h sh.time.po: sh.err.h sh.time.po: tc.const.h -tc.alloc.o: iconv.h tc.alloc.o: sh.err.h tc.alloc.o: tc.const.h -tc.alloc.po: iconv.h tc.alloc.po: sh.err.h tc.alloc.po: tc.const.h tc.bind.o: ed.defns.h -tc.bind.o: iconv.h tc.bind.o: sh.err.h tc.bind.o: tc.const.h tc.bind.po: ed.defns.h -tc.bind.po: iconv.h tc.bind.po: sh.err.h tc.bind.po: tc.const.h -tc.const.o: iconv.h tc.const.o: sh.err.h tc.const.o: tc.const.h -tc.const.po: iconv.h tc.const.po: sh.err.h tc.const.po: tc.const.h -tc.defs.o: iconv.h tc.defs.o: sh.err.h tc.defs.o: tc.const.h tc.defs.o: tc.defs.c -tc.defs.po: iconv.h tc.defs.po: sh.err.h tc.defs.po: tc.const.h tc.defs.po: tc.defs.c -tc.disc.o: iconv.h tc.disc.o: sh.err.h tc.disc.o: tc.const.h -tc.disc.po: iconv.h tc.disc.po: sh.err.h tc.disc.po: tc.const.h tc.func.o: ed.defns.h -tc.func.o: iconv.h tc.func.o: sh.err.h tc.func.o: tc.const.h tc.func.po: ed.defns.h -tc.func.po: iconv.h tc.func.po: sh.err.h tc.func.po: tc.const.h -tc.nls.o: iconv.h tc.nls.o: sh.err.h tc.nls.o: tc.const.h -tc.nls.po: iconv.h tc.nls.po: sh.err.h tc.nls.po: tc.const.h tc.os.o: ed.defns.h -tc.os.o: iconv.h tc.os.o: sh.err.h tc.os.o: tc.const.h tc.os.po: ed.defns.h -tc.os.po: iconv.h tc.os.po: sh.err.h tc.os.po: tc.const.h -tc.printf.o: iconv.h tc.printf.o: sh.err.h tc.printf.o: tc.const.h -tc.printf.po: iconv.h tc.printf.po: sh.err.h tc.printf.po: tc.const.h -tc.prompt.o: iconv.h tc.prompt.o: sh.err.h tc.prompt.o: tc.const.h -tc.prompt.po: iconv.h tc.prompt.po: sh.err.h tc.prompt.po: tc.const.h -tc.sched.o: iconv.h tc.sched.o: sh.err.h tc.sched.o: tc.const.h -tc.sched.po: iconv.h tc.sched.po: sh.err.h tc.sched.po: tc.const.h -tc.sig.o: iconv.h tc.sig.o: sh.err.h tc.sig.o: tc.const.h -tc.sig.po: iconv.h tc.sig.po: sh.err.h tc.sig.po: tc.const.h -tc.str.o: iconv.h tc.str.o: sh.err.h tc.str.o: tc.const.h -tc.str.po: iconv.h tc.str.po: sh.err.h tc.str.po: tc.const.h -tc.vers.o: iconv.h tc.vers.o: sh.err.h tc.vers.o: tc.const.h -tc.vers.po: iconv.h tc.vers.po: sh.err.h tc.vers.po: tc.const.h -tc.who.o: iconv.h tc.who.o: sh.err.h tc.who.o: tc.const.h -tc.who.po: iconv.h tc.who.po: sh.err.h tc.who.po: tc.const.h -tw.color.o: iconv.h tw.color.o: sh.err.h tw.color.o: tc.const.h -tw.color.po: iconv.h tw.color.po: sh.err.h tw.color.po: tc.const.h -tw.comp.o: iconv.h tw.comp.o: sh.err.h tw.comp.o: tc.const.h -tw.comp.po: iconv.h tw.comp.po: sh.err.h tw.comp.po: tc.const.h -tw.help.o: iconv.h tw.help.o: sh.err.h tw.help.o: tc.const.h -tw.help.po: iconv.h tw.help.po: sh.err.h tw.help.po: tc.const.h -tw.init.o: iconv.h tw.init.o: sh.err.h tw.init.o: tc.const.h -tw.init.po: iconv.h tw.init.po: sh.err.h tw.init.po: tc.const.h -tw.parse.o: iconv.h tw.parse.o: sh.err.h tw.parse.o: tc.const.h -tw.parse.po: iconv.h tw.parse.po: sh.err.h tw.parse.po: tc.const.h -tw.spell.o: iconv.h tw.spell.o: sh.err.h tw.spell.o: tc.const.h -tw.spell.po: iconv.h tw.spell.po: sh.err.h tw.spell.po: tc.const.h .endif diff --git a/bin/sh/Makefile.depend b/bin/sh/Makefile.depend index 7841ce0b8d05..1ce8bcc32cea 100644 --- a/bin/sh/Makefile.depend +++ b/bin/sh/Makefile.depend @@ -53,8 +53,6 @@ expand.po: nodes.h expand.po: syntax.h histedit.o: builtins.h histedit.po: builtins.h -init.o: init.c -init.po: init.c input.o: syntax.h input.po: syntax.h jobs.o: builtins.h diff --git a/cddl/sbin/zfs/Makefile.depend b/cddl/sbin/zfs/Makefile.depend index 713889f58aee..ea888b8dd98f 100644 --- a/cddl/sbin/zfs/Makefile.depend +++ b/cddl/sbin/zfs/Makefile.depend @@ -14,8 +14,12 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ lib/libgeom \ lib/libjail \ + lib/libmd \ + lib/libsbuf \ + lib/libthr \ lib/libutil \ lib/msun \ diff --git a/cddl/sbin/zpool/Makefile.depend b/cddl/sbin/zpool/Makefile.depend index 29ad8ef20352..21820009e110 100644 --- a/cddl/sbin/zpool/Makefile.depend +++ b/cddl/sbin/zpool/Makefile.depend @@ -15,7 +15,11 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ lib/libgeom \ + lib/libmd \ + lib/libsbuf \ + lib/libthr \ lib/libutil \ lib/msun \ diff --git a/cddl/usr.bin/zinject/Makefile.depend b/cddl/usr.bin/zinject/Makefile.depend index f3c17d06268f..866f4dfca128 100644 --- a/cddl/usr.bin/zinject/Makefile.depend +++ b/cddl/usr.bin/zinject/Makefile.depend @@ -15,7 +15,13 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ lib/libgeom \ + lib/libmd \ + lib/libsbuf \ + lib/libthr \ + lib/libutil \ + lib/libz \ lib/msun \ diff --git a/cddl/usr.bin/zstreamdump/Makefile.depend b/cddl/usr.bin/zstreamdump/Makefile.depend index 9aedb23c6ed1..7b76f1bf9ac6 100644 --- a/cddl/usr.bin/zstreamdump/Makefile.depend +++ b/cddl/usr.bin/zstreamdump/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libmd \ lib/libthr \ lib/libz \ lib/msun \ diff --git a/cddl/usr.bin/ztest/Makefile.depend b/cddl/usr.bin/ztest/Makefile.depend index 6d5095711643..d6ce1e90a61c 100644 --- a/cddl/usr.bin/ztest/Makefile.depend +++ b/cddl/usr.bin/ztest/Makefile.depend @@ -16,8 +16,13 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ lib/libgeom \ + lib/libmd \ + lib/libsbuf \ lib/libthr \ + lib/libutil \ + lib/libz \ lib/msun \ diff --git a/cddl/usr.sbin/zdb/Makefile.depend b/cddl/usr.sbin/zdb/Makefile.depend index 05444d4717f7..866f4dfca128 100644 --- a/cddl/usr.sbin/zdb/Makefile.depend +++ b/cddl/usr.sbin/zdb/Makefile.depend @@ -15,8 +15,13 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ lib/libgeom \ + lib/libmd \ + lib/libsbuf \ lib/libthr \ + lib/libutil \ + lib/libz \ lib/msun \ diff --git a/cddl/usr.sbin/zhack/Makefile.depend b/cddl/usr.sbin/zhack/Makefile.depend index 05444d4717f7..866f4dfca128 100644 --- a/cddl/usr.sbin/zhack/Makefile.depend +++ b/cddl/usr.sbin/zhack/Makefile.depend @@ -15,8 +15,13 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ lib/libgeom \ + lib/libmd \ + lib/libsbuf \ lib/libthr \ + lib/libutil \ + lib/libz \ lib/msun \ diff --git a/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 b/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 index 17e8178fb4cc..2517bc1953ef 100644 --- a/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 +++ b/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 @@ -434,14 +434,12 @@ frame-base.o: xm.h frame-base.po: nm.h frame-base.po: tm.h frame-base.po: xm.h -frame-unwind-kluge.o: frame-unwind-kluge.c -frame-unwind-kluge.o: nm.h -frame-unwind-kluge.o: tm.h -frame-unwind-kluge.o: xm.h -frame-unwind-kluge.po: frame-unwind-kluge.c -frame-unwind-kluge.po: nm.h -frame-unwind-kluge.po: tm.h -frame-unwind-kluge.po: xm.h +frame-unwind.o: nm.h +frame-unwind.o: tm.h +frame-unwind.o: xm.h +frame-unwind.po: nm.h +frame-unwind.po: tm.h +frame-unwind.po: xm.h frame.o: nm.h frame.o: tm.h frame.o: xm.h diff --git a/gnu/usr.bin/groff/font/devX100-12/Makefile.depend b/gnu/usr.bin/groff/font/devX100-12/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devX100-12/Makefile.depend +++ b/gnu/usr.bin/groff/font/devX100-12/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devX100/Makefile.depend b/gnu/usr.bin/groff/font/devX100/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devX100/Makefile.depend +++ b/gnu/usr.bin/groff/font/devX100/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devX75-12/Makefile.depend b/gnu/usr.bin/groff/font/devX75-12/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devX75-12/Makefile.depend +++ b/gnu/usr.bin/groff/font/devX75-12/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devX75/Makefile.depend b/gnu/usr.bin/groff/font/devX75/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/gnu/usr.bin/groff/font/devX75/Makefile.depend +++ b/gnu/usr.bin/groff/font/devX75/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/kerberos5/lib/libheimipcc/Makefile.depend b/kerberos5/lib/libheimipcc/Makefile.depend index db82c43882fb..120f352c3920 100644 --- a/kerberos5/lib/libheimipcc/Makefile.depend +++ b/kerberos5/lib/libheimipcc/Makefile.depend @@ -3,11 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libthr \ .include diff --git a/kerberos5/lib/libheimipcs/Makefile.depend b/kerberos5/lib/libheimipcs/Makefile.depend index ef25c4e6088b..7e91e8acea5a 100644 --- a/kerberos5/lib/libheimipcs/Makefile.depend +++ b/kerberos5/lib/libheimipcs/Makefile.depend @@ -3,12 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libthr \ .include diff --git a/kerberos5/libexec/digest-service/Makefile.depend b/kerberos5/libexec/digest-service/Makefile.depend index 547f3d1d7e23..898ac2e02ce8 100644 --- a/kerberos5/libexec/digest-service/Makefile.depend +++ b/kerberos5/libexec/digest-service/Makefile.depend @@ -10,8 +10,10 @@ DIRDEPS = \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimipcs \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkdc \ kerberos5/lib/libkrb5 \ @@ -23,6 +25,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/hprop/Makefile.depend b/kerberos5/libexec/hprop/Makefile.depend index fcc6c0e0a3ba..26bea350cb0d 100644 --- a/kerberos5/libexec/hprop/Makefile.depend +++ b/kerberos5/libexec/hprop/Makefile.depend @@ -10,7 +10,9 @@ DIRDEPS = \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkadm5clnt \ kerberos5/lib/libkrb5 \ @@ -22,6 +24,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/hpropd/Makefile.depend b/kerberos5/libexec/hpropd/Makefile.depend index 67b8878c99c3..053da8cc1e3a 100644 --- a/kerberos5/libexec/hpropd/Makefile.depend +++ b/kerberos5/libexec/hpropd/Makefile.depend @@ -10,7 +10,9 @@ DIRDEPS = \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ @@ -21,6 +23,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/ipropd-master/Makefile.depend b/kerberos5/libexec/ipropd-master/Makefile.depend index e3775f6db14f..d204f959c357 100644 --- a/kerberos5/libexec/ipropd-master/Makefile.depend +++ b/kerberos5/libexec/ipropd-master/Makefile.depend @@ -9,16 +9,21 @@ DIRDEPS = \ include/xlocale \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkadm5srv \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/ipropd-slave/Makefile.depend b/kerberos5/libexec/ipropd-slave/Makefile.depend index cb6ce21977c6..c55271d163dc 100644 --- a/kerberos5/libexec/ipropd-slave/Makefile.depend +++ b/kerberos5/libexec/ipropd-slave/Makefile.depend @@ -9,16 +9,21 @@ DIRDEPS = \ include/xlocale \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkadm5srv \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kadmind/Makefile.depend b/kerberos5/libexec/kadmind/Makefile.depend index 2a175991b728..5c380b2df6ac 100644 --- a/kerberos5/libexec/kadmind/Makefile.depend +++ b/kerberos5/libexec/kadmind/Makefile.depend @@ -11,6 +11,8 @@ DIRDEPS = \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkadm5clnt \ kerberos5/lib/libkadm5srv \ @@ -24,6 +26,7 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ + lib/libthr \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kcm/Makefile.depend b/kerberos5/libexec/kcm/Makefile.depend index e41f376dc0dd..b9d7a6d3f8c8 100644 --- a/kerberos5/libexec/kcm/Makefile.depend +++ b/kerberos5/libexec/kcm/Makefile.depend @@ -9,15 +9,22 @@ DIRDEPS = \ include/xlocale \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimipcs \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libheimsqlite \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kdc/Makefile.depend b/kerberos5/libexec/kdc/Makefile.depend index a053454f262a..fe889f155981 100644 --- a/kerberos5/libexec/kdc/Makefile.depend +++ b/kerberos5/libexec/kdc/Makefile.depend @@ -10,7 +10,9 @@ DIRDEPS = \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkdc \ kerberos5/lib/libkrb5 \ @@ -22,6 +24,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kdigest/Makefile.depend b/kerberos5/libexec/kdigest/Makefile.depend index 3a7824117c3e..05ab28f57f02 100644 --- a/kerberos5/libexec/kdigest/Makefile.depend +++ b/kerberos5/libexec/kdigest/Makefile.depend @@ -8,17 +8,24 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkafs5 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libsl \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ + lib/libthr \ + lib/ncurses/ncurses \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kfd/Makefile.depend b/kerberos5/libexec/kfd/Makefile.depend index e6b860e5da68..94c1eaa6520d 100644 --- a/kerberos5/libexec/kfd/Makefile.depend +++ b/kerberos5/libexec/kfd/Makefile.depend @@ -8,13 +8,19 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kimpersonate/Makefile.depend b/kerberos5/libexec/kimpersonate/Makefile.depend index bd55a19741e0..8bbf5d756990 100644 --- a/kerberos5/libexec/kimpersonate/Makefile.depend +++ b/kerberos5/libexec/kimpersonate/Makefile.depend @@ -8,15 +8,21 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkafs5 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ secure/lib/libcrypto \ diff --git a/kerberos5/libexec/kpasswdd/Makefile.depend b/kerberos5/libexec/kpasswdd/Makefile.depend index 1aaf85697a3f..7d45ea20def9 100644 --- a/kerberos5/libexec/kpasswdd/Makefile.depend +++ b/kerberos5/libexec/kpasswdd/Makefile.depend @@ -9,17 +9,22 @@ DIRDEPS = \ include/xlocale \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkadm5clnt \ kerberos5/lib/libkadm5srv \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/hxtool/Makefile.depend b/kerberos5/usr.bin/hxtool/Makefile.depend index 812660b4a08a..5f5b0c89c678 100644 --- a/kerberos5/usr.bin/hxtool/Makefile.depend +++ b/kerberos5/usr.bin/hxtool/Makefile.depend @@ -12,12 +12,14 @@ DIRDEPS = \ kerberos5/lib/libroken \ kerberos5/lib/libsl \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ + lib/ncurses/ncurses \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kadmin/Makefile.depend b/kerberos5/usr.bin/kadmin/Makefile.depend index edbc6a3bdc8d..378e201cd505 100644 --- a/kerberos5/usr.bin/kadmin/Makefile.depend +++ b/kerberos5/usr.bin/kadmin/Makefile.depend @@ -10,6 +10,8 @@ DIRDEPS = \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkadm5clnt \ kerberos5/lib/libkadm5srv \ @@ -24,6 +26,7 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ + lib/libthr \ lib/libutil \ lib/ncurses/ncurses \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kcc/Makefile.depend b/kerberos5/usr.bin/kcc/Makefile.depend index 50a9a43eb8aa..3a3a863a001e 100644 --- a/kerberos5/usr.bin/kcc/Makefile.depend +++ b/kerberos5/usr.bin/kcc/Makefile.depend @@ -8,17 +8,24 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkafs5 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libsl \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ + lib/libthr \ + lib/ncurses/ncurses \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kdestroy/Makefile.depend b/kerberos5/usr.bin/kdestroy/Makefile.depend index bd55a19741e0..8bbf5d756990 100644 --- a/kerberos5/usr.bin/kdestroy/Makefile.depend +++ b/kerberos5/usr.bin/kdestroy/Makefile.depend @@ -8,15 +8,21 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkafs5 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kf/Makefile.depend b/kerberos5/usr.bin/kf/Makefile.depend index e6b860e5da68..94c1eaa6520d 100644 --- a/kerberos5/usr.bin/kf/Makefile.depend +++ b/kerberos5/usr.bin/kf/Makefile.depend @@ -8,13 +8,19 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kgetcred/Makefile.depend b/kerberos5/usr.bin/kgetcred/Makefile.depend index 24f2774f76cb..6ac7a46f3ff8 100644 --- a/kerberos5/usr.bin/kgetcred/Makefile.depend +++ b/kerberos5/usr.bin/kgetcred/Makefile.depend @@ -8,14 +8,20 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkafs5 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kinit/Makefile.depend b/kerberos5/usr.bin/kinit/Makefile.depend index b268a2c7e401..8bbf5d756990 100644 --- a/kerberos5/usr.bin/kinit/Makefile.depend +++ b/kerberos5/usr.bin/kinit/Makefile.depend @@ -8,16 +8,21 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkafs5 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/kpasswd/Makefile.depend b/kerberos5/usr.bin/kpasswd/Makefile.depend index faa19fee1738..693ae4b476bd 100644 --- a/kerberos5/usr.bin/kpasswd/Makefile.depend +++ b/kerberos5/usr.bin/kpasswd/Makefile.depend @@ -8,15 +8,19 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/ksu/Makefile.depend b/kerberos5/usr.bin/ksu/Makefile.depend index 067c51cf6a87..6ac7a46f3ff8 100644 --- a/kerberos5/usr.bin/ksu/Makefile.depend +++ b/kerberos5/usr.bin/ksu/Makefile.depend @@ -8,16 +8,20 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libhx509 \ kerberos5/lib/libkafs5 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/string2key/Makefile.depend b/kerberos5/usr.bin/string2key/Makefile.depend index 67b8878c99c3..053da8cc1e3a 100644 --- a/kerberos5/usr.bin/string2key/Makefile.depend +++ b/kerberos5/usr.bin/string2key/Makefile.depend @@ -10,7 +10,9 @@ DIRDEPS = \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ @@ -21,6 +23,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend index e90fd2405104..6ac7a46f3ff8 100644 --- a/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend +++ b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ kerberos5/lib/libasn1 \ kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libhx509 \ kerberos5/lib/libkafs5 \ kerberos5/lib/libkrb5 \ @@ -20,6 +21,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.sbin/iprop-log/Makefile.depend b/kerberos5/usr.sbin/iprop-log/Makefile.depend index 17672cd5abc1..adaaf0433614 100644 --- a/kerberos5/usr.sbin/iprop-log/Makefile.depend +++ b/kerberos5/usr.sbin/iprop-log/Makefile.depend @@ -9,16 +9,24 @@ DIRDEPS = \ include/xlocale \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libheimsqlite \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkadm5srv \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libsl \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ + lib/libthr \ + lib/ncurses/ncurses \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.sbin/kstash/Makefile.depend b/kerberos5/usr.sbin/kstash/Makefile.depend index 67b8878c99c3..053da8cc1e3a 100644 --- a/kerberos5/usr.sbin/kstash/Makefile.depend +++ b/kerberos5/usr.sbin/kstash/Makefile.depend @@ -10,7 +10,9 @@ DIRDEPS = \ kerberos5/lib/libasn1 \ kerberos5/lib/libhdb \ kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ @@ -21,6 +23,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libthr \ lib/libutil \ secure/lib/libcrypto \ diff --git a/kerberos5/usr.sbin/ktutil/Makefile.depend b/kerberos5/usr.sbin/ktutil/Makefile.depend index ecb965b3cb6a..9c7835106721 100644 --- a/kerberos5/usr.sbin/ktutil/Makefile.depend +++ b/kerberos5/usr.sbin/ktutil/Makefile.depend @@ -8,16 +8,23 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkadm5clnt \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libsl \ kerberos5/lib/libvers \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ + lib/libthr \ + lib/ncurses/ncurses \ secure/lib/libcrypto \ diff --git a/lib/clang/libclanganalysis/Makefile.depend b/lib/clang/libclanganalysis/Makefile.depend index 45402951915d..c50852eb86f5 100644 --- a/lib/clang/libclanganalysis/Makefile.depend +++ b/lib/clang/libclanganalysis/Makefile.depend @@ -8,170 +8,125 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -AnalysisDeclContext.o: AttrList.inc.h -AnalysisDeclContext.o: Attrs.inc.h +AnalysisDeclContext.o: CommentCommandList.inc.h AnalysisDeclContext.o: DeclNodes.inc.h AnalysisDeclContext.o: DiagnosticCommonKinds.inc.h AnalysisDeclContext.o: StmtNodes.inc.h -AnalysisDeclContext.po: AttrList.inc.h -AnalysisDeclContext.po: Attrs.inc.h +AnalysisDeclContext.po: CommentCommandList.inc.h AnalysisDeclContext.po: DeclNodes.inc.h AnalysisDeclContext.po: DiagnosticCommonKinds.inc.h AnalysisDeclContext.po: StmtNodes.inc.h -BodyFarm.o: AttrList.inc.h -BodyFarm.o: Attrs.inc.h +BodyFarm.o: CommentCommandList.inc.h BodyFarm.o: DeclNodes.inc.h BodyFarm.o: DiagnosticCommonKinds.inc.h BodyFarm.o: StmtNodes.inc.h -BodyFarm.po: AttrList.inc.h -BodyFarm.po: Attrs.inc.h +BodyFarm.po: CommentCommandList.inc.h BodyFarm.po: DeclNodes.inc.h BodyFarm.po: DiagnosticCommonKinds.inc.h BodyFarm.po: StmtNodes.inc.h CFG.o: AttrList.inc.h CFG.o: Attrs.inc.h +CFG.o: CommentCommandList.inc.h CFG.o: DeclNodes.inc.h CFG.o: DiagnosticCommonKinds.inc.h CFG.o: StmtNodes.inc.h CFG.po: AttrList.inc.h CFG.po: Attrs.inc.h +CFG.po: CommentCommandList.inc.h CFG.po: DeclNodes.inc.h CFG.po: DiagnosticCommonKinds.inc.h CFG.po: StmtNodes.inc.h -CFGReachabilityAnalysis.o: AttrList.inc.h -CFGReachabilityAnalysis.o: Attrs.inc.h -CFGReachabilityAnalysis.o: DiagnosticCommonKinds.inc.h CFGReachabilityAnalysis.o: StmtNodes.inc.h -CFGReachabilityAnalysis.po: AttrList.inc.h -CFGReachabilityAnalysis.po: Attrs.inc.h -CFGReachabilityAnalysis.po: DiagnosticCommonKinds.inc.h CFGReachabilityAnalysis.po: StmtNodes.inc.h -CFGStmtMap.o: AttrList.inc.h -CFGStmtMap.o: Attrs.inc.h -CFGStmtMap.o: DiagnosticCommonKinds.inc.h CFGStmtMap.o: StmtNodes.inc.h -CFGStmtMap.po: AttrList.inc.h -CFGStmtMap.po: Attrs.inc.h -CFGStmtMap.po: DiagnosticCommonKinds.inc.h CFGStmtMap.po: StmtNodes.inc.h -CallGraph.o: AttrList.inc.h -CallGraph.o: Attrs.inc.h +CallGraph.o: CommentCommandList.inc.h CallGraph.o: DeclNodes.inc.h CallGraph.o: DiagnosticCommonKinds.inc.h CallGraph.o: StmtNodes.inc.h -CallGraph.po: AttrList.inc.h -CallGraph.po: Attrs.inc.h +CallGraph.po: CommentCommandList.inc.h CallGraph.po: DeclNodes.inc.h CallGraph.po: DiagnosticCommonKinds.inc.h CallGraph.po: StmtNodes.inc.h -CocoaConventions.o: AttrList.inc.h -CocoaConventions.o: Attrs.inc.h CocoaConventions.o: DeclNodes.inc.h CocoaConventions.o: DiagnosticCommonKinds.inc.h -CocoaConventions.po: AttrList.inc.h -CocoaConventions.po: Attrs.inc.h CocoaConventions.po: DeclNodes.inc.h CocoaConventions.po: DiagnosticCommonKinds.inc.h -Dominators.o: AttrList.inc.h -Dominators.o: Attrs.inc.h Dominators.o: DeclNodes.inc.h Dominators.o: DiagnosticCommonKinds.inc.h Dominators.o: StmtNodes.inc.h -Dominators.po: AttrList.inc.h -Dominators.po: Attrs.inc.h Dominators.po: DeclNodes.inc.h Dominators.po: DiagnosticCommonKinds.inc.h Dominators.po: StmtNodes.inc.h -FormatString.o: AttrList.inc.h -FormatString.o: Attrs.inc.h +FormatString.o: CommentCommandList.inc.h FormatString.o: DeclNodes.inc.h FormatString.o: DiagnosticCommonKinds.inc.h -FormatString.po: AttrList.inc.h -FormatString.po: Attrs.inc.h +FormatString.o: StmtNodes.inc.h +FormatString.po: CommentCommandList.inc.h FormatString.po: DeclNodes.inc.h FormatString.po: DiagnosticCommonKinds.inc.h -LiveVariables.o: AttrList.inc.h -LiveVariables.o: Attrs.inc.h +FormatString.po: StmtNodes.inc.h LiveVariables.o: DeclNodes.inc.h LiveVariables.o: DiagnosticCommonKinds.inc.h LiveVariables.o: StmtNodes.inc.h -LiveVariables.po: AttrList.inc.h -LiveVariables.po: Attrs.inc.h LiveVariables.po: DeclNodes.inc.h LiveVariables.po: DiagnosticCommonKinds.inc.h LiveVariables.po: StmtNodes.inc.h -ObjCNoReturn.o: AttrList.inc.h -ObjCNoReturn.o: Attrs.inc.h +ObjCNoReturn.o: CommentCommandList.inc.h ObjCNoReturn.o: DeclNodes.inc.h ObjCNoReturn.o: DiagnosticCommonKinds.inc.h ObjCNoReturn.o: StmtNodes.inc.h -ObjCNoReturn.po: AttrList.inc.h -ObjCNoReturn.po: Attrs.inc.h +ObjCNoReturn.po: CommentCommandList.inc.h ObjCNoReturn.po: DeclNodes.inc.h ObjCNoReturn.po: DiagnosticCommonKinds.inc.h ObjCNoReturn.po: StmtNodes.inc.h -PostOrderCFGView.o: AttrList.inc.h -PostOrderCFGView.o: Attrs.inc.h PostOrderCFGView.o: DeclNodes.inc.h PostOrderCFGView.o: DiagnosticCommonKinds.inc.h PostOrderCFGView.o: StmtNodes.inc.h -PostOrderCFGView.po: AttrList.inc.h -PostOrderCFGView.po: Attrs.inc.h PostOrderCFGView.po: DeclNodes.inc.h PostOrderCFGView.po: DiagnosticCommonKinds.inc.h PostOrderCFGView.po: StmtNodes.inc.h -PrintfFormatString.o: AttrList.inc.h -PrintfFormatString.o: Attrs.inc.h +PrintfFormatString.o: CommentCommandList.inc.h PrintfFormatString.o: DeclNodes.inc.h PrintfFormatString.o: DiagnosticCommonKinds.inc.h -PrintfFormatString.po: AttrList.inc.h -PrintfFormatString.po: Attrs.inc.h +PrintfFormatString.o: StmtNodes.inc.h +PrintfFormatString.po: CommentCommandList.inc.h PrintfFormatString.po: DeclNodes.inc.h PrintfFormatString.po: DiagnosticCommonKinds.inc.h -ProgramPoint.o: AttrList.inc.h -ProgramPoint.o: Attrs.inc.h +PrintfFormatString.po: StmtNodes.inc.h ProgramPoint.o: DeclNodes.inc.h ProgramPoint.o: DiagnosticCommonKinds.inc.h ProgramPoint.o: StmtNodes.inc.h -ProgramPoint.po: AttrList.inc.h -ProgramPoint.po: Attrs.inc.h ProgramPoint.po: DeclNodes.inc.h ProgramPoint.po: DiagnosticCommonKinds.inc.h ProgramPoint.po: StmtNodes.inc.h -PseudoConstantAnalysis.o: AttrList.inc.h -PseudoConstantAnalysis.o: Attrs.inc.h PseudoConstantAnalysis.o: DeclNodes.inc.h PseudoConstantAnalysis.o: DiagnosticCommonKinds.inc.h PseudoConstantAnalysis.o: StmtNodes.inc.h -PseudoConstantAnalysis.po: AttrList.inc.h -PseudoConstantAnalysis.po: Attrs.inc.h PseudoConstantAnalysis.po: DeclNodes.inc.h PseudoConstantAnalysis.po: DiagnosticCommonKinds.inc.h PseudoConstantAnalysis.po: StmtNodes.inc.h -ReachableCode.o: AttrList.inc.h -ReachableCode.o: Attrs.inc.h ReachableCode.o: DeclNodes.inc.h ReachableCode.o: DiagnosticCommonKinds.inc.h ReachableCode.o: StmtNodes.inc.h -ReachableCode.po: AttrList.inc.h -ReachableCode.po: Attrs.inc.h ReachableCode.po: DeclNodes.inc.h ReachableCode.po: DiagnosticCommonKinds.inc.h ReachableCode.po: StmtNodes.inc.h -ScanfFormatString.o: AttrList.inc.h -ScanfFormatString.o: Attrs.inc.h +ScanfFormatString.o: CommentCommandList.inc.h ScanfFormatString.o: DeclNodes.inc.h ScanfFormatString.o: DiagnosticCommonKinds.inc.h -ScanfFormatString.po: AttrList.inc.h -ScanfFormatString.po: Attrs.inc.h +ScanfFormatString.o: StmtNodes.inc.h +ScanfFormatString.po: CommentCommandList.inc.h ScanfFormatString.po: DeclNodes.inc.h ScanfFormatString.po: DiagnosticCommonKinds.inc.h +ScanfFormatString.po: StmtNodes.inc.h ThreadSafety.o: AttrList.inc.h ThreadSafety.o: Attrs.inc.h ThreadSafety.o: DeclNodes.inc.h @@ -184,11 +139,13 @@ ThreadSafety.po: DiagnosticCommonKinds.inc.h ThreadSafety.po: StmtNodes.inc.h UninitializedValues.o: AttrList.inc.h UninitializedValues.o: Attrs.inc.h +UninitializedValues.o: CommentCommandList.inc.h UninitializedValues.o: DeclNodes.inc.h UninitializedValues.o: DiagnosticCommonKinds.inc.h UninitializedValues.o: StmtNodes.inc.h UninitializedValues.po: AttrList.inc.h UninitializedValues.po: Attrs.inc.h +UninitializedValues.po: CommentCommandList.inc.h UninitializedValues.po: DeclNodes.inc.h UninitializedValues.po: DiagnosticCommonKinds.inc.h UninitializedValues.po: StmtNodes.inc.h diff --git a/lib/clang/libclangarcmigrate/Makefile.depend b/lib/clang/libclangarcmigrate/Makefile.depend index 8d249a0437e5..5ce1899a364a 100644 --- a/lib/clang/libclangarcmigrate/Makefile.depend +++ b/lib/clang/libclangarcmigrate/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include @@ -17,6 +18,7 @@ DIRDEPS = \ ARCMT.o: AttrList.inc.h ARCMT.o: AttrParsedAttrList.inc.h ARCMT.o: Attrs.inc.h +ARCMT.o: CommentCommandList.inc.h ARCMT.o: DeclNodes.inc.h ARCMT.o: DiagnosticCommonKinds.inc.h ARCMT.o: DiagnosticGroups.inc.h @@ -25,6 +27,7 @@ ARCMT.o: StmtNodes.inc.h ARCMT.po: AttrList.inc.h ARCMT.po: AttrParsedAttrList.inc.h ARCMT.po: Attrs.inc.h +ARCMT.po: CommentCommandList.inc.h ARCMT.po: DeclNodes.inc.h ARCMT.po: DiagnosticCommonKinds.inc.h ARCMT.po: DiagnosticGroups.inc.h @@ -34,169 +37,158 @@ ARCMTActions.o: DiagnosticCommonKinds.inc.h ARCMTActions.po: DiagnosticCommonKinds.inc.h FileRemapper.o: DiagnosticCommonKinds.inc.h FileRemapper.po: DiagnosticCommonKinds.inc.h -ObjCMT.o: AttrList.inc.h -ObjCMT.o: Attrs.inc.h +ObjCMT.o: CommentCommandList.inc.h ObjCMT.o: DeclNodes.inc.h ObjCMT.o: DiagnosticCommonKinds.inc.h ObjCMT.o: StmtNodes.inc.h -ObjCMT.po: AttrList.inc.h -ObjCMT.po: Attrs.inc.h +ObjCMT.po: CommentCommandList.inc.h ObjCMT.po: DeclNodes.inc.h ObjCMT.po: DiagnosticCommonKinds.inc.h ObjCMT.po: StmtNodes.inc.h PlistReporter.o: DiagnosticCommonKinds.inc.h PlistReporter.po: DiagnosticCommonKinds.inc.h -TransAPIUses.o: AttrList.inc.h -TransAPIUses.o: Attrs.inc.h +TransAPIUses.o: CommentCommandList.inc.h TransAPIUses.o: DeclNodes.inc.h TransAPIUses.o: DiagnosticCommonKinds.inc.h TransAPIUses.o: DiagnosticSemaKinds.inc.h TransAPIUses.o: StmtNodes.inc.h -TransAPIUses.po: AttrList.inc.h -TransAPIUses.po: Attrs.inc.h +TransAPIUses.po: CommentCommandList.inc.h TransAPIUses.po: DeclNodes.inc.h TransAPIUses.po: DiagnosticCommonKinds.inc.h TransAPIUses.po: DiagnosticSemaKinds.inc.h TransAPIUses.po: StmtNodes.inc.h -TransARCAssign.o: AttrList.inc.h -TransARCAssign.o: Attrs.inc.h +TransARCAssign.o: CommentCommandList.inc.h TransARCAssign.o: DeclNodes.inc.h TransARCAssign.o: DiagnosticCommonKinds.inc.h TransARCAssign.o: DiagnosticSemaKinds.inc.h TransARCAssign.o: StmtNodes.inc.h -TransARCAssign.po: AttrList.inc.h -TransARCAssign.po: Attrs.inc.h +TransARCAssign.po: CommentCommandList.inc.h TransARCAssign.po: DeclNodes.inc.h TransARCAssign.po: DiagnosticCommonKinds.inc.h TransARCAssign.po: DiagnosticSemaKinds.inc.h TransARCAssign.po: StmtNodes.inc.h -TransAutoreleasePool.o: AttrList.inc.h -TransAutoreleasePool.o: Attrs.inc.h +TransAutoreleasePool.o: CommentCommandList.inc.h TransAutoreleasePool.o: DeclNodes.inc.h TransAutoreleasePool.o: DiagnosticCommonKinds.inc.h TransAutoreleasePool.o: DiagnosticSemaKinds.inc.h TransAutoreleasePool.o: StmtNodes.inc.h -TransAutoreleasePool.po: AttrList.inc.h -TransAutoreleasePool.po: Attrs.inc.h +TransAutoreleasePool.po: CommentCommandList.inc.h TransAutoreleasePool.po: DeclNodes.inc.h TransAutoreleasePool.po: DiagnosticCommonKinds.inc.h TransAutoreleasePool.po: DiagnosticSemaKinds.inc.h TransAutoreleasePool.po: StmtNodes.inc.h TransBlockObjCVariable.o: AttrList.inc.h TransBlockObjCVariable.o: Attrs.inc.h +TransBlockObjCVariable.o: CommentCommandList.inc.h TransBlockObjCVariable.o: DeclNodes.inc.h TransBlockObjCVariable.o: DiagnosticCommonKinds.inc.h TransBlockObjCVariable.o: StmtNodes.inc.h TransBlockObjCVariable.po: AttrList.inc.h TransBlockObjCVariable.po: Attrs.inc.h +TransBlockObjCVariable.po: CommentCommandList.inc.h TransBlockObjCVariable.po: DeclNodes.inc.h TransBlockObjCVariable.po: DiagnosticCommonKinds.inc.h TransBlockObjCVariable.po: StmtNodes.inc.h -TransEmptyStatementsAndDealloc.o: AttrList.inc.h -TransEmptyStatementsAndDealloc.o: Attrs.inc.h +TransEmptyStatementsAndDealloc.o: CommentCommandList.inc.h TransEmptyStatementsAndDealloc.o: DeclNodes.inc.h TransEmptyStatementsAndDealloc.o: DiagnosticCommonKinds.inc.h TransEmptyStatementsAndDealloc.o: StmtNodes.inc.h -TransEmptyStatementsAndDealloc.po: AttrList.inc.h -TransEmptyStatementsAndDealloc.po: Attrs.inc.h +TransEmptyStatementsAndDealloc.po: CommentCommandList.inc.h TransEmptyStatementsAndDealloc.po: DeclNodes.inc.h TransEmptyStatementsAndDealloc.po: DiagnosticCommonKinds.inc.h TransEmptyStatementsAndDealloc.po: StmtNodes.inc.h -TransGCAttrs.o: AttrList.inc.h -TransGCAttrs.o: Attrs.inc.h +TransGCAttrs.o: CommentCommandList.inc.h TransGCAttrs.o: DeclNodes.inc.h TransGCAttrs.o: DiagnosticCommonKinds.inc.h TransGCAttrs.o: DiagnosticSemaKinds.inc.h TransGCAttrs.o: StmtNodes.inc.h -TransGCAttrs.po: AttrList.inc.h -TransGCAttrs.po: Attrs.inc.h +TransGCAttrs.po: CommentCommandList.inc.h TransGCAttrs.po: DeclNodes.inc.h TransGCAttrs.po: DiagnosticCommonKinds.inc.h TransGCAttrs.po: DiagnosticSemaKinds.inc.h TransGCAttrs.po: StmtNodes.inc.h -TransGCCalls.o: AttrList.inc.h -TransGCCalls.o: Attrs.inc.h +TransGCCalls.o: CommentCommandList.inc.h TransGCCalls.o: DeclNodes.inc.h TransGCCalls.o: DiagnosticCommonKinds.inc.h TransGCCalls.o: DiagnosticSemaKinds.inc.h TransGCCalls.o: StmtNodes.inc.h -TransGCCalls.po: AttrList.inc.h -TransGCCalls.po: Attrs.inc.h +TransGCCalls.po: CommentCommandList.inc.h TransGCCalls.po: DeclNodes.inc.h TransGCCalls.po: DiagnosticCommonKinds.inc.h TransGCCalls.po: DiagnosticSemaKinds.inc.h TransGCCalls.po: StmtNodes.inc.h -TransProperties.o: AttrList.inc.h -TransProperties.o: Attrs.inc.h TransProperties.o: DeclNodes.inc.h TransProperties.o: DiagnosticCommonKinds.inc.h TransProperties.o: DiagnosticSemaKinds.inc.h TransProperties.o: StmtNodes.inc.h -TransProperties.po: AttrList.inc.h -TransProperties.po: Attrs.inc.h TransProperties.po: DeclNodes.inc.h TransProperties.po: DiagnosticCommonKinds.inc.h TransProperties.po: DiagnosticSemaKinds.inc.h TransProperties.po: StmtNodes.inc.h -TransRetainReleaseDealloc.o: AttrList.inc.h -TransRetainReleaseDealloc.o: Attrs.inc.h +TransProtectedScope.o: CommentCommandList.inc.h +TransProtectedScope.o: DeclNodes.inc.h +TransProtectedScope.o: DiagnosticCommonKinds.inc.h +TransProtectedScope.o: DiagnosticSemaKinds.inc.h +TransProtectedScope.o: StmtNodes.inc.h +TransProtectedScope.po: CommentCommandList.inc.h +TransProtectedScope.po: DeclNodes.inc.h +TransProtectedScope.po: DiagnosticCommonKinds.inc.h +TransProtectedScope.po: DiagnosticSemaKinds.inc.h +TransProtectedScope.po: StmtNodes.inc.h +TransRetainReleaseDealloc.o: CommentCommandList.inc.h TransRetainReleaseDealloc.o: DeclNodes.inc.h TransRetainReleaseDealloc.o: DiagnosticCommonKinds.inc.h TransRetainReleaseDealloc.o: DiagnosticSemaKinds.inc.h TransRetainReleaseDealloc.o: StmtNodes.inc.h -TransRetainReleaseDealloc.po: AttrList.inc.h -TransRetainReleaseDealloc.po: Attrs.inc.h +TransRetainReleaseDealloc.po: CommentCommandList.inc.h TransRetainReleaseDealloc.po: DeclNodes.inc.h TransRetainReleaseDealloc.po: DiagnosticCommonKinds.inc.h TransRetainReleaseDealloc.po: DiagnosticSemaKinds.inc.h TransRetainReleaseDealloc.po: StmtNodes.inc.h TransUnbridgedCasts.o: AttrList.inc.h TransUnbridgedCasts.o: Attrs.inc.h +TransUnbridgedCasts.o: CommentCommandList.inc.h TransUnbridgedCasts.o: DeclNodes.inc.h TransUnbridgedCasts.o: DiagnosticCommonKinds.inc.h TransUnbridgedCasts.o: DiagnosticSemaKinds.inc.h TransUnbridgedCasts.o: StmtNodes.inc.h TransUnbridgedCasts.po: AttrList.inc.h TransUnbridgedCasts.po: Attrs.inc.h +TransUnbridgedCasts.po: CommentCommandList.inc.h TransUnbridgedCasts.po: DeclNodes.inc.h TransUnbridgedCasts.po: DiagnosticCommonKinds.inc.h TransUnbridgedCasts.po: DiagnosticSemaKinds.inc.h TransUnbridgedCasts.po: StmtNodes.inc.h -TransUnusedInitDelegate.o: AttrList.inc.h -TransUnusedInitDelegate.o: Attrs.inc.h +TransUnusedInitDelegate.o: CommentCommandList.inc.h TransUnusedInitDelegate.o: DeclNodes.inc.h TransUnusedInitDelegate.o: DiagnosticCommonKinds.inc.h TransUnusedInitDelegate.o: DiagnosticSemaKinds.inc.h TransUnusedInitDelegate.o: StmtNodes.inc.h -TransUnusedInitDelegate.po: AttrList.inc.h -TransUnusedInitDelegate.po: Attrs.inc.h +TransUnusedInitDelegate.po: CommentCommandList.inc.h TransUnusedInitDelegate.po: DeclNodes.inc.h TransUnusedInitDelegate.po: DiagnosticCommonKinds.inc.h TransUnusedInitDelegate.po: DiagnosticSemaKinds.inc.h TransUnusedInitDelegate.po: StmtNodes.inc.h -TransZeroOutPropsInDealloc.o: AttrList.inc.h -TransZeroOutPropsInDealloc.o: Attrs.inc.h +TransZeroOutPropsInDealloc.o: CommentCommandList.inc.h TransZeroOutPropsInDealloc.o: DeclNodes.inc.h TransZeroOutPropsInDealloc.o: DiagnosticCommonKinds.inc.h TransZeroOutPropsInDealloc.o: StmtNodes.inc.h -TransZeroOutPropsInDealloc.po: AttrList.inc.h -TransZeroOutPropsInDealloc.po: Attrs.inc.h +TransZeroOutPropsInDealloc.po: CommentCommandList.inc.h TransZeroOutPropsInDealloc.po: DeclNodes.inc.h TransZeroOutPropsInDealloc.po: DiagnosticCommonKinds.inc.h TransZeroOutPropsInDealloc.po: StmtNodes.inc.h -TransformActions.o: AttrList.inc.h -TransformActions.o: Attrs.inc.h +TransformActions.o: CommentCommandList.inc.h TransformActions.o: DeclNodes.inc.h TransformActions.o: DiagnosticCommonKinds.inc.h TransformActions.o: StmtNodes.inc.h -TransformActions.po: AttrList.inc.h -TransformActions.po: Attrs.inc.h +TransformActions.po: CommentCommandList.inc.h TransformActions.po: DeclNodes.inc.h TransformActions.po: DiagnosticCommonKinds.inc.h TransformActions.po: StmtNodes.inc.h Transforms.o: AttrList.inc.h Transforms.o: AttrParsedAttrList.inc.h Transforms.o: Attrs.inc.h +Transforms.o: CommentCommandList.inc.h Transforms.o: DeclNodes.inc.h Transforms.o: DiagnosticCommonKinds.inc.h Transforms.o: DiagnosticSemaKinds.inc.h @@ -204,6 +196,7 @@ Transforms.o: StmtNodes.inc.h Transforms.po: AttrList.inc.h Transforms.po: AttrParsedAttrList.inc.h Transforms.po: Attrs.inc.h +Transforms.po: CommentCommandList.inc.h Transforms.po: DeclNodes.inc.h Transforms.po: DiagnosticCommonKinds.inc.h Transforms.po: DiagnosticSemaKinds.inc.h diff --git a/lib/clang/libclangast/Makefile.depend b/lib/clang/libclangast/Makefile.depend index 52ba6508bdae..44813d64bf45 100644 --- a/lib/clang/libclangast/Makefile.depend +++ b/lib/clang/libclangast/Makefile.depend @@ -8,62 +8,71 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -APValue.o: AttrList.inc.h -APValue.o: Attrs.inc.h +APValue.o: CommentCommandList.inc.h APValue.o: DeclNodes.inc.h APValue.o: DiagnosticCommonKinds.inc.h APValue.o: StmtNodes.inc.h -APValue.po: AttrList.inc.h -APValue.po: Attrs.inc.h +APValue.po: CommentCommandList.inc.h APValue.po: DeclNodes.inc.h APValue.po: DiagnosticCommonKinds.inc.h APValue.po: StmtNodes.inc.h -ASTConsumer.o: AttrList.inc.h -ASTConsumer.o: Attrs.inc.h ASTConsumer.o: DeclNodes.inc.h ASTConsumer.o: DiagnosticCommonKinds.inc.h -ASTConsumer.po: AttrList.inc.h -ASTConsumer.po: Attrs.inc.h ASTConsumer.po: DeclNodes.inc.h ASTConsumer.po: DiagnosticCommonKinds.inc.h ASTContext.o: AttrList.inc.h ASTContext.o: Attrs.inc.h +ASTContext.o: CommentCommandList.inc.h ASTContext.o: CommentNodes.inc.h ASTContext.o: DeclNodes.inc.h ASTContext.o: DiagnosticCommonKinds.inc.h ASTContext.o: StmtNodes.inc.h ASTContext.po: AttrList.inc.h ASTContext.po: Attrs.inc.h +ASTContext.po: CommentCommandList.inc.h ASTContext.po: CommentNodes.inc.h ASTContext.po: DeclNodes.inc.h ASTContext.po: DiagnosticCommonKinds.inc.h ASTContext.po: StmtNodes.inc.h -ASTDiagnostic.o: AttrList.inc.h -ASTDiagnostic.o: Attrs.inc.h +ASTDiagnostic.o: CommentCommandList.inc.h ASTDiagnostic.o: DeclNodes.inc.h ASTDiagnostic.o: DiagnosticASTKinds.inc.h ASTDiagnostic.o: DiagnosticCommonKinds.inc.h ASTDiagnostic.o: StmtNodes.inc.h -ASTDiagnostic.po: AttrList.inc.h -ASTDiagnostic.po: Attrs.inc.h +ASTDiagnostic.po: CommentCommandList.inc.h ASTDiagnostic.po: DeclNodes.inc.h ASTDiagnostic.po: DiagnosticASTKinds.inc.h ASTDiagnostic.po: DiagnosticCommonKinds.inc.h ASTDiagnostic.po: StmtNodes.inc.h -ASTImporter.o: AttrList.inc.h -ASTImporter.o: Attrs.inc.h +ASTDumper.o: AttrDump.inc.h +ASTDumper.o: AttrList.inc.h +ASTDumper.o: Attrs.inc.h +ASTDumper.o: CommentCommandList.inc.h +ASTDumper.o: CommentNodes.inc.h +ASTDumper.o: DeclNodes.inc.h +ASTDumper.o: DiagnosticCommonKinds.inc.h +ASTDumper.o: StmtNodes.inc.h +ASTDumper.po: AttrDump.inc.h +ASTDumper.po: AttrList.inc.h +ASTDumper.po: Attrs.inc.h +ASTDumper.po: CommentCommandList.inc.h +ASTDumper.po: CommentNodes.inc.h +ASTDumper.po: DeclNodes.inc.h +ASTDumper.po: DiagnosticCommonKinds.inc.h +ASTDumper.po: StmtNodes.inc.h +ASTImporter.o: CommentCommandList.inc.h ASTImporter.o: DeclNodes.inc.h ASTImporter.o: DiagnosticASTKinds.inc.h ASTImporter.o: DiagnosticCommonKinds.inc.h ASTImporter.o: StmtNodes.inc.h -ASTImporter.po: AttrList.inc.h -ASTImporter.po: Attrs.inc.h +ASTImporter.po: CommentCommandList.inc.h ASTImporter.po: DeclNodes.inc.h ASTImporter.po: DiagnosticASTKinds.inc.h ASTImporter.po: DiagnosticCommonKinds.inc.h @@ -71,65 +80,66 @@ ASTImporter.po: StmtNodes.inc.h AttrImpl.o: AttrImpl.inc.h AttrImpl.o: AttrList.inc.h AttrImpl.o: Attrs.inc.h +AttrImpl.o: CommentCommandList.inc.h AttrImpl.o: DeclNodes.inc.h AttrImpl.o: DiagnosticCommonKinds.inc.h AttrImpl.o: StmtNodes.inc.h AttrImpl.po: AttrImpl.inc.h AttrImpl.po: AttrList.inc.h AttrImpl.po: Attrs.inc.h +AttrImpl.po: CommentCommandList.inc.h AttrImpl.po: DeclNodes.inc.h AttrImpl.po: DiagnosticCommonKinds.inc.h AttrImpl.po: StmtNodes.inc.h -CXXInheritance.o: AttrList.inc.h -CXXInheritance.o: Attrs.inc.h +CXXInheritance.o: CommentCommandList.inc.h CXXInheritance.o: DeclNodes.inc.h CXXInheritance.o: DiagnosticCommonKinds.inc.h CXXInheritance.o: StmtNodes.inc.h -CXXInheritance.po: AttrList.inc.h -CXXInheritance.po: Attrs.inc.h +CXXInheritance.po: CommentCommandList.inc.h CXXInheritance.po: DeclNodes.inc.h CXXInheritance.po: DiagnosticCommonKinds.inc.h CXXInheritance.po: StmtNodes.inc.h -Comment.o: AttrList.inc.h -Comment.o: Attrs.inc.h +Comment.o: CommentCommandList.inc.h Comment.o: CommentNodes.inc.h Comment.o: DeclNodes.inc.h Comment.o: DiagnosticCommonKinds.inc.h Comment.o: StmtNodes.inc.h -Comment.po: AttrList.inc.h -Comment.po: Attrs.inc.h +Comment.po: CommentCommandList.inc.h Comment.po: CommentNodes.inc.h Comment.po: DeclNodes.inc.h Comment.po: DiagnosticCommonKinds.inc.h Comment.po: StmtNodes.inc.h +CommentBriefParser.o: CommentCommandList.inc.h +CommentBriefParser.o: DiagnosticCommonKinds.inc.h +CommentBriefParser.po: CommentCommandList.inc.h +CommentBriefParser.po: DiagnosticCommonKinds.inc.h CommentCommandTraits.o: CommentCommandInfo.inc.h +CommentCommandTraits.o: CommentCommandList.inc.h CommentCommandTraits.po: CommentCommandInfo.inc.h -CommentDumper.o: AttrList.inc.h -CommentDumper.o: Attrs.inc.h -CommentDumper.o: CommentNodes.inc.h -CommentDumper.o: DeclNodes.inc.h -CommentDumper.o: DiagnosticCommonKinds.inc.h -CommentDumper.po: AttrList.inc.h -CommentDumper.po: Attrs.inc.h -CommentDumper.po: CommentNodes.inc.h -CommentDumper.po: DeclNodes.inc.h -CommentDumper.po: DiagnosticCommonKinds.inc.h +CommentCommandTraits.po: CommentCommandList.inc.h +CommentLexer.o: CommentCommandList.inc.h +CommentLexer.o: CommentHTMLNamedCharacterReferences.inc.h CommentLexer.o: CommentHTMLTags.inc.h +CommentLexer.o: DiagnosticCommentKinds.inc.h +CommentLexer.o: DiagnosticCommonKinds.inc.h +CommentLexer.po: CommentCommandList.inc.h +CommentLexer.po: CommentHTMLNamedCharacterReferences.inc.h CommentLexer.po: CommentHTMLTags.inc.h -CommentParser.o: AttrList.inc.h -CommentParser.o: Attrs.inc.h +CommentLexer.po: DiagnosticCommentKinds.inc.h +CommentLexer.po: DiagnosticCommonKinds.inc.h +CommentParser.o: CommentCommandList.inc.h CommentParser.o: CommentNodes.inc.h CommentParser.o: DeclNodes.inc.h CommentParser.o: DiagnosticCommentKinds.inc.h CommentParser.o: DiagnosticCommonKinds.inc.h -CommentParser.po: AttrList.inc.h -CommentParser.po: Attrs.inc.h +CommentParser.po: CommentCommandList.inc.h CommentParser.po: CommentNodes.inc.h CommentParser.po: DeclNodes.inc.h CommentParser.po: DiagnosticCommentKinds.inc.h CommentParser.po: DiagnosticCommonKinds.inc.h CommentSema.o: AttrList.inc.h CommentSema.o: Attrs.inc.h +CommentSema.o: CommentCommandList.inc.h CommentSema.o: CommentHTMLTagsProperties.inc.h CommentSema.o: CommentNodes.inc.h CommentSema.o: DeclNodes.inc.h @@ -138,6 +148,7 @@ CommentSema.o: DiagnosticCommonKinds.inc.h CommentSema.o: StmtNodes.inc.h CommentSema.po: AttrList.inc.h CommentSema.po: Attrs.inc.h +CommentSema.po: CommentCommandList.inc.h CommentSema.po: CommentHTMLTagsProperties.inc.h CommentSema.po: CommentNodes.inc.h CommentSema.po: DeclNodes.inc.h @@ -146,421 +157,383 @@ CommentSema.po: DiagnosticCommonKinds.inc.h CommentSema.po: StmtNodes.inc.h Decl.o: AttrList.inc.h Decl.o: Attrs.inc.h +Decl.o: CommentCommandList.inc.h Decl.o: DeclNodes.inc.h Decl.o: DiagnosticCommonKinds.inc.h Decl.o: StmtNodes.inc.h Decl.po: AttrList.inc.h Decl.po: Attrs.inc.h +Decl.po: CommentCommandList.inc.h Decl.po: DeclNodes.inc.h Decl.po: DiagnosticCommonKinds.inc.h Decl.po: StmtNodes.inc.h DeclBase.o: AttrList.inc.h DeclBase.o: Attrs.inc.h +DeclBase.o: CommentCommandList.inc.h DeclBase.o: DeclNodes.inc.h DeclBase.o: DiagnosticCommonKinds.inc.h DeclBase.o: StmtNodes.inc.h DeclBase.po: AttrList.inc.h DeclBase.po: Attrs.inc.h +DeclBase.po: CommentCommandList.inc.h DeclBase.po: DeclNodes.inc.h DeclBase.po: DiagnosticCommonKinds.inc.h DeclBase.po: StmtNodes.inc.h -DeclCXX.o: AttrList.inc.h -DeclCXX.o: Attrs.inc.h +DeclCXX.o: CommentCommandList.inc.h DeclCXX.o: DeclNodes.inc.h DeclCXX.o: DiagnosticCommonKinds.inc.h DeclCXX.o: StmtNodes.inc.h -DeclCXX.po: AttrList.inc.h -DeclCXX.po: Attrs.inc.h +DeclCXX.po: CommentCommandList.inc.h DeclCXX.po: DeclNodes.inc.h DeclCXX.po: DiagnosticCommonKinds.inc.h DeclCXX.po: StmtNodes.inc.h -DeclFriend.o: AttrList.inc.h -DeclFriend.o: Attrs.inc.h +DeclFriend.o: CommentCommandList.inc.h DeclFriend.o: DeclNodes.inc.h DeclFriend.o: DiagnosticCommonKinds.inc.h DeclFriend.o: StmtNodes.inc.h -DeclFriend.po: AttrList.inc.h -DeclFriend.po: Attrs.inc.h +DeclFriend.po: CommentCommandList.inc.h DeclFriend.po: DeclNodes.inc.h DeclFriend.po: DiagnosticCommonKinds.inc.h DeclFriend.po: StmtNodes.inc.h -DeclGroup.o: AttrList.inc.h -DeclGroup.o: Attrs.inc.h +DeclGroup.o: CommentCommandList.inc.h DeclGroup.o: DeclNodes.inc.h DeclGroup.o: DiagnosticCommonKinds.inc.h -DeclGroup.po: AttrList.inc.h -DeclGroup.po: Attrs.inc.h +DeclGroup.o: StmtNodes.inc.h +DeclGroup.po: CommentCommandList.inc.h DeclGroup.po: DeclNodes.inc.h DeclGroup.po: DiagnosticCommonKinds.inc.h +DeclGroup.po: StmtNodes.inc.h DeclObjC.o: AttrList.inc.h DeclObjC.o: Attrs.inc.h +DeclObjC.o: CommentCommandList.inc.h DeclObjC.o: DeclNodes.inc.h DeclObjC.o: DiagnosticCommonKinds.inc.h DeclObjC.o: StmtNodes.inc.h DeclObjC.po: AttrList.inc.h DeclObjC.po: Attrs.inc.h +DeclObjC.po: CommentCommandList.inc.h DeclObjC.po: DeclNodes.inc.h DeclObjC.po: DiagnosticCommonKinds.inc.h DeclObjC.po: StmtNodes.inc.h +DeclOpenMP.o: CommentCommandList.inc.h +DeclOpenMP.o: DeclNodes.inc.h +DeclOpenMP.o: DiagnosticCommonKinds.inc.h +DeclOpenMP.o: StmtNodes.inc.h +DeclOpenMP.po: CommentCommandList.inc.h +DeclOpenMP.po: DeclNodes.inc.h +DeclOpenMP.po: DiagnosticCommonKinds.inc.h +DeclOpenMP.po: StmtNodes.inc.h DeclPrinter.o: AttrList.inc.h DeclPrinter.o: Attrs.inc.h +DeclPrinter.o: CommentCommandList.inc.h DeclPrinter.o: DeclNodes.inc.h DeclPrinter.o: DiagnosticCommonKinds.inc.h DeclPrinter.o: StmtNodes.inc.h DeclPrinter.po: AttrList.inc.h DeclPrinter.po: Attrs.inc.h +DeclPrinter.po: CommentCommandList.inc.h DeclPrinter.po: DeclNodes.inc.h DeclPrinter.po: DiagnosticCommonKinds.inc.h DeclPrinter.po: StmtNodes.inc.h -DeclTemplate.o: AttrList.inc.h -DeclTemplate.o: Attrs.inc.h +DeclTemplate.o: CommentCommandList.inc.h DeclTemplate.o: DeclNodes.inc.h DeclTemplate.o: DiagnosticCommonKinds.inc.h DeclTemplate.o: StmtNodes.inc.h -DeclTemplate.po: AttrList.inc.h -DeclTemplate.po: Attrs.inc.h +DeclTemplate.po: CommentCommandList.inc.h DeclTemplate.po: DeclNodes.inc.h DeclTemplate.po: DiagnosticCommonKinds.inc.h DeclTemplate.po: StmtNodes.inc.h -DeclarationName.o: AttrList.inc.h -DeclarationName.o: Attrs.inc.h +DeclarationName.o: CommentCommandList.inc.h DeclarationName.o: DeclNodes.inc.h DeclarationName.o: DiagnosticCommonKinds.inc.h -DeclarationName.po: AttrList.inc.h -DeclarationName.po: Attrs.inc.h +DeclarationName.o: StmtNodes.inc.h +DeclarationName.po: CommentCommandList.inc.h DeclarationName.po: DeclNodes.inc.h DeclarationName.po: DiagnosticCommonKinds.inc.h +DeclarationName.po: StmtNodes.inc.h DumpXML.o: AttrList.inc.h DumpXML.o: Attrs.inc.h +DumpXML.o: CommentCommandList.inc.h DumpXML.o: DeclNodes.inc.h DumpXML.o: DiagnosticCommonKinds.inc.h DumpXML.o: StmtNodes.inc.h DumpXML.po: AttrList.inc.h DumpXML.po: Attrs.inc.h +DumpXML.po: CommentCommandList.inc.h DumpXML.po: DeclNodes.inc.h DumpXML.po: DiagnosticCommonKinds.inc.h DumpXML.po: StmtNodes.inc.h Expr.o: AttrList.inc.h Expr.o: Attrs.inc.h +Expr.o: CommentCommandList.inc.h Expr.o: DeclNodes.inc.h Expr.o: DiagnosticCommonKinds.inc.h Expr.o: DiagnosticSemaKinds.inc.h Expr.o: StmtNodes.inc.h Expr.po: AttrList.inc.h Expr.po: Attrs.inc.h +Expr.po: CommentCommandList.inc.h Expr.po: DeclNodes.inc.h Expr.po: DiagnosticCommonKinds.inc.h Expr.po: DiagnosticSemaKinds.inc.h Expr.po: StmtNodes.inc.h ExprCXX.o: AttrList.inc.h ExprCXX.o: Attrs.inc.h +ExprCXX.o: CommentCommandList.inc.h ExprCXX.o: DeclNodes.inc.h ExprCXX.o: DiagnosticCommonKinds.inc.h ExprCXX.o: StmtNodes.inc.h ExprCXX.po: AttrList.inc.h ExprCXX.po: Attrs.inc.h +ExprCXX.po: CommentCommandList.inc.h ExprCXX.po: DeclNodes.inc.h ExprCXX.po: DiagnosticCommonKinds.inc.h ExprCXX.po: StmtNodes.inc.h -ExprClassification.o: AttrList.inc.h -ExprClassification.o: Attrs.inc.h +ExprClassification.o: CommentCommandList.inc.h ExprClassification.o: DeclNodes.inc.h ExprClassification.o: DiagnosticCommonKinds.inc.h ExprClassification.o: StmtNodes.inc.h -ExprClassification.po: AttrList.inc.h -ExprClassification.po: Attrs.inc.h +ExprClassification.po: CommentCommandList.inc.h ExprClassification.po: DeclNodes.inc.h ExprClassification.po: DiagnosticCommonKinds.inc.h ExprClassification.po: StmtNodes.inc.h -ExprConstant.o: AttrList.inc.h -ExprConstant.o: Attrs.inc.h +ExprConstant.o: CommentCommandList.inc.h ExprConstant.o: DeclNodes.inc.h ExprConstant.o: DiagnosticASTKinds.inc.h ExprConstant.o: DiagnosticCommonKinds.inc.h ExprConstant.o: StmtNodes.inc.h -ExprConstant.po: AttrList.inc.h -ExprConstant.po: Attrs.inc.h +ExprConstant.po: CommentCommandList.inc.h ExprConstant.po: DeclNodes.inc.h ExprConstant.po: DiagnosticASTKinds.inc.h ExprConstant.po: DiagnosticCommonKinds.inc.h ExprConstant.po: StmtNodes.inc.h -ExternalASTSource.o: AttrList.inc.h -ExternalASTSource.o: Attrs.inc.h ExternalASTSource.o: DeclNodes.inc.h ExternalASTSource.o: DiagnosticCommonKinds.inc.h -ExternalASTSource.po: AttrList.inc.h -ExternalASTSource.po: Attrs.inc.h ExternalASTSource.po: DeclNodes.inc.h ExternalASTSource.po: DiagnosticCommonKinds.inc.h -InheritViz.o: AttrList.inc.h -InheritViz.o: Attrs.inc.h +InheritViz.o: CommentCommandList.inc.h InheritViz.o: DeclNodes.inc.h InheritViz.o: DiagnosticCommonKinds.inc.h InheritViz.o: StmtNodes.inc.h -InheritViz.po: AttrList.inc.h -InheritViz.po: Attrs.inc.h +InheritViz.po: CommentCommandList.inc.h InheritViz.po: DeclNodes.inc.h InheritViz.po: DiagnosticCommonKinds.inc.h InheritViz.po: StmtNodes.inc.h -ItaniumCXXABI.o: AttrList.inc.h -ItaniumCXXABI.o: Attrs.inc.h +ItaniumCXXABI.o: CommentCommandList.inc.h ItaniumCXXABI.o: DeclNodes.inc.h ItaniumCXXABI.o: DiagnosticCommonKinds.inc.h ItaniumCXXABI.o: StmtNodes.inc.h -ItaniumCXXABI.po: AttrList.inc.h -ItaniumCXXABI.po: Attrs.inc.h +ItaniumCXXABI.po: CommentCommandList.inc.h ItaniumCXXABI.po: DeclNodes.inc.h ItaniumCXXABI.po: DiagnosticCommonKinds.inc.h ItaniumCXXABI.po: StmtNodes.inc.h ItaniumMangle.o: AttrList.inc.h ItaniumMangle.o: Attrs.inc.h +ItaniumMangle.o: CommentCommandList.inc.h ItaniumMangle.o: DeclNodes.inc.h ItaniumMangle.o: DiagnosticCommonKinds.inc.h ItaniumMangle.o: StmtNodes.inc.h ItaniumMangle.po: AttrList.inc.h ItaniumMangle.po: Attrs.inc.h +ItaniumMangle.po: CommentCommandList.inc.h ItaniumMangle.po: DeclNodes.inc.h ItaniumMangle.po: DiagnosticCommonKinds.inc.h ItaniumMangle.po: StmtNodes.inc.h -LambdaMangleContext.o: AttrList.inc.h -LambdaMangleContext.o: Attrs.inc.h +LambdaMangleContext.o: CommentCommandList.inc.h LambdaMangleContext.o: DeclNodes.inc.h LambdaMangleContext.o: DiagnosticCommonKinds.inc.h LambdaMangleContext.o: StmtNodes.inc.h -LambdaMangleContext.po: AttrList.inc.h -LambdaMangleContext.po: Attrs.inc.h +LambdaMangleContext.po: CommentCommandList.inc.h LambdaMangleContext.po: DeclNodes.inc.h LambdaMangleContext.po: DiagnosticCommonKinds.inc.h LambdaMangleContext.po: StmtNodes.inc.h -Mangle.o: AttrList.inc.h -Mangle.o: Attrs.inc.h +Mangle.o: CommentCommandList.inc.h Mangle.o: DeclNodes.inc.h Mangle.o: DiagnosticCommonKinds.inc.h Mangle.o: StmtNodes.inc.h -Mangle.po: AttrList.inc.h -Mangle.po: Attrs.inc.h +Mangle.po: CommentCommandList.inc.h Mangle.po: DeclNodes.inc.h Mangle.po: DiagnosticCommonKinds.inc.h Mangle.po: StmtNodes.inc.h MicrosoftCXXABI.o: AttrList.inc.h MicrosoftCXXABI.o: Attrs.inc.h +MicrosoftCXXABI.o: CommentCommandList.inc.h MicrosoftCXXABI.o: DeclNodes.inc.h MicrosoftCXXABI.o: DiagnosticCommonKinds.inc.h MicrosoftCXXABI.o: StmtNodes.inc.h MicrosoftCXXABI.po: AttrList.inc.h MicrosoftCXXABI.po: Attrs.inc.h +MicrosoftCXXABI.po: CommentCommandList.inc.h MicrosoftCXXABI.po: DeclNodes.inc.h MicrosoftCXXABI.po: DiagnosticCommonKinds.inc.h MicrosoftCXXABI.po: StmtNodes.inc.h MicrosoftMangle.o: AttrList.inc.h MicrosoftMangle.o: Attrs.inc.h +MicrosoftMangle.o: CommentCommandList.inc.h MicrosoftMangle.o: DeclNodes.inc.h MicrosoftMangle.o: DiagnosticCommonKinds.inc.h MicrosoftMangle.o: StmtNodes.inc.h MicrosoftMangle.po: AttrList.inc.h MicrosoftMangle.po: Attrs.inc.h +MicrosoftMangle.po: CommentCommandList.inc.h MicrosoftMangle.po: DeclNodes.inc.h MicrosoftMangle.po: DiagnosticCommonKinds.inc.h MicrosoftMangle.po: StmtNodes.inc.h -NSAPI.o: AttrList.inc.h -NSAPI.o: Attrs.inc.h +NSAPI.o: CommentCommandList.inc.h NSAPI.o: DeclNodes.inc.h NSAPI.o: DiagnosticCommonKinds.inc.h NSAPI.o: StmtNodes.inc.h -NSAPI.po: AttrList.inc.h -NSAPI.po: Attrs.inc.h +NSAPI.po: CommentCommandList.inc.h NSAPI.po: DeclNodes.inc.h NSAPI.po: DiagnosticCommonKinds.inc.h NSAPI.po: StmtNodes.inc.h -NestedNameSpecifier.o: AttrList.inc.h -NestedNameSpecifier.o: Attrs.inc.h +NestedNameSpecifier.o: CommentCommandList.inc.h NestedNameSpecifier.o: DeclNodes.inc.h NestedNameSpecifier.o: DiagnosticCommonKinds.inc.h NestedNameSpecifier.o: StmtNodes.inc.h -NestedNameSpecifier.po: AttrList.inc.h -NestedNameSpecifier.po: Attrs.inc.h +NestedNameSpecifier.po: CommentCommandList.inc.h NestedNameSpecifier.po: DeclNodes.inc.h NestedNameSpecifier.po: DiagnosticCommonKinds.inc.h NestedNameSpecifier.po: StmtNodes.inc.h -ParentMap.o: AttrList.inc.h -ParentMap.o: Attrs.inc.h ParentMap.o: DeclNodes.inc.h ParentMap.o: DiagnosticCommonKinds.inc.h ParentMap.o: StmtNodes.inc.h -ParentMap.po: AttrList.inc.h -ParentMap.po: Attrs.inc.h ParentMap.po: DeclNodes.inc.h ParentMap.po: DiagnosticCommonKinds.inc.h ParentMap.po: StmtNodes.inc.h -RawCommentList.o: AttrList.inc.h -RawCommentList.o: Attrs.inc.h +RawCommentList.o: CommentCommandList.inc.h RawCommentList.o: CommentNodes.inc.h RawCommentList.o: DeclNodes.inc.h RawCommentList.o: DiagnosticCommonKinds.inc.h -RawCommentList.po: AttrList.inc.h -RawCommentList.po: Attrs.inc.h +RawCommentList.o: StmtNodes.inc.h +RawCommentList.po: CommentCommandList.inc.h RawCommentList.po: CommentNodes.inc.h RawCommentList.po: DeclNodes.inc.h RawCommentList.po: DiagnosticCommonKinds.inc.h -RecordLayout.o: AttrList.inc.h -RecordLayout.o: Attrs.inc.h +RawCommentList.po: StmtNodes.inc.h +RecordLayout.o: CommentCommandList.inc.h RecordLayout.o: DeclNodes.inc.h RecordLayout.o: DiagnosticCommonKinds.inc.h RecordLayout.o: StmtNodes.inc.h -RecordLayout.po: AttrList.inc.h -RecordLayout.po: Attrs.inc.h +RecordLayout.po: CommentCommandList.inc.h RecordLayout.po: DeclNodes.inc.h RecordLayout.po: DiagnosticCommonKinds.inc.h RecordLayout.po: StmtNodes.inc.h RecordLayoutBuilder.o: AttrList.inc.h RecordLayoutBuilder.o: Attrs.inc.h +RecordLayoutBuilder.o: CommentCommandList.inc.h RecordLayoutBuilder.o: DeclNodes.inc.h RecordLayoutBuilder.o: DiagnosticCommonKinds.inc.h RecordLayoutBuilder.o: DiagnosticSemaKinds.inc.h RecordLayoutBuilder.o: StmtNodes.inc.h RecordLayoutBuilder.po: AttrList.inc.h RecordLayoutBuilder.po: Attrs.inc.h +RecordLayoutBuilder.po: CommentCommandList.inc.h RecordLayoutBuilder.po: DeclNodes.inc.h RecordLayoutBuilder.po: DiagnosticCommonKinds.inc.h RecordLayoutBuilder.po: DiagnosticSemaKinds.inc.h RecordLayoutBuilder.po: StmtNodes.inc.h -SelectorLocationsKind.o: AttrList.inc.h -SelectorLocationsKind.o: Attrs.inc.h SelectorLocationsKind.o: DeclNodes.inc.h SelectorLocationsKind.o: DiagnosticCommonKinds.inc.h SelectorLocationsKind.o: StmtNodes.inc.h -SelectorLocationsKind.po: AttrList.inc.h -SelectorLocationsKind.po: Attrs.inc.h SelectorLocationsKind.po: DeclNodes.inc.h SelectorLocationsKind.po: DiagnosticCommonKinds.inc.h SelectorLocationsKind.po: StmtNodes.inc.h -Stmt.o: AttrList.inc.h -Stmt.o: Attrs.inc.h +Stmt.o: CommentCommandList.inc.h Stmt.o: DeclNodes.inc.h Stmt.o: DiagnosticASTKinds.inc.h Stmt.o: DiagnosticCommonKinds.inc.h Stmt.o: StmtNodes.inc.h -Stmt.po: AttrList.inc.h -Stmt.po: Attrs.inc.h +Stmt.po: CommentCommandList.inc.h Stmt.po: DeclNodes.inc.h Stmt.po: DiagnosticASTKinds.inc.h Stmt.po: DiagnosticCommonKinds.inc.h Stmt.po: StmtNodes.inc.h -StmtDumper.o: AttrList.inc.h -StmtDumper.o: Attrs.inc.h -StmtDumper.o: DeclNodes.inc.h -StmtDumper.o: DiagnosticCommonKinds.inc.h -StmtDumper.o: StmtNodes.inc.h -StmtDumper.po: AttrList.inc.h -StmtDumper.po: Attrs.inc.h -StmtDumper.po: DeclNodes.inc.h -StmtDumper.po: DiagnosticCommonKinds.inc.h -StmtDumper.po: StmtNodes.inc.h -StmtIterator.o: AttrList.inc.h -StmtIterator.o: Attrs.inc.h StmtIterator.o: DeclNodes.inc.h StmtIterator.o: DiagnosticCommonKinds.inc.h -StmtIterator.po: AttrList.inc.h -StmtIterator.po: Attrs.inc.h StmtIterator.po: DeclNodes.inc.h StmtIterator.po: DiagnosticCommonKinds.inc.h StmtPrinter.o: AttrList.inc.h StmtPrinter.o: Attrs.inc.h +StmtPrinter.o: CommentCommandList.inc.h StmtPrinter.o: DeclNodes.inc.h StmtPrinter.o: DiagnosticCommonKinds.inc.h StmtPrinter.o: StmtNodes.inc.h StmtPrinter.po: AttrList.inc.h StmtPrinter.po: Attrs.inc.h +StmtPrinter.po: CommentCommandList.inc.h StmtPrinter.po: DeclNodes.inc.h StmtPrinter.po: DiagnosticCommonKinds.inc.h StmtPrinter.po: StmtNodes.inc.h -StmtProfile.o: AttrList.inc.h -StmtProfile.o: Attrs.inc.h +StmtProfile.o: CommentCommandList.inc.h StmtProfile.o: DeclNodes.inc.h StmtProfile.o: DiagnosticCommonKinds.inc.h StmtProfile.o: StmtNodes.inc.h -StmtProfile.po: AttrList.inc.h -StmtProfile.po: Attrs.inc.h +StmtProfile.po: CommentCommandList.inc.h StmtProfile.po: DeclNodes.inc.h StmtProfile.po: DiagnosticCommonKinds.inc.h StmtProfile.po: StmtNodes.inc.h -StmtViz.o: AttrList.inc.h -StmtViz.o: Attrs.inc.h StmtViz.o: DeclNodes.inc.h StmtViz.o: DiagnosticCommonKinds.inc.h StmtViz.o: StmtNodes.inc.h -StmtViz.po: AttrList.inc.h -StmtViz.po: Attrs.inc.h StmtViz.po: DeclNodes.inc.h StmtViz.po: DiagnosticCommonKinds.inc.h StmtViz.po: StmtNodes.inc.h -TemplateBase.o: AttrList.inc.h -TemplateBase.o: Attrs.inc.h +TemplateBase.o: CommentCommandList.inc.h TemplateBase.o: DeclNodes.inc.h TemplateBase.o: DiagnosticCommonKinds.inc.h TemplateBase.o: StmtNodes.inc.h -TemplateBase.po: AttrList.inc.h -TemplateBase.po: Attrs.inc.h +TemplateBase.po: CommentCommandList.inc.h TemplateBase.po: DeclNodes.inc.h TemplateBase.po: DiagnosticCommonKinds.inc.h TemplateBase.po: StmtNodes.inc.h -TemplateName.o: AttrList.inc.h -TemplateName.o: Attrs.inc.h TemplateName.o: DeclNodes.inc.h TemplateName.o: DiagnosticCommonKinds.inc.h TemplateName.o: StmtNodes.inc.h -TemplateName.po: AttrList.inc.h -TemplateName.po: Attrs.inc.h TemplateName.po: DeclNodes.inc.h TemplateName.po: DiagnosticCommonKinds.inc.h TemplateName.po: StmtNodes.inc.h Type.o: AttrList.inc.h Type.o: Attrs.inc.h +Type.o: CommentCommandList.inc.h Type.o: DeclNodes.inc.h Type.o: DiagnosticCommonKinds.inc.h Type.o: StmtNodes.inc.h Type.po: AttrList.inc.h Type.po: Attrs.inc.h +Type.po: CommentCommandList.inc.h Type.po: DeclNodes.inc.h Type.po: DiagnosticCommonKinds.inc.h Type.po: StmtNodes.inc.h -TypeLoc.o: AttrList.inc.h -TypeLoc.o: Attrs.inc.h +TypeLoc.o: CommentCommandList.inc.h TypeLoc.o: DeclNodes.inc.h TypeLoc.o: DiagnosticCommonKinds.inc.h TypeLoc.o: StmtNodes.inc.h -TypeLoc.po: AttrList.inc.h -TypeLoc.po: Attrs.inc.h +TypeLoc.po: CommentCommandList.inc.h TypeLoc.po: DeclNodes.inc.h TypeLoc.po: DiagnosticCommonKinds.inc.h TypeLoc.po: StmtNodes.inc.h -TypePrinter.o: AttrList.inc.h -TypePrinter.o: Attrs.inc.h +TypePrinter.o: CommentCommandList.inc.h TypePrinter.o: DeclNodes.inc.h TypePrinter.o: DiagnosticCommonKinds.inc.h TypePrinter.o: StmtNodes.inc.h -TypePrinter.po: AttrList.inc.h -TypePrinter.po: Attrs.inc.h +TypePrinter.po: CommentCommandList.inc.h TypePrinter.po: DeclNodes.inc.h TypePrinter.po: DiagnosticCommonKinds.inc.h TypePrinter.po: StmtNodes.inc.h -VTTBuilder.o: AttrList.inc.h -VTTBuilder.o: Attrs.inc.h +VTTBuilder.o: CommentCommandList.inc.h VTTBuilder.o: DeclNodes.inc.h VTTBuilder.o: DiagnosticCommonKinds.inc.h VTTBuilder.o: StmtNodes.inc.h -VTTBuilder.po: AttrList.inc.h -VTTBuilder.po: Attrs.inc.h +VTTBuilder.po: CommentCommandList.inc.h VTTBuilder.po: DeclNodes.inc.h VTTBuilder.po: DiagnosticCommonKinds.inc.h VTTBuilder.po: StmtNodes.inc.h -VTableBuilder.o: AttrList.inc.h -VTableBuilder.o: Attrs.inc.h +VTableBuilder.o: CommentCommandList.inc.h VTableBuilder.o: DeclNodes.inc.h VTableBuilder.o: DiagnosticCommonKinds.inc.h VTableBuilder.o: StmtNodes.inc.h -VTableBuilder.po: AttrList.inc.h -VTableBuilder.po: Attrs.inc.h +VTableBuilder.po: CommentCommandList.inc.h VTableBuilder.po: DeclNodes.inc.h VTableBuilder.po: DiagnosticCommonKinds.inc.h VTableBuilder.po: StmtNodes.inc.h diff --git a/lib/clang/libclangbasic/Makefile.depend b/lib/clang/libclangbasic/Makefile.depend index 74a968f9daef..30ba0f01f0d8 100644 --- a/lib/clang/libclangbasic/Makefile.depend +++ b/lib/clang/libclangbasic/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/clang/include \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include diff --git a/lib/clang/libclangcodegen/Makefile.depend b/lib/clang/libclangcodegen/Makefile.depend index 94780585c27b..68834643e118 100644 --- a/lib/clang/libclangcodegen/Makefile.depend +++ b/lib/clang/libclangcodegen/Makefile.depend @@ -8,6 +8,8 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ + usr.bin/clang/tblgen.host \ .include @@ -18,18 +20,35 @@ BackendUtil.o: DiagnosticCommonKinds.inc.h BackendUtil.o: DiagnosticFrontendKinds.inc.h BackendUtil.po: DiagnosticCommonKinds.inc.h BackendUtil.po: DiagnosticFrontendKinds.inc.h +CGAtomic.o: AttrList.inc.h +CGAtomic.o: Attrs.inc.h +CGAtomic.o: CommentCommandList.inc.h +CGAtomic.o: DeclNodes.inc.h +CGAtomic.o: DiagnosticCommonKinds.inc.h +CGAtomic.o: Intrinsics.inc.h +CGAtomic.o: StmtNodes.inc.h +CGAtomic.po: AttrList.inc.h +CGAtomic.po: Attrs.inc.h +CGAtomic.po: CommentCommandList.inc.h +CGAtomic.po: DeclNodes.inc.h +CGAtomic.po: DiagnosticCommonKinds.inc.h +CGAtomic.po: Intrinsics.inc.h +CGAtomic.po: StmtNodes.inc.h CGBlocks.o: AttrList.inc.h CGBlocks.o: Attrs.inc.h +CGBlocks.o: CommentCommandList.inc.h CGBlocks.o: DeclNodes.inc.h CGBlocks.o: DiagnosticCommonKinds.inc.h CGBlocks.o: StmtNodes.inc.h CGBlocks.po: AttrList.inc.h CGBlocks.po: Attrs.inc.h +CGBlocks.po: CommentCommandList.inc.h CGBlocks.po: DeclNodes.inc.h CGBlocks.po: DiagnosticCommonKinds.inc.h CGBlocks.po: StmtNodes.inc.h CGBuiltin.o: AttrList.inc.h CGBuiltin.o: Attrs.inc.h +CGBuiltin.o: CommentCommandList.inc.h CGBuiltin.o: DeclNodes.inc.h CGBuiltin.o: DiagnosticCommonKinds.inc.h CGBuiltin.o: Intrinsics.inc.h @@ -37,6 +56,7 @@ CGBuiltin.o: StmtNodes.inc.h CGBuiltin.o: arm_neon.inc.h CGBuiltin.po: AttrList.inc.h CGBuiltin.po: Attrs.inc.h +CGBuiltin.po: CommentCommandList.inc.h CGBuiltin.po: DeclNodes.inc.h CGBuiltin.po: DiagnosticCommonKinds.inc.h CGBuiltin.po: Intrinsics.inc.h @@ -44,389 +64,461 @@ CGBuiltin.po: StmtNodes.inc.h CGBuiltin.po: arm_neon.inc.h CGCUDANV.o: AttrList.inc.h CGCUDANV.o: Attrs.inc.h +CGCUDANV.o: CommentCommandList.inc.h CGCUDANV.o: DeclNodes.inc.h CGCUDANV.o: DiagnosticCommonKinds.inc.h CGCUDANV.o: StmtNodes.inc.h CGCUDANV.po: AttrList.inc.h CGCUDANV.po: Attrs.inc.h +CGCUDANV.po: CommentCommandList.inc.h CGCUDANV.po: DeclNodes.inc.h CGCUDANV.po: DiagnosticCommonKinds.inc.h CGCUDANV.po: StmtNodes.inc.h CGCUDARuntime.o: AttrList.inc.h CGCUDARuntime.o: Attrs.inc.h +CGCUDARuntime.o: CommentCommandList.inc.h CGCUDARuntime.o: DeclNodes.inc.h CGCUDARuntime.o: DiagnosticCommonKinds.inc.h CGCUDARuntime.o: StmtNodes.inc.h CGCUDARuntime.po: AttrList.inc.h CGCUDARuntime.po: Attrs.inc.h +CGCUDARuntime.po: CommentCommandList.inc.h CGCUDARuntime.po: DeclNodes.inc.h CGCUDARuntime.po: DiagnosticCommonKinds.inc.h CGCUDARuntime.po: StmtNodes.inc.h CGCXX.o: AttrList.inc.h CGCXX.o: Attrs.inc.h +CGCXX.o: CommentCommandList.inc.h CGCXX.o: DeclNodes.inc.h CGCXX.o: DiagnosticCommonKinds.inc.h CGCXX.o: StmtNodes.inc.h CGCXX.po: AttrList.inc.h CGCXX.po: Attrs.inc.h +CGCXX.po: CommentCommandList.inc.h CGCXX.po: DeclNodes.inc.h CGCXX.po: DiagnosticCommonKinds.inc.h CGCXX.po: StmtNodes.inc.h CGCXXABI.o: AttrList.inc.h CGCXXABI.o: Attrs.inc.h +CGCXXABI.o: CommentCommandList.inc.h CGCXXABI.o: DeclNodes.inc.h CGCXXABI.o: DiagnosticCommonKinds.inc.h CGCXXABI.o: StmtNodes.inc.h CGCXXABI.po: AttrList.inc.h CGCXXABI.po: Attrs.inc.h +CGCXXABI.po: CommentCommandList.inc.h CGCXXABI.po: DeclNodes.inc.h CGCXXABI.po: DiagnosticCommonKinds.inc.h CGCXXABI.po: StmtNodes.inc.h CGCall.o: AttrList.inc.h CGCall.o: Attrs.inc.h +CGCall.o: CommentCommandList.inc.h CGCall.o: DeclNodes.inc.h CGCall.o: DiagnosticCommonKinds.inc.h CGCall.o: StmtNodes.inc.h CGCall.po: AttrList.inc.h CGCall.po: Attrs.inc.h +CGCall.po: CommentCommandList.inc.h CGCall.po: DeclNodes.inc.h CGCall.po: DiagnosticCommonKinds.inc.h CGCall.po: StmtNodes.inc.h CGClass.o: AttrList.inc.h CGClass.o: Attrs.inc.h +CGClass.o: CommentCommandList.inc.h CGClass.o: DeclNodes.inc.h CGClass.o: DiagnosticCommonKinds.inc.h CGClass.o: StmtNodes.inc.h +CGClass.o: arm_neon.inc.h CGClass.po: AttrList.inc.h CGClass.po: Attrs.inc.h +CGClass.po: CommentCommandList.inc.h CGClass.po: DeclNodes.inc.h CGClass.po: DiagnosticCommonKinds.inc.h CGClass.po: StmtNodes.inc.h +CGClass.po: arm_neon.inc.h CGCleanup.o: AttrList.inc.h CGCleanup.o: Attrs.inc.h +CGCleanup.o: CommentCommandList.inc.h CGCleanup.o: DeclNodes.inc.h CGCleanup.o: DiagnosticCommonKinds.inc.h CGCleanup.o: StmtNodes.inc.h CGCleanup.po: AttrList.inc.h CGCleanup.po: Attrs.inc.h +CGCleanup.po: CommentCommandList.inc.h CGCleanup.po: DeclNodes.inc.h CGCleanup.po: DiagnosticCommonKinds.inc.h CGCleanup.po: StmtNodes.inc.h CGDebugInfo.o: AttrList.inc.h CGDebugInfo.o: Attrs.inc.h +CGDebugInfo.o: CommentCommandList.inc.h CGDebugInfo.o: DeclNodes.inc.h CGDebugInfo.o: DiagnosticCommonKinds.inc.h CGDebugInfo.o: Intrinsics.inc.h CGDebugInfo.o: StmtNodes.inc.h CGDebugInfo.po: AttrList.inc.h CGDebugInfo.po: Attrs.inc.h +CGDebugInfo.po: CommentCommandList.inc.h CGDebugInfo.po: DeclNodes.inc.h CGDebugInfo.po: DiagnosticCommonKinds.inc.h CGDebugInfo.po: Intrinsics.inc.h CGDebugInfo.po: StmtNodes.inc.h CGDecl.o: AttrList.inc.h CGDecl.o: Attrs.inc.h +CGDecl.o: CommentCommandList.inc.h CGDecl.o: DeclNodes.inc.h CGDecl.o: DiagnosticCommonKinds.inc.h CGDecl.o: Intrinsics.inc.h CGDecl.o: StmtNodes.inc.h CGDecl.po: AttrList.inc.h CGDecl.po: Attrs.inc.h +CGDecl.po: CommentCommandList.inc.h CGDecl.po: DeclNodes.inc.h CGDecl.po: DiagnosticCommonKinds.inc.h CGDecl.po: Intrinsics.inc.h CGDecl.po: StmtNodes.inc.h CGDeclCXX.o: AttrList.inc.h CGDeclCXX.o: Attrs.inc.h +CGDeclCXX.o: CommentCommandList.inc.h CGDeclCXX.o: DeclNodes.inc.h CGDeclCXX.o: DiagnosticCommonKinds.inc.h CGDeclCXX.o: Intrinsics.inc.h CGDeclCXX.o: StmtNodes.inc.h CGDeclCXX.po: AttrList.inc.h CGDeclCXX.po: Attrs.inc.h +CGDeclCXX.po: CommentCommandList.inc.h CGDeclCXX.po: DeclNodes.inc.h CGDeclCXX.po: DiagnosticCommonKinds.inc.h CGDeclCXX.po: Intrinsics.inc.h CGDeclCXX.po: StmtNodes.inc.h CGException.o: AttrList.inc.h CGException.o: Attrs.inc.h +CGException.o: CommentCommandList.inc.h CGException.o: DeclNodes.inc.h CGException.o: DiagnosticCommonKinds.inc.h CGException.o: Intrinsics.inc.h CGException.o: StmtNodes.inc.h CGException.po: AttrList.inc.h CGException.po: Attrs.inc.h +CGException.po: CommentCommandList.inc.h CGException.po: DeclNodes.inc.h CGException.po: DiagnosticCommonKinds.inc.h CGException.po: Intrinsics.inc.h CGException.po: StmtNodes.inc.h CGExpr.o: AttrList.inc.h CGExpr.o: Attrs.inc.h +CGExpr.o: CommentCommandList.inc.h CGExpr.o: DeclNodes.inc.h CGExpr.o: DiagnosticCommonKinds.inc.h CGExpr.o: Intrinsics.inc.h CGExpr.o: StmtNodes.inc.h CGExpr.po: AttrList.inc.h CGExpr.po: Attrs.inc.h +CGExpr.po: CommentCommandList.inc.h CGExpr.po: DeclNodes.inc.h CGExpr.po: DiagnosticCommonKinds.inc.h CGExpr.po: Intrinsics.inc.h CGExpr.po: StmtNodes.inc.h CGExprAgg.o: AttrList.inc.h CGExprAgg.o: Attrs.inc.h +CGExprAgg.o: CommentCommandList.inc.h CGExprAgg.o: DeclNodes.inc.h CGExprAgg.o: DiagnosticCommonKinds.inc.h CGExprAgg.o: Intrinsics.inc.h CGExprAgg.o: StmtNodes.inc.h CGExprAgg.po: AttrList.inc.h CGExprAgg.po: Attrs.inc.h +CGExprAgg.po: CommentCommandList.inc.h CGExprAgg.po: DeclNodes.inc.h CGExprAgg.po: DiagnosticCommonKinds.inc.h CGExprAgg.po: Intrinsics.inc.h CGExprAgg.po: StmtNodes.inc.h CGExprCXX.o: AttrList.inc.h CGExprCXX.o: Attrs.inc.h +CGExprCXX.o: CommentCommandList.inc.h CGExprCXX.o: DeclNodes.inc.h CGExprCXX.o: DiagnosticCommonKinds.inc.h CGExprCXX.o: Intrinsics.inc.h CGExprCXX.o: StmtNodes.inc.h CGExprCXX.po: AttrList.inc.h CGExprCXX.po: Attrs.inc.h +CGExprCXX.po: CommentCommandList.inc.h CGExprCXX.po: DeclNodes.inc.h CGExprCXX.po: DiagnosticCommonKinds.inc.h CGExprCXX.po: Intrinsics.inc.h CGExprCXX.po: StmtNodes.inc.h CGExprComplex.o: AttrList.inc.h CGExprComplex.o: Attrs.inc.h +CGExprComplex.o: CommentCommandList.inc.h CGExprComplex.o: DeclNodes.inc.h CGExprComplex.o: DiagnosticCommonKinds.inc.h CGExprComplex.o: StmtNodes.inc.h CGExprComplex.po: AttrList.inc.h CGExprComplex.po: Attrs.inc.h +CGExprComplex.po: CommentCommandList.inc.h CGExprComplex.po: DeclNodes.inc.h CGExprComplex.po: DiagnosticCommonKinds.inc.h CGExprComplex.po: StmtNodes.inc.h CGExprConstant.o: AttrList.inc.h CGExprConstant.o: Attrs.inc.h +CGExprConstant.o: CommentCommandList.inc.h CGExprConstant.o: DeclNodes.inc.h CGExprConstant.o: DiagnosticCommonKinds.inc.h CGExprConstant.o: StmtNodes.inc.h CGExprConstant.po: AttrList.inc.h CGExprConstant.po: Attrs.inc.h +CGExprConstant.po: CommentCommandList.inc.h CGExprConstant.po: DeclNodes.inc.h CGExprConstant.po: DiagnosticCommonKinds.inc.h CGExprConstant.po: StmtNodes.inc.h CGExprScalar.o: AttrList.inc.h CGExprScalar.o: Attrs.inc.h +CGExprScalar.o: CommentCommandList.inc.h CGExprScalar.o: DeclNodes.inc.h CGExprScalar.o: DiagnosticCommonKinds.inc.h CGExprScalar.o: Intrinsics.inc.h CGExprScalar.o: StmtNodes.inc.h CGExprScalar.po: AttrList.inc.h CGExprScalar.po: Attrs.inc.h +CGExprScalar.po: CommentCommandList.inc.h CGExprScalar.po: DeclNodes.inc.h CGExprScalar.po: DiagnosticCommonKinds.inc.h CGExprScalar.po: Intrinsics.inc.h CGExprScalar.po: StmtNodes.inc.h CGObjC.o: AttrList.inc.h CGObjC.o: Attrs.inc.h +CGObjC.o: CommentCommandList.inc.h CGObjC.o: DeclNodes.inc.h CGObjC.o: DiagnosticCommonKinds.inc.h CGObjC.o: StmtNodes.inc.h CGObjC.po: AttrList.inc.h CGObjC.po: Attrs.inc.h +CGObjC.po: CommentCommandList.inc.h CGObjC.po: DeclNodes.inc.h CGObjC.po: DiagnosticCommonKinds.inc.h CGObjC.po: StmtNodes.inc.h CGObjCGNU.o: AttrList.inc.h CGObjCGNU.o: Attrs.inc.h +CGObjCGNU.o: CommentCommandList.inc.h CGObjCGNU.o: DeclNodes.inc.h CGObjCGNU.o: DiagnosticCommonKinds.inc.h CGObjCGNU.o: Intrinsics.inc.h CGObjCGNU.o: StmtNodes.inc.h CGObjCGNU.po: AttrList.inc.h CGObjCGNU.po: Attrs.inc.h +CGObjCGNU.po: CommentCommandList.inc.h CGObjCGNU.po: DeclNodes.inc.h CGObjCGNU.po: DiagnosticCommonKinds.inc.h CGObjCGNU.po: Intrinsics.inc.h CGObjCGNU.po: StmtNodes.inc.h CGObjCMac.o: AttrList.inc.h CGObjCMac.o: Attrs.inc.h +CGObjCMac.o: CommentCommandList.inc.h CGObjCMac.o: DeclNodes.inc.h CGObjCMac.o: DiagnosticCommonKinds.inc.h CGObjCMac.o: Intrinsics.inc.h CGObjCMac.o: StmtNodes.inc.h CGObjCMac.po: AttrList.inc.h CGObjCMac.po: Attrs.inc.h +CGObjCMac.po: CommentCommandList.inc.h CGObjCMac.po: DeclNodes.inc.h CGObjCMac.po: DiagnosticCommonKinds.inc.h CGObjCMac.po: Intrinsics.inc.h CGObjCMac.po: StmtNodes.inc.h CGObjCRuntime.o: AttrList.inc.h CGObjCRuntime.o: Attrs.inc.h +CGObjCRuntime.o: CommentCommandList.inc.h CGObjCRuntime.o: DeclNodes.inc.h CGObjCRuntime.o: DiagnosticCommonKinds.inc.h CGObjCRuntime.o: StmtNodes.inc.h CGObjCRuntime.po: AttrList.inc.h CGObjCRuntime.po: Attrs.inc.h +CGObjCRuntime.po: CommentCommandList.inc.h CGObjCRuntime.po: DeclNodes.inc.h CGObjCRuntime.po: DiagnosticCommonKinds.inc.h CGObjCRuntime.po: StmtNodes.inc.h CGOpenCLRuntime.o: AttrList.inc.h CGOpenCLRuntime.o: Attrs.inc.h +CGOpenCLRuntime.o: CommentCommandList.inc.h CGOpenCLRuntime.o: DeclNodes.inc.h CGOpenCLRuntime.o: DiagnosticCommonKinds.inc.h CGOpenCLRuntime.o: StmtNodes.inc.h CGOpenCLRuntime.po: AttrList.inc.h CGOpenCLRuntime.po: Attrs.inc.h +CGOpenCLRuntime.po: CommentCommandList.inc.h CGOpenCLRuntime.po: DeclNodes.inc.h CGOpenCLRuntime.po: DiagnosticCommonKinds.inc.h CGOpenCLRuntime.po: StmtNodes.inc.h CGRTTI.o: AttrList.inc.h CGRTTI.o: Attrs.inc.h +CGRTTI.o: CommentCommandList.inc.h CGRTTI.o: DeclNodes.inc.h CGRTTI.o: DiagnosticCommonKinds.inc.h CGRTTI.o: StmtNodes.inc.h CGRTTI.po: AttrList.inc.h CGRTTI.po: Attrs.inc.h +CGRTTI.po: CommentCommandList.inc.h CGRTTI.po: DeclNodes.inc.h CGRTTI.po: DiagnosticCommonKinds.inc.h CGRTTI.po: StmtNodes.inc.h CGRecordLayoutBuilder.o: AttrList.inc.h CGRecordLayoutBuilder.o: Attrs.inc.h +CGRecordLayoutBuilder.o: CommentCommandList.inc.h CGRecordLayoutBuilder.o: DeclNodes.inc.h CGRecordLayoutBuilder.o: DiagnosticCommonKinds.inc.h CGRecordLayoutBuilder.o: StmtNodes.inc.h CGRecordLayoutBuilder.po: AttrList.inc.h CGRecordLayoutBuilder.po: Attrs.inc.h +CGRecordLayoutBuilder.po: CommentCommandList.inc.h CGRecordLayoutBuilder.po: DeclNodes.inc.h CGRecordLayoutBuilder.po: DiagnosticCommonKinds.inc.h CGRecordLayoutBuilder.po: StmtNodes.inc.h CGStmt.o: AttrList.inc.h CGStmt.o: Attrs.inc.h +CGStmt.o: CommentCommandList.inc.h CGStmt.o: DeclNodes.inc.h CGStmt.o: DiagnosticCommonKinds.inc.h CGStmt.o: Intrinsics.inc.h CGStmt.o: StmtNodes.inc.h CGStmt.po: AttrList.inc.h CGStmt.po: Attrs.inc.h +CGStmt.po: CommentCommandList.inc.h CGStmt.po: DeclNodes.inc.h CGStmt.po: DiagnosticCommonKinds.inc.h CGStmt.po: Intrinsics.inc.h CGStmt.po: StmtNodes.inc.h CGVTT.o: AttrList.inc.h CGVTT.o: Attrs.inc.h +CGVTT.o: CommentCommandList.inc.h CGVTT.o: DeclNodes.inc.h CGVTT.o: DiagnosticCommonKinds.inc.h CGVTT.o: StmtNodes.inc.h CGVTT.po: AttrList.inc.h CGVTT.po: Attrs.inc.h +CGVTT.po: CommentCommandList.inc.h CGVTT.po: DeclNodes.inc.h CGVTT.po: DiagnosticCommonKinds.inc.h CGVTT.po: StmtNodes.inc.h CGVTables.o: AttrList.inc.h CGVTables.o: Attrs.inc.h +CGVTables.o: CommentCommandList.inc.h CGVTables.o: DeclNodes.inc.h CGVTables.o: DiagnosticCommonKinds.inc.h CGVTables.o: StmtNodes.inc.h CGVTables.po: AttrList.inc.h CGVTables.po: Attrs.inc.h +CGVTables.po: CommentCommandList.inc.h CGVTables.po: DeclNodes.inc.h CGVTables.po: DiagnosticCommonKinds.inc.h CGVTables.po: StmtNodes.inc.h -CodeGenAction.o: AttrList.inc.h -CodeGenAction.o: Attrs.inc.h +CodeGenAction.o: CommentCommandList.inc.h CodeGenAction.o: DeclNodes.inc.h CodeGenAction.o: DiagnosticCommonKinds.inc.h CodeGenAction.o: DiagnosticFrontendKinds.inc.h -CodeGenAction.po: AttrList.inc.h -CodeGenAction.po: Attrs.inc.h +CodeGenAction.o: StmtNodes.inc.h +CodeGenAction.po: CommentCommandList.inc.h CodeGenAction.po: DeclNodes.inc.h CodeGenAction.po: DiagnosticCommonKinds.inc.h CodeGenAction.po: DiagnosticFrontendKinds.inc.h +CodeGenAction.po: StmtNodes.inc.h CodeGenFunction.o: AttrList.inc.h CodeGenFunction.o: Attrs.inc.h +CodeGenFunction.o: CommentCommandList.inc.h CodeGenFunction.o: DeclNodes.inc.h CodeGenFunction.o: DiagnosticCommonKinds.inc.h CodeGenFunction.o: Intrinsics.inc.h CodeGenFunction.o: StmtNodes.inc.h CodeGenFunction.po: AttrList.inc.h CodeGenFunction.po: Attrs.inc.h +CodeGenFunction.po: CommentCommandList.inc.h CodeGenFunction.po: DeclNodes.inc.h CodeGenFunction.po: DiagnosticCommonKinds.inc.h CodeGenFunction.po: Intrinsics.inc.h CodeGenFunction.po: StmtNodes.inc.h CodeGenModule.o: AttrList.inc.h CodeGenModule.o: Attrs.inc.h +CodeGenModule.o: CommentCommandList.inc.h CodeGenModule.o: DeclNodes.inc.h CodeGenModule.o: DiagnosticCommonKinds.inc.h CodeGenModule.o: Intrinsics.inc.h CodeGenModule.o: StmtNodes.inc.h CodeGenModule.po: AttrList.inc.h CodeGenModule.po: Attrs.inc.h +CodeGenModule.po: CommentCommandList.inc.h CodeGenModule.po: DeclNodes.inc.h CodeGenModule.po: DiagnosticCommonKinds.inc.h CodeGenModule.po: Intrinsics.inc.h CodeGenModule.po: StmtNodes.inc.h CodeGenTBAA.o: AttrList.inc.h CodeGenTBAA.o: Attrs.inc.h +CodeGenTBAA.o: CommentCommandList.inc.h CodeGenTBAA.o: DeclNodes.inc.h CodeGenTBAA.o: DiagnosticCommonKinds.inc.h CodeGenTBAA.o: StmtNodes.inc.h CodeGenTBAA.po: AttrList.inc.h CodeGenTBAA.po: Attrs.inc.h +CodeGenTBAA.po: CommentCommandList.inc.h CodeGenTBAA.po: DeclNodes.inc.h CodeGenTBAA.po: DiagnosticCommonKinds.inc.h CodeGenTBAA.po: StmtNodes.inc.h CodeGenTypes.o: AttrList.inc.h CodeGenTypes.o: Attrs.inc.h +CodeGenTypes.o: CommentCommandList.inc.h CodeGenTypes.o: DeclNodes.inc.h CodeGenTypes.o: DiagnosticCommonKinds.inc.h CodeGenTypes.o: StmtNodes.inc.h CodeGenTypes.po: AttrList.inc.h CodeGenTypes.po: Attrs.inc.h +CodeGenTypes.po: CommentCommandList.inc.h CodeGenTypes.po: DeclNodes.inc.h CodeGenTypes.po: DiagnosticCommonKinds.inc.h CodeGenTypes.po: StmtNodes.inc.h ItaniumCXXABI.o: AttrList.inc.h ItaniumCXXABI.o: Attrs.inc.h +ItaniumCXXABI.o: CommentCommandList.inc.h ItaniumCXXABI.o: DeclNodes.inc.h ItaniumCXXABI.o: DiagnosticCommonKinds.inc.h ItaniumCXXABI.o: Intrinsics.inc.h ItaniumCXXABI.o: StmtNodes.inc.h ItaniumCXXABI.po: AttrList.inc.h ItaniumCXXABI.po: Attrs.inc.h +ItaniumCXXABI.po: CommentCommandList.inc.h ItaniumCXXABI.po: DeclNodes.inc.h ItaniumCXXABI.po: DiagnosticCommonKinds.inc.h ItaniumCXXABI.po: Intrinsics.inc.h ItaniumCXXABI.po: StmtNodes.inc.h MicrosoftCXXABI.o: AttrList.inc.h MicrosoftCXXABI.o: Attrs.inc.h +MicrosoftCXXABI.o: CommentCommandList.inc.h MicrosoftCXXABI.o: DeclNodes.inc.h MicrosoftCXXABI.o: DiagnosticCommonKinds.inc.h MicrosoftCXXABI.o: StmtNodes.inc.h MicrosoftCXXABI.po: AttrList.inc.h MicrosoftCXXABI.po: Attrs.inc.h +MicrosoftCXXABI.po: CommentCommandList.inc.h MicrosoftCXXABI.po: DeclNodes.inc.h MicrosoftCXXABI.po: DiagnosticCommonKinds.inc.h MicrosoftCXXABI.po: StmtNodes.inc.h ModuleBuilder.o: AttrList.inc.h ModuleBuilder.o: Attrs.inc.h +ModuleBuilder.o: CommentCommandList.inc.h ModuleBuilder.o: DeclNodes.inc.h ModuleBuilder.o: DiagnosticCommonKinds.inc.h ModuleBuilder.o: StmtNodes.inc.h ModuleBuilder.po: AttrList.inc.h ModuleBuilder.po: Attrs.inc.h +ModuleBuilder.po: CommentCommandList.inc.h ModuleBuilder.po: DeclNodes.inc.h ModuleBuilder.po: DiagnosticCommonKinds.inc.h ModuleBuilder.po: StmtNodes.inc.h TargetInfo.o: AttrList.inc.h TargetInfo.o: Attrs.inc.h +TargetInfo.o: CommentCommandList.inc.h TargetInfo.o: DeclNodes.inc.h TargetInfo.o: DiagnosticCommonKinds.inc.h TargetInfo.o: StmtNodes.inc.h TargetInfo.po: AttrList.inc.h TargetInfo.po: Attrs.inc.h +TargetInfo.po: CommentCommandList.inc.h TargetInfo.po: DeclNodes.inc.h TargetInfo.po: DiagnosticCommonKinds.inc.h TargetInfo.po: StmtNodes.inc.h diff --git a/lib/clang/libclangdriver/Makefile.depend b/lib/clang/libclangdriver/Makefile.depend index ec0ab5d0d338..1859c3ba4e8c 100644 --- a/lib/clang/libclangdriver/Makefile.depend +++ b/lib/clang/libclangdriver/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include @@ -55,7 +56,9 @@ Tools.po: DiagnosticCommonKinds.inc.h Tools.po: DiagnosticDriverKinds.inc.h Tools.po: Options.inc.h WindowsToolChain.o: DiagnosticCommonKinds.inc.h +WindowsToolChain.o: DiagnosticDriverKinds.inc.h WindowsToolChain.o: Options.inc.h WindowsToolChain.po: DiagnosticCommonKinds.inc.h +WindowsToolChain.po: DiagnosticDriverKinds.inc.h WindowsToolChain.po: Options.inc.h .endif diff --git a/lib/clang/libclangedit/Makefile.depend b/lib/clang/libclangedit/Makefile.depend index 9bacc88a2928..2781622df92d 100644 --- a/lib/clang/libclangedit/Makefile.depend +++ b/lib/clang/libclangedit/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include @@ -16,13 +17,11 @@ DIRDEPS = \ # local dependencies - needed for -jN in clean tree Commit.o: DiagnosticCommonKinds.inc.h Commit.po: DiagnosticCommonKinds.inc.h -RewriteObjCFoundationAPI.o: AttrList.inc.h -RewriteObjCFoundationAPI.o: Attrs.inc.h +RewriteObjCFoundationAPI.o: CommentCommandList.inc.h RewriteObjCFoundationAPI.o: DeclNodes.inc.h RewriteObjCFoundationAPI.o: DiagnosticCommonKinds.inc.h RewriteObjCFoundationAPI.o: StmtNodes.inc.h -RewriteObjCFoundationAPI.po: AttrList.inc.h -RewriteObjCFoundationAPI.po: Attrs.inc.h +RewriteObjCFoundationAPI.po: CommentCommandList.inc.h RewriteObjCFoundationAPI.po: DeclNodes.inc.h RewriteObjCFoundationAPI.po: DiagnosticCommonKinds.inc.h RewriteObjCFoundationAPI.po: StmtNodes.inc.h diff --git a/lib/clang/libclangfrontend/Makefile.depend b/lib/clang/libclangfrontend/Makefile.depend index ec1859e27742..7191baf2c803 100644 --- a/lib/clang/libclangfrontend/Makefile.depend +++ b/lib/clang/libclangfrontend/Makefile.depend @@ -8,25 +8,25 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -ASTConsumers.o: AttrList.inc.h -ASTConsumers.o: Attrs.inc.h +ASTConsumers.o: CommentCommandList.inc.h ASTConsumers.o: DeclNodes.inc.h ASTConsumers.o: DiagnosticCommonKinds.inc.h ASTConsumers.o: StmtNodes.inc.h -ASTConsumers.po: AttrList.inc.h -ASTConsumers.po: Attrs.inc.h +ASTConsumers.po: CommentCommandList.inc.h ASTConsumers.po: DeclNodes.inc.h ASTConsumers.po: DiagnosticCommonKinds.inc.h ASTConsumers.po: StmtNodes.inc.h ASTMerge.o: AttrList.inc.h ASTMerge.o: AttrParsedAttrList.inc.h ASTMerge.o: Attrs.inc.h +ASTMerge.o: CommentCommandList.inc.h ASTMerge.o: DeclNodes.inc.h ASTMerge.o: DiagnosticASTKinds.inc.h ASTMerge.o: DiagnosticCommonKinds.inc.h @@ -34,6 +34,7 @@ ASTMerge.o: StmtNodes.inc.h ASTMerge.po: AttrList.inc.h ASTMerge.po: AttrParsedAttrList.inc.h ASTMerge.po: Attrs.inc.h +ASTMerge.po: CommentCommandList.inc.h ASTMerge.po: DeclNodes.inc.h ASTMerge.po: DiagnosticASTKinds.inc.h ASTMerge.po: DiagnosticCommonKinds.inc.h @@ -41,6 +42,7 @@ ASTMerge.po: StmtNodes.inc.h ASTUnit.o: AttrList.inc.h ASTUnit.o: AttrParsedAttrList.inc.h ASTUnit.o: Attrs.inc.h +ASTUnit.o: CommentCommandList.inc.h ASTUnit.o: DeclNodes.inc.h ASTUnit.o: DiagnosticCommonKinds.inc.h ASTUnit.o: DiagnosticFrontendKinds.inc.h @@ -48,6 +50,7 @@ ASTUnit.o: StmtNodes.inc.h ASTUnit.po: AttrList.inc.h ASTUnit.po: AttrParsedAttrList.inc.h ASTUnit.po: Attrs.inc.h +ASTUnit.po: CommentCommandList.inc.h ASTUnit.po: DeclNodes.inc.h ASTUnit.po: DiagnosticCommonKinds.inc.h ASTUnit.po: DiagnosticFrontendKinds.inc.h @@ -59,18 +62,21 @@ ChainedDiagnosticConsumer.po: DiagnosticCommonKinds.inc.h ChainedIncludesSource.o: AttrList.inc.h ChainedIncludesSource.o: AttrParsedAttrList.inc.h ChainedIncludesSource.o: Attrs.inc.h +ChainedIncludesSource.o: CommentCommandList.inc.h ChainedIncludesSource.o: DeclNodes.inc.h ChainedIncludesSource.o: DiagnosticCommonKinds.inc.h ChainedIncludesSource.o: StmtNodes.inc.h ChainedIncludesSource.po: AttrList.inc.h ChainedIncludesSource.po: AttrParsedAttrList.inc.h ChainedIncludesSource.po: Attrs.inc.h +ChainedIncludesSource.po: CommentCommandList.inc.h ChainedIncludesSource.po: DeclNodes.inc.h ChainedIncludesSource.po: DiagnosticCommonKinds.inc.h ChainedIncludesSource.po: StmtNodes.inc.h CompilerInstance.o: AttrList.inc.h CompilerInstance.o: AttrParsedAttrList.inc.h CompilerInstance.o: Attrs.inc.h +CompilerInstance.o: CommentCommandList.inc.h CompilerInstance.o: DeclNodes.inc.h CompilerInstance.o: DiagnosticCommonKinds.inc.h CompilerInstance.o: DiagnosticFrontendKinds.inc.h @@ -78,18 +84,15 @@ CompilerInstance.o: StmtNodes.inc.h CompilerInstance.po: AttrList.inc.h CompilerInstance.po: AttrParsedAttrList.inc.h CompilerInstance.po: Attrs.inc.h +CompilerInstance.po: CommentCommandList.inc.h CompilerInstance.po: DeclNodes.inc.h CompilerInstance.po: DiagnosticCommonKinds.inc.h CompilerInstance.po: DiagnosticFrontendKinds.inc.h CompilerInstance.po: StmtNodes.inc.h -CompilerInvocation.o: AttrList.inc.h -CompilerInvocation.o: Attrs.inc.h CompilerInvocation.o: DeclNodes.inc.h CompilerInvocation.o: DiagnosticCommonKinds.inc.h CompilerInvocation.o: DiagnosticDriverKinds.inc.h CompilerInvocation.o: Options.inc.h -CompilerInvocation.po: AttrList.inc.h -CompilerInvocation.po: Attrs.inc.h CompilerInvocation.po: DeclNodes.inc.h CompilerInvocation.po: DiagnosticCommonKinds.inc.h CompilerInvocation.po: DiagnosticDriverKinds.inc.h @@ -115,6 +118,7 @@ DiagnosticRenderer.po: DiagnosticCommonKinds.inc.h FrontendAction.o: AttrList.inc.h FrontendAction.o: AttrParsedAttrList.inc.h FrontendAction.o: Attrs.inc.h +FrontendAction.o: CommentCommandList.inc.h FrontendAction.o: DeclNodes.inc.h FrontendAction.o: DiagnosticCommonKinds.inc.h FrontendAction.o: DiagnosticFrontendKinds.inc.h @@ -122,6 +126,7 @@ FrontendAction.o: StmtNodes.inc.h FrontendAction.po: AttrList.inc.h FrontendAction.po: AttrParsedAttrList.inc.h FrontendAction.po: Attrs.inc.h +FrontendAction.po: CommentCommandList.inc.h FrontendAction.po: DeclNodes.inc.h FrontendAction.po: DiagnosticCommonKinds.inc.h FrontendAction.po: DiagnosticFrontendKinds.inc.h @@ -129,6 +134,7 @@ FrontendAction.po: StmtNodes.inc.h FrontendActions.o: AttrList.inc.h FrontendActions.o: AttrParsedAttrList.inc.h FrontendActions.o: Attrs.inc.h +FrontendActions.o: CommentCommandList.inc.h FrontendActions.o: DeclNodes.inc.h FrontendActions.o: DiagnosticCommonKinds.inc.h FrontendActions.o: DiagnosticFrontendKinds.inc.h @@ -136,6 +142,7 @@ FrontendActions.o: StmtNodes.inc.h FrontendActions.po: AttrList.inc.h FrontendActions.po: AttrParsedAttrList.inc.h FrontendActions.po: Attrs.inc.h +FrontendActions.po: CommentCommandList.inc.h FrontendActions.po: DeclNodes.inc.h FrontendActions.po: DiagnosticCommonKinds.inc.h FrontendActions.po: DiagnosticFrontendKinds.inc.h @@ -146,22 +153,14 @@ HeaderIncludeGen.po: DiagnosticCommonKinds.inc.h HeaderIncludeGen.po: DiagnosticFrontendKinds.inc.h InitHeaderSearch.o: DiagnosticCommonKinds.inc.h InitHeaderSearch.po: DiagnosticCommonKinds.inc.h -InitPreprocessor.o: AttrList.inc.h -InitPreprocessor.o: Attrs.inc.h InitPreprocessor.o: DeclNodes.inc.h InitPreprocessor.o: DiagnosticCommonKinds.inc.h InitPreprocessor.o: DiagnosticFrontendKinds.inc.h -InitPreprocessor.po: AttrList.inc.h -InitPreprocessor.po: Attrs.inc.h InitPreprocessor.po: DeclNodes.inc.h InitPreprocessor.po: DiagnosticCommonKinds.inc.h InitPreprocessor.po: DiagnosticFrontendKinds.inc.h -LayoutOverrideSource.o: AttrList.inc.h -LayoutOverrideSource.o: Attrs.inc.h LayoutOverrideSource.o: DeclNodes.inc.h LayoutOverrideSource.o: DiagnosticCommonKinds.inc.h -LayoutOverrideSource.po: AttrList.inc.h -LayoutOverrideSource.po: Attrs.inc.h LayoutOverrideSource.po: DeclNodes.inc.h LayoutOverrideSource.po: DiagnosticCommonKinds.inc.h LogDiagnosticPrinter.o: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangfrontendtool/Makefile.depend b/lib/clang/libclangfrontendtool/Makefile.depend index 94f1694cf5e0..e69aaa538230 100644 --- a/lib/clang/libclangfrontendtool/Makefile.depend +++ b/lib/clang/libclangfrontendtool/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include diff --git a/lib/clang/libclanglex/Makefile.depend b/lib/clang/libclanglex/Makefile.depend index 5835901a9b0d..7c8859dc6824 100644 --- a/lib/clang/libclanglex/Makefile.depend +++ b/lib/clang/libclanglex/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ include/xlocale \ lib/clang/include \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include @@ -39,6 +40,8 @@ PPCaching.o: DiagnosticCommonKinds.inc.h PPCaching.po: DiagnosticCommonKinds.inc.h PPCallbacks.o: DiagnosticCommonKinds.inc.h PPCallbacks.po: DiagnosticCommonKinds.inc.h +PPConditionalDirectiveRecord.o: DiagnosticCommonKinds.inc.h +PPConditionalDirectiveRecord.po: DiagnosticCommonKinds.inc.h PPDirectives.o: DiagnosticCommonKinds.inc.h PPDirectives.o: DiagnosticLexKinds.inc.h PPDirectives.po: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangparse/Makefile.depend b/lib/clang/libclangparse/Makefile.depend index ad1985d933cb..0b7d67a6c038 100644 --- a/lib/clang/libclangparse/Makefile.depend +++ b/lib/clang/libclangparse/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include @@ -17,6 +18,7 @@ DIRDEPS = \ ParseAST.o: AttrList.inc.h ParseAST.o: AttrParsedAttrList.inc.h ParseAST.o: Attrs.inc.h +ParseAST.o: CommentCommandList.inc.h ParseAST.o: DeclNodes.inc.h ParseAST.o: DiagnosticCommonKinds.inc.h ParseAST.o: DiagnosticParseKinds.inc.h @@ -24,6 +26,7 @@ ParseAST.o: StmtNodes.inc.h ParseAST.po: AttrList.inc.h ParseAST.po: AttrParsedAttrList.inc.h ParseAST.po: Attrs.inc.h +ParseAST.po: CommentCommandList.inc.h ParseAST.po: DeclNodes.inc.h ParseAST.po: DiagnosticCommonKinds.inc.h ParseAST.po: DiagnosticParseKinds.inc.h @@ -42,6 +45,7 @@ ParseCXXInlineMethods.po: DeclNodes.inc.h ParseCXXInlineMethods.po: DiagnosticCommonKinds.inc.h ParseCXXInlineMethods.po: DiagnosticParseKinds.inc.h ParseCXXInlineMethods.po: StmtNodes.inc.h +ParseDecl.o: AttrExprArgs.inc.h ParseDecl.o: AttrLateParsed.inc.h ParseDecl.o: AttrList.inc.h ParseDecl.o: AttrParsedAttrList.inc.h @@ -50,6 +54,7 @@ ParseDecl.o: DeclNodes.inc.h ParseDecl.o: DiagnosticCommonKinds.inc.h ParseDecl.o: DiagnosticParseKinds.inc.h ParseDecl.o: StmtNodes.inc.h +ParseDecl.po: AttrExprArgs.inc.h ParseDecl.po: AttrLateParsed.inc.h ParseDecl.po: AttrList.inc.h ParseDecl.po: AttrParsedAttrList.inc.h @@ -130,6 +135,20 @@ ParseObjc.po: DeclNodes.inc.h ParseObjc.po: DiagnosticCommonKinds.inc.h ParseObjc.po: DiagnosticParseKinds.inc.h ParseObjc.po: StmtNodes.inc.h +ParseOpenMP.o: AttrList.inc.h +ParseOpenMP.o: AttrParsedAttrList.inc.h +ParseOpenMP.o: Attrs.inc.h +ParseOpenMP.o: DeclNodes.inc.h +ParseOpenMP.o: DiagnosticCommonKinds.inc.h +ParseOpenMP.o: DiagnosticParseKinds.inc.h +ParseOpenMP.o: StmtNodes.inc.h +ParseOpenMP.po: AttrList.inc.h +ParseOpenMP.po: AttrParsedAttrList.inc.h +ParseOpenMP.po: Attrs.inc.h +ParseOpenMP.po: DeclNodes.inc.h +ParseOpenMP.po: DiagnosticCommonKinds.inc.h +ParseOpenMP.po: DiagnosticParseKinds.inc.h +ParseOpenMP.po: StmtNodes.inc.h ParsePragma.o: AttrList.inc.h ParsePragma.o: AttrParsedAttrList.inc.h ParsePragma.o: Attrs.inc.h @@ -147,6 +166,7 @@ ParsePragma.po: StmtNodes.inc.h ParseStmt.o: AttrList.inc.h ParseStmt.o: AttrParsedAttrList.inc.h ParseStmt.o: Attrs.inc.h +ParseStmt.o: CommentCommandList.inc.h ParseStmt.o: DeclNodes.inc.h ParseStmt.o: DiagnosticCommonKinds.inc.h ParseStmt.o: DiagnosticParseKinds.inc.h @@ -154,6 +174,7 @@ ParseStmt.o: StmtNodes.inc.h ParseStmt.po: AttrList.inc.h ParseStmt.po: AttrParsedAttrList.inc.h ParseStmt.po: Attrs.inc.h +ParseStmt.po: CommentCommandList.inc.h ParseStmt.po: DeclNodes.inc.h ParseStmt.po: DiagnosticCommonKinds.inc.h ParseStmt.po: DiagnosticParseKinds.inc.h diff --git a/lib/clang/libclangsema/Makefile.depend b/lib/clang/libclangsema/Makefile.depend index 8dc76e021c70..f06a41dba0bc 100644 --- a/lib/clang/libclangsema/Makefile.depend +++ b/lib/clang/libclangsema/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include @@ -17,6 +18,7 @@ DIRDEPS = \ AnalysisBasedWarnings.o: AttrList.inc.h AnalysisBasedWarnings.o: AttrParsedAttrList.inc.h AnalysisBasedWarnings.o: Attrs.inc.h +AnalysisBasedWarnings.o: CommentCommandList.inc.h AnalysisBasedWarnings.o: DeclNodes.inc.h AnalysisBasedWarnings.o: DiagnosticCommonKinds.inc.h AnalysisBasedWarnings.o: DiagnosticSemaKinds.inc.h @@ -24,21 +26,22 @@ AnalysisBasedWarnings.o: StmtNodes.inc.h AnalysisBasedWarnings.po: AttrList.inc.h AnalysisBasedWarnings.po: AttrParsedAttrList.inc.h AnalysisBasedWarnings.po: Attrs.inc.h +AnalysisBasedWarnings.po: CommentCommandList.inc.h AnalysisBasedWarnings.po: DeclNodes.inc.h AnalysisBasedWarnings.po: DiagnosticCommonKinds.inc.h AnalysisBasedWarnings.po: DiagnosticSemaKinds.inc.h AnalysisBasedWarnings.po: StmtNodes.inc.h -AttributeList.o: AttrList.inc.h AttributeList.o: AttrParsedAttrKinds.inc.h AttributeList.o: AttrParsedAttrList.inc.h -AttributeList.o: Attrs.inc.h +AttributeList.o: AttrSpellingListIndex.inc.h +AttributeList.o: CommentCommandList.inc.h AttributeList.o: DeclNodes.inc.h AttributeList.o: DiagnosticCommonKinds.inc.h AttributeList.o: StmtNodes.inc.h -AttributeList.po: AttrList.inc.h AttributeList.po: AttrParsedAttrKinds.inc.h AttributeList.po: AttrParsedAttrList.inc.h -AttributeList.po: Attrs.inc.h +AttributeList.po: AttrSpellingListIndex.inc.h +AttributeList.po: CommentCommandList.inc.h AttributeList.po: DeclNodes.inc.h AttributeList.po: DiagnosticCommonKinds.inc.h AttributeList.po: StmtNodes.inc.h @@ -57,6 +60,7 @@ CodeCompleteConsumer.po: StmtNodes.inc.h DeclSpec.o: AttrList.inc.h DeclSpec.o: AttrParsedAttrList.inc.h DeclSpec.o: Attrs.inc.h +DeclSpec.o: CommentCommandList.inc.h DeclSpec.o: DeclNodes.inc.h DeclSpec.o: DiagnosticCommonKinds.inc.h DeclSpec.o: DiagnosticParseKinds.inc.h @@ -65,6 +69,7 @@ DeclSpec.o: StmtNodes.inc.h DeclSpec.po: AttrList.inc.h DeclSpec.po: AttrParsedAttrList.inc.h DeclSpec.po: Attrs.inc.h +DeclSpec.po: CommentCommandList.inc.h DeclSpec.po: DeclNodes.inc.h DeclSpec.po: DiagnosticCommonKinds.inc.h DeclSpec.po: DiagnosticParseKinds.inc.h @@ -82,17 +87,14 @@ DelayedDiagnostic.po: Attrs.inc.h DelayedDiagnostic.po: DeclNodes.inc.h DelayedDiagnostic.po: DiagnosticCommonKinds.inc.h DelayedDiagnostic.po: StmtNodes.inc.h -IdentifierResolver.o: AttrList.inc.h -IdentifierResolver.o: Attrs.inc.h IdentifierResolver.o: DeclNodes.inc.h IdentifierResolver.o: DiagnosticCommonKinds.inc.h -IdentifierResolver.po: AttrList.inc.h -IdentifierResolver.po: Attrs.inc.h IdentifierResolver.po: DeclNodes.inc.h IdentifierResolver.po: DiagnosticCommonKinds.inc.h JumpDiagnostics.o: AttrList.inc.h JumpDiagnostics.o: AttrParsedAttrList.inc.h JumpDiagnostics.o: Attrs.inc.h +JumpDiagnostics.o: CommentCommandList.inc.h JumpDiagnostics.o: DeclNodes.inc.h JumpDiagnostics.o: DiagnosticCommonKinds.inc.h JumpDiagnostics.o: DiagnosticSemaKinds.inc.h @@ -100,6 +102,7 @@ JumpDiagnostics.o: StmtNodes.inc.h JumpDiagnostics.po: AttrList.inc.h JumpDiagnostics.po: AttrParsedAttrList.inc.h JumpDiagnostics.po: Attrs.inc.h +JumpDiagnostics.po: CommentCommandList.inc.h JumpDiagnostics.po: DeclNodes.inc.h JumpDiagnostics.po: DiagnosticCommonKinds.inc.h JumpDiagnostics.po: DiagnosticSemaKinds.inc.h @@ -118,19 +121,16 @@ MultiplexExternalSemaSource.po: DiagnosticCommonKinds.inc.h MultiplexExternalSemaSource.po: StmtNodes.inc.h Scope.o: DiagnosticCommonKinds.inc.h Scope.po: DiagnosticCommonKinds.inc.h -ScopeInfo.o: AttrList.inc.h -ScopeInfo.o: Attrs.inc.h ScopeInfo.o: DeclNodes.inc.h ScopeInfo.o: DiagnosticCommonKinds.inc.h ScopeInfo.o: StmtNodes.inc.h -ScopeInfo.po: AttrList.inc.h -ScopeInfo.po: Attrs.inc.h ScopeInfo.po: DeclNodes.inc.h ScopeInfo.po: DiagnosticCommonKinds.inc.h ScopeInfo.po: StmtNodes.inc.h Sema.o: AttrList.inc.h Sema.o: AttrParsedAttrList.inc.h Sema.o: Attrs.inc.h +Sema.o: CommentCommandList.inc.h Sema.o: DeclNodes.inc.h Sema.o: DiagnosticASTKinds.inc.h Sema.o: DiagnosticCommonKinds.inc.h @@ -139,6 +139,7 @@ Sema.o: StmtNodes.inc.h Sema.po: AttrList.inc.h Sema.po: AttrParsedAttrList.inc.h Sema.po: Attrs.inc.h +Sema.po: CommentCommandList.inc.h Sema.po: DeclNodes.inc.h Sema.po: DiagnosticASTKinds.inc.h Sema.po: DiagnosticCommonKinds.inc.h @@ -147,6 +148,7 @@ Sema.po: StmtNodes.inc.h SemaAccess.o: AttrList.inc.h SemaAccess.o: AttrParsedAttrList.inc.h SemaAccess.o: Attrs.inc.h +SemaAccess.o: CommentCommandList.inc.h SemaAccess.o: DeclNodes.inc.h SemaAccess.o: DiagnosticCommonKinds.inc.h SemaAccess.o: DiagnosticSemaKinds.inc.h @@ -154,6 +156,7 @@ SemaAccess.o: StmtNodes.inc.h SemaAccess.po: AttrList.inc.h SemaAccess.po: AttrParsedAttrList.inc.h SemaAccess.po: Attrs.inc.h +SemaAccess.po: CommentCommandList.inc.h SemaAccess.po: DeclNodes.inc.h SemaAccess.po: DiagnosticCommonKinds.inc.h SemaAccess.po: DiagnosticSemaKinds.inc.h @@ -161,6 +164,7 @@ SemaAccess.po: StmtNodes.inc.h SemaAttr.o: AttrList.inc.h SemaAttr.o: AttrParsedAttrList.inc.h SemaAttr.o: Attrs.inc.h +SemaAttr.o: CommentCommandList.inc.h SemaAttr.o: DeclNodes.inc.h SemaAttr.o: DiagnosticCommonKinds.inc.h SemaAttr.o: DiagnosticSemaKinds.inc.h @@ -168,6 +172,7 @@ SemaAttr.o: StmtNodes.inc.h SemaAttr.po: AttrList.inc.h SemaAttr.po: AttrParsedAttrList.inc.h SemaAttr.po: Attrs.inc.h +SemaAttr.po: CommentCommandList.inc.h SemaAttr.po: DeclNodes.inc.h SemaAttr.po: DiagnosticCommonKinds.inc.h SemaAttr.po: DiagnosticSemaKinds.inc.h @@ -175,6 +180,7 @@ SemaAttr.po: StmtNodes.inc.h SemaCXXScopeSpec.o: AttrList.inc.h SemaCXXScopeSpec.o: AttrParsedAttrList.inc.h SemaCXXScopeSpec.o: Attrs.inc.h +SemaCXXScopeSpec.o: CommentCommandList.inc.h SemaCXXScopeSpec.o: DeclNodes.inc.h SemaCXXScopeSpec.o: DiagnosticCommonKinds.inc.h SemaCXXScopeSpec.o: DiagnosticSemaKinds.inc.h @@ -182,6 +188,7 @@ SemaCXXScopeSpec.o: StmtNodes.inc.h SemaCXXScopeSpec.po: AttrList.inc.h SemaCXXScopeSpec.po: AttrParsedAttrList.inc.h SemaCXXScopeSpec.po: Attrs.inc.h +SemaCXXScopeSpec.po: CommentCommandList.inc.h SemaCXXScopeSpec.po: DeclNodes.inc.h SemaCXXScopeSpec.po: DiagnosticCommonKinds.inc.h SemaCXXScopeSpec.po: DiagnosticSemaKinds.inc.h @@ -189,6 +196,7 @@ SemaCXXScopeSpec.po: StmtNodes.inc.h SemaCast.o: AttrList.inc.h SemaCast.o: AttrParsedAttrList.inc.h SemaCast.o: Attrs.inc.h +SemaCast.o: CommentCommandList.inc.h SemaCast.o: DeclNodes.inc.h SemaCast.o: DiagnosticCommonKinds.inc.h SemaCast.o: DiagnosticSemaKinds.inc.h @@ -196,6 +204,7 @@ SemaCast.o: StmtNodes.inc.h SemaCast.po: AttrList.inc.h SemaCast.po: AttrParsedAttrList.inc.h SemaCast.po: Attrs.inc.h +SemaCast.po: CommentCommandList.inc.h SemaCast.po: DeclNodes.inc.h SemaCast.po: DiagnosticCommonKinds.inc.h SemaCast.po: DiagnosticSemaKinds.inc.h @@ -203,6 +212,7 @@ SemaCast.po: StmtNodes.inc.h SemaChecking.o: AttrList.inc.h SemaChecking.o: AttrParsedAttrList.inc.h SemaChecking.o: Attrs.inc.h +SemaChecking.o: CommentCommandList.inc.h SemaChecking.o: DeclNodes.inc.h SemaChecking.o: DiagnosticCommonKinds.inc.h SemaChecking.o: DiagnosticSemaKinds.inc.h @@ -211,6 +221,7 @@ SemaChecking.o: arm_neon.inc.h SemaChecking.po: AttrList.inc.h SemaChecking.po: AttrParsedAttrList.inc.h SemaChecking.po: Attrs.inc.h +SemaChecking.po: CommentCommandList.inc.h SemaChecking.po: DeclNodes.inc.h SemaChecking.po: DiagnosticCommonKinds.inc.h SemaChecking.po: DiagnosticSemaKinds.inc.h @@ -219,6 +230,7 @@ SemaChecking.po: arm_neon.inc.h SemaCodeComplete.o: AttrList.inc.h SemaCodeComplete.o: AttrParsedAttrList.inc.h SemaCodeComplete.o: Attrs.inc.h +SemaCodeComplete.o: CommentCommandList.inc.h SemaCodeComplete.o: DeclNodes.inc.h SemaCodeComplete.o: DiagnosticCommonKinds.inc.h SemaCodeComplete.o: DiagnosticSemaKinds.inc.h @@ -226,6 +238,7 @@ SemaCodeComplete.o: StmtNodes.inc.h SemaCodeComplete.po: AttrList.inc.h SemaCodeComplete.po: AttrParsedAttrList.inc.h SemaCodeComplete.po: Attrs.inc.h +SemaCodeComplete.po: CommentCommandList.inc.h SemaCodeComplete.po: DeclNodes.inc.h SemaCodeComplete.po: DiagnosticCommonKinds.inc.h SemaCodeComplete.po: DiagnosticSemaKinds.inc.h @@ -233,6 +246,7 @@ SemaCodeComplete.po: StmtNodes.inc.h SemaDecl.o: AttrList.inc.h SemaDecl.o: AttrParsedAttrList.inc.h SemaDecl.o: Attrs.inc.h +SemaDecl.o: CommentCommandList.inc.h SemaDecl.o: DeclNodes.inc.h SemaDecl.o: DiagnosticCommentKinds.inc.h SemaDecl.o: DiagnosticCommonKinds.inc.h @@ -242,6 +256,7 @@ SemaDecl.o: StmtNodes.inc.h SemaDecl.po: AttrList.inc.h SemaDecl.po: AttrParsedAttrList.inc.h SemaDecl.po: Attrs.inc.h +SemaDecl.po: CommentCommandList.inc.h SemaDecl.po: DeclNodes.inc.h SemaDecl.po: DiagnosticCommentKinds.inc.h SemaDecl.po: DiagnosticCommonKinds.inc.h @@ -251,6 +266,7 @@ SemaDecl.po: StmtNodes.inc.h SemaDeclAttr.o: AttrList.inc.h SemaDeclAttr.o: AttrParsedAttrList.inc.h SemaDeclAttr.o: Attrs.inc.h +SemaDeclAttr.o: CommentCommandList.inc.h SemaDeclAttr.o: DeclNodes.inc.h SemaDeclAttr.o: DiagnosticCommonKinds.inc.h SemaDeclAttr.o: DiagnosticSemaKinds.inc.h @@ -258,6 +274,7 @@ SemaDeclAttr.o: StmtNodes.inc.h SemaDeclAttr.po: AttrList.inc.h SemaDeclAttr.po: AttrParsedAttrList.inc.h SemaDeclAttr.po: Attrs.inc.h +SemaDeclAttr.po: CommentCommandList.inc.h SemaDeclAttr.po: DeclNodes.inc.h SemaDeclAttr.po: DiagnosticCommonKinds.inc.h SemaDeclAttr.po: DiagnosticSemaKinds.inc.h @@ -265,6 +282,7 @@ SemaDeclAttr.po: StmtNodes.inc.h SemaDeclCXX.o: AttrList.inc.h SemaDeclCXX.o: AttrParsedAttrList.inc.h SemaDeclCXX.o: Attrs.inc.h +SemaDeclCXX.o: CommentCommandList.inc.h SemaDeclCXX.o: DeclNodes.inc.h SemaDeclCXX.o: DiagnosticCommonKinds.inc.h SemaDeclCXX.o: DiagnosticSemaKinds.inc.h @@ -272,6 +290,7 @@ SemaDeclCXX.o: StmtNodes.inc.h SemaDeclCXX.po: AttrList.inc.h SemaDeclCXX.po: AttrParsedAttrList.inc.h SemaDeclCXX.po: Attrs.inc.h +SemaDeclCXX.po: CommentCommandList.inc.h SemaDeclCXX.po: DeclNodes.inc.h SemaDeclCXX.po: DiagnosticCommonKinds.inc.h SemaDeclCXX.po: DiagnosticSemaKinds.inc.h @@ -279,6 +298,7 @@ SemaDeclCXX.po: StmtNodes.inc.h SemaDeclObjC.o: AttrList.inc.h SemaDeclObjC.o: AttrParsedAttrList.inc.h SemaDeclObjC.o: Attrs.inc.h +SemaDeclObjC.o: CommentCommandList.inc.h SemaDeclObjC.o: DeclNodes.inc.h SemaDeclObjC.o: DiagnosticCommonKinds.inc.h SemaDeclObjC.o: DiagnosticSemaKinds.inc.h @@ -286,6 +306,7 @@ SemaDeclObjC.o: StmtNodes.inc.h SemaDeclObjC.po: AttrList.inc.h SemaDeclObjC.po: AttrParsedAttrList.inc.h SemaDeclObjC.po: Attrs.inc.h +SemaDeclObjC.po: CommentCommandList.inc.h SemaDeclObjC.po: DeclNodes.inc.h SemaDeclObjC.po: DiagnosticCommonKinds.inc.h SemaDeclObjC.po: DiagnosticSemaKinds.inc.h @@ -293,6 +314,7 @@ SemaDeclObjC.po: StmtNodes.inc.h SemaExceptionSpec.o: AttrList.inc.h SemaExceptionSpec.o: AttrParsedAttrList.inc.h SemaExceptionSpec.o: Attrs.inc.h +SemaExceptionSpec.o: CommentCommandList.inc.h SemaExceptionSpec.o: DeclNodes.inc.h SemaExceptionSpec.o: DiagnosticCommonKinds.inc.h SemaExceptionSpec.o: DiagnosticSemaKinds.inc.h @@ -300,6 +322,7 @@ SemaExceptionSpec.o: StmtNodes.inc.h SemaExceptionSpec.po: AttrList.inc.h SemaExceptionSpec.po: AttrParsedAttrList.inc.h SemaExceptionSpec.po: Attrs.inc.h +SemaExceptionSpec.po: CommentCommandList.inc.h SemaExceptionSpec.po: DeclNodes.inc.h SemaExceptionSpec.po: DiagnosticCommonKinds.inc.h SemaExceptionSpec.po: DiagnosticSemaKinds.inc.h @@ -307,6 +330,7 @@ SemaExceptionSpec.po: StmtNodes.inc.h SemaExpr.o: AttrList.inc.h SemaExpr.o: AttrParsedAttrList.inc.h SemaExpr.o: Attrs.inc.h +SemaExpr.o: CommentCommandList.inc.h SemaExpr.o: DeclNodes.inc.h SemaExpr.o: DiagnosticCommonKinds.inc.h SemaExpr.o: DiagnosticSemaKinds.inc.h @@ -314,6 +338,7 @@ SemaExpr.o: StmtNodes.inc.h SemaExpr.po: AttrList.inc.h SemaExpr.po: AttrParsedAttrList.inc.h SemaExpr.po: Attrs.inc.h +SemaExpr.po: CommentCommandList.inc.h SemaExpr.po: DeclNodes.inc.h SemaExpr.po: DiagnosticCommonKinds.inc.h SemaExpr.po: DiagnosticSemaKinds.inc.h @@ -321,6 +346,7 @@ SemaExpr.po: StmtNodes.inc.h SemaExprCXX.o: AttrList.inc.h SemaExprCXX.o: AttrParsedAttrList.inc.h SemaExprCXX.o: Attrs.inc.h +SemaExprCXX.o: CommentCommandList.inc.h SemaExprCXX.o: DeclNodes.inc.h SemaExprCXX.o: DiagnosticCommonKinds.inc.h SemaExprCXX.o: DiagnosticSemaKinds.inc.h @@ -328,6 +354,7 @@ SemaExprCXX.o: StmtNodes.inc.h SemaExprCXX.po: AttrList.inc.h SemaExprCXX.po: AttrParsedAttrList.inc.h SemaExprCXX.po: Attrs.inc.h +SemaExprCXX.po: CommentCommandList.inc.h SemaExprCXX.po: DeclNodes.inc.h SemaExprCXX.po: DiagnosticCommonKinds.inc.h SemaExprCXX.po: DiagnosticSemaKinds.inc.h @@ -335,6 +362,7 @@ SemaExprCXX.po: StmtNodes.inc.h SemaExprMember.o: AttrList.inc.h SemaExprMember.o: AttrParsedAttrList.inc.h SemaExprMember.o: Attrs.inc.h +SemaExprMember.o: CommentCommandList.inc.h SemaExprMember.o: DeclNodes.inc.h SemaExprMember.o: DiagnosticCommonKinds.inc.h SemaExprMember.o: DiagnosticSemaKinds.inc.h @@ -342,6 +370,7 @@ SemaExprMember.o: StmtNodes.inc.h SemaExprMember.po: AttrList.inc.h SemaExprMember.po: AttrParsedAttrList.inc.h SemaExprMember.po: Attrs.inc.h +SemaExprMember.po: CommentCommandList.inc.h SemaExprMember.po: DeclNodes.inc.h SemaExprMember.po: DiagnosticCommonKinds.inc.h SemaExprMember.po: DiagnosticSemaKinds.inc.h @@ -349,6 +378,7 @@ SemaExprMember.po: StmtNodes.inc.h SemaExprObjC.o: AttrList.inc.h SemaExprObjC.o: AttrParsedAttrList.inc.h SemaExprObjC.o: Attrs.inc.h +SemaExprObjC.o: CommentCommandList.inc.h SemaExprObjC.o: DeclNodes.inc.h SemaExprObjC.o: DiagnosticCommonKinds.inc.h SemaExprObjC.o: DiagnosticSemaKinds.inc.h @@ -356,6 +386,7 @@ SemaExprObjC.o: StmtNodes.inc.h SemaExprObjC.po: AttrList.inc.h SemaExprObjC.po: AttrParsedAttrList.inc.h SemaExprObjC.po: Attrs.inc.h +SemaExprObjC.po: CommentCommandList.inc.h SemaExprObjC.po: DeclNodes.inc.h SemaExprObjC.po: DiagnosticCommonKinds.inc.h SemaExprObjC.po: DiagnosticSemaKinds.inc.h @@ -363,18 +394,21 @@ SemaExprObjC.po: StmtNodes.inc.h SemaFixItUtils.o: AttrList.inc.h SemaFixItUtils.o: AttrParsedAttrList.inc.h SemaFixItUtils.o: Attrs.inc.h +SemaFixItUtils.o: CommentCommandList.inc.h SemaFixItUtils.o: DeclNodes.inc.h SemaFixItUtils.o: DiagnosticCommonKinds.inc.h SemaFixItUtils.o: StmtNodes.inc.h SemaFixItUtils.po: AttrList.inc.h SemaFixItUtils.po: AttrParsedAttrList.inc.h SemaFixItUtils.po: Attrs.inc.h +SemaFixItUtils.po: CommentCommandList.inc.h SemaFixItUtils.po: DeclNodes.inc.h SemaFixItUtils.po: DiagnosticCommonKinds.inc.h SemaFixItUtils.po: StmtNodes.inc.h SemaInit.o: AttrList.inc.h SemaInit.o: AttrParsedAttrList.inc.h SemaInit.o: Attrs.inc.h +SemaInit.o: CommentCommandList.inc.h SemaInit.o: DeclNodes.inc.h SemaInit.o: DiagnosticCommonKinds.inc.h SemaInit.o: DiagnosticSemaKinds.inc.h @@ -382,6 +416,7 @@ SemaInit.o: StmtNodes.inc.h SemaInit.po: AttrList.inc.h SemaInit.po: AttrParsedAttrList.inc.h SemaInit.po: Attrs.inc.h +SemaInit.po: CommentCommandList.inc.h SemaInit.po: DeclNodes.inc.h SemaInit.po: DiagnosticCommonKinds.inc.h SemaInit.po: DiagnosticSemaKinds.inc.h @@ -389,6 +424,7 @@ SemaInit.po: StmtNodes.inc.h SemaLambda.o: AttrList.inc.h SemaLambda.o: AttrParsedAttrList.inc.h SemaLambda.o: Attrs.inc.h +SemaLambda.o: CommentCommandList.inc.h SemaLambda.o: DeclNodes.inc.h SemaLambda.o: DiagnosticCommonKinds.inc.h SemaLambda.o: DiagnosticSemaKinds.inc.h @@ -396,6 +432,7 @@ SemaLambda.o: StmtNodes.inc.h SemaLambda.po: AttrList.inc.h SemaLambda.po: AttrParsedAttrList.inc.h SemaLambda.po: Attrs.inc.h +SemaLambda.po: CommentCommandList.inc.h SemaLambda.po: DeclNodes.inc.h SemaLambda.po: DiagnosticCommonKinds.inc.h SemaLambda.po: DiagnosticSemaKinds.inc.h @@ -403,6 +440,7 @@ SemaLambda.po: StmtNodes.inc.h SemaLookup.o: AttrList.inc.h SemaLookup.o: AttrParsedAttrList.inc.h SemaLookup.o: Attrs.inc.h +SemaLookup.o: CommentCommandList.inc.h SemaLookup.o: DeclNodes.inc.h SemaLookup.o: DiagnosticCommonKinds.inc.h SemaLookup.o: DiagnosticSemaKinds.inc.h @@ -410,6 +448,7 @@ SemaLookup.o: StmtNodes.inc.h SemaLookup.po: AttrList.inc.h SemaLookup.po: AttrParsedAttrList.inc.h SemaLookup.po: Attrs.inc.h +SemaLookup.po: CommentCommandList.inc.h SemaLookup.po: DeclNodes.inc.h SemaLookup.po: DiagnosticCommonKinds.inc.h SemaLookup.po: DiagnosticSemaKinds.inc.h @@ -417,6 +456,7 @@ SemaLookup.po: StmtNodes.inc.h SemaObjCProperty.o: AttrList.inc.h SemaObjCProperty.o: AttrParsedAttrList.inc.h SemaObjCProperty.o: Attrs.inc.h +SemaObjCProperty.o: CommentCommandList.inc.h SemaObjCProperty.o: DeclNodes.inc.h SemaObjCProperty.o: DiagnosticCommonKinds.inc.h SemaObjCProperty.o: DiagnosticSemaKinds.inc.h @@ -424,13 +464,31 @@ SemaObjCProperty.o: StmtNodes.inc.h SemaObjCProperty.po: AttrList.inc.h SemaObjCProperty.po: AttrParsedAttrList.inc.h SemaObjCProperty.po: Attrs.inc.h +SemaObjCProperty.po: CommentCommandList.inc.h SemaObjCProperty.po: DeclNodes.inc.h SemaObjCProperty.po: DiagnosticCommonKinds.inc.h SemaObjCProperty.po: DiagnosticSemaKinds.inc.h SemaObjCProperty.po: StmtNodes.inc.h +SemaOpenMP.o: AttrList.inc.h +SemaOpenMP.o: AttrParsedAttrList.inc.h +SemaOpenMP.o: Attrs.inc.h +SemaOpenMP.o: CommentCommandList.inc.h +SemaOpenMP.o: DeclNodes.inc.h +SemaOpenMP.o: DiagnosticCommonKinds.inc.h +SemaOpenMP.o: DiagnosticSemaKinds.inc.h +SemaOpenMP.o: StmtNodes.inc.h +SemaOpenMP.po: AttrList.inc.h +SemaOpenMP.po: AttrParsedAttrList.inc.h +SemaOpenMP.po: Attrs.inc.h +SemaOpenMP.po: CommentCommandList.inc.h +SemaOpenMP.po: DeclNodes.inc.h +SemaOpenMP.po: DiagnosticCommonKinds.inc.h +SemaOpenMP.po: DiagnosticSemaKinds.inc.h +SemaOpenMP.po: StmtNodes.inc.h SemaOverload.o: AttrList.inc.h SemaOverload.o: AttrParsedAttrList.inc.h SemaOverload.o: Attrs.inc.h +SemaOverload.o: CommentCommandList.inc.h SemaOverload.o: DeclNodes.inc.h SemaOverload.o: DiagnosticCommonKinds.inc.h SemaOverload.o: DiagnosticSemaKinds.inc.h @@ -438,6 +496,7 @@ SemaOverload.o: StmtNodes.inc.h SemaOverload.po: AttrList.inc.h SemaOverload.po: AttrParsedAttrList.inc.h SemaOverload.po: Attrs.inc.h +SemaOverload.po: CommentCommandList.inc.h SemaOverload.po: DeclNodes.inc.h SemaOverload.po: DiagnosticCommonKinds.inc.h SemaOverload.po: DiagnosticSemaKinds.inc.h @@ -445,6 +504,7 @@ SemaOverload.po: StmtNodes.inc.h SemaPseudoObject.o: AttrList.inc.h SemaPseudoObject.o: AttrParsedAttrList.inc.h SemaPseudoObject.o: Attrs.inc.h +SemaPseudoObject.o: CommentCommandList.inc.h SemaPseudoObject.o: DeclNodes.inc.h SemaPseudoObject.o: DiagnosticCommonKinds.inc.h SemaPseudoObject.o: DiagnosticSemaKinds.inc.h @@ -452,6 +512,7 @@ SemaPseudoObject.o: StmtNodes.inc.h SemaPseudoObject.po: AttrList.inc.h SemaPseudoObject.po: AttrParsedAttrList.inc.h SemaPseudoObject.po: Attrs.inc.h +SemaPseudoObject.po: CommentCommandList.inc.h SemaPseudoObject.po: DeclNodes.inc.h SemaPseudoObject.po: DiagnosticCommonKinds.inc.h SemaPseudoObject.po: DiagnosticSemaKinds.inc.h @@ -459,20 +520,25 @@ SemaPseudoObject.po: StmtNodes.inc.h SemaStmt.o: AttrList.inc.h SemaStmt.o: AttrParsedAttrList.inc.h SemaStmt.o: Attrs.inc.h +SemaStmt.o: CommentCommandList.inc.h SemaStmt.o: DeclNodes.inc.h +SemaStmt.o: DiagnosticASTKinds.inc.h SemaStmt.o: DiagnosticCommonKinds.inc.h SemaStmt.o: DiagnosticSemaKinds.inc.h SemaStmt.o: StmtNodes.inc.h SemaStmt.po: AttrList.inc.h SemaStmt.po: AttrParsedAttrList.inc.h SemaStmt.po: Attrs.inc.h +SemaStmt.po: CommentCommandList.inc.h SemaStmt.po: DeclNodes.inc.h +SemaStmt.po: DiagnosticASTKinds.inc.h SemaStmt.po: DiagnosticCommonKinds.inc.h SemaStmt.po: DiagnosticSemaKinds.inc.h SemaStmt.po: StmtNodes.inc.h SemaStmtAsm.o: AttrList.inc.h SemaStmtAsm.o: AttrParsedAttrList.inc.h SemaStmtAsm.o: Attrs.inc.h +SemaStmtAsm.o: CommentCommandList.inc.h SemaStmtAsm.o: DeclNodes.inc.h SemaStmtAsm.o: DiagnosticCommonKinds.inc.h SemaStmtAsm.o: DiagnosticSemaKinds.inc.h @@ -480,6 +546,7 @@ SemaStmtAsm.o: StmtNodes.inc.h SemaStmtAsm.po: AttrList.inc.h SemaStmtAsm.po: AttrParsedAttrList.inc.h SemaStmtAsm.po: Attrs.inc.h +SemaStmtAsm.po: CommentCommandList.inc.h SemaStmtAsm.po: DeclNodes.inc.h SemaStmtAsm.po: DiagnosticCommonKinds.inc.h SemaStmtAsm.po: DiagnosticSemaKinds.inc.h @@ -487,6 +554,7 @@ SemaStmtAsm.po: StmtNodes.inc.h SemaStmtAttr.o: AttrList.inc.h SemaStmtAttr.o: AttrParsedAttrList.inc.h SemaStmtAttr.o: Attrs.inc.h +SemaStmtAttr.o: CommentCommandList.inc.h SemaStmtAttr.o: DeclNodes.inc.h SemaStmtAttr.o: DiagnosticCommonKinds.inc.h SemaStmtAttr.o: DiagnosticSemaKinds.inc.h @@ -494,6 +562,7 @@ SemaStmtAttr.o: StmtNodes.inc.h SemaStmtAttr.po: AttrList.inc.h SemaStmtAttr.po: AttrParsedAttrList.inc.h SemaStmtAttr.po: Attrs.inc.h +SemaStmtAttr.po: CommentCommandList.inc.h SemaStmtAttr.po: DeclNodes.inc.h SemaStmtAttr.po: DiagnosticCommonKinds.inc.h SemaStmtAttr.po: DiagnosticSemaKinds.inc.h @@ -501,6 +570,7 @@ SemaStmtAttr.po: StmtNodes.inc.h SemaTemplate.o: AttrList.inc.h SemaTemplate.o: AttrParsedAttrList.inc.h SemaTemplate.o: Attrs.inc.h +SemaTemplate.o: CommentCommandList.inc.h SemaTemplate.o: DeclNodes.inc.h SemaTemplate.o: DiagnosticCommonKinds.inc.h SemaTemplate.o: DiagnosticSemaKinds.inc.h @@ -508,6 +578,7 @@ SemaTemplate.o: StmtNodes.inc.h SemaTemplate.po: AttrList.inc.h SemaTemplate.po: AttrParsedAttrList.inc.h SemaTemplate.po: Attrs.inc.h +SemaTemplate.po: CommentCommandList.inc.h SemaTemplate.po: DeclNodes.inc.h SemaTemplate.po: DiagnosticCommonKinds.inc.h SemaTemplate.po: DiagnosticSemaKinds.inc.h @@ -515,6 +586,7 @@ SemaTemplate.po: StmtNodes.inc.h SemaTemplateDeduction.o: AttrList.inc.h SemaTemplateDeduction.o: AttrParsedAttrList.inc.h SemaTemplateDeduction.o: Attrs.inc.h +SemaTemplateDeduction.o: CommentCommandList.inc.h SemaTemplateDeduction.o: DeclNodes.inc.h SemaTemplateDeduction.o: DiagnosticCommonKinds.inc.h SemaTemplateDeduction.o: DiagnosticSemaKinds.inc.h @@ -522,6 +594,7 @@ SemaTemplateDeduction.o: StmtNodes.inc.h SemaTemplateDeduction.po: AttrList.inc.h SemaTemplateDeduction.po: AttrParsedAttrList.inc.h SemaTemplateDeduction.po: Attrs.inc.h +SemaTemplateDeduction.po: CommentCommandList.inc.h SemaTemplateDeduction.po: DeclNodes.inc.h SemaTemplateDeduction.po: DiagnosticCommonKinds.inc.h SemaTemplateDeduction.po: DiagnosticSemaKinds.inc.h @@ -529,6 +602,7 @@ SemaTemplateDeduction.po: StmtNodes.inc.h SemaTemplateInstantiate.o: AttrList.inc.h SemaTemplateInstantiate.o: AttrParsedAttrList.inc.h SemaTemplateInstantiate.o: Attrs.inc.h +SemaTemplateInstantiate.o: CommentCommandList.inc.h SemaTemplateInstantiate.o: DeclNodes.inc.h SemaTemplateInstantiate.o: DiagnosticCommonKinds.inc.h SemaTemplateInstantiate.o: DiagnosticSemaKinds.inc.h @@ -536,6 +610,7 @@ SemaTemplateInstantiate.o: StmtNodes.inc.h SemaTemplateInstantiate.po: AttrList.inc.h SemaTemplateInstantiate.po: AttrParsedAttrList.inc.h SemaTemplateInstantiate.po: Attrs.inc.h +SemaTemplateInstantiate.po: CommentCommandList.inc.h SemaTemplateInstantiate.po: DeclNodes.inc.h SemaTemplateInstantiate.po: DiagnosticCommonKinds.inc.h SemaTemplateInstantiate.po: DiagnosticSemaKinds.inc.h @@ -544,6 +619,7 @@ SemaTemplateInstantiateDecl.o: AttrList.inc.h SemaTemplateInstantiateDecl.o: AttrParsedAttrList.inc.h SemaTemplateInstantiateDecl.o: AttrTemplateInstantiate.inc.h SemaTemplateInstantiateDecl.o: Attrs.inc.h +SemaTemplateInstantiateDecl.o: CommentCommandList.inc.h SemaTemplateInstantiateDecl.o: DeclNodes.inc.h SemaTemplateInstantiateDecl.o: DiagnosticCommonKinds.inc.h SemaTemplateInstantiateDecl.o: DiagnosticSemaKinds.inc.h @@ -552,6 +628,7 @@ SemaTemplateInstantiateDecl.po: AttrList.inc.h SemaTemplateInstantiateDecl.po: AttrParsedAttrList.inc.h SemaTemplateInstantiateDecl.po: AttrTemplateInstantiate.inc.h SemaTemplateInstantiateDecl.po: Attrs.inc.h +SemaTemplateInstantiateDecl.po: CommentCommandList.inc.h SemaTemplateInstantiateDecl.po: DeclNodes.inc.h SemaTemplateInstantiateDecl.po: DiagnosticCommonKinds.inc.h SemaTemplateInstantiateDecl.po: DiagnosticSemaKinds.inc.h @@ -559,6 +636,7 @@ SemaTemplateInstantiateDecl.po: StmtNodes.inc.h SemaTemplateVariadic.o: AttrList.inc.h SemaTemplateVariadic.o: AttrParsedAttrList.inc.h SemaTemplateVariadic.o: Attrs.inc.h +SemaTemplateVariadic.o: CommentCommandList.inc.h SemaTemplateVariadic.o: DeclNodes.inc.h SemaTemplateVariadic.o: DiagnosticCommonKinds.inc.h SemaTemplateVariadic.o: DiagnosticSemaKinds.inc.h @@ -566,6 +644,7 @@ SemaTemplateVariadic.o: StmtNodes.inc.h SemaTemplateVariadic.po: AttrList.inc.h SemaTemplateVariadic.po: AttrParsedAttrList.inc.h SemaTemplateVariadic.po: Attrs.inc.h +SemaTemplateVariadic.po: CommentCommandList.inc.h SemaTemplateVariadic.po: DeclNodes.inc.h SemaTemplateVariadic.po: DiagnosticCommonKinds.inc.h SemaTemplateVariadic.po: DiagnosticSemaKinds.inc.h @@ -573,6 +652,7 @@ SemaTemplateVariadic.po: StmtNodes.inc.h SemaType.o: AttrList.inc.h SemaType.o: AttrParsedAttrList.inc.h SemaType.o: Attrs.inc.h +SemaType.o: CommentCommandList.inc.h SemaType.o: DeclNodes.inc.h SemaType.o: DiagnosticCommonKinds.inc.h SemaType.o: DiagnosticParseKinds.inc.h @@ -581,6 +661,7 @@ SemaType.o: StmtNodes.inc.h SemaType.po: AttrList.inc.h SemaType.po: AttrParsedAttrList.inc.h SemaType.po: Attrs.inc.h +SemaType.po: CommentCommandList.inc.h SemaType.po: DeclNodes.inc.h SemaType.po: DiagnosticCommonKinds.inc.h SemaType.po: DiagnosticParseKinds.inc.h @@ -589,6 +670,7 @@ SemaType.po: StmtNodes.inc.h TargetAttributesSema.o: AttrList.inc.h TargetAttributesSema.o: AttrParsedAttrList.inc.h TargetAttributesSema.o: Attrs.inc.h +TargetAttributesSema.o: CommentCommandList.inc.h TargetAttributesSema.o: DeclNodes.inc.h TargetAttributesSema.o: DiagnosticCommonKinds.inc.h TargetAttributesSema.o: DiagnosticSemaKinds.inc.h @@ -596,6 +678,7 @@ TargetAttributesSema.o: StmtNodes.inc.h TargetAttributesSema.po: AttrList.inc.h TargetAttributesSema.po: AttrParsedAttrList.inc.h TargetAttributesSema.po: Attrs.inc.h +TargetAttributesSema.po: CommentCommandList.inc.h TargetAttributesSema.po: DeclNodes.inc.h TargetAttributesSema.po: DiagnosticCommonKinds.inc.h TargetAttributesSema.po: DiagnosticSemaKinds.inc.h diff --git a/lib/clang/libclangserialization/Makefile.depend b/lib/clang/libclangserialization/Makefile.depend index 7aee5f8756e0..2269b1e1f3c1 100644 --- a/lib/clang/libclangserialization/Makefile.depend +++ b/lib/clang/libclangserialization/Makefile.depend @@ -8,23 +8,25 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -ASTCommon.o: AttrList.inc.h -ASTCommon.o: Attrs.inc.h +ASTCommon.o: CommentCommandList.inc.h ASTCommon.o: DeclNodes.inc.h ASTCommon.o: DiagnosticCommonKinds.inc.h -ASTCommon.po: AttrList.inc.h -ASTCommon.po: Attrs.inc.h +ASTCommon.o: StmtNodes.inc.h +ASTCommon.po: CommentCommandList.inc.h ASTCommon.po: DeclNodes.inc.h ASTCommon.po: DiagnosticCommonKinds.inc.h +ASTCommon.po: StmtNodes.inc.h ASTReader.o: AttrList.inc.h ASTReader.o: AttrParsedAttrList.inc.h ASTReader.o: Attrs.inc.h +ASTReader.o: CommentCommandList.inc.h ASTReader.o: DeclNodes.inc.h ASTReader.o: DiagnosticCommonKinds.inc.h ASTReader.o: DiagnosticSerializationKinds.inc.h @@ -32,6 +34,7 @@ ASTReader.o: StmtNodes.inc.h ASTReader.po: AttrList.inc.h ASTReader.po: AttrParsedAttrList.inc.h ASTReader.po: Attrs.inc.h +ASTReader.po: CommentCommandList.inc.h ASTReader.po: DeclNodes.inc.h ASTReader.po: DiagnosticCommonKinds.inc.h ASTReader.po: DiagnosticSerializationKinds.inc.h @@ -40,6 +43,7 @@ ASTReaderDecl.o: AttrList.inc.h ASTReaderDecl.o: AttrPCHRead.inc.h ASTReaderDecl.o: AttrParsedAttrList.inc.h ASTReaderDecl.o: Attrs.inc.h +ASTReaderDecl.o: CommentCommandList.inc.h ASTReaderDecl.o: DeclNodes.inc.h ASTReaderDecl.o: DiagnosticCommonKinds.inc.h ASTReaderDecl.o: DiagnosticSemaKinds.inc.h @@ -48,17 +52,16 @@ ASTReaderDecl.po: AttrList.inc.h ASTReaderDecl.po: AttrPCHRead.inc.h ASTReaderDecl.po: AttrParsedAttrList.inc.h ASTReaderDecl.po: Attrs.inc.h +ASTReaderDecl.po: CommentCommandList.inc.h ASTReaderDecl.po: DeclNodes.inc.h ASTReaderDecl.po: DiagnosticCommonKinds.inc.h ASTReaderDecl.po: DiagnosticSemaKinds.inc.h ASTReaderDecl.po: StmtNodes.inc.h -ASTReaderStmt.o: AttrList.inc.h -ASTReaderStmt.o: Attrs.inc.h +ASTReaderStmt.o: CommentCommandList.inc.h ASTReaderStmt.o: DeclNodes.inc.h ASTReaderStmt.o: DiagnosticCommonKinds.inc.h ASTReaderStmt.o: StmtNodes.inc.h -ASTReaderStmt.po: AttrList.inc.h -ASTReaderStmt.po: Attrs.inc.h +ASTReaderStmt.po: CommentCommandList.inc.h ASTReaderStmt.po: DeclNodes.inc.h ASTReaderStmt.po: DiagnosticCommonKinds.inc.h ASTReaderStmt.po: StmtNodes.inc.h @@ -66,6 +69,7 @@ ASTWriter.o: AttrList.inc.h ASTWriter.o: AttrPCHWrite.inc.h ASTWriter.o: AttrParsedAttrList.inc.h ASTWriter.o: Attrs.inc.h +ASTWriter.o: CommentCommandList.inc.h ASTWriter.o: DeclNodes.inc.h ASTWriter.o: DiagnosticCommonKinds.inc.h ASTWriter.o: StmtNodes.inc.h @@ -73,37 +77,36 @@ ASTWriter.po: AttrList.inc.h ASTWriter.po: AttrPCHWrite.inc.h ASTWriter.po: AttrParsedAttrList.inc.h ASTWriter.po: Attrs.inc.h +ASTWriter.po: CommentCommandList.inc.h ASTWriter.po: DeclNodes.inc.h ASTWriter.po: DiagnosticCommonKinds.inc.h ASTWriter.po: StmtNodes.inc.h -ASTWriterDecl.o: AttrList.inc.h -ASTWriterDecl.o: Attrs.inc.h +ASTWriterDecl.o: CommentCommandList.inc.h ASTWriterDecl.o: DeclNodes.inc.h ASTWriterDecl.o: DiagnosticCommonKinds.inc.h ASTWriterDecl.o: StmtNodes.inc.h -ASTWriterDecl.po: AttrList.inc.h -ASTWriterDecl.po: Attrs.inc.h +ASTWriterDecl.po: CommentCommandList.inc.h ASTWriterDecl.po: DeclNodes.inc.h ASTWriterDecl.po: DiagnosticCommonKinds.inc.h ASTWriterDecl.po: StmtNodes.inc.h -ASTWriterStmt.o: AttrList.inc.h -ASTWriterStmt.o: Attrs.inc.h +ASTWriterStmt.o: CommentCommandList.inc.h ASTWriterStmt.o: DeclNodes.inc.h ASTWriterStmt.o: DiagnosticCommonKinds.inc.h ASTWriterStmt.o: StmtNodes.inc.h -ASTWriterStmt.po: AttrList.inc.h -ASTWriterStmt.po: Attrs.inc.h +ASTWriterStmt.po: CommentCommandList.inc.h ASTWriterStmt.po: DeclNodes.inc.h ASTWriterStmt.po: DiagnosticCommonKinds.inc.h ASTWriterStmt.po: StmtNodes.inc.h -GeneratePCH.o: AttrList.inc.h -GeneratePCH.o: Attrs.inc.h +GeneratePCH.o: CommentCommandList.inc.h GeneratePCH.o: DeclNodes.inc.h GeneratePCH.o: DiagnosticCommonKinds.inc.h -GeneratePCH.po: AttrList.inc.h -GeneratePCH.po: Attrs.inc.h +GeneratePCH.o: StmtNodes.inc.h +GeneratePCH.po: CommentCommandList.inc.h GeneratePCH.po: DeclNodes.inc.h GeneratePCH.po: DiagnosticCommonKinds.inc.h +GeneratePCH.po: StmtNodes.inc.h +GlobalModuleIndex.o: DiagnosticCommonKinds.inc.h +GlobalModuleIndex.po: DiagnosticCommonKinds.inc.h Module.o: DiagnosticCommonKinds.inc.h Module.po: DiagnosticCommonKinds.inc.h ModuleManager.o: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangstaticanalyzercheckers/Makefile.depend b/lib/clang/libclangstaticanalyzercheckers/Makefile.depend index a479b5622ecd..c9fe45fc6f1e 100644 --- a/lib/clang/libclangstaticanalyzercheckers/Makefile.depend +++ b/lib/clang/libclangstaticanalyzercheckers/Makefile.depend @@ -8,789 +8,704 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -AnalyzerStatsChecker.o: AttrList.inc.h -AnalyzerStatsChecker.o: Attrs.inc.h AnalyzerStatsChecker.o: Checkers.inc.h +AnalyzerStatsChecker.o: CommentCommandList.inc.h AnalyzerStatsChecker.o: DeclNodes.inc.h AnalyzerStatsChecker.o: DiagnosticCommonKinds.inc.h AnalyzerStatsChecker.o: StmtNodes.inc.h -AnalyzerStatsChecker.po: AttrList.inc.h -AnalyzerStatsChecker.po: Attrs.inc.h AnalyzerStatsChecker.po: Checkers.inc.h +AnalyzerStatsChecker.po: CommentCommandList.inc.h AnalyzerStatsChecker.po: DeclNodes.inc.h AnalyzerStatsChecker.po: DiagnosticCommonKinds.inc.h AnalyzerStatsChecker.po: StmtNodes.inc.h -ArrayBoundChecker.o: AttrList.inc.h -ArrayBoundChecker.o: Attrs.inc.h ArrayBoundChecker.o: Checkers.inc.h +ArrayBoundChecker.o: CommentCommandList.inc.h ArrayBoundChecker.o: DeclNodes.inc.h ArrayBoundChecker.o: DiagnosticCommonKinds.inc.h ArrayBoundChecker.o: StmtNodes.inc.h -ArrayBoundChecker.po: AttrList.inc.h -ArrayBoundChecker.po: Attrs.inc.h ArrayBoundChecker.po: Checkers.inc.h +ArrayBoundChecker.po: CommentCommandList.inc.h ArrayBoundChecker.po: DeclNodes.inc.h ArrayBoundChecker.po: DiagnosticCommonKinds.inc.h ArrayBoundChecker.po: StmtNodes.inc.h -ArrayBoundCheckerV2.o: AttrList.inc.h -ArrayBoundCheckerV2.o: Attrs.inc.h ArrayBoundCheckerV2.o: Checkers.inc.h +ArrayBoundCheckerV2.o: CommentCommandList.inc.h ArrayBoundCheckerV2.o: DeclNodes.inc.h ArrayBoundCheckerV2.o: DiagnosticCommonKinds.inc.h ArrayBoundCheckerV2.o: StmtNodes.inc.h -ArrayBoundCheckerV2.po: AttrList.inc.h -ArrayBoundCheckerV2.po: Attrs.inc.h ArrayBoundCheckerV2.po: Checkers.inc.h +ArrayBoundCheckerV2.po: CommentCommandList.inc.h ArrayBoundCheckerV2.po: DeclNodes.inc.h ArrayBoundCheckerV2.po: DiagnosticCommonKinds.inc.h ArrayBoundCheckerV2.po: StmtNodes.inc.h -AttrNonNullChecker.o: AttrList.inc.h -AttrNonNullChecker.o: Attrs.inc.h -AttrNonNullChecker.o: Checkers.inc.h -AttrNonNullChecker.o: DeclNodes.inc.h -AttrNonNullChecker.o: DiagnosticCommonKinds.inc.h -AttrNonNullChecker.o: StmtNodes.inc.h -AttrNonNullChecker.po: AttrList.inc.h -AttrNonNullChecker.po: Attrs.inc.h -AttrNonNullChecker.po: Checkers.inc.h -AttrNonNullChecker.po: DeclNodes.inc.h -AttrNonNullChecker.po: DiagnosticCommonKinds.inc.h -AttrNonNullChecker.po: StmtNodes.inc.h -BasicObjCFoundationChecks.o: AttrList.inc.h -BasicObjCFoundationChecks.o: Attrs.inc.h BasicObjCFoundationChecks.o: Checkers.inc.h +BasicObjCFoundationChecks.o: CommentCommandList.inc.h BasicObjCFoundationChecks.o: DeclNodes.inc.h BasicObjCFoundationChecks.o: DiagnosticCommonKinds.inc.h BasicObjCFoundationChecks.o: StmtNodes.inc.h -BasicObjCFoundationChecks.po: AttrList.inc.h -BasicObjCFoundationChecks.po: Attrs.inc.h BasicObjCFoundationChecks.po: Checkers.inc.h +BasicObjCFoundationChecks.po: CommentCommandList.inc.h BasicObjCFoundationChecks.po: DeclNodes.inc.h BasicObjCFoundationChecks.po: DiagnosticCommonKinds.inc.h BasicObjCFoundationChecks.po: StmtNodes.inc.h -BoolAssignmentChecker.o: AttrList.inc.h -BoolAssignmentChecker.o: Attrs.inc.h BoolAssignmentChecker.o: Checkers.inc.h +BoolAssignmentChecker.o: CommentCommandList.inc.h BoolAssignmentChecker.o: DeclNodes.inc.h BoolAssignmentChecker.o: DiagnosticCommonKinds.inc.h BoolAssignmentChecker.o: StmtNodes.inc.h -BoolAssignmentChecker.po: AttrList.inc.h -BoolAssignmentChecker.po: Attrs.inc.h BoolAssignmentChecker.po: Checkers.inc.h +BoolAssignmentChecker.po: CommentCommandList.inc.h BoolAssignmentChecker.po: DeclNodes.inc.h BoolAssignmentChecker.po: DiagnosticCommonKinds.inc.h BoolAssignmentChecker.po: StmtNodes.inc.h -BuiltinFunctionChecker.o: AttrList.inc.h -BuiltinFunctionChecker.o: Attrs.inc.h BuiltinFunctionChecker.o: Checkers.inc.h +BuiltinFunctionChecker.o: CommentCommandList.inc.h BuiltinFunctionChecker.o: DeclNodes.inc.h BuiltinFunctionChecker.o: DiagnosticCommonKinds.inc.h BuiltinFunctionChecker.o: StmtNodes.inc.h -BuiltinFunctionChecker.po: AttrList.inc.h -BuiltinFunctionChecker.po: Attrs.inc.h BuiltinFunctionChecker.po: Checkers.inc.h +BuiltinFunctionChecker.po: CommentCommandList.inc.h BuiltinFunctionChecker.po: DeclNodes.inc.h BuiltinFunctionChecker.po: DiagnosticCommonKinds.inc.h BuiltinFunctionChecker.po: StmtNodes.inc.h -CStringChecker.o: AttrList.inc.h -CStringChecker.o: Attrs.inc.h CStringChecker.o: Checkers.inc.h +CStringChecker.o: CommentCommandList.inc.h CStringChecker.o: DeclNodes.inc.h CStringChecker.o: DiagnosticCommonKinds.inc.h CStringChecker.o: StmtNodes.inc.h -CStringChecker.po: AttrList.inc.h -CStringChecker.po: Attrs.inc.h CStringChecker.po: Checkers.inc.h +CStringChecker.po: CommentCommandList.inc.h CStringChecker.po: DeclNodes.inc.h CStringChecker.po: DiagnosticCommonKinds.inc.h CStringChecker.po: StmtNodes.inc.h -CStringSyntaxChecker.o: AttrList.inc.h -CStringSyntaxChecker.o: Attrs.inc.h CStringSyntaxChecker.o: Checkers.inc.h +CStringSyntaxChecker.o: CommentCommandList.inc.h CStringSyntaxChecker.o: DeclNodes.inc.h CStringSyntaxChecker.o: DiagnosticCommonKinds.inc.h CStringSyntaxChecker.o: StmtNodes.inc.h -CStringSyntaxChecker.po: AttrList.inc.h -CStringSyntaxChecker.po: Attrs.inc.h CStringSyntaxChecker.po: Checkers.inc.h +CStringSyntaxChecker.po: CommentCommandList.inc.h CStringSyntaxChecker.po: DeclNodes.inc.h CStringSyntaxChecker.po: DiagnosticCommonKinds.inc.h CStringSyntaxChecker.po: StmtNodes.inc.h -CallAndMessageChecker.o: AttrList.inc.h -CallAndMessageChecker.o: Attrs.inc.h CallAndMessageChecker.o: Checkers.inc.h +CallAndMessageChecker.o: CommentCommandList.inc.h CallAndMessageChecker.o: DeclNodes.inc.h CallAndMessageChecker.o: DiagnosticCommonKinds.inc.h CallAndMessageChecker.o: StmtNodes.inc.h -CallAndMessageChecker.po: AttrList.inc.h -CallAndMessageChecker.po: Attrs.inc.h CallAndMessageChecker.po: Checkers.inc.h +CallAndMessageChecker.po: CommentCommandList.inc.h CallAndMessageChecker.po: DeclNodes.inc.h CallAndMessageChecker.po: DiagnosticCommonKinds.inc.h CallAndMessageChecker.po: StmtNodes.inc.h -CastSizeChecker.o: AttrList.inc.h -CastSizeChecker.o: Attrs.inc.h CastSizeChecker.o: Checkers.inc.h +CastSizeChecker.o: CommentCommandList.inc.h CastSizeChecker.o: DeclNodes.inc.h CastSizeChecker.o: DiagnosticCommonKinds.inc.h CastSizeChecker.o: StmtNodes.inc.h -CastSizeChecker.po: AttrList.inc.h -CastSizeChecker.po: Attrs.inc.h CastSizeChecker.po: Checkers.inc.h +CastSizeChecker.po: CommentCommandList.inc.h CastSizeChecker.po: DeclNodes.inc.h CastSizeChecker.po: DiagnosticCommonKinds.inc.h CastSizeChecker.po: StmtNodes.inc.h -CastToStructChecker.o: AttrList.inc.h -CastToStructChecker.o: Attrs.inc.h CastToStructChecker.o: Checkers.inc.h +CastToStructChecker.o: CommentCommandList.inc.h CastToStructChecker.o: DeclNodes.inc.h CastToStructChecker.o: DiagnosticCommonKinds.inc.h CastToStructChecker.o: StmtNodes.inc.h -CastToStructChecker.po: AttrList.inc.h -CastToStructChecker.po: Attrs.inc.h CastToStructChecker.po: Checkers.inc.h +CastToStructChecker.po: CommentCommandList.inc.h CastToStructChecker.po: DeclNodes.inc.h CastToStructChecker.po: DiagnosticCommonKinds.inc.h CastToStructChecker.po: StmtNodes.inc.h CheckObjCDealloc.o: AttrList.inc.h CheckObjCDealloc.o: Attrs.inc.h CheckObjCDealloc.o: Checkers.inc.h +CheckObjCDealloc.o: CommentCommandList.inc.h CheckObjCDealloc.o: DeclNodes.inc.h CheckObjCDealloc.o: DiagnosticCommonKinds.inc.h CheckObjCDealloc.o: StmtNodes.inc.h CheckObjCDealloc.po: AttrList.inc.h CheckObjCDealloc.po: Attrs.inc.h CheckObjCDealloc.po: Checkers.inc.h +CheckObjCDealloc.po: CommentCommandList.inc.h CheckObjCDealloc.po: DeclNodes.inc.h CheckObjCDealloc.po: DiagnosticCommonKinds.inc.h CheckObjCDealloc.po: StmtNodes.inc.h -CheckObjCInstMethSignature.o: AttrList.inc.h -CheckObjCInstMethSignature.o: Attrs.inc.h CheckObjCInstMethSignature.o: Checkers.inc.h +CheckObjCInstMethSignature.o: CommentCommandList.inc.h CheckObjCInstMethSignature.o: DeclNodes.inc.h CheckObjCInstMethSignature.o: DiagnosticCommonKinds.inc.h CheckObjCInstMethSignature.o: StmtNodes.inc.h -CheckObjCInstMethSignature.po: AttrList.inc.h -CheckObjCInstMethSignature.po: Attrs.inc.h CheckObjCInstMethSignature.po: Checkers.inc.h +CheckObjCInstMethSignature.po: CommentCommandList.inc.h CheckObjCInstMethSignature.po: DeclNodes.inc.h CheckObjCInstMethSignature.po: DiagnosticCommonKinds.inc.h CheckObjCInstMethSignature.po: StmtNodes.inc.h -CheckSecuritySyntaxOnly.o: AttrList.inc.h -CheckSecuritySyntaxOnly.o: Attrs.inc.h CheckSecuritySyntaxOnly.o: Checkers.inc.h +CheckSecuritySyntaxOnly.o: CommentCommandList.inc.h CheckSecuritySyntaxOnly.o: DeclNodes.inc.h CheckSecuritySyntaxOnly.o: DiagnosticCommonKinds.inc.h CheckSecuritySyntaxOnly.o: StmtNodes.inc.h -CheckSecuritySyntaxOnly.po: AttrList.inc.h -CheckSecuritySyntaxOnly.po: Attrs.inc.h CheckSecuritySyntaxOnly.po: Checkers.inc.h +CheckSecuritySyntaxOnly.po: CommentCommandList.inc.h CheckSecuritySyntaxOnly.po: DeclNodes.inc.h CheckSecuritySyntaxOnly.po: DiagnosticCommonKinds.inc.h CheckSecuritySyntaxOnly.po: StmtNodes.inc.h -CheckSizeofPointer.o: AttrList.inc.h -CheckSizeofPointer.o: Attrs.inc.h CheckSizeofPointer.o: Checkers.inc.h +CheckSizeofPointer.o: CommentCommandList.inc.h CheckSizeofPointer.o: DeclNodes.inc.h CheckSizeofPointer.o: DiagnosticCommonKinds.inc.h CheckSizeofPointer.o: StmtNodes.inc.h -CheckSizeofPointer.po: AttrList.inc.h -CheckSizeofPointer.po: Attrs.inc.h CheckSizeofPointer.po: Checkers.inc.h +CheckSizeofPointer.po: CommentCommandList.inc.h CheckSizeofPointer.po: DeclNodes.inc.h CheckSizeofPointer.po: DiagnosticCommonKinds.inc.h CheckSizeofPointer.po: StmtNodes.inc.h -CheckerDocumentation.o: AttrList.inc.h -CheckerDocumentation.o: Attrs.inc.h CheckerDocumentation.o: Checkers.inc.h +CheckerDocumentation.o: CommentCommandList.inc.h CheckerDocumentation.o: DeclNodes.inc.h CheckerDocumentation.o: DiagnosticCommonKinds.inc.h CheckerDocumentation.o: StmtNodes.inc.h -CheckerDocumentation.po: AttrList.inc.h -CheckerDocumentation.po: Attrs.inc.h CheckerDocumentation.po: Checkers.inc.h +CheckerDocumentation.po: CommentCommandList.inc.h CheckerDocumentation.po: DeclNodes.inc.h CheckerDocumentation.po: DiagnosticCommonKinds.inc.h CheckerDocumentation.po: StmtNodes.inc.h -ChrootChecker.o: AttrList.inc.h -ChrootChecker.o: Attrs.inc.h ChrootChecker.o: Checkers.inc.h +ChrootChecker.o: CommentCommandList.inc.h ChrootChecker.o: DeclNodes.inc.h ChrootChecker.o: DiagnosticCommonKinds.inc.h ChrootChecker.o: StmtNodes.inc.h -ChrootChecker.po: AttrList.inc.h -ChrootChecker.po: Attrs.inc.h ChrootChecker.po: Checkers.inc.h +ChrootChecker.po: CommentCommandList.inc.h ChrootChecker.po: DeclNodes.inc.h ChrootChecker.po: DiagnosticCommonKinds.inc.h ChrootChecker.po: StmtNodes.inc.h -ClangCheckers.o: AttrList.inc.h -ClangCheckers.o: Attrs.inc.h ClangCheckers.o: Checkers.inc.h +ClangCheckers.o: CommentCommandList.inc.h ClangCheckers.o: DeclNodes.inc.h ClangCheckers.o: DiagnosticCommonKinds.inc.h ClangCheckers.o: StmtNodes.inc.h -ClangCheckers.po: AttrList.inc.h -ClangCheckers.po: Attrs.inc.h ClangCheckers.po: Checkers.inc.h +ClangCheckers.po: CommentCommandList.inc.h ClangCheckers.po: DeclNodes.inc.h ClangCheckers.po: DiagnosticCommonKinds.inc.h ClangCheckers.po: StmtNodes.inc.h DeadStoresChecker.o: AttrList.inc.h DeadStoresChecker.o: Attrs.inc.h DeadStoresChecker.o: Checkers.inc.h +DeadStoresChecker.o: CommentCommandList.inc.h DeadStoresChecker.o: DeclNodes.inc.h DeadStoresChecker.o: DiagnosticCommonKinds.inc.h DeadStoresChecker.o: StmtNodes.inc.h DeadStoresChecker.po: AttrList.inc.h DeadStoresChecker.po: Attrs.inc.h DeadStoresChecker.po: Checkers.inc.h +DeadStoresChecker.po: CommentCommandList.inc.h DeadStoresChecker.po: DeclNodes.inc.h DeadStoresChecker.po: DiagnosticCommonKinds.inc.h DeadStoresChecker.po: StmtNodes.inc.h -DebugCheckers.o: AttrList.inc.h -DebugCheckers.o: Attrs.inc.h DebugCheckers.o: Checkers.inc.h +DebugCheckers.o: CommentCommandList.inc.h DebugCheckers.o: DeclNodes.inc.h DebugCheckers.o: DiagnosticCommonKinds.inc.h DebugCheckers.o: StmtNodes.inc.h -DebugCheckers.po: AttrList.inc.h -DebugCheckers.po: Attrs.inc.h DebugCheckers.po: Checkers.inc.h +DebugCheckers.po: CommentCommandList.inc.h DebugCheckers.po: DeclNodes.inc.h DebugCheckers.po: DiagnosticCommonKinds.inc.h DebugCheckers.po: StmtNodes.inc.h -DereferenceChecker.o: AttrList.inc.h -DereferenceChecker.o: Attrs.inc.h DereferenceChecker.o: Checkers.inc.h +DereferenceChecker.o: CommentCommandList.inc.h DereferenceChecker.o: DeclNodes.inc.h DereferenceChecker.o: DiagnosticCommonKinds.inc.h DereferenceChecker.o: StmtNodes.inc.h -DereferenceChecker.po: AttrList.inc.h -DereferenceChecker.po: Attrs.inc.h DereferenceChecker.po: Checkers.inc.h +DereferenceChecker.po: CommentCommandList.inc.h DereferenceChecker.po: DeclNodes.inc.h DereferenceChecker.po: DiagnosticCommonKinds.inc.h DereferenceChecker.po: StmtNodes.inc.h DirectIvarAssignment.o: AttrList.inc.h DirectIvarAssignment.o: Attrs.inc.h DirectIvarAssignment.o: Checkers.inc.h +DirectIvarAssignment.o: CommentCommandList.inc.h DirectIvarAssignment.o: DeclNodes.inc.h DirectIvarAssignment.o: DiagnosticCommonKinds.inc.h DirectIvarAssignment.o: StmtNodes.inc.h DirectIvarAssignment.po: AttrList.inc.h DirectIvarAssignment.po: Attrs.inc.h DirectIvarAssignment.po: Checkers.inc.h +DirectIvarAssignment.po: CommentCommandList.inc.h DirectIvarAssignment.po: DeclNodes.inc.h DirectIvarAssignment.po: DiagnosticCommonKinds.inc.h DirectIvarAssignment.po: StmtNodes.inc.h -DivZeroChecker.o: AttrList.inc.h -DivZeroChecker.o: Attrs.inc.h DivZeroChecker.o: Checkers.inc.h +DivZeroChecker.o: CommentCommandList.inc.h DivZeroChecker.o: DeclNodes.inc.h DivZeroChecker.o: DiagnosticCommonKinds.inc.h DivZeroChecker.o: StmtNodes.inc.h -DivZeroChecker.po: AttrList.inc.h -DivZeroChecker.po: Attrs.inc.h DivZeroChecker.po: Checkers.inc.h +DivZeroChecker.po: CommentCommandList.inc.h DivZeroChecker.po: DeclNodes.inc.h DivZeroChecker.po: DiagnosticCommonKinds.inc.h DivZeroChecker.po: StmtNodes.inc.h -DynamicTypePropagation.o: AttrList.inc.h -DynamicTypePropagation.o: Attrs.inc.h DynamicTypePropagation.o: Checkers.inc.h +DynamicTypePropagation.o: CommentCommandList.inc.h DynamicTypePropagation.o: DeclNodes.inc.h DynamicTypePropagation.o: DiagnosticCommonKinds.inc.h DynamicTypePropagation.o: StmtNodes.inc.h -DynamicTypePropagation.po: AttrList.inc.h -DynamicTypePropagation.po: Attrs.inc.h DynamicTypePropagation.po: Checkers.inc.h +DynamicTypePropagation.po: CommentCommandList.inc.h DynamicTypePropagation.po: DeclNodes.inc.h DynamicTypePropagation.po: DiagnosticCommonKinds.inc.h DynamicTypePropagation.po: StmtNodes.inc.h -ExprInspectionChecker.o: AttrList.inc.h -ExprInspectionChecker.o: Attrs.inc.h ExprInspectionChecker.o: Checkers.inc.h +ExprInspectionChecker.o: CommentCommandList.inc.h ExprInspectionChecker.o: DeclNodes.inc.h ExprInspectionChecker.o: DiagnosticCommonKinds.inc.h ExprInspectionChecker.o: StmtNodes.inc.h -ExprInspectionChecker.po: AttrList.inc.h -ExprInspectionChecker.po: Attrs.inc.h ExprInspectionChecker.po: Checkers.inc.h +ExprInspectionChecker.po: CommentCommandList.inc.h ExprInspectionChecker.po: DeclNodes.inc.h ExprInspectionChecker.po: DiagnosticCommonKinds.inc.h ExprInspectionChecker.po: StmtNodes.inc.h -FixedAddressChecker.o: AttrList.inc.h -FixedAddressChecker.o: Attrs.inc.h FixedAddressChecker.o: Checkers.inc.h +FixedAddressChecker.o: CommentCommandList.inc.h FixedAddressChecker.o: DeclNodes.inc.h FixedAddressChecker.o: DiagnosticCommonKinds.inc.h FixedAddressChecker.o: StmtNodes.inc.h -FixedAddressChecker.po: AttrList.inc.h -FixedAddressChecker.po: Attrs.inc.h FixedAddressChecker.po: Checkers.inc.h +FixedAddressChecker.po: CommentCommandList.inc.h FixedAddressChecker.po: DeclNodes.inc.h FixedAddressChecker.po: DiagnosticCommonKinds.inc.h FixedAddressChecker.po: StmtNodes.inc.h GenericTaintChecker.o: AttrList.inc.h GenericTaintChecker.o: Attrs.inc.h GenericTaintChecker.o: Checkers.inc.h +GenericTaintChecker.o: CommentCommandList.inc.h GenericTaintChecker.o: DeclNodes.inc.h GenericTaintChecker.o: DiagnosticCommonKinds.inc.h GenericTaintChecker.o: StmtNodes.inc.h GenericTaintChecker.po: AttrList.inc.h GenericTaintChecker.po: Attrs.inc.h GenericTaintChecker.po: Checkers.inc.h +GenericTaintChecker.po: CommentCommandList.inc.h GenericTaintChecker.po: DeclNodes.inc.h GenericTaintChecker.po: DiagnosticCommonKinds.inc.h GenericTaintChecker.po: StmtNodes.inc.h -IdempotentOperationChecker.o: AttrList.inc.h -IdempotentOperationChecker.o: Attrs.inc.h IdempotentOperationChecker.o: Checkers.inc.h +IdempotentOperationChecker.o: CommentCommandList.inc.h IdempotentOperationChecker.o: DeclNodes.inc.h IdempotentOperationChecker.o: DiagnosticCommonKinds.inc.h IdempotentOperationChecker.o: StmtNodes.inc.h -IdempotentOperationChecker.po: AttrList.inc.h -IdempotentOperationChecker.po: Attrs.inc.h IdempotentOperationChecker.po: Checkers.inc.h +IdempotentOperationChecker.po: CommentCommandList.inc.h IdempotentOperationChecker.po: DeclNodes.inc.h IdempotentOperationChecker.po: DiagnosticCommonKinds.inc.h IdempotentOperationChecker.po: StmtNodes.inc.h IvarInvalidationChecker.o: AttrList.inc.h IvarInvalidationChecker.o: Attrs.inc.h IvarInvalidationChecker.o: Checkers.inc.h +IvarInvalidationChecker.o: CommentCommandList.inc.h IvarInvalidationChecker.o: DeclNodes.inc.h IvarInvalidationChecker.o: DiagnosticCommonKinds.inc.h IvarInvalidationChecker.o: StmtNodes.inc.h IvarInvalidationChecker.po: AttrList.inc.h IvarInvalidationChecker.po: Attrs.inc.h IvarInvalidationChecker.po: Checkers.inc.h +IvarInvalidationChecker.po: CommentCommandList.inc.h IvarInvalidationChecker.po: DeclNodes.inc.h IvarInvalidationChecker.po: DiagnosticCommonKinds.inc.h IvarInvalidationChecker.po: StmtNodes.inc.h -LLVMConventionsChecker.o: AttrList.inc.h -LLVMConventionsChecker.o: Attrs.inc.h LLVMConventionsChecker.o: Checkers.inc.h +LLVMConventionsChecker.o: CommentCommandList.inc.h LLVMConventionsChecker.o: DeclNodes.inc.h LLVMConventionsChecker.o: DiagnosticCommonKinds.inc.h LLVMConventionsChecker.o: StmtNodes.inc.h -LLVMConventionsChecker.po: AttrList.inc.h -LLVMConventionsChecker.po: Attrs.inc.h LLVMConventionsChecker.po: Checkers.inc.h +LLVMConventionsChecker.po: CommentCommandList.inc.h LLVMConventionsChecker.po: DeclNodes.inc.h LLVMConventionsChecker.po: DiagnosticCommonKinds.inc.h LLVMConventionsChecker.po: StmtNodes.inc.h -MacOSKeychainAPIChecker.o: AttrList.inc.h -MacOSKeychainAPIChecker.o: Attrs.inc.h MacOSKeychainAPIChecker.o: Checkers.inc.h +MacOSKeychainAPIChecker.o: CommentCommandList.inc.h MacOSKeychainAPIChecker.o: DeclNodes.inc.h MacOSKeychainAPIChecker.o: DiagnosticCommonKinds.inc.h MacOSKeychainAPIChecker.o: StmtNodes.inc.h -MacOSKeychainAPIChecker.po: AttrList.inc.h -MacOSKeychainAPIChecker.po: Attrs.inc.h MacOSKeychainAPIChecker.po: Checkers.inc.h +MacOSKeychainAPIChecker.po: CommentCommandList.inc.h MacOSKeychainAPIChecker.po: DeclNodes.inc.h MacOSKeychainAPIChecker.po: DiagnosticCommonKinds.inc.h MacOSKeychainAPIChecker.po: StmtNodes.inc.h -MacOSXAPIChecker.o: AttrList.inc.h -MacOSXAPIChecker.o: Attrs.inc.h MacOSXAPIChecker.o: Checkers.inc.h +MacOSXAPIChecker.o: CommentCommandList.inc.h MacOSXAPIChecker.o: DeclNodes.inc.h MacOSXAPIChecker.o: DiagnosticCommonKinds.inc.h MacOSXAPIChecker.o: StmtNodes.inc.h -MacOSXAPIChecker.po: AttrList.inc.h -MacOSXAPIChecker.po: Attrs.inc.h MacOSXAPIChecker.po: Checkers.inc.h +MacOSXAPIChecker.po: CommentCommandList.inc.h MacOSXAPIChecker.po: DeclNodes.inc.h MacOSXAPIChecker.po: DiagnosticCommonKinds.inc.h MacOSXAPIChecker.po: StmtNodes.inc.h MallocChecker.o: AttrList.inc.h MallocChecker.o: Attrs.inc.h MallocChecker.o: Checkers.inc.h +MallocChecker.o: CommentCommandList.inc.h MallocChecker.o: DeclNodes.inc.h MallocChecker.o: DiagnosticCommonKinds.inc.h MallocChecker.o: StmtNodes.inc.h MallocChecker.po: AttrList.inc.h MallocChecker.po: Attrs.inc.h MallocChecker.po: Checkers.inc.h +MallocChecker.po: CommentCommandList.inc.h MallocChecker.po: DeclNodes.inc.h MallocChecker.po: DiagnosticCommonKinds.inc.h MallocChecker.po: StmtNodes.inc.h -MallocOverflowSecurityChecker.o: AttrList.inc.h -MallocOverflowSecurityChecker.o: Attrs.inc.h MallocOverflowSecurityChecker.o: Checkers.inc.h +MallocOverflowSecurityChecker.o: CommentCommandList.inc.h MallocOverflowSecurityChecker.o: DeclNodes.inc.h MallocOverflowSecurityChecker.o: DiagnosticCommonKinds.inc.h MallocOverflowSecurityChecker.o: StmtNodes.inc.h -MallocOverflowSecurityChecker.po: AttrList.inc.h -MallocOverflowSecurityChecker.po: Attrs.inc.h MallocOverflowSecurityChecker.po: Checkers.inc.h +MallocOverflowSecurityChecker.po: CommentCommandList.inc.h MallocOverflowSecurityChecker.po: DeclNodes.inc.h MallocOverflowSecurityChecker.po: DiagnosticCommonKinds.inc.h MallocOverflowSecurityChecker.po: StmtNodes.inc.h -MallocSizeofChecker.o: AttrList.inc.h -MallocSizeofChecker.o: Attrs.inc.h MallocSizeofChecker.o: Checkers.inc.h +MallocSizeofChecker.o: CommentCommandList.inc.h MallocSizeofChecker.o: DeclNodes.inc.h MallocSizeofChecker.o: DiagnosticCommonKinds.inc.h MallocSizeofChecker.o: StmtNodes.inc.h -MallocSizeofChecker.po: AttrList.inc.h -MallocSizeofChecker.po: Attrs.inc.h MallocSizeofChecker.po: Checkers.inc.h +MallocSizeofChecker.po: CommentCommandList.inc.h MallocSizeofChecker.po: DeclNodes.inc.h MallocSizeofChecker.po: DiagnosticCommonKinds.inc.h MallocSizeofChecker.po: StmtNodes.inc.h -NSAutoreleasePoolChecker.o: AttrList.inc.h -NSAutoreleasePoolChecker.o: Attrs.inc.h NSAutoreleasePoolChecker.o: Checkers.inc.h +NSAutoreleasePoolChecker.o: CommentCommandList.inc.h NSAutoreleasePoolChecker.o: DeclNodes.inc.h NSAutoreleasePoolChecker.o: DiagnosticCommonKinds.inc.h NSAutoreleasePoolChecker.o: StmtNodes.inc.h -NSAutoreleasePoolChecker.po: AttrList.inc.h -NSAutoreleasePoolChecker.po: Attrs.inc.h NSAutoreleasePoolChecker.po: Checkers.inc.h +NSAutoreleasePoolChecker.po: CommentCommandList.inc.h NSAutoreleasePoolChecker.po: DeclNodes.inc.h NSAutoreleasePoolChecker.po: DiagnosticCommonKinds.inc.h NSAutoreleasePoolChecker.po: StmtNodes.inc.h -NSErrorChecker.o: AttrList.inc.h -NSErrorChecker.o: Attrs.inc.h NSErrorChecker.o: Checkers.inc.h +NSErrorChecker.o: CommentCommandList.inc.h NSErrorChecker.o: DeclNodes.inc.h NSErrorChecker.o: DiagnosticCommonKinds.inc.h NSErrorChecker.o: StmtNodes.inc.h -NSErrorChecker.po: AttrList.inc.h -NSErrorChecker.po: Attrs.inc.h NSErrorChecker.po: Checkers.inc.h +NSErrorChecker.po: CommentCommandList.inc.h NSErrorChecker.po: DeclNodes.inc.h NSErrorChecker.po: DiagnosticCommonKinds.inc.h NSErrorChecker.po: StmtNodes.inc.h NoReturnFunctionChecker.o: AttrList.inc.h NoReturnFunctionChecker.o: Attrs.inc.h NoReturnFunctionChecker.o: Checkers.inc.h +NoReturnFunctionChecker.o: CommentCommandList.inc.h NoReturnFunctionChecker.o: DeclNodes.inc.h NoReturnFunctionChecker.o: DiagnosticCommonKinds.inc.h NoReturnFunctionChecker.o: StmtNodes.inc.h NoReturnFunctionChecker.po: AttrList.inc.h NoReturnFunctionChecker.po: Attrs.inc.h NoReturnFunctionChecker.po: Checkers.inc.h +NoReturnFunctionChecker.po: CommentCommandList.inc.h NoReturnFunctionChecker.po: DeclNodes.inc.h NoReturnFunctionChecker.po: DiagnosticCommonKinds.inc.h NoReturnFunctionChecker.po: StmtNodes.inc.h -ObjCAtSyncChecker.o: AttrList.inc.h -ObjCAtSyncChecker.o: Attrs.inc.h +NonNullParamChecker.o: AttrList.inc.h +NonNullParamChecker.o: Attrs.inc.h +NonNullParamChecker.o: Checkers.inc.h +NonNullParamChecker.o: CommentCommandList.inc.h +NonNullParamChecker.o: DeclNodes.inc.h +NonNullParamChecker.o: DiagnosticCommonKinds.inc.h +NonNullParamChecker.o: StmtNodes.inc.h +NonNullParamChecker.po: AttrList.inc.h +NonNullParamChecker.po: Attrs.inc.h +NonNullParamChecker.po: Checkers.inc.h +NonNullParamChecker.po: CommentCommandList.inc.h +NonNullParamChecker.po: DeclNodes.inc.h +NonNullParamChecker.po: DiagnosticCommonKinds.inc.h +NonNullParamChecker.po: StmtNodes.inc.h ObjCAtSyncChecker.o: Checkers.inc.h +ObjCAtSyncChecker.o: CommentCommandList.inc.h ObjCAtSyncChecker.o: DeclNodes.inc.h ObjCAtSyncChecker.o: DiagnosticCommonKinds.inc.h ObjCAtSyncChecker.o: StmtNodes.inc.h -ObjCAtSyncChecker.po: AttrList.inc.h -ObjCAtSyncChecker.po: Attrs.inc.h ObjCAtSyncChecker.po: Checkers.inc.h +ObjCAtSyncChecker.po: CommentCommandList.inc.h ObjCAtSyncChecker.po: DeclNodes.inc.h ObjCAtSyncChecker.po: DiagnosticCommonKinds.inc.h ObjCAtSyncChecker.po: StmtNodes.inc.h -ObjCContainersASTChecker.o: AttrList.inc.h -ObjCContainersASTChecker.o: Attrs.inc.h ObjCContainersASTChecker.o: Checkers.inc.h +ObjCContainersASTChecker.o: CommentCommandList.inc.h ObjCContainersASTChecker.o: DeclNodes.inc.h ObjCContainersASTChecker.o: DiagnosticCommonKinds.inc.h ObjCContainersASTChecker.o: StmtNodes.inc.h -ObjCContainersASTChecker.po: AttrList.inc.h -ObjCContainersASTChecker.po: Attrs.inc.h ObjCContainersASTChecker.po: Checkers.inc.h +ObjCContainersASTChecker.po: CommentCommandList.inc.h ObjCContainersASTChecker.po: DeclNodes.inc.h ObjCContainersASTChecker.po: DiagnosticCommonKinds.inc.h ObjCContainersASTChecker.po: StmtNodes.inc.h -ObjCContainersChecker.o: AttrList.inc.h -ObjCContainersChecker.o: Attrs.inc.h ObjCContainersChecker.o: Checkers.inc.h +ObjCContainersChecker.o: CommentCommandList.inc.h ObjCContainersChecker.o: DeclNodes.inc.h ObjCContainersChecker.o: DiagnosticCommonKinds.inc.h ObjCContainersChecker.o: StmtNodes.inc.h -ObjCContainersChecker.po: AttrList.inc.h -ObjCContainersChecker.po: Attrs.inc.h ObjCContainersChecker.po: Checkers.inc.h +ObjCContainersChecker.po: CommentCommandList.inc.h ObjCContainersChecker.po: DeclNodes.inc.h ObjCContainersChecker.po: DiagnosticCommonKinds.inc.h ObjCContainersChecker.po: StmtNodes.inc.h -ObjCMissingSuperCallChecker.o: AttrList.inc.h -ObjCMissingSuperCallChecker.o: Attrs.inc.h ObjCMissingSuperCallChecker.o: Checkers.inc.h +ObjCMissingSuperCallChecker.o: CommentCommandList.inc.h ObjCMissingSuperCallChecker.o: DeclNodes.inc.h ObjCMissingSuperCallChecker.o: DiagnosticCommonKinds.inc.h ObjCMissingSuperCallChecker.o: StmtNodes.inc.h -ObjCMissingSuperCallChecker.po: AttrList.inc.h -ObjCMissingSuperCallChecker.po: Attrs.inc.h ObjCMissingSuperCallChecker.po: Checkers.inc.h +ObjCMissingSuperCallChecker.po: CommentCommandList.inc.h ObjCMissingSuperCallChecker.po: DeclNodes.inc.h ObjCMissingSuperCallChecker.po: DiagnosticCommonKinds.inc.h ObjCMissingSuperCallChecker.po: StmtNodes.inc.h -ObjCSelfInitChecker.o: AttrList.inc.h -ObjCSelfInitChecker.o: Attrs.inc.h ObjCSelfInitChecker.o: Checkers.inc.h +ObjCSelfInitChecker.o: CommentCommandList.inc.h ObjCSelfInitChecker.o: DeclNodes.inc.h ObjCSelfInitChecker.o: DiagnosticCommonKinds.inc.h ObjCSelfInitChecker.o: StmtNodes.inc.h -ObjCSelfInitChecker.po: AttrList.inc.h -ObjCSelfInitChecker.po: Attrs.inc.h ObjCSelfInitChecker.po: Checkers.inc.h +ObjCSelfInitChecker.po: CommentCommandList.inc.h ObjCSelfInitChecker.po: DeclNodes.inc.h ObjCSelfInitChecker.po: DiagnosticCommonKinds.inc.h ObjCSelfInitChecker.po: StmtNodes.inc.h ObjCUnusedIVarsChecker.o: AttrList.inc.h ObjCUnusedIVarsChecker.o: Attrs.inc.h ObjCUnusedIVarsChecker.o: Checkers.inc.h +ObjCUnusedIVarsChecker.o: CommentCommandList.inc.h ObjCUnusedIVarsChecker.o: DeclNodes.inc.h ObjCUnusedIVarsChecker.o: DiagnosticCommonKinds.inc.h ObjCUnusedIVarsChecker.o: StmtNodes.inc.h ObjCUnusedIVarsChecker.po: AttrList.inc.h ObjCUnusedIVarsChecker.po: Attrs.inc.h ObjCUnusedIVarsChecker.po: Checkers.inc.h +ObjCUnusedIVarsChecker.po: CommentCommandList.inc.h ObjCUnusedIVarsChecker.po: DeclNodes.inc.h ObjCUnusedIVarsChecker.po: DiagnosticCommonKinds.inc.h ObjCUnusedIVarsChecker.po: StmtNodes.inc.h -PointerArithChecker.o: AttrList.inc.h -PointerArithChecker.o: Attrs.inc.h PointerArithChecker.o: Checkers.inc.h +PointerArithChecker.o: CommentCommandList.inc.h PointerArithChecker.o: DeclNodes.inc.h PointerArithChecker.o: DiagnosticCommonKinds.inc.h PointerArithChecker.o: StmtNodes.inc.h -PointerArithChecker.po: AttrList.inc.h -PointerArithChecker.po: Attrs.inc.h PointerArithChecker.po: Checkers.inc.h +PointerArithChecker.po: CommentCommandList.inc.h PointerArithChecker.po: DeclNodes.inc.h PointerArithChecker.po: DiagnosticCommonKinds.inc.h PointerArithChecker.po: StmtNodes.inc.h -PointerSubChecker.o: AttrList.inc.h -PointerSubChecker.o: Attrs.inc.h PointerSubChecker.o: Checkers.inc.h +PointerSubChecker.o: CommentCommandList.inc.h PointerSubChecker.o: DeclNodes.inc.h PointerSubChecker.o: DiagnosticCommonKinds.inc.h PointerSubChecker.o: StmtNodes.inc.h -PointerSubChecker.po: AttrList.inc.h -PointerSubChecker.po: Attrs.inc.h PointerSubChecker.po: Checkers.inc.h +PointerSubChecker.po: CommentCommandList.inc.h PointerSubChecker.po: DeclNodes.inc.h PointerSubChecker.po: DiagnosticCommonKinds.inc.h PointerSubChecker.po: StmtNodes.inc.h -PthreadLockChecker.o: AttrList.inc.h -PthreadLockChecker.o: Attrs.inc.h PthreadLockChecker.o: Checkers.inc.h +PthreadLockChecker.o: CommentCommandList.inc.h PthreadLockChecker.o: DeclNodes.inc.h PthreadLockChecker.o: DiagnosticCommonKinds.inc.h PthreadLockChecker.o: StmtNodes.inc.h -PthreadLockChecker.po: AttrList.inc.h -PthreadLockChecker.po: Attrs.inc.h PthreadLockChecker.po: Checkers.inc.h +PthreadLockChecker.po: CommentCommandList.inc.h PthreadLockChecker.po: DeclNodes.inc.h PthreadLockChecker.po: DiagnosticCommonKinds.inc.h PthreadLockChecker.po: StmtNodes.inc.h RetainCountChecker.o: AttrList.inc.h RetainCountChecker.o: Attrs.inc.h RetainCountChecker.o: Checkers.inc.h +RetainCountChecker.o: CommentCommandList.inc.h RetainCountChecker.o: DeclNodes.inc.h RetainCountChecker.o: DiagnosticCommonKinds.inc.h RetainCountChecker.o: StmtNodes.inc.h RetainCountChecker.po: AttrList.inc.h RetainCountChecker.po: Attrs.inc.h RetainCountChecker.po: Checkers.inc.h +RetainCountChecker.po: CommentCommandList.inc.h RetainCountChecker.po: DeclNodes.inc.h RetainCountChecker.po: DiagnosticCommonKinds.inc.h RetainCountChecker.po: StmtNodes.inc.h -ReturnPointerRangeChecker.o: AttrList.inc.h -ReturnPointerRangeChecker.o: Attrs.inc.h ReturnPointerRangeChecker.o: Checkers.inc.h +ReturnPointerRangeChecker.o: CommentCommandList.inc.h ReturnPointerRangeChecker.o: DeclNodes.inc.h ReturnPointerRangeChecker.o: DiagnosticCommonKinds.inc.h ReturnPointerRangeChecker.o: StmtNodes.inc.h -ReturnPointerRangeChecker.po: AttrList.inc.h -ReturnPointerRangeChecker.po: Attrs.inc.h ReturnPointerRangeChecker.po: Checkers.inc.h +ReturnPointerRangeChecker.po: CommentCommandList.inc.h ReturnPointerRangeChecker.po: DeclNodes.inc.h ReturnPointerRangeChecker.po: DiagnosticCommonKinds.inc.h ReturnPointerRangeChecker.po: StmtNodes.inc.h -ReturnUndefChecker.o: AttrList.inc.h -ReturnUndefChecker.o: Attrs.inc.h ReturnUndefChecker.o: Checkers.inc.h +ReturnUndefChecker.o: CommentCommandList.inc.h ReturnUndefChecker.o: DeclNodes.inc.h ReturnUndefChecker.o: DiagnosticCommonKinds.inc.h ReturnUndefChecker.o: StmtNodes.inc.h -ReturnUndefChecker.po: AttrList.inc.h -ReturnUndefChecker.po: Attrs.inc.h ReturnUndefChecker.po: Checkers.inc.h +ReturnUndefChecker.po: CommentCommandList.inc.h ReturnUndefChecker.po: DeclNodes.inc.h ReturnUndefChecker.po: DiagnosticCommonKinds.inc.h ReturnUndefChecker.po: StmtNodes.inc.h -SimpleStreamChecker.o: AttrList.inc.h -SimpleStreamChecker.o: Attrs.inc.h SimpleStreamChecker.o: Checkers.inc.h +SimpleStreamChecker.o: CommentCommandList.inc.h SimpleStreamChecker.o: DeclNodes.inc.h SimpleStreamChecker.o: DiagnosticCommonKinds.inc.h SimpleStreamChecker.o: StmtNodes.inc.h -SimpleStreamChecker.po: AttrList.inc.h -SimpleStreamChecker.po: Attrs.inc.h SimpleStreamChecker.po: Checkers.inc.h +SimpleStreamChecker.po: CommentCommandList.inc.h SimpleStreamChecker.po: DeclNodes.inc.h SimpleStreamChecker.po: DiagnosticCommonKinds.inc.h SimpleStreamChecker.po: StmtNodes.inc.h -StackAddrEscapeChecker.o: AttrList.inc.h -StackAddrEscapeChecker.o: Attrs.inc.h StackAddrEscapeChecker.o: Checkers.inc.h +StackAddrEscapeChecker.o: CommentCommandList.inc.h StackAddrEscapeChecker.o: DeclNodes.inc.h StackAddrEscapeChecker.o: DiagnosticCommonKinds.inc.h StackAddrEscapeChecker.o: StmtNodes.inc.h -StackAddrEscapeChecker.po: AttrList.inc.h -StackAddrEscapeChecker.po: Attrs.inc.h StackAddrEscapeChecker.po: Checkers.inc.h +StackAddrEscapeChecker.po: CommentCommandList.inc.h StackAddrEscapeChecker.po: DeclNodes.inc.h StackAddrEscapeChecker.po: DiagnosticCommonKinds.inc.h StackAddrEscapeChecker.po: StmtNodes.inc.h -StreamChecker.o: AttrList.inc.h -StreamChecker.o: Attrs.inc.h StreamChecker.o: Checkers.inc.h +StreamChecker.o: CommentCommandList.inc.h StreamChecker.o: DeclNodes.inc.h StreamChecker.o: DiagnosticCommonKinds.inc.h StreamChecker.o: StmtNodes.inc.h -StreamChecker.po: AttrList.inc.h -StreamChecker.po: Attrs.inc.h StreamChecker.po: Checkers.inc.h +StreamChecker.po: CommentCommandList.inc.h StreamChecker.po: DeclNodes.inc.h StreamChecker.po: DiagnosticCommonKinds.inc.h StreamChecker.po: StmtNodes.inc.h -TaintTesterChecker.o: AttrList.inc.h -TaintTesterChecker.o: Attrs.inc.h TaintTesterChecker.o: Checkers.inc.h +TaintTesterChecker.o: CommentCommandList.inc.h TaintTesterChecker.o: DeclNodes.inc.h TaintTesterChecker.o: DiagnosticCommonKinds.inc.h TaintTesterChecker.o: StmtNodes.inc.h -TaintTesterChecker.po: AttrList.inc.h -TaintTesterChecker.po: Attrs.inc.h TaintTesterChecker.po: Checkers.inc.h +TaintTesterChecker.po: CommentCommandList.inc.h TaintTesterChecker.po: DeclNodes.inc.h TaintTesterChecker.po: DiagnosticCommonKinds.inc.h TaintTesterChecker.po: StmtNodes.inc.h -TraversalChecker.o: AttrList.inc.h -TraversalChecker.o: Attrs.inc.h TraversalChecker.o: Checkers.inc.h +TraversalChecker.o: CommentCommandList.inc.h TraversalChecker.o: DeclNodes.inc.h TraversalChecker.o: DiagnosticCommonKinds.inc.h TraversalChecker.o: StmtNodes.inc.h -TraversalChecker.po: AttrList.inc.h -TraversalChecker.po: Attrs.inc.h TraversalChecker.po: Checkers.inc.h +TraversalChecker.po: CommentCommandList.inc.h TraversalChecker.po: DeclNodes.inc.h TraversalChecker.po: DiagnosticCommonKinds.inc.h TraversalChecker.po: StmtNodes.inc.h -UndefBranchChecker.o: AttrList.inc.h -UndefBranchChecker.o: Attrs.inc.h UndefBranchChecker.o: Checkers.inc.h +UndefBranchChecker.o: CommentCommandList.inc.h UndefBranchChecker.o: DeclNodes.inc.h UndefBranchChecker.o: DiagnosticCommonKinds.inc.h UndefBranchChecker.o: StmtNodes.inc.h -UndefBranchChecker.po: AttrList.inc.h -UndefBranchChecker.po: Attrs.inc.h UndefBranchChecker.po: Checkers.inc.h +UndefBranchChecker.po: CommentCommandList.inc.h UndefBranchChecker.po: DeclNodes.inc.h UndefBranchChecker.po: DiagnosticCommonKinds.inc.h UndefBranchChecker.po: StmtNodes.inc.h UndefCapturedBlockVarChecker.o: AttrList.inc.h UndefCapturedBlockVarChecker.o: Attrs.inc.h UndefCapturedBlockVarChecker.o: Checkers.inc.h +UndefCapturedBlockVarChecker.o: CommentCommandList.inc.h UndefCapturedBlockVarChecker.o: DeclNodes.inc.h UndefCapturedBlockVarChecker.o: DiagnosticCommonKinds.inc.h UndefCapturedBlockVarChecker.o: StmtNodes.inc.h UndefCapturedBlockVarChecker.po: AttrList.inc.h UndefCapturedBlockVarChecker.po: Attrs.inc.h UndefCapturedBlockVarChecker.po: Checkers.inc.h +UndefCapturedBlockVarChecker.po: CommentCommandList.inc.h UndefCapturedBlockVarChecker.po: DeclNodes.inc.h UndefCapturedBlockVarChecker.po: DiagnosticCommonKinds.inc.h UndefCapturedBlockVarChecker.po: StmtNodes.inc.h -UndefResultChecker.o: AttrList.inc.h -UndefResultChecker.o: Attrs.inc.h UndefResultChecker.o: Checkers.inc.h +UndefResultChecker.o: CommentCommandList.inc.h UndefResultChecker.o: DeclNodes.inc.h UndefResultChecker.o: DiagnosticCommonKinds.inc.h UndefResultChecker.o: StmtNodes.inc.h -UndefResultChecker.po: AttrList.inc.h -UndefResultChecker.po: Attrs.inc.h UndefResultChecker.po: Checkers.inc.h +UndefResultChecker.po: CommentCommandList.inc.h UndefResultChecker.po: DeclNodes.inc.h UndefResultChecker.po: DiagnosticCommonKinds.inc.h UndefResultChecker.po: StmtNodes.inc.h -UndefinedArraySubscriptChecker.o: AttrList.inc.h -UndefinedArraySubscriptChecker.o: Attrs.inc.h UndefinedArraySubscriptChecker.o: Checkers.inc.h +UndefinedArraySubscriptChecker.o: CommentCommandList.inc.h UndefinedArraySubscriptChecker.o: DeclNodes.inc.h UndefinedArraySubscriptChecker.o: DiagnosticCommonKinds.inc.h UndefinedArraySubscriptChecker.o: StmtNodes.inc.h -UndefinedArraySubscriptChecker.po: AttrList.inc.h -UndefinedArraySubscriptChecker.po: Attrs.inc.h UndefinedArraySubscriptChecker.po: Checkers.inc.h +UndefinedArraySubscriptChecker.po: CommentCommandList.inc.h UndefinedArraySubscriptChecker.po: DeclNodes.inc.h UndefinedArraySubscriptChecker.po: DiagnosticCommonKinds.inc.h UndefinedArraySubscriptChecker.po: StmtNodes.inc.h -UndefinedAssignmentChecker.o: AttrList.inc.h -UndefinedAssignmentChecker.o: Attrs.inc.h UndefinedAssignmentChecker.o: Checkers.inc.h +UndefinedAssignmentChecker.o: CommentCommandList.inc.h UndefinedAssignmentChecker.o: DeclNodes.inc.h UndefinedAssignmentChecker.o: DiagnosticCommonKinds.inc.h UndefinedAssignmentChecker.o: StmtNodes.inc.h -UndefinedAssignmentChecker.po: AttrList.inc.h -UndefinedAssignmentChecker.po: Attrs.inc.h UndefinedAssignmentChecker.po: Checkers.inc.h +UndefinedAssignmentChecker.po: CommentCommandList.inc.h UndefinedAssignmentChecker.po: DeclNodes.inc.h UndefinedAssignmentChecker.po: DiagnosticCommonKinds.inc.h UndefinedAssignmentChecker.po: StmtNodes.inc.h -UnixAPIChecker.o: AttrList.inc.h -UnixAPIChecker.o: Attrs.inc.h UnixAPIChecker.o: Checkers.inc.h +UnixAPIChecker.o: CommentCommandList.inc.h UnixAPIChecker.o: DeclNodes.inc.h UnixAPIChecker.o: DiagnosticCommonKinds.inc.h UnixAPIChecker.o: StmtNodes.inc.h -UnixAPIChecker.po: AttrList.inc.h -UnixAPIChecker.po: Attrs.inc.h UnixAPIChecker.po: Checkers.inc.h +UnixAPIChecker.po: CommentCommandList.inc.h UnixAPIChecker.po: DeclNodes.inc.h UnixAPIChecker.po: DiagnosticCommonKinds.inc.h UnixAPIChecker.po: StmtNodes.inc.h -UnreachableCodeChecker.o: AttrList.inc.h -UnreachableCodeChecker.o: Attrs.inc.h UnreachableCodeChecker.o: Checkers.inc.h +UnreachableCodeChecker.o: CommentCommandList.inc.h UnreachableCodeChecker.o: DeclNodes.inc.h UnreachableCodeChecker.o: DiagnosticCommonKinds.inc.h UnreachableCodeChecker.o: StmtNodes.inc.h -UnreachableCodeChecker.po: AttrList.inc.h -UnreachableCodeChecker.po: Attrs.inc.h UnreachableCodeChecker.po: Checkers.inc.h +UnreachableCodeChecker.po: CommentCommandList.inc.h UnreachableCodeChecker.po: DeclNodes.inc.h UnreachableCodeChecker.po: DiagnosticCommonKinds.inc.h UnreachableCodeChecker.po: StmtNodes.inc.h -VLASizeChecker.o: AttrList.inc.h -VLASizeChecker.o: Attrs.inc.h VLASizeChecker.o: Checkers.inc.h +VLASizeChecker.o: CommentCommandList.inc.h VLASizeChecker.o: DeclNodes.inc.h VLASizeChecker.o: DiagnosticCommonKinds.inc.h VLASizeChecker.o: StmtNodes.inc.h -VLASizeChecker.po: AttrList.inc.h -VLASizeChecker.po: Attrs.inc.h VLASizeChecker.po: Checkers.inc.h +VLASizeChecker.po: CommentCommandList.inc.h VLASizeChecker.po: DeclNodes.inc.h VLASizeChecker.po: DiagnosticCommonKinds.inc.h VLASizeChecker.po: StmtNodes.inc.h -VirtualCallChecker.o: AttrList.inc.h -VirtualCallChecker.o: Attrs.inc.h VirtualCallChecker.o: Checkers.inc.h +VirtualCallChecker.o: CommentCommandList.inc.h VirtualCallChecker.o: DeclNodes.inc.h VirtualCallChecker.o: DiagnosticCommonKinds.inc.h VirtualCallChecker.o: StmtNodes.inc.h -VirtualCallChecker.po: AttrList.inc.h -VirtualCallChecker.po: Attrs.inc.h VirtualCallChecker.po: Checkers.inc.h +VirtualCallChecker.po: CommentCommandList.inc.h VirtualCallChecker.po: DeclNodes.inc.h VirtualCallChecker.po: DiagnosticCommonKinds.inc.h VirtualCallChecker.po: StmtNodes.inc.h diff --git a/lib/clang/libclangstaticanalyzercore/Makefile.depend b/lib/clang/libclangstaticanalyzercore/Makefile.depend index 1e4a32fe8b87..ced08b278d8e 100644 --- a/lib/clang/libclangstaticanalyzercore/Makefile.depend +++ b/lib/clang/libclangstaticanalyzercore/Makefile.depend @@ -8,357 +8,284 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -AnalysisManager.o: AttrList.inc.h -AnalysisManager.o: Attrs.inc.h +AnalysisManager.o: CommentCommandList.inc.h AnalysisManager.o: DeclNodes.inc.h AnalysisManager.o: DiagnosticCommonKinds.inc.h AnalysisManager.o: StmtNodes.inc.h -AnalysisManager.po: AttrList.inc.h -AnalysisManager.po: Attrs.inc.h +AnalysisManager.po: CommentCommandList.inc.h AnalysisManager.po: DeclNodes.inc.h AnalysisManager.po: DiagnosticCommonKinds.inc.h AnalysisManager.po: StmtNodes.inc.h -BasicValueFactory.o: AttrList.inc.h -BasicValueFactory.o: Attrs.inc.h +BasicValueFactory.o: CommentCommandList.inc.h BasicValueFactory.o: DeclNodes.inc.h BasicValueFactory.o: DiagnosticCommonKinds.inc.h BasicValueFactory.o: StmtNodes.inc.h -BasicValueFactory.po: AttrList.inc.h -BasicValueFactory.po: Attrs.inc.h +BasicValueFactory.po: CommentCommandList.inc.h BasicValueFactory.po: DeclNodes.inc.h BasicValueFactory.po: DiagnosticCommonKinds.inc.h BasicValueFactory.po: StmtNodes.inc.h -BugReporter.o: AttrList.inc.h -BugReporter.o: Attrs.inc.h +BugReporter.o: CommentCommandList.inc.h BugReporter.o: DeclNodes.inc.h BugReporter.o: DiagnosticCommonKinds.inc.h BugReporter.o: StmtNodes.inc.h -BugReporter.po: AttrList.inc.h -BugReporter.po: Attrs.inc.h +BugReporter.po: CommentCommandList.inc.h BugReporter.po: DeclNodes.inc.h BugReporter.po: DiagnosticCommonKinds.inc.h BugReporter.po: StmtNodes.inc.h -BugReporterVisitors.o: AttrList.inc.h -BugReporterVisitors.o: Attrs.inc.h +BugReporterVisitors.o: CommentCommandList.inc.h BugReporterVisitors.o: DeclNodes.inc.h BugReporterVisitors.o: DiagnosticCommonKinds.inc.h BugReporterVisitors.o: StmtNodes.inc.h -BugReporterVisitors.po: AttrList.inc.h -BugReporterVisitors.po: Attrs.inc.h +BugReporterVisitors.po: CommentCommandList.inc.h BugReporterVisitors.po: DeclNodes.inc.h BugReporterVisitors.po: DiagnosticCommonKinds.inc.h BugReporterVisitors.po: StmtNodes.inc.h -CallEvent.o: AttrList.inc.h -CallEvent.o: Attrs.inc.h +CallEvent.o: CommentCommandList.inc.h CallEvent.o: DeclNodes.inc.h CallEvent.o: DiagnosticCommonKinds.inc.h CallEvent.o: StmtNodes.inc.h -CallEvent.po: AttrList.inc.h -CallEvent.po: Attrs.inc.h +CallEvent.po: CommentCommandList.inc.h CallEvent.po: DeclNodes.inc.h CallEvent.po: DiagnosticCommonKinds.inc.h CallEvent.po: StmtNodes.inc.h -Checker.o: AttrList.inc.h -Checker.o: Attrs.inc.h +Checker.o: CommentCommandList.inc.h Checker.o: DeclNodes.inc.h Checker.o: DiagnosticCommonKinds.inc.h Checker.o: StmtNodes.inc.h -Checker.po: AttrList.inc.h -Checker.po: Attrs.inc.h +Checker.po: CommentCommandList.inc.h Checker.po: DeclNodes.inc.h Checker.po: DiagnosticCommonKinds.inc.h Checker.po: StmtNodes.inc.h -CheckerContext.o: AttrList.inc.h -CheckerContext.o: Attrs.inc.h +CheckerContext.o: CommentCommandList.inc.h CheckerContext.o: DeclNodes.inc.h CheckerContext.o: DiagnosticCommonKinds.inc.h CheckerContext.o: StmtNodes.inc.h -CheckerContext.po: AttrList.inc.h -CheckerContext.po: Attrs.inc.h +CheckerContext.po: CommentCommandList.inc.h CheckerContext.po: DeclNodes.inc.h CheckerContext.po: DiagnosticCommonKinds.inc.h CheckerContext.po: StmtNodes.inc.h -CheckerHelpers.o: AttrList.inc.h -CheckerHelpers.o: Attrs.inc.h CheckerHelpers.o: DeclNodes.inc.h CheckerHelpers.o: DiagnosticCommonKinds.inc.h CheckerHelpers.o: StmtNodes.inc.h -CheckerHelpers.po: AttrList.inc.h -CheckerHelpers.po: Attrs.inc.h CheckerHelpers.po: DeclNodes.inc.h CheckerHelpers.po: DiagnosticCommonKinds.inc.h CheckerHelpers.po: StmtNodes.inc.h -CheckerManager.o: AttrList.inc.h -CheckerManager.o: Attrs.inc.h +CheckerManager.o: CommentCommandList.inc.h CheckerManager.o: DeclNodes.inc.h CheckerManager.o: DiagnosticCommonKinds.inc.h CheckerManager.o: StmtNodes.inc.h -CheckerManager.po: AttrList.inc.h -CheckerManager.po: Attrs.inc.h +CheckerManager.po: CommentCommandList.inc.h CheckerManager.po: DeclNodes.inc.h CheckerManager.po: DiagnosticCommonKinds.inc.h CheckerManager.po: StmtNodes.inc.h -CheckerRegistry.o: AttrList.inc.h -CheckerRegistry.o: Attrs.inc.h +CheckerRegistry.o: CommentCommandList.inc.h CheckerRegistry.o: DeclNodes.inc.h CheckerRegistry.o: DiagnosticCommonKinds.inc.h CheckerRegistry.o: StmtNodes.inc.h -CheckerRegistry.po: AttrList.inc.h -CheckerRegistry.po: Attrs.inc.h +CheckerRegistry.po: CommentCommandList.inc.h CheckerRegistry.po: DeclNodes.inc.h CheckerRegistry.po: DiagnosticCommonKinds.inc.h CheckerRegistry.po: StmtNodes.inc.h -ConstraintManager.o: AttrList.inc.h -ConstraintManager.o: Attrs.inc.h +ConstraintManager.o: CommentCommandList.inc.h ConstraintManager.o: DeclNodes.inc.h ConstraintManager.o: DiagnosticCommonKinds.inc.h ConstraintManager.o: StmtNodes.inc.h -ConstraintManager.po: AttrList.inc.h -ConstraintManager.po: Attrs.inc.h +ConstraintManager.po: CommentCommandList.inc.h ConstraintManager.po: DeclNodes.inc.h ConstraintManager.po: DiagnosticCommonKinds.inc.h ConstraintManager.po: StmtNodes.inc.h -CoreEngine.o: AttrList.inc.h -CoreEngine.o: Attrs.inc.h +CoreEngine.o: CommentCommandList.inc.h CoreEngine.o: DeclNodes.inc.h CoreEngine.o: DiagnosticCommonKinds.inc.h CoreEngine.o: StmtNodes.inc.h -CoreEngine.po: AttrList.inc.h -CoreEngine.po: Attrs.inc.h +CoreEngine.po: CommentCommandList.inc.h CoreEngine.po: DeclNodes.inc.h CoreEngine.po: DiagnosticCommonKinds.inc.h CoreEngine.po: StmtNodes.inc.h -Environment.o: AttrList.inc.h -Environment.o: Attrs.inc.h +Environment.o: CommentCommandList.inc.h Environment.o: DeclNodes.inc.h Environment.o: DiagnosticCommonKinds.inc.h Environment.o: StmtNodes.inc.h -Environment.po: AttrList.inc.h -Environment.po: Attrs.inc.h +Environment.po: CommentCommandList.inc.h Environment.po: DeclNodes.inc.h Environment.po: DiagnosticCommonKinds.inc.h Environment.po: StmtNodes.inc.h -ExplodedGraph.o: AttrList.inc.h -ExplodedGraph.o: Attrs.inc.h +ExplodedGraph.o: CommentCommandList.inc.h ExplodedGraph.o: DeclNodes.inc.h ExplodedGraph.o: DiagnosticCommonKinds.inc.h ExplodedGraph.o: StmtNodes.inc.h -ExplodedGraph.po: AttrList.inc.h -ExplodedGraph.po: Attrs.inc.h +ExplodedGraph.po: CommentCommandList.inc.h ExplodedGraph.po: DeclNodes.inc.h ExplodedGraph.po: DiagnosticCommonKinds.inc.h ExplodedGraph.po: StmtNodes.inc.h -ExprEngine.o: AttrList.inc.h -ExprEngine.o: Attrs.inc.h +ExprEngine.o: CommentCommandList.inc.h ExprEngine.o: DeclNodes.inc.h ExprEngine.o: DiagnosticCommonKinds.inc.h ExprEngine.o: StmtNodes.inc.h -ExprEngine.po: AttrList.inc.h -ExprEngine.po: Attrs.inc.h +ExprEngine.po: CommentCommandList.inc.h ExprEngine.po: DeclNodes.inc.h ExprEngine.po: DiagnosticCommonKinds.inc.h ExprEngine.po: StmtNodes.inc.h -ExprEngineC.o: AttrList.inc.h -ExprEngineC.o: Attrs.inc.h +ExprEngineC.o: CommentCommandList.inc.h ExprEngineC.o: DeclNodes.inc.h ExprEngineC.o: DiagnosticCommonKinds.inc.h ExprEngineC.o: StmtNodes.inc.h -ExprEngineC.po: AttrList.inc.h -ExprEngineC.po: Attrs.inc.h +ExprEngineC.po: CommentCommandList.inc.h ExprEngineC.po: DeclNodes.inc.h ExprEngineC.po: DiagnosticCommonKinds.inc.h ExprEngineC.po: StmtNodes.inc.h -ExprEngineCXX.o: AttrList.inc.h -ExprEngineCXX.o: Attrs.inc.h +ExprEngineCXX.o: CommentCommandList.inc.h ExprEngineCXX.o: DeclNodes.inc.h ExprEngineCXX.o: DiagnosticCommonKinds.inc.h ExprEngineCXX.o: StmtNodes.inc.h -ExprEngineCXX.po: AttrList.inc.h -ExprEngineCXX.po: Attrs.inc.h +ExprEngineCXX.po: CommentCommandList.inc.h ExprEngineCXX.po: DeclNodes.inc.h ExprEngineCXX.po: DiagnosticCommonKinds.inc.h ExprEngineCXX.po: StmtNodes.inc.h -ExprEngineCallAndReturn.o: AttrList.inc.h -ExprEngineCallAndReturn.o: Attrs.inc.h +ExprEngineCallAndReturn.o: CommentCommandList.inc.h ExprEngineCallAndReturn.o: DeclNodes.inc.h ExprEngineCallAndReturn.o: DiagnosticCommonKinds.inc.h ExprEngineCallAndReturn.o: StmtNodes.inc.h -ExprEngineCallAndReturn.po: AttrList.inc.h -ExprEngineCallAndReturn.po: Attrs.inc.h +ExprEngineCallAndReturn.po: CommentCommandList.inc.h ExprEngineCallAndReturn.po: DeclNodes.inc.h ExprEngineCallAndReturn.po: DiagnosticCommonKinds.inc.h ExprEngineCallAndReturn.po: StmtNodes.inc.h -ExprEngineObjC.o: AttrList.inc.h -ExprEngineObjC.o: Attrs.inc.h +ExprEngineObjC.o: CommentCommandList.inc.h ExprEngineObjC.o: DeclNodes.inc.h ExprEngineObjC.o: DiagnosticCommonKinds.inc.h ExprEngineObjC.o: StmtNodes.inc.h -ExprEngineObjC.po: AttrList.inc.h -ExprEngineObjC.po: Attrs.inc.h +ExprEngineObjC.po: CommentCommandList.inc.h ExprEngineObjC.po: DeclNodes.inc.h ExprEngineObjC.po: DiagnosticCommonKinds.inc.h ExprEngineObjC.po: StmtNodes.inc.h -FunctionSummary.o: AttrList.inc.h -FunctionSummary.o: Attrs.inc.h -FunctionSummary.o: DeclNodes.inc.h -FunctionSummary.o: DiagnosticCommonKinds.inc.h -FunctionSummary.po: AttrList.inc.h -FunctionSummary.po: Attrs.inc.h -FunctionSummary.po: DeclNodes.inc.h -FunctionSummary.po: DiagnosticCommonKinds.inc.h -HTMLDiagnostics.o: AttrList.inc.h -HTMLDiagnostics.o: Attrs.inc.h +HTMLDiagnostics.o: CommentCommandList.inc.h HTMLDiagnostics.o: DeclNodes.inc.h HTMLDiagnostics.o: DiagnosticCommonKinds.inc.h HTMLDiagnostics.o: StmtNodes.inc.h -HTMLDiagnostics.po: AttrList.inc.h -HTMLDiagnostics.po: Attrs.inc.h +HTMLDiagnostics.po: CommentCommandList.inc.h HTMLDiagnostics.po: DeclNodes.inc.h HTMLDiagnostics.po: DiagnosticCommonKinds.inc.h HTMLDiagnostics.po: StmtNodes.inc.h MemRegion.o: AttrList.inc.h MemRegion.o: Attrs.inc.h +MemRegion.o: CommentCommandList.inc.h MemRegion.o: DeclNodes.inc.h MemRegion.o: DiagnosticCommonKinds.inc.h MemRegion.o: StmtNodes.inc.h MemRegion.po: AttrList.inc.h MemRegion.po: Attrs.inc.h +MemRegion.po: CommentCommandList.inc.h MemRegion.po: DeclNodes.inc.h MemRegion.po: DiagnosticCommonKinds.inc.h MemRegion.po: StmtNodes.inc.h -PathDiagnostic.o: AttrList.inc.h -PathDiagnostic.o: Attrs.inc.h +PathDiagnostic.o: CommentCommandList.inc.h PathDiagnostic.o: DeclNodes.inc.h PathDiagnostic.o: DiagnosticCommonKinds.inc.h PathDiagnostic.o: StmtNodes.inc.h -PathDiagnostic.po: AttrList.inc.h -PathDiagnostic.po: Attrs.inc.h +PathDiagnostic.po: CommentCommandList.inc.h PathDiagnostic.po: DeclNodes.inc.h PathDiagnostic.po: DiagnosticCommonKinds.inc.h PathDiagnostic.po: StmtNodes.inc.h -PlistDiagnostics.o: AttrList.inc.h -PlistDiagnostics.o: Attrs.inc.h PlistDiagnostics.o: DeclNodes.inc.h PlistDiagnostics.o: DiagnosticCommonKinds.inc.h PlistDiagnostics.o: StmtNodes.inc.h -PlistDiagnostics.po: AttrList.inc.h -PlistDiagnostics.po: Attrs.inc.h PlistDiagnostics.po: DeclNodes.inc.h PlistDiagnostics.po: DiagnosticCommonKinds.inc.h PlistDiagnostics.po: StmtNodes.inc.h -ProgramState.o: AttrList.inc.h -ProgramState.o: Attrs.inc.h +ProgramState.o: CommentCommandList.inc.h ProgramState.o: DeclNodes.inc.h ProgramState.o: DiagnosticCommonKinds.inc.h ProgramState.o: StmtNodes.inc.h -ProgramState.po: AttrList.inc.h -ProgramState.po: Attrs.inc.h +ProgramState.po: CommentCommandList.inc.h ProgramState.po: DeclNodes.inc.h ProgramState.po: DiagnosticCommonKinds.inc.h ProgramState.po: StmtNodes.inc.h -RangeConstraintManager.o: AttrList.inc.h -RangeConstraintManager.o: Attrs.inc.h +RangeConstraintManager.o: CommentCommandList.inc.h RangeConstraintManager.o: DeclNodes.inc.h RangeConstraintManager.o: DiagnosticCommonKinds.inc.h RangeConstraintManager.o: StmtNodes.inc.h -RangeConstraintManager.po: AttrList.inc.h -RangeConstraintManager.po: Attrs.inc.h +RangeConstraintManager.po: CommentCommandList.inc.h RangeConstraintManager.po: DeclNodes.inc.h RangeConstraintManager.po: DiagnosticCommonKinds.inc.h RangeConstraintManager.po: StmtNodes.inc.h RegionStore.o: AttrList.inc.h RegionStore.o: Attrs.inc.h +RegionStore.o: CommentCommandList.inc.h RegionStore.o: DeclNodes.inc.h RegionStore.o: DiagnosticCommonKinds.inc.h RegionStore.o: StmtNodes.inc.h RegionStore.po: AttrList.inc.h RegionStore.po: Attrs.inc.h +RegionStore.po: CommentCommandList.inc.h RegionStore.po: DeclNodes.inc.h RegionStore.po: DiagnosticCommonKinds.inc.h RegionStore.po: StmtNodes.inc.h -SValBuilder.o: AttrList.inc.h -SValBuilder.o: Attrs.inc.h +SValBuilder.o: CommentCommandList.inc.h SValBuilder.o: DeclNodes.inc.h SValBuilder.o: DiagnosticCommonKinds.inc.h SValBuilder.o: StmtNodes.inc.h -SValBuilder.po: AttrList.inc.h -SValBuilder.po: Attrs.inc.h +SValBuilder.po: CommentCommandList.inc.h SValBuilder.po: DeclNodes.inc.h SValBuilder.po: DiagnosticCommonKinds.inc.h SValBuilder.po: StmtNodes.inc.h -SVals.o: AttrList.inc.h -SVals.o: Attrs.inc.h +SVals.o: CommentCommandList.inc.h SVals.o: DeclNodes.inc.h SVals.o: DiagnosticCommonKinds.inc.h SVals.o: StmtNodes.inc.h -SVals.po: AttrList.inc.h -SVals.po: Attrs.inc.h +SVals.po: CommentCommandList.inc.h SVals.po: DeclNodes.inc.h SVals.po: DiagnosticCommonKinds.inc.h SVals.po: StmtNodes.inc.h -SimpleConstraintManager.o: AttrList.inc.h -SimpleConstraintManager.o: Attrs.inc.h +SimpleConstraintManager.o: CommentCommandList.inc.h SimpleConstraintManager.o: DeclNodes.inc.h SimpleConstraintManager.o: DiagnosticCommonKinds.inc.h SimpleConstraintManager.o: StmtNodes.inc.h -SimpleConstraintManager.po: AttrList.inc.h -SimpleConstraintManager.po: Attrs.inc.h +SimpleConstraintManager.po: CommentCommandList.inc.h SimpleConstraintManager.po: DeclNodes.inc.h SimpleConstraintManager.po: DiagnosticCommonKinds.inc.h SimpleConstraintManager.po: StmtNodes.inc.h -SimpleSValBuilder.o: AttrList.inc.h -SimpleSValBuilder.o: Attrs.inc.h +SimpleSValBuilder.o: CommentCommandList.inc.h SimpleSValBuilder.o: DeclNodes.inc.h SimpleSValBuilder.o: DiagnosticCommonKinds.inc.h SimpleSValBuilder.o: StmtNodes.inc.h -SimpleSValBuilder.po: AttrList.inc.h -SimpleSValBuilder.po: Attrs.inc.h +SimpleSValBuilder.po: CommentCommandList.inc.h SimpleSValBuilder.po: DeclNodes.inc.h SimpleSValBuilder.po: DiagnosticCommonKinds.inc.h SimpleSValBuilder.po: StmtNodes.inc.h -Store.o: AttrList.inc.h -Store.o: Attrs.inc.h +Store.o: CommentCommandList.inc.h Store.o: DeclNodes.inc.h Store.o: DiagnosticCommonKinds.inc.h Store.o: StmtNodes.inc.h -Store.po: AttrList.inc.h -Store.po: Attrs.inc.h +Store.po: CommentCommandList.inc.h Store.po: DeclNodes.inc.h Store.po: DiagnosticCommonKinds.inc.h Store.po: StmtNodes.inc.h -SubEngine.o: AttrList.inc.h -SubEngine.o: Attrs.inc.h +SubEngine.o: CommentCommandList.inc.h SubEngine.o: DeclNodes.inc.h SubEngine.o: DiagnosticCommonKinds.inc.h SubEngine.o: StmtNodes.inc.h -SubEngine.po: AttrList.inc.h -SubEngine.po: Attrs.inc.h +SubEngine.po: CommentCommandList.inc.h SubEngine.po: DeclNodes.inc.h SubEngine.po: DiagnosticCommonKinds.inc.h SubEngine.po: StmtNodes.inc.h -SymbolManager.o: AttrList.inc.h -SymbolManager.o: Attrs.inc.h +SymbolManager.o: CommentCommandList.inc.h SymbolManager.o: DeclNodes.inc.h SymbolManager.o: DiagnosticCommonKinds.inc.h SymbolManager.o: StmtNodes.inc.h -SymbolManager.po: AttrList.inc.h -SymbolManager.po: Attrs.inc.h +SymbolManager.po: CommentCommandList.inc.h SymbolManager.po: DeclNodes.inc.h SymbolManager.po: DiagnosticCommonKinds.inc.h SymbolManager.po: StmtNodes.inc.h -TextPathDiagnostics.o: AttrList.inc.h -TextPathDiagnostics.o: Attrs.inc.h TextPathDiagnostics.o: DeclNodes.inc.h TextPathDiagnostics.o: DiagnosticCommonKinds.inc.h TextPathDiagnostics.o: StmtNodes.inc.h -TextPathDiagnostics.po: AttrList.inc.h -TextPathDiagnostics.po: Attrs.inc.h TextPathDiagnostics.po: DeclNodes.inc.h TextPathDiagnostics.po: DiagnosticCommonKinds.inc.h TextPathDiagnostics.po: StmtNodes.inc.h diff --git a/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend b/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend index 47f5ad017ede..910b0c2f2ee8 100644 --- a/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend +++ b/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend @@ -8,30 +8,27 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -AnalysisConsumer.o: AttrList.inc.h -AnalysisConsumer.o: Attrs.inc.h +AnalysisConsumer.o: CommentCommandList.inc.h AnalysisConsumer.o: DeclNodes.inc.h AnalysisConsumer.o: DiagnosticCommonKinds.inc.h AnalysisConsumer.o: StmtNodes.inc.h -AnalysisConsumer.po: AttrList.inc.h -AnalysisConsumer.po: Attrs.inc.h +AnalysisConsumer.po: CommentCommandList.inc.h AnalysisConsumer.po: DeclNodes.inc.h AnalysisConsumer.po: DiagnosticCommonKinds.inc.h AnalysisConsumer.po: StmtNodes.inc.h -CheckerRegistration.o: AttrList.inc.h -CheckerRegistration.o: Attrs.inc.h +CheckerRegistration.o: CommentCommandList.inc.h CheckerRegistration.o: DeclNodes.inc.h CheckerRegistration.o: DiagnosticCommonKinds.inc.h CheckerRegistration.o: DiagnosticFrontendKinds.inc.h CheckerRegistration.o: StmtNodes.inc.h -CheckerRegistration.po: AttrList.inc.h -CheckerRegistration.po: Attrs.inc.h +CheckerRegistration.po: CommentCommandList.inc.h CheckerRegistration.po: DeclNodes.inc.h CheckerRegistration.po: DiagnosticCommonKinds.inc.h CheckerRegistration.po: DiagnosticFrontendKinds.inc.h diff --git a/lib/clang/libllvmanalysis/Makefile.depend b/lib/clang/libllvmanalysis/Makefile.depend index e8d0b1b5fe81..9aa32a96a0b6 100644 --- a/lib/clang/libllvmanalysis/Makefile.depend +++ b/lib/clang/libllvmanalysis/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -24,12 +25,12 @@ CodeMetrics.o: Intrinsics.inc.h CodeMetrics.po: Intrinsics.inc.h ConstantFolding.o: Intrinsics.inc.h ConstantFolding.po: Intrinsics.inc.h -DbgInfoPrinter.o: Intrinsics.inc.h -DbgInfoPrinter.po: Intrinsics.inc.h -InlineCost.o: Intrinsics.inc.h -InlineCost.po: Intrinsics.inc.h +CostModel.o: Intrinsics.inc.h +CostModel.po: Intrinsics.inc.h InstCount.o: Intrinsics.inc.h InstCount.po: Intrinsics.inc.h +InstructionSimplify.o: Intrinsics.inc.h +InstructionSimplify.po: Intrinsics.inc.h LazyValueInfo.o: Intrinsics.inc.h LazyValueInfo.po: Intrinsics.inc.h Lint.o: Intrinsics.inc.h @@ -40,8 +41,12 @@ MemoryBuiltins.o: Intrinsics.inc.h MemoryBuiltins.po: Intrinsics.inc.h MemoryDependenceAnalysis.o: Intrinsics.inc.h MemoryDependenceAnalysis.po: Intrinsics.inc.h +PtrUseVisitor.o: Intrinsics.inc.h +PtrUseVisitor.po: Intrinsics.inc.h ScalarEvolutionExpander.o: Intrinsics.inc.h ScalarEvolutionExpander.po: Intrinsics.inc.h +TargetTransformInfo.o: Intrinsics.inc.h +TargetTransformInfo.po: Intrinsics.inc.h ValueTracking.o: Intrinsics.inc.h ValueTracking.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvmarmasmparser/Makefile.depend b/lib/clang/libllvmarmasmparser/Makefile.depend index 971d85199472..2b046d8a2331 100644 --- a/lib/clang/libllvmarmasmparser/Makefile.depend +++ b/lib/clang/libllvmarmasmparser/Makefile.depend @@ -8,18 +8,13 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -ARMAsmLexer.o: ARMGenInstrInfo.inc.h -ARMAsmLexer.o: ARMGenRegisterInfo.inc.h -ARMAsmLexer.o: ARMGenSubtargetInfo.inc.h -ARMAsmLexer.po: ARMGenInstrInfo.inc.h -ARMAsmLexer.po: ARMGenRegisterInfo.inc.h -ARMAsmLexer.po: ARMGenSubtargetInfo.inc.h ARMAsmParser.o: ARMGenAsmMatcher.inc.h ARMAsmParser.o: ARMGenInstrInfo.inc.h ARMAsmParser.o: ARMGenRegisterInfo.inc.h diff --git a/lib/clang/libllvmarmcodegen/Makefile.depend b/lib/clang/libllvmarmcodegen/Makefile.depend index cda3e6090377..42795f18d8b2 100644 --- a/lib/clang/libllvmarmcodegen/Makefile.depend +++ b/lib/clang/libllvmarmcodegen/Makefile.depend @@ -8,12 +8,19 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +A15SDOptimizer.o: ARMGenInstrInfo.inc.h +A15SDOptimizer.o: ARMGenRegisterInfo.inc.h +A15SDOptimizer.o: ARMGenSubtargetInfo.inc.h +A15SDOptimizer.po: ARMGenInstrInfo.inc.h +A15SDOptimizer.po: ARMGenRegisterInfo.inc.h +A15SDOptimizer.po: ARMGenSubtargetInfo.inc.h ARMAsmPrinter.o: ARMGenInstrInfo.inc.h ARMAsmPrinter.o: ARMGenMCPseudoLowering.inc.h ARMAsmPrinter.o: ARMGenRegisterInfo.inc.h @@ -158,6 +165,14 @@ ARMTargetObjectFile.o: ARMGenSubtargetInfo.inc.h ARMTargetObjectFile.po: ARMGenInstrInfo.inc.h ARMTargetObjectFile.po: ARMGenRegisterInfo.inc.h ARMTargetObjectFile.po: ARMGenSubtargetInfo.inc.h +ARMTargetTransformInfo.o: ARMGenInstrInfo.inc.h +ARMTargetTransformInfo.o: ARMGenRegisterInfo.inc.h +ARMTargetTransformInfo.o: ARMGenSubtargetInfo.inc.h +ARMTargetTransformInfo.o: Intrinsics.inc.h +ARMTargetTransformInfo.po: ARMGenInstrInfo.inc.h +ARMTargetTransformInfo.po: ARMGenRegisterInfo.inc.h +ARMTargetTransformInfo.po: ARMGenSubtargetInfo.inc.h +ARMTargetTransformInfo.po: Intrinsics.inc.h MLxExpansionPass.o: ARMGenInstrInfo.inc.h MLxExpansionPass.o: ARMGenRegisterInfo.inc.h MLxExpansionPass.o: ARMGenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmarmdesc/Makefile.depend b/lib/clang/libllvmarmdesc/Makefile.depend index d0482a0ff645..725a374fa20c 100644 --- a/lib/clang/libllvmarmdesc/Makefile.depend +++ b/lib/clang/libllvmarmdesc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -26,6 +27,12 @@ ARMELFObjectWriter.o: ARMGenSubtargetInfo.inc.h ARMELFObjectWriter.po: ARMGenInstrInfo.inc.h ARMELFObjectWriter.po: ARMGenRegisterInfo.inc.h ARMELFObjectWriter.po: ARMGenSubtargetInfo.inc.h +ARMELFStreamer.o: ARMGenInstrInfo.inc.h +ARMELFStreamer.o: ARMGenRegisterInfo.inc.h +ARMELFStreamer.o: ARMGenSubtargetInfo.inc.h +ARMELFStreamer.po: ARMGenInstrInfo.inc.h +ARMELFStreamer.po: ARMGenRegisterInfo.inc.h +ARMELFStreamer.po: ARMGenSubtargetInfo.inc.h ARMMCCodeEmitter.o: ARMGenInstrInfo.inc.h ARMMCCodeEmitter.o: ARMGenMCCodeEmitter.inc.h ARMMCCodeEmitter.o: ARMGenRegisterInfo.inc.h diff --git a/lib/clang/libllvmarmdisassembler/Makefile.depend b/lib/clang/libllvmarmdisassembler/Makefile.depend index 6fd3c24a1300..72192cb421ce 100644 --- a/lib/clang/libllvmarmdisassembler/Makefile.depend +++ b/lib/clang/libllvmarmdisassembler/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -15,12 +16,10 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree ARMDisassembler.o: ARMGenDisassemblerTables.inc.h -ARMDisassembler.o: ARMGenEDInfo.inc.h ARMDisassembler.o: ARMGenInstrInfo.inc.h ARMDisassembler.o: ARMGenRegisterInfo.inc.h ARMDisassembler.o: ARMGenSubtargetInfo.inc.h ARMDisassembler.po: ARMGenDisassemblerTables.inc.h -ARMDisassembler.po: ARMGenEDInfo.inc.h ARMDisassembler.po: ARMGenInstrInfo.inc.h ARMDisassembler.po: ARMGenRegisterInfo.inc.h ARMDisassembler.po: ARMGenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmarminfo/Makefile.depend b/lib/clang/libllvmarminfo/Makefile.depend index 36e229b7b9da..7a0fbe1e3419 100644 --- a/lib/clang/libllvmarminfo/Makefile.depend +++ b/lib/clang/libllvmarminfo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmarminstprinter/Makefile.depend b/lib/clang/libllvmarminstprinter/Makefile.depend index ec220f978f51..dfe2199b31ca 100644 --- a/lib/clang/libllvmarminstprinter/Makefile.depend +++ b/lib/clang/libllvmarminstprinter/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmasmprinter/Makefile.depend b/lib/clang/libllvmasmprinter/Makefile.depend index 422d37c93228..de12791bb810 100644 --- a/lib/clang/libllvmasmprinter/Makefile.depend +++ b/lib/clang/libllvmasmprinter/Makefile.depend @@ -8,10 +8,13 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +ErlangGCPrinter.o: Intrinsics.inc.h +ErlangGCPrinter.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvmbitreader/Makefile.depend b/lib/clang/libllvmbitreader/Makefile.depend index b947096fea4f..0ca04aace01a 100644 --- a/lib/clang/libllvmbitreader/Makefile.depend +++ b/lib/clang/libllvmbitreader/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmcodegen/Makefile.depend b/lib/clang/libllvmcodegen/Makefile.depend index 384bed583cce..a5078c5e831c 100644 --- a/lib/clang/libllvmcodegen/Makefile.depend +++ b/lib/clang/libllvmcodegen/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -16,6 +17,8 @@ DIRDEPS = \ # local dependencies - needed for -jN in clean tree Analysis.o: Intrinsics.inc.h Analysis.po: Intrinsics.inc.h +BasicTargetTransformInfo.o: Intrinsics.inc.h +BasicTargetTransformInfo.po: Intrinsics.inc.h DwarfEHPrepare.o: Intrinsics.inc.h DwarfEHPrepare.po: Intrinsics.inc.h GCStrategy.o: Intrinsics.inc.h diff --git a/lib/clang/libllvmcore/Makefile.depend b/lib/clang/libllvmcore/Makefile.depend index 489ec2bc7cbe..94d82b9ac309 100644 --- a/lib/clang/libllvmcore/Makefile.depend +++ b/lib/clang/libllvmcore/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmdebuginfo/Makefile.depend b/lib/clang/libllvmdebuginfo/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmdebuginfo/Makefile.depend +++ b/lib/clang/libllvmdebuginfo/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmexecutionengine/Makefile.depend b/lib/clang/libllvmexecutionengine/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmexecutionengine/Makefile.depend +++ b/lib/clang/libllvmexecutionengine/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvminstcombine/Makefile.depend b/lib/clang/libllvminstcombine/Makefile.depend index 0851afa916c8..ce67684d75d8 100644 --- a/lib/clang/libllvminstcombine/Makefile.depend +++ b/lib/clang/libllvminstcombine/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvminstrumentation/Makefile.depend b/lib/clang/libllvminstrumentation/Makefile.depend index a730fc235327..e64cf0b52a2d 100644 --- a/lib/clang/libllvminstrumentation/Makefile.depend +++ b/lib/clang/libllvminstrumentation/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -18,6 +19,8 @@ AddressSanitizer.o: Intrinsics.inc.h AddressSanitizer.po: Intrinsics.inc.h BoundsChecking.o: Intrinsics.inc.h BoundsChecking.po: Intrinsics.inc.h +MemorySanitizer.o: Intrinsics.inc.h +MemorySanitizer.po: Intrinsics.inc.h ThreadSanitizer.o: Intrinsics.inc.h ThreadSanitizer.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvminterpreter/Makefile.depend b/lib/clang/libllvminterpreter/Makefile.depend index 0c45153337da..1c2bfebe806c 100644 --- a/lib/clang/libllvminterpreter/Makefile.depend +++ b/lib/clang/libllvminterpreter/Makefile.depend @@ -2,12 +2,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -16,6 +17,8 @@ DIRDEPS = \ # local dependencies - needed for -jN in clean tree Execution.o: Intrinsics.inc.h Execution.po: Intrinsics.inc.h +ExternalFunctions.o: Intrinsics.inc.h +ExternalFunctions.po: Intrinsics.inc.h Interpreter.o: Intrinsics.inc.h Interpreter.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvmipa/Makefile.depend b/lib/clang/libllvmipa/Makefile.depend index 8c10ddd906d9..2a8fb8532579 100644 --- a/lib/clang/libllvmipa/Makefile.depend +++ b/lib/clang/libllvmipa/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -20,4 +21,6 @@ CallGraphSCCPass.o: Intrinsics.inc.h CallGraphSCCPass.po: Intrinsics.inc.h GlobalsModRef.o: Intrinsics.inc.h GlobalsModRef.po: Intrinsics.inc.h +InlineCost.o: Intrinsics.inc.h +InlineCost.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvmipo/Makefile.depend b/lib/clang/libllvmipo/Makefile.depend index 54309eef69b1..07566681bfe3 100644 --- a/lib/clang/libllvmipo/Makefile.depend +++ b/lib/clang/libllvmipo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmjit/Makefile.depend b/lib/clang/libllvmjit/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmjit/Makefile.depend +++ b/lib/clang/libllvmjit/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmmcdisassembler/Makefile.depend b/lib/clang/libllvmmcdisassembler/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmmcdisassembler/Makefile.depend +++ b/lib/clang/libllvmmcdisassembler/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmmcjit/Makefile.depend b/lib/clang/libllvmmcjit/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmmcjit/Makefile.depend +++ b/lib/clang/libllvmmcjit/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmmipsasmparser/Makefile.depend b/lib/clang/libllvmmipsasmparser/Makefile.depend index 89bde7286af8..ef82df0bcb84 100644 --- a/lib/clang/libllvmmipsasmparser/Makefile.depend +++ b/lib/clang/libllvmmipsasmparser/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmmipscodegen/Makefile.depend b/lib/clang/libllvmmipscodegen/Makefile.depend index f1a985dbeca9..25d3766bd9af 100644 --- a/lib/clang/libllvmmipscodegen/Makefile.depend +++ b/lib/clang/libllvmmipscodegen/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -20,6 +21,22 @@ Mips16FrameLowering.o: MipsGenSubtargetInfo.inc.h Mips16FrameLowering.po: MipsGenInstrInfo.inc.h Mips16FrameLowering.po: MipsGenRegisterInfo.inc.h Mips16FrameLowering.po: MipsGenSubtargetInfo.inc.h +Mips16ISelDAGToDAG.o: Intrinsics.inc.h +Mips16ISelDAGToDAG.o: MipsGenDAGISel.inc.h +Mips16ISelDAGToDAG.o: MipsGenInstrInfo.inc.h +Mips16ISelDAGToDAG.o: MipsGenRegisterInfo.inc.h +Mips16ISelDAGToDAG.o: MipsGenSubtargetInfo.inc.h +Mips16ISelDAGToDAG.po: Intrinsics.inc.h +Mips16ISelDAGToDAG.po: MipsGenDAGISel.inc.h +Mips16ISelDAGToDAG.po: MipsGenInstrInfo.inc.h +Mips16ISelDAGToDAG.po: MipsGenRegisterInfo.inc.h +Mips16ISelDAGToDAG.po: MipsGenSubtargetInfo.inc.h +Mips16ISelLowering.o: MipsGenInstrInfo.inc.h +Mips16ISelLowering.o: MipsGenRegisterInfo.inc.h +Mips16ISelLowering.o: MipsGenSubtargetInfo.inc.h +Mips16ISelLowering.po: MipsGenInstrInfo.inc.h +Mips16ISelLowering.po: MipsGenRegisterInfo.inc.h +Mips16ISelLowering.po: MipsGenSubtargetInfo.inc.h Mips16InstrInfo.o: MipsGenInstrInfo.inc.h Mips16InstrInfo.o: MipsGenRegisterInfo.inc.h Mips16InstrInfo.o: MipsGenSubtargetInfo.inc.h @@ -54,6 +71,12 @@ MipsCodeEmitter.po: MipsGenCodeEmitter.inc.h MipsCodeEmitter.po: MipsGenInstrInfo.inc.h MipsCodeEmitter.po: MipsGenRegisterInfo.inc.h MipsCodeEmitter.po: MipsGenSubtargetInfo.inc.h +MipsConstantIslandPass.o: MipsGenInstrInfo.inc.h +MipsConstantIslandPass.o: MipsGenRegisterInfo.inc.h +MipsConstantIslandPass.o: MipsGenSubtargetInfo.inc.h +MipsConstantIslandPass.po: MipsGenInstrInfo.inc.h +MipsConstantIslandPass.po: MipsGenRegisterInfo.inc.h +MipsConstantIslandPass.po: MipsGenSubtargetInfo.inc.h MipsDelaySlotFiller.o: MipsGenInstrInfo.inc.h MipsDelaySlotFiller.o: MipsGenRegisterInfo.inc.h MipsDelaySlotFiller.o: MipsGenSubtargetInfo.inc.h @@ -76,12 +99,10 @@ MipsISelDAGToDAG.po: MipsGenDAGISel.inc.h MipsISelDAGToDAG.po: MipsGenInstrInfo.inc.h MipsISelDAGToDAG.po: MipsGenRegisterInfo.inc.h MipsISelDAGToDAG.po: MipsGenSubtargetInfo.inc.h -MipsISelLowering.o: Intrinsics.inc.h MipsISelLowering.o: MipsGenCallingConv.inc.h MipsISelLowering.o: MipsGenInstrInfo.inc.h MipsISelLowering.o: MipsGenRegisterInfo.inc.h MipsISelLowering.o: MipsGenSubtargetInfo.inc.h -MipsISelLowering.po: Intrinsics.inc.h MipsISelLowering.po: MipsGenCallingConv.inc.h MipsISelLowering.po: MipsGenInstrInfo.inc.h MipsISelLowering.po: MipsGenRegisterInfo.inc.h @@ -116,6 +137,20 @@ MipsMachineFunction.o: MipsGenSubtargetInfo.inc.h MipsMachineFunction.po: MipsGenInstrInfo.inc.h MipsMachineFunction.po: MipsGenRegisterInfo.inc.h MipsMachineFunction.po: MipsGenSubtargetInfo.inc.h +MipsModuleISelDAGToDAG.o: MipsGenDAGISel.inc.h +MipsModuleISelDAGToDAG.o: MipsGenInstrInfo.inc.h +MipsModuleISelDAGToDAG.o: MipsGenRegisterInfo.inc.h +MipsModuleISelDAGToDAG.o: MipsGenSubtargetInfo.inc.h +MipsModuleISelDAGToDAG.po: MipsGenDAGISel.inc.h +MipsModuleISelDAGToDAG.po: MipsGenInstrInfo.inc.h +MipsModuleISelDAGToDAG.po: MipsGenRegisterInfo.inc.h +MipsModuleISelDAGToDAG.po: MipsGenSubtargetInfo.inc.h +MipsOs16.o: MipsGenInstrInfo.inc.h +MipsOs16.o: MipsGenRegisterInfo.inc.h +MipsOs16.o: MipsGenSubtargetInfo.inc.h +MipsOs16.po: MipsGenInstrInfo.inc.h +MipsOs16.po: MipsGenRegisterInfo.inc.h +MipsOs16.po: MipsGenSubtargetInfo.inc.h MipsRegisterInfo.o: MipsGenInstrInfo.inc.h MipsRegisterInfo.o: MipsGenRegisterInfo.inc.h MipsRegisterInfo.o: MipsGenSubtargetInfo.inc.h @@ -128,6 +163,24 @@ MipsSEFrameLowering.o: MipsGenSubtargetInfo.inc.h MipsSEFrameLowering.po: MipsGenInstrInfo.inc.h MipsSEFrameLowering.po: MipsGenRegisterInfo.inc.h MipsSEFrameLowering.po: MipsGenSubtargetInfo.inc.h +MipsSEISelDAGToDAG.o: Intrinsics.inc.h +MipsSEISelDAGToDAG.o: MipsGenDAGISel.inc.h +MipsSEISelDAGToDAG.o: MipsGenInstrInfo.inc.h +MipsSEISelDAGToDAG.o: MipsGenRegisterInfo.inc.h +MipsSEISelDAGToDAG.o: MipsGenSubtargetInfo.inc.h +MipsSEISelDAGToDAG.po: Intrinsics.inc.h +MipsSEISelDAGToDAG.po: MipsGenDAGISel.inc.h +MipsSEISelDAGToDAG.po: MipsGenInstrInfo.inc.h +MipsSEISelDAGToDAG.po: MipsGenRegisterInfo.inc.h +MipsSEISelDAGToDAG.po: MipsGenSubtargetInfo.inc.h +MipsSEISelLowering.o: Intrinsics.inc.h +MipsSEISelLowering.o: MipsGenInstrInfo.inc.h +MipsSEISelLowering.o: MipsGenRegisterInfo.inc.h +MipsSEISelLowering.o: MipsGenSubtargetInfo.inc.h +MipsSEISelLowering.po: Intrinsics.inc.h +MipsSEISelLowering.po: MipsGenInstrInfo.inc.h +MipsSEISelLowering.po: MipsGenRegisterInfo.inc.h +MipsSEISelLowering.po: MipsGenSubtargetInfo.inc.h MipsSEInstrInfo.o: MipsGenInstrInfo.inc.h MipsSEInstrInfo.o: MipsGenRegisterInfo.inc.h MipsSEInstrInfo.o: MipsGenSubtargetInfo.inc.h @@ -152,9 +205,13 @@ MipsSubtarget.o: MipsGenSubtargetInfo.inc.h MipsSubtarget.po: MipsGenInstrInfo.inc.h MipsSubtarget.po: MipsGenRegisterInfo.inc.h MipsSubtarget.po: MipsGenSubtargetInfo.inc.h +MipsTargetMachine.o: Intrinsics.inc.h +MipsTargetMachine.o: MipsGenDAGISel.inc.h MipsTargetMachine.o: MipsGenInstrInfo.inc.h MipsTargetMachine.o: MipsGenRegisterInfo.inc.h MipsTargetMachine.o: MipsGenSubtargetInfo.inc.h +MipsTargetMachine.po: Intrinsics.inc.h +MipsTargetMachine.po: MipsGenDAGISel.inc.h MipsTargetMachine.po: MipsGenInstrInfo.inc.h MipsTargetMachine.po: MipsGenRegisterInfo.inc.h MipsTargetMachine.po: MipsGenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmmipsdesc/Makefile.depend b/lib/clang/libllvmmipsdesc/Makefile.depend index 431b91616045..96c1046c07fc 100644 --- a/lib/clang/libllvmmipsdesc/Makefile.depend +++ b/lib/clang/libllvmmipsdesc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -32,6 +33,8 @@ MipsELFObjectWriter.o: MipsGenSubtargetInfo.inc.h MipsELFObjectWriter.po: MipsGenInstrInfo.inc.h MipsELFObjectWriter.po: MipsGenRegisterInfo.inc.h MipsELFObjectWriter.po: MipsGenSubtargetInfo.inc.h +MipsELFStreamer.o: MipsGenSubtargetInfo.inc.h +MipsELFStreamer.po: MipsGenSubtargetInfo.inc.h MipsMCCodeEmitter.o: MipsGenInstrInfo.inc.h MipsMCCodeEmitter.o: MipsGenMCCodeEmitter.inc.h MipsMCCodeEmitter.o: MipsGenRegisterInfo.inc.h @@ -46,4 +49,6 @@ MipsMCTargetDesc.o: MipsGenSubtargetInfo.inc.h MipsMCTargetDesc.po: MipsGenInstrInfo.inc.h MipsMCTargetDesc.po: MipsGenRegisterInfo.inc.h MipsMCTargetDesc.po: MipsGenSubtargetInfo.inc.h +MipsReginfo.o: MipsGenSubtargetInfo.inc.h +MipsReginfo.po: MipsGenSubtargetInfo.inc.h .endif diff --git a/lib/clang/libllvmmipsinfo/Makefile.depend b/lib/clang/libllvmmipsinfo/Makefile.depend index d137771a1589..1c74f8ffb6b6 100644 --- a/lib/clang/libllvmmipsinfo/Makefile.depend +++ b/lib/clang/libllvmmipsinfo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmmipsinstprinter/Makefile.depend b/lib/clang/libllvmmipsinstprinter/Makefile.depend index e30b14ba5aa7..2ac9a3876a1f 100644 --- a/lib/clang/libllvmmipsinstprinter/Makefile.depend +++ b/lib/clang/libllvmmipsinstprinter/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmpowerpccodegen/Makefile.depend b/lib/clang/libllvmpowerpccodegen/Makefile.depend index ae70ab60647a..3ef28585d282 100644 --- a/lib/clang/libllvmpowerpccodegen/Makefile.depend +++ b/lib/clang/libllvmpowerpccodegen/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -114,4 +115,12 @@ PPCTargetMachine.o: PPCGenSubtargetInfo.inc.h PPCTargetMachine.po: PPCGenInstrInfo.inc.h PPCTargetMachine.po: PPCGenRegisterInfo.inc.h PPCTargetMachine.po: PPCGenSubtargetInfo.inc.h +PPCTargetTransformInfo.o: Intrinsics.inc.h +PPCTargetTransformInfo.o: PPCGenInstrInfo.inc.h +PPCTargetTransformInfo.o: PPCGenRegisterInfo.inc.h +PPCTargetTransformInfo.o: PPCGenSubtargetInfo.inc.h +PPCTargetTransformInfo.po: Intrinsics.inc.h +PPCTargetTransformInfo.po: PPCGenInstrInfo.inc.h +PPCTargetTransformInfo.po: PPCGenRegisterInfo.inc.h +PPCTargetTransformInfo.po: PPCGenSubtargetInfo.inc.h .endif diff --git a/lib/clang/libllvmpowerpcdesc/Makefile.depend b/lib/clang/libllvmpowerpcdesc/Makefile.depend index e08c52ee04f0..ddc053c119af 100644 --- a/lib/clang/libllvmpowerpcdesc/Makefile.depend +++ b/lib/clang/libllvmpowerpcdesc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmpowerpcinfo/Makefile.depend b/lib/clang/libllvmpowerpcinfo/Makefile.depend index 000ccdafcf74..e952d74e5ede 100644 --- a/lib/clang/libllvmpowerpcinfo/Makefile.depend +++ b/lib/clang/libllvmpowerpcinfo/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmpowerpcinstprinter/Makefile.depend b/lib/clang/libllvmpowerpcinstprinter/Makefile.depend index b684e2531769..057e08f6b214 100644 --- a/lib/clang/libllvmpowerpcinstprinter/Makefile.depend +++ b/lib/clang/libllvmpowerpcinstprinter/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmruntimedyld/Makefile.depend b/lib/clang/libllvmruntimedyld/Makefile.depend index 6a3fc332584d..422d37c93228 100644 --- a/lib/clang/libllvmruntimedyld/Makefile.depend +++ b/lib/clang/libllvmruntimedyld/Makefile.depend @@ -2,9 +2,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libstdc++ \ + gnu/lib/libsupc++ \ include \ include/xlocale \ lib/msun \ diff --git a/lib/clang/libllvmscalaropts/Makefile.depend b/lib/clang/libllvmscalaropts/Makefile.depend index 4eb3de81ec94..921024027b00 100644 --- a/lib/clang/libllvmscalaropts/Makefile.depend +++ b/lib/clang/libllvmscalaropts/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -38,12 +39,12 @@ LoopStrengthReduce.o: Intrinsics.inc.h LoopStrengthReduce.po: Intrinsics.inc.h LoopUnrollPass.o: Intrinsics.inc.h LoopUnrollPass.po: Intrinsics.inc.h +LoopUnswitch.o: Intrinsics.inc.h +LoopUnswitch.po: Intrinsics.inc.h LowerAtomic.o: Intrinsics.inc.h LowerAtomic.po: Intrinsics.inc.h MemCpyOptimizer.o: Intrinsics.inc.h MemCpyOptimizer.po: Intrinsics.inc.h -ObjCARC.o: Intrinsics.inc.h -ObjCARC.po: Intrinsics.inc.h Reassociate.o: Intrinsics.inc.h Reassociate.po: Intrinsics.inc.h SCCP.o: Intrinsics.inc.h @@ -54,8 +55,6 @@ ScalarReplAggregates.o: Intrinsics.inc.h ScalarReplAggregates.po: Intrinsics.inc.h SimplifyCFGPass.o: Intrinsics.inc.h SimplifyCFGPass.po: Intrinsics.inc.h -SimplifyLibCalls.o: Intrinsics.inc.h -SimplifyLibCalls.po: Intrinsics.inc.h Sink.o: Intrinsics.inc.h Sink.po: Intrinsics.inc.h TailRecursionElimination.o: Intrinsics.inc.h diff --git a/lib/clang/libllvmselectiondag/Makefile.depend b/lib/clang/libllvmselectiondag/Makefile.depend index 6db6d7ed1eaa..95ce77ee7c9b 100644 --- a/lib/clang/libllvmselectiondag/Makefile.depend +++ b/lib/clang/libllvmselectiondag/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmtransformutils/Makefile.depend b/lib/clang/libllvmtransformutils/Makefile.depend index f7d03f410666..5ed0fbadb4c0 100644 --- a/lib/clang/libllvmtransformutils/Makefile.depend +++ b/lib/clang/libllvmtransformutils/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -40,4 +41,6 @@ SSAUpdater.o: Intrinsics.inc.h SSAUpdater.po: Intrinsics.inc.h SimplifyCFG.o: Intrinsics.inc.h SimplifyCFG.po: Intrinsics.inc.h +SimplifyLibCalls.o: Intrinsics.inc.h +SimplifyLibCalls.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvmvectorize/Makefile.depend b/lib/clang/libllvmvectorize/Makefile.depend index f44ea477f2c6..40d35601976f 100644 --- a/lib/clang/libllvmvectorize/Makefile.depend +++ b/lib/clang/libllvmvectorize/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -16,4 +17,10 @@ DIRDEPS = \ # local dependencies - needed for -jN in clean tree BBVectorize.o: Intrinsics.inc.h BBVectorize.po: Intrinsics.inc.h +LoopVectorize.o: Intrinsics.inc.h +LoopVectorize.po: Intrinsics.inc.h +SLPVectorizer.o: Intrinsics.inc.h +SLPVectorizer.po: Intrinsics.inc.h +VecUtils.o: Intrinsics.inc.h +VecUtils.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvmx86asmparser/Makefile.depend b/lib/clang/libllvmx86asmparser/Makefile.depend index e89abf7c1290..b4ef923f230b 100644 --- a/lib/clang/libllvmx86asmparser/Makefile.depend +++ b/lib/clang/libllvmx86asmparser/Makefile.depend @@ -8,20 +8,13 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -X86AsmLexer.o: X86GenAsmMatcher.inc.h -X86AsmLexer.o: X86GenInstrInfo.inc.h -X86AsmLexer.o: X86GenRegisterInfo.inc.h -X86AsmLexer.o: X86GenSubtargetInfo.inc.h -X86AsmLexer.po: X86GenAsmMatcher.inc.h -X86AsmLexer.po: X86GenInstrInfo.inc.h -X86AsmLexer.po: X86GenRegisterInfo.inc.h -X86AsmLexer.po: X86GenSubtargetInfo.inc.h X86AsmParser.o: X86GenAsmMatcher.inc.h X86AsmParser.o: X86GenInstrInfo.inc.h X86AsmParser.o: X86GenRegisterInfo.inc.h diff --git a/lib/clang/libllvmx86codegen/Makefile.depend b/lib/clang/libllvmx86codegen/Makefile.depend index 47eea8c800cc..1eb524d37c33 100644 --- a/lib/clang/libllvmx86codegen/Makefile.depend +++ b/lib/clang/libllvmx86codegen/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include @@ -38,6 +39,12 @@ X86FastISel.po: X86GenFastISel.inc.h X86FastISel.po: X86GenInstrInfo.inc.h X86FastISel.po: X86GenRegisterInfo.inc.h X86FastISel.po: X86GenSubtargetInfo.inc.h +X86FixupLEAs.o: X86GenInstrInfo.inc.h +X86FixupLEAs.o: X86GenRegisterInfo.inc.h +X86FixupLEAs.o: X86GenSubtargetInfo.inc.h +X86FixupLEAs.po: X86GenInstrInfo.inc.h +X86FixupLEAs.po: X86GenRegisterInfo.inc.h +X86FixupLEAs.po: X86GenSubtargetInfo.inc.h X86FloatingPoint.o: X86GenInstrInfo.inc.h X86FloatingPoint.o: X86GenRegisterInfo.inc.h X86FloatingPoint.o: X86GenSubtargetInfo.inc.h @@ -88,6 +95,12 @@ X86MCInstLower.o: X86GenSubtargetInfo.inc.h X86MCInstLower.po: X86GenInstrInfo.inc.h X86MCInstLower.po: X86GenRegisterInfo.inc.h X86MCInstLower.po: X86GenSubtargetInfo.inc.h +X86PadShortFunction.o: X86GenInstrInfo.inc.h +X86PadShortFunction.o: X86GenRegisterInfo.inc.h +X86PadShortFunction.o: X86GenSubtargetInfo.inc.h +X86PadShortFunction.po: X86GenInstrInfo.inc.h +X86PadShortFunction.po: X86GenRegisterInfo.inc.h +X86PadShortFunction.po: X86GenSubtargetInfo.inc.h X86RegisterInfo.o: X86GenInstrInfo.inc.h X86RegisterInfo.o: X86GenRegisterInfo.inc.h X86RegisterInfo.o: X86GenSubtargetInfo.inc.h @@ -112,12 +125,14 @@ X86TargetMachine.o: X86GenSubtargetInfo.inc.h X86TargetMachine.po: X86GenInstrInfo.inc.h X86TargetMachine.po: X86GenRegisterInfo.inc.h X86TargetMachine.po: X86GenSubtargetInfo.inc.h -X86TargetObjectFile.o: X86GenInstrInfo.inc.h -X86TargetObjectFile.o: X86GenRegisterInfo.inc.h -X86TargetObjectFile.o: X86GenSubtargetInfo.inc.h -X86TargetObjectFile.po: X86GenInstrInfo.inc.h -X86TargetObjectFile.po: X86GenRegisterInfo.inc.h -X86TargetObjectFile.po: X86GenSubtargetInfo.inc.h +X86TargetTransformInfo.o: Intrinsics.inc.h +X86TargetTransformInfo.o: X86GenInstrInfo.inc.h +X86TargetTransformInfo.o: X86GenRegisterInfo.inc.h +X86TargetTransformInfo.o: X86GenSubtargetInfo.inc.h +X86TargetTransformInfo.po: Intrinsics.inc.h +X86TargetTransformInfo.po: X86GenInstrInfo.inc.h +X86TargetTransformInfo.po: X86GenRegisterInfo.inc.h +X86TargetTransformInfo.po: X86GenSubtargetInfo.inc.h X86VZeroUpper.o: X86GenInstrInfo.inc.h X86VZeroUpper.o: X86GenRegisterInfo.inc.h X86VZeroUpper.o: X86GenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmx86desc/Makefile.depend b/lib/clang/libllvmx86desc/Makefile.depend index a5e3e540a7a5..9e3ab7303e68 100644 --- a/lib/clang/libllvmx86desc/Makefile.depend +++ b/lib/clang/libllvmx86desc/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmx86disassembler/Makefile.depend b/lib/clang/libllvmx86disassembler/Makefile.depend index 802a851c07cb..0e569caab18a 100644 --- a/lib/clang/libllvmx86disassembler/Makefile.depend +++ b/lib/clang/libllvmx86disassembler/Makefile.depend @@ -8,16 +8,15 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -X86Disassembler.o: X86GenEDInfo.inc.h X86Disassembler.o: X86GenInstrInfo.inc.h X86Disassembler.o: X86GenRegisterInfo.inc.h -X86Disassembler.po: X86GenEDInfo.inc.h X86Disassembler.po: X86GenInstrInfo.inc.h X86Disassembler.po: X86GenRegisterInfo.inc.h .endif diff --git a/lib/clang/libllvmx86info/Makefile.depend b/lib/clang/libllvmx86info/Makefile.depend index 1540a5fab645..212ccc1cdf92 100644 --- a/lib/clang/libllvmx86info/Makefile.depend +++ b/lib/clang/libllvmx86info/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libllvmx86instprinter/Makefile.depend b/lib/clang/libllvmx86instprinter/Makefile.depend index ab56eb6eee79..062c7822b7da 100644 --- a/lib/clang/libllvmx86instprinter/Makefile.depend +++ b/lib/clang/libllvmx86instprinter/Makefile.depend @@ -8,6 +8,7 @@ DIRDEPS = \ include \ include/xlocale \ lib/msun \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/libprocstat/Makefile.depend b/lib/libprocstat/Makefile.depend index 4a629c0d1890..3444d9387768 100644 --- a/lib/libprocstat/Makefile.depend +++ b/lib/libprocstat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libelf \ lib/libkvm \ lib/libprocstat/zfs \ lib/libutil \ diff --git a/libexec/telnetd/Makefile.depend b/libexec/telnetd/Makefile.depend index 764aaef0da15..b4f3ca5b72ce 100644 --- a/libexec/telnetd/Makefile.depend +++ b/libexec/telnetd/Makefile.depend @@ -8,9 +8,12 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ @@ -19,6 +22,7 @@ DIRDEPS = \ lib/libmp \ lib/libpam/libpam \ lib/libtelnet \ + lib/libthr \ lib/libutil \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/libexec/ulog-helper/Makefile.depend b/libexec/ulog-helper/Makefile.depend index 0ff36232e3b7..b1f47e3d7a34 100644 --- a/libexec/ulog-helper/Makefile.depend +++ b/libexec/ulog-helper/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libmd \ lib/libulog \ diff --git a/pkgs/pseudo/clang/Makefile.depend b/pkgs/pseudo/clang/Makefile.depend index 128712a7e078..bd0c8db4c683 100644 --- a/pkgs/pseudo/clang/Makefile.depend +++ b/pkgs/pseudo/clang/Makefile.depend @@ -16,7 +16,8 @@ DIRDEPS = \ lib/clang/libclangfrontendtool \ lib/clang/libclanglex \ lib/clang/libclangparse \ - lib/clang/libclangrewrite \ + lib/clang/libclangrewritecore \ + lib/clang/libclangrewritefrontend \ lib/clang/libclangsema \ lib/clang/libclangserialization \ lib/clang/libclangstaticanalyzercheckers \ @@ -24,20 +25,45 @@ DIRDEPS = \ lib/clang/libclangstaticanalyzerfrontend \ lib/clang/libllvmanalysis \ lib/clang/libllvmarchive \ + lib/clang/libllvmarmasmparser \ + lib/clang/libllvmarmcodegen \ + lib/clang/libllvmarmdesc \ + lib/clang/libllvmarmdisassembler \ + lib/clang/libllvmarminfo \ + lib/clang/libllvmarminstprinter \ lib/clang/libllvmasmparser \ lib/clang/libllvmasmprinter \ lib/clang/libllvmbitreader \ lib/clang/libllvmbitwriter \ lib/clang/libllvmcodegen \ lib/clang/libllvmcore \ + lib/clang/libllvmdebuginfo \ + lib/clang/libllvmexecutionengine \ lib/clang/libllvminstcombine \ lib/clang/libllvminstrumentation \ + lib/clang/libllvminterpreter \ lib/clang/libllvmipa \ lib/clang/libllvmipo \ + lib/clang/libllvmirreader \ + lib/clang/libllvmjit \ lib/clang/libllvmlinker \ lib/clang/libllvmmc \ + lib/clang/libllvmmcdisassembler \ + lib/clang/libllvmmcjit \ lib/clang/libllvmmcparser \ + lib/clang/libllvmmipsasmparser \ + lib/clang/libllvmmipscodegen \ + lib/clang/libllvmmipsdesc \ + lib/clang/libllvmmipsdisassembler \ + lib/clang/libllvmmipsinfo \ + lib/clang/libllvmmipsinstprinter \ + lib/clang/libllvmobjcarcopts \ lib/clang/libllvmobject \ + lib/clang/libllvmpowerpccodegen \ + lib/clang/libllvmpowerpcdesc \ + lib/clang/libllvmpowerpcinfo \ + lib/clang/libllvmpowerpcinstprinter \ + lib/clang/libllvmruntimedyld \ lib/clang/libllvmscalaropts \ lib/clang/libllvmselectiondag \ lib/clang/libllvmsupport \ @@ -45,22 +71,6 @@ DIRDEPS = \ lib/clang/libllvmtarget \ lib/clang/libllvmtransformutils \ lib/clang/libllvmvectorize \ - lib/clang/libllvmarmasmparser \ - lib/clang/libllvmarmcodegen \ - lib/clang/libllvmarmdesc \ - lib/clang/libllvmarmdisassembler \ - lib/clang/libllvmarminfo \ - lib/clang/libllvmarminstprinter \ - lib/clang/libllvmmipsasmparser \ - lib/clang/libllvmmipscodegen \ - lib/clang/libllvmmipsdesc \ - lib/clang/libllvmmipsdisassembler \ - lib/clang/libllvmmipsinfo \ - lib/clang/libllvmmipsinstprinter \ - lib/clang/libllvmpowerpccodegen \ - lib/clang/libllvmpowerpcdesc \ - lib/clang/libllvmpowerpcinfo \ - lib/clang/libllvmpowerpcinstprinter \ lib/clang/libllvmx86asmparser \ lib/clang/libllvmx86codegen \ lib/clang/libllvmx86desc \ diff --git a/sbin/atm/atmconfig/Makefile.depend b/sbin/atm/atmconfig/Makefile.depend index 4db19e895daa..99d3028dc5a3 100644 --- a/sbin/atm/atmconfig/Makefile.depend +++ b/sbin/atm/atmconfig/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libnetgraph \ + secure/lib/libcrypto \ .include diff --git a/sbin/ccdconfig/Makefile.depend b/sbin/ccdconfig/Makefile.depend index ecf630226e25..099436d63905 100644 --- a/sbin/ccdconfig/Makefile.depend +++ b/sbin/ccdconfig/Makefile.depend @@ -9,7 +9,9 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ lib/libgeom \ + lib/libsbuf \ .include diff --git a/sbin/gbde/Makefile.depend b/sbin/gbde/Makefile.depend index 491be48ebd09..e4727db7c7cd 100644 --- a/sbin/gbde/Makefile.depend +++ b/sbin/gbde/Makefile.depend @@ -9,8 +9,10 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ lib/libgeom \ lib/libmd \ + lib/libsbuf \ lib/libutil \ diff --git a/sbin/gvinum/Makefile.depend b/sbin/gvinum/Makefile.depend index 7a3df726feb2..af362c6df9d9 100644 --- a/sbin/gvinum/Makefile.depend +++ b/sbin/gvinum/Makefile.depend @@ -12,8 +12,10 @@ DIRDEPS = \ lib/libdevstat \ lib/libedit \ lib/libedit/edit/readline \ + lib/libexpat \ lib/libgeom \ lib/libkvm \ + lib/libsbuf \ lib/ncurses/ncurses \ diff --git a/sbin/hastctl/Makefile.depend b/sbin/hastctl/Makefile.depend index a7f85effb2ff..f12a2e4065a7 100644 --- a/sbin/hastctl/Makefile.depend +++ b/sbin/hastctl/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libutil \ secure/lib/libcrypto \ - usr.bin/lex/lib \ .include diff --git a/sbin/hastd/Makefile.depend b/sbin/hastd/Makefile.depend index cfbc40b1270b..70e64c824f82 100644 --- a/sbin/hastd/Makefile.depend +++ b/sbin/hastd/Makefile.depend @@ -16,7 +16,6 @@ DIRDEPS = \ lib/libthr \ lib/libutil \ secure/lib/libcrypto \ - usr.bin/lex/lib \ .include diff --git a/sbin/iscontrol/Makefile.depend b/sbin/iscontrol/Makefile.depend index b4c8c6f88999..f51771723836 100644 --- a/sbin/iscontrol/Makefile.depend +++ b/sbin/iscontrol/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/libcam \ lib/libcompiler_rt \ lib/libmd \ + lib/libsbuf \ .include diff --git a/secure/lib/libssh/Makefile.depend b/secure/lib/libssh/Makefile.depend index 494483b5b282..7d3729c1febd 100644 --- a/secure/lib/libssh/Makefile.depend +++ b/secure/lib/libssh/Makefile.depend @@ -17,11 +17,13 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ + lib/libldns \ lib/libmd \ lib/libpam/libpam \ lib/libutil \ lib/libz \ secure/lib/libcrypto \ + secure/lib/libssl \ .include diff --git a/secure/libexec/sftp-server/Makefile.depend b/secure/libexec/sftp-server/Makefile.depend index e31fa30260eb..9ec443c113b4 100644 --- a/secure/libexec/sftp-server/Makefile.depend +++ b/secure/libexec/sftp-server/Makefile.depend @@ -7,11 +7,23 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libgssapi \ + lib/libldns \ + lib/libmd \ lib/libpam/libpam \ + lib/libthr \ lib/libutil \ lib/libz \ secure/lib/libcrypto \ diff --git a/secure/libexec/ssh-keysign/Makefile.depend b/secure/libexec/ssh-keysign/Makefile.depend index e31fa30260eb..9ec443c113b4 100644 --- a/secure/libexec/ssh-keysign/Makefile.depend +++ b/secure/libexec/ssh-keysign/Makefile.depend @@ -7,11 +7,23 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libgssapi \ + lib/libldns \ + lib/libmd \ lib/libpam/libpam \ + lib/libthr \ lib/libutil \ lib/libz \ secure/lib/libcrypto \ diff --git a/secure/libexec/ssh-pkcs11-helper/Makefile.depend b/secure/libexec/ssh-pkcs11-helper/Makefile.depend index e31fa30260eb..9ec443c113b4 100644 --- a/secure/libexec/ssh-pkcs11-helper/Makefile.depend +++ b/secure/libexec/ssh-pkcs11-helper/Makefile.depend @@ -7,11 +7,23 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libgssapi \ + lib/libldns \ + lib/libmd \ lib/libpam/libpam \ + lib/libthr \ lib/libutil \ lib/libz \ secure/lib/libcrypto \ diff --git a/secure/usr.bin/scp/Makefile.depend b/secure/usr.bin/scp/Makefile.depend index e31fa30260eb..9ec443c113b4 100644 --- a/secure/usr.bin/scp/Makefile.depend +++ b/secure/usr.bin/scp/Makefile.depend @@ -7,11 +7,23 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libgssapi \ + lib/libldns \ + lib/libmd \ lib/libpam/libpam \ + lib/libthr \ lib/libutil \ lib/libz \ secure/lib/libcrypto \ diff --git a/secure/usr.bin/sftp/Makefile.depend b/secure/usr.bin/sftp/Makefile.depend index 48894d8f77cf..1f554f057163 100644 --- a/secure/usr.bin/sftp/Makefile.depend +++ b/secure/usr.bin/sftp/Makefile.depend @@ -7,12 +7,24 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ lib/libedit \ + lib/libgssapi \ + lib/libldns \ + lib/libmd \ lib/libpam/libpam \ + lib/libthr \ lib/libutil \ lib/libz \ lib/ncurses/ncurses \ diff --git a/secure/usr.bin/ssh-add/Makefile.depend b/secure/usr.bin/ssh-add/Makefile.depend index e31fa30260eb..9ec443c113b4 100644 --- a/secure/usr.bin/ssh-add/Makefile.depend +++ b/secure/usr.bin/ssh-add/Makefile.depend @@ -7,11 +7,23 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libgssapi \ + lib/libldns \ + lib/libmd \ lib/libpam/libpam \ + lib/libthr \ lib/libutil \ lib/libz \ secure/lib/libcrypto \ diff --git a/secure/usr.bin/ssh-agent/Makefile.depend b/secure/usr.bin/ssh-agent/Makefile.depend index e31fa30260eb..9ec443c113b4 100644 --- a/secure/usr.bin/ssh-agent/Makefile.depend +++ b/secure/usr.bin/ssh-agent/Makefile.depend @@ -7,11 +7,23 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libgssapi \ + lib/libldns \ + lib/libmd \ lib/libpam/libpam \ + lib/libthr \ lib/libutil \ lib/libz \ secure/lib/libcrypto \ diff --git a/secure/usr.bin/ssh-keygen/Makefile.depend b/secure/usr.bin/ssh-keygen/Makefile.depend index e31fa30260eb..9ec443c113b4 100644 --- a/secure/usr.bin/ssh-keygen/Makefile.depend +++ b/secure/usr.bin/ssh-keygen/Makefile.depend @@ -7,11 +7,23 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libgssapi \ + lib/libldns \ + lib/libmd \ lib/libpam/libpam \ + lib/libthr \ lib/libutil \ lib/libz \ secure/lib/libcrypto \ diff --git a/secure/usr.bin/ssh-keyscan/Makefile.depend b/secure/usr.bin/ssh-keyscan/Makefile.depend index e31fa30260eb..9ec443c113b4 100644 --- a/secure/usr.bin/ssh-keyscan/Makefile.depend +++ b/secure/usr.bin/ssh-keyscan/Makefile.depend @@ -7,11 +7,23 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ + kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libgssapi \ + lib/libldns \ + lib/libmd \ lib/libpam/libpam \ + lib/libthr \ lib/libutil \ lib/libz \ secure/lib/libcrypto \ diff --git a/secure/usr.bin/ssh/Makefile.depend b/secure/usr.bin/ssh/Makefile.depend index 97edbeb27da7..7ea112bc7394 100644 --- a/secure/usr.bin/ssh/Makefile.depend +++ b/secure/usr.bin/ssh/Makefile.depend @@ -9,13 +9,22 @@ DIRDEPS = \ include/gssapi \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ + lib/libldns \ + lib/libmd \ lib/libpam/libpam \ + lib/libthr \ lib/libutil \ lib/libz \ secure/lib/libcrypto \ diff --git a/secure/usr.sbin/sshd/Makefile.depend b/secure/usr.sbin/sshd/Makefile.depend index f6a2ce1f5e8f..140ceeccbfbb 100644 --- a/secure/usr.sbin/sshd/Makefile.depend +++ b/secure/usr.sbin/sshd/Makefile.depend @@ -10,14 +10,23 @@ DIRDEPS = \ include/xlocale \ kerberos5/lib/libasn1 \ kerberos5/lib/libgssapi_krb5 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ + kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ + lib/libldns \ + lib/libmd \ lib/libpam/libpam \ + lib/libthr \ lib/libutil \ lib/libwrap \ lib/libz \ diff --git a/share/atf/Makefile.depend b/share/atf/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/share/atf/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/dict/Makefile.depend b/share/dict/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/dict/Makefile.depend +++ b/share/dict/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/doc/IPv6/Makefile.depend b/share/doc/IPv6/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/doc/IPv6/Makefile.depend +++ b/share/doc/IPv6/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/doc/atf/Makefile.depend b/share/doc/atf/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/share/doc/atf/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/doc/legal/intel_ipw/Makefile.depend b/share/doc/legal/intel_ipw/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/doc/legal/intel_ipw/Makefile.depend +++ b/share/doc/legal/intel_ipw/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/doc/legal/intel_iwi/Makefile.depend b/share/doc/legal/intel_iwi/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/doc/legal/intel_iwi/Makefile.depend +++ b/share/doc/legal/intel_iwi/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/doc/legal/intel_iwn/Makefile.depend b/share/doc/legal/intel_iwn/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/doc/legal/intel_iwn/Makefile.depend +++ b/share/doc/legal/intel_iwn/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/doc/legal/intel_wpi/Makefile.depend b/share/doc/legal/intel_wpi/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/doc/legal/intel_wpi/Makefile.depend +++ b/share/doc/legal/intel_wpi/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/doc/llvm/clang/Makefile.depend b/share/doc/llvm/clang/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/doc/llvm/clang/Makefile.depend +++ b/share/doc/llvm/clang/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/dtrace/toolkit/Makefile.depend b/share/dtrace/toolkit/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/share/dtrace/toolkit/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/examples/atf/Makefile.depend b/share/examples/atf/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/share/examples/atf/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/examples/pf/Makefile.depend b/share/examples/pf/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/share/examples/pf/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/skel/Makefile.depend b/share/skel/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/skel/Makefile.depend +++ b/share/skel/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/snmp/mibs/Makefile.depend b/share/snmp/mibs/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/snmp/mibs/Makefile.depend +++ b/share/snmp/mibs/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/syscons/fonts/Makefile.depend b/share/syscons/fonts/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/syscons/fonts/Makefile.depend +++ b/share/syscons/fonts/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/syscons/keymaps/Makefile.depend b/share/syscons/keymaps/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/syscons/keymaps/Makefile.depend +++ b/share/syscons/keymaps/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/xml/atf/Makefile.depend b/share/xml/atf/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/share/xml/atf/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/xsl/atf/Makefile.depend b/share/xsl/atf/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/share/xsl/atf/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/alias/Makefile.depend b/usr.bin/alias/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/usr.bin/alias/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/clang/clang/Makefile.depend b/usr.bin/clang/clang/Makefile.depend index f7b95b070285..6b3c19a7a294 100644 --- a/usr.bin/clang/clang/Makefile.depend +++ b/usr.bin/clang/clang/Makefile.depend @@ -27,7 +27,6 @@ DIRDEPS = \ lib/clang/libclangstaticanalyzercore \ lib/clang/libclangstaticanalyzerfrontend \ lib/clang/libllvmanalysis \ - lib/clang/libllvmarchive \ lib/clang/libllvmarmasmparser \ lib/clang/libllvmarmcodegen \ lib/clang/libllvmarmdesc \ @@ -44,6 +43,7 @@ DIRDEPS = \ lib/clang/libllvminstrumentation \ lib/clang/libllvmipa \ lib/clang/libllvmipo \ + lib/clang/libllvmirreader \ lib/clang/libllvmlinker \ lib/clang/libllvmmc \ lib/clang/libllvmmcparser \ @@ -53,6 +53,7 @@ DIRDEPS = \ lib/clang/libllvmmipsdisassembler \ lib/clang/libllvmmipsinfo \ lib/clang/libllvmmipsinstprinter \ + lib/clang/libllvmobjcarcopts \ lib/clang/libllvmobject \ lib/clang/libllvmpowerpccodegen \ lib/clang/libllvmpowerpcdesc \ @@ -74,6 +75,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/msun \ + usr.bin/clang/clang-tblgen.host \ .include @@ -99,7 +101,9 @@ cc1as_main.po: DiagnosticDriverKinds.inc.h cc1as_main.po: DiagnosticFrontendKinds.inc.h cc1as_main.po: Options.inc.h driver.o: DiagnosticCommonKinds.inc.h +driver.o: DiagnosticDriverKinds.inc.h driver.o: Options.inc.h driver.po: DiagnosticCommonKinds.inc.h +driver.po: DiagnosticDriverKinds.inc.h driver.po: Options.inc.h .endif diff --git a/usr.bin/compile_et/Makefile.depend b/usr.bin/compile_et/Makefile.depend index d0a5c7cfe8da..dc7604175669 100644 --- a/usr.bin/compile_et/Makefile.depend +++ b/usr.bin/compile_et/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libcrypt \ .include diff --git a/usr.bin/fetch/Makefile.depend b/usr.bin/fetch/Makefile.depend index 29fb457e7e30..722654902907 100644 --- a/usr.bin/fetch/Makefile.depend +++ b/usr.bin/fetch/Makefile.depend @@ -3,9 +3,15 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ lib/libfetch \ + secure/lib/libcrypto \ + secure/lib/libssl \ .include diff --git a/usr.bin/fstat/Makefile.depend b/usr.bin/fstat/Makefile.depend index 4e70e8c882d5..488c0034e633 100644 --- a/usr.bin/fstat/Makefile.depend +++ b/usr.bin/fstat/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libelf \ lib/libkvm \ lib/libprocstat \ lib/libutil \ diff --git a/usr.bin/gcore/Makefile.depend b/usr.bin/gcore/Makefile.depend index afbe02588041..01589a3343d0 100644 --- a/usr.bin/gcore/Makefile.depend +++ b/usr.bin/gcore/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libsbuf \ lib/libutil \ diff --git a/usr.bin/nslookup/Makefile.depend b/usr.bin/nslookup/Makefile.depend index 3740d8204809..82922d837f64 100644 --- a/usr.bin/nslookup/Makefile.depend +++ b/usr.bin/nslookup/Makefile.depend @@ -4,6 +4,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ gnu/lib/libgcc \ + gnu/lib/libreadline/readline \ include \ include/arpa \ include/xlocale \ @@ -16,7 +17,9 @@ DIRDEPS = \ lib/bind/lwres \ lib/libc \ lib/libcompiler_rt \ + lib/libedit \ lib/libthr \ + lib/ncurses/ncurses \ secure/lib/libcrypto \ diff --git a/usr.bin/nsupdate/Makefile.depend b/usr.bin/nsupdate/Makefile.depend index 3740d8204809..82922d837f64 100644 --- a/usr.bin/nsupdate/Makefile.depend +++ b/usr.bin/nsupdate/Makefile.depend @@ -4,6 +4,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ gnu/lib/libgcc \ + gnu/lib/libreadline/readline \ include \ include/arpa \ include/xlocale \ @@ -16,7 +17,9 @@ DIRDEPS = \ lib/bind/lwres \ lib/libc \ lib/libcompiler_rt \ + lib/libedit \ lib/libthr \ + lib/ncurses/ncurses \ secure/lib/libcrypto \ diff --git a/usr.bin/procstat/Makefile.depend b/usr.bin/procstat/Makefile.depend index 4b8ec136cafd..a6a3edcfd0f1 100644 --- a/usr.bin/procstat/Makefile.depend +++ b/usr.bin/procstat/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libelf \ lib/libkvm \ lib/libprocstat \ lib/libutil \ diff --git a/usr.bin/telnet/Makefile.depend b/usr.bin/telnet/Makefile.depend index a36800dfb395..067677e55167 100644 --- a/usr.bin/telnet/Makefile.depend +++ b/usr.bin/telnet/Makefile.depend @@ -8,9 +8,12 @@ DIRDEPS = \ include/arpa \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ @@ -20,6 +23,7 @@ DIRDEPS = \ lib/libmp \ lib/libpam/libpam \ lib/libtelnet \ + lib/libthr \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ secure/lib/libcrypto \ diff --git a/usr.bin/unzip/Makefile.depend b/usr.bin/unzip/Makefile.depend index 06dac81d817e..91c0c581ff74 100644 --- a/usr.bin/unzip/Makefile.depend +++ b/usr.bin/unzip/Makefile.depend @@ -8,9 +8,13 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libarchive \ + lib/libbz2 \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ + lib/liblzma \ lib/libz \ + secure/lib/libcrypto \ .include diff --git a/usr.bin/vi/Makefile.depend b/usr.bin/vi/Makefile.depend index dd43fad9b357..9d7543f3525f 100644 --- a/usr.bin/vi/Makefile.depend +++ b/usr.bin/vi/Makefile.depend @@ -5,11 +5,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ gnu/lib/libgcc \ include \ + include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/ncurses/ncurses \ + lib/libutil \ lib/ncurses/ncursesw \ diff --git a/usr.sbin/bluetooth/ath3kfw/Makefile.depend b/usr.sbin/bluetooth/ath3kfw/Makefile.depend index 0deec238fc56..e7ad4fafade0 100644 --- a/usr.sbin/bluetooth/ath3kfw/Makefile.depend +++ b/usr.sbin/bluetooth/ath3kfw/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libthr \ lib/libusb \ diff --git a/usr.sbin/bsdinstall/distextract/Makefile.depend b/usr.sbin/bsdinstall/distextract/Makefile.depend index 7d3e85efdbdc..bf6f768a4d35 100644 --- a/usr.sbin/bsdinstall/distextract/Makefile.depend +++ b/usr.sbin/bsdinstall/distextract/Makefile.depend @@ -9,10 +9,15 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libarchive \ + lib/libbz2 \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ + lib/liblzma \ + lib/libz \ lib/msun \ lib/ncurses/ncursesw \ + secure/lib/libcrypto \ .include diff --git a/usr.sbin/bsdinstall/distfetch/Makefile.depend b/usr.sbin/bsdinstall/distfetch/Makefile.depend index 8d38d7427c31..9bf11e3949b3 100644 --- a/usr.sbin/bsdinstall/distfetch/Makefile.depend +++ b/usr.sbin/bsdinstall/distfetch/Makefile.depend @@ -13,6 +13,8 @@ DIRDEPS = \ lib/libfetch \ lib/msun \ lib/ncurses/ncursesw \ + secure/lib/libcrypto \ + secure/lib/libssl \ .include diff --git a/usr.sbin/bsdinstall/partedit/Makefile.depend b/usr.sbin/bsdinstall/partedit/Makefile.depend index 6fb2e121f3ca..c82f3b2f7ff9 100644 --- a/usr.sbin/bsdinstall/partedit/Makefile.depend +++ b/usr.sbin/bsdinstall/partedit/Makefile.depend @@ -10,7 +10,9 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ lib/libgeom \ + lib/libsbuf \ lib/libutil \ lib/msun \ lib/ncurses/ncursesw \ diff --git a/usr.sbin/bsnmpd/bsnmpd/Makefile.depend b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend index 4756a45418b3..aa5ee3ce271b 100644 --- a/usr.sbin/bsnmpd/bsnmpd/Makefile.depend +++ b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libwrap \ + secure/lib/libcrypto \ .include diff --git a/usr.sbin/gssd/Makefile.depend b/usr.sbin/gssd/Makefile.depend index 6771558ce4e7..c298b138308c 100644 --- a/usr.sbin/gssd/Makefile.depend +++ b/usr.sbin/gssd/Makefile.depend @@ -9,15 +9,19 @@ DIRDEPS = \ include/rpc \ include/xlocale \ kerberos5/lib/libasn1 \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ kerberos5/lib/libhx509 \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ + kerberos5/lib/libwind \ lib/${CSU_DIR} \ lib/libc \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ lib/libgssapi \ + lib/libthr \ secure/lib/libcrypto \ diff --git a/usr.sbin/makefs/Makefile.depend b/usr.sbin/makefs/Makefile.depend index 8a69c213c3c2..e549f5515219 100644 --- a/usr.sbin/makefs/Makefile.depend +++ b/usr.sbin/makefs/Makefile.depend @@ -9,7 +9,9 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libnetbsd \ lib/libsbuf \ + lib/libutil \ .include diff --git a/usr.sbin/ntp/ntpd/Makefile.depend b/usr.sbin/ntp/ntpd/Makefile.depend index 3c9274aaff61..4bff1e2e5786 100644 --- a/usr.sbin/ntp/ntpd/Makefile.depend +++ b/usr.sbin/ntp/ntpd/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libmd \ lib/librt \ + lib/libthr \ lib/msun \ secure/lib/libcrypto \ usr.sbin/ntp/libntp \ diff --git a/usr.sbin/ntp/ntpdate/Makefile.depend b/usr.sbin/ntp/ntpdate/Makefile.depend index da518fb7554e..868ca7acccb4 100644 --- a/usr.sbin/ntp/ntpdate/Makefile.depend +++ b/usr.sbin/ntp/ntpdate/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libmd \ lib/librt \ + lib/libthr \ lib/msun \ secure/lib/libcrypto \ usr.sbin/ntp/libntp \ diff --git a/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend b/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend +++ b/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/usr.sbin/pc-sysinstall/doc/Makefile.depend b/usr.sbin/pc-sysinstall/doc/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/usr.sbin/pc-sysinstall/doc/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.sbin/pkg/Makefile.depend b/usr.sbin/pkg/Makefile.depend index 309336a6a058..d25c193c1b7e 100644 --- a/usr.sbin/pkg/Makefile.depend +++ b/usr.sbin/pkg/Makefile.depend @@ -9,12 +9,18 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libarchive \ + lib/libbz2 \ lib/libc \ lib/libcompiler_rt \ lib/libelf \ + lib/libexpat \ lib/libfetch \ + lib/liblzma \ lib/libsbuf \ lib/libyaml \ + lib/libz \ + secure/lib/libcrypto \ + secure/lib/libssl \ .include diff --git a/usr.sbin/usbconfig/Makefile.depend b/usr.sbin/usbconfig/Makefile.depend index 0deec238fc56..e7ad4fafade0 100644 --- a/usr.sbin/usbconfig/Makefile.depend +++ b/usr.sbin/usbconfig/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libthr \ lib/libusb \ diff --git a/usr.sbin/wpa/wpa_cli/Makefile.depend b/usr.sbin/wpa/wpa_cli/Makefile.depend index b9f4c018df24..0ca3031c40a5 100644 --- a/usr.sbin/wpa/wpa_cli/Makefile.depend +++ b/usr.sbin/wpa/wpa_cli/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libedit \ - lib/libedit/edit/readline \ lib/ncurses/ncurses \ From c8191bc69e371d47c087ae124ff863de342a479b Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 13 Oct 2013 00:27:34 +0000 Subject: [PATCH 107/228] We do want objdir --- gnu/usr.bin/groff/font/devX100-12/Makefile | 2 -- gnu/usr.bin/groff/font/devX100/Makefile | 2 -- gnu/usr.bin/groff/font/devX75-12/Makefile | 2 -- gnu/usr.bin/groff/font/devX75/Makefile | 2 -- libexec/save-entropy/Makefile | 1 - share/atf/Makefile | 1 - share/dict/Makefile | 2 -- share/doc/IPv6/Makefile | 1 - share/doc/atf/Makefile | 1 - share/doc/bind9/Makefile | 1 - share/doc/legal/intel_ipw/Makefile | 1 - share/doc/legal/intel_iwi/Makefile | 1 - share/doc/legal/intel_iwn/Makefile | 1 - share/doc/legal/intel_wpi/Makefile | 1 - share/doc/llvm/clang/Makefile | 1 - share/dtrace/toolkit/Makefile | 1 - share/examples/atf/Makefile | 1 - share/examples/pf/Makefile | 1 - share/info/Makefile | 2 -- share/misc/Makefile | 1 - share/sendmail/Makefile | 1 - share/skel/Makefile | 1 - share/snmp/mibs/Makefile | 1 - share/syscons/fonts/Makefile | 1 - share/syscons/keymaps/Makefile | 1 - share/xml/atf/Makefile | 1 - share/xsl/atf/Makefile | 1 - usr.bin/alias/Makefile | 1 - usr.sbin/pc-sysinstall/backend-partmanager/Makefile | 1 - usr.sbin/pc-sysinstall/backend-query/Makefile | 1 - usr.sbin/pc-sysinstall/backend/Makefile | 1 - usr.sbin/pc-sysinstall/conf/Makefile | 1 - usr.sbin/pc-sysinstall/doc/Makefile | 1 - usr.sbin/pc-sysinstall/examples/Makefile | 1 - 34 files changed, 40 deletions(-) diff --git a/gnu/usr.bin/groff/font/devX100-12/Makefile b/gnu/usr.bin/groff/font/devX100-12/Makefile index 1d77faa431c6..7b01a590cb99 100644 --- a/gnu/usr.bin/groff/font/devX100-12/Makefile +++ b/gnu/usr.bin/groff/font/devX100-12/Makefile @@ -1,7 +1,5 @@ # $FreeBSD$ -NO_OBJ= - .include "../Makefile.inc" .include "${DIST_DIR}/Makefile.sub" .include "../Makefile.dev" diff --git a/gnu/usr.bin/groff/font/devX100/Makefile b/gnu/usr.bin/groff/font/devX100/Makefile index 1d77faa431c6..7b01a590cb99 100644 --- a/gnu/usr.bin/groff/font/devX100/Makefile +++ b/gnu/usr.bin/groff/font/devX100/Makefile @@ -1,7 +1,5 @@ # $FreeBSD$ -NO_OBJ= - .include "../Makefile.inc" .include "${DIST_DIR}/Makefile.sub" .include "../Makefile.dev" diff --git a/gnu/usr.bin/groff/font/devX75-12/Makefile b/gnu/usr.bin/groff/font/devX75-12/Makefile index 1d77faa431c6..7b01a590cb99 100644 --- a/gnu/usr.bin/groff/font/devX75-12/Makefile +++ b/gnu/usr.bin/groff/font/devX75-12/Makefile @@ -1,7 +1,5 @@ # $FreeBSD$ -NO_OBJ= - .include "../Makefile.inc" .include "${DIST_DIR}/Makefile.sub" .include "../Makefile.dev" diff --git a/gnu/usr.bin/groff/font/devX75/Makefile b/gnu/usr.bin/groff/font/devX75/Makefile index 1d77faa431c6..7b01a590cb99 100644 --- a/gnu/usr.bin/groff/font/devX75/Makefile +++ b/gnu/usr.bin/groff/font/devX75/Makefile @@ -1,7 +1,5 @@ # $FreeBSD$ -NO_OBJ= - .include "../Makefile.inc" .include "${DIST_DIR}/Makefile.sub" .include "../Makefile.dev" diff --git a/libexec/save-entropy/Makefile b/libexec/save-entropy/Makefile index 3e27c48315c4..400bb9e6888c 100644 --- a/libexec/save-entropy/Makefile +++ b/libexec/save-entropy/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ SCRIPTS= save-entropy.sh -NO_OBJ= .include diff --git a/share/atf/Makefile b/share/atf/Makefile index f5318c427d2f..ff3b8f055328 100644 --- a/share/atf/Makefile +++ b/share/atf/Makefile @@ -29,7 +29,6 @@ ATF= ${.CURDIR}/../../contrib/atf .PATH: ${ATF}/atf-run/sample -NO_OBJ= FILESDIR= ${SHAREDIR}/atf FILES= atf-run.hooks diff --git a/share/dict/Makefile b/share/dict/Makefile index d9e455d6b54c..e90740742465 100644 --- a/share/dict/Makefile +++ b/share/dict/Makefile @@ -1,8 +1,6 @@ # @(#)Makefile 8.1 (Berkeley) 6/5/93 # $FreeBSD$ -NO_OBJ= - # XXX MISSING: connectives words FILES= README propernames web2 web2a freebsd FILESDIR= ${BINDIR}/dict diff --git a/share/doc/IPv6/Makefile b/share/doc/IPv6/Makefile index 62e160cbfcf1..d815acc6866e 100644 --- a/share/doc/IPv6/Makefile +++ b/share/doc/IPv6/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -NO_OBJ= FILES= IMPLEMENTATION FILESDIR= ${SHAREDIR}/doc/IPv6 diff --git a/share/doc/atf/Makefile b/share/doc/atf/Makefile index 1da915bedd57..1ac2af9974c9 100644 --- a/share/doc/atf/Makefile +++ b/share/doc/atf/Makefile @@ -29,7 +29,6 @@ ATF= ${.CURDIR}/../../../contrib/atf .PATH: ${ATF} .PATH: ${ATF}/doc -NO_OBJ= FILESGROUPS= TOP diff --git a/share/doc/bind9/Makefile b/share/doc/bind9/Makefile index f215fe3dd3b1..620a3868f5e7 100644 --- a/share/doc/bind9/Makefile +++ b/share/doc/bind9/Makefile @@ -5,7 +5,6 @@ SRCDIR= ${BIND_DIR}/doc .PATH: ${BIND_DIR} ${SRCDIR}/arm ${SRCDIR}/misc -NO_OBJ= FILESGROUPS= TOP ARM MISC TOP= CHANGES COPYRIGHT FAQ HISTORY README diff --git a/share/doc/legal/intel_ipw/Makefile b/share/doc/legal/intel_ipw/Makefile index 8f4f822fb4e0..18a2c1272191 100644 --- a/share/doc/legal/intel_ipw/Makefile +++ b/share/doc/legal/intel_ipw/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -NO_OBJ= FILES= ${.CURDIR}/../../../../sys/contrib/dev/ipw/LICENSE FILESDIR= ${SHAREDIR}/doc/legal/intel_ipw diff --git a/share/doc/legal/intel_iwi/Makefile b/share/doc/legal/intel_iwi/Makefile index 85962379a1a6..6f0e6be15615 100644 --- a/share/doc/legal/intel_iwi/Makefile +++ b/share/doc/legal/intel_iwi/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -NO_OBJ= FILES= ${.CURDIR}/../../../../sys/contrib/dev/iwi/LICENSE FILESDIR= ${SHAREDIR}/doc/legal/intel_iwi diff --git a/share/doc/legal/intel_iwn/Makefile b/share/doc/legal/intel_iwn/Makefile index 9a29dfa96208..d2e04c9ba6fa 100644 --- a/share/doc/legal/intel_iwn/Makefile +++ b/share/doc/legal/intel_iwn/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -NO_OBJ= FILES= ${.CURDIR}/../../../../sys/contrib/dev/iwn/LICENSE FILESDIR= ${SHAREDIR}/doc/legal/intel_iwn diff --git a/share/doc/legal/intel_wpi/Makefile b/share/doc/legal/intel_wpi/Makefile index 81014bedc0a7..06b486354eea 100644 --- a/share/doc/legal/intel_wpi/Makefile +++ b/share/doc/legal/intel_wpi/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -NO_OBJ= FILES= ${.CURDIR}/../../../../sys/contrib/dev/wpi/LICENSE FILESDIR= ${SHAREDIR}/doc/legal/intel_wpi diff --git a/share/doc/llvm/clang/Makefile b/share/doc/llvm/clang/Makefile index 1b26d6a9a60b..d1b548079c66 100644 --- a/share/doc/llvm/clang/Makefile +++ b/share/doc/llvm/clang/Makefile @@ -4,7 +4,6 @@ SRCDIR= ${.CURDIR}/../../../../contrib/llvm/tools/clang .PATH: ${SRCDIR} -NO_OBJ= FILESGROUPS= TOP TOP= LICENSE.TXT diff --git a/share/dtrace/toolkit/Makefile b/share/dtrace/toolkit/Makefile index 0eb7ff21bc5c..a4716afe7406 100644 --- a/share/dtrace/toolkit/Makefile +++ b/share/dtrace/toolkit/Makefile @@ -12,6 +12,5 @@ SCRIPTS= ${DTRACETOOLKIT}/execsnoop \ SCRIPTSDIR= ${SHAREDIR}/dtrace/toolkit -NO_OBJ= .include diff --git a/share/examples/atf/Makefile b/share/examples/atf/Makefile index 774502a43bda..1a8cf9685fc2 100644 --- a/share/examples/atf/Makefile +++ b/share/examples/atf/Makefile @@ -30,7 +30,6 @@ ATF= ${.CURDIR}/../../../contrib/atf .PATH: ${ATF}/atf-report .PATH: ${ATF}/atf-run/sample -NO_OBJ= FILESDIR= ${SHAREDIR}/examples/atf FILES= atf-run.hooks \ diff --git a/share/examples/pf/Makefile b/share/examples/pf/Makefile index a6c447025642..684a32605351 100644 --- a/share/examples/pf/Makefile +++ b/share/examples/pf/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -NO_OBJ= FILES= faq-example1 faq-example2 faq-example3 \ ackpri queue1 queue2 queue3 queue4 \ diff --git a/share/info/Makefile b/share/info/Makefile index 6c09adb5ce43..8c588f0f2c6b 100644 --- a/share/info/Makefile +++ b/share/info/Makefile @@ -1,8 +1,6 @@ # @(#)Makefile 8.1 (Berkeley) 6/5/93 # $FreeBSD$ -NO_OBJ= - .include beforeinstall: diff --git a/share/misc/Makefile b/share/misc/Makefile index 3e2afc43125f..8318f1d87107 100644 --- a/share/misc/Makefile +++ b/share/misc/Makefile @@ -9,7 +9,6 @@ FILES= ascii birthtoken bsd-family-tree committers-doc.dot committers-ports.dot scsi_modes usb_hid_usages usbdevs \ organization.dot -NO_OBJ= FILESDIR= ${BINDIR}/misc .include diff --git a/share/sendmail/Makefile b/share/sendmail/Makefile index 00427dc2c6db..77554aed8320 100644 --- a/share/sendmail/Makefile +++ b/share/sendmail/Makefile @@ -9,7 +9,6 @@ CFFILES!= (cd ${SENDMAIL_DIR}; find -L ${CFDIR} \( \( -name CVS -o -name .svn \) DDIR= ${DESTDIR}/usr/share/sendmail -NO_OBJ= # Define SHARED to indicate whether you want symbolic links to the system # source (``symlinks''), or a separate copy (``copies'') diff --git a/share/skel/Makefile b/share/skel/Makefile index ffe80152eeaf..305a4554ba09 100644 --- a/share/skel/Makefile +++ b/share/skel/Makefile @@ -9,6 +9,5 @@ FILES1DIR= /usr/share/skel FILES2DIR= /usr/share/skel FILES1MODE= 0644 FILES2MODE= 0600 -NO_OBJ= .include diff --git a/share/snmp/mibs/Makefile b/share/snmp/mibs/Makefile index 8de73c9be550..8bee4c85624e 100644 --- a/share/snmp/mibs/Makefile +++ b/share/snmp/mibs/Makefile @@ -1,7 +1,6 @@ # $FreeBSD$ FILES= FREEBSD-MIB.txt -NO_OBJ= FILESDIR= ${SHAREDIR}/snmp/mibs .include diff --git a/share/syscons/fonts/Makefile b/share/syscons/fonts/Makefile index bb5c6eb4469b..25ff16ad0fcc 100644 --- a/share/syscons/fonts/Makefile +++ b/share/syscons/fonts/Makefile @@ -32,6 +32,5 @@ FILES= armscii8-8x8.fnt armscii8-8x14.fnt armscii8-8x16.fnt \ FILESDIR= ${SHAREDIR}/syscons/fonts -NO_OBJ= .include diff --git a/share/syscons/keymaps/Makefile b/share/syscons/keymaps/Makefile index bcf7dccef93d..295399b93f64 100644 --- a/share/syscons/keymaps/Makefile +++ b/share/syscons/keymaps/Makefile @@ -52,6 +52,5 @@ FILES= INDEX.keymaps \ FILESDIR= ${SHAREDIR}/syscons/keymaps -NO_OBJ= .include diff --git a/share/xml/atf/Makefile b/share/xml/atf/Makefile index cf56ff181fba..729592618dd9 100644 --- a/share/xml/atf/Makefile +++ b/share/xml/atf/Makefile @@ -29,7 +29,6 @@ ATF= ${.CURDIR}/../../../contrib/atf .PATH: ${ATF}/atf-report -NO_OBJ= FILESGROUPS= XML diff --git a/share/xsl/atf/Makefile b/share/xsl/atf/Makefile index 73e84f20bc32..f5ad98438024 100644 --- a/share/xsl/atf/Makefile +++ b/share/xsl/atf/Makefile @@ -29,7 +29,6 @@ ATF= ${.CURDIR}/../../../contrib/atf .PATH: ${ATF}/atf-report -NO_OBJ= FILESGROUPS= XSL diff --git a/usr.bin/alias/Makefile b/usr.bin/alias/Makefile index 474499ff8023..e6345cf7beeb 100644 --- a/usr.bin/alias/Makefile +++ b/usr.bin/alias/Makefile @@ -2,7 +2,6 @@ SCRIPTS=generic.sh SCRIPTSNAME=alias -NO_OBJ= LINKS= ${BINDIR}/alias ${BINDIR}/bg \ ${BINDIR}/alias ${BINDIR}/cd \ diff --git a/usr.sbin/pc-sysinstall/backend-partmanager/Makefile b/usr.sbin/pc-sysinstall/backend-partmanager/Makefile index edf818ccda2f..6420e818f06f 100644 --- a/usr.sbin/pc-sysinstall/backend-partmanager/Makefile +++ b/usr.sbin/pc-sysinstall/backend-partmanager/Makefile @@ -3,6 +3,5 @@ FILES= create-part.sh delete-part.sh FILESMODE= ${BINMODE} FILESDIR=${SHAREDIR}/pc-sysinstall/backend-partmanager -NO_OBJ= .include diff --git a/usr.sbin/pc-sysinstall/backend-query/Makefile b/usr.sbin/pc-sysinstall/backend-query/Makefile index c43b14122526..e5541b78bb52 100644 --- a/usr.sbin/pc-sysinstall/backend-query/Makefile +++ b/usr.sbin/pc-sysinstall/backend-query/Makefile @@ -8,6 +8,5 @@ FILES= detect-laptop.sh detect-nics.sh detect-emulation.sh disk-info.sh \ xkeyboard-models.sh xkeyboard-variants.sh FILESMODE= ${BINMODE} FILESDIR=${SHAREDIR}/pc-sysinstall/backend-query -NO_OBJ= .include diff --git a/usr.sbin/pc-sysinstall/backend/Makefile b/usr.sbin/pc-sysinstall/backend/Makefile index 61651914e68e..3a7703a2d294 100644 --- a/usr.sbin/pc-sysinstall/backend/Makefile +++ b/usr.sbin/pc-sysinstall/backend/Makefile @@ -10,6 +10,5 @@ FILES= functions-bsdlabel.sh functions-cleanup.sh functions-disk.sh \ functions.sh parseconfig.sh startautoinstall.sh installimage.sh FILESMODE= ${BINMODE} FILESDIR=${SHAREDIR}/pc-sysinstall/backend -NO_OBJ= .include diff --git a/usr.sbin/pc-sysinstall/conf/Makefile b/usr.sbin/pc-sysinstall/conf/Makefile index 2232c175c0b5..2a6f58b9f822 100644 --- a/usr.sbin/pc-sysinstall/conf/Makefile +++ b/usr.sbin/pc-sysinstall/conf/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -NO_OBJ= FILESGROUPS= CONF LICENSE CONF= exclude-from-upgrade pc-sysinstall.conf avail-langs diff --git a/usr.sbin/pc-sysinstall/doc/Makefile b/usr.sbin/pc-sysinstall/doc/Makefile index 0a4bf83be0aa..682415c1d929 100644 --- a/usr.sbin/pc-sysinstall/doc/Makefile +++ b/usr.sbin/pc-sysinstall/doc/Makefile @@ -3,6 +3,5 @@ FILES= help-disk-list help-disk-size help-index help-start-autoinstall FILESDIR=${SHAREDIR}/pc-sysinstall/doc -NO_OBJ= .include diff --git a/usr.sbin/pc-sysinstall/examples/Makefile b/usr.sbin/pc-sysinstall/examples/Makefile index d24e5af1908c..fb76fec91196 100644 --- a/usr.sbin/pc-sysinstall/examples/Makefile +++ b/usr.sbin/pc-sysinstall/examples/Makefile @@ -6,6 +6,5 @@ FILES= README pc-autoinstall.conf pcinstall.cfg.fbsd-netinstall \ pcinstall.cfg.zfs FILESDIR=${SHAREDIR}/examples/pc-sysinstall -NO_OBJ= .include From aab5fee0721846740415f201b41c920033a49303 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 13 Oct 2013 00:29:14 +0000 Subject: [PATCH 108/228] We need an extra -I from lib/msun and we need to supress dependency on it - cyclic. --- lib/libc/Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/libc/Makefile b/lib/libc/Makefile index ba4dd0ae16c3..39d820264e3d 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -158,7 +158,15 @@ CFLAGS+= -I${.CURDIR:H}/libutil # Same issue with libm MSUN_ARCH_SUBDIR != ${MAKE} -B -C ${.CURDIR:H}/msun -V ARCH_SUBDIR # unfortunately msun/src contains both private and public headers -CFLAGS+= -I${.CURDIR:H}/msun/${MSUN_ARCH_SUBDIR} -I${.CURDIR:H}/msun/src +CFLAGS+= -I${.CURDIR:H}/msun/${MSUN_ARCH_SUBDIR} +.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" +CFLAGS+= -I${.CURDIR:H}/msun/x86 +.endif +CFLAGS+= -I${.CURDIR:H}/msun/src +# and we do not want to record a dependency on msun +.if ${.MAKE.LEVEL} > 0 +GENDIRDEPS_FILTER+= N${RELDIR:H}/msun +.endif .endif # Disable warnings in contributed sources. From e14ce21d2d70cd37b584702d88476de682f7f22f Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 16 Oct 2013 15:57:57 +0000 Subject: [PATCH 109/228] New dependencies --- lib/libunbound/Makefile.depend | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lib/libunbound/Makefile.depend diff --git a/lib/libunbound/Makefile.depend b/lib/libunbound/Makefile.depend new file mode 100644 index 000000000000..2cfec353103a --- /dev/null +++ b/lib/libunbound/Makefile.depend @@ -0,0 +1,22 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libthr \ + secure/lib/libcrypto \ + secure/lib/libssl \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif From 5ffc6a62ab85509d28846bd50091a668ac851982 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 16 Oct 2013 15:58:22 +0000 Subject: [PATCH 110/228] Updated dependencies --- usr.bin/host/Makefile.depend | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/usr.bin/host/Makefile.depend b/usr.bin/host/Makefile.depend index 3740d8204809..aeb60b6e7f95 100644 --- a/usr.bin/host/Makefile.depend +++ b/usr.bin/host/Makefile.depend @@ -5,19 +5,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ gnu/lib/libgcc \ include \ - include/arpa \ include/xlocale \ lib/${CSU_DIR} \ - lib/bind/bind9 \ - lib/bind/dns \ - lib/bind/isc \ - lib/bind/isccc \ - lib/bind/isccfg \ - lib/bind/lwres \ lib/libc \ lib/libcompiler_rt \ - lib/libthr \ + lib/libldns \ secure/lib/libcrypto \ + secure/lib/libssl \ .include From e88211432718e2d669a06b09a02694fb89ed2b53 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 16 Oct 2013 15:58:44 +0000 Subject: [PATCH 111/228] Avoid creating Makefile.depend --- share/mk/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/mk/Makefile b/share/mk/Makefile index 96f99da8eca7..c7291fca2516 100644 --- a/share/mk/Makefile +++ b/share/mk/Makefile @@ -46,4 +46,6 @@ FILESDIR= ${BINDIR}/mk FILES+= atf.test.mk .endif +UPDATE_DEPENDFILE= no + .include From 0f48428747a364db0f9ec7e497c7c4ce703392fb Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 16 Oct 2013 15:59:29 +0000 Subject: [PATCH 112/228] Make sure we can find openpam_static.c --- lib/libpam/static_modules/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libpam/static_modules/Makefile b/lib/libpam/static_modules/Makefile index 7a3e8ba5a21a..07a6c6982757 100644 --- a/lib/libpam/static_modules/Makefile +++ b/lib/libpam/static_modules/Makefile @@ -37,6 +37,7 @@ OPENPAM= ${.CURDIR:H:H:H}/contrib/openpam .PATH: ${OPENPAM}/lib +.PATH: ${OPENPAM}/lib/libpam all: From e8f617fd36477ed285f9c5a92f14006e08890b6e Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 16 Oct 2013 16:03:01 +0000 Subject: [PATCH 113/228] We use distrib-dirs to populate stage tree. But that depends on up-to-date passwd and group files in /etc. If MK_INSTALL_AS_USER==yes and we are not root, filter the mtree input to avoid problems with [gu]name and [gu]id settings. --- etc/Makefile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/etc/Makefile b/etc/Makefile index ff8efc512910..0740338410cc 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -307,6 +307,15 @@ distribution: MTREE_CMD?= mtree +.if ${MK_INSTALL_AS_USER} != "no" && ${_uid} != 0 +MTREE_FILTER= sed -e 's,(uname=)[^ ]* ,\1${BINOWN},' \ + -e 's,(gname=)[^ ]* ,\1${BINGRP},' \ + -e 's,(uid=)[^ ]* ,\1${_uid},' \ + -e 's,(gid=)[^ ]* ,\1${_gid},' +.else +MTREE_FILTER= cat +.endif + MTREES= mtree/BSD.root.dist / \ mtree/BSD.var.dist /var \ mtree/BSD.usr.dist /usr \ @@ -333,7 +342,8 @@ distrib-dirs: ${MTREES:N/*} shift; \ ${ECHO} ${MTREE_CMD} -deU ${MTREE_FOLLOWS_SYMLINKS} \ -f $$m -p $$d; \ - ${MTREE_CMD} -deU ${MTREE_FOLLOWS_SYMLINKS} -f $$m -p $$d; \ + ${MTREE_FILTER} $$m | \ + ${MTREE_CMD} -deU ${MTREE_FOLLOWS_SYMLINKS} -p $$d; \ done; true .if defined(NO_ROOT) @set ${MTREES}; \ @@ -346,7 +356,8 @@ distrib-dirs: ${MTREES:N/*} shift; \ ${ECHO} "${MTREE_CMD:N-W} -C -f $$m -K uname,gname | " \ "sed s#^\.#.$$d# | ${METALOG.add}" ; \ - ${MTREE_CMD:N-W} -C -f $$m -K uname,gname | sed s#^\.#.$$d# | \ + ${MTREE_FILTER} $$m | \ + ${MTREE_CMD:N-W} -C -K uname,gname | sed s#^\.#.$$d# | \ ${METALOG.add} ; \ done; true .endif From cb34e2d98bb5e39777fa0a9227a5d63f85230cd9 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 16 Oct 2013 16:05:12 +0000 Subject: [PATCH 114/228] Handle the different expectations of MACHINE_ARCH b/w buildworld etc and dirdeps. --- share/mk/local.sys.mk | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index 6376b948a9e9..2ac427f04de1 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -63,7 +63,20 @@ MACHINE_ARCH_LIST.$m?= ${TARGET_ARCHES_${m}:U$m} MACHINE_ARCH.$m?= ${MACHINE_ARCH_LIST.$m:[1]} BOOT_MACHINE_DIR.$m ?= boot/$m .endfor -MACHINE_ARCH:= ${TARGET_ARCH:U${MACHINE_ARCH.${MACHINE}}} +.ifndef _TARGET_SPEC +.if empty(MACHINE_ARCH) +.if !empty(TARGET_ARCH) +MACHINE_ARCH= ${TARGET_ARCH} +.else +MACHINE_ARCH= ${MACHINE_ARCH.${MACHINE}} +.endif +.endif +MACHINE_ARCH?= ${MACHINE_ARCH.${MACHINE}} +MACHINE_ARCH:= ${MACHINE_ARCH} +.else +# we got here via dirdeps +MACHINE_ARCH:= ${MACHINE_ARCH.${MACHINE}} +.endif .if !defined(_TARGETS) # some things we do only once @@ -206,9 +219,10 @@ CXXFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} # if ld suppored sysroot, this would suffice CFLAGS_LAST+= --sysroot=${STAGE_OBJTOP} .endif -.endif LDFLAGS_LAST+= -Wl,-rpath-link,${STAGE_LIBDIR} STAGED_INCLUDE_DIR= ${STAGE_OBJTOP}/usr/include +.endif + .if ${USE_META:Uyes} == "yes" .include "meta.sys.mk" .endif From 1b1697025bbd7936081fcf3e6e65745a545d2911 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 16 Oct 2013 16:05:49 +0000 Subject: [PATCH 115/228] Make it possible to buildworld, while producing .meta files to aid debugging. --- Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6ba3b058ea01..e9500c7da009 100644 --- a/Makefile +++ b/Makefile @@ -500,11 +500,19 @@ buildLINT: ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT .if defined(.PARSEDIR) -# this makefile does not run in meta mode +# This makefile does not run in meta mode .MAKE.MODE= normal -# make sure things we run from here don't either +# Normally the things we run from here don't either. +# Using -DWITH_META_FILES -DWITHOUT_STAGING +# we can buildworld with meta files created which are useful +# for debugging, but without any of the rest of a meta mode build. +.ifndef WITH_META_FILES WITHOUT_META_MODE= .export WITHOUT_META_MODE +.else +UPDATE_DEPENDFILE=NO +.export UPDATE_DEPENDFILE +.endif .if make(universe) # we do not want a failure of one branch abort all. From 09127a36371d5f5ac109ad1063e7fe53ee9bf356 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 17 Oct 2013 19:59:51 +0000 Subject: [PATCH 116/228] New/updated dependencies --- bin/freebsd-version/Makefile.depend | 12 +++ lib/libc++/Makefile.depend | 37 +++++++ lib/libcxxrt/Makefile.depend | 18 ++++ lib/libiconv_modules/BIG5/Makefile.depend | 14 +++ lib/libiconv_modules/DECHanyu/Makefile.depend | 14 +++ lib/libiconv_modules/EUC/Makefile.depend | 14 +++ lib/libiconv_modules/EUCTW/Makefile.depend | 14 +++ lib/libiconv_modules/GBK2K/Makefile.depend | 14 +++ lib/libiconv_modules/HZ/Makefile.depend | 14 +++ lib/libiconv_modules/ISO2022/Makefile.depend | 14 +++ lib/libiconv_modules/JOHAB/Makefile.depend | 14 +++ lib/libiconv_modules/MSKanji/Makefile.depend | 14 +++ lib/libiconv_modules/UES/Makefile.depend | 14 +++ lib/libiconv_modules/UTF1632/Makefile.depend | 14 +++ lib/libiconv_modules/UTF7/Makefile.depend | 14 +++ lib/libiconv_modules/UTF8/Makefile.depend | 14 +++ lib/libiconv_modules/VIQR/Makefile.depend | 14 +++ lib/libiconv_modules/ZW/Makefile.depend | 14 +++ .../iconv_none/Makefile.depend | 14 +++ .../iconv_std/Makefile.depend | 14 +++ .../mapper_646/Makefile.depend | 14 +++ .../mapper_none/Makefile.depend | 14 +++ .../mapper_parallel/Makefile.depend | 14 +++ .../mapper_serial/Makefile.depend | 14 +++ .../mapper_std/Makefile.depend | 14 +++ .../mapper_zone/Makefile.depend | 14 +++ lib/libsmb/Makefile.depend | 10 +- lib/libvmmapi/Makefile.depend | 19 ++++ pkgs/pseudo/bin/Makefile.depend | 1 + pkgs/pseudo/cddl/Makefile.depend | 1 + pkgs/pseudo/gnu/Makefile.depend | 41 +++---- pkgs/pseudo/kerberos5/Makefile.depend | 20 ++-- pkgs/pseudo/lib/Makefile.depend | 100 +++++++++++------- pkgs/pseudo/libexec/Makefile.depend | 2 +- pkgs/pseudo/sbin/Makefile.depend | 4 +- pkgs/pseudo/secure/Makefile.depend | 3 +- pkgs/pseudo/share/Makefile.depend | 54 ++++++++-- pkgs/pseudo/the-lot/Makefile.depend | 1 - share/i18n/csmapper/APPLE/Makefile.depend | 4 +- share/i18n/csmapper/AST/Makefile.depend | 4 +- share/i18n/csmapper/BIG5/Makefile.depend | 4 +- share/i18n/csmapper/CNS/Makefile.depend | 4 +- share/i18n/csmapper/CP/Makefile.depend | 4 +- share/i18n/csmapper/EBCDIC/Makefile.depend | 4 +- share/i18n/csmapper/GB/Makefile.depend | 4 +- share/i18n/csmapper/GEORGIAN/Makefile.depend | 4 +- share/i18n/csmapper/ISO-8859/Makefile.depend | 4 +- share/i18n/csmapper/ISO646/Makefile.depend | 2 - share/i18n/csmapper/JIS/Makefile.depend | 4 +- share/i18n/csmapper/KAZAKH/Makefile.depend | 4 +- share/i18n/csmapper/KOI/Makefile.depend | 4 +- share/i18n/csmapper/KS/Makefile.depend | 4 +- share/i18n/csmapper/MISC/Makefile.depend | 4 +- share/i18n/csmapper/Makefile.depend | 29 +++++ share/i18n/csmapper/TCVN/Makefile.depend | 4 +- share/i18n/esdb/APPLE/Makefile.depend | 13 +++ share/i18n/esdb/AST/Makefile.depend | 13 +++ share/i18n/esdb/BIG5/Makefile.depend | 13 +++ share/i18n/esdb/CP/Makefile.depend | 13 +++ share/i18n/esdb/DEC/Makefile.depend | 13 +++ share/i18n/esdb/EBCDIC/Makefile.depend | 13 +++ share/i18n/esdb/EUC/Makefile.depend | 13 +++ share/i18n/esdb/GB/Makefile.depend | 13 +++ share/i18n/esdb/GEORGIAN/Makefile.depend | 13 +++ share/i18n/esdb/ISO-2022/Makefile.depend | 13 +++ share/i18n/esdb/ISO-8859/Makefile.depend | 13 +++ share/i18n/esdb/ISO646/Makefile.depend | 13 +++ share/i18n/esdb/KAZAKH/Makefile.depend | 13 +++ share/i18n/esdb/KOI/Makefile.depend | 13 +++ share/i18n/esdb/MISC/Makefile.depend | 13 +++ share/i18n/esdb/Makefile.depend | 30 ++++++ share/i18n/esdb/TCVN/Makefile.depend | 13 +++ share/i18n/esdb/UTF/Makefile.depend | 13 +++ usr.bin/mkcsmapper_static/Makefile.depend | 3 +- 74 files changed, 851 insertions(+), 139 deletions(-) create mode 100644 bin/freebsd-version/Makefile.depend create mode 100644 lib/libc++/Makefile.depend create mode 100644 lib/libcxxrt/Makefile.depend create mode 100644 lib/libiconv_modules/BIG5/Makefile.depend create mode 100644 lib/libiconv_modules/DECHanyu/Makefile.depend create mode 100644 lib/libiconv_modules/EUC/Makefile.depend create mode 100644 lib/libiconv_modules/EUCTW/Makefile.depend create mode 100644 lib/libiconv_modules/GBK2K/Makefile.depend create mode 100644 lib/libiconv_modules/HZ/Makefile.depend create mode 100644 lib/libiconv_modules/ISO2022/Makefile.depend create mode 100644 lib/libiconv_modules/JOHAB/Makefile.depend create mode 100644 lib/libiconv_modules/MSKanji/Makefile.depend create mode 100644 lib/libiconv_modules/UES/Makefile.depend create mode 100644 lib/libiconv_modules/UTF1632/Makefile.depend create mode 100644 lib/libiconv_modules/UTF7/Makefile.depend create mode 100644 lib/libiconv_modules/UTF8/Makefile.depend create mode 100644 lib/libiconv_modules/VIQR/Makefile.depend create mode 100644 lib/libiconv_modules/ZW/Makefile.depend create mode 100644 lib/libiconv_modules/iconv_none/Makefile.depend create mode 100644 lib/libiconv_modules/iconv_std/Makefile.depend create mode 100644 lib/libiconv_modules/mapper_646/Makefile.depend create mode 100644 lib/libiconv_modules/mapper_none/Makefile.depend create mode 100644 lib/libiconv_modules/mapper_parallel/Makefile.depend create mode 100644 lib/libiconv_modules/mapper_serial/Makefile.depend create mode 100644 lib/libiconv_modules/mapper_std/Makefile.depend create mode 100644 lib/libiconv_modules/mapper_zone/Makefile.depend create mode 100644 lib/libvmmapi/Makefile.depend create mode 100644 share/i18n/csmapper/Makefile.depend create mode 100644 share/i18n/esdb/APPLE/Makefile.depend create mode 100644 share/i18n/esdb/AST/Makefile.depend create mode 100644 share/i18n/esdb/BIG5/Makefile.depend create mode 100644 share/i18n/esdb/CP/Makefile.depend create mode 100644 share/i18n/esdb/DEC/Makefile.depend create mode 100644 share/i18n/esdb/EBCDIC/Makefile.depend create mode 100644 share/i18n/esdb/EUC/Makefile.depend create mode 100644 share/i18n/esdb/GB/Makefile.depend create mode 100644 share/i18n/esdb/GEORGIAN/Makefile.depend create mode 100644 share/i18n/esdb/ISO-2022/Makefile.depend create mode 100644 share/i18n/esdb/ISO-8859/Makefile.depend create mode 100644 share/i18n/esdb/ISO646/Makefile.depend create mode 100644 share/i18n/esdb/KAZAKH/Makefile.depend create mode 100644 share/i18n/esdb/KOI/Makefile.depend create mode 100644 share/i18n/esdb/MISC/Makefile.depend create mode 100644 share/i18n/esdb/Makefile.depend create mode 100644 share/i18n/esdb/TCVN/Makefile.depend create mode 100644 share/i18n/esdb/UTF/Makefile.depend diff --git a/bin/freebsd-version/Makefile.depend b/bin/freebsd-version/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/bin/freebsd-version/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libc++/Makefile.depend b/lib/libc++/Makefile.depend new file mode 100644 index 000000000000..200d684cda1a --- /dev/null +++ b/lib/libc++/Makefile.depend @@ -0,0 +1,37 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/msun \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +cxxrt_auxhelper.o: cxxrt_auxhelper.cc +cxxrt_auxhelper.po: cxxrt_auxhelper.cc +cxxrt_dynamic_cast.o: cxxrt_dynamic_cast.cc +cxxrt_dynamic_cast.po: cxxrt_dynamic_cast.cc +cxxrt_exception.o: cxxrt_exception.cc +cxxrt_exception.po: cxxrt_exception.cc +cxxrt_guard.o: cxxrt_guard.cc +cxxrt_guard.po: cxxrt_guard.cc +cxxrt_libelftc_dem_gnu3.o: cxxrt_libelftc_dem_gnu3.c +cxxrt_libelftc_dem_gnu3.po: cxxrt_libelftc_dem_gnu3.c +cxxrt_memory.o: cxxrt_memory.cc +cxxrt_memory.po: cxxrt_memory.cc +cxxrt_stdexcept.o: cxxrt_stdexcept.cc +cxxrt_stdexcept.po: cxxrt_stdexcept.cc +cxxrt_terminate.o: cxxrt_terminate.cc +cxxrt_terminate.po: cxxrt_terminate.cc +cxxrt_typeinfo.o: cxxrt_typeinfo.cc +cxxrt_typeinfo.po: cxxrt_typeinfo.cc +.endif diff --git a/lib/libcxxrt/Makefile.depend b/lib/libcxxrt/Makefile.depend new file mode 100644 index 000000000000..65ce5679ccda --- /dev/null +++ b/lib/libcxxrt/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/BIG5/Makefile.depend b/lib/libiconv_modules/BIG5/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/BIG5/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/DECHanyu/Makefile.depend b/lib/libiconv_modules/DECHanyu/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/DECHanyu/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/EUC/Makefile.depend b/lib/libiconv_modules/EUC/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/EUC/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/EUCTW/Makefile.depend b/lib/libiconv_modules/EUCTW/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/EUCTW/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/GBK2K/Makefile.depend b/lib/libiconv_modules/GBK2K/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/GBK2K/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/HZ/Makefile.depend b/lib/libiconv_modules/HZ/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/HZ/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/ISO2022/Makefile.depend b/lib/libiconv_modules/ISO2022/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/ISO2022/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/JOHAB/Makefile.depend b/lib/libiconv_modules/JOHAB/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/JOHAB/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/MSKanji/Makefile.depend b/lib/libiconv_modules/MSKanji/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/MSKanji/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/UES/Makefile.depend b/lib/libiconv_modules/UES/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/UES/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/UTF1632/Makefile.depend b/lib/libiconv_modules/UTF1632/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/UTF1632/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/UTF7/Makefile.depend b/lib/libiconv_modules/UTF7/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/UTF7/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/UTF8/Makefile.depend b/lib/libiconv_modules/UTF8/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/UTF8/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/VIQR/Makefile.depend b/lib/libiconv_modules/VIQR/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/VIQR/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/ZW/Makefile.depend b/lib/libiconv_modules/ZW/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/ZW/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/iconv_none/Makefile.depend b/lib/libiconv_modules/iconv_none/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/iconv_none/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/iconv_std/Makefile.depend b/lib/libiconv_modules/iconv_std/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/iconv_std/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/mapper_646/Makefile.depend b/lib/libiconv_modules/mapper_646/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/mapper_646/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/mapper_none/Makefile.depend b/lib/libiconv_modules/mapper_none/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/mapper_none/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/mapper_parallel/Makefile.depend b/lib/libiconv_modules/mapper_parallel/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/mapper_parallel/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/mapper_serial/Makefile.depend b/lib/libiconv_modules/mapper_serial/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/mapper_serial/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/mapper_std/Makefile.depend b/lib/libiconv_modules/mapper_std/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/mapper_std/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libiconv_modules/mapper_zone/Makefile.depend b/lib/libiconv_modules/mapper_zone/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libiconv_modules/mapper_zone/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libsmb/Makefile.depend b/lib/libsmb/Makefile.depend index 29fda55c252f..fc61e1a87937 100644 --- a/lib/libsmb/Makefile.depend +++ b/lib/libsmb/Makefile.depend @@ -2,9 +2,15 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libkiconv \ .include diff --git a/lib/libvmmapi/Makefile.depend b/lib/libvmmapi/Makefile.depend new file mode 100644 index 000000000000..afbe02588041 --- /dev/null +++ b/lib/libvmmapi/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libutil \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/pkgs/pseudo/bin/Makefile.depend b/pkgs/pseudo/bin/Makefile.depend index e94e9c378f3c..6bd567f3155b 100644 --- a/pkgs/pseudo/bin/Makefile.depend +++ b/pkgs/pseudo/bin/Makefile.depend @@ -18,6 +18,7 @@ DIRDEPS = \ bin/echo \ bin/ed \ bin/expr \ + bin/freebsd-version \ bin/getfacl \ bin/hostname \ bin/kenv \ diff --git a/pkgs/pseudo/cddl/Makefile.depend b/pkgs/pseudo/cddl/Makefile.depend index ad0f9f373d6e..07552d724d47 100644 --- a/pkgs/pseudo/cddl/Makefile.depend +++ b/pkgs/pseudo/cddl/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ cddl/lib/libumem \ cddl/lib/libuutil \ cddl/lib/libzfs \ + cddl/lib/libzfs_core \ cddl/lib/libzpool \ cddl/sbin/zfs \ cddl/sbin/zpool \ diff --git a/pkgs/pseudo/gnu/Makefile.depend b/pkgs/pseudo/gnu/Makefile.depend index 7f18a63d0ac2..a95692b8b58e 100644 --- a/pkgs/pseudo/gnu/Makefile.depend +++ b/pkgs/pseudo/gnu/Makefile.depend @@ -6,24 +6,25 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ gnu/lib/csu \ + gnu/lib/libdialog \ gnu/lib/libgcc \ gnu/lib/libgcov \ - gnu/lib/libdialog \ gnu/lib/libgomp \ - gnu/lib/libregex/doc \ gnu/lib/libreadline/history/doc \ gnu/lib/libreadline/readline/doc \ + gnu/lib/libregex/doc \ gnu/lib/libssp/libssp_nonshared \ gnu/lib/libstdc++ \ gnu/lib/libsupc++ \ - gnu/usr.bin/binutils/libiberty \ - gnu/usr.bin/binutils/libbfd \ - gnu/usr.bin/binutils/libopcodes \ - gnu/usr.bin/binutils/libbinutils \ gnu/usr.bin/binutils/addr2line \ gnu/usr.bin/binutils/ar \ gnu/usr.bin/binutils/as \ + gnu/usr.bin/binutils/doc \ gnu/usr.bin/binutils/ld \ + gnu/usr.bin/binutils/libbfd \ + gnu/usr.bin/binutils/libbinutils \ + gnu/usr.bin/binutils/libiberty \ + gnu/usr.bin/binutils/libopcodes \ gnu/usr.bin/binutils/nm \ gnu/usr.bin/binutils/objcopy \ gnu/usr.bin/binutils/objdump \ @@ -32,22 +33,15 @@ DIRDEPS = \ gnu/usr.bin/binutils/size \ gnu/usr.bin/binutils/strings \ gnu/usr.bin/binutils/strip \ - gnu/usr.bin/binutils/doc \ - gnu/usr.bin/cvs/lib \ - gnu/usr.bin/cvs/libdiff \ - gnu/usr.bin/cvs/cvs \ - gnu/usr.bin/cvs/contrib \ - gnu/usr.bin/cvs/cvsbug \ - gnu/usr.bin/cvs/doc \ gnu/usr.bin/dialog \ gnu/usr.bin/diff/doc \ gnu/usr.bin/diff3 \ gnu/usr.bin/gdb/doc \ - gnu/usr.bin/gdb/libgdb \ gnu/usr.bin/gdb/gdb \ + gnu/usr.bin/gdb/gdbserver \ gnu/usr.bin/gdb/gdbtui \ gnu/usr.bin/gdb/kgdb \ - gnu/usr.bin/gdb/gdbserver \ + gnu/usr.bin/gdb/libgdb \ gnu/usr.bin/gperf/doc \ gnu/usr.bin/grep/doc \ gnu/usr.bin/groff/contrib/mm \ @@ -67,15 +61,15 @@ DIRDEPS = \ gnu/usr.bin/groff/font/devps \ gnu/usr.bin/groff/font/devutf8 \ gnu/usr.bin/groff/man \ - gnu/usr.bin/groff/src/libs/libgroff \ - gnu/usr.bin/groff/src/libs/libdriver \ - gnu/usr.bin/groff/src/libs/libbib \ gnu/usr.bin/groff/src/devices/grodvi \ gnu/usr.bin/groff/src/devices/grohtml \ gnu/usr.bin/groff/src/devices/grolbp \ gnu/usr.bin/groff/src/devices/grolj4 \ gnu/usr.bin/groff/src/devices/grops \ gnu/usr.bin/groff/src/devices/grotty \ + gnu/usr.bin/groff/src/libs/libbib \ + gnu/usr.bin/groff/src/libs/libdriver \ + gnu/usr.bin/groff/src/libs/libgroff \ gnu/usr.bin/groff/src/preproc/eqn \ gnu/usr.bin/groff/src/preproc/grn \ gnu/usr.bin/groff/src/preproc/html \ @@ -97,27 +91,26 @@ DIRDEPS = \ gnu/usr.bin/groff/src/utils/pfbtops \ gnu/usr.bin/groff/src/utils/tfmtodit \ gnu/usr.bin/groff/tmac \ - gnu/usr.bin/patch \ - gnu/usr.bin/rcs/lib \ gnu/usr.bin/rcs/ci \ gnu/usr.bin/rcs/co \ gnu/usr.bin/rcs/ident \ + gnu/usr.bin/rcs/lib \ gnu/usr.bin/rcs/merge \ gnu/usr.bin/rcs/rcs \ gnu/usr.bin/rcs/rcsclean \ gnu/usr.bin/rcs/rcsdiff \ + gnu/usr.bin/rcs/rcsfreeze \ gnu/usr.bin/rcs/rcsmerge \ gnu/usr.bin/rcs/rlog \ - gnu/usr.bin/rcs/rcsfreeze \ gnu/usr.bin/sdiff \ gnu/usr.bin/send-pr/doc \ - gnu/usr.bin/texinfo/libtxi \ - gnu/usr.bin/texinfo/makeinfo \ + gnu/usr.bin/texinfo/doc \ gnu/usr.bin/texinfo/info \ gnu/usr.bin/texinfo/infokey \ gnu/usr.bin/texinfo/install-info \ + gnu/usr.bin/texinfo/libtxi \ + gnu/usr.bin/texinfo/makeinfo \ gnu/usr.bin/texinfo/texindex \ - gnu/usr.bin/texinfo/doc \ .include diff --git a/pkgs/pseudo/kerberos5/Makefile.depend b/pkgs/pseudo/kerberos5/Makefile.depend index 525755d97bdc..fe1a4886f624 100644 --- a/pkgs/pseudo/kerberos5/Makefile.depend +++ b/pkgs/pseudo/kerberos5/Makefile.depend @@ -11,42 +11,42 @@ DIRDEPS = \ kerberos5/lib/libgssapi_ntlm \ kerberos5/lib/libgssapi_spnego \ kerberos5/lib/libhdb \ + kerberos5/lib/libheimbase \ + kerberos5/lib/libheimipcc \ + kerberos5/lib/libheimipcs \ kerberos5/lib/libheimntlm \ + kerberos5/lib/libheimsqlite \ kerberos5/lib/libhx509 \ kerberos5/lib/libkadm5clnt \ kerberos5/lib/libkadm5srv \ kerberos5/lib/libkafs5 \ + kerberos5/lib/libkdc \ kerberos5/lib/libkrb5 \ kerberos5/lib/libroken \ kerberos5/lib/libsl \ kerberos5/lib/libvers \ - kerberos5/lib/libkdc \ kerberos5/lib/libwind \ - kerberos5/lib/libheimsqlite \ - kerberos5/lib/libheimbase \ - kerberos5/lib/libheimipcc \ - kerberos5/lib/libheimipcs \ kerberos5/libexec/digest-service \ - kerberos5/libexec/ipropd-master \ - kerberos5/libexec/ipropd-slave \ kerberos5/libexec/hprop \ kerberos5/libexec/hpropd \ + kerberos5/libexec/ipropd-master \ + kerberos5/libexec/ipropd-slave \ kerberos5/libexec/kadmind \ + kerberos5/libexec/kcm \ kerberos5/libexec/kdc \ kerberos5/libexec/kdigest \ kerberos5/libexec/kfd \ kerberos5/libexec/kimpersonate \ kerberos5/libexec/kpasswdd \ - kerberos5/libexec/kcm \ - kerberos5/tools/make-roken \ kerberos5/tools/asn1_compile \ + kerberos5/tools/make-roken \ kerberos5/tools/slc \ kerberos5/usr.bin/hxtool \ kerberos5/usr.bin/kadmin \ kerberos5/usr.bin/kcc \ kerberos5/usr.bin/kdestroy \ - kerberos5/usr.bin/kgetcred \ kerberos5/usr.bin/kf \ + kerberos5/usr.bin/kgetcred \ kerberos5/usr.bin/kinit \ kerberos5/usr.bin/kpasswd \ kerberos5/usr.bin/krb5-config \ diff --git a/pkgs/pseudo/lib/Makefile.depend b/pkgs/pseudo/lib/Makefile.depend index ff61cfb802bc..756ac3d477c7 100644 --- a/pkgs/pseudo/lib/Makefile.depend +++ b/pkgs/pseudo/lib/Makefile.depend @@ -6,31 +6,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ lib/${CSU_DIR} \ - lib/libc \ - lib/libbsm \ - lib/libauditd \ - lib/libcompiler_rt \ - lib/libcrypt \ - lib/libelf \ - lib/libkvm \ - lib/msun \ - lib/libmd \ - lib/ncurses/ncurses \ - lib/ncurses/form \ - lib/ncurses/menu \ - lib/ncurses/panel \ - lib/ncurses/ncursesw \ - lib/ncurses/formw \ - lib/ncurses/menuw \ - lib/ncurses/panelw \ - lib/libnetgraph \ - lib/libradius \ - lib/librpcsvc \ - lib/libsbuf \ - lib/libtacplus \ - lib/libutil \ - lib/libypclnt \ - lib/libcom_err/doc \ + lib/atf/libatf-c \ + lib/atf/libatf-c++ \ lib/libalias/libalias \ lib/libalias/modules/cuseeme \ lib/libalias/modules/dummy \ @@ -41,37 +18,73 @@ DIRDEPS = \ lib/libalias/modules/skinny \ lib/libalias/modules/smedia \ lib/libarchive \ + lib/libauditd \ lib/libbegemot \ lib/libblocksruntime \ lib/libbluetooth \ + lib/libbsm \ lib/libbsnmp/libbsnmp \ lib/libbz2 \ + lib/libc \ + lib/libc++ \ lib/libcalendar \ lib/libcam \ + lib/libcom_err/doc \ lib/libcompat \ + lib/libcompiler_rt \ + lib/libcrypt \ + lib/libcxxrt \ lib/libdevinfo \ lib/libdevstat \ - lib/libdisk \ lib/libdwarf \ lib/libedit/edit/readline \ + lib/libelf \ + lib/libexecinfo \ lib/libexpat \ lib/libfetch \ lib/libgeom \ lib/libgpib \ lib/libgssapi \ - lib/librpcsec_gss \ + lib/libiconv_modules/BIG5 \ + lib/libiconv_modules/DECHanyu \ + lib/libiconv_modules/EUC \ + lib/libiconv_modules/EUCTW \ + lib/libiconv_modules/GBK2K \ + lib/libiconv_modules/HZ \ + lib/libiconv_modules/ISO2022 \ + lib/libiconv_modules/JOHAB \ + lib/libiconv_modules/MSKanji \ + lib/libiconv_modules/UES \ + lib/libiconv_modules/UTF1632 \ + lib/libiconv_modules/UTF7 \ + lib/libiconv_modules/UTF8 \ + lib/libiconv_modules/VIQR \ + lib/libiconv_modules/ZW \ + lib/libiconv_modules/iconv_none \ + lib/libiconv_modules/iconv_std \ + lib/libiconv_modules/mapper_646 \ + lib/libiconv_modules/mapper_none \ + lib/libiconv_modules/mapper_parallel \ + lib/libiconv_modules/mapper_serial \ + lib/libiconv_modules/mapper_std \ + lib/libiconv_modules/mapper_zone \ lib/libipsec \ lib/libipx \ lib/libjail \ lib/libkiconv \ + lib/libkvm \ + lib/libldns \ lib/liblzma \ lib/libmagic \ lib/libmandoc \ + lib/libmd \ lib/libmemstat \ lib/libmilter \ lib/libmp \ + lib/libnetgraph \ lib/libngatm \ lib/libopie \ + lib/libpam/libpam \ lib/libpam/modules/pam_chroot \ lib/libpam/modules/pam_deny \ lib/libpam/modules/pam_echo \ @@ -96,40 +109,51 @@ DIRDEPS = \ lib/libpam/modules/pam_ssh \ lib/libpam/modules/pam_tacplus \ lib/libpam/modules/pam_unix \ - lib/libpam/libpam \ lib/libpcap \ lib/libpmc \ lib/libproc \ - lib/libprocstat/zfs \ + lib/libprocstat \ + lib/libradius \ + lib/librpcsec_gss \ + lib/librpcsvc \ lib/librt \ lib/librtld_db \ + lib/libsbuf \ lib/libsdp \ lib/libsm \ + lib/libsmb \ lib/libsmdb \ lib/libsmutil \ lib/libstand \ lib/libstdbuf \ lib/libstdthreads \ + lib/libtacplus \ lib/libtelnet \ lib/libthr \ lib/libthread_db \ lib/libufs \ lib/libugidfw \ lib/libulog \ - lib/libusbhid \ + lib/libunbound \ lib/libusb \ + lib/libusbhid \ + lib/libutil \ lib/libvgl \ + lib/libvmmapi \ lib/libwrap \ lib/liby \ + lib/libyaml \ + lib/libypclnt \ lib/libz \ - lib/atf/libatf-c \ - lib/atf/libatf-c++ \ - lib/bind/isc \ - lib/bind/isccc \ - lib/bind/dns \ - lib/bind/isccfg \ - lib/bind/bind9 \ - lib/bind/lwres \ + lib/msun \ + lib/ncurses/form \ + lib/ncurses/formw \ + lib/ncurses/menu \ + lib/ncurses/menuw \ + lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ + lib/ncurses/panel \ + lib/ncurses/panelw \ .include diff --git a/pkgs/pseudo/libexec/Makefile.depend b/pkgs/pseudo/libexec/Makefile.depend index 161dcffad22b..cb3866817eb5 100644 --- a/pkgs/pseudo/libexec/Makefile.depend +++ b/pkgs/pseudo/libexec/Makefile.depend @@ -32,8 +32,8 @@ DIRDEPS = \ libexec/talkd \ libexec/tcpd \ libexec/telnetd \ - libexec/tftpd \ libexec/tftp-proxy \ + libexec/tftpd \ libexec/ulog-helper \ libexec/ypxfr \ diff --git a/pkgs/pseudo/sbin/Makefile.depend b/pkgs/pseudo/sbin/Makefile.depend index 127876d40a53..b2ee99f2fec3 100644 --- a/pkgs/pseudo/sbin/Makefile.depend +++ b/pkgs/pseudo/sbin/Makefile.depend @@ -30,7 +30,6 @@ DIRDEPS = \ sbin/fsdb \ sbin/fsirand \ sbin/gbde \ - sbin/geom/core \ sbin/geom/class/cache \ sbin/geom/class/concat \ sbin/geom/class/eli \ @@ -47,6 +46,7 @@ DIRDEPS = \ sbin/geom/class/shsec \ sbin/geom/class/stripe \ sbin/geom/class/virstor \ + sbin/geom/core \ sbin/ggate/ggatec \ sbin/ggate/ggated \ sbin/ggate/ggatel \ @@ -56,7 +56,6 @@ DIRDEPS = \ sbin/hastd \ sbin/ifconfig \ sbin/init \ - sbin/ipf/libipf \ sbin/ipf/ipf \ sbin/ipf/ipfs \ sbin/ipf/ipfstat \ @@ -65,6 +64,7 @@ DIRDEPS = \ sbin/ipf/ipnat \ sbin/ipf/ippool \ sbin/ipf/ipresend \ + sbin/ipf/libipf \ sbin/ipfw \ sbin/iscontrol \ sbin/kldconfig \ diff --git a/pkgs/pseudo/secure/Makefile.depend b/pkgs/pseudo/secure/Makefile.depend index 803430d0d83c..ab046f022697 100644 --- a/pkgs/pseudo/secure/Makefile.depend +++ b/pkgs/pseudo/secure/Makefile.depend @@ -5,6 +5,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + secure/lib/libcrypto \ secure/lib/libcrypto/engines/lib4758cca \ secure/lib/libcrypto/engines/libaep \ secure/lib/libcrypto/engines/libatalla \ @@ -14,8 +15,8 @@ DIRDEPS = \ secure/lib/libcrypto/engines/libnuron \ secure/lib/libcrypto/engines/libsureware \ secure/lib/libcrypto/engines/libubsec \ - secure/lib/libssl \ secure/lib/libssh \ + secure/lib/libssl \ secure/libexec/sftp-server \ secure/libexec/ssh-keysign \ secure/libexec/ssh-pkcs11-helper \ diff --git a/pkgs/pseudo/share/Makefile.depend b/pkgs/pseudo/share/Makefile.depend index 17107fd60d55..058dfd4685b8 100644 --- a/pkgs/pseudo/share/Makefile.depend +++ b/pkgs/pseudo/share/Makefile.depend @@ -5,13 +5,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - share/info \ share/atf \ share/colldef \ share/dict \ share/doc/IPv6 \ share/doc/atf \ - share/doc/bind9 \ share/doc/legal/intel_ipw \ share/doc/legal/intel_iwi \ share/doc/legal/intel_iwn \ @@ -32,8 +30,6 @@ DIRDEPS = \ share/doc/papers/relengr \ share/doc/papers/sysperf \ share/doc/papers/timecounter \ - share/doc/psd/title \ - share/doc/psd/contents \ share/doc/psd/01.cacm \ share/doc/psd/02.implement \ share/doc/psd/03.iosys \ @@ -55,9 +51,8 @@ DIRDEPS = \ share/doc/psd/25.xdrrfc \ share/doc/psd/26.rpcrfc \ share/doc/psd/27.nfsrpc \ - share/doc/psd/28.cvs \ - share/doc/smm/title \ - share/doc/smm/contents \ + share/doc/psd/contents \ + share/doc/psd/title \ share/doc/smm/01.setup \ share/doc/smm/02.config \ share/doc/smm/03.fsck \ @@ -69,8 +64,8 @@ DIRDEPS = \ share/doc/smm/11.timedop \ share/doc/smm/12.timed \ share/doc/smm/18.net \ - share/doc/usd/title \ - share/doc/usd/contents \ + share/doc/smm/contents \ + share/doc/smm/title \ share/doc/usd/04.csh \ share/doc/usd/05.dc \ share/doc/usd/06.bc \ @@ -78,19 +73,57 @@ DIRDEPS = \ share/doc/usd/10.exref/exref \ share/doc/usd/10.exref/summary \ share/doc/usd/11.vitut \ + share/doc/usd/12.vi/summary \ share/doc/usd/12.vi/vi \ share/doc/usd/12.vi/viapwh \ - share/doc/usd/12.vi/summary \ share/doc/usd/13.viref \ share/doc/usd/18.msdiffs \ share/doc/usd/19.memacros \ share/doc/usd/20.meref \ share/doc/usd/21.troff \ share/doc/usd/22.trofftut \ + share/doc/usd/contents \ + share/doc/usd/title \ share/dtrace/toolkit \ share/examples/atf \ share/examples/ipfilter \ share/examples/pf \ + share/i18n/csmapper \ + share/i18n/csmapper/APPLE \ + share/i18n/csmapper/AST \ + share/i18n/csmapper/BIG5 \ + share/i18n/csmapper/CNS \ + share/i18n/csmapper/CP \ + share/i18n/csmapper/EBCDIC \ + share/i18n/csmapper/GB \ + share/i18n/csmapper/GEORGIAN \ + share/i18n/csmapper/ISO-8859 \ + share/i18n/csmapper/ISO646 \ + share/i18n/csmapper/JIS \ + share/i18n/csmapper/KAZAKH \ + share/i18n/csmapper/KOI \ + share/i18n/csmapper/KS \ + share/i18n/csmapper/MISC \ + share/i18n/csmapper/TCVN \ + share/i18n/esdb \ + share/i18n/esdb/APPLE \ + share/i18n/esdb/AST \ + share/i18n/esdb/BIG5 \ + share/i18n/esdb/CP \ + share/i18n/esdb/DEC \ + share/i18n/esdb/EBCDIC \ + share/i18n/esdb/EUC \ + share/i18n/esdb/GB \ + share/i18n/esdb/GEORGIAN \ + share/i18n/esdb/ISO-2022 \ + share/i18n/esdb/ISO-8859 \ + share/i18n/esdb/ISO646 \ + share/i18n/esdb/KAZAKH \ + share/i18n/esdb/KOI \ + share/i18n/esdb/MISC \ + share/i18n/esdb/TCVN \ + share/i18n/esdb/UTF \ + share/info \ share/man/man1 \ share/man/man3 \ share/man/man4 \ @@ -101,7 +134,6 @@ DIRDEPS = \ share/man/man9 \ share/me \ share/misc \ - share/mk \ share/mklocale \ share/monetdef \ share/msgdef \ diff --git a/pkgs/pseudo/the-lot/Makefile.depend b/pkgs/pseudo/the-lot/Makefile.depend index 589f9c2b0a7a..0b53ddf9b93a 100644 --- a/pkgs/pseudo/the-lot/Makefile.depend +++ b/pkgs/pseudo/the-lot/Makefile.depend @@ -10,5 +10,4 @@ DIRDEPS = \ pkgs/pseudo/toolchain.host \ pkgs/pseudo/userland \ - .include diff --git a/share/i18n/csmapper/APPLE/Makefile.depend b/share/i18n/csmapper/APPLE/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/APPLE/Makefile.depend +++ b/share/i18n/csmapper/APPLE/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/AST/Makefile.depend b/share/i18n/csmapper/AST/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/AST/Makefile.depend +++ b/share/i18n/csmapper/AST/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/BIG5/Makefile.depend b/share/i18n/csmapper/BIG5/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/BIG5/Makefile.depend +++ b/share/i18n/csmapper/BIG5/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/CNS/Makefile.depend b/share/i18n/csmapper/CNS/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/CNS/Makefile.depend +++ b/share/i18n/csmapper/CNS/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/CP/Makefile.depend b/share/i18n/csmapper/CP/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/CP/Makefile.depend +++ b/share/i18n/csmapper/CP/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/EBCDIC/Makefile.depend b/share/i18n/csmapper/EBCDIC/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/EBCDIC/Makefile.depend +++ b/share/i18n/csmapper/EBCDIC/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/GB/Makefile.depend b/share/i18n/csmapper/GB/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/GB/Makefile.depend +++ b/share/i18n/csmapper/GB/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/GEORGIAN/Makefile.depend b/share/i18n/csmapper/GEORGIAN/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/GEORGIAN/Makefile.depend +++ b/share/i18n/csmapper/GEORGIAN/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/ISO-8859/Makefile.depend b/share/i18n/csmapper/ISO-8859/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/ISO-8859/Makefile.depend +++ b/share/i18n/csmapper/ISO-8859/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/ISO646/Makefile.depend b/share/i18n/csmapper/ISO646/Makefile.depend index 29fda55c252f..57b7e10c3d71 100644 --- a/share/i18n/csmapper/ISO646/Makefile.depend +++ b/share/i18n/csmapper/ISO646/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ diff --git a/share/i18n/csmapper/JIS/Makefile.depend b/share/i18n/csmapper/JIS/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/JIS/Makefile.depend +++ b/share/i18n/csmapper/JIS/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/KAZAKH/Makefile.depend b/share/i18n/csmapper/KAZAKH/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/KAZAKH/Makefile.depend +++ b/share/i18n/csmapper/KAZAKH/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/KOI/Makefile.depend b/share/i18n/csmapper/KOI/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/KOI/Makefile.depend +++ b/share/i18n/csmapper/KOI/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/KS/Makefile.depend b/share/i18n/csmapper/KS/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/KS/Makefile.depend +++ b/share/i18n/csmapper/KS/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/MISC/Makefile.depend b/share/i18n/csmapper/MISC/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/MISC/Makefile.depend +++ b/share/i18n/csmapper/MISC/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/csmapper/Makefile.depend b/share/i18n/csmapper/Makefile.depend new file mode 100644 index 000000000000..4a9b02081784 --- /dev/null +++ b/share/i18n/csmapper/Makefile.depend @@ -0,0 +1,29 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + share/i18n/csmapper/APPLE \ + share/i18n/csmapper/AST \ + share/i18n/csmapper/BIG5 \ + share/i18n/csmapper/CNS \ + share/i18n/csmapper/CP \ + share/i18n/csmapper/EBCDIC \ + share/i18n/csmapper/GB \ + share/i18n/csmapper/GEORGIAN \ + share/i18n/csmapper/ISO-8859 \ + share/i18n/csmapper/ISO646 \ + share/i18n/csmapper/JIS \ + share/i18n/csmapper/KAZAKH \ + share/i18n/csmapper/KOI \ + share/i18n/csmapper/KS \ + share/i18n/csmapper/MISC \ + share/i18n/csmapper/TCVN \ + usr.bin/mkcsmapper_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/csmapper/TCVN/Makefile.depend b/share/i18n/csmapper/TCVN/Makefile.depend index 8b6d5ba3e6e9..e914153843a8 100644 --- a/share/i18n/csmapper/TCVN/Makefile.depend +++ b/share/i18n/csmapper/TCVN/Makefile.depend @@ -2,10 +2,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - usr.bin/mkcsmapper_static \ + usr.bin/mkcsmapper_static.host \ .include diff --git a/share/i18n/esdb/APPLE/Makefile.depend b/share/i18n/esdb/APPLE/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/APPLE/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/AST/Makefile.depend b/share/i18n/esdb/AST/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/AST/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/BIG5/Makefile.depend b/share/i18n/esdb/BIG5/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/BIG5/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/CP/Makefile.depend b/share/i18n/esdb/CP/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/CP/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/DEC/Makefile.depend b/share/i18n/esdb/DEC/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/DEC/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/EBCDIC/Makefile.depend b/share/i18n/esdb/EBCDIC/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/EBCDIC/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/EUC/Makefile.depend b/share/i18n/esdb/EUC/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/EUC/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/GB/Makefile.depend b/share/i18n/esdb/GB/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/GB/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/GEORGIAN/Makefile.depend b/share/i18n/esdb/GEORGIAN/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/GEORGIAN/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/ISO-2022/Makefile.depend b/share/i18n/esdb/ISO-2022/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/ISO-2022/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/ISO-8859/Makefile.depend b/share/i18n/esdb/ISO-8859/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/ISO-8859/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/ISO646/Makefile.depend b/share/i18n/esdb/ISO646/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/ISO646/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/KAZAKH/Makefile.depend b/share/i18n/esdb/KAZAKH/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/KAZAKH/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/KOI/Makefile.depend b/share/i18n/esdb/KOI/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/KOI/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/MISC/Makefile.depend b/share/i18n/esdb/MISC/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/MISC/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/Makefile.depend b/share/i18n/esdb/Makefile.depend new file mode 100644 index 000000000000..c9404d610d79 --- /dev/null +++ b/share/i18n/esdb/Makefile.depend @@ -0,0 +1,30 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + share/i18n/esdb/APPLE \ + share/i18n/esdb/AST \ + share/i18n/esdb/BIG5 \ + share/i18n/esdb/CP \ + share/i18n/esdb/DEC \ + share/i18n/esdb/EBCDIC \ + share/i18n/esdb/EUC \ + share/i18n/esdb/GB \ + share/i18n/esdb/GEORGIAN \ + share/i18n/esdb/ISO-2022 \ + share/i18n/esdb/ISO-8859 \ + share/i18n/esdb/ISO646 \ + share/i18n/esdb/KAZAKH \ + share/i18n/esdb/KOI \ + share/i18n/esdb/MISC \ + share/i18n/esdb/TCVN \ + share/i18n/esdb/UTF \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/TCVN/Makefile.depend b/share/i18n/esdb/TCVN/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/TCVN/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/i18n/esdb/UTF/Makefile.depend b/share/i18n/esdb/UTF/Makefile.depend new file mode 100644 index 000000000000..aae5f4a13072 --- /dev/null +++ b/share/i18n/esdb/UTF/Makefile.depend @@ -0,0 +1,13 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + usr.bin/mkesdb_static.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/mkcsmapper_static/Makefile.depend b/usr.bin/mkcsmapper_static/Makefile.depend index c9b7aa98c567..ff5f11fd04ea 100644 --- a/usr.bin/mkcsmapper_static/Makefile.depend +++ b/usr.bin/mkcsmapper_static/Makefile.depend @@ -2,14 +2,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcompiler_rt \ .include From 802fd70f5f485dee4bc5e6ad052bd9d9e9619d39 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 17 Oct 2013 20:01:59 +0000 Subject: [PATCH 117/228] Allow building these in-line The build-tools phase sets NO_WARNS If there is any other purpose (than hosttool during build) we could make this depend on MACHINE=host. --- usr.bin/mkcsmapper_static/Makefile | 1 + usr.bin/mkesdb_static/Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/usr.bin/mkcsmapper_static/Makefile b/usr.bin/mkcsmapper_static/Makefile index 0c6e10d00daf..2485235b9692 100644 --- a/usr.bin/mkcsmapper_static/Makefile +++ b/usr.bin/mkcsmapper_static/Makefile @@ -7,6 +7,7 @@ SRCS= citrus_bcs.c citrus_db_factory.c citrus_db_hash.c \ citrus_lookup_factory.c citrus_pivot_factory.c NO_MAN= yes NO_SHARED= yes +NO_WARNS= yes build-tools: mkcsmapper_static diff --git a/usr.bin/mkesdb_static/Makefile b/usr.bin/mkesdb_static/Makefile index 7328efc9bd1c..4a778e509f8c 100644 --- a/usr.bin/mkesdb_static/Makefile +++ b/usr.bin/mkesdb_static/Makefile @@ -7,6 +7,7 @@ SRCS= citrus_bcs.c citrus_db_factory.c citrus_db_hash.c \ citrus_lookup_factory.c NO_MAN= yes NO_SHARED= yes +NO_WARNS= yes build-tools: mkesdb_static From 94f1465c6830c5ed4f901e7bd9448544a650bf35 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 17 Oct 2013 20:02:36 +0000 Subject: [PATCH 118/228] Use the tools we built for host. --- share/i18n/csmapper/Makefile.inc | 5 +++++ share/i18n/esdb/Makefile.inc | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/share/i18n/csmapper/Makefile.inc b/share/i18n/csmapper/Makefile.inc index 3ab5b0f32189..8ebd03447c89 100644 --- a/share/i18n/csmapper/Makefile.inc +++ b/share/i18n/csmapper/Makefile.inc @@ -1,4 +1,9 @@ # $FreeBSD$ +.include + CSMAPPERDIR?= /usr/share/i18n/csmapper +.if ${MK_STAGING} == "yes" +MKCSMAPPER= ${STAGE_HOST_OBJTOP}/usr/bin/mkcsmapper_static +.endif MKCSMAPPER?= ${.OBJDIR}/../../../usr.bin/mkcsmapper_static/mkcsmapper_static diff --git a/share/i18n/esdb/Makefile.inc b/share/i18n/esdb/Makefile.inc index 1554965b6479..09886c7d70f4 100644 --- a/share/i18n/esdb/Makefile.inc +++ b/share/i18n/esdb/Makefile.inc @@ -1,6 +1,11 @@ # $FreeBSD$ +.include + .PATH: ${.CURDIR} ESDBDIR?= /usr/share/i18n/esdb +.if ${MK_STAGING} == "yes" +MKESDB= ${STAGE_HOST_OBJTOP}/usr/bin/mkesdb_static +.endif MKESDB?= ${.OBJDIR}/../../../usr.bin/mkesdb_static/mkesdb_static From ce34b024388e8e8b5c2a9feac4cd0d7902868980 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 17 Oct 2013 20:03:24 +0000 Subject: [PATCH 119/228] Saver to rm first when making link to dir --- lib/libstand/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libstand/Makefile b/lib/libstand/Makefile index 506b564d57b5..33c155fc9476 100644 --- a/lib/libstand/Makefile +++ b/lib/libstand/Makefile @@ -186,5 +186,6 @@ cleanmachine: rm -f machine machine: + rm -f machine ln -s ${.CURDIR}/../../sys/i386/include machine .endif From f0247a242fa1917c4501bb5a015f3dbc387b9ede Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 17 Oct 2013 20:04:44 +0000 Subject: [PATCH 120/228] Use the tblgen etc we built for host. --- lib/clang/clang.build.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/clang/clang.build.mk b/lib/clang/clang.build.mk index b43b28ab5fde..7202a44441b7 100644 --- a/lib/clang/clang.build.mk +++ b/lib/clang/clang.build.mk @@ -36,6 +36,10 @@ CXXFLAGS+= -fno-exceptions -fno-rtti .PATH: ${LLVM_SRCS}/${SRCDIR} +.if ${MK_STAGING} == "yes" +TBLGEN= ${STAGE_HOST_OBJTOP}/usr/bin/tblgen +CLANG_TBLGEN= ${STAGE_HOST_OBJTOP}/usr/bin/clang-tblgen +.endif TBLGEN?= tblgen CLANG_TBLGEN?= clang-tblgen From 1991e07af89dbccabfb71af86738da2a979b3d20 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 21 Oct 2013 18:47:29 +0000 Subject: [PATCH 121/228] Fix botched sed script --- etc/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/Makefile b/etc/Makefile index 0740338410cc..1d145c192ec0 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -308,10 +308,10 @@ distribution: MTREE_CMD?= mtree .if ${MK_INSTALL_AS_USER} != "no" && ${_uid} != 0 -MTREE_FILTER= sed -e 's,(uname=)[^ ]* ,\1${BINOWN},' \ - -e 's,(gname=)[^ ]* ,\1${BINGRP},' \ - -e 's,(uid=)[^ ]* ,\1${_uid},' \ - -e 's,(gid=)[^ ]* ,\1${_gid},' +MTREE_FILTER= sed -e 's,\(uname=\)[^ ]* ,\1${BINOWN} ,' \ + -e 's,\(gname=\)[^ ]* ,\1${BINGRP} ,' \ + -e 's,\(uid=\)[^ ]* ,\1${_uid} ,' \ + -e 's,\(gid=\)[^ ]* ,\1${_gid} ,' .else MTREE_FILTER= cat .endif From 63efcf90b98b3913c0e608f5ff82697dc901b34f Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 2 May 2014 00:45:30 +0000 Subject: [PATCH 122/228] There is no guarantee that our group has a name. Since the results are temp, just subst [gu]name for [gu]id Reviewed by: obrien --- etc/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/etc/Makefile b/etc/Makefile index 0909b8bfbd58..340ade4dc2a0 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -319,10 +319,11 @@ distribution: MTREE_CMD?= mtree .if ${MK_INSTALL_AS_USER} != "no" && ${_uid} != 0 -MTREE_FILTER= sed -e 's,\(uname=\)[^ ]* ,\1${BINOWN} ,' \ - -e 's,\(gname=\)[^ ]* ,\1${BINGRP} ,' \ +MTREE_FILTER= sed -e 's,\([gu]\)name=,\1id=,g' \ -e 's,\(uid=\)[^ ]* ,\1${_uid} ,' \ - -e 's,\(gid=\)[^ ]* ,\1${_gid} ,' + -e 's,\(gid=\)[^ ]* ,\1${_gid} ,' \ + -e 's,\(uid=\)[^ ]*$$,\1${_uid},' \ + -e 's,\(gid=\)[^ ]*$$,\1${_gid},' .else MTREE_FILTER= cat .endif From 47f881af0fc4952d3c1670197be87a65540a3374 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 2 May 2014 01:39:30 +0000 Subject: [PATCH 123/228] Add 'destroy' target to efficiently rm -rf objtree Reviewed by: obrien --- share/mk/bsd.obj.mk | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/share/mk/bsd.obj.mk b/share/mk/bsd.obj.mk index 38afcde9a35f..d2a6bd725534 100644 --- a/share/mk/bsd.obj.mk +++ b/share/mk/bsd.obj.mk @@ -146,4 +146,29 @@ cleandir: cleanobj .include +.if make(destroy*) && defined(OBJROOT) +# this is much faster and more reliable than cleaning. + +# just in case we are playing games with these... +_OBJDIR?= ${.OBJDIR} +_CURDIR?= ${.CURDIR} + +destroy-arch: .NOMETA +.if ${_OBJDIR} != ${_CURDIR} + cd ${_CURDIR} && rm -rf ${_OBJDIR} +.endif + +destroy: destroy-all +destroy-all: + +.if ${_OBJDIR} != ${_CURDIR} +.for m in ${ALL_MACHINE_LIST} +destroy-all: destroy.$m +destroy.$m: .NOMETA + cd ${_CURDIR} && rm -rf ${OBJROOT}$m*/${RELDIR:N.} +.endfor +.endif + +.endif + .endif # !target(____) From 1c19778e8d2129c47cb7300920531c1e7e47a9ae Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 2 May 2014 01:39:44 +0000 Subject: [PATCH 124/228] Some warnings depened on the version of clang, allow us to check. Reviewed by: obrien --- share/mk/bsd.compiler.mk | 5 +++++ share/mk/bsd.sys.mk | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/share/mk/bsd.compiler.mk b/share/mk/bsd.compiler.mk index cd2b35d25731..6554625bd4e9 100644 --- a/share/mk/bsd.compiler.mk +++ b/share/mk/bsd.compiler.mk @@ -26,6 +26,11 @@ COMPILER_TYPE:= clang .if ${COMPILER_TYPE} == "clang" COMPILER_FEATURES= c++11 +.if !defined(_COMPILER_VERSION) +_COMPILER_VERSION!= ${CC} --version +.endif +# some warnings are version specific +COMPILER_VERSION:= ${_COMPILER_VERSION:M[1-9].[0-9]*} .else COMPILER_FEATURES= .endif diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk index a222607f0a7c..ca59d0b69380 100644 --- a/share/mk/bsd.sys.mk +++ b/share/mk/bsd.sys.mk @@ -67,7 +67,10 @@ CWARNFLAGS+= -Wno-pointer-sign # is set to low values, these have to be disabled explicitly. .if ${COMPILER_TYPE} == "clang" && !defined(EARLY_BUILD) .if ${WARNS} <= 6 -CWARNFLAGS+= -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable +CWARNFLAGS+= -Wno-empty-body -Wno-string-plus-int +.if ${COMPILER_VERSION} > 3.3 +CWARNFLAGS+= -Wno-unused-const-variable +.endif .endif # WARNS <= 6 .if ${WARNS} <= 3 CWARNFLAGS+= -Wno-tautological-compare -Wno-unused-value\ From 388b68dc72c05b885a02e32d1c612628af668838 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 4 May 2014 16:39:18 +0000 Subject: [PATCH 125/228] We can now leverage bsd.opts.mk to use MK_* to control what we build. --- pkgs/pseudo/toolchain/Makefile.depend | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pkgs/pseudo/toolchain/Makefile.depend b/pkgs/pseudo/toolchain/Makefile.depend index 1e42b26aabed..174feea80932 100644 --- a/pkgs/pseudo/toolchain/Makefile.depend +++ b/pkgs/pseudo/toolchain/Makefile.depend @@ -4,9 +4,16 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DIRDEPS = \ - pkgs/pseudo/clang \ - pkgs/pseudo/gcc \ - usr.bin/xinstall \ +.if !defined(MK_CLANG) +.include "${SRCTOP}/share/mk/bsd.opts.mk" +.endif + +DIRDEPS= usr.bin/xinstall +.if ${MK_CLANG} == "yes" +DIRDEPS+= pkgs/pseudo/clang +.endif +.if ${MK_GCC} == "yes" +DIRDEPS+= pkgs/pseudo/gcc +.endif .include From c617b9581cf9e9fceccee775584f22d338271546 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 5 May 2014 17:56:10 +0000 Subject: [PATCH 126/228] Leverage bsd.opts.mk --- pkgs/pseudo/cddl/Makefile.depend | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/pkgs/pseudo/cddl/Makefile.depend b/pkgs/pseudo/cddl/Makefile.depend index 07552d724d47..7bd7fba9b647 100644 --- a/pkgs/pseudo/cddl/Makefile.depend +++ b/pkgs/pseudo/cddl/Makefile.depend @@ -4,31 +4,47 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} +.if !defined(MK_CTF) +.include "${SRCTOP}/share/mk/bsd.opts.mk" +.endif + DIRDEPS = \ cddl/lib/drti \ cddl/lib/libavl \ - cddl/lib/libctf \ - cddl/lib/libdtrace \ cddl/lib/libnvpair \ cddl/lib/libumem \ cddl/lib/libuutil \ + cddl/usr.bin/sgsmsg \ + + +DIRDEPS.CTF = \ + cddl/lib/libctf \ + cddl/usr.bin/ctfconvert \ + cddl/usr.bin/ctfdump \ + cddl/usr.bin/ctfmerge \ + cddl/lib/libdtrace \ + cddl/usr.sbin/dtrace \ + cddl/usr.sbin/dtruss \ + + +DIRDEPS.ZFS = \ cddl/lib/libzfs \ cddl/lib/libzfs_core \ cddl/lib/libzpool \ cddl/sbin/zfs \ cddl/sbin/zpool \ - cddl/usr.bin/ctfconvert \ - cddl/usr.bin/ctfdump \ - cddl/usr.bin/ctfmerge \ - cddl/usr.bin/sgsmsg \ cddl/usr.bin/zinject \ cddl/usr.bin/zstreamdump \ cddl/usr.bin/ztest \ - cddl/usr.sbin/dtrace \ - cddl/usr.sbin/dtruss \ cddl/usr.sbin/lockstat \ cddl/usr.sbin/zdb \ cddl/usr.sbin/zhack \ +.for O in CTF ZFS +.if ${MK_$O} == "yes" +DIRDEPS+= ${DIRDEPS.$O} +.endif +.endfor + .include From 10ea6face3586944d6ee86b8efdd438bebcabac1 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 5 May 2014 17:58:00 +0000 Subject: [PATCH 127/228] Update to latest versions. --- share/mk/dirdeps.mk | 22 +++++++++----- share/mk/gendirdeps.mk | 21 +++++++++----- share/mk/meta2deps.py | 66 ++++++++++++++++++++++-------------------- 3 files changed, 62 insertions(+), 47 deletions(-) diff --git a/share/mk/dirdeps.mk b/share/mk/dirdeps.mk index 7e585a7e40f4..52950bd1eb1a 100644 --- a/share/mk/dirdeps.mk +++ b/share/mk/dirdeps.mk @@ -1,4 +1,4 @@ -# $Id: dirdeps.mk,v 1.28 2013/03/25 21:11:43 sjg Exp $ +# $Id: dirdeps.mk,v 1.33 2014/03/14 22:25:35 sjg Exp $ # Copyright (c) 2010-2013, Juniper Networks, Inc. # All rights reserved. @@ -44,7 +44,7 @@ # All unqualified entries end up being qualified with .${TARGET_SPEC} # and partially qualified (if TARGET_SPEC_VARS has multiple # entries) are also expanded to a full .. -# The _DIRDEPS_USE target uses the suffix to set TARGET_SPEC +# The _DIRDEP_USE target uses the suffix to set TARGET_SPEC # correctly when visiting each entry. # # The fully qualified directory entries are used to construct a @@ -71,7 +71,7 @@ # # TARGET_SPEC_VARS # The default value is just MACHINE, and for most environments -# this is sufficient. The _DIRDEPS_USE target actually sets +# this is sufficient. The _DIRDEP_USE target actually sets # both MACHINE and TARGET_SPEC to the suffix of the current # target so that in the general case TARGET_SPEC can be ignored. # @@ -196,7 +196,11 @@ N_notmachine := ${.MAKE.DEPENDFILE_PREFERENCE:E:N*${MACHINE}*:${M_ListToSkip}} # if we were included recursively _DEP_TARGET_SPEC should be valid. .if empty(_DEP_TARGET_SPEC) # we may or may not have included a dependfile yet +.if defined(.INCLUDEDFROMFILE) +_last_dependfile := ${.INCLUDEDFROMFILE:M${.MAKE.DEPENDFILE_PREFIX}*} +.else _last_dependfile := ${.MAKE.MAKEFILES:M*/${.MAKE.DEPENDFILE_PREFIX}*:[-1]} +.endif .if !empty(_debug_reldir) .info ${DEP_RELDIR}.${DEP_TARGET_SPEC}: _last_dependfile='${_last_dependfile}' .endif @@ -239,7 +243,8 @@ DEP_MACHINE := ${_DEP_TARGET_SPEC} # we can use this as a clue to do initialization and other one time things. .if !target(_DIRDEP_USE) # make sure this target exists -dirdeps: +dirdeps: beforedirdeps .WAIT +beforedirdeps: # We normally expect to be included by Makefile.depend.* # which sets the DEP_* macros below. @@ -269,11 +274,14 @@ DEP_SKIP_DIR = ${SKIP_DIR} \ NSkipDir = ${DEP_SKIP_DIR:${M_ListToSkip}} -.if defined(NO_DIRDEPS) || defined(NODIRDEPS) +.if defined(NO_DIRDEPS) || defined(NODIRDEPS) || defined(WITHOUT_DIRDEPS) # confine ourselves to the original dir DIRDEPS_FILTER += M${_DEP_RELDIR}* .endif +# this is what we run below +DIRDEP_MAKE?= ${.MAKE} + # we supress SUBDIR when visiting the leaves # we assume sys.mk will set MACHINE_ARCH # you can add extras to DIRDEP_USE_ENV @@ -285,7 +293,7 @@ _DIRDEP_USE: .USE .MAKE MACHINE_ARCH= NO_SUBDIR=1 ${DIRDEP_USE_ENV} \ TARGET_SPEC=${.TARGET:E} \ MACHINE=${.TARGET:E} \ - ${.MAKE} -C ${.TARGET:R} || exit 1; \ + ${DIRDEP_MAKE} -C ${.TARGET:R} || exit 1; \ break; \ done @@ -397,7 +405,7 @@ DEP_DIRDEPS_FILTER = U .endif # this is what we start with -__depdirs := ${DIRDEPS:${NSkipDir}:${DEP_DIRDEPS_FILTER:ts:}:O:u:@d@${SRCTOP}/$d@} +__depdirs := ${DIRDEPS:${NSkipDir}:${DEP_DIRDEPS_FILTER:ts:}:C,//+,/,g:O:u:@d@${SRCTOP}/$d@} # some entries may be qualified with . # the :M*/*/*.* just tries to limit the dirs we check to likely ones. diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk index 21bb489327b7..b313298b3fef 100644 --- a/share/mk/gendirdeps.mk +++ b/share/mk/gendirdeps.mk @@ -1,4 +1,4 @@ -# $Id: gendirdeps.mk,v 1.21 2013/03/28 20:01:05 sjg Exp $ +# $Id: gendirdeps.mk,v 1.25 2014/03/14 21:28:37 sjg Exp $ # Copyright (c) 2010-2013, Juniper Networks, Inc. # All rights reserved. @@ -162,7 +162,7 @@ dir_list != cd ${_OBJDIR} && \ .warning Skipping ${_DEPENDFILE:S,${SRCTOP}/,,} # we are not going to update anything .else - +dpadd_dir_list= .if !empty(DPADD) _nonlibs := ${DPADD:T:Nlib*:N*include} .if !empty(_nonlibs) @@ -174,6 +174,7 @@ ddep_list += $f.dirdep ddep_list += ${f:H}.dirdep .else dir_list += ${f:H:tA} +dpadd_dir_list += ${f:H:tA} .endif .endfor .if !empty(ddep_list) @@ -197,7 +198,7 @@ dir_list += ${ddeps} # so we add # ${"${dir_list:M*bsd/sys/${MACHINE_ARCH}/include}":?bsd/include:} # to GENDIRDEPS_DIR_LIST_XTRAS -_objtops = ${OBJTOP} ${_OBJTOP} ${_obtop} +_objtops = ${OBJTOP} ${_OBJTOP} ${_objtop} _objtops := ${_objtops:O:u} dirdep_list = \ ${_objtops:@o@${dir_list:M$o*/*:C,$o[^/]*/,,}@} \ @@ -212,8 +213,11 @@ M2D_OBJROOTS := ${M2D_OBJROOTS:O:u:[-1..1]} skip_ql= ${SRCTOP}* ${_objtops:@o@$o*@} .for o in ${M2D_OBJROOTS:${skip_ql:${M_ListToSkip}}} # we need := so only skip_ql to this point applies -ql := ${dir_list:${skip_ql:${M_ListToSkip}}:M$o*/*/*:C,$o([^/]+)/(.*),\2.\1,:S,.${HOST_TARGET},.host,} -qualdir_list += ${ql} +ql.$o := ${dir_list:${skip_ql:${M_ListToSkip}}:M$o*/*/*:C,$o([^/]+)/(.*),\2.\1,:S,.${HOST_TARGET},.host,} +qualdir_list += ${ql.$o} +.if ${DEBUG_GENDIRDEPS:Uno:@x@${RELDIR:M$x}@} != "" +.info ${RELDIR}: o=$o ${ql.$o qualdir_list:L:@v@$v=${$v}@} +.endif skip_ql+= $o* .endfor @@ -225,7 +229,7 @@ DIRDEPS = \ ${qualdir_list:N${RELDIR}.*:N${RELDIR}/*} # We only consider things below $RELDIR/ if they have a makefile. -# This is the same test that _DIRDEPS_USE applies. +# This is the same test that _DIRDEP_USE applies. # We have do a double test with dirdep_list as it _may_ contain # qualified dirs - if we got anything from a stage dir. # qualdir_list we know are all qualified. @@ -236,11 +240,12 @@ DIRDEPS += \ ${dirdep_list:M${RELDIR}/*:@d@${.MAKE.MAKEFILE_PREFERENCE:@m@${exists(${SRCTOP}/$d/$m):?$d:${exists(${SRCTOP}/${d:R}/$m):?$d:}}@}@} \ ${qualdir_list:M${RELDIR}/*:@d@${.MAKE.MAKEFILE_PREFERENCE:@m@${exists(${SRCTOP}/${d:R}/$m):?$d:}@}@} -DIRDEPS := ${DIRDEPS:${GENDIRDEPS_FILTER:UNno:ts:}:O:u} +DIRDEPS := ${DIRDEPS:${GENDIRDEPS_FILTER:UNno:ts:}:C,//+,/,g:O:u} .if ${DEBUG_GENDIRDEPS:Uno:@x@${RELDIR:M$x}@} != "" .info ${RELDIR}: M2D_OBJROOTS=${M2D_OBJROOTS} .info ${RELDIR}: dir_list='${dir_list}' +.info ${RELDIR}: dpadd_dir_list='${dpadd_dir_list}' .info ${RELDIR}: dirdep_list='${dirdep_list}' .info ${RELDIR}: qualdir_list='${qualdir_list}' .info ${RELDIR}: SKIP_GENDIRDEPS='${SKIP_GENDIRDEPS}' @@ -256,7 +261,7 @@ src_dirdep_list = \ SRC_DIRDEPS = \ ${src_dirdep_list:N${RELDIR}:N${RELDIR}/*:C,(/h)/.*,,} -SRC_DIRDEPS := ${SRC_DIRDEPS:${GENDIRDEPS_SRC_FILTER:UN/*:ts:}:O:u} +SRC_DIRDEPS := ${SRC_DIRDEPS:${GENDIRDEPS_SRC_FILTER:UN/*:ts:}:C,//+,/,g:O:u} # if you want to capture SRC_DIRDEPS in .MAKE.DEPENDFILE put # SRC_DIRDEPS_FILE = ${_DEPENDFILE} diff --git a/share/mk/meta2deps.py b/share/mk/meta2deps.py index 254f230688a7..d4e4bb14cad4 100755 --- a/share/mk/meta2deps.py +++ b/share/mk/meta2deps.py @@ -1,5 +1,7 @@ #!/usr/bin/env python +from __future__ import print_function + """ This script parses each "meta" file and extracts the information needed to deduce build and src dependencies. @@ -35,7 +37,7 @@ """ RCSid: - $Id: meta2deps.py,v 1.15 2013/07/29 20:41:23 sjg Exp $ + $Id: meta2deps.py,v 1.16 2013/12/20 06:08:52 sjg Exp $ Copyright (c) 2011-2013, Juniper Networks, Inc. All rights reserved. @@ -90,14 +92,14 @@ def resolve(path, cwd, last_dir=None, debug=0, debug_out=sys.stderr): continue p = '/'.join([d,path]) if debug > 2: - print >> debug_out, "looking for:", p, + print("looking for:", p, end=' ', file=debug_out) if not os.path.exists(p): if debug > 2: - print >> debug_out, "nope" + print("nope", file=debug_out) p = None continue if debug > 2: - print >> debug_out, "found:", p + print("found:", p, file=debug_out) return p return None @@ -236,21 +238,21 @@ def __init__(self, name, conf={}): self.objroots.sort(reverse=True) if self.debug: - print >> self.debug_out, "host_target=", self.host_target - print >> self.debug_out, "srctops=", self.srctops - print >> self.debug_out, "objroots=", self.objroots + print("host_target=", self.host_target, file=self.debug_out) + print("srctops=", self.srctops, file=self.debug_out) + print("objroots=", self.objroots, file=self.debug_out) self.dirdep_re = re.compile(r'([^/]+)/(.+)') if self.dpdeps and not self.reldir: if self.debug: - print >> self.debug_out, "need reldir:", + print("need reldir:", end=' ', file=self.debug_out) if self.curdir: srctop = self.find_top(self.curdir, self.srctops) if srctop: self.reldir = self.curdir.replace(srctop,'') if self.debug: - print >> self.debug_out, self.reldir + print(self.reldir, file=self.debug_out) if not self.reldir: self.dpdeps = None # we cannot do it? @@ -280,7 +282,7 @@ def file_depends(self, out=None): if not self.reldir: return None for f in sort_unique(self.file_deps): - print >> out, 'DPDEPS_%s += %s' % (f, self.reldir) + print('DPDEPS_%s += %s' % (f, self.reldir), file=out) def seenit(self, dir): """rememer that we have seen dir.""" @@ -291,14 +293,14 @@ def add(self, list, data, clue=''): if data not in list: list.append(data) if self.debug: - print >> self.debug_out, "%s: %sAdd: %s" % (self.name, clue, data) + print("%s: %sAdd: %s" % (self.name, clue, data), file=self.debug_out) def find_top(self, path, list): """the logical tree may be split accross multiple trees""" for top in list: if path.startswith(top): if self.debug > 2: - print >> self.debug_out, "found in", top + print("found in", top, file=self.debug_out) return top return None @@ -307,9 +309,9 @@ def find_obj(self, objroot, dir, path, input): ddep = None for ddepf in [path + '.dirdep', dir + '/.dirdep']: if not ddep and os.path.exists(ddepf): - ddep = open(ddepf, 'rb').readline().strip('# \n') + ddep = open(ddepf, 'r').readline().strip('# \n') if self.debug > 1: - print >> self.debug_out, "found %s: %s\n" % (ddepf, ddep) + print("found %s: %s\n" % (ddepf, ddep), file=self.debug_out) if ddep.endswith(self.machine): ddep = ddep[0:-(1+len(self.machine))] elif self.target_spec and ddep.endswith(self.target_spec): @@ -331,7 +333,7 @@ def find_obj(self, objroot, dir, path, input): if not (self.machine == 'host' and dmachine == self.host_target): if self.debug > 2: - print >> self.debug_out, "adding .%s to %s" % (dmachine, ddep) + print("adding .%s to %s" % (dmachine, ddep), file=self.debug_out) ddep += '.' + dmachine return ddep @@ -342,7 +344,7 @@ def try_parse(self, name=None, file=None): self.parse(name, file) except: # give a useful clue - print >> sys.stderr, '{}:{}: '.format(self.name, self.line), + print('{}:{}: '.format(self.name, self.line), end=' ', file=sys.stderr) raise def parse(self, name=None, file=None): @@ -379,7 +381,7 @@ def parse(self, name=None, file=None): f = file cwd = last_dir = self.cwd else: - f = open(self.name, 'rb') + f = open(self.name, 'r') skip = True pid_cwd = {} pid_last_dir = {} @@ -396,7 +398,7 @@ def parse(self, name=None, file=None): if not line[0] in interesting: continue if self.debug > 2: - print >> self.debug_out, "input:", line, + print("input:", line, end=' ', file=self.debug_out) w = line.split() if skip: @@ -413,7 +415,7 @@ def parse(self, name=None, file=None): self.cwd = cwd = last_dir = w[1] self.seenit(cwd) # ignore this if self.debug: - print >> self.debug_out, "%s: CWD=%s" % (self.name, cwd) + print("%s: CWD=%s" % (self.name, cwd), file=self.debug_out) continue pid = int(w[1]) @@ -438,12 +440,12 @@ def parse(self, name=None, file=None): cwd = cwd[0:-2] last_dir = cwd if self.debug > 1: - print >> self.debug_out, "cwd=", cwd + print("cwd=", cwd, file=self.debug_out) continue if w[2] in self.seen: if self.debug > 2: - print >> self.debug_out, "seen:", w[2] + print("seen:", w[2], file=self.debug_out) continue # file operations if w[0] in 'ML': @@ -461,7 +463,7 @@ def parse(self, name=None, file=None): dir,base = os.path.split(path) if dir in self.seen: if self.debug > 2: - print >> self.debug_out, "seen:", dir + print("seen:", dir, file=self.debug_out) continue # we can have a path in an objdir which is a link # to the src dir, we may need to add dependencies for each @@ -472,19 +474,19 @@ def parse(self, name=None, file=None): # now put path back together path = '/'.join([dir,base]) if self.debug > 1: - print >> self.debug_out, "raw=%s rdir=%s dir=%s path=%s" % (w[2], rdir, dir, path) + print("raw=%s rdir=%s dir=%s path=%s" % (w[2], rdir, dir, path), file=self.debug_out) if w[0] in 'SRWL': if w[0] == 'W' and path.endswith('.dirdep'): continue if path in [last_dir, cwd, self.cwd, self.curdir]: if self.debug > 1: - print >> self.debug_out, "skipping:", path + print("skipping:", path, file=self.debug_out) continue if os.path.isdir(path): if w[0] in 'RW': last_dir = path; if self.debug > 1: - print >> self.debug_out, "ldir=", last_dir + print("ldir=", last_dir, file=self.debug_out) continue if w[0] in 'REWML': @@ -642,10 +644,10 @@ def main(argv, klass=MetaFile, xopts='', xoptf=None): debug_out = getv(conf, 'debug_out', sys.stderr) if debug: - print >> debug_out, "config:" - print >> debug_out, "psyco=", have_psyco - for k,v in conf.items(): - print >> debug_out, "%s=%s" % (k,v) + print("config:", file=debug_out) + print("psyco=", have_psyco, file=debug_out) + for k,v in list(conf.items()): + print("%s=%s" % (k,v), file=debug_out) for a in args: if a.endswith('.meta'): @@ -657,9 +659,9 @@ def main(argv, klass=MetaFile, xopts='', xoptf=None): m = klass(f, conf) if output: - print m.dirdeps() + print(m.dirdeps()) - print m.src_dirdeps('\nsrc:') + print(m.src_dirdeps('\nsrc:')) dpdeps = getv(conf, 'DPDEPS') if dpdeps: @@ -672,6 +674,6 @@ def main(argv, klass=MetaFile, xopts='', xoptf=None): main(sys.argv) except: # yes, this goes to stdout - print "ERROR: ", sys.exc_info()[1] + print("ERROR: ", sys.exc_info()[1]) raise From 65c026e6120da9b51301714dbb758e92a3995d87 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 5 May 2014 18:15:18 +0000 Subject: [PATCH 128/228] Avoid /etc/make.conf and make it easier to deal with compiler updates --- share/mk/local.sys.mk | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index 2ac427f04de1..71e4a8f410ca 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -1,6 +1,9 @@ WITH_INSTALL_AS_USER= yes .if defined(.PARSEDIR) # bmake +SRCCONF:= ${.PARSEDIR}/src.conf +# ensure we are self contained +__MAKE_CONF:= ${SRCCONF} # some handy macros _this = ${.PARSEDIR:tA}/${.PARSEFILE} @@ -207,13 +210,15 @@ STAGE_SYMLINKS_DIR= ${STAGE_OBJTOP} .if ${MACHINE} != "host" CFLAGS_LAST+= -nostdinc .endif -CFLAGS_LAST+= -isystem ${STAGE_OBJTOP}/usr/include +GCCVER?= 4.2 +CLANGVER?= 3.4 +CFLAGS_LAST+= -isystem ${STAGE_OBJTOP}/usr/include -I${STAGE_OBJTOP}/usr/include CFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} LDFLAGS_LAST+= -B${STAGE_LIBDIR} -L${STAGE_LIBDIR} -CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER:U4.2} +CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER} -I${STAGE_OBJTOP}/usr/include/c++/${GCCVER} # backward doesn't get searched if -nostdinc -CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER:U4.2}/backward -CFLAGS_LAST.clang += -isystem ${STAGE_OBJTOP}/usr/include/clang/${CLANGVER:U3.3} +CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER}/backward -I${STAGE_OBJTOP}/usr/include/c++/${GCCVER}/backward +CFLAGS_LAST.clang += -isystem ${STAGE_OBJTOP}/usr/include/clang/${CLANGVER} -I${STAGE_OBJTOP}/usr/include/clang/${CLANGVER} CXXFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} .else # if ld suppored sysroot, this would suffice From 541f25d31dbe85a346e82b3e59d38b85cfafa5f7 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 5 May 2014 18:16:15 +0000 Subject: [PATCH 129/228] WITHOUT always wins Reviewed by: imp --- share/mk/bsd.mkopt.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/mk/bsd.mkopt.mk b/share/mk/bsd.mkopt.mk index c084c7ece2e4..b86658340421 100644 --- a/share/mk/bsd.mkopt.mk +++ b/share/mk/bsd.mkopt.mk @@ -30,7 +30,7 @@ MK_${var}:= yes # .for var in ${__DEFAULT_NO_OPTIONS} .if !defined(MK_${var}) -.if defined(WITH_${var}) # If both WITH and WITHOUT defined, WITH wins +.if defined(WITH_${var}) && !defined(WITHOUT_${var}) # WITHOUT wins MK_${var}:= yes .else MK_${var}:= no From 09cd1cf152d5f13e3bb06bfc027687972a39cbf1 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 5 May 2014 18:17:26 +0000 Subject: [PATCH 130/228] If doing destroy-all and at top-level whack stage tree too. --- share/mk/bsd.obj.mk | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/share/mk/bsd.obj.mk b/share/mk/bsd.obj.mk index d2a6bd725534..27a60ae26402 100644 --- a/share/mk/bsd.obj.mk +++ b/share/mk/bsd.obj.mk @@ -153,21 +153,42 @@ cleandir: cleanobj _OBJDIR?= ${.OBJDIR} _CURDIR?= ${.CURDIR} +# destroy almost everything +destroy: destroy-all +destroy-all: + +# just remove our objdir destroy-arch: .NOMETA .if ${_OBJDIR} != ${_CURDIR} cd ${_CURDIR} && rm -rf ${_OBJDIR} .endif -destroy: destroy-all -destroy-all: +.if defined(HOST_OBJTOP) +destroy-host: destroy.host +destroy.host: .NOMETA + cd ${_CURDIR} && rm -rf ${HOST_OBJTOP}/${RELDIR:N.} +.endif -.if ${_OBJDIR} != ${_CURDIR} +.if make(destroy-all) && ${RELDIR} == "." +destroy-all: destroy-stage +.endif + +# remove the stage tree +destroy-stage: .NOMETA +.if defined(STAGE_ROOT) + cd ${_CURDIR} && rm -rf ${STAGE_ROOT} +.endif + +# allow parallel destruction .for m in ${ALL_MACHINE_LIST} destroy-all: destroy.$m +.if !target(destroy.$m) destroy.$m: .NOMETA +.if ${_OBJDIR} != ${_CURDIR} cd ${_CURDIR} && rm -rf ${OBJROOT}$m*/${RELDIR:N.} -.endfor .endif +.endif +.endfor .endif From e86ede0dfc4518dac9f7d307b79b9f6908409446 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 5 May 2014 18:18:23 +0000 Subject: [PATCH 131/228] Leverage bsd.opts.mk --- share/mk/local.dirdeps.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index de95ba97a364..62e2c9fba41b 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -1,6 +1,10 @@ .if !target(_DIRDEP_USE) # we are the 1st makefile +.if !defined(MK_CTF) +.include "${SRCTOP}/share/mk/bsd.opts.mk" +.endif + # DEP_MACHINE is set before we get here, this may not be. DEP_RELDIR ?= ${RELDIR} @@ -39,7 +43,7 @@ DIRDEPS += gnu/lib/libssp/libssp_nonshared .endif # some optional things -.if !defined(WITHOUT_CTF) && ${DEP_RELDIR:U${RELDIR}:Mcddl/usr.bin/ctf*} == "" +.if ${MK_CTF} == "yes" && ${DEP_RELDIR:U${RELDIR}:Mcddl/usr.bin/ctf*} == "" DIRDEPS += \ cddl/usr.bin/ctfconvert.host \ cddl/usr.bin/ctfmerge.host From b736a4db5b604bcec6a57a32d9cd90f60b4e7ce9 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 5 May 2014 18:31:00 +0000 Subject: [PATCH 132/228] New/updated dependencies --- gnu/lib/libgcc/Makefile.depend | 6 + lib/libc++/Makefile.depend | 1 + lib/libcapsicum/Makefile.depend | 19 + lib/libdwarf/Makefile.depend | 33 ++ lib/libnv/Makefile.depend | 18 + lib/libproc/Makefile.depend | 1 + lib/libsm/Makefile.depend | 2 + lib/ncurses/ncurses/Makefile.depend | 37 +- lib/ncurses/ncursesw/Makefile.depend | 528 +++++++++++++++++++++++++-- sbin/ifconfig/Makefile.depend | 1 - usr.bin/kdump/Makefile.depend | 2 + usr.bin/split/Makefile.depend | 1 + usr.bin/units/Makefile.depend | 2 + 13 files changed, 602 insertions(+), 49 deletions(-) create mode 100644 lib/libcapsicum/Makefile.depend create mode 100644 lib/libnv/Makefile.depend diff --git a/gnu/lib/libgcc/Makefile.depend b/gnu/lib/libgcc/Makefile.depend index 905645ca96e1..cbb43ab610c4 100644 --- a/gnu/lib/libgcc/Makefile.depend +++ b/gnu/lib/libgcc/Makefile.depend @@ -34,6 +34,12 @@ _ashldi3.So: tm.h _ashrdi3.So: options.h _ashrdi3.So: tconfig.h _ashrdi3.So: tm.h +_bswapdi2.So: options.h +_bswapdi2.So: tconfig.h +_bswapdi2.So: tm.h +_bswapsi2.So: options.h +_bswapsi2.So: tconfig.h +_bswapsi2.So: tm.h _clear_cache.So: options.h _clear_cache.So: tconfig.h _clear_cache.So: tm.h diff --git a/lib/libc++/Makefile.depend b/lib/libc++/Makefile.depend index 200d684cda1a..7424055480c9 100644 --- a/lib/libc++/Makefile.depend +++ b/lib/libc++/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/lib/libcapsicum/Makefile.depend b/lib/libcapsicum/Makefile.depend new file mode 100644 index 000000000000..ab94ddd24ec7 --- /dev/null +++ b/lib/libcapsicum/Makefile.depend @@ -0,0 +1,19 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libnv \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libdwarf/Makefile.depend b/lib/libdwarf/Makefile.depend index df2384b66d87..60e33a7ed174 100644 --- a/lib/libdwarf/Makefile.depend +++ b/lib/libdwarf/Makefile.depend @@ -16,4 +16,37 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +dwarf_funcs.So: dwarf_funcs.c +dwarf_funcs.o: dwarf_funcs.c +dwarf_funcs.po: dwarf_funcs.c +dwarf_pro_funcs.So: dwarf_pro_funcs.c +dwarf_pro_funcs.o: dwarf_pro_funcs.c +dwarf_pro_funcs.po: dwarf_pro_funcs.c +dwarf_pro_pubnames.So: dwarf_pro_pubnames.c +dwarf_pro_pubnames.o: dwarf_pro_pubnames.c +dwarf_pro_pubnames.po: dwarf_pro_pubnames.c +dwarf_pro_types.So: dwarf_pro_types.c +dwarf_pro_types.o: dwarf_pro_types.c +dwarf_pro_types.po: dwarf_pro_types.c +dwarf_pro_vars.So: dwarf_pro_vars.c +dwarf_pro_vars.o: dwarf_pro_vars.c +dwarf_pro_vars.po: dwarf_pro_vars.c +dwarf_pro_weaks.So: dwarf_pro_weaks.c +dwarf_pro_weaks.o: dwarf_pro_weaks.c +dwarf_pro_weaks.po: dwarf_pro_weaks.c +dwarf_pubnames.So: dwarf_pubnames.c +dwarf_pubnames.o: dwarf_pubnames.c +dwarf_pubnames.po: dwarf_pubnames.c +dwarf_pubtypes.So: dwarf_pubtypes.c +dwarf_pubtypes.o: dwarf_pubtypes.c +dwarf_pubtypes.po: dwarf_pubtypes.c +dwarf_types.So: dwarf_types.c +dwarf_types.o: dwarf_types.c +dwarf_types.po: dwarf_types.c +dwarf_vars.So: dwarf_vars.c +dwarf_vars.o: dwarf_vars.c +dwarf_vars.po: dwarf_vars.c +dwarf_weaks.So: dwarf_weaks.c +dwarf_weaks.o: dwarf_weaks.c +dwarf_weaks.po: dwarf_weaks.c .endif diff --git a/lib/libnv/Makefile.depend b/lib/libnv/Makefile.depend new file mode 100644 index 000000000000..65ce5679ccda --- /dev/null +++ b/lib/libnv/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libproc/Makefile.depend b/lib/libproc/Makefile.depend index 54f6bead1e6e..b00a70119618 100644 --- a/lib/libproc/Makefile.depend +++ b/lib/libproc/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/libelf \ lib/libutil \ diff --git a/lib/libsm/Makefile.depend b/lib/libsm/Makefile.depend index 46519815d1f7..6053a6b9662f 100644 --- a/lib/libsm/Makefile.depend +++ b/lib/libsm/Makefile.depend @@ -68,6 +68,8 @@ get.o: sm_os.h get.po: sm_os.h heap.o: sm_os.h heap.po: sm_os.h +inet6_ntop.o: sm_os.h +inet6_ntop.po: sm_os.h ldap.o: sm_os.h ldap.po: sm_os.h makebuf.o: sm_os.h diff --git a/lib/ncurses/ncurses/Makefile.depend b/lib/ncurses/ncurses/Makefile.depend index e57a590ea791..fb4de0c0af0b 100644 --- a/lib/ncurses/ncurses/Makefile.depend +++ b/lib/ncurses/ncurses/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/ncurses/ncursesw \ .include @@ -1557,18 +1558,6 @@ lib_window.po: curses.h lib_window.po: ncurses_def.h lib_window.po: term.h lib_window.po: unctrl.h -memmove.So: curses.h -memmove.So: ncurses_def.h -memmove.So: term.h -memmove.So: unctrl.h -memmove.o: curses.h -memmove.o: ncurses_def.h -memmove.o: term.h -memmove.o: unctrl.h -memmove.po: curses.h -memmove.po: ncurses_def.h -memmove.po: term.h -memmove.po: unctrl.h name_match.So: curses.h name_match.So: ncurses_def.h name_match.So: term.h @@ -1608,6 +1597,18 @@ nc_panel.po: curses.h nc_panel.po: ncurses_def.h nc_panel.po: term.h nc_panel.po: unctrl.h +obsolete.So: curses.h +obsolete.So: ncurses_def.h +obsolete.So: term.h +obsolete.So: unctrl.h +obsolete.o: curses.h +obsolete.o: ncurses_def.h +obsolete.o: term.h +obsolete.o: unctrl.h +obsolete.po: curses.h +obsolete.po: ncurses_def.h +obsolete.po: term.h +obsolete.po: unctrl.h parse_entry.So: curses.h parse_entry.So: ncurses_def.h parse_entry.So: parametrized.h @@ -1659,18 +1660,6 @@ safe_sprintf.po: curses.h safe_sprintf.po: ncurses_def.h safe_sprintf.po: term.h safe_sprintf.po: unctrl.h -setbuf.So: curses.h -setbuf.So: ncurses_def.h -setbuf.So: term.h -setbuf.So: unctrl.h -setbuf.o: curses.h -setbuf.o: ncurses_def.h -setbuf.o: term.h -setbuf.o: unctrl.h -setbuf.po: curses.h -setbuf.po: ncurses_def.h -setbuf.po: term.h -setbuf.po: unctrl.h strings.So: curses.h strings.So: ncurses_def.h strings.So: term.h diff --git a/lib/ncurses/ncursesw/Makefile.depend b/lib/ncurses/ncursesw/Makefile.depend index c1c18b271ec9..78f9b8a1f9ee 100644 --- a/lib/ncurses/ncursesw/Makefile.depend +++ b/lib/ncurses/ncursesw/Makefile.depend @@ -17,2033 +17,2513 @@ DIRDEPS = \ # local dependencies - needed for -jN in clean tree access.So: curses.h access.So: ncurses_def.h +access.So: ncurses_dll.h access.So: term.h access.So: unctrl.h access.o: curses.h access.o: ncurses_def.h +access.o: ncurses_dll.h access.o: term.h access.o: unctrl.h access.po: curses.h access.po: ncurses_def.h +access.po: ncurses_dll.h access.po: term.h access.po: unctrl.h add_tries.So: curses.h add_tries.So: ncurses_def.h +add_tries.So: ncurses_dll.h add_tries.So: term.h add_tries.So: unctrl.h add_tries.o: curses.h add_tries.o: ncurses_def.h +add_tries.o: ncurses_dll.h add_tries.o: term.h add_tries.o: unctrl.h add_tries.po: curses.h add_tries.po: ncurses_def.h +add_tries.po: ncurses_dll.h add_tries.po: term.h add_tries.po: unctrl.h alloc_entry.So: curses.h alloc_entry.So: ncurses_def.h +alloc_entry.So: ncurses_dll.h alloc_entry.So: term.h alloc_entry.So: unctrl.h alloc_entry.o: curses.h alloc_entry.o: ncurses_def.h +alloc_entry.o: ncurses_dll.h alloc_entry.o: term.h alloc_entry.o: unctrl.h alloc_entry.po: curses.h alloc_entry.po: ncurses_def.h +alloc_entry.po: ncurses_dll.h alloc_entry.po: term.h alloc_entry.po: unctrl.h alloc_ttype.So: curses.h alloc_ttype.So: ncurses_def.h +alloc_ttype.So: ncurses_dll.h alloc_ttype.So: term.h alloc_ttype.So: unctrl.h alloc_ttype.o: curses.h alloc_ttype.o: ncurses_def.h +alloc_ttype.o: ncurses_dll.h alloc_ttype.o: term.h alloc_ttype.o: unctrl.h alloc_ttype.po: curses.h alloc_ttype.po: ncurses_def.h +alloc_ttype.po: ncurses_dll.h alloc_ttype.po: term.h alloc_ttype.po: unctrl.h captoinfo.So: curses.h captoinfo.So: ncurses_def.h +captoinfo.So: ncurses_dll.h captoinfo.So: term.h captoinfo.So: unctrl.h captoinfo.o: curses.h captoinfo.o: ncurses_def.h +captoinfo.o: ncurses_dll.h captoinfo.o: term.h captoinfo.o: unctrl.h captoinfo.po: curses.h captoinfo.po: ncurses_def.h +captoinfo.po: ncurses_dll.h captoinfo.po: term.h captoinfo.po: unctrl.h charable.So: curses.h charable.So: ncurses_def.h +charable.So: ncurses_dll.h charable.So: term.h charable.So: unctrl.h charable.o: curses.h charable.o: ncurses_def.h +charable.o: ncurses_dll.h charable.o: term.h charable.o: unctrl.h charable.po: curses.h charable.po: ncurses_def.h +charable.po: ncurses_dll.h charable.po: term.h charable.po: unctrl.h codes.So: codes.c codes.So: curses.h codes.So: ncurses_def.h +codes.So: ncurses_dll.h codes.So: term.h codes.So: unctrl.h codes.o: codes.c codes.o: curses.h codes.o: ncurses_def.h +codes.o: ncurses_dll.h codes.o: term.h codes.o: unctrl.h codes.po: codes.c codes.po: curses.h codes.po: ncurses_def.h +codes.po: ncurses_dll.h codes.po: term.h codes.po: unctrl.h comp_captab.So: comp_captab.c comp_captab.So: curses.h comp_captab.So: hashsize.h comp_captab.So: ncurses_def.h +comp_captab.So: ncurses_dll.h comp_captab.So: term.h comp_captab.So: unctrl.h comp_captab.o: comp_captab.c comp_captab.o: curses.h comp_captab.o: hashsize.h comp_captab.o: ncurses_def.h +comp_captab.o: ncurses_dll.h comp_captab.o: term.h comp_captab.o: unctrl.h comp_captab.po: comp_captab.c comp_captab.po: curses.h comp_captab.po: hashsize.h comp_captab.po: ncurses_def.h +comp_captab.po: ncurses_dll.h comp_captab.po: term.h comp_captab.po: unctrl.h comp_error.So: curses.h comp_error.So: ncurses_def.h +comp_error.So: ncurses_dll.h comp_error.So: term.h comp_error.So: unctrl.h comp_error.o: curses.h comp_error.o: ncurses_def.h +comp_error.o: ncurses_dll.h comp_error.o: term.h comp_error.o: unctrl.h comp_error.po: curses.h comp_error.po: ncurses_def.h +comp_error.po: ncurses_dll.h comp_error.po: term.h comp_error.po: unctrl.h comp_expand.So: curses.h comp_expand.So: ncurses_def.h +comp_expand.So: ncurses_dll.h comp_expand.So: term.h comp_expand.So: unctrl.h comp_expand.o: curses.h comp_expand.o: ncurses_def.h +comp_expand.o: ncurses_dll.h comp_expand.o: term.h comp_expand.o: unctrl.h comp_expand.po: curses.h comp_expand.po: ncurses_def.h +comp_expand.po: ncurses_dll.h comp_expand.po: term.h comp_expand.po: unctrl.h comp_hash.So: curses.h comp_hash.So: hashsize.h comp_hash.So: ncurses_def.h +comp_hash.So: ncurses_dll.h comp_hash.So: term.h comp_hash.So: unctrl.h comp_hash.o: curses.h comp_hash.o: hashsize.h comp_hash.o: ncurses_def.h +comp_hash.o: ncurses_dll.h comp_hash.o: term.h comp_hash.o: unctrl.h comp_hash.po: curses.h comp_hash.po: hashsize.h comp_hash.po: ncurses_def.h +comp_hash.po: ncurses_dll.h comp_hash.po: term.h comp_hash.po: unctrl.h comp_parse.So: curses.h comp_parse.So: ncurses_def.h +comp_parse.So: ncurses_dll.h comp_parse.So: term.h comp_parse.So: unctrl.h comp_parse.o: curses.h comp_parse.o: ncurses_def.h +comp_parse.o: ncurses_dll.h comp_parse.o: term.h comp_parse.o: unctrl.h comp_parse.po: curses.h comp_parse.po: ncurses_def.h +comp_parse.po: ncurses_dll.h comp_parse.po: term.h comp_parse.po: unctrl.h comp_scan.So: curses.h comp_scan.So: ncurses_def.h +comp_scan.So: ncurses_dll.h comp_scan.So: term.h comp_scan.So: unctrl.h comp_scan.o: curses.h comp_scan.o: ncurses_def.h +comp_scan.o: ncurses_dll.h comp_scan.o: term.h comp_scan.o: unctrl.h comp_scan.po: curses.h comp_scan.po: ncurses_def.h +comp_scan.po: ncurses_dll.h comp_scan.po: term.h comp_scan.po: unctrl.h db_iterator.So: curses.h db_iterator.So: ncurses_def.h +db_iterator.So: ncurses_dll.h db_iterator.So: term.h db_iterator.So: unctrl.h db_iterator.o: curses.h db_iterator.o: ncurses_def.h +db_iterator.o: ncurses_dll.h db_iterator.o: term.h db_iterator.o: unctrl.h db_iterator.po: curses.h db_iterator.po: ncurses_def.h +db_iterator.po: ncurses_dll.h db_iterator.po: term.h db_iterator.po: unctrl.h define_key.So: curses.h define_key.So: ncurses_def.h +define_key.So: ncurses_dll.h define_key.So: term.h define_key.So: unctrl.h define_key.o: curses.h define_key.o: ncurses_def.h +define_key.o: ncurses_dll.h define_key.o: term.h define_key.o: unctrl.h define_key.po: curses.h define_key.po: ncurses_def.h +define_key.po: ncurses_dll.h define_key.po: term.h define_key.po: unctrl.h doalloc.So: curses.h doalloc.So: ncurses_def.h +doalloc.So: ncurses_dll.h doalloc.So: term.h doalloc.So: unctrl.h doalloc.o: curses.h doalloc.o: ncurses_def.h +doalloc.o: ncurses_dll.h doalloc.o: term.h doalloc.o: unctrl.h doalloc.po: curses.h doalloc.po: ncurses_def.h +doalloc.po: ncurses_dll.h doalloc.po: term.h doalloc.po: unctrl.h entries.So: curses.h entries.So: ncurses_def.h +entries.So: ncurses_dll.h entries.So: term.h entries.So: unctrl.h entries.o: curses.h entries.o: ncurses_def.h +entries.o: ncurses_dll.h entries.o: term.h entries.o: unctrl.h entries.po: curses.h entries.po: ncurses_def.h +entries.po: ncurses_dll.h entries.po: term.h entries.po: unctrl.h expanded.So: curses.h expanded.So: expanded.c expanded.So: ncurses_def.h +expanded.So: ncurses_dll.h expanded.So: term.h expanded.So: unctrl.h expanded.o: curses.h expanded.o: expanded.c expanded.o: ncurses_def.h +expanded.o: ncurses_dll.h expanded.o: term.h expanded.o: unctrl.h expanded.po: curses.h expanded.po: expanded.c expanded.po: ncurses_def.h +expanded.po: ncurses_dll.h expanded.po: term.h expanded.po: unctrl.h fallback.So: curses.h fallback.So: fallback.c fallback.So: ncurses_def.h +fallback.So: ncurses_dll.h fallback.So: term.h fallback.So: unctrl.h fallback.o: curses.h fallback.o: fallback.c fallback.o: ncurses_def.h +fallback.o: ncurses_dll.h fallback.o: term.h fallback.o: unctrl.h fallback.po: curses.h fallback.po: fallback.c fallback.po: ncurses_def.h +fallback.po: ncurses_dll.h fallback.po: term.h fallback.po: unctrl.h free_ttype.So: curses.h free_ttype.So: ncurses_def.h +free_ttype.So: ncurses_dll.h free_ttype.So: term.h free_ttype.So: unctrl.h free_ttype.o: curses.h free_ttype.o: ncurses_def.h +free_ttype.o: ncurses_dll.h free_ttype.o: term.h free_ttype.o: unctrl.h free_ttype.po: curses.h free_ttype.po: ncurses_def.h +free_ttype.po: ncurses_dll.h free_ttype.po: term.h free_ttype.po: unctrl.h getenv_num.So: curses.h getenv_num.So: ncurses_def.h +getenv_num.So: ncurses_dll.h getenv_num.So: term.h getenv_num.So: unctrl.h getenv_num.o: curses.h getenv_num.o: ncurses_def.h +getenv_num.o: ncurses_dll.h getenv_num.o: term.h getenv_num.o: unctrl.h getenv_num.po: curses.h getenv_num.po: ncurses_def.h +getenv_num.po: ncurses_dll.h getenv_num.po: term.h getenv_num.po: unctrl.h hardscroll.So: curses.h hardscroll.So: ncurses_def.h +hardscroll.So: ncurses_dll.h hardscroll.So: term.h hardscroll.So: unctrl.h hardscroll.o: curses.h hardscroll.o: ncurses_def.h +hardscroll.o: ncurses_dll.h hardscroll.o: term.h hardscroll.o: unctrl.h hardscroll.po: curses.h hardscroll.po: ncurses_def.h +hardscroll.po: ncurses_dll.h hardscroll.po: term.h hardscroll.po: unctrl.h hashed_db.So: curses.h hashed_db.So: ncurses_def.h +hashed_db.So: ncurses_dll.h hashed_db.So: term.h hashed_db.So: unctrl.h hashed_db.o: curses.h hashed_db.o: ncurses_def.h +hashed_db.o: ncurses_dll.h hashed_db.o: term.h hashed_db.o: unctrl.h hashed_db.po: curses.h hashed_db.po: ncurses_def.h +hashed_db.po: ncurses_dll.h hashed_db.po: term.h hashed_db.po: unctrl.h hashmap.So: curses.h hashmap.So: ncurses_def.h +hashmap.So: ncurses_dll.h hashmap.So: term.h hashmap.So: unctrl.h hashmap.o: curses.h hashmap.o: ncurses_def.h +hashmap.o: ncurses_dll.h hashmap.o: term.h hashmap.o: unctrl.h hashmap.po: curses.h hashmap.po: ncurses_def.h +hashmap.po: ncurses_dll.h hashmap.po: term.h hashmap.po: unctrl.h home_terminfo.So: curses.h home_terminfo.So: ncurses_def.h +home_terminfo.So: ncurses_dll.h home_terminfo.So: term.h home_terminfo.So: unctrl.h home_terminfo.o: curses.h home_terminfo.o: ncurses_def.h +home_terminfo.o: ncurses_dll.h home_terminfo.o: term.h home_terminfo.o: unctrl.h home_terminfo.po: curses.h home_terminfo.po: ncurses_def.h +home_terminfo.po: ncurses_dll.h home_terminfo.po: term.h home_terminfo.po: unctrl.h init_keytry.So: curses.h init_keytry.So: init_keytry.h init_keytry.So: ncurses_def.h +init_keytry.So: ncurses_dll.h init_keytry.So: term.h init_keytry.So: unctrl.h init_keytry.o: curses.h init_keytry.o: init_keytry.h init_keytry.o: ncurses_def.h +init_keytry.o: ncurses_dll.h init_keytry.o: term.h init_keytry.o: unctrl.h init_keytry.po: curses.h init_keytry.po: init_keytry.h init_keytry.po: ncurses_def.h +init_keytry.po: ncurses_dll.h init_keytry.po: term.h init_keytry.po: unctrl.h key_defined.So: curses.h key_defined.So: ncurses_def.h +key_defined.So: ncurses_dll.h key_defined.So: term.h key_defined.So: unctrl.h key_defined.o: curses.h key_defined.o: ncurses_def.h +key_defined.o: ncurses_dll.h key_defined.o: term.h key_defined.o: unctrl.h key_defined.po: curses.h key_defined.po: ncurses_def.h +key_defined.po: ncurses_dll.h key_defined.po: term.h key_defined.po: unctrl.h keybound.So: curses.h keybound.So: ncurses_def.h +keybound.So: ncurses_dll.h keybound.So: term.h keybound.So: unctrl.h keybound.o: curses.h keybound.o: ncurses_def.h +keybound.o: ncurses_dll.h keybound.o: term.h keybound.o: unctrl.h keybound.po: curses.h keybound.po: ncurses_def.h +keybound.po: ncurses_dll.h keybound.po: term.h keybound.po: unctrl.h keyok.So: curses.h keyok.So: ncurses_def.h +keyok.So: ncurses_dll.h keyok.So: term.h keyok.So: unctrl.h keyok.o: curses.h keyok.o: ncurses_def.h +keyok.o: ncurses_dll.h keyok.o: term.h keyok.o: unctrl.h keyok.po: curses.h keyok.po: ncurses_def.h +keyok.po: ncurses_dll.h keyok.po: term.h keyok.po: unctrl.h legacy_coding.So: curses.h legacy_coding.So: ncurses_def.h +legacy_coding.So: ncurses_dll.h legacy_coding.So: term.h legacy_coding.So: unctrl.h legacy_coding.o: curses.h legacy_coding.o: ncurses_def.h +legacy_coding.o: ncurses_dll.h legacy_coding.o: term.h legacy_coding.o: unctrl.h legacy_coding.po: curses.h legacy_coding.po: ncurses_def.h +legacy_coding.po: ncurses_dll.h legacy_coding.po: term.h legacy_coding.po: unctrl.h lib_acs.So: curses.h lib_acs.So: ncurses_def.h +lib_acs.So: ncurses_dll.h lib_acs.So: term.h lib_acs.So: unctrl.h lib_acs.o: curses.h lib_acs.o: ncurses_def.h +lib_acs.o: ncurses_dll.h lib_acs.o: term.h lib_acs.o: unctrl.h lib_acs.po: curses.h lib_acs.po: ncurses_def.h +lib_acs.po: ncurses_dll.h lib_acs.po: term.h lib_acs.po: unctrl.h lib_add_wch.So: curses.h lib_add_wch.So: ncurses_def.h +lib_add_wch.So: ncurses_dll.h lib_add_wch.So: term.h lib_add_wch.So: unctrl.h lib_add_wch.o: curses.h lib_add_wch.o: ncurses_def.h +lib_add_wch.o: ncurses_dll.h lib_add_wch.o: term.h lib_add_wch.o: unctrl.h lib_add_wch.po: curses.h lib_add_wch.po: ncurses_def.h +lib_add_wch.po: ncurses_dll.h lib_add_wch.po: term.h lib_add_wch.po: unctrl.h lib_addch.So: curses.h lib_addch.So: ncurses_def.h +lib_addch.So: ncurses_dll.h lib_addch.So: term.h lib_addch.So: unctrl.h lib_addch.o: curses.h lib_addch.o: ncurses_def.h +lib_addch.o: ncurses_dll.h lib_addch.o: term.h lib_addch.o: unctrl.h lib_addch.po: curses.h lib_addch.po: ncurses_def.h +lib_addch.po: ncurses_dll.h lib_addch.po: term.h lib_addch.po: unctrl.h lib_addstr.So: curses.h lib_addstr.So: ncurses_def.h +lib_addstr.So: ncurses_dll.h lib_addstr.So: term.h lib_addstr.So: unctrl.h lib_addstr.o: curses.h lib_addstr.o: ncurses_def.h +lib_addstr.o: ncurses_dll.h lib_addstr.o: term.h lib_addstr.o: unctrl.h lib_addstr.po: curses.h lib_addstr.po: ncurses_def.h +lib_addstr.po: ncurses_dll.h lib_addstr.po: term.h lib_addstr.po: unctrl.h lib_baudrate.So: curses.h lib_baudrate.So: ncurses_def.h +lib_baudrate.So: ncurses_dll.h lib_baudrate.So: term.h lib_baudrate.So: termcap.h lib_baudrate.So: unctrl.h lib_baudrate.o: curses.h lib_baudrate.o: ncurses_def.h +lib_baudrate.o: ncurses_dll.h lib_baudrate.o: term.h lib_baudrate.o: termcap.h lib_baudrate.o: unctrl.h lib_baudrate.po: curses.h lib_baudrate.po: ncurses_def.h +lib_baudrate.po: ncurses_dll.h lib_baudrate.po: term.h lib_baudrate.po: termcap.h lib_baudrate.po: unctrl.h lib_beep.So: curses.h lib_beep.So: ncurses_def.h +lib_beep.So: ncurses_dll.h lib_beep.So: term.h lib_beep.So: unctrl.h lib_beep.o: curses.h lib_beep.o: ncurses_def.h +lib_beep.o: ncurses_dll.h lib_beep.o: term.h lib_beep.o: unctrl.h lib_beep.po: curses.h lib_beep.po: ncurses_def.h +lib_beep.po: ncurses_dll.h lib_beep.po: term.h lib_beep.po: unctrl.h lib_bkgd.So: curses.h lib_bkgd.So: ncurses_def.h +lib_bkgd.So: ncurses_dll.h lib_bkgd.So: term.h lib_bkgd.So: unctrl.h lib_bkgd.o: curses.h lib_bkgd.o: ncurses_def.h +lib_bkgd.o: ncurses_dll.h lib_bkgd.o: term.h lib_bkgd.o: unctrl.h lib_bkgd.po: curses.h lib_bkgd.po: ncurses_def.h +lib_bkgd.po: ncurses_dll.h lib_bkgd.po: term.h lib_bkgd.po: unctrl.h lib_box.So: curses.h lib_box.So: ncurses_def.h +lib_box.So: ncurses_dll.h lib_box.So: term.h lib_box.So: unctrl.h lib_box.o: curses.h lib_box.o: ncurses_def.h +lib_box.o: ncurses_dll.h lib_box.o: term.h lib_box.o: unctrl.h lib_box.po: curses.h lib_box.po: ncurses_def.h +lib_box.po: ncurses_dll.h lib_box.po: term.h lib_box.po: unctrl.h lib_box_set.So: curses.h lib_box_set.So: ncurses_def.h +lib_box_set.So: ncurses_dll.h lib_box_set.So: term.h lib_box_set.So: unctrl.h lib_box_set.o: curses.h lib_box_set.o: ncurses_def.h +lib_box_set.o: ncurses_dll.h lib_box_set.o: term.h lib_box_set.o: unctrl.h lib_box_set.po: curses.h lib_box_set.po: ncurses_def.h +lib_box_set.po: ncurses_dll.h lib_box_set.po: term.h lib_box_set.po: unctrl.h lib_cchar.So: curses.h lib_cchar.So: ncurses_def.h +lib_cchar.So: ncurses_dll.h lib_cchar.So: term.h lib_cchar.So: unctrl.h lib_cchar.o: curses.h lib_cchar.o: ncurses_def.h +lib_cchar.o: ncurses_dll.h lib_cchar.o: term.h lib_cchar.o: unctrl.h lib_cchar.po: curses.h lib_cchar.po: ncurses_def.h +lib_cchar.po: ncurses_dll.h lib_cchar.po: term.h lib_cchar.po: unctrl.h lib_chgat.So: curses.h lib_chgat.So: ncurses_def.h +lib_chgat.So: ncurses_dll.h lib_chgat.So: term.h lib_chgat.So: unctrl.h lib_chgat.o: curses.h lib_chgat.o: ncurses_def.h +lib_chgat.o: ncurses_dll.h lib_chgat.o: term.h lib_chgat.o: unctrl.h lib_chgat.po: curses.h lib_chgat.po: ncurses_def.h +lib_chgat.po: ncurses_dll.h lib_chgat.po: term.h lib_chgat.po: unctrl.h lib_clear.So: curses.h lib_clear.So: ncurses_def.h +lib_clear.So: ncurses_dll.h lib_clear.So: term.h lib_clear.So: unctrl.h lib_clear.o: curses.h lib_clear.o: ncurses_def.h +lib_clear.o: ncurses_dll.h lib_clear.o: term.h lib_clear.o: unctrl.h lib_clear.po: curses.h lib_clear.po: ncurses_def.h +lib_clear.po: ncurses_dll.h lib_clear.po: term.h lib_clear.po: unctrl.h lib_clearok.So: curses.h lib_clearok.So: ncurses_def.h +lib_clearok.So: ncurses_dll.h lib_clearok.So: term.h lib_clearok.So: unctrl.h lib_clearok.o: curses.h lib_clearok.o: ncurses_def.h +lib_clearok.o: ncurses_dll.h lib_clearok.o: term.h lib_clearok.o: unctrl.h lib_clearok.po: curses.h lib_clearok.po: ncurses_def.h +lib_clearok.po: ncurses_dll.h lib_clearok.po: term.h lib_clearok.po: unctrl.h lib_clrbot.So: curses.h lib_clrbot.So: ncurses_def.h +lib_clrbot.So: ncurses_dll.h lib_clrbot.So: term.h lib_clrbot.So: unctrl.h lib_clrbot.o: curses.h lib_clrbot.o: ncurses_def.h +lib_clrbot.o: ncurses_dll.h lib_clrbot.o: term.h lib_clrbot.o: unctrl.h lib_clrbot.po: curses.h lib_clrbot.po: ncurses_def.h +lib_clrbot.po: ncurses_dll.h lib_clrbot.po: term.h lib_clrbot.po: unctrl.h lib_clreol.So: curses.h lib_clreol.So: ncurses_def.h +lib_clreol.So: ncurses_dll.h lib_clreol.So: term.h lib_clreol.So: unctrl.h lib_clreol.o: curses.h lib_clreol.o: ncurses_def.h +lib_clreol.o: ncurses_dll.h lib_clreol.o: term.h lib_clreol.o: unctrl.h lib_clreol.po: curses.h lib_clreol.po: ncurses_def.h +lib_clreol.po: ncurses_dll.h lib_clreol.po: term.h lib_clreol.po: unctrl.h lib_color.So: curses.h lib_color.So: ncurses_def.h +lib_color.So: ncurses_dll.h lib_color.So: term.h lib_color.So: unctrl.h lib_color.o: curses.h lib_color.o: ncurses_def.h +lib_color.o: ncurses_dll.h lib_color.o: term.h lib_color.o: unctrl.h lib_color.po: curses.h lib_color.po: ncurses_def.h +lib_color.po: ncurses_dll.h lib_color.po: term.h lib_color.po: unctrl.h lib_colorset.So: curses.h lib_colorset.So: ncurses_def.h +lib_colorset.So: ncurses_dll.h lib_colorset.So: term.h lib_colorset.So: unctrl.h lib_colorset.o: curses.h lib_colorset.o: ncurses_def.h +lib_colorset.o: ncurses_dll.h lib_colorset.o: term.h lib_colorset.o: unctrl.h lib_colorset.po: curses.h lib_colorset.po: ncurses_def.h +lib_colorset.po: ncurses_dll.h lib_colorset.po: term.h lib_colorset.po: unctrl.h lib_cur_term.So: curses.h lib_cur_term.So: ncurses_def.h +lib_cur_term.So: ncurses_dll.h lib_cur_term.So: term.h lib_cur_term.So: termcap.h lib_cur_term.So: unctrl.h lib_cur_term.o: curses.h lib_cur_term.o: ncurses_def.h +lib_cur_term.o: ncurses_dll.h lib_cur_term.o: term.h lib_cur_term.o: termcap.h lib_cur_term.o: unctrl.h lib_cur_term.po: curses.h lib_cur_term.po: ncurses_def.h +lib_cur_term.po: ncurses_dll.h lib_cur_term.po: term.h lib_cur_term.po: termcap.h lib_cur_term.po: unctrl.h lib_data.So: curses.h lib_data.So: ncurses_def.h +lib_data.So: ncurses_dll.h lib_data.So: term.h lib_data.So: unctrl.h lib_data.o: curses.h lib_data.o: ncurses_def.h +lib_data.o: ncurses_dll.h lib_data.o: term.h lib_data.o: unctrl.h lib_data.po: curses.h lib_data.po: ncurses_def.h +lib_data.po: ncurses_dll.h lib_data.po: term.h lib_data.po: unctrl.h lib_delch.So: curses.h lib_delch.So: ncurses_def.h +lib_delch.So: ncurses_dll.h lib_delch.So: term.h lib_delch.So: unctrl.h lib_delch.o: curses.h lib_delch.o: ncurses_def.h +lib_delch.o: ncurses_dll.h lib_delch.o: term.h lib_delch.o: unctrl.h lib_delch.po: curses.h lib_delch.po: ncurses_def.h +lib_delch.po: ncurses_dll.h lib_delch.po: term.h lib_delch.po: unctrl.h lib_delwin.So: curses.h lib_delwin.So: ncurses_def.h +lib_delwin.So: ncurses_dll.h lib_delwin.So: term.h lib_delwin.So: unctrl.h lib_delwin.o: curses.h lib_delwin.o: ncurses_def.h +lib_delwin.o: ncurses_dll.h lib_delwin.o: term.h lib_delwin.o: unctrl.h lib_delwin.po: curses.h lib_delwin.po: ncurses_def.h +lib_delwin.po: ncurses_dll.h lib_delwin.po: term.h lib_delwin.po: unctrl.h lib_dft_fgbg.So: curses.h lib_dft_fgbg.So: ncurses_def.h +lib_dft_fgbg.So: ncurses_dll.h lib_dft_fgbg.So: term.h lib_dft_fgbg.So: unctrl.h lib_dft_fgbg.o: curses.h lib_dft_fgbg.o: ncurses_def.h +lib_dft_fgbg.o: ncurses_dll.h lib_dft_fgbg.o: term.h lib_dft_fgbg.o: unctrl.h lib_dft_fgbg.po: curses.h lib_dft_fgbg.po: ncurses_def.h +lib_dft_fgbg.po: ncurses_dll.h lib_dft_fgbg.po: term.h lib_dft_fgbg.po: unctrl.h lib_echo.So: curses.h lib_echo.So: ncurses_def.h +lib_echo.So: ncurses_dll.h lib_echo.So: term.h lib_echo.So: unctrl.h lib_echo.o: curses.h lib_echo.o: ncurses_def.h +lib_echo.o: ncurses_dll.h lib_echo.o: term.h lib_echo.o: unctrl.h lib_echo.po: curses.h lib_echo.po: ncurses_def.h +lib_echo.po: ncurses_dll.h lib_echo.po: term.h lib_echo.po: unctrl.h lib_endwin.So: curses.h lib_endwin.So: ncurses_def.h +lib_endwin.So: ncurses_dll.h lib_endwin.So: term.h lib_endwin.So: unctrl.h lib_endwin.o: curses.h lib_endwin.o: ncurses_def.h +lib_endwin.o: ncurses_dll.h lib_endwin.o: term.h lib_endwin.o: unctrl.h lib_endwin.po: curses.h lib_endwin.po: ncurses_def.h +lib_endwin.po: ncurses_dll.h lib_endwin.po: term.h lib_endwin.po: unctrl.h lib_erase.So: curses.h lib_erase.So: ncurses_def.h +lib_erase.So: ncurses_dll.h lib_erase.So: term.h lib_erase.So: unctrl.h lib_erase.o: curses.h lib_erase.o: ncurses_def.h +lib_erase.o: ncurses_dll.h lib_erase.o: term.h lib_erase.o: unctrl.h lib_erase.po: curses.h lib_erase.po: ncurses_def.h +lib_erase.po: ncurses_dll.h lib_erase.po: term.h lib_erase.po: unctrl.h lib_erasewchar.So: curses.h lib_erasewchar.So: ncurses_def.h +lib_erasewchar.So: ncurses_dll.h lib_erasewchar.So: term.h lib_erasewchar.So: unctrl.h lib_erasewchar.o: curses.h lib_erasewchar.o: ncurses_def.h +lib_erasewchar.o: ncurses_dll.h lib_erasewchar.o: term.h lib_erasewchar.o: unctrl.h lib_erasewchar.po: curses.h lib_erasewchar.po: ncurses_def.h +lib_erasewchar.po: ncurses_dll.h lib_erasewchar.po: term.h lib_erasewchar.po: unctrl.h lib_flash.So: curses.h lib_flash.So: ncurses_def.h +lib_flash.So: ncurses_dll.h lib_flash.So: term.h lib_flash.So: unctrl.h lib_flash.o: curses.h lib_flash.o: ncurses_def.h +lib_flash.o: ncurses_dll.h lib_flash.o: term.h lib_flash.o: unctrl.h lib_flash.po: curses.h lib_flash.po: ncurses_def.h +lib_flash.po: ncurses_dll.h lib_flash.po: term.h lib_flash.po: unctrl.h lib_freeall.So: curses.h lib_freeall.So: ncurses_def.h +lib_freeall.So: ncurses_dll.h lib_freeall.So: term.h lib_freeall.So: unctrl.h lib_freeall.o: curses.h lib_freeall.o: ncurses_def.h +lib_freeall.o: ncurses_dll.h lib_freeall.o: term.h lib_freeall.o: unctrl.h lib_freeall.po: curses.h lib_freeall.po: ncurses_def.h +lib_freeall.po: ncurses_dll.h lib_freeall.po: term.h lib_freeall.po: unctrl.h lib_gen.So: curses.h lib_gen.So: lib_gen.c lib_gen.So: ncurses_def.h +lib_gen.So: ncurses_dll.h lib_gen.So: term.h lib_gen.So: unctrl.h lib_gen.o: curses.h lib_gen.o: lib_gen.c lib_gen.o: ncurses_def.h +lib_gen.o: ncurses_dll.h lib_gen.o: term.h lib_gen.o: unctrl.h lib_gen.po: curses.h lib_gen.po: lib_gen.c lib_gen.po: ncurses_def.h +lib_gen.po: ncurses_dll.h lib_gen.po: term.h lib_gen.po: unctrl.h lib_get_wch.So: curses.h lib_get_wch.So: ncurses_def.h +lib_get_wch.So: ncurses_dll.h lib_get_wch.So: term.h lib_get_wch.So: unctrl.h lib_get_wch.o: curses.h lib_get_wch.o: ncurses_def.h +lib_get_wch.o: ncurses_dll.h lib_get_wch.o: term.h lib_get_wch.o: unctrl.h lib_get_wch.po: curses.h lib_get_wch.po: ncurses_def.h +lib_get_wch.po: ncurses_dll.h lib_get_wch.po: term.h lib_get_wch.po: unctrl.h lib_get_wstr.So: curses.h lib_get_wstr.So: ncurses_def.h +lib_get_wstr.So: ncurses_dll.h lib_get_wstr.So: term.h lib_get_wstr.So: unctrl.h lib_get_wstr.o: curses.h lib_get_wstr.o: ncurses_def.h +lib_get_wstr.o: ncurses_dll.h lib_get_wstr.o: term.h lib_get_wstr.o: unctrl.h lib_get_wstr.po: curses.h lib_get_wstr.po: ncurses_def.h +lib_get_wstr.po: ncurses_dll.h lib_get_wstr.po: term.h lib_get_wstr.po: unctrl.h lib_getch.So: curses.h lib_getch.So: ncurses_def.h +lib_getch.So: ncurses_dll.h lib_getch.So: term.h lib_getch.So: unctrl.h lib_getch.o: curses.h lib_getch.o: ncurses_def.h +lib_getch.o: ncurses_dll.h lib_getch.o: term.h lib_getch.o: unctrl.h lib_getch.po: curses.h lib_getch.po: ncurses_def.h +lib_getch.po: ncurses_dll.h lib_getch.po: term.h lib_getch.po: unctrl.h lib_getstr.So: curses.h lib_getstr.So: ncurses_def.h +lib_getstr.So: ncurses_dll.h lib_getstr.So: term.h lib_getstr.So: unctrl.h lib_getstr.o: curses.h lib_getstr.o: ncurses_def.h +lib_getstr.o: ncurses_dll.h lib_getstr.o: term.h lib_getstr.o: unctrl.h lib_getstr.po: curses.h lib_getstr.po: ncurses_def.h +lib_getstr.po: ncurses_dll.h lib_getstr.po: term.h lib_getstr.po: unctrl.h lib_has_cap.So: curses.h lib_has_cap.So: ncurses_def.h +lib_has_cap.So: ncurses_dll.h lib_has_cap.So: term.h lib_has_cap.So: unctrl.h lib_has_cap.o: curses.h lib_has_cap.o: ncurses_def.h +lib_has_cap.o: ncurses_dll.h lib_has_cap.o: term.h lib_has_cap.o: unctrl.h lib_has_cap.po: curses.h lib_has_cap.po: ncurses_def.h +lib_has_cap.po: ncurses_dll.h lib_has_cap.po: term.h lib_has_cap.po: unctrl.h lib_hline.So: curses.h lib_hline.So: ncurses_def.h +lib_hline.So: ncurses_dll.h lib_hline.So: term.h lib_hline.So: unctrl.h lib_hline.o: curses.h lib_hline.o: ncurses_def.h +lib_hline.o: ncurses_dll.h lib_hline.o: term.h lib_hline.o: unctrl.h lib_hline.po: curses.h lib_hline.po: ncurses_def.h +lib_hline.po: ncurses_dll.h lib_hline.po: term.h lib_hline.po: unctrl.h lib_hline_set.So: curses.h lib_hline_set.So: ncurses_def.h +lib_hline_set.So: ncurses_dll.h lib_hline_set.So: term.h lib_hline_set.So: unctrl.h lib_hline_set.o: curses.h lib_hline_set.o: ncurses_def.h +lib_hline_set.o: ncurses_dll.h lib_hline_set.o: term.h lib_hline_set.o: unctrl.h lib_hline_set.po: curses.h lib_hline_set.po: ncurses_def.h +lib_hline_set.po: ncurses_dll.h lib_hline_set.po: term.h lib_hline_set.po: unctrl.h lib_immedok.So: curses.h lib_immedok.So: ncurses_def.h +lib_immedok.So: ncurses_dll.h lib_immedok.So: term.h lib_immedok.So: unctrl.h lib_immedok.o: curses.h lib_immedok.o: ncurses_def.h +lib_immedok.o: ncurses_dll.h lib_immedok.o: term.h lib_immedok.o: unctrl.h lib_immedok.po: curses.h lib_immedok.po: ncurses_def.h +lib_immedok.po: ncurses_dll.h lib_immedok.po: term.h lib_immedok.po: unctrl.h lib_in_wch.So: curses.h lib_in_wch.So: ncurses_def.h +lib_in_wch.So: ncurses_dll.h lib_in_wch.So: term.h lib_in_wch.So: unctrl.h lib_in_wch.o: curses.h lib_in_wch.o: ncurses_def.h +lib_in_wch.o: ncurses_dll.h lib_in_wch.o: term.h lib_in_wch.o: unctrl.h lib_in_wch.po: curses.h lib_in_wch.po: ncurses_def.h +lib_in_wch.po: ncurses_dll.h lib_in_wch.po: term.h lib_in_wch.po: unctrl.h lib_in_wchnstr.So: curses.h lib_in_wchnstr.So: ncurses_def.h +lib_in_wchnstr.So: ncurses_dll.h lib_in_wchnstr.So: term.h lib_in_wchnstr.So: unctrl.h lib_in_wchnstr.o: curses.h lib_in_wchnstr.o: ncurses_def.h +lib_in_wchnstr.o: ncurses_dll.h lib_in_wchnstr.o: term.h lib_in_wchnstr.o: unctrl.h lib_in_wchnstr.po: curses.h lib_in_wchnstr.po: ncurses_def.h +lib_in_wchnstr.po: ncurses_dll.h lib_in_wchnstr.po: term.h lib_in_wchnstr.po: unctrl.h lib_inchstr.So: curses.h lib_inchstr.So: ncurses_def.h +lib_inchstr.So: ncurses_dll.h lib_inchstr.So: term.h lib_inchstr.So: unctrl.h lib_inchstr.o: curses.h lib_inchstr.o: ncurses_def.h +lib_inchstr.o: ncurses_dll.h lib_inchstr.o: term.h lib_inchstr.o: unctrl.h lib_inchstr.po: curses.h lib_inchstr.po: ncurses_def.h +lib_inchstr.po: ncurses_dll.h lib_inchstr.po: term.h lib_inchstr.po: unctrl.h lib_initscr.So: curses.h lib_initscr.So: ncurses_def.h +lib_initscr.So: ncurses_dll.h lib_initscr.So: term.h lib_initscr.So: unctrl.h lib_initscr.o: curses.h lib_initscr.o: ncurses_def.h +lib_initscr.o: ncurses_dll.h lib_initscr.o: term.h lib_initscr.o: unctrl.h lib_initscr.po: curses.h lib_initscr.po: ncurses_def.h +lib_initscr.po: ncurses_dll.h lib_initscr.po: term.h lib_initscr.po: unctrl.h lib_ins_wch.So: curses.h lib_ins_wch.So: ncurses_def.h +lib_ins_wch.So: ncurses_dll.h lib_ins_wch.So: term.h lib_ins_wch.So: unctrl.h lib_ins_wch.o: curses.h lib_ins_wch.o: ncurses_def.h +lib_ins_wch.o: ncurses_dll.h lib_ins_wch.o: term.h lib_ins_wch.o: unctrl.h lib_ins_wch.po: curses.h lib_ins_wch.po: ncurses_def.h +lib_ins_wch.po: ncurses_dll.h lib_ins_wch.po: term.h lib_ins_wch.po: unctrl.h lib_insch.So: curses.h lib_insch.So: ncurses_def.h +lib_insch.So: ncurses_dll.h lib_insch.So: term.h lib_insch.So: unctrl.h lib_insch.o: curses.h lib_insch.o: ncurses_def.h +lib_insch.o: ncurses_dll.h lib_insch.o: term.h lib_insch.o: unctrl.h lib_insch.po: curses.h lib_insch.po: ncurses_def.h +lib_insch.po: ncurses_dll.h lib_insch.po: term.h lib_insch.po: unctrl.h lib_insdel.So: curses.h lib_insdel.So: ncurses_def.h +lib_insdel.So: ncurses_dll.h lib_insdel.So: term.h lib_insdel.So: unctrl.h lib_insdel.o: curses.h lib_insdel.o: ncurses_def.h +lib_insdel.o: ncurses_dll.h lib_insdel.o: term.h lib_insdel.o: unctrl.h lib_insdel.po: curses.h lib_insdel.po: ncurses_def.h +lib_insdel.po: ncurses_dll.h lib_insdel.po: term.h lib_insdel.po: unctrl.h lib_insnstr.So: curses.h lib_insnstr.So: ncurses_def.h +lib_insnstr.So: ncurses_dll.h lib_insnstr.So: term.h lib_insnstr.So: unctrl.h lib_insnstr.o: curses.h lib_insnstr.o: ncurses_def.h +lib_insnstr.o: ncurses_dll.h lib_insnstr.o: term.h lib_insnstr.o: unctrl.h lib_insnstr.po: curses.h lib_insnstr.po: ncurses_def.h +lib_insnstr.po: ncurses_dll.h lib_insnstr.po: term.h lib_insnstr.po: unctrl.h lib_instr.So: curses.h lib_instr.So: ncurses_def.h +lib_instr.So: ncurses_dll.h lib_instr.So: term.h lib_instr.So: unctrl.h lib_instr.o: curses.h lib_instr.o: ncurses_def.h +lib_instr.o: ncurses_dll.h lib_instr.o: term.h lib_instr.o: unctrl.h lib_instr.po: curses.h lib_instr.po: ncurses_def.h +lib_instr.po: ncurses_dll.h lib_instr.po: term.h lib_instr.po: unctrl.h lib_inwstr.So: curses.h lib_inwstr.So: ncurses_def.h +lib_inwstr.So: ncurses_dll.h lib_inwstr.So: term.h lib_inwstr.So: unctrl.h lib_inwstr.o: curses.h lib_inwstr.o: ncurses_def.h +lib_inwstr.o: ncurses_dll.h lib_inwstr.o: term.h lib_inwstr.o: unctrl.h lib_inwstr.po: curses.h lib_inwstr.po: ncurses_def.h +lib_inwstr.po: ncurses_dll.h lib_inwstr.po: term.h lib_inwstr.po: unctrl.h lib_isendwin.So: curses.h lib_isendwin.So: ncurses_def.h +lib_isendwin.So: ncurses_dll.h lib_isendwin.So: term.h lib_isendwin.So: unctrl.h lib_isendwin.o: curses.h lib_isendwin.o: ncurses_def.h +lib_isendwin.o: ncurses_dll.h lib_isendwin.o: term.h lib_isendwin.o: unctrl.h lib_isendwin.po: curses.h lib_isendwin.po: ncurses_def.h +lib_isendwin.po: ncurses_dll.h lib_isendwin.po: term.h lib_isendwin.po: unctrl.h lib_kernel.So: curses.h lib_kernel.So: ncurses_def.h +lib_kernel.So: ncurses_dll.h lib_kernel.So: term.h lib_kernel.So: unctrl.h lib_kernel.o: curses.h lib_kernel.o: ncurses_def.h +lib_kernel.o: ncurses_dll.h lib_kernel.o: term.h lib_kernel.o: unctrl.h lib_kernel.po: curses.h lib_kernel.po: ncurses_def.h +lib_kernel.po: ncurses_dll.h lib_kernel.po: term.h lib_kernel.po: unctrl.h lib_key_name.So: curses.h lib_key_name.So: ncurses_def.h +lib_key_name.So: ncurses_dll.h lib_key_name.So: term.h lib_key_name.So: unctrl.h lib_key_name.o: curses.h lib_key_name.o: ncurses_def.h +lib_key_name.o: ncurses_dll.h lib_key_name.o: term.h lib_key_name.o: unctrl.h lib_key_name.po: curses.h lib_key_name.po: ncurses_def.h +lib_key_name.po: ncurses_dll.h lib_key_name.po: term.h lib_key_name.po: unctrl.h lib_keyname.So: curses.h lib_keyname.So: lib_keyname.c lib_keyname.So: ncurses_def.h +lib_keyname.So: ncurses_dll.h lib_keyname.So: term.h lib_keyname.So: unctrl.h lib_keyname.o: curses.h lib_keyname.o: lib_keyname.c lib_keyname.o: ncurses_def.h +lib_keyname.o: ncurses_dll.h lib_keyname.o: term.h lib_keyname.o: unctrl.h lib_keyname.po: curses.h lib_keyname.po: lib_keyname.c lib_keyname.po: ncurses_def.h +lib_keyname.po: ncurses_dll.h lib_keyname.po: term.h lib_keyname.po: unctrl.h lib_leaveok.So: curses.h lib_leaveok.So: ncurses_def.h +lib_leaveok.So: ncurses_dll.h lib_leaveok.So: term.h lib_leaveok.So: unctrl.h lib_leaveok.o: curses.h lib_leaveok.o: ncurses_def.h +lib_leaveok.o: ncurses_dll.h lib_leaveok.o: term.h lib_leaveok.o: unctrl.h lib_leaveok.po: curses.h lib_leaveok.po: ncurses_def.h +lib_leaveok.po: ncurses_dll.h lib_leaveok.po: term.h lib_leaveok.po: unctrl.h lib_longname.So: curses.h lib_longname.So: ncurses_def.h +lib_longname.So: ncurses_dll.h lib_longname.So: term.h lib_longname.So: unctrl.h lib_longname.o: curses.h lib_longname.o: ncurses_def.h +lib_longname.o: ncurses_dll.h lib_longname.o: term.h lib_longname.o: unctrl.h lib_longname.po: curses.h lib_longname.po: ncurses_def.h +lib_longname.po: ncurses_dll.h lib_longname.po: term.h lib_longname.po: unctrl.h lib_mouse.So: curses.h lib_mouse.So: ncurses_def.h +lib_mouse.So: ncurses_dll.h lib_mouse.So: term.h lib_mouse.So: unctrl.h lib_mouse.o: curses.h lib_mouse.o: ncurses_def.h +lib_mouse.o: ncurses_dll.h lib_mouse.o: term.h lib_mouse.o: unctrl.h lib_mouse.po: curses.h lib_mouse.po: ncurses_def.h +lib_mouse.po: ncurses_dll.h lib_mouse.po: term.h lib_mouse.po: unctrl.h lib_move.So: curses.h lib_move.So: ncurses_def.h +lib_move.So: ncurses_dll.h lib_move.So: term.h lib_move.So: unctrl.h lib_move.o: curses.h lib_move.o: ncurses_def.h +lib_move.o: ncurses_dll.h lib_move.o: term.h lib_move.o: unctrl.h lib_move.po: curses.h lib_move.po: ncurses_def.h +lib_move.po: ncurses_dll.h lib_move.po: term.h lib_move.po: unctrl.h lib_mvcur.So: curses.h lib_mvcur.So: ncurses_def.h +lib_mvcur.So: ncurses_dll.h lib_mvcur.So: term.h lib_mvcur.So: unctrl.h lib_mvcur.o: curses.h lib_mvcur.o: ncurses_def.h +lib_mvcur.o: ncurses_dll.h lib_mvcur.o: term.h lib_mvcur.o: unctrl.h lib_mvcur.po: curses.h lib_mvcur.po: ncurses_def.h +lib_mvcur.po: ncurses_dll.h lib_mvcur.po: term.h lib_mvcur.po: unctrl.h lib_mvwin.So: curses.h lib_mvwin.So: ncurses_def.h +lib_mvwin.So: ncurses_dll.h lib_mvwin.So: term.h lib_mvwin.So: unctrl.h lib_mvwin.o: curses.h lib_mvwin.o: ncurses_def.h +lib_mvwin.o: ncurses_dll.h lib_mvwin.o: term.h lib_mvwin.o: unctrl.h lib_mvwin.po: curses.h lib_mvwin.po: ncurses_def.h +lib_mvwin.po: ncurses_dll.h lib_mvwin.po: term.h lib_mvwin.po: unctrl.h lib_napms.So: curses.h lib_napms.So: ncurses_def.h +lib_napms.So: ncurses_dll.h lib_napms.So: term.h lib_napms.So: unctrl.h lib_napms.o: curses.h lib_napms.o: ncurses_def.h +lib_napms.o: ncurses_dll.h lib_napms.o: term.h lib_napms.o: unctrl.h lib_napms.po: curses.h lib_napms.po: ncurses_def.h +lib_napms.po: ncurses_dll.h lib_napms.po: term.h lib_napms.po: unctrl.h lib_newterm.So: curses.h lib_newterm.So: ncurses_def.h +lib_newterm.So: ncurses_dll.h lib_newterm.So: term.h lib_newterm.So: unctrl.h lib_newterm.o: curses.h lib_newterm.o: ncurses_def.h +lib_newterm.o: ncurses_dll.h lib_newterm.o: term.h lib_newterm.o: unctrl.h lib_newterm.po: curses.h lib_newterm.po: ncurses_def.h +lib_newterm.po: ncurses_dll.h lib_newterm.po: term.h lib_newterm.po: unctrl.h lib_newwin.So: curses.h lib_newwin.So: ncurses_def.h +lib_newwin.So: ncurses_dll.h lib_newwin.So: term.h lib_newwin.So: unctrl.h lib_newwin.o: curses.h lib_newwin.o: ncurses_def.h +lib_newwin.o: ncurses_dll.h lib_newwin.o: term.h lib_newwin.o: unctrl.h lib_newwin.po: curses.h lib_newwin.po: ncurses_def.h +lib_newwin.po: ncurses_dll.h lib_newwin.po: term.h lib_newwin.po: unctrl.h lib_nl.So: curses.h lib_nl.So: ncurses_def.h +lib_nl.So: ncurses_dll.h lib_nl.So: term.h lib_nl.So: unctrl.h lib_nl.o: curses.h lib_nl.o: ncurses_def.h +lib_nl.o: ncurses_dll.h lib_nl.o: term.h lib_nl.o: unctrl.h lib_nl.po: curses.h lib_nl.po: ncurses_def.h +lib_nl.po: ncurses_dll.h lib_nl.po: term.h lib_nl.po: unctrl.h lib_options.So: curses.h lib_options.So: ncurses_def.h +lib_options.So: ncurses_dll.h lib_options.So: term.h lib_options.So: unctrl.h lib_options.o: curses.h lib_options.o: ncurses_def.h +lib_options.o: ncurses_dll.h lib_options.o: term.h lib_options.o: unctrl.h lib_options.po: curses.h lib_options.po: ncurses_def.h +lib_options.po: ncurses_dll.h lib_options.po: term.h lib_options.po: unctrl.h lib_overlay.So: curses.h lib_overlay.So: ncurses_def.h +lib_overlay.So: ncurses_dll.h lib_overlay.So: term.h lib_overlay.So: unctrl.h lib_overlay.o: curses.h lib_overlay.o: ncurses_def.h +lib_overlay.o: ncurses_dll.h lib_overlay.o: term.h lib_overlay.o: unctrl.h lib_overlay.po: curses.h lib_overlay.po: ncurses_def.h +lib_overlay.po: ncurses_dll.h lib_overlay.po: term.h lib_overlay.po: unctrl.h lib_pad.So: curses.h lib_pad.So: ncurses_def.h +lib_pad.So: ncurses_dll.h lib_pad.So: term.h lib_pad.So: unctrl.h lib_pad.o: curses.h lib_pad.o: ncurses_def.h +lib_pad.o: ncurses_dll.h lib_pad.o: term.h lib_pad.o: unctrl.h lib_pad.po: curses.h lib_pad.po: ncurses_def.h +lib_pad.po: ncurses_dll.h lib_pad.po: term.h lib_pad.po: unctrl.h lib_pecho_wchar.So: curses.h lib_pecho_wchar.So: ncurses_def.h +lib_pecho_wchar.So: ncurses_dll.h lib_pecho_wchar.So: term.h lib_pecho_wchar.So: unctrl.h lib_pecho_wchar.o: curses.h lib_pecho_wchar.o: ncurses_def.h +lib_pecho_wchar.o: ncurses_dll.h lib_pecho_wchar.o: term.h lib_pecho_wchar.o: unctrl.h lib_pecho_wchar.po: curses.h lib_pecho_wchar.po: ncurses_def.h +lib_pecho_wchar.po: ncurses_dll.h lib_pecho_wchar.po: term.h lib_pecho_wchar.po: unctrl.h lib_print.So: curses.h lib_print.So: ncurses_def.h +lib_print.So: ncurses_dll.h lib_print.So: term.h lib_print.So: unctrl.h lib_print.o: curses.h lib_print.o: ncurses_def.h +lib_print.o: ncurses_dll.h lib_print.o: term.h lib_print.o: unctrl.h lib_print.po: curses.h lib_print.po: ncurses_def.h +lib_print.po: ncurses_dll.h lib_print.po: term.h lib_print.po: unctrl.h lib_printw.So: curses.h lib_printw.So: ncurses_def.h +lib_printw.So: ncurses_dll.h lib_printw.So: term.h lib_printw.So: unctrl.h lib_printw.o: curses.h lib_printw.o: ncurses_def.h +lib_printw.o: ncurses_dll.h lib_printw.o: term.h lib_printw.o: unctrl.h lib_printw.po: curses.h lib_printw.po: ncurses_def.h +lib_printw.po: ncurses_dll.h lib_printw.po: term.h lib_printw.po: unctrl.h lib_raw.So: curses.h lib_raw.So: ncurses_def.h +lib_raw.So: ncurses_dll.h lib_raw.So: term.h lib_raw.So: unctrl.h lib_raw.o: curses.h lib_raw.o: ncurses_def.h +lib_raw.o: ncurses_dll.h lib_raw.o: term.h lib_raw.o: unctrl.h lib_raw.po: curses.h lib_raw.po: ncurses_def.h +lib_raw.po: ncurses_dll.h lib_raw.po: term.h lib_raw.po: unctrl.h lib_redrawln.So: curses.h lib_redrawln.So: ncurses_def.h +lib_redrawln.So: ncurses_dll.h lib_redrawln.So: term.h lib_redrawln.So: unctrl.h lib_redrawln.o: curses.h lib_redrawln.o: ncurses_def.h +lib_redrawln.o: ncurses_dll.h lib_redrawln.o: term.h lib_redrawln.o: unctrl.h lib_redrawln.po: curses.h lib_redrawln.po: ncurses_def.h +lib_redrawln.po: ncurses_dll.h lib_redrawln.po: term.h lib_redrawln.po: unctrl.h lib_refresh.So: curses.h lib_refresh.So: ncurses_def.h +lib_refresh.So: ncurses_dll.h lib_refresh.So: term.h lib_refresh.So: unctrl.h lib_refresh.o: curses.h lib_refresh.o: ncurses_def.h +lib_refresh.o: ncurses_dll.h lib_refresh.o: term.h lib_refresh.o: unctrl.h lib_refresh.po: curses.h lib_refresh.po: ncurses_def.h +lib_refresh.po: ncurses_dll.h lib_refresh.po: term.h lib_refresh.po: unctrl.h lib_restart.So: curses.h lib_restart.So: ncurses_def.h +lib_restart.So: ncurses_dll.h lib_restart.So: term.h lib_restart.So: unctrl.h lib_restart.o: curses.h lib_restart.o: ncurses_def.h +lib_restart.o: ncurses_dll.h lib_restart.o: term.h lib_restart.o: unctrl.h lib_restart.po: curses.h lib_restart.po: ncurses_def.h +lib_restart.po: ncurses_dll.h lib_restart.po: term.h lib_restart.po: unctrl.h lib_scanw.So: curses.h lib_scanw.So: ncurses_def.h +lib_scanw.So: ncurses_dll.h lib_scanw.So: term.h lib_scanw.So: unctrl.h lib_scanw.o: curses.h lib_scanw.o: ncurses_def.h +lib_scanw.o: ncurses_dll.h lib_scanw.o: term.h lib_scanw.o: unctrl.h lib_scanw.po: curses.h lib_scanw.po: ncurses_def.h +lib_scanw.po: ncurses_dll.h lib_scanw.po: term.h lib_scanw.po: unctrl.h lib_screen.So: curses.h lib_screen.So: ncurses_def.h +lib_screen.So: ncurses_dll.h lib_screen.So: term.h lib_screen.So: unctrl.h lib_screen.o: curses.h lib_screen.o: ncurses_def.h +lib_screen.o: ncurses_dll.h lib_screen.o: term.h lib_screen.o: unctrl.h lib_screen.po: curses.h lib_screen.po: ncurses_def.h +lib_screen.po: ncurses_dll.h lib_screen.po: term.h lib_screen.po: unctrl.h lib_scroll.So: curses.h lib_scroll.So: ncurses_def.h +lib_scroll.So: ncurses_dll.h lib_scroll.So: term.h lib_scroll.So: unctrl.h lib_scroll.o: curses.h lib_scroll.o: ncurses_def.h +lib_scroll.o: ncurses_dll.h lib_scroll.o: term.h lib_scroll.o: unctrl.h lib_scroll.po: curses.h lib_scroll.po: ncurses_def.h +lib_scroll.po: ncurses_dll.h lib_scroll.po: term.h lib_scroll.po: unctrl.h lib_scrollok.So: curses.h lib_scrollok.So: ncurses_def.h +lib_scrollok.So: ncurses_dll.h lib_scrollok.So: term.h lib_scrollok.So: unctrl.h lib_scrollok.o: curses.h lib_scrollok.o: ncurses_def.h +lib_scrollok.o: ncurses_dll.h lib_scrollok.o: term.h lib_scrollok.o: unctrl.h lib_scrollok.po: curses.h lib_scrollok.po: ncurses_def.h +lib_scrollok.po: ncurses_dll.h lib_scrollok.po: term.h lib_scrollok.po: unctrl.h lib_scrreg.So: curses.h lib_scrreg.So: ncurses_def.h +lib_scrreg.So: ncurses_dll.h lib_scrreg.So: term.h lib_scrreg.So: unctrl.h lib_scrreg.o: curses.h lib_scrreg.o: ncurses_def.h +lib_scrreg.o: ncurses_dll.h lib_scrreg.o: term.h lib_scrreg.o: unctrl.h lib_scrreg.po: curses.h lib_scrreg.po: ncurses_def.h +lib_scrreg.po: ncurses_dll.h lib_scrreg.po: term.h lib_scrreg.po: unctrl.h lib_set_term.So: curses.h lib_set_term.So: ncurses_def.h +lib_set_term.So: ncurses_dll.h lib_set_term.So: term.h lib_set_term.So: unctrl.h lib_set_term.o: curses.h lib_set_term.o: ncurses_def.h +lib_set_term.o: ncurses_dll.h lib_set_term.o: term.h lib_set_term.o: unctrl.h lib_set_term.po: curses.h lib_set_term.po: ncurses_def.h +lib_set_term.po: ncurses_dll.h lib_set_term.po: term.h lib_set_term.po: unctrl.h lib_setup.So: curses.h lib_setup.So: ncurses_def.h +lib_setup.So: ncurses_dll.h lib_setup.So: term.h lib_setup.So: unctrl.h lib_setup.o: curses.h lib_setup.o: ncurses_def.h +lib_setup.o: ncurses_dll.h lib_setup.o: term.h lib_setup.o: unctrl.h lib_setup.po: curses.h lib_setup.po: ncurses_def.h +lib_setup.po: ncurses_dll.h lib_setup.po: term.h lib_setup.po: unctrl.h lib_slk.So: curses.h lib_slk.So: ncurses_def.h +lib_slk.So: ncurses_dll.h lib_slk.So: term.h lib_slk.So: unctrl.h lib_slk.o: curses.h lib_slk.o: ncurses_def.h +lib_slk.o: ncurses_dll.h lib_slk.o: term.h lib_slk.o: unctrl.h lib_slk.po: curses.h lib_slk.po: ncurses_def.h +lib_slk.po: ncurses_dll.h lib_slk.po: term.h lib_slk.po: unctrl.h lib_slk_wset.So: curses.h lib_slk_wset.So: ncurses_def.h +lib_slk_wset.So: ncurses_dll.h lib_slk_wset.So: term.h lib_slk_wset.So: unctrl.h lib_slk_wset.o: curses.h lib_slk_wset.o: ncurses_def.h +lib_slk_wset.o: ncurses_dll.h lib_slk_wset.o: term.h lib_slk_wset.o: unctrl.h lib_slk_wset.po: curses.h lib_slk_wset.po: ncurses_def.h +lib_slk_wset.po: ncurses_dll.h lib_slk_wset.po: term.h lib_slk_wset.po: unctrl.h lib_slkatr_set.So: curses.h lib_slkatr_set.So: ncurses_def.h +lib_slkatr_set.So: ncurses_dll.h lib_slkatr_set.So: term.h lib_slkatr_set.So: unctrl.h lib_slkatr_set.o: curses.h lib_slkatr_set.o: ncurses_def.h +lib_slkatr_set.o: ncurses_dll.h lib_slkatr_set.o: term.h lib_slkatr_set.o: unctrl.h lib_slkatr_set.po: curses.h lib_slkatr_set.po: ncurses_def.h +lib_slkatr_set.po: ncurses_dll.h lib_slkatr_set.po: term.h lib_slkatr_set.po: unctrl.h lib_slkatrof.So: curses.h lib_slkatrof.So: ncurses_def.h +lib_slkatrof.So: ncurses_dll.h lib_slkatrof.So: term.h lib_slkatrof.So: unctrl.h lib_slkatrof.o: curses.h lib_slkatrof.o: ncurses_def.h +lib_slkatrof.o: ncurses_dll.h lib_slkatrof.o: term.h lib_slkatrof.o: unctrl.h lib_slkatrof.po: curses.h lib_slkatrof.po: ncurses_def.h +lib_slkatrof.po: ncurses_dll.h lib_slkatrof.po: term.h lib_slkatrof.po: unctrl.h lib_slkatron.So: curses.h lib_slkatron.So: ncurses_def.h +lib_slkatron.So: ncurses_dll.h lib_slkatron.So: term.h lib_slkatron.So: unctrl.h lib_slkatron.o: curses.h lib_slkatron.o: ncurses_def.h +lib_slkatron.o: ncurses_dll.h lib_slkatron.o: term.h lib_slkatron.o: unctrl.h lib_slkatron.po: curses.h lib_slkatron.po: ncurses_def.h +lib_slkatron.po: ncurses_dll.h lib_slkatron.po: term.h lib_slkatron.po: unctrl.h lib_slkatrset.So: curses.h lib_slkatrset.So: ncurses_def.h +lib_slkatrset.So: ncurses_dll.h lib_slkatrset.So: term.h lib_slkatrset.So: unctrl.h lib_slkatrset.o: curses.h lib_slkatrset.o: ncurses_def.h +lib_slkatrset.o: ncurses_dll.h lib_slkatrset.o: term.h lib_slkatrset.o: unctrl.h lib_slkatrset.po: curses.h lib_slkatrset.po: ncurses_def.h +lib_slkatrset.po: ncurses_dll.h lib_slkatrset.po: term.h lib_slkatrset.po: unctrl.h lib_slkattr.So: curses.h lib_slkattr.So: ncurses_def.h +lib_slkattr.So: ncurses_dll.h lib_slkattr.So: term.h lib_slkattr.So: unctrl.h lib_slkattr.o: curses.h lib_slkattr.o: ncurses_def.h +lib_slkattr.o: ncurses_dll.h lib_slkattr.o: term.h lib_slkattr.o: unctrl.h lib_slkattr.po: curses.h lib_slkattr.po: ncurses_def.h +lib_slkattr.po: ncurses_dll.h lib_slkattr.po: term.h lib_slkattr.po: unctrl.h lib_slkclear.So: curses.h lib_slkclear.So: ncurses_def.h +lib_slkclear.So: ncurses_dll.h lib_slkclear.So: term.h lib_slkclear.So: unctrl.h lib_slkclear.o: curses.h lib_slkclear.o: ncurses_def.h +lib_slkclear.o: ncurses_dll.h lib_slkclear.o: term.h lib_slkclear.o: unctrl.h lib_slkclear.po: curses.h lib_slkclear.po: ncurses_def.h +lib_slkclear.po: ncurses_dll.h lib_slkclear.po: term.h lib_slkclear.po: unctrl.h lib_slkcolor.So: curses.h lib_slkcolor.So: ncurses_def.h +lib_slkcolor.So: ncurses_dll.h lib_slkcolor.So: term.h lib_slkcolor.So: unctrl.h lib_slkcolor.o: curses.h lib_slkcolor.o: ncurses_def.h +lib_slkcolor.o: ncurses_dll.h lib_slkcolor.o: term.h lib_slkcolor.o: unctrl.h lib_slkcolor.po: curses.h lib_slkcolor.po: ncurses_def.h +lib_slkcolor.po: ncurses_dll.h lib_slkcolor.po: term.h lib_slkcolor.po: unctrl.h lib_slkinit.So: curses.h lib_slkinit.So: ncurses_def.h +lib_slkinit.So: ncurses_dll.h lib_slkinit.So: term.h lib_slkinit.So: unctrl.h lib_slkinit.o: curses.h lib_slkinit.o: ncurses_def.h +lib_slkinit.o: ncurses_dll.h lib_slkinit.o: term.h lib_slkinit.o: unctrl.h lib_slkinit.po: curses.h lib_slkinit.po: ncurses_def.h +lib_slkinit.po: ncurses_dll.h lib_slkinit.po: term.h lib_slkinit.po: unctrl.h lib_slklab.So: curses.h lib_slklab.So: ncurses_def.h +lib_slklab.So: ncurses_dll.h lib_slklab.So: term.h lib_slklab.So: unctrl.h lib_slklab.o: curses.h lib_slklab.o: ncurses_def.h +lib_slklab.o: ncurses_dll.h lib_slklab.o: term.h lib_slklab.o: unctrl.h lib_slklab.po: curses.h lib_slklab.po: ncurses_def.h +lib_slklab.po: ncurses_dll.h lib_slklab.po: term.h lib_slklab.po: unctrl.h lib_slkrefr.So: curses.h lib_slkrefr.So: ncurses_def.h +lib_slkrefr.So: ncurses_dll.h lib_slkrefr.So: term.h lib_slkrefr.So: unctrl.h lib_slkrefr.o: curses.h lib_slkrefr.o: ncurses_def.h +lib_slkrefr.o: ncurses_dll.h lib_slkrefr.o: term.h lib_slkrefr.o: unctrl.h lib_slkrefr.po: curses.h lib_slkrefr.po: ncurses_def.h +lib_slkrefr.po: ncurses_dll.h lib_slkrefr.po: term.h lib_slkrefr.po: unctrl.h lib_slkset.So: curses.h lib_slkset.So: ncurses_def.h +lib_slkset.So: ncurses_dll.h lib_slkset.So: term.h lib_slkset.So: unctrl.h lib_slkset.o: curses.h lib_slkset.o: ncurses_def.h +lib_slkset.o: ncurses_dll.h lib_slkset.o: term.h lib_slkset.o: unctrl.h lib_slkset.po: curses.h lib_slkset.po: ncurses_def.h +lib_slkset.po: ncurses_dll.h lib_slkset.po: term.h lib_slkset.po: unctrl.h lib_slktouch.So: curses.h lib_slktouch.So: ncurses_def.h +lib_slktouch.So: ncurses_dll.h lib_slktouch.So: term.h lib_slktouch.So: unctrl.h lib_slktouch.o: curses.h lib_slktouch.o: ncurses_def.h +lib_slktouch.o: ncurses_dll.h lib_slktouch.o: term.h lib_slktouch.o: unctrl.h lib_slktouch.po: curses.h lib_slktouch.po: ncurses_def.h +lib_slktouch.po: ncurses_dll.h lib_slktouch.po: term.h lib_slktouch.po: unctrl.h lib_termcap.So: curses.h lib_termcap.So: ncurses_def.h +lib_termcap.So: ncurses_dll.h lib_termcap.So: term.h lib_termcap.So: termcap.h lib_termcap.So: unctrl.h lib_termcap.o: curses.h lib_termcap.o: ncurses_def.h +lib_termcap.o: ncurses_dll.h lib_termcap.o: term.h lib_termcap.o: termcap.h lib_termcap.o: unctrl.h lib_termcap.po: curses.h lib_termcap.po: ncurses_def.h +lib_termcap.po: ncurses_dll.h lib_termcap.po: term.h lib_termcap.po: termcap.h lib_termcap.po: unctrl.h lib_termname.So: curses.h lib_termname.So: ncurses_def.h +lib_termname.So: ncurses_dll.h lib_termname.So: term.h lib_termname.So: unctrl.h lib_termname.o: curses.h lib_termname.o: ncurses_def.h +lib_termname.o: ncurses_dll.h lib_termname.o: term.h lib_termname.o: unctrl.h lib_termname.po: curses.h lib_termname.po: ncurses_def.h +lib_termname.po: ncurses_dll.h lib_termname.po: term.h lib_termname.po: unctrl.h lib_tgoto.So: curses.h lib_tgoto.So: ncurses_def.h +lib_tgoto.So: ncurses_dll.h lib_tgoto.So: term.h lib_tgoto.So: termcap.h lib_tgoto.So: unctrl.h lib_tgoto.o: curses.h lib_tgoto.o: ncurses_def.h +lib_tgoto.o: ncurses_dll.h lib_tgoto.o: term.h lib_tgoto.o: termcap.h lib_tgoto.o: unctrl.h lib_tgoto.po: curses.h lib_tgoto.po: ncurses_def.h +lib_tgoto.po: ncurses_dll.h lib_tgoto.po: term.h lib_tgoto.po: termcap.h lib_tgoto.po: unctrl.h lib_ti.So: curses.h lib_ti.So: ncurses_def.h +lib_ti.So: ncurses_dll.h lib_ti.So: term.h lib_ti.So: unctrl.h lib_ti.o: curses.h lib_ti.o: ncurses_def.h +lib_ti.o: ncurses_dll.h lib_ti.o: term.h lib_ti.o: unctrl.h lib_ti.po: curses.h lib_ti.po: ncurses_def.h +lib_ti.po: ncurses_dll.h lib_ti.po: term.h lib_ti.po: unctrl.h lib_touch.So: curses.h lib_touch.So: ncurses_def.h +lib_touch.So: ncurses_dll.h lib_touch.So: term.h lib_touch.So: unctrl.h lib_touch.o: curses.h lib_touch.o: ncurses_def.h +lib_touch.o: ncurses_dll.h lib_touch.o: term.h lib_touch.o: unctrl.h lib_touch.po: curses.h lib_touch.po: ncurses_def.h +lib_touch.po: ncurses_dll.h lib_touch.po: term.h lib_touch.po: unctrl.h lib_tparm.So: curses.h lib_tparm.So: ncurses_def.h +lib_tparm.So: ncurses_dll.h lib_tparm.So: term.h lib_tparm.So: unctrl.h lib_tparm.o: curses.h lib_tparm.o: ncurses_def.h +lib_tparm.o: ncurses_dll.h lib_tparm.o: term.h lib_tparm.o: unctrl.h lib_tparm.po: curses.h lib_tparm.po: ncurses_def.h +lib_tparm.po: ncurses_dll.h lib_tparm.po: term.h lib_tparm.po: unctrl.h lib_tputs.So: curses.h lib_tputs.So: ncurses_def.h +lib_tputs.So: ncurses_dll.h lib_tputs.So: term.h lib_tputs.So: termcap.h lib_tputs.So: unctrl.h lib_tputs.o: curses.h lib_tputs.o: ncurses_def.h +lib_tputs.o: ncurses_dll.h lib_tputs.o: term.h lib_tputs.o: termcap.h lib_tputs.o: unctrl.h lib_tputs.po: curses.h lib_tputs.po: ncurses_def.h +lib_tputs.po: ncurses_dll.h lib_tputs.po: term.h lib_tputs.po: termcap.h lib_tputs.po: unctrl.h lib_trace.So: curses.h lib_trace.So: ncurses_def.h +lib_trace.So: ncurses_dll.h lib_trace.So: term.h lib_trace.So: unctrl.h lib_trace.o: curses.h lib_trace.o: ncurses_def.h +lib_trace.o: ncurses_dll.h lib_trace.o: term.h lib_trace.o: unctrl.h lib_trace.po: curses.h lib_trace.po: ncurses_def.h +lib_trace.po: ncurses_dll.h lib_trace.po: term.h lib_trace.po: unctrl.h lib_tstp.So: curses.h lib_tstp.So: ncurses_def.h +lib_tstp.So: ncurses_dll.h lib_tstp.So: term.h lib_tstp.So: unctrl.h lib_tstp.o: curses.h lib_tstp.o: ncurses_def.h +lib_tstp.o: ncurses_dll.h lib_tstp.o: term.h lib_tstp.o: unctrl.h lib_tstp.po: curses.h lib_tstp.po: ncurses_def.h +lib_tstp.po: ncurses_dll.h lib_tstp.po: term.h lib_tstp.po: unctrl.h lib_ttyflags.So: curses.h lib_ttyflags.So: ncurses_def.h +lib_ttyflags.So: ncurses_dll.h lib_ttyflags.So: term.h lib_ttyflags.So: unctrl.h lib_ttyflags.o: curses.h lib_ttyflags.o: ncurses_def.h +lib_ttyflags.o: ncurses_dll.h lib_ttyflags.o: term.h lib_ttyflags.o: unctrl.h lib_ttyflags.po: curses.h lib_ttyflags.po: ncurses_def.h +lib_ttyflags.po: ncurses_dll.h lib_ttyflags.po: term.h lib_ttyflags.po: unctrl.h lib_twait.So: curses.h lib_twait.So: ncurses_def.h +lib_twait.So: ncurses_dll.h lib_twait.So: term.h lib_twait.So: unctrl.h lib_twait.o: curses.h lib_twait.o: ncurses_def.h +lib_twait.o: ncurses_dll.h lib_twait.o: term.h lib_twait.o: unctrl.h lib_twait.po: curses.h lib_twait.po: ncurses_def.h +lib_twait.po: ncurses_dll.h lib_twait.po: term.h lib_twait.po: unctrl.h lib_unget_wch.So: curses.h lib_unget_wch.So: ncurses_def.h +lib_unget_wch.So: ncurses_dll.h lib_unget_wch.So: term.h lib_unget_wch.So: unctrl.h lib_unget_wch.o: curses.h lib_unget_wch.o: ncurses_def.h +lib_unget_wch.o: ncurses_dll.h lib_unget_wch.o: term.h lib_unget_wch.o: unctrl.h lib_unget_wch.po: curses.h lib_unget_wch.po: ncurses_def.h +lib_unget_wch.po: ncurses_dll.h lib_unget_wch.po: term.h lib_unget_wch.po: unctrl.h lib_ungetch.So: curses.h lib_ungetch.So: ncurses_def.h +lib_ungetch.So: ncurses_dll.h lib_ungetch.So: term.h lib_ungetch.So: unctrl.h lib_ungetch.o: curses.h lib_ungetch.o: ncurses_def.h +lib_ungetch.o: ncurses_dll.h lib_ungetch.o: term.h lib_ungetch.o: unctrl.h lib_ungetch.po: curses.h lib_ungetch.po: ncurses_def.h +lib_ungetch.po: ncurses_dll.h lib_ungetch.po: term.h lib_ungetch.po: unctrl.h lib_vid_attr.So: curses.h lib_vid_attr.So: ncurses_def.h +lib_vid_attr.So: ncurses_dll.h lib_vid_attr.So: term.h lib_vid_attr.So: unctrl.h lib_vid_attr.o: curses.h lib_vid_attr.o: ncurses_def.h +lib_vid_attr.o: ncurses_dll.h lib_vid_attr.o: term.h lib_vid_attr.o: unctrl.h lib_vid_attr.po: curses.h lib_vid_attr.po: ncurses_def.h +lib_vid_attr.po: ncurses_dll.h lib_vid_attr.po: term.h lib_vid_attr.po: unctrl.h lib_vidattr.So: curses.h lib_vidattr.So: ncurses_def.h +lib_vidattr.So: ncurses_dll.h lib_vidattr.So: term.h lib_vidattr.So: unctrl.h lib_vidattr.o: curses.h lib_vidattr.o: ncurses_def.h +lib_vidattr.o: ncurses_dll.h lib_vidattr.o: term.h lib_vidattr.o: unctrl.h lib_vidattr.po: curses.h lib_vidattr.po: ncurses_def.h +lib_vidattr.po: ncurses_dll.h lib_vidattr.po: term.h lib_vidattr.po: unctrl.h lib_vline.So: curses.h lib_vline.So: ncurses_def.h +lib_vline.So: ncurses_dll.h lib_vline.So: term.h lib_vline.So: unctrl.h lib_vline.o: curses.h lib_vline.o: ncurses_def.h +lib_vline.o: ncurses_dll.h lib_vline.o: term.h lib_vline.o: unctrl.h lib_vline.po: curses.h lib_vline.po: ncurses_def.h +lib_vline.po: ncurses_dll.h lib_vline.po: term.h lib_vline.po: unctrl.h lib_vline_set.So: curses.h lib_vline_set.So: ncurses_def.h +lib_vline_set.So: ncurses_dll.h lib_vline_set.So: term.h lib_vline_set.So: unctrl.h lib_vline_set.o: curses.h lib_vline_set.o: ncurses_def.h +lib_vline_set.o: ncurses_dll.h lib_vline_set.o: term.h lib_vline_set.o: unctrl.h lib_vline_set.po: curses.h lib_vline_set.po: ncurses_def.h +lib_vline_set.po: ncurses_dll.h lib_vline_set.po: term.h lib_vline_set.po: unctrl.h lib_wacs.So: curses.h lib_wacs.So: ncurses_def.h +lib_wacs.So: ncurses_dll.h lib_wacs.So: term.h lib_wacs.So: unctrl.h lib_wacs.o: curses.h lib_wacs.o: ncurses_def.h +lib_wacs.o: ncurses_dll.h lib_wacs.o: term.h lib_wacs.o: unctrl.h lib_wacs.po: curses.h lib_wacs.po: ncurses_def.h +lib_wacs.po: ncurses_dll.h lib_wacs.po: term.h lib_wacs.po: unctrl.h lib_wattroff.So: curses.h lib_wattroff.So: ncurses_def.h +lib_wattroff.So: ncurses_dll.h lib_wattroff.So: term.h lib_wattroff.So: unctrl.h lib_wattroff.o: curses.h lib_wattroff.o: ncurses_def.h +lib_wattroff.o: ncurses_dll.h lib_wattroff.o: term.h lib_wattroff.o: unctrl.h lib_wattroff.po: curses.h lib_wattroff.po: ncurses_def.h +lib_wattroff.po: ncurses_dll.h lib_wattroff.po: term.h lib_wattroff.po: unctrl.h lib_wattron.So: curses.h lib_wattron.So: ncurses_def.h +lib_wattron.So: ncurses_dll.h lib_wattron.So: term.h lib_wattron.So: unctrl.h lib_wattron.o: curses.h lib_wattron.o: ncurses_def.h +lib_wattron.o: ncurses_dll.h lib_wattron.o: term.h lib_wattron.o: unctrl.h lib_wattron.po: curses.h lib_wattron.po: ncurses_def.h +lib_wattron.po: ncurses_dll.h lib_wattron.po: term.h lib_wattron.po: unctrl.h lib_winch.So: curses.h lib_winch.So: ncurses_def.h +lib_winch.So: ncurses_dll.h lib_winch.So: term.h lib_winch.So: unctrl.h lib_winch.o: curses.h lib_winch.o: ncurses_def.h +lib_winch.o: ncurses_dll.h lib_winch.o: term.h lib_winch.o: unctrl.h lib_winch.po: curses.h lib_winch.po: ncurses_def.h +lib_winch.po: ncurses_dll.h lib_winch.po: term.h lib_winch.po: unctrl.h lib_window.So: curses.h lib_window.So: ncurses_def.h +lib_window.So: ncurses_dll.h lib_window.So: term.h lib_window.So: unctrl.h lib_window.o: curses.h lib_window.o: ncurses_def.h +lib_window.o: ncurses_dll.h lib_window.o: term.h lib_window.o: unctrl.h lib_window.po: curses.h lib_window.po: ncurses_def.h +lib_window.po: ncurses_dll.h lib_window.po: term.h lib_window.po: unctrl.h lib_wunctrl.So: curses.h lib_wunctrl.So: ncurses_def.h +lib_wunctrl.So: ncurses_dll.h lib_wunctrl.So: term.h lib_wunctrl.So: unctrl.h lib_wunctrl.o: curses.h lib_wunctrl.o: ncurses_def.h +lib_wunctrl.o: ncurses_dll.h lib_wunctrl.o: term.h lib_wunctrl.o: unctrl.h lib_wunctrl.po: curses.h lib_wunctrl.po: ncurses_def.h +lib_wunctrl.po: ncurses_dll.h lib_wunctrl.po: term.h lib_wunctrl.po: unctrl.h -memmove.So: curses.h -memmove.So: ncurses_def.h -memmove.So: term.h -memmove.So: unctrl.h -memmove.o: curses.h -memmove.o: ncurses_def.h -memmove.o: term.h -memmove.o: unctrl.h -memmove.po: curses.h -memmove.po: ncurses_def.h -memmove.po: term.h -memmove.po: unctrl.h name_match.So: curses.h name_match.So: ncurses_def.h +name_match.So: ncurses_dll.h name_match.So: term.h name_match.So: unctrl.h name_match.o: curses.h name_match.o: ncurses_def.h +name_match.o: ncurses_dll.h name_match.o: term.h name_match.o: unctrl.h name_match.po: curses.h name_match.po: ncurses_def.h +name_match.po: ncurses_dll.h name_match.po: term.h name_match.po: unctrl.h names.So: curses.h names.So: names.c names.So: ncurses_def.h +names.So: ncurses_dll.h names.So: term.h names.So: unctrl.h names.o: curses.h names.o: names.c names.o: ncurses_def.h +names.o: ncurses_dll.h names.o: term.h names.o: unctrl.h names.po: curses.h names.po: names.c names.po: ncurses_def.h +names.po: ncurses_dll.h names.po: term.h names.po: unctrl.h nc_panel.So: curses.h nc_panel.So: ncurses_def.h +nc_panel.So: ncurses_dll.h nc_panel.So: term.h nc_panel.So: unctrl.h nc_panel.o: curses.h nc_panel.o: ncurses_def.h +nc_panel.o: ncurses_dll.h nc_panel.o: term.h nc_panel.o: unctrl.h nc_panel.po: curses.h nc_panel.po: ncurses_def.h +nc_panel.po: ncurses_dll.h nc_panel.po: term.h nc_panel.po: unctrl.h +obsolete.So: curses.h +obsolete.So: ncurses_def.h +obsolete.So: ncurses_dll.h +obsolete.So: term.h +obsolete.So: unctrl.h +obsolete.o: curses.h +obsolete.o: ncurses_def.h +obsolete.o: ncurses_dll.h +obsolete.o: term.h +obsolete.o: unctrl.h +obsolete.po: curses.h +obsolete.po: ncurses_def.h +obsolete.po: ncurses_dll.h +obsolete.po: term.h +obsolete.po: unctrl.h parse_entry.So: curses.h parse_entry.So: ncurses_def.h +parse_entry.So: ncurses_dll.h parse_entry.So: parametrized.h parse_entry.So: term.h parse_entry.So: unctrl.h parse_entry.o: curses.h parse_entry.o: ncurses_def.h +parse_entry.o: ncurses_dll.h parse_entry.o: parametrized.h parse_entry.o: term.h parse_entry.o: unctrl.h parse_entry.po: curses.h parse_entry.po: ncurses_def.h +parse_entry.po: ncurses_dll.h parse_entry.po: parametrized.h parse_entry.po: term.h parse_entry.po: unctrl.h read_entry.So: curses.h read_entry.So: ncurses_def.h +read_entry.So: ncurses_dll.h read_entry.So: term.h read_entry.So: unctrl.h read_entry.o: curses.h read_entry.o: ncurses_def.h +read_entry.o: ncurses_dll.h read_entry.o: term.h read_entry.o: unctrl.h read_entry.po: curses.h read_entry.po: ncurses_def.h +read_entry.po: ncurses_dll.h read_entry.po: term.h read_entry.po: unctrl.h resizeterm.So: curses.h resizeterm.So: ncurses_def.h +resizeterm.So: ncurses_dll.h resizeterm.So: term.h resizeterm.So: unctrl.h resizeterm.o: curses.h resizeterm.o: ncurses_def.h +resizeterm.o: ncurses_dll.h resizeterm.o: term.h resizeterm.o: unctrl.h resizeterm.po: curses.h resizeterm.po: ncurses_def.h +resizeterm.po: ncurses_dll.h resizeterm.po: term.h resizeterm.po: unctrl.h safe_sprintf.So: curses.h safe_sprintf.So: ncurses_def.h +safe_sprintf.So: ncurses_dll.h safe_sprintf.So: term.h safe_sprintf.So: unctrl.h safe_sprintf.o: curses.h safe_sprintf.o: ncurses_def.h +safe_sprintf.o: ncurses_dll.h safe_sprintf.o: term.h safe_sprintf.o: unctrl.h safe_sprintf.po: curses.h safe_sprintf.po: ncurses_def.h +safe_sprintf.po: ncurses_dll.h safe_sprintf.po: term.h safe_sprintf.po: unctrl.h -setbuf.So: curses.h -setbuf.So: ncurses_def.h -setbuf.So: term.h -setbuf.So: unctrl.h -setbuf.o: curses.h -setbuf.o: ncurses_def.h -setbuf.o: term.h -setbuf.o: unctrl.h -setbuf.po: curses.h -setbuf.po: ncurses_def.h -setbuf.po: term.h -setbuf.po: unctrl.h strings.So: curses.h strings.So: ncurses_def.h +strings.So: ncurses_dll.h strings.So: term.h strings.So: unctrl.h strings.o: curses.h strings.o: ncurses_def.h +strings.o: ncurses_dll.h strings.o: term.h strings.o: unctrl.h strings.po: curses.h strings.po: ncurses_def.h +strings.po: ncurses_dll.h strings.po: term.h strings.po: unctrl.h termcap.So: curses.h termcap.So: ncurses_def.h +termcap.So: ncurses_dll.h termcap.So: term.h termcap.So: unctrl.h termcap.o: curses.h termcap.o: ncurses_def.h +termcap.o: ncurses_dll.h termcap.o: term.h termcap.o: unctrl.h termcap.po: curses.h termcap.po: ncurses_def.h +termcap.po: ncurses_dll.h termcap.po: term.h termcap.po: unctrl.h tries.So: curses.h tries.So: ncurses_def.h +tries.So: ncurses_dll.h tries.So: term.h tries.So: unctrl.h tries.o: curses.h tries.o: ncurses_def.h +tries.o: ncurses_dll.h tries.o: term.h tries.o: unctrl.h tries.po: curses.h tries.po: ncurses_def.h +tries.po: ncurses_dll.h tries.po: term.h tries.po: unctrl.h trim_sgr0.So: curses.h trim_sgr0.So: ncurses_def.h +trim_sgr0.So: ncurses_dll.h trim_sgr0.So: term.h trim_sgr0.So: unctrl.h trim_sgr0.o: curses.h trim_sgr0.o: ncurses_def.h +trim_sgr0.o: ncurses_dll.h trim_sgr0.o: term.h trim_sgr0.o: unctrl.h trim_sgr0.po: curses.h trim_sgr0.po: ncurses_def.h +trim_sgr0.po: ncurses_dll.h trim_sgr0.po: term.h trim_sgr0.po: unctrl.h tty_update.So: curses.h tty_update.So: ncurses_def.h +tty_update.So: ncurses_dll.h tty_update.So: term.h tty_update.So: unctrl.h tty_update.o: curses.h tty_update.o: ncurses_def.h +tty_update.o: ncurses_dll.h tty_update.o: term.h tty_update.o: unctrl.h tty_update.po: curses.h tty_update.po: ncurses_def.h +tty_update.po: ncurses_dll.h tty_update.po: term.h tty_update.po: unctrl.h unctrl.So: curses.h unctrl.So: ncurses_def.h +unctrl.So: ncurses_dll.h unctrl.So: term.h unctrl.So: unctrl.c unctrl.So: unctrl.h unctrl.o: curses.h unctrl.o: ncurses_def.h +unctrl.o: ncurses_dll.h unctrl.o: term.h unctrl.o: unctrl.c unctrl.o: unctrl.h unctrl.po: curses.h unctrl.po: ncurses_def.h +unctrl.po: ncurses_dll.h unctrl.po: term.h unctrl.po: unctrl.c unctrl.po: unctrl.h version.So: curses.h version.So: ncurses_def.h +version.So: ncurses_dll.h version.So: term.h version.So: unctrl.h version.o: curses.h version.o: ncurses_def.h +version.o: ncurses_dll.h version.o: term.h version.o: unctrl.h version.po: curses.h version.po: ncurses_def.h +version.po: ncurses_dll.h version.po: term.h version.po: unctrl.h visbuf.So: curses.h visbuf.So: ncurses_def.h +visbuf.So: ncurses_dll.h visbuf.So: term.h visbuf.So: unctrl.h visbuf.o: curses.h visbuf.o: ncurses_def.h +visbuf.o: ncurses_dll.h visbuf.o: term.h visbuf.o: unctrl.h visbuf.po: curses.h visbuf.po: ncurses_def.h +visbuf.po: ncurses_dll.h visbuf.po: term.h visbuf.po: unctrl.h vsscanf.So: curses.h vsscanf.So: ncurses_def.h +vsscanf.So: ncurses_dll.h vsscanf.So: term.h vsscanf.So: unctrl.h vsscanf.o: curses.h vsscanf.o: ncurses_def.h +vsscanf.o: ncurses_dll.h vsscanf.o: term.h vsscanf.o: unctrl.h vsscanf.po: curses.h vsscanf.po: ncurses_def.h +vsscanf.po: ncurses_dll.h vsscanf.po: term.h vsscanf.po: unctrl.h wresize.So: curses.h wresize.So: ncurses_def.h +wresize.So: ncurses_dll.h wresize.So: term.h wresize.So: unctrl.h wresize.o: curses.h wresize.o: ncurses_def.h +wresize.o: ncurses_dll.h wresize.o: term.h wresize.o: unctrl.h wresize.po: curses.h wresize.po: ncurses_def.h +wresize.po: ncurses_dll.h wresize.po: term.h wresize.po: unctrl.h write_entry.So: curses.h write_entry.So: ncurses_def.h +write_entry.So: ncurses_dll.h write_entry.So: term.h write_entry.So: unctrl.h write_entry.o: curses.h write_entry.o: ncurses_def.h +write_entry.o: ncurses_dll.h write_entry.o: term.h write_entry.o: unctrl.h write_entry.po: curses.h write_entry.po: ncurses_def.h +write_entry.po: ncurses_dll.h write_entry.po: term.h write_entry.po: unctrl.h .endif diff --git a/sbin/ifconfig/Makefile.depend b/sbin/ifconfig/Makefile.depend index 81e22e1a6347..4ab51a8797f8 100644 --- a/sbin/ifconfig/Makefile.depend +++ b/sbin/ifconfig/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libexpat \ - lib/libipx \ lib/libjail \ lib/libsbuf \ diff --git a/usr.bin/kdump/Makefile.depend b/usr.bin/kdump/Makefile.depend index 519b37138281..3790ba0cea85 100644 --- a/usr.bin/kdump/Makefile.depend +++ b/usr.bin/kdump/Makefile.depend @@ -10,7 +10,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcapsicum \ lib/libcompiler_rt \ + lib/libnv \ .include diff --git a/usr.bin/split/Makefile.depend b/usr.bin/split/Makefile.depend index 65ce5679ccda..afbe02588041 100644 --- a/usr.bin/split/Makefile.depend +++ b/usr.bin/split/Makefile.depend @@ -9,6 +9,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libutil \ .include diff --git a/usr.bin/units/Makefile.depend b/usr.bin/units/Makefile.depend index 65ce5679ccda..c244cb86490a 100644 --- a/usr.bin/units/Makefile.depend +++ b/usr.bin/units/Makefile.depend @@ -9,6 +9,8 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libedit \ + lib/ncurses/ncurses \ .include From a7c93c3d7a7a26ace8f62c8f2be50c4569228a9d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 5 May 2014 18:32:24 +0000 Subject: [PATCH 133/228] If building WITH_META_FILES we do not want STAGING --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cdd6b16bdce8..924ad9eb9389 100644 --- a/Makefile +++ b/Makefile @@ -500,8 +500,9 @@ buildLINT: WITHOUT_META_MODE= .export WITHOUT_META_MODE .else +WITHOUT_STAGING= UPDATE_DEPENDFILE=NO -.export UPDATE_DEPENDFILE +.export UPDATE_DEPENDFILE WITHOUT_STAGING .endif .if make(universe) From 2a8d24d0bbc4c25aa8373f070de08666a8be1748 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 5 May 2014 19:35:32 +0000 Subject: [PATCH 134/228] Sadly there is at least on lib we need to build for host (libdwarf) else we cannot build ctfconvert. --- share/mk/local.dirdeps.mk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index 62e2c9fba41b..1215cbbac487 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -24,9 +24,12 @@ M_dep_qual_fixes += C;($m),[^/.,]*$$;\1; #.info M_dep_qual_fixes=${M_dep_qual_fixes} # we want to supress these dependencies for host tools +# but some libs are sadly needed. +_need_host_libs= lib/libdwarf +N_host_libs:= ${cd ${SRCTOP} && echo lib/lib*:L:sh:${_need_host_libs:${M_ListToSkip}}:${M_ListToSkip}} DIRDEPS_FILTER.host = \ + ${N_host_libs} \ Ninclude* \ - Nlib/lib* \ Nlib/csu* \ Nlib/[mn]* \ Ngnu/lib/csu* \ From 3d4adb0524acd32a70d1f3b0dc92bf697c1a4026 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 5 May 2014 22:55:42 +0000 Subject: [PATCH 135/228] Need to stage_files --- gnu/lib/csu/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/lib/csu/Makefile b/gnu/lib/csu/Makefile index 02f540bad165..5aba49f44734 100644 --- a/gnu/lib/csu/Makefile +++ b/gnu/lib/csu/Makefile @@ -81,4 +81,10 @@ realinstall: ${file} ${DESTDIR}${LIBDIR}/${file} .endfor +.if ${MK_STAGING} == "yes" +STAGE_DIR= ${STAGE_LIBDIR} +STAGE_FILES= ${OBJS} ${SOBJS} ${TGTOBJS} +staging: stage_files +.endif + .include From f974b33f6ed6f35170c520d2be111bfc2c3954cd Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 7 May 2014 23:50:44 +0000 Subject: [PATCH 136/228] Update - allow collecting stats when WITH_META_STATS is defined. --- share/mk/meta.autodep.mk | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/share/mk/meta.autodep.mk b/share/mk/meta.autodep.mk index c29c26e85e24..3d3bccdaf879 100644 --- a/share/mk/meta.autodep.mk +++ b/share/mk/meta.autodep.mk @@ -176,7 +176,9 @@ _depend = .info ${_DEPENDFILE:S,${SRCTOP}/,,} _depend=${_depend} .endif +.if ${UPDATE_DEPENDFILE} == "yes" gendirdeps: ${_DEPENDFILE} +.endif .if !target(${_DEPENDFILE}) .if ${_bootstrap_dirdeps} == "yes" @@ -259,4 +261,28 @@ ${_DEPENDFILE}: .PRECIOUS .endif CLEANFILES += *.meta filemon.* *.db + +# these make it easy to gather some stats +now_utc = ${%s:L:gmtime} +start_utc := ${now_utc} + +meta_stats= meta=${.MAKE.META.FILES:[#]} \ + created=${empty(.MAKE.META.CREATED):?0:${.MAKE.META.CREATED:[#]}} + +#.END: _reldir_finish +.if target(gendirdeps) +_reldir_finish: gendirdeps +.endif +_reldir_finish: .NOMETA + @echo "${TIME_STAMP} Finished ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}" + +#.ERROR: _reldir_failed +_reldir_failed: .NOMETA + @echo "${TIME_STAMP} Failed ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}" + +.ifdef WITH_META_STATS +.END: _reldir_finish +.ERROR: _reldir_failed +.endif + .endif From a46ef2fd316721c08c52ad9d235458088aaa80fa Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 10 May 2014 00:21:10 +0000 Subject: [PATCH 137/228] Handle empty meta list --- share/mk/meta.autodep.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/mk/meta.autodep.mk b/share/mk/meta.autodep.mk index 3d3bccdaf879..57d01807880d 100644 --- a/share/mk/meta.autodep.mk +++ b/share/mk/meta.autodep.mk @@ -266,7 +266,7 @@ CLEANFILES += *.meta filemon.* *.db now_utc = ${%s:L:gmtime} start_utc := ${now_utc} -meta_stats= meta=${.MAKE.META.FILES:[#]} \ +meta_stats= meta=${empty(.MAKE.META.FILES):?0:${.MAKE.META.FILES:[#]}} \ created=${empty(.MAKE.META.CREATED):?0:${.MAKE.META.CREATED:[#]}} #.END: _reldir_finish @@ -280,7 +280,7 @@ _reldir_finish: .NOMETA _reldir_failed: .NOMETA @echo "${TIME_STAMP} Failed ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}" -.ifdef WITH_META_STATS +.if defined(WITH_META_STATS) && ${.MAKE.LEVEL} > 0 .END: _reldir_finish .ERROR: _reldir_failed .endif From 241026341fe78960c9ab1963c215fd821c55d6de Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 10 May 2014 00:23:12 +0000 Subject: [PATCH 138/228] When bootstrapping tools MACHINE==host and EARLY_BUILD defined, so not use any of stage tree. M_whence only first value counts --- share/mk/local.sys.mk | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index 71e4a8f410ca..3ade230909c2 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -23,7 +23,7 @@ M_ListToSkip= O:u:ts::S,:,:N,g:S,^,N, # type should be a builtin in any sh since about 1980, # AUTOCONF := ${autoconf:L:${M_whence}} M_type = @x@(type $$x 2> /dev/null); echo;@:sh:[0]:N* found*:[@]:C,[()],,g -M_whence = ${M_type}:M/* +M_whence = ${M_type}:M/*:[1] # convert a path to a valid shell variable M_P2V = tu:C,[./-],_,g @@ -206,6 +206,9 @@ STAGE_INCSDIR= ${STAGE_OBJTOP}${INCSDIR:U/include} # the target is usually an absolute path STAGE_SYMLINKS_DIR= ${STAGE_OBJTOP} +.if ${MACHINE} == "host" && defined(EARLY_BUILD) +# we literally want to build with host cc and includes +.else .ifndef WITH_SYSROOT .if ${MACHINE} != "host" CFLAGS_LAST+= -nostdinc @@ -214,7 +217,7 @@ GCCVER?= 4.2 CLANGVER?= 3.4 CFLAGS_LAST+= -isystem ${STAGE_OBJTOP}/usr/include -I${STAGE_OBJTOP}/usr/include CFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} -LDFLAGS_LAST+= -B${STAGE_LIBDIR} -L${STAGE_LIBDIR} +LDFLAGS_LAST+= -B${STAGE_LIBDIR} -L${STAGE_LIBDIR} -L${STAGE_OBJTOP}/lib CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER} -I${STAGE_OBJTOP}/usr/include/c++/${GCCVER} # backward doesn't get searched if -nostdinc CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER}/backward -I${STAGE_OBJTOP}/usr/include/c++/${GCCVER}/backward @@ -227,6 +230,7 @@ CFLAGS_LAST+= --sysroot=${STAGE_OBJTOP} LDFLAGS_LAST+= -Wl,-rpath-link,${STAGE_LIBDIR} STAGED_INCLUDE_DIR= ${STAGE_OBJTOP}/usr/include .endif +.endif # EARLY_BUILD for host .if ${USE_META:Uyes} == "yes" .include "meta.sys.mk" @@ -283,10 +287,26 @@ MAKE_PRINT_VAR_ON_ERROR += .MAKE.MAKEFILES .PATH # these are handy # we can use this for a cheap timestamp at the start of a target's script, # but not at the end - since make will expand both at the same time. +AnEmptyVar= TIME_STAMP_FMT = @ %s [%Y-%m-%d %T] TIME_STAMP = ${TIME_STAMP_FMT:localtime} # this will produce the same output but as of when date(1) is run. TIME_STAMP_DATE = `date '+${TIME_STAMP_FMT}'` TIME_STAMP_END?= ${TIME_STAMP_DATE} +.ifdef WITH_TIMESTAMPS +TRACER= ${TIME_STAMP} ${AnEmptyVar} +.endif + +# toolchains can be a pain - especially bootstrappping them +.ifdef WITH_TOOLSDIR +TOOLSDIR?= ${HOST_OBJTOP}/tools +.elif defined(STAGE_HOST_OBJTOP) && exists(${STAGE_HOST_OBJTOP}/usr/bin) +TOOLSDIR?= ${STAGE_HOST_OBJTOP} +.endif +.if ${.MAKE.LEVEL} == 0 && exists(${TOOLSDIR}/usr/bin) +PATH:= ${PATH:S,:, ,g:@d@${exists(${TOOLSDIR}$d):?${TOOLSDIR}$d:}@:ts:}:${PATH} +.export PATH +.endif + .endif # bmake From 005cfa50ee755a2c0a8eda47d667ff32b7c49055 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 10 May 2014 00:24:32 +0000 Subject: [PATCH 139/228] Don't make wildcards .PHONY Add pseudo machines host and common to machine list for destroy --- share/mk/bsd.obj.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.obj.mk b/share/mk/bsd.obj.mk index 27a60ae26402..3937a42f02f4 100644 --- a/share/mk/bsd.obj.mk +++ b/share/mk/bsd.obj.mk @@ -129,7 +129,7 @@ cleanobj: clean cleandepend # Tell bmake not to look for generated files via .PATH .if !empty(CLEANFILES) -.NOPATH: ${CLEANFILES} +.NOPATH: ${CLEANFILES:N*\**} .endif .if !target(clean) @@ -180,7 +180,8 @@ destroy-stage: .NOMETA .endif # allow parallel destruction -.for m in ${ALL_MACHINE_LIST} +_destroy_machine_list = common host ${ALL_MACHINE_LIST} +.for m in ${_destroy_machine_list:O:u} destroy-all: destroy.$m .if !target(destroy.$m) destroy.$m: .NOMETA From ea14011ca880e2227c9197c469723c40d9f99dc2 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 10 May 2014 00:25:21 +0000 Subject: [PATCH 140/228] We now want src.opts.mk --- share/mk/local.dirdeps.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index 1215cbbac487..15b3977666c5 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -2,7 +2,7 @@ # we are the 1st makefile .if !defined(MK_CTF) -.include "${SRCTOP}/share/mk/bsd.opts.mk" +.include "${SRCTOP}/share/mk/src.opts.mk" .endif # DEP_MACHINE is set before we get here, this may not be. @@ -41,7 +41,7 @@ DIRDEPS_FILTER.host = \ .if ${DEP_MACHINE} != "host" # this is how we can handle optional dependencies -.if ${MK_SSP:Uno} != "no" && defined(PROG) +.if ${MK_SSP:Uno} != "no" && ${DEP_RELDIR:U${RELDIR}} == "lib/libc" DIRDEPS += gnu/lib/libssp/libssp_nonshared .endif From 6a96de39c1588cfa9e36edb73494343f89e9f248 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 10 May 2014 00:26:40 +0000 Subject: [PATCH 141/228] We may need to supress SHLIB_LINKS with NO_SHLIB_LINKS --- share/mk/meta.stage.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index 8498adf13523..63cef7f656ad 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -135,11 +135,13 @@ STAGE_LIBS ?= ${.ALLSRC:N.dirdep} stage_libs: .dirdep @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_LIBDIR:${STAGE_DIR_FILTER}} ${STAGE_LIBS} +.if !defined(NO_SHLIB_LINKS) .if !empty(SHLIB_LINKS) @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_LIBDIR:${STAGE_DIR_FILTER}} \ ${SHLIB_LINKS:@t@${STAGE_LIBS:T:M$t.*} $t@} .elif !empty(SHLIB_LINK) && !empty(SHLIB_NAME) @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_LIBDIR:${STAGE_DIR_FILTER}} ${SHLIB_NAME} ${SHLIB_LINK} ${SYMLINKS:T} +.endif .endif @touch $@ .endif From 4e3343548a4bb8341c2e05b6f30cb1ace706b854 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 10 May 2014 05:11:34 +0000 Subject: [PATCH 142/228] Prep stage tree for tests --- pkgs/pseudo/stage/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/pseudo/stage/Makefile b/pkgs/pseudo/stage/Makefile index dac840cb2455..0889ad20208f 100644 --- a/pkgs/pseudo/stage/Makefile +++ b/pkgs/pseudo/stage/Makefile @@ -8,7 +8,7 @@ all: # we don't need to see it. stage-distrib-dirs: .META mkdir -p ${STAGE_OBJTOP} - ${.MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${STAGE_OBJTOP} > $@ + ${.MAKE} -C ${SRCTOP}/etc distrib-dirs -DWITH_TESTS DESTDIR=${STAGE_OBJTOP} > $@ .include From 77fe74ed79ef67dc5f117a166c2b540d23d16471 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 10 May 2014 05:13:29 +0000 Subject: [PATCH 143/228] Toolchains are a pain - especially to bootstrap rather than waste time optimizing for a rare? event, leverage the targets in src/Makefile.inc1 --- pkgs/pseudo/bootstrap-tools/Makefile | 46 +++++++++++++++++++++ pkgs/pseudo/bootstrap-tools/Makefile.depend | 10 +++++ 2 files changed, 56 insertions(+) create mode 100644 pkgs/pseudo/bootstrap-tools/Makefile create mode 100644 pkgs/pseudo/bootstrap-tools/Makefile.depend diff --git a/pkgs/pseudo/bootstrap-tools/Makefile b/pkgs/pseudo/bootstrap-tools/Makefile new file mode 100644 index 000000000000..34aae96b9914 --- /dev/null +++ b/pkgs/pseudo/bootstrap-tools/Makefile @@ -0,0 +1,46 @@ +# $FreeBSD$ + +# building clang is particularly tedious - so avoid re-inventing wheels +# the end result is + +all: cross-tools build-tools + +UPDATE_DEPENDFILE= no + +# we build for the pseudo machine "host" +TARGET_MACHINE= host + +HOST_MACHINE!= uname -m +HOST_MACHINE_ARCH!= uname -p +TOOLSDIR?= ${HOST_OBJTOP}/tools +LEGACY_TOOLS?= ${TOOLSDIR}/legacy + +BSENV= \ + unset MAKEOBJDIR; MAKEOBJDIRPREFIX=${TOOLSDIR} \ + MAKESYSPATH=${SRCTOP}/tools/build/mk:${SRCTOP}/share/mk \ + TARGET=${HOST_MACHINE} TARGET_ARCH=${HOST_MACHINE_ARCH} \ + WITHOUT_STAGING=1 STAGE_ROOT= \ + WORLDTMP=${TOOLSDIR} LEGACY_TOOLS=${LEGACY_TOOLS} + +BSARGS= \ + DESTDIR= \ + SSP_CFLAGS= \ + MK_HTML=no MK_INFO=no NO_LINT=yes MK_MAN=no \ + -DNO_PIC MK_PROFILE=no -DNO_SHARED \ + -DNO_CPU_CFLAGS -DNO_WARNS MK_CTF=no -DEARLY_BUILD MK_TESTS=no + + +legacy: .MAKE .META + mkdir -p ${LEGACY_TOOLS} + ${MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${TOOLSDIR} > $@2 + ${MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${LEGACY_TOOLS} > $@ + ${BSENV} ${MAKE} -C ${SRCTOP} -f Makefile.inc1 ${BSARGS} $@ + touch $@ + +bootstrap-tools: legacy +build-tools: bootstrap-tools +cross-tools: build-tools + +cross-tools build-tools bootstrap-tools: .MAKE .META + ${BSENV} ${MAKE} -C ${SRCTOP} -f Makefile.inc1 ${BSARGS} $@ + touch $@ diff --git a/pkgs/pseudo/bootstrap-tools/Makefile.depend b/pkgs/pseudo/bootstrap-tools/Makefile.depend new file mode 100644 index 000000000000..fc65dd39f4f9 --- /dev/null +++ b/pkgs/pseudo/bootstrap-tools/Makefile.depend @@ -0,0 +1,10 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = + + +.include From 1e93612eb7520d41088a3dbde89380de581ccde0 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 10 May 2014 05:14:29 +0000 Subject: [PATCH 144/228] Use src.opts.mk --- pkgs/pseudo/cddl/Makefile.depend | 2 +- pkgs/pseudo/toolchain/Makefile.depend | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/pseudo/cddl/Makefile.depend b/pkgs/pseudo/cddl/Makefile.depend index 7bd7fba9b647..a4cbff7fbf99 100644 --- a/pkgs/pseudo/cddl/Makefile.depend +++ b/pkgs/pseudo/cddl/Makefile.depend @@ -5,7 +5,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} .if !defined(MK_CTF) -.include "${SRCTOP}/share/mk/bsd.opts.mk" +.include "${SRCTOP}/share/mk/src.opts.mk" .endif DIRDEPS = \ diff --git a/pkgs/pseudo/toolchain/Makefile.depend b/pkgs/pseudo/toolchain/Makefile.depend index 174feea80932..4ea8d5879693 100644 --- a/pkgs/pseudo/toolchain/Makefile.depend +++ b/pkgs/pseudo/toolchain/Makefile.depend @@ -5,7 +5,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} .if !defined(MK_CLANG) -.include "${SRCTOP}/share/mk/bsd.opts.mk" +.include "${SRCTOP}/share/mk/src.opts.mk" .endif DIRDEPS= usr.bin/xinstall From 76b28ad6ab6dc8d4a62cb7de7f143595be535813 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 10 May 2014 05:16:28 +0000 Subject: [PATCH 145/228] Updated dependencies --- bin/cat/Makefile.depend | 2 ++ bin/chflags/Makefile.depend | 2 ++ bin/chio/Makefile.depend | 2 ++ bin/chmod/Makefile.depend | 2 ++ bin/cp/Makefile.depend | 2 ++ bin/csh/Makefile.depend | 2 ++ bin/date/Makefile.depend | 2 ++ bin/dd/Makefile.depend | 2 ++ bin/df/Makefile.depend | 2 ++ bin/domainname/Makefile.depend | 2 ++ bin/echo/Makefile.depend | 2 ++ bin/expr/Makefile.depend | 2 ++ bin/getfacl/Makefile.depend | 2 ++ bin/hostname/Makefile.depend | 2 ++ bin/kenv/Makefile.depend | 2 ++ bin/kill/Makefile.depend | 2 ++ bin/ln/Makefile.depend | 2 ++ bin/ls/Makefile.depend | 2 ++ bin/mkdir/Makefile.depend | 2 ++ bin/mv/Makefile.depend | 2 ++ bin/pax/Makefile.depend | 2 ++ bin/pkill/Makefile.depend | 2 ++ bin/ps/Makefile.depend | 3 +++ bin/pwait/Makefile.depend | 2 ++ bin/pwd/Makefile.depend | 2 ++ bin/rcp/Makefile.depend | 2 ++ bin/realpath/Makefile.depend | 2 ++ bin/rm/Makefile.depend | 2 ++ bin/rmail/Makefile.depend | 2 ++ bin/rmdir/Makefile.depend | 2 ++ bin/setfacl/Makefile.depend | 2 ++ bin/sh/Makefile.depend | 2 ++ bin/sleep/Makefile.depend | 2 ++ bin/stty/Makefile.depend | 2 ++ bin/sync/Makefile.depend | 2 ++ bin/test/Makefile.depend | 2 ++ bin/uuidgen/Makefile.depend | 2 ++ cddl/lib/libavl/Makefile.depend | 2 ++ cddl/lib/libctf/Makefile.depend | 2 ++ cddl/lib/libdtrace/Makefile.depend | 2 ++ cddl/lib/libnvpair/Makefile.depend | 2 ++ cddl/lib/libumem/Makefile.depend | 2 ++ cddl/lib/libuutil/Makefile.depend | 2 ++ cddl/lib/libzfs/Makefile.depend | 2 ++ cddl/lib/libzfs_core/Makefile.depend | 2 ++ cddl/lib/libzpool/Makefile.depend | 2 ++ cddl/sbin/zfs/Makefile.depend | 2 ++ cddl/sbin/zpool/Makefile.depend | 2 ++ cddl/usr.bin/ctfconvert/Makefile.depend | 2 ++ cddl/usr.bin/ctfdump/Makefile.depend | 2 ++ cddl/usr.bin/ctfmerge/Makefile.depend | 2 ++ cddl/usr.bin/sgsmsg/Makefile.depend | 2 ++ cddl/usr.bin/zinject/Makefile.depend | 2 ++ cddl/usr.bin/zstreamdump/Makefile.depend | 2 ++ cddl/usr.bin/ztest/Makefile.depend | 2 ++ cddl/usr.sbin/dtrace/Makefile.depend | 3 +++ cddl/usr.sbin/lockstat/Makefile.depend | 3 +++ cddl/usr.sbin/zdb/Makefile.depend | 2 ++ cddl/usr.sbin/zhack/Makefile.depend | 2 ++ games/bcd/Makefile.depend | 2 ++ games/caesar/Makefile.depend | 2 ++ games/fortune/fortune/Makefile.depend | 2 ++ games/fortune/strfile/Makefile.depend | 2 ++ games/fortune/unstr/Makefile.depend | 2 ++ games/grdc/Makefile.depend | 2 ++ games/morse/Makefile.depend | 2 ++ games/number/Makefile.depend | 2 ++ games/pom/Makefile.depend | 2 ++ games/ppt/Makefile.depend | 2 ++ games/primes/Makefile.depend | 2 ++ games/random/Makefile.depend | 2 ++ gnu/lib/libdialog/Makefile.depend | 2 ++ gnu/lib/libgcc/Makefile.depend | 2 ++ gnu/lib/libgomp/Makefile.depend | 2 ++ gnu/lib/libreadline/readline/Makefile.depend | 2 ++ gnu/lib/libregex/Makefile.depend | 2 ++ gnu/lib/libstdc++/Makefile.depend | 2 ++ gnu/lib/libsupc++/Makefile.depend | 2 ++ gnu/usr.bin/binutils/addr2line/Makefile.depend | 2 ++ gnu/usr.bin/binutils/as/Makefile.depend | 1 + gnu/usr.bin/binutils/ld/Makefile.depend.amd64 | 1 + gnu/usr.bin/binutils/nm/Makefile.depend | 2 ++ gnu/usr.bin/binutils/objcopy/Makefile.depend | 2 ++ gnu/usr.bin/binutils/objdump/Makefile.depend | 2 ++ gnu/usr.bin/binutils/readelf/Makefile.depend | 2 ++ gnu/usr.bin/binutils/size/Makefile.depend | 2 ++ gnu/usr.bin/binutils/strings/Makefile.depend | 2 ++ gnu/usr.bin/binutils/strip/Makefile.depend | 2 ++ gnu/usr.bin/cc/c++/Makefile.depend | 2 ++ gnu/usr.bin/cc/c++filt/Makefile.depend | 2 ++ gnu/usr.bin/cc/cc/Makefile.depend | 1 + gnu/usr.bin/cc/cc_tools/Makefile.depend | 2 ++ gnu/usr.bin/cc/cpp/Makefile.depend | 2 ++ gnu/usr.bin/cc/gcov/Makefile.depend | 2 ++ gnu/usr.bin/dialog/Makefile.depend | 2 ++ gnu/usr.bin/diff3/Makefile.depend | 2 ++ gnu/usr.bin/gdb/gdbserver/Makefile.depend | 2 ++ gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/devices/grops/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/devices/grotty/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/preproc/grn/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/preproc/html/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/preproc/pic/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/preproc/refer/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/roff/groff/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/roff/troff/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend | 5 ++++- gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend | 2 ++ gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend | 5 ++++- gnu/usr.bin/rcs/ci/Makefile.depend | 2 ++ gnu/usr.bin/rcs/co/Makefile.depend | 2 ++ gnu/usr.bin/rcs/ident/Makefile.depend | 2 ++ gnu/usr.bin/rcs/merge/Makefile.depend | 2 ++ gnu/usr.bin/rcs/rcs/Makefile.depend | 2 ++ gnu/usr.bin/rcs/rcsclean/Makefile.depend | 2 ++ gnu/usr.bin/rcs/rcsdiff/Makefile.depend | 2 ++ gnu/usr.bin/rcs/rcsmerge/Makefile.depend | 2 ++ gnu/usr.bin/rcs/rlog/Makefile.depend | 2 ++ gnu/usr.bin/sdiff/Makefile.depend | 2 ++ gnu/usr.bin/texinfo/info/Makefile.depend | 2 ++ gnu/usr.bin/texinfo/infokey/Makefile.depend | 2 ++ gnu/usr.bin/texinfo/install-info/Makefile.depend | 2 ++ gnu/usr.bin/texinfo/makeinfo/Makefile.depend | 2 ++ gnu/usr.bin/texinfo/texindex/Makefile.depend | 2 ++ kerberos5/lib/libasn1/Makefile.depend | 2 ++ kerberos5/lib/libheimbase/Makefile.depend | 2 ++ kerberos5/lib/libheimipcc/Makefile.depend | 2 ++ kerberos5/lib/libheimsqlite/Makefile.depend | 2 ++ kerberos5/lib/libroken/Makefile.depend | 2 ++ kerberos5/lib/libwind/Makefile.depend | 2 ++ kerberos5/tools/asn1_compile/Makefile.depend | 2 ++ kerberos5/tools/make-roken/Makefile.depend | 2 ++ kerberos5/tools/slc/Makefile.depend | 2 ++ lib/atf/libatf-c++/Makefile.depend | 2 ++ lib/atf/libatf-c/Makefile.depend | 2 ++ lib/libalias/libalias/Makefile.depend | 2 ++ lib/libalias/modules/cuseeme/Makefile.depend | 2 ++ lib/libalias/modules/dummy/Makefile.depend | 2 ++ lib/libalias/modules/ftp/Makefile.depend | 2 ++ lib/libalias/modules/irc/Makefile.depend | 2 ++ lib/libalias/modules/nbt/Makefile.depend | 2 ++ lib/libalias/modules/pptp/Makefile.depend | 2 ++ lib/libalias/modules/skinny/Makefile.depend | 2 ++ lib/libalias/modules/smedia/Makefile.depend | 2 ++ lib/libauditd/Makefile.depend | 2 ++ lib/libbegemot/Makefile.depend | 2 ++ lib/libblocksruntime/Makefile.depend | 2 ++ lib/libbluetooth/Makefile.depend | 2 ++ lib/libbsm/Makefile.depend | 2 ++ lib/libbz2/Makefile.depend | 2 ++ lib/libc++/Makefile.depend | 2 ++ lib/libc/Makefile.depend | 1 + lib/libcalendar/Makefile.depend | 2 ++ lib/libcam/Makefile.depend | 2 ++ lib/libcapsicum/Makefile.depend | 2 ++ lib/libcom_err/Makefile.depend | 2 ++ lib/libcrypt/Makefile.depend | 2 ++ lib/libcxxrt/Makefile.depend | 2 ++ lib/libdevinfo/Makefile.depend | 2 ++ lib/libdevstat/Makefile.depend | 2 ++ lib/libdwarf/Makefile.depend | 2 ++ lib/libedit/Makefile.depend | 2 ++ lib/libelf/Makefile.depend | 2 ++ lib/libexecinfo/Makefile.depend | 2 ++ lib/libexpat/Makefile.depend | 2 ++ lib/libgeom/Makefile.depend | 2 ++ lib/libgpib/Makefile.depend | 2 ++ lib/libgssapi/Makefile.depend | 2 ++ lib/libipsec/Makefile.depend | 2 ++ lib/libjail/Makefile.depend | 2 ++ lib/libkiconv/Makefile.depend | 2 ++ lib/libkvm/Makefile.depend | 2 ++ lib/liblzma/Makefile.depend | 2 ++ lib/libmagic/Makefile.depend | 2 ++ lib/libmd/Makefile.depend | 2 ++ lib/libmemstat/Makefile.depend | 2 ++ lib/libmilter/Makefile.depend | 2 ++ lib/libnetgraph/Makefile.depend | 2 ++ lib/libngatm/Makefile.depend | 2 ++ lib/libnv/Makefile.depend | 2 ++ lib/libopie/Makefile.depend | 2 ++ lib/libpam/libpam/Makefile.depend | 2 ++ lib/libpam/modules/pam_chroot/Makefile.depend | 2 ++ lib/libpam/modules/pam_deny/Makefile.depend | 2 ++ lib/libpam/modules/pam_echo/Makefile.depend | 2 ++ lib/libpam/modules/pam_exec/Makefile.depend | 2 ++ lib/libpam/modules/pam_ftpusers/Makefile.depend | 2 ++ lib/libpam/modules/pam_group/Makefile.depend | 2 ++ lib/libpam/modules/pam_guest/Makefile.depend | 2 ++ lib/libpam/modules/pam_lastlog/Makefile.depend | 2 ++ lib/libpam/modules/pam_login_access/Makefile.depend | 2 ++ lib/libpam/modules/pam_nologin/Makefile.depend | 2 ++ lib/libpam/modules/pam_opie/Makefile.depend | 2 ++ lib/libpam/modules/pam_opieaccess/Makefile.depend | 2 ++ lib/libpam/modules/pam_passwdqc/Makefile.depend | 2 ++ lib/libpam/modules/pam_permit/Makefile.depend | 2 ++ lib/libpam/modules/pam_rhosts/Makefile.depend | 2 ++ lib/libpam/modules/pam_rootok/Makefile.depend | 2 ++ lib/libpam/modules/pam_securetty/Makefile.depend | 2 ++ lib/libpam/modules/pam_self/Makefile.depend | 2 ++ lib/libpam/modules/pam_tacplus/Makefile.depend | 2 ++ lib/libpam/modules/pam_unix/Makefile.depend | 2 ++ lib/libpcap/Makefile.depend | 2 ++ lib/libpmc/Makefile.depend | 2 ++ lib/libproc/Makefile.depend | 2 ++ lib/libprocstat/Makefile.depend | 2 ++ lib/librpcsec_gss/Makefile.depend | 2 ++ lib/librpcsvc/Makefile.depend | 2 ++ lib/librt/Makefile.depend | 2 ++ lib/librtld_db/Makefile.depend | 2 ++ lib/libsbuf/Makefile.depend | 2 ++ lib/libsdp/Makefile.depend | 2 ++ lib/libsmb/Makefile.depend | 2 ++ lib/libstdbuf/Makefile.depend | 2 ++ lib/libstdthreads/Makefile.depend | 2 ++ lib/libtacplus/Makefile.depend | 2 ++ lib/libthr/Makefile.depend | 2 ++ lib/libthread_db/Makefile.depend | 2 ++ lib/libufs/Makefile.depend | 2 ++ lib/libugidfw/Makefile.depend | 2 ++ lib/libulog/Makefile.depend | 2 ++ lib/libusb/Makefile.depend | 2 ++ lib/libusbhid/Makefile.depend | 2 ++ lib/libutil/Makefile.depend | 2 ++ lib/libvgl/Makefile.depend | 2 ++ lib/libvmmapi/Makefile.depend | 2 ++ lib/libwrap/Makefile.depend | 2 ++ lib/libypclnt/Makefile.depend | 2 ++ lib/libz/Makefile.depend | 2 ++ lib/msun/Makefile.depend | 2 ++ lib/ncurses/form/Makefile.depend | 3 +++ lib/ncurses/formw/Makefile.depend | 2 ++ lib/ncurses/menu/Makefile.depend | 3 +++ lib/ncurses/menuw/Makefile.depend | 2 ++ lib/ncurses/ncurses/Makefile.depend | 2 ++ lib/ncurses/ncursesw/Makefile.depend | 2 ++ lib/ncurses/panel/Makefile.depend | 3 +++ lib/ncurses/panelw/Makefile.depend | 2 ++ libexec/atrun/Makefile.depend | 2 ++ libexec/bootpd/bootpgw/Makefile.depend | 2 ++ libexec/bootpd/tools/bootpef/Makefile.depend | 2 ++ libexec/bootpd/tools/bootptest/Makefile.depend | 2 ++ libexec/comsat/Makefile.depend | 2 ++ libexec/fingerd/Makefile.depend | 2 ++ libexec/ftpd/Makefile.depend | 2 ++ libexec/getty/Makefile.depend | 2 ++ libexec/mail.local/Makefile.depend | 2 ++ libexec/mknetid/Makefile.depend | 2 ++ libexec/pppoed/Makefile.depend | 2 ++ libexec/rbootd/Makefile.depend | 2 ++ libexec/revnetgroup/Makefile.depend | 2 ++ libexec/rlogind/Makefile.depend | 2 ++ libexec/rpc.rquotad/Makefile.depend | 2 ++ libexec/rpc.rstatd/Makefile.depend | 2 ++ libexec/rpc.rusersd/Makefile.depend | 2 ++ libexec/rpc.rwalld/Makefile.depend | 2 ++ libexec/rpc.sprayd/Makefile.depend | 2 ++ libexec/rshd/Makefile.depend | 2 ++ libexec/smrsh/Makefile.depend | 2 ++ libexec/talkd/Makefile.depend | 2 ++ libexec/tcpd/Makefile.depend | 2 ++ libexec/tftp-proxy/Makefile.depend | 2 ++ libexec/tftpd/Makefile.depend | 2 ++ libexec/ulog-helper/Makefile.depend | 2 ++ libexec/ypxfr/Makefile.depend | 2 ++ sbin/adjkerntz/Makefile.depend | 2 ++ sbin/badsect/Makefile.depend | 2 ++ sbin/bsdlabel/Makefile.depend | 2 ++ sbin/camcontrol/Makefile.depend | 2 ++ sbin/ccdconfig/Makefile.depend | 2 ++ sbin/clri/Makefile.depend | 2 ++ sbin/comcontrol/Makefile.depend | 2 ++ sbin/conscontrol/Makefile.depend | 2 ++ sbin/ddb/Makefile.depend | 2 ++ sbin/devfs/Makefile.depend | 2 ++ sbin/dhclient/Makefile.depend | 2 ++ sbin/dmesg/Makefile.depend | 2 ++ sbin/dump/Makefile.depend | 2 ++ sbin/dumpfs/Makefile.depend | 2 ++ sbin/dumpon/Makefile.depend | 2 ++ sbin/etherswitchcfg/Makefile.depend | 2 ++ sbin/fdisk/Makefile.depend | 2 ++ sbin/ffsinfo/Makefile.depend | 2 ++ sbin/fsck/Makefile.depend | 2 ++ sbin/fsck_ffs/Makefile.depend | 2 ++ sbin/fsck_msdosfs/Makefile.depend | 2 ++ sbin/fsdb/Makefile.depend | 2 ++ sbin/fsirand/Makefile.depend | 2 ++ sbin/gbde/Makefile.depend | 2 ++ sbin/geom/class/cache/Makefile.depend | 2 ++ sbin/geom/class/concat/Makefile.depend | 2 ++ sbin/geom/class/journal/Makefile.depend | 2 ++ sbin/geom/class/label/Makefile.depend | 2 ++ sbin/geom/class/mirror/Makefile.depend | 2 ++ sbin/geom/class/mountver/Makefile.depend | 2 ++ sbin/geom/class/multipath/Makefile.depend | 2 ++ sbin/geom/class/nop/Makefile.depend | 2 ++ sbin/geom/class/part/Makefile.depend | 2 ++ sbin/geom/class/raid/Makefile.depend | 2 ++ sbin/geom/class/raid3/Makefile.depend | 2 ++ sbin/geom/class/sched/Makefile.depend | 2 ++ sbin/geom/class/shsec/Makefile.depend | 2 ++ sbin/geom/class/stripe/Makefile.depend | 2 ++ sbin/geom/class/virstor/Makefile.depend | 2 ++ sbin/geom/core/Makefile.depend | 2 ++ sbin/ggate/ggatec/Makefile.depend | 2 ++ sbin/ggate/ggated/Makefile.depend | 2 ++ sbin/ggate/ggatel/Makefile.depend | 2 ++ sbin/growfs/Makefile.depend | 2 ++ sbin/gvinum/Makefile.depend | 2 ++ sbin/ifconfig/Makefile.depend | 2 ++ sbin/init/Makefile.depend | 1 + sbin/ipf/ipf/Makefile.depend | 2 ++ sbin/ipf/ipfs/Makefile.depend | 2 ++ sbin/ipf/ipfstat/Makefile.depend | 2 ++ sbin/ipf/ipftest/Makefile.depend | 2 ++ sbin/ipf/ipmon/Makefile.depend | 2 ++ sbin/ipf/ipnat/Makefile.depend | 2 ++ sbin/ipf/ippool/Makefile.depend | 2 ++ sbin/ipf/ipresend/Makefile.depend | 2 ++ sbin/ipfw/Makefile.depend | 2 ++ sbin/iscontrol/Makefile.depend | 2 ++ sbin/kldconfig/Makefile.depend | 2 ++ sbin/kldload/Makefile.depend | 2 ++ sbin/kldstat/Makefile.depend | 2 ++ sbin/kldunload/Makefile.depend | 2 ++ sbin/ldconfig/Makefile.depend | 2 ++ sbin/md5/Makefile.depend | 2 ++ sbin/mdconfig/Makefile.depend | 2 ++ sbin/mdmfs/Makefile.depend | 2 ++ sbin/mknod/Makefile.depend | 2 ++ sbin/mksnap_ffs/Makefile.depend | 2 ++ sbin/mount/Makefile.depend | 2 ++ sbin/mount_cd9660/Makefile.depend | 2 ++ sbin/mount_fusefs/Makefile.depend | 2 ++ sbin/mount_msdosfs/Makefile.depend | 2 ++ sbin/mount_nfs/Makefile.depend | 2 ++ sbin/mount_nullfs/Makefile.depend | 2 ++ sbin/mount_udf/Makefile.depend | 2 ++ sbin/mount_unionfs/Makefile.depend | 2 ++ sbin/natd/Makefile.depend | 2 ++ sbin/newfs/Makefile.depend | 2 ++ sbin/newfs_msdos/Makefile.depend | 2 ++ sbin/nfsiod/Makefile.depend | 2 ++ sbin/nos-tun/Makefile.depend | 2 ++ sbin/nvmecontrol/Makefile.depend | 2 ++ sbin/pfctl/Makefile.depend | 2 ++ sbin/pflogd/Makefile.depend | 2 ++ sbin/ping/Makefile.depend | 4 ++++ sbin/ping6/Makefile.depend | 2 ++ sbin/quotacheck/Makefile.depend | 2 ++ sbin/rcorder/Makefile.depend | 2 ++ sbin/reboot/Makefile.depend | 2 ++ sbin/recoverdisk/Makefile.depend | 2 ++ sbin/restore/Makefile.depend | 2 ++ sbin/route/Makefile.depend | 2 ++ sbin/routed/rtquery/Makefile.depend | 2 ++ sbin/rtsol/Makefile.depend | 2 ++ sbin/savecore/Makefile.depend | 2 ++ sbin/setkey/Makefile.depend | 2 ++ sbin/shutdown/Makefile.depend | 2 ++ sbin/spppcontrol/Makefile.depend | 2 ++ sbin/swapon/Makefile.depend | 2 ++ sbin/sysctl/Makefile.depend | 2 ++ sbin/tunefs/Makefile.depend | 2 ++ sbin/umount/Makefile.depend | 2 ++ share/syscons/scrnmaps/Makefile.depend | 2 ++ usr.bin/apply/Makefile.depend | 2 ++ usr.bin/asa/Makefile.depend | 2 ++ usr.bin/at/Makefile.depend | 2 ++ usr.bin/atm/sscop/Makefile.depend | 2 ++ usr.bin/awk/Makefile.depend | 2 ++ usr.bin/banner/Makefile.depend | 2 ++ usr.bin/basename/Makefile.depend | 2 ++ usr.bin/bc/Makefile.depend | 2 ++ usr.bin/biff/Makefile.depend | 2 ++ usr.bin/bluetooth/bthost/Makefile.depend | 2 ++ usr.bin/bluetooth/btsockstat/Makefile.depend | 2 ++ usr.bin/bluetooth/rfcomm_sppd/Makefile.depend | 2 ++ usr.bin/bmake/Makefile.depend | 1 + usr.bin/brandelf/Makefile.depend | 2 ++ usr.bin/bsdiff/bsdiff/Makefile.depend | 2 ++ usr.bin/bsdiff/bspatch/Makefile.depend | 2 ++ usr.bin/bzip2/Makefile.depend | 2 ++ usr.bin/bzip2recover/Makefile.depend | 2 ++ usr.bin/c89/Makefile.depend | 2 ++ usr.bin/c99/Makefile.depend | 2 ++ usr.bin/calendar/Makefile.depend | 2 ++ usr.bin/cap_mkdb/Makefile.depend | 2 ++ usr.bin/catman/Makefile.depend | 2 ++ usr.bin/chat/Makefile.depend | 2 ++ usr.bin/checknr/Makefile.depend | 2 ++ usr.bin/chpass/Makefile.depend | 2 ++ usr.bin/cksum/Makefile.depend | 2 ++ usr.bin/cmp/Makefile.depend | 2 ++ usr.bin/col/Makefile.depend | 2 ++ usr.bin/colcrt/Makefile.depend | 2 ++ usr.bin/colldef/Makefile.depend | 2 ++ usr.bin/colrm/Makefile.depend | 2 ++ usr.bin/column/Makefile.depend | 2 ++ usr.bin/comm/Makefile.depend | 2 ++ usr.bin/compile_et/Makefile.depend | 2 ++ usr.bin/compress/Makefile.depend | 2 ++ usr.bin/cpuset/Makefile.depend | 2 ++ usr.bin/csplit/Makefile.depend | 2 ++ usr.bin/csup/Makefile.depend | 2 ++ usr.bin/ctags/Makefile.depend | 2 ++ usr.bin/ctlstat/Makefile.depend | 2 ++ usr.bin/cut/Makefile.depend | 2 ++ usr.bin/dirname/Makefile.depend | 2 ++ usr.bin/du/Makefile.depend | 2 ++ usr.bin/ee/Makefile.depend | 2 ++ usr.bin/elf2aout/Makefile.depend | 2 ++ usr.bin/elfdump/Makefile.depend | 2 ++ usr.bin/enigma/Makefile.depend | 2 ++ usr.bin/env/Makefile.depend | 2 ++ usr.bin/expand/Makefile.depend | 2 ++ usr.bin/false/Makefile.depend | 2 ++ usr.bin/file/Makefile.depend | 2 ++ usr.bin/file2c/Makefile.depend | 2 ++ usr.bin/find/Makefile.depend | 2 ++ usr.bin/finger/Makefile.depend | 2 ++ usr.bin/fmt/Makefile.depend | 2 ++ usr.bin/fold/Makefile.depend | 2 ++ usr.bin/from/Makefile.depend | 2 ++ usr.bin/fstat/Makefile.depend | 2 ++ usr.bin/fsync/Makefile.depend | 2 ++ usr.bin/ftp/Makefile.depend | 2 ++ usr.bin/gcore/Makefile.depend | 2 ++ usr.bin/gencat/Makefile.depend | 2 ++ usr.bin/getconf/Makefile.depend | 2 ++ usr.bin/getent/Makefile.depend | 2 ++ usr.bin/getopt/Makefile.depend | 2 ++ usr.bin/gprof/Makefile.depend | 2 ++ usr.bin/grep/Makefile.depend | 2 ++ usr.bin/gzip/Makefile.depend | 2 ++ usr.bin/head/Makefile.depend | 2 ++ usr.bin/hexdump/Makefile.depend | 2 ++ usr.bin/id/Makefile.depend | 2 ++ usr.bin/indent/Makefile.depend | 2 ++ usr.bin/ipcrm/Makefile.depend | 2 ++ usr.bin/ipcs/Makefile.depend | 2 ++ usr.bin/join/Makefile.depend | 2 ++ usr.bin/jot/Makefile.depend | 2 ++ usr.bin/kdump/Makefile.depend | 2 ++ usr.bin/keylogin/Makefile.depend | 2 ++ usr.bin/keylogout/Makefile.depend | 2 ++ usr.bin/killall/Makefile.depend | 2 ++ usr.bin/ktrace/Makefile.depend | 2 ++ usr.bin/ktrdump/Makefile.depend | 2 ++ usr.bin/lam/Makefile.depend | 2 ++ usr.bin/last/Makefile.depend | 2 ++ usr.bin/lastcomm/Makefile.depend | 2 ++ usr.bin/ldd/Makefile.depend | 2 ++ usr.bin/leave/Makefile.depend | 2 ++ usr.bin/less/Makefile.depend | 2 ++ usr.bin/lessecho/Makefile.depend | 2 ++ usr.bin/lesskey/Makefile.depend | 2 ++ usr.bin/limits/Makefile.depend | 2 ++ usr.bin/locale/Makefile.depend | 2 ++ usr.bin/locate/bigram/Makefile.depend | 2 ++ usr.bin/locate/code/Makefile.depend | 2 ++ usr.bin/locate/locate/Makefile.depend | 2 ++ usr.bin/lock/Makefile.depend | 2 ++ usr.bin/lockf/Makefile.depend | 2 ++ usr.bin/logger/Makefile.depend | 2 ++ usr.bin/login/Makefile.depend | 2 ++ usr.bin/logins/Makefile.depend | 2 ++ usr.bin/logname/Makefile.depend | 2 ++ usr.bin/look/Makefile.depend | 2 ++ usr.bin/lsvfs/Makefile.depend | 2 ++ usr.bin/lzmainfo/Makefile.depend | 2 ++ usr.bin/m4/Makefile.depend | 2 ++ usr.bin/mail/Makefile.depend | 2 ++ usr.bin/makewhatis/Makefile.depend | 2 ++ usr.bin/mandoc/Makefile.depend | 2 ++ usr.bin/mesg/Makefile.depend | 2 ++ usr.bin/minigzip/Makefile.depend | 2 ++ usr.bin/ministat/Makefile.depend | 2 ++ usr.bin/mkfifo/Makefile.depend | 2 ++ usr.bin/mklocale/Makefile.depend | 2 ++ usr.bin/mkstr/Makefile.depend | 2 ++ usr.bin/mktemp/Makefile.depend | 2 ++ usr.bin/mkulzma/Makefile.depend | 2 ++ usr.bin/mkuzip/Makefile.depend | 2 ++ usr.bin/msgs/Makefile.depend | 2 ++ usr.bin/mt/Makefile.depend | 2 ++ usr.bin/nc/Makefile.depend | 2 ++ usr.bin/ncal/Makefile.depend | 2 ++ usr.bin/netstat/Makefile.depend | 3 ++- usr.bin/newgrp/Makefile.depend | 2 ++ usr.bin/nfsstat/Makefile.depend | 2 ++ usr.bin/nice/Makefile.depend | 2 ++ usr.bin/nl/Makefile.depend | 2 ++ usr.bin/nohup/Makefile.depend | 2 ++ usr.bin/opieinfo/Makefile.depend | 2 ++ usr.bin/opiekey/Makefile.depend | 2 ++ usr.bin/opiepasswd/Makefile.depend | 2 ++ usr.bin/passwd/Makefile.depend | 2 ++ usr.bin/paste/Makefile.depend | 2 ++ usr.bin/pathchk/Makefile.depend | 2 ++ usr.bin/perror/Makefile.depend | 2 ++ usr.bin/pr/Makefile.depend | 2 ++ usr.bin/printenv/Makefile.depend | 2 ++ usr.bin/printf/Makefile.depend | 2 ++ usr.bin/procstat/Makefile.depend | 2 ++ usr.bin/quota/Makefile.depend | 2 ++ usr.bin/rctl/Makefile.depend | 2 ++ usr.bin/renice/Makefile.depend | 2 ++ usr.bin/rev/Makefile.depend | 2 ++ usr.bin/revoke/Makefile.depend | 2 ++ usr.bin/rlogin/Makefile.depend | 2 ++ usr.bin/rpcgen/Makefile.depend | 2 ++ usr.bin/rpcinfo/Makefile.depend | 2 ++ usr.bin/rs/Makefile.depend | 2 ++ usr.bin/rsh/Makefile.depend | 2 ++ usr.bin/rup/Makefile.depend | 2 ++ usr.bin/ruptime/Makefile.depend | 2 ++ usr.bin/rusers/Makefile.depend | 2 ++ usr.bin/rwall/Makefile.depend | 2 ++ usr.bin/rwho/Makefile.depend | 2 ++ usr.bin/script/Makefile.depend | 2 ++ usr.bin/sed/Makefile.depend | 2 ++ usr.bin/seq/Makefile.depend | 2 ++ usr.bin/showmount/Makefile.depend | 2 ++ usr.bin/sockstat/Makefile.depend | 2 ++ usr.bin/sort/Makefile.depend | 2 ++ usr.bin/split/Makefile.depend | 2 ++ usr.bin/stat/Makefile.depend | 2 ++ usr.bin/stdbuf/Makefile.depend | 2 ++ usr.bin/su/Makefile.depend | 2 ++ usr.bin/systat/Makefile.depend | 2 ++ usr.bin/tabs/Makefile.depend | 2 ++ usr.bin/tail/Makefile.depend | 2 ++ usr.bin/talk/Makefile.depend | 3 ++- usr.bin/tcopy/Makefile.depend | 2 ++ usr.bin/tee/Makefile.depend | 2 ++ usr.bin/tftp/Makefile.depend | 2 ++ usr.bin/time/Makefile.depend | 2 ++ usr.bin/tip/tip/Makefile.depend | 2 ++ usr.bin/top/Makefile.depend | 3 +++ usr.bin/touch/Makefile.depend | 2 ++ usr.bin/tput/Makefile.depend | 2 ++ usr.bin/tr/Makefile.depend | 2 ++ usr.bin/true/Makefile.depend | 2 ++ usr.bin/truncate/Makefile.depend | 2 ++ usr.bin/truss/Makefile.depend.amd64 | 2 ++ usr.bin/tset/Makefile.depend | 2 ++ usr.bin/tsort/Makefile.depend | 2 ++ usr.bin/tty/Makefile.depend | 2 ++ usr.bin/ul/Makefile.depend | 2 ++ usr.bin/uname/Makefile.depend | 2 ++ usr.bin/unexpand/Makefile.depend | 2 ++ usr.bin/unifdef/Makefile.depend | 2 ++ usr.bin/uniq/Makefile.depend | 2 ++ usr.bin/units/Makefile.depend | 2 ++ usr.bin/unvis/Makefile.depend | 2 ++ usr.bin/usbhidaction/Makefile.depend | 2 ++ usr.bin/usbhidctl/Makefile.depend | 2 ++ usr.bin/users/Makefile.depend | 2 ++ usr.bin/uudecode/Makefile.depend | 2 ++ usr.bin/uuencode/Makefile.depend | 2 ++ usr.bin/vacation/Makefile.depend | 2 ++ usr.bin/vgrind/Makefile.depend | 2 ++ usr.bin/vi/Makefile.depend | 2 ++ usr.bin/vis/Makefile.depend | 2 ++ usr.bin/vmstat/Makefile.depend | 2 ++ usr.bin/w/Makefile.depend | 2 ++ usr.bin/wall/Makefile.depend | 2 ++ usr.bin/wc/Makefile.depend | 2 ++ usr.bin/what/Makefile.depend | 2 ++ usr.bin/whereis/Makefile.depend | 2 ++ usr.bin/which/Makefile.depend | 2 ++ usr.bin/who/Makefile.depend | 2 ++ usr.bin/whois/Makefile.depend | 2 ++ usr.bin/write/Makefile.depend | 2 ++ usr.bin/xargs/Makefile.depend | 2 ++ usr.bin/xinstall/Makefile.depend | 2 ++ usr.bin/xlint/lint1/Makefile.depend | 2 ++ usr.bin/xlint/lint2/Makefile.depend | 2 ++ usr.bin/xlint/xlint/Makefile.depend | 2 ++ usr.bin/xstr/Makefile.depend | 2 ++ usr.bin/xz/Makefile.depend | 2 ++ usr.bin/xzdec/Makefile.depend | 2 ++ usr.bin/yacc/Makefile.depend | 2 ++ usr.bin/yes/Makefile.depend | 2 ++ usr.bin/ypcat/Makefile.depend | 2 ++ usr.bin/ypmatch/Makefile.depend | 2 ++ usr.bin/ypwhich/Makefile.depend | 2 ++ usr.sbin/ac/Makefile.depend | 2 ++ usr.sbin/accton/Makefile.depend | 2 ++ usr.sbin/acpi/acpiconf/Makefile.depend | 2 ++ usr.sbin/acpi/acpidb/Makefile.depend | 2 ++ usr.sbin/acpi/acpidump/Makefile.depend | 2 ++ usr.sbin/acpi/iasl/Makefile.depend | 2 ++ usr.sbin/amd/amd/Makefile.depend | 2 ++ usr.sbin/amd/amq/Makefile.depend | 2 ++ usr.sbin/amd/fixmount/Makefile.depend | 2 ++ usr.sbin/amd/fsinfo/Makefile.depend | 2 ++ usr.sbin/amd/hlfsd/Makefile.depend | 2 ++ usr.sbin/amd/mk-amd-map/Makefile.depend | 2 ++ usr.sbin/amd/pawd/Makefile.depend | 2 ++ usr.sbin/amd/wire-test/Makefile.depend | 2 ++ usr.sbin/ancontrol/Makefile.depend | 2 ++ usr.sbin/apm/Makefile.depend | 2 ++ usr.sbin/arp/Makefile.depend | 2 ++ usr.sbin/asf/Makefile.depend | 2 ++ usr.sbin/audit/Makefile.depend | 2 ++ usr.sbin/auditd/Makefile.depend | 2 ++ usr.sbin/auditreduce/Makefile.depend | 2 ++ usr.sbin/authpf/Makefile.depend | 2 ++ usr.sbin/bluetooth/ath3kfw/Makefile.depend | 2 ++ usr.sbin/bluetooth/bcmfw/Makefile.depend | 2 ++ usr.sbin/bluetooth/bt3cfw/Makefile.depend | 2 ++ usr.sbin/bluetooth/bthidcontrol/Makefile.depend | 2 ++ usr.sbin/bluetooth/bthidd/Makefile.depend | 2 ++ usr.sbin/bluetooth/btpand/Makefile.depend | 2 ++ usr.sbin/bluetooth/hccontrol/Makefile.depend | 2 ++ usr.sbin/bluetooth/hcsecd/Makefile.depend | 2 ++ usr.sbin/bluetooth/hcseriald/Makefile.depend | 2 ++ usr.sbin/bluetooth/l2control/Makefile.depend | 2 ++ usr.sbin/bluetooth/l2ping/Makefile.depend | 2 ++ usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend | 2 ++ usr.sbin/bluetooth/sdpcontrol/Makefile.depend | 2 ++ usr.sbin/bluetooth/sdpd/Makefile.depend | 2 ++ usr.sbin/boot0cfg/Makefile.depend | 2 ++ usr.sbin/bootparamd/bootparamd/Makefile.depend | 2 ++ usr.sbin/bootparamd/callbootd/Makefile.depend | 2 ++ usr.sbin/bsdinstall/partedit/Makefile.depend | 2 ++ usr.sbin/bsnmpd/gensnmptree/Makefile.depend | 2 ++ usr.sbin/btxld/Makefile.depend | 2 ++ usr.sbin/cdcontrol/Makefile.depend | 2 ++ usr.sbin/chkgrp/Makefile.depend | 2 ++ usr.sbin/chown/Makefile.depend | 2 ++ usr.sbin/chroot/Makefile.depend | 2 ++ usr.sbin/ckdist/Makefile.depend | 2 ++ usr.sbin/clear_locks/Makefile.depend | 2 ++ usr.sbin/config/Makefile.depend | 2 ++ usr.sbin/cpucontrol/Makefile.depend | 2 ++ usr.sbin/cron/cron/Makefile.depend | 2 ++ usr.sbin/cron/crontab/Makefile.depend | 2 ++ usr.sbin/crunch/crunchgen/Makefile.depend | 2 ++ usr.sbin/crunch/crunchide/Makefile.depend | 2 ++ usr.sbin/ctladm/Makefile.depend | 2 ++ usr.sbin/ctm/ctm/Makefile.depend | 2 ++ usr.sbin/ctm/ctm_dequeue/Makefile.depend | 2 ++ usr.sbin/ctm/ctm_rmail/Makefile.depend | 2 ++ usr.sbin/ctm/ctm_smail/Makefile.depend | 2 ++ usr.sbin/daemon/Makefile.depend | 2 ++ usr.sbin/dconschat/Makefile.depend | 2 ++ usr.sbin/devinfo/Makefile.depend | 2 ++ usr.sbin/digictl/Makefile.depend | 2 ++ usr.sbin/diskinfo/Makefile.depend | 2 ++ usr.sbin/dumpcis/Makefile.depend | 2 ++ usr.sbin/editmap/Makefile.depend | 2 ++ usr.sbin/edquota/Makefile.depend | 2 ++ usr.sbin/extattr/Makefile.depend | 2 ++ usr.sbin/extattrctl/Makefile.depend | 2 ++ usr.sbin/faithd/Makefile.depend | 2 ++ usr.sbin/fdcontrol/Makefile.depend | 2 ++ usr.sbin/fdformat/Makefile.depend | 2 ++ usr.sbin/fdread/Makefile.depend | 2 ++ usr.sbin/fdwrite/Makefile.depend | 2 ++ usr.sbin/fifolog/fifolog_create/Makefile.depend | 2 ++ usr.sbin/fifolog/fifolog_reader/Makefile.depend | 2 ++ usr.sbin/fifolog/fifolog_writer/Makefile.depend | 2 ++ usr.sbin/flowctl/Makefile.depend | 2 ++ usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend | 2 ++ usr.sbin/fwcontrol/Makefile.depend | 2 ++ usr.sbin/getfmac/Makefile.depend | 2 ++ usr.sbin/getpmac/Makefile.depend | 2 ++ usr.sbin/gpioctl/Makefile.depend | 2 ++ usr.sbin/gstat/Makefile.depend | 2 ++ usr.sbin/i2c/Makefile.depend | 2 ++ usr.sbin/ifmcstat/Makefile.depend | 2 ++ usr.sbin/inetd/Makefile.depend | 2 ++ usr.sbin/iostat/Makefile.depend | 2 ++ usr.sbin/ip6addrctl/Makefile.depend | 2 ++ usr.sbin/ipfwpcap/Makefile.depend | 2 ++ usr.sbin/jail/Makefile.depend | 2 ++ usr.sbin/jexec/Makefile.depend | 2 ++ usr.sbin/jls/Makefile.depend | 2 ++ usr.sbin/kbdcontrol/Makefile.depend | 2 ++ usr.sbin/kbdmap/Makefile.depend | 2 ++ usr.sbin/kgmon/Makefile.depend | 2 ++ usr.sbin/kldxref/Makefile.depend | 2 ++ usr.sbin/lastlogin/Makefile.depend | 2 ++ usr.sbin/lmcconfig/Makefile.depend | 2 ++ usr.sbin/lpr/chkprintcap/Makefile.depend | 2 ++ usr.sbin/lpr/filters.ru/koi2855/Makefile.depend | 2 ++ usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend | 2 ++ usr.sbin/lpr/filters/Makefile.depend | 2 ++ usr.sbin/lpr/lpc/Makefile.depend | 2 ++ usr.sbin/lpr/lpd/Makefile.depend | 2 ++ usr.sbin/lpr/lpq/Makefile.depend | 2 ++ usr.sbin/lpr/lpr/Makefile.depend | 2 ++ usr.sbin/lpr/lprm/Makefile.depend | 2 ++ usr.sbin/lpr/lptest/Makefile.depend | 2 ++ usr.sbin/lpr/pac/Makefile.depend | 2 ++ usr.sbin/lptcontrol/Makefile.depend | 2 ++ usr.sbin/mailstats/Makefile.depend | 2 ++ usr.sbin/mailwrapper/Makefile.depend | 2 ++ usr.sbin/makefs/Makefile.depend | 2 ++ usr.sbin/makemap/Makefile.depend | 2 ++ usr.sbin/memcontrol/Makefile.depend | 2 ++ usr.sbin/mfiutil/Makefile.depend | 2 ++ usr.sbin/mixer/Makefile.depend | 2 ++ usr.sbin/mld6query/Makefile.depend | 2 ++ usr.sbin/mlxcontrol/Makefile.depend | 2 ++ usr.sbin/mountd/Makefile.depend | 2 ++ usr.sbin/moused/Makefile.depend | 2 ++ usr.sbin/mptable/Makefile.depend | 2 ++ usr.sbin/mptutil/Makefile.depend | 2 ++ usr.sbin/mtest/Makefile.depend | 2 ++ usr.sbin/mtree/Makefile.depend | 2 ++ usr.sbin/ndiscvt/Makefile.depend | 2 ++ usr.sbin/ndp/Makefile.depend | 2 ++ usr.sbin/newsyslog/Makefile.depend | 2 ++ usr.sbin/nfscbd/Makefile.depend | 2 ++ usr.sbin/nfsd/Makefile.depend | 2 ++ usr.sbin/nfsdumpstate/Makefile.depend | 2 ++ usr.sbin/nfsrevoke/Makefile.depend | 2 ++ usr.sbin/nfsuserd/Makefile.depend | 2 ++ usr.sbin/ngctl/Makefile.depend | 2 ++ usr.sbin/nghook/Makefile.depend | 2 ++ usr.sbin/nologin/Makefile.depend | 1 + usr.sbin/nscd/Makefile.depend | 2 ++ usr.sbin/ntp/sntp/Makefile.depend | 2 ++ usr.sbin/pciconf/Makefile.depend | 2 ++ usr.sbin/pmcannotate/Makefile.depend | 2 ++ usr.sbin/pmccontrol/Makefile.depend | 2 ++ usr.sbin/pmcstat/Makefile.depend | 2 ++ usr.sbin/portsnap/make_index/Makefile.depend | 2 ++ usr.sbin/portsnap/phttpget/Makefile.depend | 2 ++ usr.sbin/powerd/Makefile.depend | 2 ++ usr.sbin/pppctl/Makefile.depend | 2 ++ usr.sbin/praliases/Makefile.depend | 2 ++ usr.sbin/praudit/Makefile.depend | 2 ++ usr.sbin/procctl/Makefile.depend | 2 ++ usr.sbin/pstat/Makefile.depend | 2 ++ usr.sbin/pw/Makefile.depend | 2 ++ usr.sbin/pwd_mkdb/Makefile.depend | 2 ++ usr.sbin/quot/Makefile.depend | 2 ++ usr.sbin/quotaon/Makefile.depend | 2 ++ usr.sbin/rarpd/Makefile.depend | 2 ++ usr.sbin/repquota/Makefile.depend | 2 ++ usr.sbin/rip6query/Makefile.depend | 2 ++ usr.sbin/rmt/Makefile.depend | 2 ++ usr.sbin/route6d/Makefile.depend | 2 ++ usr.sbin/rpc.lockd/Makefile.depend | 2 ++ usr.sbin/rpc.statd/Makefile.depend | 2 ++ usr.sbin/rpc.umntall/Makefile.depend | 2 ++ usr.sbin/rpc.yppasswdd/Makefile.depend | 2 ++ usr.sbin/rpc.ypupdated/Makefile.depend | 2 ++ usr.sbin/rpc.ypxfrd/Makefile.depend | 2 ++ usr.sbin/rpcbind/Makefile.depend | 2 ++ usr.sbin/rrenumd/Makefile.depend | 2 ++ usr.sbin/rtadvctl/Makefile.depend | 2 ++ usr.sbin/rtadvd/Makefile.depend | 2 ++ usr.sbin/rtprio/Makefile.depend | 2 ++ usr.sbin/rtsold/Makefile.depend | 2 ++ usr.sbin/rwhod/Makefile.depend | 2 ++ usr.sbin/sa/Makefile.depend | 2 ++ usr.sbin/services_mkdb/Makefile.depend | 2 ++ usr.sbin/setfib/Makefile.depend | 2 ++ usr.sbin/setfmac/Makefile.depend | 2 ++ usr.sbin/setpmac/Makefile.depend | 2 ++ usr.sbin/sicontrol/Makefile.depend | 2 ++ usr.sbin/smbmsg/Makefile.depend | 2 ++ usr.sbin/snapinfo/Makefile.depend | 2 ++ usr.sbin/spray/Makefile.depend | 2 ++ usr.sbin/syslogd/Makefile.depend | 2 ++ usr.sbin/tcpdchk/Makefile.depend | 2 ++ usr.sbin/tcpdmatch/Makefile.depend | 2 ++ usr.sbin/tcpdrop/Makefile.depend | 2 ++ usr.sbin/timed/timed/Makefile.depend | 2 ++ usr.sbin/timed/timedc/Makefile.depend | 2 ++ usr.sbin/traceroute/Makefile.depend | 2 ++ usr.sbin/traceroute6/Makefile.depend | 2 ++ usr.sbin/trpt/Makefile.depend | 2 ++ usr.sbin/tzsetup/Makefile.depend | 2 ++ usr.sbin/uathload/Makefile.depend | 2 ++ usr.sbin/ugidfw/Makefile.depend | 2 ++ usr.sbin/uhsoctl/Makefile.depend | 2 ++ usr.sbin/usbconfig/Makefile.depend | 2 ++ usr.sbin/usbdump/Makefile.depend | 2 ++ usr.sbin/utx/Makefile.depend | 2 ++ usr.sbin/vidcontrol/Makefile.depend | 2 ++ usr.sbin/vipw/Makefile.depend | 2 ++ usr.sbin/wake/Makefile.depend | 2 ++ usr.sbin/watch/Makefile.depend | 2 ++ usr.sbin/watchdogd/Makefile.depend | 2 ++ usr.sbin/wlandebug/Makefile.depend | 2 ++ usr.sbin/wpa/hostapd_cli/Makefile.depend | 2 ++ usr.sbin/wpa/ndis_events/Makefile.depend | 2 ++ usr.sbin/wpa/wpa_cli/Makefile.depend | 2 ++ usr.sbin/wpa/wpa_passphrase/Makefile.depend | 2 ++ usr.sbin/yp_mkdb/Makefile.depend | 2 ++ usr.sbin/ypbind/Makefile.depend | 2 ++ usr.sbin/yppoll/Makefile.depend | 2 ++ usr.sbin/yppush/Makefile.depend | 2 ++ usr.sbin/ypserv/Makefile.depend | 2 ++ usr.sbin/ypset/Makefile.depend | 2 ++ usr.sbin/zic/zdump/Makefile.depend | 2 ++ usr.sbin/zic/zic/Makefile.depend | 2 ++ 815 files changed, 1674 insertions(+), 23 deletions(-) diff --git a/bin/cat/Makefile.depend b/bin/cat/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/cat/Makefile.depend +++ b/bin/cat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/chflags/Makefile.depend b/bin/chflags/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/chflags/Makefile.depend +++ b/bin/chflags/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/chio/Makefile.depend b/bin/chio/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/chio/Makefile.depend +++ b/bin/chio/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/chmod/Makefile.depend b/bin/chmod/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/chmod/Makefile.depend +++ b/bin/chmod/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/cp/Makefile.depend b/bin/cp/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/cp/Makefile.depend +++ b/bin/cp/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/csh/Makefile.depend b/bin/csh/Makefile.depend index 09144cacba33..8792a2fdc9d0 100644 --- a/bin/csh/Makefile.depend +++ b/bin/csh/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/ncurses/ncurses \ diff --git a/bin/date/Makefile.depend b/bin/date/Makefile.depend index 591ea4c790a0..b3c03a71825a 100644 --- a/bin/date/Makefile.depend +++ b/bin/date/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/protocols \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/dd/Makefile.depend b/bin/dd/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/dd/Makefile.depend +++ b/bin/dd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/df/Makefile.depend b/bin/df/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/bin/df/Makefile.depend +++ b/bin/df/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/bin/domainname/Makefile.depend b/bin/domainname/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/domainname/Makefile.depend +++ b/bin/domainname/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/echo/Makefile.depend b/bin/echo/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/echo/Makefile.depend +++ b/bin/echo/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/expr/Makefile.depend b/bin/expr/Makefile.depend index ce3b6ab0d1b3..26e188813d66 100644 --- a/bin/expr/Makefile.depend +++ b/bin/expr/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/getfacl/Makefile.depend b/bin/getfacl/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/getfacl/Makefile.depend +++ b/bin/getfacl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/hostname/Makefile.depend b/bin/hostname/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/hostname/Makefile.depend +++ b/bin/hostname/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/kenv/Makefile.depend b/bin/kenv/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/kenv/Makefile.depend +++ b/bin/kenv/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/kill/Makefile.depend b/bin/kill/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/kill/Makefile.depend +++ b/bin/kill/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/ln/Makefile.depend b/bin/ln/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/ln/Makefile.depend +++ b/bin/ln/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/ls/Makefile.depend b/bin/ls/Makefile.depend index ad3c317dabfe..b8efbdcd65f1 100644 --- a/bin/ls/Makefile.depend +++ b/bin/ls/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/ncurses/ncurses \ diff --git a/bin/mkdir/Makefile.depend b/bin/mkdir/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/mkdir/Makefile.depend +++ b/bin/mkdir/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/mv/Makefile.depend b/bin/mv/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/mv/Makefile.depend +++ b/bin/mv/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/pax/Makefile.depend b/bin/pax/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/pax/Makefile.depend +++ b/bin/pax/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/pkill/Makefile.depend b/bin/pkill/Makefile.depend index d65cbb5d7110..b7d414c85aeb 100644 --- a/bin/pkill/Makefile.depend +++ b/bin/pkill/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/bin/ps/Makefile.depend b/bin/ps/Makefile.depend index d0dee83e31ae..55f64b8f923e 100644 --- a/bin/ps/Makefile.depend +++ b/bin/ps/Makefile.depend @@ -3,12 +3,15 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libjail \ lib/libkvm \ lib/msun \ diff --git a/bin/pwait/Makefile.depend b/bin/pwait/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/pwait/Makefile.depend +++ b/bin/pwait/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/pwd/Makefile.depend b/bin/pwd/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/pwd/Makefile.depend +++ b/bin/pwd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/rcp/Makefile.depend b/bin/rcp/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/rcp/Makefile.depend +++ b/bin/rcp/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/realpath/Makefile.depend b/bin/realpath/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/bin/realpath/Makefile.depend +++ b/bin/realpath/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/rm/Makefile.depend b/bin/rm/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/rm/Makefile.depend +++ b/bin/rm/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/rmail/Makefile.depend b/bin/rmail/Makefile.depend index 5d4653b26ee4..369993741a21 100644 --- a/bin/rmail/Makefile.depend +++ b/bin/rmail/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libutil \ diff --git a/bin/rmdir/Makefile.depend b/bin/rmdir/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/rmdir/Makefile.depend +++ b/bin/rmdir/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/setfacl/Makefile.depend b/bin/setfacl/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/setfacl/Makefile.depend +++ b/bin/setfacl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/sh/Makefile.depend b/bin/sh/Makefile.depend index 1ce8bcc32cea..8c34e2e9ee31 100644 --- a/bin/sh/Makefile.depend +++ b/bin/sh/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/bin/sleep/Makefile.depend b/bin/sleep/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/sleep/Makefile.depend +++ b/bin/sleep/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/stty/Makefile.depend b/bin/stty/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/stty/Makefile.depend +++ b/bin/stty/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/sync/Makefile.depend b/bin/sync/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/bin/sync/Makefile.depend +++ b/bin/sync/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/test/Makefile.depend b/bin/test/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/bin/test/Makefile.depend +++ b/bin/test/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/uuidgen/Makefile.depend b/bin/uuidgen/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/bin/uuidgen/Makefile.depend +++ b/bin/uuidgen/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/cddl/lib/libavl/Makefile.depend b/cddl/lib/libavl/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/cddl/lib/libavl/Makefile.depend +++ b/cddl/lib/libavl/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/cddl/lib/libctf/Makefile.depend b/cddl/lib/libctf/Makefile.depend index 7cebd167f56b..8289d12000c8 100644 --- a/cddl/lib/libctf/Makefile.depend +++ b/cddl/lib/libctf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libz \ diff --git a/cddl/lib/libdtrace/Makefile.depend b/cddl/lib/libdtrace/Makefile.depend index 3ecdaf9d9f7e..8f7dd109b8ff 100644 --- a/cddl/lib/libdtrace/Makefile.depend +++ b/cddl/lib/libdtrace/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libproc \ diff --git a/cddl/lib/libnvpair/Makefile.depend b/cddl/lib/libnvpair/Makefile.depend index c0e2c4ad739d..26b0cb7f5dde 100644 --- a/cddl/lib/libnvpair/Makefile.depend +++ b/cddl/lib/libnvpair/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/cddl/lib/libumem/Makefile.depend b/cddl/lib/libumem/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/cddl/lib/libumem/Makefile.depend +++ b/cddl/lib/libumem/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/cddl/lib/libuutil/Makefile.depend b/cddl/lib/libuutil/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/cddl/lib/libuutil/Makefile.depend +++ b/cddl/lib/libuutil/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/cddl/lib/libzfs/Makefile.depend b/cddl/lib/libzfs/Makefile.depend index 21b3f4a4d49c..c37dc06029e6 100644 --- a/cddl/lib/libzfs/Makefile.depend +++ b/cddl/lib/libzfs/Makefile.depend @@ -6,11 +6,13 @@ DIRDEPS = \ cddl/lib/libnvpair \ cddl/lib/libumem \ cddl/lib/libzfs_core \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ diff --git a/cddl/lib/libzfs_core/Makefile.depend b/cddl/lib/libzfs_core/Makefile.depend index 5491942bf46e..d4b30864d0e6 100644 --- a/cddl/lib/libzfs_core/Makefile.depend +++ b/cddl/lib/libzfs_core/Makefile.depend @@ -4,11 +4,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ cddl/lib/libnvpair \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/cddl/lib/libzpool/Makefile.depend b/cddl/lib/libzpool/Makefile.depend index f7e66f1c71d7..e6ee354f02f6 100644 --- a/cddl/lib/libzpool/Makefile.depend +++ b/cddl/lib/libzpool/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libthr \ diff --git a/cddl/sbin/zfs/Makefile.depend b/cddl/sbin/zfs/Makefile.depend index ea888b8dd98f..bbd5273b1c9b 100644 --- a/cddl/sbin/zfs/Makefile.depend +++ b/cddl/sbin/zfs/Makefile.depend @@ -8,11 +8,13 @@ DIRDEPS = \ cddl/lib/libuutil \ cddl/lib/libzfs \ cddl/lib/libzfs_core \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/cddl/sbin/zpool/Makefile.depend b/cddl/sbin/zpool/Makefile.depend index 21820009e110..ee2b9c1e6e66 100644 --- a/cddl/sbin/zpool/Makefile.depend +++ b/cddl/sbin/zpool/Makefile.depend @@ -9,11 +9,13 @@ DIRDEPS = \ cddl/lib/libuutil \ cddl/lib/libzfs \ cddl/lib/libzfs_core \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/cddl/usr.bin/ctfconvert/Makefile.depend b/cddl/usr.bin/ctfconvert/Makefile.depend index 0dfef4dcd518..6a7ea61cc73b 100644 --- a/cddl/usr.bin/ctfconvert/Makefile.depend +++ b/cddl/usr.bin/ctfconvert/Makefile.depend @@ -4,11 +4,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ cddl/lib/libctf \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdwarf \ lib/libelf \ diff --git a/cddl/usr.bin/ctfdump/Makefile.depend b/cddl/usr.bin/ctfdump/Makefile.depend index ada171346726..2dd7922d54ae 100644 --- a/cddl/usr.bin/ctfdump/Makefile.depend +++ b/cddl/usr.bin/ctfdump/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libthr \ diff --git a/cddl/usr.bin/ctfmerge/Makefile.depend b/cddl/usr.bin/ctfmerge/Makefile.depend index 0dfef4dcd518..6a7ea61cc73b 100644 --- a/cddl/usr.bin/ctfmerge/Makefile.depend +++ b/cddl/usr.bin/ctfmerge/Makefile.depend @@ -4,11 +4,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ cddl/lib/libctf \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdwarf \ lib/libelf \ diff --git a/cddl/usr.bin/sgsmsg/Makefile.depend b/cddl/usr.bin/sgsmsg/Makefile.depend index df2384b66d87..659d7cca1ad8 100644 --- a/cddl/usr.bin/sgsmsg/Makefile.depend +++ b/cddl/usr.bin/sgsmsg/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ diff --git a/cddl/usr.bin/zinject/Makefile.depend b/cddl/usr.bin/zinject/Makefile.depend index 866f4dfca128..672391411234 100644 --- a/cddl/usr.bin/zinject/Makefile.depend +++ b/cddl/usr.bin/zinject/Makefile.depend @@ -9,11 +9,13 @@ DIRDEPS = \ cddl/lib/libzfs \ cddl/lib/libzfs_core \ cddl/lib/libzpool \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/cddl/usr.bin/zstreamdump/Makefile.depend b/cddl/usr.bin/zstreamdump/Makefile.depend index 7b76f1bf9ac6..e31b2b34708f 100644 --- a/cddl/usr.bin/zstreamdump/Makefile.depend +++ b/cddl/usr.bin/zstreamdump/Makefile.depend @@ -7,11 +7,13 @@ DIRDEPS = \ cddl/lib/libnvpair \ cddl/lib/libumem \ cddl/lib/libzpool \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libthr \ diff --git a/cddl/usr.bin/ztest/Makefile.depend b/cddl/usr.bin/ztest/Makefile.depend index d6ce1e90a61c..0c093416d1b6 100644 --- a/cddl/usr.bin/ztest/Makefile.depend +++ b/cddl/usr.bin/ztest/Makefile.depend @@ -10,11 +10,13 @@ DIRDEPS = \ cddl/lib/libzfs \ cddl/lib/libzfs_core \ cddl/lib/libzpool \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/cddl/usr.sbin/dtrace/Makefile.depend b/cddl/usr.sbin/dtrace/Makefile.depend index e5f3c82c5133..516fe6780d65 100644 --- a/cddl/usr.sbin/dtrace/Makefile.depend +++ b/cddl/usr.sbin/dtrace/Makefile.depend @@ -5,12 +5,15 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ cddl/lib/libctf \ cddl/lib/libdtrace \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/libelf \ lib/libproc \ lib/librtld_db \ diff --git a/cddl/usr.sbin/lockstat/Makefile.depend b/cddl/usr.sbin/lockstat/Makefile.depend index e5e0670ecbf5..1accae89ba85 100644 --- a/cddl/usr.sbin/lockstat/Makefile.depend +++ b/cddl/usr.sbin/lockstat/Makefile.depend @@ -5,12 +5,15 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ cddl/lib/libctf \ cddl/lib/libdtrace \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/libelf \ lib/libproc \ lib/librt \ diff --git a/cddl/usr.sbin/zdb/Makefile.depend b/cddl/usr.sbin/zdb/Makefile.depend index 866f4dfca128..672391411234 100644 --- a/cddl/usr.sbin/zdb/Makefile.depend +++ b/cddl/usr.sbin/zdb/Makefile.depend @@ -9,11 +9,13 @@ DIRDEPS = \ cddl/lib/libzfs \ cddl/lib/libzfs_core \ cddl/lib/libzpool \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/cddl/usr.sbin/zhack/Makefile.depend b/cddl/usr.sbin/zhack/Makefile.depend index 866f4dfca128..672391411234 100644 --- a/cddl/usr.sbin/zhack/Makefile.depend +++ b/cddl/usr.sbin/zhack/Makefile.depend @@ -9,11 +9,13 @@ DIRDEPS = \ cddl/lib/libzfs \ cddl/lib/libzfs_core \ cddl/lib/libzpool \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/games/bcd/Makefile.depend b/games/bcd/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/games/bcd/Makefile.depend +++ b/games/bcd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/caesar/Makefile.depend b/games/caesar/Makefile.depend index c0e2c4ad739d..26b0cb7f5dde 100644 --- a/games/caesar/Makefile.depend +++ b/games/caesar/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/games/fortune/fortune/Makefile.depend b/games/fortune/fortune/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/games/fortune/fortune/Makefile.depend +++ b/games/fortune/fortune/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/fortune/strfile/Makefile.depend b/games/fortune/strfile/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/games/fortune/strfile/Makefile.depend +++ b/games/fortune/strfile/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/fortune/unstr/Makefile.depend b/games/fortune/unstr/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/games/fortune/unstr/Makefile.depend +++ b/games/fortune/unstr/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/grdc/Makefile.depend b/games/grdc/Makefile.depend index dd43fad9b357..233a7c6cd0b8 100644 --- a/games/grdc/Makefile.depend +++ b/games/grdc/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/games/morse/Makefile.depend b/games/morse/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/games/morse/Makefile.depend +++ b/games/morse/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/number/Makefile.depend b/games/number/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/games/number/Makefile.depend +++ b/games/number/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/pom/Makefile.depend b/games/pom/Makefile.depend index c0e2c4ad739d..26b0cb7f5dde 100644 --- a/games/pom/Makefile.depend +++ b/games/pom/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/games/ppt/Makefile.depend b/games/ppt/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/games/ppt/Makefile.depend +++ b/games/ppt/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/primes/Makefile.depend b/games/primes/Makefile.depend index c0e2c4ad739d..26b0cb7f5dde 100644 --- a/games/primes/Makefile.depend +++ b/games/primes/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/games/random/Makefile.depend b/games/random/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/games/random/Makefile.depend +++ b/games/random/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/lib/libdialog/Makefile.depend b/gnu/lib/libdialog/Makefile.depend index 1375164ddc52..796e9bf46bb6 100644 --- a/gnu/lib/libdialog/Makefile.depend +++ b/gnu/lib/libdialog/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncursesw \ diff --git a/gnu/lib/libgcc/Makefile.depend b/gnu/lib/libgcc/Makefile.depend index cbb43ab610c4..1fbfd7fffcf5 100644 --- a/gnu/lib/libgcc/Makefile.depend +++ b/gnu/lib/libgcc/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ .include diff --git a/gnu/lib/libgomp/Makefile.depend b/gnu/lib/libgomp/Makefile.depend index e9550952ded0..71accaeebd52 100644 --- a/gnu/lib/libgomp/Makefile.depend +++ b/gnu/lib/libgomp/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/lib/libreadline/readline/Makefile.depend b/gnu/lib/libreadline/readline/Makefile.depend index dd43fad9b357..233a7c6cd0b8 100644 --- a/gnu/lib/libreadline/readline/Makefile.depend +++ b/gnu/lib/libreadline/readline/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/gnu/lib/libregex/Makefile.depend b/gnu/lib/libregex/Makefile.depend index aeea88b2fa87..c64a40fd9bc1 100644 --- a/gnu/lib/libregex/Makefile.depend +++ b/gnu/lib/libregex/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/lib/libstdc++/Makefile.depend b/gnu/lib/libstdc++/Makefile.depend index f9644cd4852c..e24c102fd216 100644 --- a/gnu/lib/libstdc++/Makefile.depend +++ b/gnu/lib/libstdc++/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/lib/libsupc++/Makefile.depend b/gnu/lib/libsupc++/Makefile.depend index 5d533a4fcd45..1afbe8be911c 100644 --- a/gnu/lib/libsupc++/Makefile.depend +++ b/gnu/lib/libsupc++/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/addr2line/Makefile.depend b/gnu/usr.bin/binutils/addr2line/Makefile.depend index e583d947164b..f720db2bf7fb 100644 --- a/gnu/usr.bin/binutils/addr2line/Makefile.depend +++ b/gnu/usr.bin/binutils/addr2line/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libbinutils \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/as/Makefile.depend b/gnu/usr.bin/binutils/as/Makefile.depend index 03255c03729a..c9c4fe5b3feb 100644 --- a/gnu/usr.bin/binutils/as/Makefile.depend +++ b/gnu/usr.bin/binutils/as/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libiberty \ gnu/usr.bin/binutils/libopcodes \ diff --git a/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 b/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 index d12d3720b2c3..9a0d07116a18 100644 --- a/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 +++ b/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libiberty \ include \ diff --git a/gnu/usr.bin/binutils/nm/Makefile.depend b/gnu/usr.bin/binutils/nm/Makefile.depend index e583d947164b..f720db2bf7fb 100644 --- a/gnu/usr.bin/binutils/nm/Makefile.depend +++ b/gnu/usr.bin/binutils/nm/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libbinutils \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/objcopy/Makefile.depend b/gnu/usr.bin/binutils/objcopy/Makefile.depend index e583d947164b..f720db2bf7fb 100644 --- a/gnu/usr.bin/binutils/objcopy/Makefile.depend +++ b/gnu/usr.bin/binutils/objcopy/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libbinutils \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/objdump/Makefile.depend b/gnu/usr.bin/binutils/objdump/Makefile.depend index 0b25f2ae2ac4..b21a71066e66 100644 --- a/gnu/usr.bin/binutils/objdump/Makefile.depend +++ b/gnu/usr.bin/binutils/objdump/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libbinutils \ @@ -12,6 +13,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/readelf/Makefile.depend b/gnu/usr.bin/binutils/readelf/Makefile.depend index e583d947164b..f720db2bf7fb 100644 --- a/gnu/usr.bin/binutils/readelf/Makefile.depend +++ b/gnu/usr.bin/binutils/readelf/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libbinutils \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/size/Makefile.depend b/gnu/usr.bin/binutils/size/Makefile.depend index e583d947164b..f720db2bf7fb 100644 --- a/gnu/usr.bin/binutils/size/Makefile.depend +++ b/gnu/usr.bin/binutils/size/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libbinutils \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/strings/Makefile.depend b/gnu/usr.bin/binutils/strings/Makefile.depend index e583d947164b..f720db2bf7fb 100644 --- a/gnu/usr.bin/binutils/strings/Makefile.depend +++ b/gnu/usr.bin/binutils/strings/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libbinutils \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/strip/Makefile.depend b/gnu/usr.bin/binutils/strip/Makefile.depend index e583d947164b..f720db2bf7fb 100644 --- a/gnu/usr.bin/binutils/strip/Makefile.depend +++ b/gnu/usr.bin/binutils/strip/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libbinutils \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/cc/c++/Makefile.depend b/gnu/usr.bin/cc/c++/Makefile.depend index d16e7b05543e..2652a148e659 100644 --- a/gnu/usr.bin/cc/c++/Makefile.depend +++ b/gnu/usr.bin/cc/c++/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/cc/cc_tools \ gnu/usr.bin/cc/libcpp \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/cc/c++filt/Makefile.depend b/gnu/usr.bin/cc/c++filt/Makefile.depend index 2db3c0066df0..fa5c21cf859c 100644 --- a/gnu/usr.bin/cc/c++filt/Makefile.depend +++ b/gnu/usr.bin/cc/c++filt/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/cc/cc_tools \ gnu/usr.bin/cc/libiberty \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/cc/cc/Makefile.depend b/gnu/usr.bin/cc/cc/Makefile.depend index 12613ee5fe5b..87b6d9d514bf 100644 --- a/gnu/usr.bin/cc/cc/Makefile.depend +++ b/gnu/usr.bin/cc/cc/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/usr.bin/cc/cc_tools \ gnu/usr.bin/cc/libcpp \ gnu/usr.bin/cc/libiberty \ diff --git a/gnu/usr.bin/cc/cc_tools/Makefile.depend b/gnu/usr.bin/cc/cc_tools/Makefile.depend index 986bc33a6253..05572c6be358 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile.depend +++ b/gnu/usr.bin/cc/cc_tools/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/gnu/usr.bin/cc/cpp/Makefile.depend b/gnu/usr.bin/cc/cpp/Makefile.depend index d16e7b05543e..2652a148e659 100644 --- a/gnu/usr.bin/cc/cpp/Makefile.depend +++ b/gnu/usr.bin/cc/cpp/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/cc/cc_tools \ gnu/usr.bin/cc/libcpp \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/cc/gcov/Makefile.depend b/gnu/usr.bin/cc/gcov/Makefile.depend index 2db3c0066df0..fa5c21cf859c 100644 --- a/gnu/usr.bin/cc/gcov/Makefile.depend +++ b/gnu/usr.bin/cc/gcov/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/cc/cc_tools \ gnu/usr.bin/cc/libiberty \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/dialog/Makefile.depend b/gnu/usr.bin/dialog/Makefile.depend index 35a0b670a376..546cb43f4f04 100644 --- a/gnu/usr.bin/dialog/Makefile.depend +++ b/gnu/usr.bin/dialog/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libdialog \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncursesw \ diff --git a/gnu/usr.bin/diff3/Makefile.depend b/gnu/usr.bin/diff3/Makefile.depend index 51d3c70a7766..ead1ad513fac 100644 --- a/gnu/usr.bin/diff3/Makefile.depend +++ b/gnu/usr.bin/diff3/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/gdb/gdbserver/Makefile.depend b/gnu/usr.bin/gdb/gdbserver/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/gnu/usr.bin/gdb/gdbserver/Makefile.depend +++ b/gnu/usr.bin/gdb/gdbserver/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend index a1f877240498..97cb0bdfd01e 100644 --- a/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend @@ -3,15 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libdriver \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend index a1f877240498..97cb0bdfd01e 100644 --- a/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend @@ -3,15 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libdriver \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend index a1f877240498..97cb0bdfd01e 100644 --- a/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend @@ -3,15 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libdriver \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend index a1f877240498..97cb0bdfd01e 100644 --- a/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend @@ -3,15 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libdriver \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grops/Makefile.depend b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend index a1f877240498..97cb0bdfd01e 100644 --- a/gnu/usr.bin/groff/src/devices/grops/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend @@ -3,15 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libdriver \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend index a1f877240498..97cb0bdfd01e 100644 --- a/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend @@ -3,15 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libdriver \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend index 6666db6dddae..f38013572255 100644 --- a/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend @@ -3,14 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend index 5a1d3f9ca69b..6936f25a9e7a 100644 --- a/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend @@ -3,14 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/html/Makefile.depend b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend index 5a1d3f9ca69b..6936f25a9e7a 100644 --- a/gnu/usr.bin/groff/src/preproc/html/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend @@ -3,14 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend index e57b66ca5165..aea5b2d8cc45 100644 --- a/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend @@ -3,14 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend index c42313497c77..345d8fbb2d22 100644 --- a/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend @@ -3,15 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libbib \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend b/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend index 5a1d3f9ca69b..6936f25a9e7a 100644 --- a/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend @@ -3,14 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend index 5a1d3f9ca69b..6936f25a9e7a 100644 --- a/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend @@ -3,14 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/roff/groff/Makefile.depend b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend index 5a1d3f9ca69b..6936f25a9e7a 100644 --- a/gnu/usr.bin/groff/src/roff/groff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend @@ -3,14 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/roff/troff/Makefile.depend b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend index a7a2cfe57d2c..80cfb86ca689 100644 --- a/gnu/usr.bin/groff/src/roff/troff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend @@ -3,14 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend index 5a1d3f9ca69b..6936f25a9e7a 100644 --- a/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend @@ -3,14 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend index 5a1d3f9ca69b..6936f25a9e7a 100644 --- a/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend @@ -3,14 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend index ffeaed7041b4..5f92b0df5f81 100644 --- a/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend @@ -3,15 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libbib \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend index ffeaed7041b4..5f92b0df5f81 100644 --- a/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend @@ -3,15 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libbib \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend index ffeaed7041b4..5f92b0df5f81 100644 --- a/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend @@ -3,15 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libbib \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend index 30aa91829204..b4de74964106 100644 --- a/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/groff/src/libs/libgroff \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend index 5a1d3f9ca69b..6936f25a9e7a 100644 --- a/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend @@ -3,14 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ gnu/usr.bin/groff/src/libs/libgroff \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/rcs/ci/Makefile.depend b/gnu/usr.bin/rcs/ci/Makefile.depend index 78b71f28e9a2..0e57857f4e80 100644 --- a/gnu/usr.bin/rcs/ci/Makefile.depend +++ b/gnu/usr.bin/rcs/ci/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/co/Makefile.depend b/gnu/usr.bin/rcs/co/Makefile.depend index 78b71f28e9a2..0e57857f4e80 100644 --- a/gnu/usr.bin/rcs/co/Makefile.depend +++ b/gnu/usr.bin/rcs/co/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/ident/Makefile.depend b/gnu/usr.bin/rcs/ident/Makefile.depend index 78b71f28e9a2..0e57857f4e80 100644 --- a/gnu/usr.bin/rcs/ident/Makefile.depend +++ b/gnu/usr.bin/rcs/ident/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/merge/Makefile.depend b/gnu/usr.bin/rcs/merge/Makefile.depend index 78b71f28e9a2..0e57857f4e80 100644 --- a/gnu/usr.bin/rcs/merge/Makefile.depend +++ b/gnu/usr.bin/rcs/merge/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/rcs/Makefile.depend b/gnu/usr.bin/rcs/rcs/Makefile.depend index 78b71f28e9a2..0e57857f4e80 100644 --- a/gnu/usr.bin/rcs/rcs/Makefile.depend +++ b/gnu/usr.bin/rcs/rcs/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/rcsclean/Makefile.depend b/gnu/usr.bin/rcs/rcsclean/Makefile.depend index 78b71f28e9a2..0e57857f4e80 100644 --- a/gnu/usr.bin/rcs/rcsclean/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsclean/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/rcsdiff/Makefile.depend b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend index 78b71f28e9a2..0e57857f4e80 100644 --- a/gnu/usr.bin/rcs/rcsdiff/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/rcsmerge/Makefile.depend b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend index 78b71f28e9a2..0e57857f4e80 100644 --- a/gnu/usr.bin/rcs/rcsmerge/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/rlog/Makefile.depend b/gnu/usr.bin/rcs/rlog/Makefile.depend index 78b71f28e9a2..0e57857f4e80 100644 --- a/gnu/usr.bin/rcs/rlog/Makefile.depend +++ b/gnu/usr.bin/rcs/rlog/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/rcs/lib \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/sdiff/Makefile.depend b/gnu/usr.bin/sdiff/Makefile.depend index f9f14bd89125..3c6803038b80 100644 --- a/gnu/usr.bin/sdiff/Makefile.depend +++ b/gnu/usr.bin/sdiff/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/texinfo/info/Makefile.depend b/gnu/usr.bin/texinfo/info/Makefile.depend index eb62ba113e3d..4300e83bcc16 100644 --- a/gnu/usr.bin/texinfo/info/Makefile.depend +++ b/gnu/usr.bin/texinfo/info/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/texinfo/libtxi \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/gnu/usr.bin/texinfo/infokey/Makefile.depend b/gnu/usr.bin/texinfo/infokey/Makefile.depend index e3b3fdbac9fb..adec3fdafec6 100644 --- a/gnu/usr.bin/texinfo/infokey/Makefile.depend +++ b/gnu/usr.bin/texinfo/infokey/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/texinfo/libtxi \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/texinfo/install-info/Makefile.depend b/gnu/usr.bin/texinfo/install-info/Makefile.depend index e3b3fdbac9fb..adec3fdafec6 100644 --- a/gnu/usr.bin/texinfo/install-info/Makefile.depend +++ b/gnu/usr.bin/texinfo/install-info/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/texinfo/libtxi \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/texinfo/makeinfo/Makefile.depend b/gnu/usr.bin/texinfo/makeinfo/Makefile.depend index e3b3fdbac9fb..adec3fdafec6 100644 --- a/gnu/usr.bin/texinfo/makeinfo/Makefile.depend +++ b/gnu/usr.bin/texinfo/makeinfo/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/texinfo/libtxi \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/texinfo/texindex/Makefile.depend b/gnu/usr.bin/texinfo/texindex/Makefile.depend index e3b3fdbac9fb..adec3fdafec6 100644 --- a/gnu/usr.bin/texinfo/texindex/Makefile.depend +++ b/gnu/usr.bin/texinfo/texindex/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/usr.bin/texinfo/libtxi \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/kerberos5/lib/libasn1/Makefile.depend b/kerberos5/lib/libasn1/Makefile.depend index b82dd514321d..a8e1a3f5ba33 100644 --- a/kerberos5/lib/libasn1/Makefile.depend +++ b/kerberos5/lib/libasn1/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ kerberos5/lib/libroken \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcom_err \ lib/libcompiler_rt \ diff --git a/kerberos5/lib/libheimbase/Makefile.depend b/kerberos5/lib/libheimbase/Makefile.depend index 9926a3a7caa6..e1ba49601114 100644 --- a/kerberos5/lib/libheimbase/Makefile.depend +++ b/kerberos5/lib/libheimbase/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ diff --git a/kerberos5/lib/libheimipcc/Makefile.depend b/kerberos5/lib/libheimipcc/Makefile.depend index 120f352c3920..1bd43f6f3360 100644 --- a/kerberos5/lib/libheimipcc/Makefile.depend +++ b/kerberos5/lib/libheimipcc/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -12,6 +13,7 @@ DIRDEPS = \ kerberos5/lib/libroken \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ diff --git a/kerberos5/lib/libheimsqlite/Makefile.depend b/kerberos5/lib/libheimsqlite/Makefile.depend index d1272937d3bc..13680b314856 100644 --- a/kerberos5/lib/libheimsqlite/Makefile.depend +++ b/kerberos5/lib/libheimsqlite/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ diff --git a/kerberos5/lib/libroken/Makefile.depend b/kerberos5/lib/libroken/Makefile.depend index d679d16abc16..27304ee9f793 100644 --- a/kerberos5/lib/libroken/Makefile.depend +++ b/kerberos5/lib/libroken/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ diff --git a/kerberos5/lib/libwind/Makefile.depend b/kerberos5/lib/libwind/Makefile.depend index 7ae977189d60..5e661c1bddb2 100644 --- a/kerberos5/lib/libwind/Makefile.depend +++ b/kerberos5/lib/libwind/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ kerberos5/lib/libroken \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcom_err \ lib/libcompiler_rt \ diff --git a/kerberos5/tools/asn1_compile/Makefile.depend b/kerberos5/tools/asn1_compile/Makefile.depend index 085cac44091c..2d1668bda45c 100644 --- a/kerberos5/tools/asn1_compile/Makefile.depend +++ b/kerberos5/tools/asn1_compile/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/kerberos5/tools/make-roken/Makefile.depend b/kerberos5/tools/make-roken/Makefile.depend index 25028476c082..c515f44f9e7d 100644 --- a/kerberos5/tools/make-roken/Makefile.depend +++ b/kerberos5/tools/make-roken/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/kerberos5/tools/slc/Makefile.depend b/kerberos5/tools/slc/Makefile.depend index d8062556edc3..752a34352cc2 100644 --- a/kerberos5/tools/slc/Makefile.depend +++ b/kerberos5/tools/slc/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/atf/libatf-c++/Makefile.depend b/lib/atf/libatf-c++/Makefile.depend index fc6d95f383e3..6f092c911531 100644 --- a/lib/atf/libatf-c++/Makefile.depend +++ b/lib/atf/libatf-c++/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/lib/libstdc++ \ gnu/lib/libsupc++ \ @@ -11,6 +12,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/atf/libatf-c \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/atf/libatf-c/Makefile.depend b/lib/atf/libatf-c/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/atf/libatf-c/Makefile.depend +++ b/lib/atf/libatf-c/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/libalias/Makefile.depend b/lib/libalias/libalias/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/lib/libalias/libalias/Makefile.depend +++ b/lib/libalias/libalias/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/cuseeme/Makefile.depend b/lib/libalias/modules/cuseeme/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libalias/modules/cuseeme/Makefile.depend +++ b/lib/libalias/modules/cuseeme/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/dummy/Makefile.depend b/lib/libalias/modules/dummy/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libalias/modules/dummy/Makefile.depend +++ b/lib/libalias/modules/dummy/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/ftp/Makefile.depend b/lib/libalias/modules/ftp/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libalias/modules/ftp/Makefile.depend +++ b/lib/libalias/modules/ftp/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/irc/Makefile.depend b/lib/libalias/modules/irc/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libalias/modules/irc/Makefile.depend +++ b/lib/libalias/modules/irc/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/nbt/Makefile.depend b/lib/libalias/modules/nbt/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libalias/modules/nbt/Makefile.depend +++ b/lib/libalias/modules/nbt/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/pptp/Makefile.depend b/lib/libalias/modules/pptp/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libalias/modules/pptp/Makefile.depend +++ b/lib/libalias/modules/pptp/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/skinny/Makefile.depend b/lib/libalias/modules/skinny/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libalias/modules/skinny/Makefile.depend +++ b/lib/libalias/modules/skinny/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/smedia/Makefile.depend b/lib/libalias/modules/smedia/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libalias/modules/smedia/Makefile.depend +++ b/lib/libalias/modules/smedia/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libauditd/Makefile.depend b/lib/libauditd/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libauditd/Makefile.depend +++ b/lib/libauditd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libbegemot/Makefile.depend b/lib/libbegemot/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libbegemot/Makefile.depend +++ b/lib/libbegemot/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libblocksruntime/Makefile.depend b/lib/libblocksruntime/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libblocksruntime/Makefile.depend +++ b/lib/libblocksruntime/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libbluetooth/Makefile.depend b/lib/libbluetooth/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libbluetooth/Makefile.depend +++ b/lib/libbluetooth/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libbsm/Makefile.depend b/lib/libbsm/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/lib/libbsm/Makefile.depend +++ b/lib/libbsm/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libbz2/Makefile.depend b/lib/libbz2/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libbz2/Makefile.depend +++ b/lib/libbz2/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libc++/Makefile.depend b/lib/libc++/Makefile.depend index 7424055480c9..bc14f56bdfff 100644 --- a/lib/libc++/Makefile.depend +++ b/lib/libc++/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/lib/libc/Makefile.depend b/lib/libc/Makefile.depend index b030effca2ff..616f3ba77615 100644 --- a/lib/libc/Makefile.depend +++ b/lib/libc/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ include \ include/rpc \ include/rpcsvc \ diff --git a/lib/libcalendar/Makefile.depend b/lib/libcalendar/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/lib/libcalendar/Makefile.depend +++ b/lib/libcalendar/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libcam/Makefile.depend b/lib/libcam/Makefile.depend index 8a69c213c3c2..a1157119ad51 100644 --- a/lib/libcam/Makefile.depend +++ b/lib/libcam/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsbuf \ diff --git a/lib/libcapsicum/Makefile.depend b/lib/libcapsicum/Makefile.depend index ab94ddd24ec7..67b4ef08e1f9 100644 --- a/lib/libcapsicum/Makefile.depend +++ b/lib/libcapsicum/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnv \ diff --git a/lib/libcom_err/Makefile.depend b/lib/libcom_err/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libcom_err/Makefile.depend +++ b/lib/libcom_err/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libcrypt/Makefile.depend b/lib/libcrypt/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/lib/libcrypt/Makefile.depend +++ b/lib/libcrypt/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libcxxrt/Makefile.depend b/lib/libcxxrt/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libcxxrt/Makefile.depend +++ b/lib/libcxxrt/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libdevinfo/Makefile.depend b/lib/libdevinfo/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libdevinfo/Makefile.depend +++ b/lib/libdevinfo/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libdevstat/Makefile.depend b/lib/libdevstat/Makefile.depend index d65cbb5d7110..b7d414c85aeb 100644 --- a/lib/libdevstat/Makefile.depend +++ b/lib/libdevstat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/lib/libdwarf/Makefile.depend b/lib/libdwarf/Makefile.depend index 60e33a7ed174..1b2ce3e41ae6 100644 --- a/lib/libdwarf/Makefile.depend +++ b/lib/libdwarf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ diff --git a/lib/libedit/Makefile.depend b/lib/libedit/Makefile.depend index 11dc760ac2db..af92ff9ef9e3 100644 --- a/lib/libedit/Makefile.depend +++ b/lib/libedit/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/lib/libelf/Makefile.depend b/lib/libelf/Makefile.depend index b5d32499cb84..7c6b7073c2ee 100644 --- a/lib/libelf/Makefile.depend +++ b/lib/libelf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libexecinfo/Makefile.depend b/lib/libexecinfo/Makefile.depend index df2384b66d87..659d7cca1ad8 100644 --- a/lib/libexecinfo/Makefile.depend +++ b/lib/libexecinfo/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ diff --git a/lib/libexpat/Makefile.depend b/lib/libexpat/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libexpat/Makefile.depend +++ b/lib/libexpat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libgeom/Makefile.depend b/lib/libgeom/Makefile.depend index b55a47429e7a..a66d580db4dc 100644 --- a/lib/libgeom/Makefile.depend +++ b/lib/libgeom/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libsbuf \ diff --git a/lib/libgpib/Makefile.depend b/lib/libgpib/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/lib/libgpib/Makefile.depend +++ b/lib/libgpib/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libgssapi/Makefile.depend b/lib/libgssapi/Makefile.depend index a0b3a1c093fd..841cdfd90dab 100644 --- a/lib/libgssapi/Makefile.depend +++ b/lib/libgssapi/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/gssapi \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libipsec/Makefile.depend b/lib/libipsec/Makefile.depend index e5717fca49c2..89518b5ff290 100644 --- a/lib/libipsec/Makefile.depend +++ b/lib/libipsec/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libjail/Makefile.depend b/lib/libjail/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/lib/libjail/Makefile.depend +++ b/lib/libjail/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libkiconv/Makefile.depend b/lib/libkiconv/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libkiconv/Makefile.depend +++ b/lib/libkiconv/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libkvm/Makefile.depend b/lib/libkvm/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libkvm/Makefile.depend +++ b/lib/libkvm/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/liblzma/Makefile.depend b/lib/liblzma/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/liblzma/Makefile.depend +++ b/lib/liblzma/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libmagic/Makefile.depend b/lib/libmagic/Makefile.depend index 569fd1c18b9a..8d258dfd965e 100644 --- a/lib/libmagic/Makefile.depend +++ b/lib/libmagic/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libz \ diff --git a/lib/libmd/Makefile.depend b/lib/libmd/Makefile.depend index 6d52fa5934c9..9561917e0293 100644 --- a/lib/libmd/Makefile.depend +++ b/lib/libmd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libmemstat/Makefile.depend b/lib/libmemstat/Makefile.depend index d65cbb5d7110..b7d414c85aeb 100644 --- a/lib/libmemstat/Makefile.depend +++ b/lib/libmemstat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/lib/libmilter/Makefile.depend b/lib/libmilter/Makefile.depend index 9ca55561cff5..92baf08bda74 100644 --- a/lib/libmilter/Makefile.depend +++ b/lib/libmilter/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/lib/libnetgraph/Makefile.depend b/lib/libnetgraph/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libnetgraph/Makefile.depend +++ b/lib/libnetgraph/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libngatm/Makefile.depend b/lib/libngatm/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/lib/libngatm/Makefile.depend +++ b/lib/libngatm/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libnv/Makefile.depend b/lib/libnv/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libnv/Makefile.depend +++ b/lib/libnv/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libopie/Makefile.depend b/lib/libopie/Makefile.depend index f73af6bdb0a2..c1f494f87eff 100644 --- a/lib/libopie/Makefile.depend +++ b/lib/libopie/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/lib/libpam/libpam/Makefile.depend b/lib/libpam/libpam/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libpam/libpam/Makefile.depend +++ b/lib/libpam/libpam/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libpam/modules/pam_chroot/Makefile.depend b/lib/libpam/modules/pam_chroot/Makefile.depend index 499706a8d131..f44d17dcca74 100644 --- a/lib/libpam/modules/pam_chroot/Makefile.depend +++ b/lib/libpam/modules/pam_chroot/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_deny/Makefile.depend b/lib/libpam/modules/pam_deny/Makefile.depend index d12466d6a618..afe8c8b3c68f 100644 --- a/lib/libpam/modules/pam_deny/Makefile.depend +++ b/lib/libpam/modules/pam_deny/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_echo/Makefile.depend b/lib/libpam/modules/pam_echo/Makefile.depend index 499706a8d131..f44d17dcca74 100644 --- a/lib/libpam/modules/pam_echo/Makefile.depend +++ b/lib/libpam/modules/pam_echo/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_exec/Makefile.depend b/lib/libpam/modules/pam_exec/Makefile.depend index 499706a8d131..f44d17dcca74 100644 --- a/lib/libpam/modules/pam_exec/Makefile.depend +++ b/lib/libpam/modules/pam_exec/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_ftpusers/Makefile.depend b/lib/libpam/modules/pam_ftpusers/Makefile.depend index 499706a8d131..f44d17dcca74 100644 --- a/lib/libpam/modules/pam_ftpusers/Makefile.depend +++ b/lib/libpam/modules/pam_ftpusers/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_group/Makefile.depend b/lib/libpam/modules/pam_group/Makefile.depend index 499706a8d131..f44d17dcca74 100644 --- a/lib/libpam/modules/pam_group/Makefile.depend +++ b/lib/libpam/modules/pam_group/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_guest/Makefile.depend b/lib/libpam/modules/pam_guest/Makefile.depend index 499706a8d131..f44d17dcca74 100644 --- a/lib/libpam/modules/pam_guest/Makefile.depend +++ b/lib/libpam/modules/pam_guest/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_lastlog/Makefile.depend b/lib/libpam/modules/pam_lastlog/Makefile.depend index 499706a8d131..f44d17dcca74 100644 --- a/lib/libpam/modules/pam_lastlog/Makefile.depend +++ b/lib/libpam/modules/pam_lastlog/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_login_access/Makefile.depend b/lib/libpam/modules/pam_login_access/Makefile.depend index 499706a8d131..f44d17dcca74 100644 --- a/lib/libpam/modules/pam_login_access/Makefile.depend +++ b/lib/libpam/modules/pam_login_access/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_nologin/Makefile.depend b/lib/libpam/modules/pam_nologin/Makefile.depend index 5947196b49e4..3d8c2f306ad0 100644 --- a/lib/libpam/modules/pam_nologin/Makefile.depend +++ b/lib/libpam/modules/pam_nologin/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/lib/libpam/modules/pam_opie/Makefile.depend b/lib/libpam/modules/pam_opie/Makefile.depend index 3bef9098f85c..91d27924dfb5 100644 --- a/lib/libpam/modules/pam_opie/Makefile.depend +++ b/lib/libpam/modules/pam_opie/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libopie \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_opieaccess/Makefile.depend b/lib/libpam/modules/pam_opieaccess/Makefile.depend index bbe263ef9217..94ab2e8f6fbf 100644 --- a/lib/libpam/modules/pam_opieaccess/Makefile.depend +++ b/lib/libpam/modules/pam_opieaccess/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libopie \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_passwdqc/Makefile.depend b/lib/libpam/modules/pam_passwdqc/Makefile.depend index 07deaf653875..89eac3ede0d5 100644 --- a/lib/libpam/modules/pam_passwdqc/Makefile.depend +++ b/lib/libpam/modules/pam_passwdqc/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_permit/Makefile.depend b/lib/libpam/modules/pam_permit/Makefile.depend index d12466d6a618..afe8c8b3c68f 100644 --- a/lib/libpam/modules/pam_permit/Makefile.depend +++ b/lib/libpam/modules/pam_permit/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_rhosts/Makefile.depend b/lib/libpam/modules/pam_rhosts/Makefile.depend index 499706a8d131..f44d17dcca74 100644 --- a/lib/libpam/modules/pam_rhosts/Makefile.depend +++ b/lib/libpam/modules/pam_rhosts/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_rootok/Makefile.depend b/lib/libpam/modules/pam_rootok/Makefile.depend index d12466d6a618..afe8c8b3c68f 100644 --- a/lib/libpam/modules/pam_rootok/Makefile.depend +++ b/lib/libpam/modules/pam_rootok/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_securetty/Makefile.depend b/lib/libpam/modules/pam_securetty/Makefile.depend index 499706a8d131..f44d17dcca74 100644 --- a/lib/libpam/modules/pam_securetty/Makefile.depend +++ b/lib/libpam/modules/pam_securetty/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_self/Makefile.depend b/lib/libpam/modules/pam_self/Makefile.depend index d12466d6a618..afe8c8b3c68f 100644 --- a/lib/libpam/modules/pam_self/Makefile.depend +++ b/lib/libpam/modules/pam_self/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/lib/libpam/modules/pam_tacplus/Makefile.depend b/lib/libpam/modules/pam_tacplus/Makefile.depend index 8dd8b0abde1d..bc4b7343419e 100644 --- a/lib/libpam/modules/pam_tacplus/Makefile.depend +++ b/lib/libpam/modules/pam_tacplus/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libtacplus \ diff --git a/lib/libpam/modules/pam_unix/Makefile.depend b/lib/libpam/modules/pam_unix/Makefile.depend index f34115b0ca05..13a84801d0c2 100644 --- a/lib/libpam/modules/pam_unix/Makefile.depend +++ b/lib/libpam/modules/pam_unix/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ diff --git a/lib/libpcap/Makefile.depend b/lib/libpcap/Makefile.depend index 32085ed84645..2b635d7fa37e 100644 --- a/lib/libpcap/Makefile.depend +++ b/lib/libpcap/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libpmc/Makefile.depend b/lib/libpmc/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libpmc/Makefile.depend +++ b/lib/libpmc/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libproc/Makefile.depend b/lib/libproc/Makefile.depend index b00a70119618..363d9a0730b3 100644 --- a/lib/libproc/Makefile.depend +++ b/lib/libproc/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/libelf \ diff --git a/lib/libprocstat/Makefile.depend b/lib/libprocstat/Makefile.depend index 3444d9387768..7e162f7cd899 100644 --- a/lib/libprocstat/Makefile.depend +++ b/lib/libprocstat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libkvm \ diff --git a/lib/librpcsec_gss/Makefile.depend b/lib/librpcsec_gss/Makefile.depend index 4764e3d90d2f..4651ca83b919 100644 --- a/lib/librpcsec_gss/Makefile.depend +++ b/lib/librpcsec_gss/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgssapi \ diff --git a/lib/librpcsvc/Makefile.depend b/lib/librpcsvc/Makefile.depend index 7053f44c8544..7b1e7f4f7015 100644 --- a/lib/librpcsvc/Makefile.depend +++ b/lib/librpcsvc/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/librt/Makefile.depend b/lib/librt/Makefile.depend index 9926a3a7caa6..e1ba49601114 100644 --- a/lib/librt/Makefile.depend +++ b/lib/librt/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ diff --git a/lib/librtld_db/Makefile.depend b/lib/librtld_db/Makefile.depend index ec27fe402f3b..6b94eaeeb5af 100644 --- a/lib/librtld_db/Makefile.depend +++ b/lib/librtld_db/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libproc \ diff --git a/lib/libsbuf/Makefile.depend b/lib/libsbuf/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libsbuf/Makefile.depend +++ b/lib/libsbuf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libsdp/Makefile.depend b/lib/libsdp/Makefile.depend index 1b2f1e2c7240..beb640354e0e 100644 --- a/lib/libsdp/Makefile.depend +++ b/lib/libsdp/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libsmb/Makefile.depend b/lib/libsmb/Makefile.depend index fc61e1a87937..b1a67cd37ad9 100644 --- a/lib/libsmb/Makefile.depend +++ b/lib/libsmb/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkiconv \ diff --git a/lib/libstdbuf/Makefile.depend b/lib/libstdbuf/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libstdbuf/Makefile.depend +++ b/lib/libstdbuf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libstdthreads/Makefile.depend b/lib/libstdthreads/Makefile.depend index 9926a3a7caa6..e1ba49601114 100644 --- a/lib/libstdthreads/Makefile.depend +++ b/lib/libstdthreads/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ diff --git a/lib/libtacplus/Makefile.depend b/lib/libtacplus/Makefile.depend index f73af6bdb0a2..c1f494f87eff 100644 --- a/lib/libtacplus/Makefile.depend +++ b/lib/libtacplus/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/lib/libthr/Makefile.depend b/lib/libthr/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/lib/libthr/Makefile.depend +++ b/lib/libthr/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libthread_db/Makefile.depend b/lib/libthread_db/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libthread_db/Makefile.depend +++ b/lib/libthread_db/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libufs/Makefile.depend b/lib/libufs/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libufs/Makefile.depend +++ b/lib/libufs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libugidfw/Makefile.depend b/lib/libugidfw/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libugidfw/Makefile.depend +++ b/lib/libugidfw/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libulog/Makefile.depend b/lib/libulog/Makefile.depend index 5d619f8fac05..f3adefe05801 100644 --- a/lib/libulog/Makefile.depend +++ b/lib/libulog/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/lib/libusb/Makefile.depend b/lib/libusb/Makefile.depend index 9926a3a7caa6..e1ba49601114 100644 --- a/lib/libusb/Makefile.depend +++ b/lib/libusb/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ diff --git a/lib/libusbhid/Makefile.depend b/lib/libusbhid/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libusbhid/Makefile.depend +++ b/lib/libusbhid/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libutil/Makefile.depend b/lib/libutil/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/lib/libutil/Makefile.depend +++ b/lib/libutil/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libvgl/Makefile.depend b/lib/libvgl/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libvgl/Makefile.depend +++ b/lib/libvgl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libvmmapi/Makefile.depend b/lib/libvmmapi/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/lib/libvmmapi/Makefile.depend +++ b/lib/libvmmapi/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/lib/libwrap/Makefile.depend b/lib/libwrap/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/lib/libwrap/Makefile.depend +++ b/lib/libwrap/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libypclnt/Makefile.depend b/lib/libypclnt/Makefile.depend index cca28a5934a6..619ca757937c 100644 --- a/lib/libypclnt/Makefile.depend +++ b/lib/libypclnt/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libz/Makefile.depend b/lib/libz/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/libz/Makefile.depend +++ b/lib/libz/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/msun/Makefile.depend b/lib/msun/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/lib/msun/Makefile.depend +++ b/lib/msun/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/ncurses/form/Makefile.depend b/lib/ncurses/form/Makefile.depend index 44fd13d38a6c..936372895325 100644 --- a/lib/ncurses/form/Makefile.depend +++ b/lib/ncurses/form/Makefile.depend @@ -3,13 +3,16 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ .include diff --git a/lib/ncurses/formw/Makefile.depend b/lib/ncurses/formw/Makefile.depend index d8fdf1b99945..e942aba98876 100644 --- a/lib/ncurses/formw/Makefile.depend +++ b/lib/ncurses/formw/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncursesw \ diff --git a/lib/ncurses/menu/Makefile.depend b/lib/ncurses/menu/Makefile.depend index 64dab5575bd5..3ca328f016d0 100644 --- a/lib/ncurses/menu/Makefile.depend +++ b/lib/ncurses/menu/Makefile.depend @@ -3,13 +3,16 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ .include diff --git a/lib/ncurses/menuw/Makefile.depend b/lib/ncurses/menuw/Makefile.depend index d46744f5e033..981ac37cd263 100644 --- a/lib/ncurses/menuw/Makefile.depend +++ b/lib/ncurses/menuw/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncursesw \ diff --git a/lib/ncurses/ncurses/Makefile.depend b/lib/ncurses/ncurses/Makefile.depend index fb4de0c0af0b..6274ac87202f 100644 --- a/lib/ncurses/ncurses/Makefile.depend +++ b/lib/ncurses/ncurses/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncursesw \ diff --git a/lib/ncurses/ncursesw/Makefile.depend b/lib/ncurses/ncursesw/Makefile.depend index 78f9b8a1f9ee..b26f3c2fe5c7 100644 --- a/lib/ncurses/ncursesw/Makefile.depend +++ b/lib/ncurses/ncursesw/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/ncurses/panel/Makefile.depend b/lib/ncurses/panel/Makefile.depend index 5db7c851afdf..e5c91fb693ef 100644 --- a/lib/ncurses/panel/Makefile.depend +++ b/lib/ncurses/panel/Makefile.depend @@ -3,13 +3,16 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ .include diff --git a/lib/ncurses/panelw/Makefile.depend b/lib/ncurses/panelw/Makefile.depend index 9cc13a251fbf..c5a301e94c81 100644 --- a/lib/ncurses/panelw/Makefile.depend +++ b/lib/ncurses/panelw/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncursesw \ diff --git a/libexec/atrun/Makefile.depend b/libexec/atrun/Makefile.depend index 5947196b49e4..3d8c2f306ad0 100644 --- a/libexec/atrun/Makefile.depend +++ b/libexec/atrun/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/libexec/bootpd/bootpgw/Makefile.depend b/libexec/bootpd/bootpgw/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/libexec/bootpd/bootpgw/Makefile.depend +++ b/libexec/bootpd/bootpgw/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/bootpd/tools/bootpef/Makefile.depend b/libexec/bootpd/tools/bootpef/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/libexec/bootpd/tools/bootpef/Makefile.depend +++ b/libexec/bootpd/tools/bootpef/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/bootpd/tools/bootptest/Makefile.depend b/libexec/bootpd/tools/bootptest/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/libexec/bootpd/tools/bootptest/Makefile.depend +++ b/libexec/bootpd/tools/bootptest/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/comsat/Makefile.depend b/libexec/comsat/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/libexec/comsat/Makefile.depend +++ b/libexec/comsat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/fingerd/Makefile.depend b/libexec/fingerd/Makefile.depend index ee948eaa011e..e3af08532eec 100644 --- a/libexec/fingerd/Makefile.depend +++ b/libexec/fingerd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/ftpd/Makefile.depend b/libexec/ftpd/Makefile.depend index 44ee786b7e19..a648938b6ff4 100644 --- a/libexec/ftpd/Makefile.depend +++ b/libexec/ftpd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libmd \ diff --git a/libexec/getty/Makefile.depend b/libexec/getty/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/libexec/getty/Makefile.depend +++ b/libexec/getty/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/mail.local/Makefile.depend b/libexec/mail.local/Makefile.depend index 1d3e8d899246..d4bbfb2aa92a 100644 --- a/libexec/mail.local/Makefile.depend +++ b/libexec/mail.local/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libutil \ diff --git a/libexec/mknetid/Makefile.depend b/libexec/mknetid/Makefile.depend index d074335f4466..5930524f9ce7 100644 --- a/libexec/mknetid/Makefile.depend +++ b/libexec/mknetid/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/pppoed/Makefile.depend b/libexec/pppoed/Makefile.depend index 2b972daf01f6..a2060055a242 100644 --- a/libexec/pppoed/Makefile.depend +++ b/libexec/pppoed/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/libexec/rbootd/Makefile.depend b/libexec/rbootd/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/libexec/rbootd/Makefile.depend +++ b/libexec/rbootd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/revnetgroup/Makefile.depend b/libexec/revnetgroup/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/libexec/revnetgroup/Makefile.depend +++ b/libexec/revnetgroup/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/rlogind/Makefile.depend b/libexec/rlogind/Makefile.depend index ee948eaa011e..e3af08532eec 100644 --- a/libexec/rlogind/Makefile.depend +++ b/libexec/rlogind/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/rpc.rquotad/Makefile.depend b/libexec/rpc.rquotad/Makefile.depend index 74982d7fcb45..27a6a4a115b8 100644 --- a/libexec/rpc.rquotad/Makefile.depend +++ b/libexec/rpc.rquotad/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/libexec/rpc.rstatd/Makefile.depend b/libexec/rpc.rstatd/Makefile.depend index 35a6e3704da8..e7870b4b49c3 100644 --- a/libexec/rpc.rstatd/Makefile.depend +++ b/libexec/rpc.rstatd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ diff --git a/libexec/rpc.rusersd/Makefile.depend b/libexec/rpc.rusersd/Makefile.depend index f3b4295fa83f..8d990c379a15 100644 --- a/libexec/rpc.rusersd/Makefile.depend +++ b/libexec/rpc.rusersd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/libexec/rpc.rwalld/Makefile.depend b/libexec/rpc.rwalld/Makefile.depend index bd7098e0b6ce..d9693fd64752 100644 --- a/libexec/rpc.rwalld/Makefile.depend +++ b/libexec/rpc.rwalld/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/rpc.sprayd/Makefile.depend b/libexec/rpc.sprayd/Makefile.depend index 6514930150d7..3b0eba6af4e1 100644 --- a/libexec/rpc.sprayd/Makefile.depend +++ b/libexec/rpc.sprayd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/libexec/rshd/Makefile.depend b/libexec/rshd/Makefile.depend index 9473758ae465..e513c61c3548 100644 --- a/libexec/rshd/Makefile.depend +++ b/libexec/rshd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/libexec/smrsh/Makefile.depend b/libexec/smrsh/Makefile.depend index 6515b7d984da..47096166cc73 100644 --- a/libexec/smrsh/Makefile.depend +++ b/libexec/smrsh/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libutil \ diff --git a/libexec/talkd/Makefile.depend b/libexec/talkd/Makefile.depend index 48e46367c59a..11fa4d730adc 100644 --- a/libexec/talkd/Makefile.depend +++ b/libexec/talkd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/tcpd/Makefile.depend b/libexec/tcpd/Makefile.depend index 52befbc6e6ad..8452af99c632 100644 --- a/libexec/tcpd/Makefile.depend +++ b/libexec/tcpd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ diff --git a/libexec/tftp-proxy/Makefile.depend b/libexec/tftp-proxy/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/libexec/tftp-proxy/Makefile.depend +++ b/libexec/tftp-proxy/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/tftpd/Makefile.depend b/libexec/tftpd/Makefile.depend index 74a1dd9afe70..a02eba6f2277 100644 --- a/libexec/tftpd/Makefile.depend +++ b/libexec/tftpd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ diff --git a/libexec/ulog-helper/Makefile.depend b/libexec/ulog-helper/Makefile.depend index b1f47e3d7a34..dfe8b1b46789 100644 --- a/libexec/ulog-helper/Makefile.depend +++ b/libexec/ulog-helper/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libulog \ diff --git a/libexec/ypxfr/Makefile.depend b/libexec/ypxfr/Makefile.depend index 37e8f0c298b4..9641db9a4176 100644 --- a/libexec/ypxfr/Makefile.depend +++ b/libexec/ypxfr/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/sbin/adjkerntz/Makefile.depend b/sbin/adjkerntz/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/adjkerntz/Makefile.depend +++ b/sbin/adjkerntz/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/badsect/Makefile.depend b/sbin/badsect/Makefile.depend index 374b5e7b5c94..7fb8fce4559a 100644 --- a/sbin/badsect/Makefile.depend +++ b/sbin/badsect/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/bsdlabel/Makefile.depend b/sbin/bsdlabel/Makefile.depend index 099436d63905..bac69c034a3b 100644 --- a/sbin/bsdlabel/Makefile.depend +++ b/sbin/bsdlabel/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/camcontrol/Makefile.depend b/sbin/camcontrol/Makefile.depend index 0b2207fafdc4..c79bce5f2287 100644 --- a/sbin/camcontrol/Makefile.depend +++ b/sbin/camcontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcam \ lib/libcompiler_rt \ lib/libsbuf \ diff --git a/sbin/ccdconfig/Makefile.depend b/sbin/ccdconfig/Makefile.depend index 099436d63905..bac69c034a3b 100644 --- a/sbin/ccdconfig/Makefile.depend +++ b/sbin/ccdconfig/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/clri/Makefile.depend b/sbin/clri/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/clri/Makefile.depend +++ b/sbin/clri/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/comcontrol/Makefile.depend b/sbin/comcontrol/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/comcontrol/Makefile.depend +++ b/sbin/comcontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/conscontrol/Makefile.depend b/sbin/conscontrol/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/conscontrol/Makefile.depend +++ b/sbin/conscontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/ddb/Makefile.depend b/sbin/ddb/Makefile.depend index d65cbb5d7110..b7d414c85aeb 100644 --- a/sbin/ddb/Makefile.depend +++ b/sbin/ddb/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/sbin/devfs/Makefile.depend b/sbin/devfs/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/devfs/Makefile.depend +++ b/sbin/devfs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/dhclient/Makefile.depend b/sbin/dhclient/Makefile.depend index ee948eaa011e..e3af08532eec 100644 --- a/sbin/dhclient/Makefile.depend +++ b/sbin/dhclient/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/dmesg/Makefile.depend b/sbin/dmesg/Makefile.depend index d65cbb5d7110..b7d414c85aeb 100644 --- a/sbin/dmesg/Makefile.depend +++ b/sbin/dmesg/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/sbin/dump/Makefile.depend b/sbin/dump/Makefile.depend index 591ea4c790a0..b3c03a71825a 100644 --- a/sbin/dump/Makefile.depend +++ b/sbin/dump/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/protocols \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/dumpfs/Makefile.depend b/sbin/dumpfs/Makefile.depend index 374b5e7b5c94..7fb8fce4559a 100644 --- a/sbin/dumpfs/Makefile.depend +++ b/sbin/dumpfs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/dumpon/Makefile.depend b/sbin/dumpon/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/dumpon/Makefile.depend +++ b/sbin/dumpon/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/etherswitchcfg/Makefile.depend b/sbin/etherswitchcfg/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/etherswitchcfg/Makefile.depend +++ b/sbin/etherswitchcfg/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/fdisk/Makefile.depend b/sbin/fdisk/Makefile.depend index 099436d63905..bac69c034a3b 100644 --- a/sbin/fdisk/Makefile.depend +++ b/sbin/fdisk/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/ffsinfo/Makefile.depend b/sbin/ffsinfo/Makefile.depend index 374b5e7b5c94..7fb8fce4559a 100644 --- a/sbin/ffsinfo/Makefile.depend +++ b/sbin/ffsinfo/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/fsck/Makefile.depend b/sbin/fsck/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/fsck/Makefile.depend +++ b/sbin/fsck/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/fsck_ffs/Makefile.depend b/sbin/fsck_ffs/Makefile.depend index 374b5e7b5c94..7fb8fce4559a 100644 --- a/sbin/fsck_ffs/Makefile.depend +++ b/sbin/fsck_ffs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/fsck_msdosfs/Makefile.depend b/sbin/fsck_msdosfs/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/fsck_msdosfs/Makefile.depend +++ b/sbin/fsck_msdosfs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/fsdb/Makefile.depend b/sbin/fsdb/Makefile.depend index be095ed989df..749626347205 100644 --- a/sbin/fsdb/Makefile.depend +++ b/sbin/fsdb/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/libufs \ diff --git a/sbin/fsirand/Makefile.depend b/sbin/fsirand/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/sbin/fsirand/Makefile.depend +++ b/sbin/fsirand/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/gbde/Makefile.depend b/sbin/gbde/Makefile.depend index e4727db7c7cd..b9c27745e156 100644 --- a/sbin/gbde/Makefile.depend +++ b/sbin/gbde/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/geom/class/cache/Makefile.depend b/sbin/geom/class/cache/Makefile.depend index 1f1fba6599ac..bc686f5b7642 100644 --- a/sbin/geom/class/cache/Makefile.depend +++ b/sbin/geom/class/cache/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/concat/Makefile.depend b/sbin/geom/class/concat/Makefile.depend index 1f1fba6599ac..bc686f5b7642 100644 --- a/sbin/geom/class/concat/Makefile.depend +++ b/sbin/geom/class/concat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/journal/Makefile.depend b/sbin/geom/class/journal/Makefile.depend index 8511c7e6b492..83f19b190dd7 100644 --- a/sbin/geom/class/journal/Makefile.depend +++ b/sbin/geom/class/journal/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ diff --git a/sbin/geom/class/label/Makefile.depend b/sbin/geom/class/label/Makefile.depend index 1f1fba6599ac..bc686f5b7642 100644 --- a/sbin/geom/class/label/Makefile.depend +++ b/sbin/geom/class/label/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/mirror/Makefile.depend b/sbin/geom/class/mirror/Makefile.depend index 096ef6a38bc9..6ba212c71e01 100644 --- a/sbin/geom/class/mirror/Makefile.depend +++ b/sbin/geom/class/mirror/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ diff --git a/sbin/geom/class/mountver/Makefile.depend b/sbin/geom/class/mountver/Makefile.depend index 1f1fba6599ac..bc686f5b7642 100644 --- a/sbin/geom/class/mountver/Makefile.depend +++ b/sbin/geom/class/mountver/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/multipath/Makefile.depend b/sbin/geom/class/multipath/Makefile.depend index 1f1fba6599ac..bc686f5b7642 100644 --- a/sbin/geom/class/multipath/Makefile.depend +++ b/sbin/geom/class/multipath/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/nop/Makefile.depend b/sbin/geom/class/nop/Makefile.depend index 1f1fba6599ac..bc686f5b7642 100644 --- a/sbin/geom/class/nop/Makefile.depend +++ b/sbin/geom/class/nop/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/part/Makefile.depend b/sbin/geom/class/part/Makefile.depend index 5a31f61e93b3..a6d50feedd98 100644 --- a/sbin/geom/class/part/Makefile.depend +++ b/sbin/geom/class/part/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libutil \ diff --git a/sbin/geom/class/raid/Makefile.depend b/sbin/geom/class/raid/Makefile.depend index 096ef6a38bc9..6ba212c71e01 100644 --- a/sbin/geom/class/raid/Makefile.depend +++ b/sbin/geom/class/raid/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ diff --git a/sbin/geom/class/raid3/Makefile.depend b/sbin/geom/class/raid3/Makefile.depend index 096ef6a38bc9..6ba212c71e01 100644 --- a/sbin/geom/class/raid3/Makefile.depend +++ b/sbin/geom/class/raid3/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ diff --git a/sbin/geom/class/sched/Makefile.depend b/sbin/geom/class/sched/Makefile.depend index 1f1fba6599ac..bc686f5b7642 100644 --- a/sbin/geom/class/sched/Makefile.depend +++ b/sbin/geom/class/sched/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/shsec/Makefile.depend b/sbin/geom/class/shsec/Makefile.depend index 1f1fba6599ac..bc686f5b7642 100644 --- a/sbin/geom/class/shsec/Makefile.depend +++ b/sbin/geom/class/shsec/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/stripe/Makefile.depend b/sbin/geom/class/stripe/Makefile.depend index 1f1fba6599ac..bc686f5b7642 100644 --- a/sbin/geom/class/stripe/Makefile.depend +++ b/sbin/geom/class/stripe/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/virstor/Makefile.depend b/sbin/geom/class/virstor/Makefile.depend index 1f1fba6599ac..bc686f5b7642 100644 --- a/sbin/geom/class/virstor/Makefile.depend +++ b/sbin/geom/class/virstor/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/core/Makefile.depend b/sbin/geom/core/Makefile.depend index e45c05bdbf52..f9880dbe6075 100644 --- a/sbin/geom/core/Makefile.depend +++ b/sbin/geom/core/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/ggate/ggatec/Makefile.depend b/sbin/ggate/ggatec/Makefile.depend index f02e48a24412..ae9479365944 100644 --- a/sbin/ggate/ggatec/Makefile.depend +++ b/sbin/ggate/ggatec/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/ggate/ggated/Makefile.depend b/sbin/ggate/ggated/Makefile.depend index 5390077c5805..85448cf03bff 100644 --- a/sbin/ggate/ggated/Makefile.depend +++ b/sbin/ggate/ggated/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libthr \ diff --git a/sbin/ggate/ggatel/Makefile.depend b/sbin/ggate/ggatel/Makefile.depend index f769d32fd3a4..2ad23bc89f48 100644 --- a/sbin/ggate/ggatel/Makefile.depend +++ b/sbin/ggate/ggatel/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/growfs/Makefile.depend b/sbin/growfs/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/sbin/growfs/Makefile.depend +++ b/sbin/growfs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/gvinum/Makefile.depend b/sbin/gvinum/Makefile.depend index af362c6df9d9..ab889550d0b6 100644 --- a/sbin/gvinum/Makefile.depend +++ b/sbin/gvinum/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libedit \ diff --git a/sbin/ifconfig/Makefile.depend b/sbin/ifconfig/Makefile.depend index 4ab51a8797f8..63a1548cafe5 100644 --- a/sbin/ifconfig/Makefile.depend +++ b/sbin/ifconfig/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libjail \ diff --git a/sbin/init/Makefile.depend b/sbin/init/Makefile.depend index e6bd1bdc009b..1b2a0bde85e0 100644 --- a/sbin/init/Makefile.depend +++ b/sbin/init/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/sbin/ipf/ipf/Makefile.depend b/sbin/ipf/ipf/Makefile.depend index 758bc4a86581..2532b4df7c6b 100644 --- a/sbin/ipf/ipf/Makefile.depend +++ b/sbin/ipf/ipf/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ lib/libpcap \ diff --git a/sbin/ipf/ipfs/Makefile.depend b/sbin/ipf/ipfs/Makefile.depend index a529f3d9bf0d..ae05e22e3b02 100644 --- a/sbin/ipf/ipfs/Makefile.depend +++ b/sbin/ipf/ipfs/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipfstat/Makefile.depend b/sbin/ipf/ipfstat/Makefile.depend index ced2fec81ba6..4023f007f83d 100644 --- a/sbin/ipf/ipfstat/Makefile.depend +++ b/sbin/ipf/ipfstat/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ lib/ncurses/ncurses \ diff --git a/sbin/ipf/ipftest/Makefile.depend b/sbin/ipf/ipftest/Makefile.depend index 66f35a9d7324..2acc1cb14510 100644 --- a/sbin/ipf/ipftest/Makefile.depend +++ b/sbin/ipf/ipftest/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipmon/Makefile.depend b/sbin/ipf/ipmon/Makefile.depend index de6d116b4359..38d4caa8bbdb 100644 --- a/sbin/ipf/ipmon/Makefile.depend +++ b/sbin/ipf/ipmon/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipnat/Makefile.depend b/sbin/ipf/ipnat/Makefile.depend index 2567c30aa30a..221f0bceb10a 100644 --- a/sbin/ipf/ipnat/Makefile.depend +++ b/sbin/ipf/ipnat/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ippool/Makefile.depend b/sbin/ipf/ippool/Makefile.depend index ee54bccf27ab..e039ce09709e 100644 --- a/sbin/ipf/ippool/Makefile.depend +++ b/sbin/ipf/ippool/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipresend/Makefile.depend b/sbin/ipf/ipresend/Makefile.depend index a086482f151b..eed6565d0e1f 100644 --- a/sbin/ipf/ipresend/Makefile.depend +++ b/sbin/ipf/ipresend/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ lib/msun \ diff --git a/sbin/ipfw/Makefile.depend b/sbin/ipfw/Makefile.depend index 007e48a6829b..59ad864f74e5 100644 --- a/sbin/ipfw/Makefile.depend +++ b/sbin/ipfw/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libalias/libalias \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/iscontrol/Makefile.depend b/sbin/iscontrol/Makefile.depend index f51771723836..f58230065ebe 100644 --- a/sbin/iscontrol/Makefile.depend +++ b/sbin/iscontrol/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcam \ lib/libcompiler_rt \ lib/libmd \ diff --git a/sbin/kldconfig/Makefile.depend b/sbin/kldconfig/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/kldconfig/Makefile.depend +++ b/sbin/kldconfig/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/kldload/Makefile.depend b/sbin/kldload/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/kldload/Makefile.depend +++ b/sbin/kldload/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/kldstat/Makefile.depend b/sbin/kldstat/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/sbin/kldstat/Makefile.depend +++ b/sbin/kldstat/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/kldunload/Makefile.depend b/sbin/kldunload/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/sbin/kldunload/Makefile.depend +++ b/sbin/kldunload/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/ldconfig/Makefile.depend b/sbin/ldconfig/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/ldconfig/Makefile.depend +++ b/sbin/ldconfig/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/md5/Makefile.depend b/sbin/md5/Makefile.depend index 5d619f8fac05..f3adefe05801 100644 --- a/sbin/md5/Makefile.depend +++ b/sbin/md5/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/sbin/mdconfig/Makefile.depend b/sbin/mdconfig/Makefile.depend index 5166c2950d6d..0b555dc8a5ea 100644 --- a/sbin/mdconfig/Makefile.depend +++ b/sbin/mdconfig/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libexpat \ diff --git a/sbin/mdmfs/Makefile.depend b/sbin/mdmfs/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/mdmfs/Makefile.depend +++ b/sbin/mdmfs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mknod/Makefile.depend b/sbin/mknod/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/mknod/Makefile.depend +++ b/sbin/mknod/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mksnap_ffs/Makefile.depend b/sbin/mksnap_ffs/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/mksnap_ffs/Makefile.depend +++ b/sbin/mksnap_ffs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mount/Makefile.depend b/sbin/mount/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/sbin/mount/Makefile.depend +++ b/sbin/mount/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/mount_cd9660/Makefile.depend b/sbin/mount_cd9660/Makefile.depend index fc61e1a87937..b1a67cd37ad9 100644 --- a/sbin/mount_cd9660/Makefile.depend +++ b/sbin/mount_cd9660/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkiconv \ diff --git a/sbin/mount_fusefs/Makefile.depend b/sbin/mount_fusefs/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/mount_fusefs/Makefile.depend +++ b/sbin/mount_fusefs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mount_msdosfs/Makefile.depend b/sbin/mount_msdosfs/Makefile.depend index 1c4739697605..22fad8deab8a 100644 --- a/sbin/mount_msdosfs/Makefile.depend +++ b/sbin/mount_msdosfs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkiconv \ lib/libutil \ diff --git a/sbin/mount_nfs/Makefile.depend b/sbin/mount_nfs/Makefile.depend index 8800879854fe..1c61866765c9 100644 --- a/sbin/mount_nfs/Makefile.depend +++ b/sbin/mount_nfs/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mount_nullfs/Makefile.depend b/sbin/mount_nullfs/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/mount_nullfs/Makefile.depend +++ b/sbin/mount_nullfs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mount_udf/Makefile.depend b/sbin/mount_udf/Makefile.depend index 02925dbfb3c8..b7e649d8d7d6 100644 --- a/sbin/mount_udf/Makefile.depend +++ b/sbin/mount_udf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkiconv \ diff --git a/sbin/mount_unionfs/Makefile.depend b/sbin/mount_unionfs/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/mount_unionfs/Makefile.depend +++ b/sbin/mount_unionfs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/natd/Makefile.depend b/sbin/natd/Makefile.depend index 4895a6be1adc..a15829ca96b8 100644 --- a/sbin/natd/Makefile.depend +++ b/sbin/natd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libalias/libalias \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/newfs/Makefile.depend b/sbin/newfs/Makefile.depend index 5d3e06f00b2b..d6d2939dca6d 100644 --- a/sbin/newfs/Makefile.depend +++ b/sbin/newfs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ lib/libutil \ diff --git a/sbin/newfs_msdos/Makefile.depend b/sbin/newfs_msdos/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/newfs_msdos/Makefile.depend +++ b/sbin/newfs_msdos/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/nfsiod/Makefile.depend b/sbin/nfsiod/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/sbin/nfsiod/Makefile.depend +++ b/sbin/nfsiod/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/nos-tun/Makefile.depend b/sbin/nos-tun/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/sbin/nos-tun/Makefile.depend +++ b/sbin/nos-tun/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/nvmecontrol/Makefile.depend b/sbin/nvmecontrol/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/nvmecontrol/Makefile.depend +++ b/sbin/nvmecontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/pfctl/Makefile.depend b/sbin/pfctl/Makefile.depend index 2bcf5c8ba653..c4ddd860abce 100644 --- a/sbin/pfctl/Makefile.depend +++ b/sbin/pfctl/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/msun \ diff --git a/sbin/pflogd/Makefile.depend b/sbin/pflogd/Makefile.depend index 33251c64b4c0..b42437a19d44 100644 --- a/sbin/pflogd/Makefile.depend +++ b/sbin/pflogd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpcap \ diff --git a/sbin/ping/Makefile.depend b/sbin/ping/Makefile.depend index 39b873c5e2d9..dbc78f8a0384 100644 --- a/sbin/ping/Makefile.depend +++ b/sbin/ping/Makefile.depend @@ -3,14 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ + lib/libcapsicum \ lib/libcompiler_rt \ lib/libipsec \ + lib/libnv \ lib/msun \ diff --git a/sbin/ping6/Makefile.depend b/sbin/ping6/Makefile.depend index cabd9aaaf7e1..57b18a823075 100644 --- a/sbin/ping6/Makefile.depend +++ b/sbin/ping6/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ lib/libmd \ diff --git a/sbin/quotacheck/Makefile.depend b/sbin/quotacheck/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/sbin/quotacheck/Makefile.depend +++ b/sbin/quotacheck/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/rcorder/Makefile.depend b/sbin/rcorder/Makefile.depend index ec5b06b88b13..c642cb1106ce 100644 --- a/sbin/rcorder/Makefile.depend +++ b/sbin/rcorder/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/reboot/Makefile.depend b/sbin/reboot/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/reboot/Makefile.depend +++ b/sbin/reboot/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/recoverdisk/Makefile.depend b/sbin/recoverdisk/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/recoverdisk/Makefile.depend +++ b/sbin/recoverdisk/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/restore/Makefile.depend b/sbin/restore/Makefile.depend index 591ea4c790a0..b3c03a71825a 100644 --- a/sbin/restore/Makefile.depend +++ b/sbin/restore/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/protocols \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/route/Makefile.depend b/sbin/route/Makefile.depend index 6eb2cfd3e1d4..b8fd55457479 100644 --- a/sbin/route/Makefile.depend +++ b/sbin/route/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/routed/rtquery/Makefile.depend b/sbin/routed/rtquery/Makefile.depend index 98a7ed97a3ba..28d49cc89966 100644 --- a/sbin/routed/rtquery/Makefile.depend +++ b/sbin/routed/rtquery/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/sbin/rtsol/Makefile.depend b/sbin/rtsol/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/sbin/rtsol/Makefile.depend +++ b/sbin/rtsol/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/savecore/Makefile.depend b/sbin/savecore/Makefile.depend index 569fd1c18b9a..8d258dfd965e 100644 --- a/sbin/savecore/Makefile.depend +++ b/sbin/savecore/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libz \ diff --git a/sbin/setkey/Makefile.depend b/sbin/setkey/Makefile.depend index ca1104186a79..736ae9228802 100644 --- a/sbin/setkey/Makefile.depend +++ b/sbin/setkey/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ lib/liby \ diff --git a/sbin/shutdown/Makefile.depend b/sbin/shutdown/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/shutdown/Makefile.depend +++ b/sbin/shutdown/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/spppcontrol/Makefile.depend b/sbin/spppcontrol/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/spppcontrol/Makefile.depend +++ b/sbin/spppcontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/swapon/Makefile.depend b/sbin/swapon/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/sbin/swapon/Makefile.depend +++ b/sbin/swapon/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/sysctl/Makefile.depend b/sbin/sysctl/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/sbin/sysctl/Makefile.depend +++ b/sbin/sysctl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/tunefs/Makefile.depend b/sbin/tunefs/Makefile.depend index 374b5e7b5c94..7fb8fce4559a 100644 --- a/sbin/tunefs/Makefile.depend +++ b/sbin/tunefs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/umount/Makefile.depend b/sbin/umount/Makefile.depend index d074335f4466..5930524f9ce7 100644 --- a/sbin/umount/Makefile.depend +++ b/sbin/umount/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/share/syscons/scrnmaps/Makefile.depend b/share/syscons/scrnmaps/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/share/syscons/scrnmaps/Makefile.depend +++ b/share/syscons/scrnmaps/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/apply/Makefile.depend b/usr.bin/apply/Makefile.depend index 8a69c213c3c2..a1157119ad51 100644 --- a/usr.bin/apply/Makefile.depend +++ b/usr.bin/apply/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsbuf \ diff --git a/usr.bin/asa/Makefile.depend b/usr.bin/asa/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/asa/Makefile.depend +++ b/usr.bin/asa/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/at/Makefile.depend b/usr.bin/at/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/at/Makefile.depend +++ b/usr.bin/at/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/atm/sscop/Makefile.depend b/usr.bin/atm/sscop/Makefile.depend index f584b912ab47..1d7d03c9ac9c 100644 --- a/usr.bin/atm/sscop/Makefile.depend +++ b/usr.bin/atm/sscop/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbegemot \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ lib/libngatm \ diff --git a/usr.bin/awk/Makefile.depend b/usr.bin/awk/Makefile.depend index 6add1330aa92..5b1f96fd4a82 100644 --- a/usr.bin/awk/Makefile.depend +++ b/usr.bin/awk/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/banner/Makefile.depend b/usr.bin/banner/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/banner/Makefile.depend +++ b/usr.bin/banner/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/basename/Makefile.depend b/usr.bin/basename/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/basename/Makefile.depend +++ b/usr.bin/basename/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bc/Makefile.depend b/usr.bin/bc/Makefile.depend index 6a928de28300..3cc8704c86d6 100644 --- a/usr.bin/bc/Makefile.depend +++ b/usr.bin/bc/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.bin/biff/Makefile.depend b/usr.bin/biff/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/biff/Makefile.depend +++ b/usr.bin/biff/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bluetooth/bthost/Makefile.depend b/usr.bin/bluetooth/bthost/Makefile.depend index 2a95a05d0df9..334348050096 100644 --- a/usr.bin/bluetooth/bthost/Makefile.depend +++ b/usr.bin/bluetooth/bthost/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bluetooth/btsockstat/Makefile.depend b/usr.bin/bluetooth/btsockstat/Makefile.depend index 233d193fa383..c8112080776a 100644 --- a/usr.bin/bluetooth/btsockstat/Makefile.depend +++ b/usr.bin/bluetooth/btsockstat/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend index 71d0106e87c2..8402227f3aa8 100644 --- a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend +++ b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.bin/bmake/Makefile.depend b/usr.bin/bmake/Makefile.depend index 154abfc2fcdc..eaf546ae1d12 100644 --- a/usr.bin/bmake/Makefile.depend +++ b/usr.bin/bmake/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/usr.bin/brandelf/Makefile.depend b/usr.bin/brandelf/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/brandelf/Makefile.depend +++ b/usr.bin/brandelf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bsdiff/bsdiff/Makefile.depend b/usr.bin/bsdiff/bsdiff/Makefile.depend index 815fd2408131..e13f9731efe8 100644 --- a/usr.bin/bsdiff/bsdiff/Makefile.depend +++ b/usr.bin/bsdiff/bsdiff/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bsdiff/bspatch/Makefile.depend b/usr.bin/bsdiff/bspatch/Makefile.depend index 815fd2408131..e13f9731efe8 100644 --- a/usr.bin/bsdiff/bspatch/Makefile.depend +++ b/usr.bin/bsdiff/bspatch/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bzip2/Makefile.depend b/usr.bin/bzip2/Makefile.depend index f2d5926917ad..7616a5eeee2c 100644 --- a/usr.bin/bzip2/Makefile.depend +++ b/usr.bin/bzip2/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/bzip2recover/Makefile.depend b/usr.bin/bzip2recover/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/bzip2recover/Makefile.depend +++ b/usr.bin/bzip2recover/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/c89/Makefile.depend b/usr.bin/c89/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/c89/Makefile.depend +++ b/usr.bin/c89/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/c99/Makefile.depend b/usr.bin/c99/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/c99/Makefile.depend +++ b/usr.bin/c99/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/calendar/Makefile.depend b/usr.bin/calendar/Makefile.depend index c0e2c4ad739d..26b0cb7f5dde 100644 --- a/usr.bin/calendar/Makefile.depend +++ b/usr.bin/calendar/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/cap_mkdb/Makefile.depend b/usr.bin/cap_mkdb/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/cap_mkdb/Makefile.depend +++ b/usr.bin/cap_mkdb/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/catman/Makefile.depend b/usr.bin/catman/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/catman/Makefile.depend +++ b/usr.bin/catman/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/chat/Makefile.depend b/usr.bin/chat/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/chat/Makefile.depend +++ b/usr.bin/chat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/checknr/Makefile.depend b/usr.bin/checknr/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/checknr/Makefile.depend +++ b/usr.bin/checknr/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/chpass/Makefile.depend b/usr.bin/chpass/Makefile.depend index 32257f856051..eff6559d030b 100644 --- a/usr.bin/chpass/Makefile.depend +++ b/usr.bin/chpass/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ diff --git a/usr.bin/cksum/Makefile.depend b/usr.bin/cksum/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/cksum/Makefile.depend +++ b/usr.bin/cksum/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/cmp/Makefile.depend b/usr.bin/cmp/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/cmp/Makefile.depend +++ b/usr.bin/cmp/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/col/Makefile.depend b/usr.bin/col/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/col/Makefile.depend +++ b/usr.bin/col/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/colcrt/Makefile.depend b/usr.bin/colcrt/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/colcrt/Makefile.depend +++ b/usr.bin/colcrt/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/colldef/Makefile.depend b/usr.bin/colldef/Makefile.depend index 99cfa04656b7..8249cb41cd02 100644 --- a/usr.bin/colldef/Makefile.depend +++ b/usr.bin/colldef/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ usr.bin/lex/lib \ diff --git a/usr.bin/colrm/Makefile.depend b/usr.bin/colrm/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/colrm/Makefile.depend +++ b/usr.bin/colrm/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/column/Makefile.depend b/usr.bin/column/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/column/Makefile.depend +++ b/usr.bin/column/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/comm/Makefile.depend b/usr.bin/comm/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/comm/Makefile.depend +++ b/usr.bin/comm/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/compile_et/Makefile.depend b/usr.bin/compile_et/Makefile.depend index dc7604175669..b442c85b1bfa 100644 --- a/usr.bin/compile_et/Makefile.depend +++ b/usr.bin/compile_et/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ diff --git a/usr.bin/compress/Makefile.depend b/usr.bin/compress/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/compress/Makefile.depend +++ b/usr.bin/compress/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/cpuset/Makefile.depend b/usr.bin/cpuset/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/cpuset/Makefile.depend +++ b/usr.bin/cpuset/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/csplit/Makefile.depend b/usr.bin/csplit/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/csplit/Makefile.depend +++ b/usr.bin/csplit/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/csup/Makefile.depend b/usr.bin/csup/Makefile.depend index 50f15cd0e6cb..4ee17dedb94b 100644 --- a/usr.bin/csup/Makefile.depend +++ b/usr.bin/csup/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libthr \ diff --git a/usr.bin/ctags/Makefile.depend b/usr.bin/ctags/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/ctags/Makefile.depend +++ b/usr.bin/ctags/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ctlstat/Makefile.depend b/usr.bin/ctlstat/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/ctlstat/Makefile.depend +++ b/usr.bin/ctlstat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/cut/Makefile.depend b/usr.bin/cut/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/cut/Makefile.depend +++ b/usr.bin/cut/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/dirname/Makefile.depend b/usr.bin/dirname/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/dirname/Makefile.depend +++ b/usr.bin/dirname/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/du/Makefile.depend b/usr.bin/du/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.bin/du/Makefile.depend +++ b/usr.bin/du/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/ee/Makefile.depend b/usr.bin/ee/Makefile.depend index dd43fad9b357..233a7c6cd0b8 100644 --- a/usr.bin/ee/Makefile.depend +++ b/usr.bin/ee/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/elf2aout/Makefile.depend b/usr.bin/elf2aout/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/elf2aout/Makefile.depend +++ b/usr.bin/elf2aout/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/elfdump/Makefile.depend b/usr.bin/elfdump/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/elfdump/Makefile.depend +++ b/usr.bin/elfdump/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/enigma/Makefile.depend b/usr.bin/enigma/Makefile.depend index ecfa29edb713..59126995bf0c 100644 --- a/usr.bin/enigma/Makefile.depend +++ b/usr.bin/enigma/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ diff --git a/usr.bin/env/Makefile.depend b/usr.bin/env/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/env/Makefile.depend +++ b/usr.bin/env/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/expand/Makefile.depend b/usr.bin/expand/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/expand/Makefile.depend +++ b/usr.bin/expand/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/false/Makefile.depend b/usr.bin/false/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/false/Makefile.depend +++ b/usr.bin/false/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/file/Makefile.depend b/usr.bin/file/Makefile.depend index a88f1ac3e5e2..5d1fe0e16cf9 100644 --- a/usr.bin/file/Makefile.depend +++ b/usr.bin/file/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmagic \ lib/libz \ diff --git a/usr.bin/file2c/Makefile.depend b/usr.bin/file2c/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/file2c/Makefile.depend +++ b/usr.bin/file2c/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/find/Makefile.depend b/usr.bin/find/Makefile.depend index bcc0a7a3c016..9e4103f0ee3d 100644 --- a/usr.bin/find/Makefile.depend +++ b/usr.bin/find/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/finger/Makefile.depend b/usr.bin/finger/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/finger/Makefile.depend +++ b/usr.bin/finger/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/fmt/Makefile.depend b/usr.bin/fmt/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/fmt/Makefile.depend +++ b/usr.bin/fmt/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/fold/Makefile.depend b/usr.bin/fold/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/fold/Makefile.depend +++ b/usr.bin/fold/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/from/Makefile.depend b/usr.bin/from/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/from/Makefile.depend +++ b/usr.bin/from/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/fstat/Makefile.depend b/usr.bin/fstat/Makefile.depend index 488c0034e633..c811358a1162 100644 --- a/usr.bin/fstat/Makefile.depend +++ b/usr.bin/fstat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libkvm \ diff --git a/usr.bin/fsync/Makefile.depend b/usr.bin/fsync/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/fsync/Makefile.depend +++ b/usr.bin/fsync/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ftp/Makefile.depend b/usr.bin/ftp/Makefile.depend index ff175d71ad8f..1adc0d1cd8b4 100644 --- a/usr.bin/ftp/Makefile.depend +++ b/usr.bin/ftp/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/libutil \ diff --git a/usr.bin/gcore/Makefile.depend b/usr.bin/gcore/Makefile.depend index 01589a3343d0..c121cbc81234 100644 --- a/usr.bin/gcore/Makefile.depend +++ b/usr.bin/gcore/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsbuf \ lib/libutil \ diff --git a/usr.bin/gencat/Makefile.depend b/usr.bin/gencat/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.bin/gencat/Makefile.depend +++ b/usr.bin/gencat/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/getconf/Makefile.depend b/usr.bin/getconf/Makefile.depend index 57b0e222f129..2b3f880dc2a7 100644 --- a/usr.bin/getconf/Makefile.depend +++ b/usr.bin/getconf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/getent/Makefile.depend b/usr.bin/getent/Makefile.depend index 8e92349d5291..886683c668e9 100644 --- a/usr.bin/getent/Makefile.depend +++ b/usr.bin/getent/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/getopt/Makefile.depend b/usr.bin/getopt/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/getopt/Makefile.depend +++ b/usr.bin/getopt/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/gprof/Makefile.depend b/usr.bin/gprof/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/gprof/Makefile.depend +++ b/usr.bin/gprof/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/grep/Makefile.depend b/usr.bin/grep/Makefile.depend index 75c9e1296644..e06aa1dcb23b 100644 --- a/usr.bin/grep/Makefile.depend +++ b/usr.bin/grep/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/lib/libregex \ include \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ lib/libz \ diff --git a/usr.bin/gzip/Makefile.depend b/usr.bin/gzip/Makefile.depend index 2649c1675bc9..e59b5376efc3 100644 --- a/usr.bin/gzip/Makefile.depend +++ b/usr.bin/gzip/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ lib/libz \ diff --git a/usr.bin/head/Makefile.depend b/usr.bin/head/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/head/Makefile.depend +++ b/usr.bin/head/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/hexdump/Makefile.depend b/usr.bin/hexdump/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/hexdump/Makefile.depend +++ b/usr.bin/hexdump/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/id/Makefile.depend b/usr.bin/id/Makefile.depend index 86905b4e7296..cfab52535a52 100644 --- a/usr.bin/id/Makefile.depend +++ b/usr.bin/id/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/indent/Makefile.depend b/usr.bin/indent/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/indent/Makefile.depend +++ b/usr.bin/indent/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ipcrm/Makefile.depend b/usr.bin/ipcrm/Makefile.depend index d65cbb5d7110..b7d414c85aeb 100644 --- a/usr.bin/ipcrm/Makefile.depend +++ b/usr.bin/ipcrm/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/ipcs/Makefile.depend b/usr.bin/ipcs/Makefile.depend index d65cbb5d7110..b7d414c85aeb 100644 --- a/usr.bin/ipcs/Makefile.depend +++ b/usr.bin/ipcs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/join/Makefile.depend b/usr.bin/join/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/join/Makefile.depend +++ b/usr.bin/join/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/jot/Makefile.depend b/usr.bin/jot/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/jot/Makefile.depend +++ b/usr.bin/jot/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/kdump/Makefile.depend b/usr.bin/kdump/Makefile.depend index 3790ba0cea85..abb06b452307 100644 --- a/usr.bin/kdump/Makefile.depend +++ b/usr.bin/kdump/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcapsicum \ lib/libcompiler_rt \ lib/libnv \ diff --git a/usr.bin/keylogin/Makefile.depend b/usr.bin/keylogin/Makefile.depend index 6514930150d7..3b0eba6af4e1 100644 --- a/usr.bin/keylogin/Makefile.depend +++ b/usr.bin/keylogin/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.bin/keylogout/Makefile.depend b/usr.bin/keylogout/Makefile.depend index d074335f4466..5930524f9ce7 100644 --- a/usr.bin/keylogout/Makefile.depend +++ b/usr.bin/keylogout/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/killall/Makefile.depend b/usr.bin/killall/Makefile.depend index ac8f6253c607..4ece791e62b4 100644 --- a/usr.bin/killall/Makefile.depend +++ b/usr.bin/killall/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libjail \ diff --git a/usr.bin/ktrace/Makefile.depend b/usr.bin/ktrace/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/ktrace/Makefile.depend +++ b/usr.bin/ktrace/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ktrdump/Makefile.depend b/usr.bin/ktrdump/Makefile.depend index d65cbb5d7110..b7d414c85aeb 100644 --- a/usr.bin/ktrdump/Makefile.depend +++ b/usr.bin/ktrdump/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/lam/Makefile.depend b/usr.bin/lam/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/lam/Makefile.depend +++ b/usr.bin/lam/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/last/Makefile.depend b/usr.bin/last/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/last/Makefile.depend +++ b/usr.bin/last/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/lastcomm/Makefile.depend b/usr.bin/lastcomm/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/lastcomm/Makefile.depend +++ b/usr.bin/lastcomm/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ldd/Makefile.depend b/usr.bin/ldd/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.bin/ldd/Makefile.depend +++ b/usr.bin/ldd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/leave/Makefile.depend b/usr.bin/leave/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/leave/Makefile.depend +++ b/usr.bin/leave/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/less/Makefile.depend b/usr.bin/less/Makefile.depend index dd43fad9b357..233a7c6cd0b8 100644 --- a/usr.bin/less/Makefile.depend +++ b/usr.bin/less/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/lessecho/Makefile.depend b/usr.bin/lessecho/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/lessecho/Makefile.depend +++ b/usr.bin/lessecho/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/lesskey/Makefile.depend b/usr.bin/lesskey/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/lesskey/Makefile.depend +++ b/usr.bin/lesskey/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/limits/Makefile.depend b/usr.bin/limits/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.bin/limits/Makefile.depend +++ b/usr.bin/limits/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/locale/Makefile.depend b/usr.bin/locale/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/locale/Makefile.depend +++ b/usr.bin/locale/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/locate/bigram/Makefile.depend b/usr.bin/locate/bigram/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/locate/bigram/Makefile.depend +++ b/usr.bin/locate/bigram/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/locate/code/Makefile.depend b/usr.bin/locate/code/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/locate/code/Makefile.depend +++ b/usr.bin/locate/code/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/locate/locate/Makefile.depend b/usr.bin/locate/locate/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.bin/locate/locate/Makefile.depend +++ b/usr.bin/locate/locate/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/lock/Makefile.depend b/usr.bin/lock/Makefile.depend index ecfa29edb713..59126995bf0c 100644 --- a/usr.bin/lock/Makefile.depend +++ b/usr.bin/lock/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ diff --git a/usr.bin/lockf/Makefile.depend b/usr.bin/lockf/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/lockf/Makefile.depend +++ b/usr.bin/lockf/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/logger/Makefile.depend b/usr.bin/logger/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/logger/Makefile.depend +++ b/usr.bin/logger/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/login/Makefile.depend b/usr.bin/login/Makefile.depend index cc80c7c09c21..5dbe42cdaf55 100644 --- a/usr.bin/login/Makefile.depend +++ b/usr.bin/login/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/usr.bin/logins/Makefile.depend b/usr.bin/logins/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/logins/Makefile.depend +++ b/usr.bin/logins/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/logname/Makefile.depend b/usr.bin/logname/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/logname/Makefile.depend +++ b/usr.bin/logname/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/look/Makefile.depend b/usr.bin/look/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/look/Makefile.depend +++ b/usr.bin/look/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/lsvfs/Makefile.depend b/usr.bin/lsvfs/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/lsvfs/Makefile.depend +++ b/usr.bin/lsvfs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/lzmainfo/Makefile.depend b/usr.bin/lzmainfo/Makefile.depend index 8375ef67fd6d..6da741b42b7f 100644 --- a/usr.bin/lzmainfo/Makefile.depend +++ b/usr.bin/lzmainfo/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/m4/Makefile.depend b/usr.bin/m4/Makefile.depend index 6ea36dcc046d..429b9f2eddc2 100644 --- a/usr.bin/m4/Makefile.depend +++ b/usr.bin/m4/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/liby \ lib/msun \ diff --git a/usr.bin/mail/Makefile.depend b/usr.bin/mail/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/mail/Makefile.depend +++ b/usr.bin/mail/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/makewhatis/Makefile.depend b/usr.bin/makewhatis/Makefile.depend index 569fd1c18b9a..8d258dfd965e 100644 --- a/usr.bin/makewhatis/Makefile.depend +++ b/usr.bin/makewhatis/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libz \ diff --git a/usr.bin/mandoc/Makefile.depend b/usr.bin/mandoc/Makefile.depend index baa289a3eb1c..b6149c033a2f 100644 --- a/usr.bin/mandoc/Makefile.depend +++ b/usr.bin/mandoc/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmandoc \ diff --git a/usr.bin/mesg/Makefile.depend b/usr.bin/mesg/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/mesg/Makefile.depend +++ b/usr.bin/mesg/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/minigzip/Makefile.depend b/usr.bin/minigzip/Makefile.depend index 569fd1c18b9a..8d258dfd965e 100644 --- a/usr.bin/minigzip/Makefile.depend +++ b/usr.bin/minigzip/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libz \ diff --git a/usr.bin/ministat/Makefile.depend b/usr.bin/ministat/Makefile.depend index c0e2c4ad739d..26b0cb7f5dde 100644 --- a/usr.bin/ministat/Makefile.depend +++ b/usr.bin/ministat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/mkfifo/Makefile.depend b/usr.bin/mkfifo/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/mkfifo/Makefile.depend +++ b/usr.bin/mkfifo/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/mklocale/Makefile.depend b/usr.bin/mklocale/Makefile.depend index c534fe6ed1c6..38018d75b343 100644 --- a/usr.bin/mklocale/Makefile.depend +++ b/usr.bin/mklocale/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/mkstr/Makefile.depend b/usr.bin/mkstr/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/mkstr/Makefile.depend +++ b/usr.bin/mkstr/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/mktemp/Makefile.depend b/usr.bin/mktemp/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/mktemp/Makefile.depend +++ b/usr.bin/mktemp/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/mkulzma/Makefile.depend b/usr.bin/mkulzma/Makefile.depend index 8375ef67fd6d..6da741b42b7f 100644 --- a/usr.bin/mkulzma/Makefile.depend +++ b/usr.bin/mkulzma/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/mkuzip/Makefile.depend b/usr.bin/mkuzip/Makefile.depend index 569fd1c18b9a..8d258dfd965e 100644 --- a/usr.bin/mkuzip/Makefile.depend +++ b/usr.bin/mkuzip/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libz \ diff --git a/usr.bin/msgs/Makefile.depend b/usr.bin/msgs/Makefile.depend index dd43fad9b357..233a7c6cd0b8 100644 --- a/usr.bin/msgs/Makefile.depend +++ b/usr.bin/msgs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/mt/Makefile.depend b/usr.bin/mt/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/mt/Makefile.depend +++ b/usr.bin/mt/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/nc/Makefile.depend b/usr.bin/nc/Makefile.depend index 25b01eb5a09b..46ae5afac68b 100644 --- a/usr.bin/nc/Makefile.depend +++ b/usr.bin/nc/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ diff --git a/usr.bin/ncal/Makefile.depend b/usr.bin/ncal/Makefile.depend index 6f21a492a45d..22a43b9738e3 100644 --- a/usr.bin/ncal/Makefile.depend +++ b/usr.bin/ncal/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcalendar \ lib/libcompiler_rt \ lib/ncurses/ncurses \ diff --git a/usr.bin/netstat/Makefile.depend b/usr.bin/netstat/Makefile.depend index 258cf562a2c1..12d044647034 100644 --- a/usr.bin/netstat/Makefile.depend +++ b/usr.bin/netstat/Makefile.depend @@ -3,14 +3,15 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ - lib/libipx \ lib/libkvm \ lib/libmemstat \ lib/libnetgraph \ diff --git a/usr.bin/newgrp/Makefile.depend b/usr.bin/newgrp/Makefile.depend index 1797aa74422f..8c9b44e8e0a4 100644 --- a/usr.bin/newgrp/Makefile.depend +++ b/usr.bin/newgrp/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ diff --git a/usr.bin/nfsstat/Makefile.depend b/usr.bin/nfsstat/Makefile.depend index d65cbb5d7110..b7d414c85aeb 100644 --- a/usr.bin/nfsstat/Makefile.depend +++ b/usr.bin/nfsstat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/nice/Makefile.depend b/usr.bin/nice/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/nice/Makefile.depend +++ b/usr.bin/nice/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/nl/Makefile.depend b/usr.bin/nl/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/nl/Makefile.depend +++ b/usr.bin/nl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/nohup/Makefile.depend b/usr.bin/nohup/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/nohup/Makefile.depend +++ b/usr.bin/nohup/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/opieinfo/Makefile.depend b/usr.bin/opieinfo/Makefile.depend index 4c63db9b2496..8607f4373445 100644 --- a/usr.bin/opieinfo/Makefile.depend +++ b/usr.bin/opieinfo/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libopie \ diff --git a/usr.bin/opiekey/Makefile.depend b/usr.bin/opiekey/Makefile.depend index 4c63db9b2496..8607f4373445 100644 --- a/usr.bin/opiekey/Makefile.depend +++ b/usr.bin/opiekey/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libopie \ diff --git a/usr.bin/opiepasswd/Makefile.depend b/usr.bin/opiepasswd/Makefile.depend index 4c63db9b2496..8607f4373445 100644 --- a/usr.bin/opiepasswd/Makefile.depend +++ b/usr.bin/opiepasswd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libopie \ diff --git a/usr.bin/passwd/Makefile.depend b/usr.bin/passwd/Makefile.depend index d12466d6a618..afe8c8b3c68f 100644 --- a/usr.bin/passwd/Makefile.depend +++ b/usr.bin/passwd/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/usr.bin/paste/Makefile.depend b/usr.bin/paste/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/paste/Makefile.depend +++ b/usr.bin/paste/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/pathchk/Makefile.depend b/usr.bin/pathchk/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/pathchk/Makefile.depend +++ b/usr.bin/pathchk/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/perror/Makefile.depend b/usr.bin/perror/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/perror/Makefile.depend +++ b/usr.bin/perror/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/pr/Makefile.depend b/usr.bin/pr/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/pr/Makefile.depend +++ b/usr.bin/pr/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/printenv/Makefile.depend b/usr.bin/printenv/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/printenv/Makefile.depend +++ b/usr.bin/printenv/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/printf/Makefile.depend b/usr.bin/printf/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/printf/Makefile.depend +++ b/usr.bin/printf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/procstat/Makefile.depend b/usr.bin/procstat/Makefile.depend index a6a3edcfd0f1..232852e0fd16 100644 --- a/usr.bin/procstat/Makefile.depend +++ b/usr.bin/procstat/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libkvm \ diff --git a/usr.bin/quota/Makefile.depend b/usr.bin/quota/Makefile.depend index f3b4295fa83f..8d990c379a15 100644 --- a/usr.bin/quota/Makefile.depend +++ b/usr.bin/quota/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/usr.bin/rctl/Makefile.depend b/usr.bin/rctl/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.bin/rctl/Makefile.depend +++ b/usr.bin/rctl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/renice/Makefile.depend b/usr.bin/renice/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/renice/Makefile.depend +++ b/usr.bin/renice/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rev/Makefile.depend b/usr.bin/rev/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/rev/Makefile.depend +++ b/usr.bin/rev/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/revoke/Makefile.depend b/usr.bin/revoke/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/revoke/Makefile.depend +++ b/usr.bin/revoke/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rlogin/Makefile.depend b/usr.bin/rlogin/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/rlogin/Makefile.depend +++ b/usr.bin/rlogin/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rpcgen/Makefile.depend b/usr.bin/rpcgen/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/rpcgen/Makefile.depend +++ b/usr.bin/rpcgen/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rpcinfo/Makefile.depend b/usr.bin/rpcinfo/Makefile.depend index 8e92349d5291..886683c668e9 100644 --- a/usr.bin/rpcinfo/Makefile.depend +++ b/usr.bin/rpcinfo/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rs/Makefile.depend b/usr.bin/rs/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/rs/Makefile.depend +++ b/usr.bin/rs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rsh/Makefile.depend b/usr.bin/rsh/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.bin/rsh/Makefile.depend +++ b/usr.bin/rsh/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/rup/Makefile.depend b/usr.bin/rup/Makefile.depend index 75cde037ea8f..30a67fae3522 100644 --- a/usr.bin/rup/Makefile.depend +++ b/usr.bin/rup/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.bin/ruptime/Makefile.depend b/usr.bin/ruptime/Makefile.depend index 591ea4c790a0..b3c03a71825a 100644 --- a/usr.bin/ruptime/Makefile.depend +++ b/usr.bin/ruptime/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/protocols \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rusers/Makefile.depend b/usr.bin/rusers/Makefile.depend index 75cde037ea8f..30a67fae3522 100644 --- a/usr.bin/rusers/Makefile.depend +++ b/usr.bin/rusers/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.bin/rwall/Makefile.depend b/usr.bin/rwall/Makefile.depend index d074335f4466..5930524f9ce7 100644 --- a/usr.bin/rwall/Makefile.depend +++ b/usr.bin/rwall/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rwho/Makefile.depend b/usr.bin/rwho/Makefile.depend index 591ea4c790a0..b3c03a71825a 100644 --- a/usr.bin/rwho/Makefile.depend +++ b/usr.bin/rwho/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/protocols \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/script/Makefile.depend b/usr.bin/script/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.bin/script/Makefile.depend +++ b/usr.bin/script/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/sed/Makefile.depend b/usr.bin/sed/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/sed/Makefile.depend +++ b/usr.bin/sed/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/seq/Makefile.depend b/usr.bin/seq/Makefile.depend index c0e2c4ad739d..26b0cb7f5dde 100644 --- a/usr.bin/seq/Makefile.depend +++ b/usr.bin/seq/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/showmount/Makefile.depend b/usr.bin/showmount/Makefile.depend index d074335f4466..5930524f9ce7 100644 --- a/usr.bin/showmount/Makefile.depend +++ b/usr.bin/showmount/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/sockstat/Makefile.depend b/usr.bin/sockstat/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.bin/sockstat/Makefile.depend +++ b/usr.bin/sockstat/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/sort/Makefile.depend b/usr.bin/sort/Makefile.depend index 8e6ef04f61bf..d95413e60409 100644 --- a/usr.bin/sort/Makefile.depend +++ b/usr.bin/sort/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/msun \ diff --git a/usr.bin/split/Makefile.depend b/usr.bin/split/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.bin/split/Makefile.depend +++ b/usr.bin/split/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/stat/Makefile.depend b/usr.bin/stat/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/stat/Makefile.depend +++ b/usr.bin/stat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/stdbuf/Makefile.depend b/usr.bin/stdbuf/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/stdbuf/Makefile.depend +++ b/usr.bin/stdbuf/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/su/Makefile.depend b/usr.bin/su/Makefile.depend index cc80c7c09c21..5dbe42cdaf55 100644 --- a/usr.bin/su/Makefile.depend +++ b/usr.bin/su/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/usr.bin/systat/Makefile.depend b/usr.bin/systat/Makefile.depend index ea1044b9c939..ae33ba876636 100644 --- a/usr.bin/systat/Makefile.depend +++ b/usr.bin/systat/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ diff --git a/usr.bin/tabs/Makefile.depend b/usr.bin/tabs/Makefile.depend index dd43fad9b357..233a7c6cd0b8 100644 --- a/usr.bin/tabs/Makefile.depend +++ b/usr.bin/tabs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tail/Makefile.depend b/usr.bin/tail/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/tail/Makefile.depend +++ b/usr.bin/tail/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/talk/Makefile.depend b/usr.bin/talk/Makefile.depend index 86fad698731b..310bef38e929 100644 --- a/usr.bin/talk/Makefile.depend +++ b/usr.bin/talk/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,8 +11,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ - lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tcopy/Makefile.depend b/usr.bin/tcopy/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/tcopy/Makefile.depend +++ b/usr.bin/tcopy/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/tee/Makefile.depend b/usr.bin/tee/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/tee/Makefile.depend +++ b/usr.bin/tee/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/tftp/Makefile.depend b/usr.bin/tftp/Makefile.depend index 0ca3031c40a5..6033e4a5149c 100644 --- a/usr.bin/tftp/Makefile.depend +++ b/usr.bin/tftp/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.bin/time/Makefile.depend b/usr.bin/time/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/time/Makefile.depend +++ b/usr.bin/time/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/tip/tip/Makefile.depend b/usr.bin/tip/tip/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/tip/tip/Makefile.depend +++ b/usr.bin/tip/tip/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/top/Makefile.depend b/usr.bin/top/Makefile.depend index f66c56b61909..ad0f13a519b1 100644 --- a/usr.bin/top/Makefile.depend +++ b/usr.bin/top/Makefile.depend @@ -3,12 +3,15 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ + lib/libjail \ lib/libkvm \ lib/msun \ lib/ncurses/ncurses \ diff --git a/usr.bin/touch/Makefile.depend b/usr.bin/touch/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/touch/Makefile.depend +++ b/usr.bin/touch/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/tput/Makefile.depend b/usr.bin/tput/Makefile.depend index dd43fad9b357..233a7c6cd0b8 100644 --- a/usr.bin/tput/Makefile.depend +++ b/usr.bin/tput/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tr/Makefile.depend b/usr.bin/tr/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/tr/Makefile.depend +++ b/usr.bin/tr/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/true/Makefile.depend b/usr.bin/true/Makefile.depend index 9547aa79a6f4..ed02837d7018 100644 --- a/usr.bin/true/Makefile.depend +++ b/usr.bin/true/Makefile.depend @@ -3,9 +3,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/truncate/Makefile.depend b/usr.bin/truncate/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.bin/truncate/Makefile.depend +++ b/usr.bin/truncate/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/truss/Makefile.depend.amd64 b/usr.bin/truss/Makefile.depend.amd64 index 7c9eb58b782b..34492d5ffcd7 100644 --- a/usr.bin/truss/Makefile.depend.amd64 +++ b/usr.bin/truss/Makefile.depend.amd64 @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/tset/Makefile.depend b/usr.bin/tset/Makefile.depend index dd43fad9b357..233a7c6cd0b8 100644 --- a/usr.bin/tset/Makefile.depend +++ b/usr.bin/tset/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tsort/Makefile.depend b/usr.bin/tsort/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/tsort/Makefile.depend +++ b/usr.bin/tsort/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/tty/Makefile.depend b/usr.bin/tty/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/tty/Makefile.depend +++ b/usr.bin/tty/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ul/Makefile.depend b/usr.bin/ul/Makefile.depend index dd43fad9b357..233a7c6cd0b8 100644 --- a/usr.bin/ul/Makefile.depend +++ b/usr.bin/ul/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/uname/Makefile.depend b/usr.bin/uname/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/uname/Makefile.depend +++ b/usr.bin/uname/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/unexpand/Makefile.depend b/usr.bin/unexpand/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/unexpand/Makefile.depend +++ b/usr.bin/unexpand/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/unifdef/Makefile.depend b/usr.bin/unifdef/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/unifdef/Makefile.depend +++ b/usr.bin/unifdef/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/uniq/Makefile.depend b/usr.bin/uniq/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/uniq/Makefile.depend +++ b/usr.bin/uniq/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/units/Makefile.depend b/usr.bin/units/Makefile.depend index c244cb86490a..e7af95cdf21a 100644 --- a/usr.bin/units/Makefile.depend +++ b/usr.bin/units/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.bin/unvis/Makefile.depend b/usr.bin/unvis/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/unvis/Makefile.depend +++ b/usr.bin/unvis/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/usbhidaction/Makefile.depend b/usr.bin/usbhidaction/Makefile.depend index 86ee446e313e..0cf2f69216dd 100644 --- a/usr.bin/usbhidaction/Makefile.depend +++ b/usr.bin/usbhidaction/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libusbhid \ diff --git a/usr.bin/usbhidctl/Makefile.depend b/usr.bin/usbhidctl/Makefile.depend index 86ee446e313e..0cf2f69216dd 100644 --- a/usr.bin/usbhidctl/Makefile.depend +++ b/usr.bin/usbhidctl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libusbhid \ diff --git a/usr.bin/users/Makefile.depend b/usr.bin/users/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/users/Makefile.depend +++ b/usr.bin/users/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/uudecode/Makefile.depend b/usr.bin/uudecode/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.bin/uudecode/Makefile.depend +++ b/usr.bin/uudecode/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/uuencode/Makefile.depend b/usr.bin/uuencode/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.bin/uuencode/Makefile.depend +++ b/usr.bin/uuencode/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/vacation/Makefile.depend b/usr.bin/vacation/Makefile.depend index 799cb2895e14..4f613d1fc876 100644 --- a/usr.bin/vacation/Makefile.depend +++ b/usr.bin/vacation/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ diff --git a/usr.bin/vgrind/Makefile.depend b/usr.bin/vgrind/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/vgrind/Makefile.depend +++ b/usr.bin/vgrind/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/vi/Makefile.depend b/usr.bin/vi/Makefile.depend index 9d7543f3525f..41f7b7051ee1 100644 --- a/usr.bin/vi/Makefile.depend +++ b/usr.bin/vi/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/ncurses/ncursesw \ diff --git a/usr.bin/vis/Makefile.depend b/usr.bin/vis/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/vis/Makefile.depend +++ b/usr.bin/vis/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/vmstat/Makefile.depend b/usr.bin/vmstat/Makefile.depend index 8f934055b0c5..c26fc4630e14 100644 --- a/usr.bin/vmstat/Makefile.depend +++ b/usr.bin/vmstat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ diff --git a/usr.bin/w/Makefile.depend b/usr.bin/w/Makefile.depend index 963ecaeaf315..2d49890bb27e 100644 --- a/usr.bin/w/Makefile.depend +++ b/usr.bin/w/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ lib/libutil \ diff --git a/usr.bin/wall/Makefile.depend b/usr.bin/wall/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/wall/Makefile.depend +++ b/usr.bin/wall/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/wc/Makefile.depend b/usr.bin/wc/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/wc/Makefile.depend +++ b/usr.bin/wc/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/what/Makefile.depend b/usr.bin/what/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/what/Makefile.depend +++ b/usr.bin/what/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/whereis/Makefile.depend b/usr.bin/whereis/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/whereis/Makefile.depend +++ b/usr.bin/whereis/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/which/Makefile.depend b/usr.bin/which/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/which/Makefile.depend +++ b/usr.bin/which/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/who/Makefile.depend b/usr.bin/who/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/who/Makefile.depend +++ b/usr.bin/who/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/whois/Makefile.depend b/usr.bin/whois/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.bin/whois/Makefile.depend +++ b/usr.bin/whois/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/write/Makefile.depend b/usr.bin/write/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/write/Makefile.depend +++ b/usr.bin/write/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/xargs/Makefile.depend b/usr.bin/xargs/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/xargs/Makefile.depend +++ b/usr.bin/xargs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/xinstall/Makefile.depend b/usr.bin/xinstall/Makefile.depend index 97ae6066098d..43462417933d 100644 --- a/usr.bin/xinstall/Makefile.depend +++ b/usr.bin/xinstall/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libutil \ diff --git a/usr.bin/xlint/lint1/Makefile.depend b/usr.bin/xlint/lint1/Makefile.depend index 4715298eeb90..2cf17dca4ec9 100644 --- a/usr.bin/xlint/lint1/Makefile.depend +++ b/usr.bin/xlint/lint1/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ usr.bin/lex/lib \ diff --git a/usr.bin/xlint/lint2/Makefile.depend b/usr.bin/xlint/lint2/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/xlint/lint2/Makefile.depend +++ b/usr.bin/xlint/lint2/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/xlint/xlint/Makefile.depend b/usr.bin/xlint/xlint/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/xlint/xlint/Makefile.depend +++ b/usr.bin/xlint/xlint/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/xstr/Makefile.depend b/usr.bin/xstr/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/xstr/Makefile.depend +++ b/usr.bin/xstr/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/xz/Makefile.depend b/usr.bin/xz/Makefile.depend index 8375ef67fd6d..6da741b42b7f 100644 --- a/usr.bin/xz/Makefile.depend +++ b/usr.bin/xz/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/xzdec/Makefile.depend b/usr.bin/xzdec/Makefile.depend index 8375ef67fd6d..6da741b42b7f 100644 --- a/usr.bin/xzdec/Makefile.depend +++ b/usr.bin/xzdec/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/yacc/Makefile.depend b/usr.bin/yacc/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.bin/yacc/Makefile.depend +++ b/usr.bin/yacc/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/yes/Makefile.depend b/usr.bin/yes/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.bin/yes/Makefile.depend +++ b/usr.bin/yes/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ypcat/Makefile.depend b/usr.bin/ypcat/Makefile.depend index d074335f4466..5930524f9ce7 100644 --- a/usr.bin/ypcat/Makefile.depend +++ b/usr.bin/ypcat/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ypmatch/Makefile.depend b/usr.bin/ypmatch/Makefile.depend index d074335f4466..5930524f9ce7 100644 --- a/usr.bin/ypmatch/Makefile.depend +++ b/usr.bin/ypmatch/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ypwhich/Makefile.depend b/usr.bin/ypwhich/Makefile.depend index 8800879854fe..1c61866765c9 100644 --- a/usr.bin/ypwhich/Makefile.depend +++ b/usr.bin/ypwhich/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ac/Makefile.depend b/usr.sbin/ac/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/ac/Makefile.depend +++ b/usr.sbin/ac/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/accton/Makefile.depend b/usr.sbin/accton/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/accton/Makefile.depend +++ b/usr.sbin/accton/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/acpi/acpiconf/Makefile.depend b/usr.sbin/acpi/acpiconf/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/acpi/acpiconf/Makefile.depend +++ b/usr.sbin/acpi/acpiconf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/acpi/acpidb/Makefile.depend b/usr.sbin/acpi/acpidb/Makefile.depend index 9926a3a7caa6..e1ba49601114 100644 --- a/usr.sbin/acpi/acpidb/Makefile.depend +++ b/usr.sbin/acpi/acpidb/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ diff --git a/usr.sbin/acpi/acpidump/Makefile.depend b/usr.sbin/acpi/acpidump/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/acpi/acpidump/Makefile.depend +++ b/usr.sbin/acpi/acpidump/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/acpi/iasl/Makefile.depend b/usr.sbin/acpi/iasl/Makefile.depend index 2d5671eabcd8..107b2f1db4bd 100644 --- a/usr.sbin/acpi/iasl/Makefile.depend +++ b/usr.sbin/acpi/iasl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/amd/amd/Makefile.depend b/usr.sbin/amd/amd/Makefile.depend index f251242ceea2..9fe831b1c564 100644 --- a/usr.sbin/amd/amd/Makefile.depend +++ b/usr.sbin/amd/amd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/amq/Makefile.depend b/usr.sbin/amd/amq/Makefile.depend index 1c84a42c87fd..092b301ab9b2 100644 --- a/usr.sbin/amd/amq/Makefile.depend +++ b/usr.sbin/amd/amq/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/fixmount/Makefile.depend b/usr.sbin/amd/fixmount/Makefile.depend index 00b10ef6ddd6..d7a7ddc139fc 100644 --- a/usr.sbin/amd/fixmount/Makefile.depend +++ b/usr.sbin/amd/fixmount/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ lib/libwrap \ diff --git a/usr.sbin/amd/fsinfo/Makefile.depend b/usr.sbin/amd/fsinfo/Makefile.depend index 875ca03a4ca9..293b77888407 100644 --- a/usr.sbin/amd/fsinfo/Makefile.depend +++ b/usr.sbin/amd/fsinfo/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/hlfsd/Makefile.depend b/usr.sbin/amd/hlfsd/Makefile.depend index 1c84a42c87fd..092b301ab9b2 100644 --- a/usr.sbin/amd/hlfsd/Makefile.depend +++ b/usr.sbin/amd/hlfsd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/mk-amd-map/Makefile.depend b/usr.sbin/amd/mk-amd-map/Makefile.depend index 1c84a42c87fd..092b301ab9b2 100644 --- a/usr.sbin/amd/mk-amd-map/Makefile.depend +++ b/usr.sbin/amd/mk-amd-map/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/pawd/Makefile.depend b/usr.sbin/amd/pawd/Makefile.depend index 1c84a42c87fd..092b301ab9b2 100644 --- a/usr.sbin/amd/pawd/Makefile.depend +++ b/usr.sbin/amd/pawd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/wire-test/Makefile.depend b/usr.sbin/amd/wire-test/Makefile.depend index 1c84a42c87fd..092b301ab9b2 100644 --- a/usr.sbin/amd/wire-test/Makefile.depend +++ b/usr.sbin/amd/wire-test/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/ancontrol/Makefile.depend b/usr.sbin/ancontrol/Makefile.depend index f73af6bdb0a2..c1f494f87eff 100644 --- a/usr.sbin/ancontrol/Makefile.depend +++ b/usr.sbin/ancontrol/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/apm/Makefile.depend b/usr.sbin/apm/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/apm/Makefile.depend +++ b/usr.sbin/apm/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/arp/Makefile.depend b/usr.sbin/arp/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/arp/Makefile.depend +++ b/usr.sbin/arp/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/asf/Makefile.depend b/usr.sbin/asf/Makefile.depend index d65cbb5d7110..b7d414c85aeb 100644 --- a/usr.sbin/asf/Makefile.depend +++ b/usr.sbin/asf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/audit/Makefile.depend b/usr.sbin/audit/Makefile.depend index 86905b4e7296..cfab52535a52 100644 --- a/usr.sbin/audit/Makefile.depend +++ b/usr.sbin/audit/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/auditd/Makefile.depend b/usr.sbin/auditd/Makefile.depend index 6930b9381da8..0de12f7d62a6 100644 --- a/usr.sbin/auditd/Makefile.depend +++ b/usr.sbin/auditd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/libauditd \ lib/libbsm \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/auditreduce/Makefile.depend b/usr.sbin/auditreduce/Makefile.depend index 86905b4e7296..cfab52535a52 100644 --- a/usr.sbin/auditreduce/Makefile.depend +++ b/usr.sbin/auditreduce/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/authpf/Makefile.depend b/usr.sbin/authpf/Makefile.depend index b13e8fa18e96..5a23e70ffbae 100644 --- a/usr.sbin/authpf/Makefile.depend +++ b/usr.sbin/authpf/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libutil \ diff --git a/usr.sbin/bluetooth/ath3kfw/Makefile.depend b/usr.sbin/bluetooth/ath3kfw/Makefile.depend index e7ad4fafade0..fad2a1d2fe7b 100644 --- a/usr.sbin/bluetooth/ath3kfw/Makefile.depend +++ b/usr.sbin/bluetooth/ath3kfw/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ lib/libusb \ diff --git a/usr.sbin/bluetooth/bcmfw/Makefile.depend b/usr.sbin/bluetooth/bcmfw/Makefile.depend index 0fadb2183fbe..f5603505d900 100644 --- a/usr.sbin/bluetooth/bcmfw/Makefile.depend +++ b/usr.sbin/bluetooth/bcmfw/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/bluetooth/bt3cfw/Makefile.depend b/usr.sbin/bluetooth/bt3cfw/Makefile.depend index 0fadb2183fbe..f5603505d900 100644 --- a/usr.sbin/bluetooth/bt3cfw/Makefile.depend +++ b/usr.sbin/bluetooth/bt3cfw/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/bluetooth/bthidcontrol/Makefile.depend b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend index 9d5ce26f3e7e..93c221eb4ad8 100644 --- a/usr.sbin/bluetooth/bthidcontrol/Makefile.depend +++ b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ lib/libusbhid \ diff --git a/usr.sbin/bluetooth/bthidd/Makefile.depend b/usr.sbin/bluetooth/bthidd/Makefile.depend index dd522cf64a22..b9d70b78114e 100644 --- a/usr.sbin/bluetooth/bthidd/Makefile.depend +++ b/usr.sbin/bluetooth/bthidd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libusbhid \ diff --git a/usr.sbin/bluetooth/btpand/Makefile.depend b/usr.sbin/bluetooth/btpand/Makefile.depend index 51c0276323a3..994099d3d0fd 100644 --- a/usr.sbin/bluetooth/btpand/Makefile.depend +++ b/usr.sbin/bluetooth/btpand/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ lib/libutil \ diff --git a/usr.sbin/bluetooth/hccontrol/Makefile.depend b/usr.sbin/bluetooth/hccontrol/Makefile.depend index 2a95a05d0df9..334348050096 100644 --- a/usr.sbin/bluetooth/hccontrol/Makefile.depend +++ b/usr.sbin/bluetooth/hccontrol/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bluetooth/hcsecd/Makefile.depend b/usr.sbin/bluetooth/hcsecd/Makefile.depend index 7af5744dfd34..71286d98a1a7 100644 --- a/usr.sbin/bluetooth/hcsecd/Makefile.depend +++ b/usr.sbin/bluetooth/hcsecd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bluetooth/hcseriald/Makefile.depend b/usr.sbin/bluetooth/hcseriald/Makefile.depend index 0fadb2183fbe..f5603505d900 100644 --- a/usr.sbin/bluetooth/hcseriald/Makefile.depend +++ b/usr.sbin/bluetooth/hcseriald/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/bluetooth/l2control/Makefile.depend b/usr.sbin/bluetooth/l2control/Makefile.depend index 2a95a05d0df9..334348050096 100644 --- a/usr.sbin/bluetooth/l2control/Makefile.depend +++ b/usr.sbin/bluetooth/l2control/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bluetooth/l2ping/Makefile.depend b/usr.sbin/bluetooth/l2ping/Makefile.depend index 1b2f1e2c7240..beb640354e0e 100644 --- a/usr.sbin/bluetooth/l2ping/Makefile.depend +++ b/usr.sbin/bluetooth/l2ping/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend index 71d0106e87c2..8402227f3aa8 100644 --- a/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend +++ b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.sbin/bluetooth/sdpcontrol/Makefile.depend b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend index 71d0106e87c2..8402227f3aa8 100644 --- a/usr.sbin/bluetooth/sdpcontrol/Makefile.depend +++ b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.sbin/bluetooth/sdpd/Makefile.depend b/usr.sbin/bluetooth/sdpd/Makefile.depend index 8724ad104b03..461c623490a6 100644 --- a/usr.sbin/bluetooth/sdpd/Makefile.depend +++ b/usr.sbin/bluetooth/sdpd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.sbin/boot0cfg/Makefile.depend b/usr.sbin/boot0cfg/Makefile.depend index 099436d63905..bac69c034a3b 100644 --- a/usr.sbin/boot0cfg/Makefile.depend +++ b/usr.sbin/boot0cfg/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/usr.sbin/bootparamd/bootparamd/Makefile.depend b/usr.sbin/bootparamd/bootparamd/Makefile.depend index c774bad0ac70..49a473e8ad26 100644 --- a/usr.sbin/bootparamd/bootparamd/Makefile.depend +++ b/usr.sbin/bootparamd/bootparamd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bootparamd/callbootd/Makefile.depend b/usr.sbin/bootparamd/callbootd/Makefile.depend index 9a29bf8b8e62..2b23406601da 100644 --- a/usr.sbin/bootparamd/callbootd/Makefile.depend +++ b/usr.sbin/bootparamd/callbootd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bsdinstall/partedit/Makefile.depend b/usr.sbin/bsdinstall/partedit/Makefile.depend index c82f3b2f7ff9..c0c3ad805dba 100644 --- a/usr.sbin/bsdinstall/partedit/Makefile.depend +++ b/usr.sbin/bsdinstall/partedit/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libdialog \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/usr.sbin/bsnmpd/gensnmptree/Makefile.depend b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/bsnmpd/gensnmptree/Makefile.depend +++ b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/btxld/Makefile.depend b/usr.sbin/btxld/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/btxld/Makefile.depend +++ b/usr.sbin/btxld/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/cdcontrol/Makefile.depend b/usr.sbin/cdcontrol/Makefile.depend index 0ca3031c40a5..6033e4a5149c 100644 --- a/usr.sbin/cdcontrol/Makefile.depend +++ b/usr.sbin/cdcontrol/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.sbin/chkgrp/Makefile.depend b/usr.sbin/chkgrp/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/chkgrp/Makefile.depend +++ b/usr.sbin/chkgrp/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/chown/Makefile.depend b/usr.sbin/chown/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/chown/Makefile.depend +++ b/usr.sbin/chown/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/chroot/Makefile.depend b/usr.sbin/chroot/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/chroot/Makefile.depend +++ b/usr.sbin/chroot/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ckdist/Makefile.depend b/usr.sbin/ckdist/Makefile.depend index 5d619f8fac05..f3adefe05801 100644 --- a/usr.sbin/ckdist/Makefile.depend +++ b/usr.sbin/ckdist/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/clear_locks/Makefile.depend b/usr.sbin/clear_locks/Makefile.depend index 6514930150d7..3b0eba6af4e1 100644 --- a/usr.sbin/clear_locks/Makefile.depend +++ b/usr.sbin/clear_locks/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/config/Makefile.depend b/usr.sbin/config/Makefile.depend index fff9db282af7..37666058320e 100644 --- a/usr.sbin/config/Makefile.depend +++ b/usr.sbin/config/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsbuf \ usr.bin/lex/lib \ diff --git a/usr.sbin/cpucontrol/Makefile.depend b/usr.sbin/cpucontrol/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/cpucontrol/Makefile.depend +++ b/usr.sbin/cpucontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/cron/cron/Makefile.depend b/usr.sbin/cron/cron/Makefile.depend index fb8227522460..956f11385666 100644 --- a/usr.sbin/cron/cron/Makefile.depend +++ b/usr.sbin/cron/cron/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/usr.sbin/cron/crontab/Makefile.depend b/usr.sbin/cron/crontab/Makefile.depend index f04de102faeb..479fd4bc824f 100644 --- a/usr.sbin/cron/crontab/Makefile.depend +++ b/usr.sbin/cron/crontab/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libutil \ diff --git a/usr.sbin/crunch/crunchgen/Makefile.depend b/usr.sbin/crunch/crunchgen/Makefile.depend index f1dd969d39d9..b0880915ddc9 100644 --- a/usr.sbin/crunch/crunchgen/Makefile.depend +++ b/usr.sbin/crunch/crunchgen/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/crunch/crunchide/Makefile.depend b/usr.sbin/crunch/crunchide/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/crunch/crunchide/Makefile.depend +++ b/usr.sbin/crunch/crunchide/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ctladm/Makefile.depend b/usr.sbin/ctladm/Makefile.depend index abbcb84aaa9f..9fb65fb33df1 100644 --- a/usr.sbin/ctladm/Makefile.depend +++ b/usr.sbin/ctladm/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcam \ lib/libcompiler_rt \ lib/libexpat \ diff --git a/usr.sbin/ctm/ctm/Makefile.depend b/usr.sbin/ctm/ctm/Makefile.depend index 5d619f8fac05..f3adefe05801 100644 --- a/usr.sbin/ctm/ctm/Makefile.depend +++ b/usr.sbin/ctm/ctm/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/ctm/ctm_dequeue/Makefile.depend b/usr.sbin/ctm/ctm_dequeue/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/ctm/ctm_dequeue/Makefile.depend +++ b/usr.sbin/ctm/ctm_dequeue/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ctm/ctm_rmail/Makefile.depend b/usr.sbin/ctm/ctm_rmail/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/ctm/ctm_rmail/Makefile.depend +++ b/usr.sbin/ctm/ctm_rmail/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ctm/ctm_smail/Makefile.depend b/usr.sbin/ctm/ctm_smail/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/ctm/ctm_smail/Makefile.depend +++ b/usr.sbin/ctm/ctm_smail/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/daemon/Makefile.depend b/usr.sbin/daemon/Makefile.depend index 7417785c6430..bd2426af0eca 100644 --- a/usr.sbin/daemon/Makefile.depend +++ b/usr.sbin/daemon/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/dconschat/Makefile.depend b/usr.sbin/dconschat/Makefile.depend index d7113b4351cf..803dc63a94f7 100644 --- a/usr.sbin/dconschat/Makefile.depend +++ b/usr.sbin/dconschat/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/devinfo/Makefile.depend b/usr.sbin/devinfo/Makefile.depend index f56fdc6cc68d..62d696039291 100644 --- a/usr.sbin/devinfo/Makefile.depend +++ b/usr.sbin/devinfo/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevinfo \ diff --git a/usr.sbin/digictl/Makefile.depend b/usr.sbin/digictl/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/digictl/Makefile.depend +++ b/usr.sbin/digictl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/diskinfo/Makefile.depend b/usr.sbin/diskinfo/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.sbin/diskinfo/Makefile.depend +++ b/usr.sbin/diskinfo/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/dumpcis/Makefile.depend b/usr.sbin/dumpcis/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/dumpcis/Makefile.depend +++ b/usr.sbin/dumpcis/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/editmap/Makefile.depend b/usr.sbin/editmap/Makefile.depend index fcc2f04134f9..93db1c449e5c 100644 --- a/usr.sbin/editmap/Makefile.depend +++ b/usr.sbin/editmap/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ diff --git a/usr.sbin/edquota/Makefile.depend b/usr.sbin/edquota/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.sbin/edquota/Makefile.depend +++ b/usr.sbin/edquota/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/extattr/Makefile.depend b/usr.sbin/extattr/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.sbin/extattr/Makefile.depend +++ b/usr.sbin/extattr/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/extattrctl/Makefile.depend b/usr.sbin/extattrctl/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.sbin/extattrctl/Makefile.depend +++ b/usr.sbin/extattrctl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/faithd/Makefile.depend b/usr.sbin/faithd/Makefile.depend index ee948eaa011e..e3af08532eec 100644 --- a/usr.sbin/faithd/Makefile.depend +++ b/usr.sbin/faithd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/fdcontrol/Makefile.depend b/usr.sbin/fdcontrol/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/fdcontrol/Makefile.depend +++ b/usr.sbin/fdcontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/fdformat/Makefile.depend b/usr.sbin/fdformat/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/fdformat/Makefile.depend +++ b/usr.sbin/fdformat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/fdread/Makefile.depend b/usr.sbin/fdread/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/fdread/Makefile.depend +++ b/usr.sbin/fdread/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/fdwrite/Makefile.depend b/usr.sbin/fdwrite/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/fdwrite/Makefile.depend +++ b/usr.sbin/fdwrite/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/fifolog/fifolog_create/Makefile.depend b/usr.sbin/fifolog/fifolog_create/Makefile.depend index 26ca8b56e34f..8e9bccfd1293 100644 --- a/usr.sbin/fifolog/fifolog_create/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_create/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ usr.sbin/fifolog/lib \ diff --git a/usr.sbin/fifolog/fifolog_reader/Makefile.depend b/usr.sbin/fifolog/fifolog_reader/Makefile.depend index 28635880e338..e1918714b78d 100644 --- a/usr.sbin/fifolog/fifolog_reader/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_reader/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/libz \ diff --git a/usr.sbin/fifolog/fifolog_writer/Makefile.depend b/usr.sbin/fifolog/fifolog_writer/Makefile.depend index 28635880e338..e1918714b78d 100644 --- a/usr.sbin/fifolog/fifolog_writer/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_writer/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/libz \ diff --git a/usr.sbin/flowctl/Makefile.depend b/usr.sbin/flowctl/Makefile.depend index 2b972daf01f6..a2060055a242 100644 --- a/usr.sbin/flowctl/Makefile.depend +++ b/usr.sbin/flowctl/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend b/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend index 262510be803e..149691f61243 100644 --- a/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend +++ b/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/ftp-proxy/libevent \ diff --git a/usr.sbin/fwcontrol/Makefile.depend b/usr.sbin/fwcontrol/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/fwcontrol/Makefile.depend +++ b/usr.sbin/fwcontrol/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/getfmac/Makefile.depend b/usr.sbin/getfmac/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/getfmac/Makefile.depend +++ b/usr.sbin/getfmac/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/getpmac/Makefile.depend b/usr.sbin/getpmac/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/getpmac/Makefile.depend +++ b/usr.sbin/getpmac/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/gpioctl/Makefile.depend b/usr.sbin/gpioctl/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/gpioctl/Makefile.depend +++ b/usr.sbin/gpioctl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/gstat/Makefile.depend b/usr.sbin/gstat/Makefile.depend index 4c1d38fb0a90..35163f86750f 100644 --- a/usr.sbin/gstat/Makefile.depend +++ b/usr.sbin/gstat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libedit \ diff --git a/usr.sbin/i2c/Makefile.depend b/usr.sbin/i2c/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/i2c/Makefile.depend +++ b/usr.sbin/i2c/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ifmcstat/Makefile.depend b/usr.sbin/ifmcstat/Makefile.depend index d7113b4351cf..803dc63a94f7 100644 --- a/usr.sbin/ifmcstat/Makefile.depend +++ b/usr.sbin/ifmcstat/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/inetd/Makefile.depend b/usr.sbin/inetd/Makefile.depend index f76682596a62..9143faf6062d 100644 --- a/usr.sbin/inetd/Makefile.depend +++ b/usr.sbin/inetd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ lib/libutil \ diff --git a/usr.sbin/iostat/Makefile.depend b/usr.sbin/iostat/Makefile.depend index 7078381a77e6..7c9f840d2948 100644 --- a/usr.sbin/iostat/Makefile.depend +++ b/usr.sbin/iostat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ diff --git a/usr.sbin/ip6addrctl/Makefile.depend b/usr.sbin/ip6addrctl/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/ip6addrctl/Makefile.depend +++ b/usr.sbin/ip6addrctl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ipfwpcap/Makefile.depend b/usr.sbin/ipfwpcap/Makefile.depend index 33251c64b4c0..b42437a19d44 100644 --- a/usr.sbin/ipfwpcap/Makefile.depend +++ b/usr.sbin/ipfwpcap/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpcap \ diff --git a/usr.sbin/jail/Makefile.depend b/usr.sbin/jail/Makefile.depend index 9ac6f6869424..db8479a2a123 100644 --- a/usr.sbin/jail/Makefile.depend +++ b/usr.sbin/jail/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libjail \ lib/libkvm \ diff --git a/usr.sbin/jexec/Makefile.depend b/usr.sbin/jexec/Makefile.depend index beac2722e7de..427ef996336d 100644 --- a/usr.sbin/jexec/Makefile.depend +++ b/usr.sbin/jexec/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libjail \ lib/libutil \ diff --git a/usr.sbin/jls/Makefile.depend b/usr.sbin/jls/Makefile.depend index b323301e7ab8..6a22d19e6ba5 100644 --- a/usr.sbin/jls/Makefile.depend +++ b/usr.sbin/jls/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libjail \ diff --git a/usr.sbin/kbdcontrol/Makefile.depend b/usr.sbin/kbdcontrol/Makefile.depend index 49de3bc70fc0..cd4d236402c6 100644 --- a/usr.sbin/kbdcontrol/Makefile.depend +++ b/usr.sbin/kbdcontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ usr.bin/lex/lib \ diff --git a/usr.sbin/kbdmap/Makefile.depend b/usr.sbin/kbdmap/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/kbdmap/Makefile.depend +++ b/usr.sbin/kbdmap/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/kgmon/Makefile.depend b/usr.sbin/kgmon/Makefile.depend index d65cbb5d7110..b7d414c85aeb 100644 --- a/usr.sbin/kgmon/Makefile.depend +++ b/usr.sbin/kgmon/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/kldxref/Makefile.depend b/usr.sbin/kldxref/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/kldxref/Makefile.depend +++ b/usr.sbin/kldxref/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lastlogin/Makefile.depend b/usr.sbin/lastlogin/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/lastlogin/Makefile.depend +++ b/usr.sbin/lastlogin/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lmcconfig/Makefile.depend b/usr.sbin/lmcconfig/Makefile.depend index 0fadb2183fbe..f5603505d900 100644 --- a/usr.sbin/lmcconfig/Makefile.depend +++ b/usr.sbin/lmcconfig/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/lpr/chkprintcap/Makefile.depend b/usr.sbin/lpr/chkprintcap/Makefile.depend index 8f77f91c01d2..72675faee650 100644 --- a/usr.sbin/lpr/chkprintcap/Makefile.depend +++ b/usr.sbin/lpr/chkprintcap/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend +++ b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend +++ b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lpr/filters/Makefile.depend b/usr.sbin/lpr/filters/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/lpr/filters/Makefile.depend +++ b/usr.sbin/lpr/filters/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lpr/lpc/Makefile.depend b/usr.sbin/lpr/lpc/Makefile.depend index 6d57f0188bb6..9d5d53e5e417 100644 --- a/usr.sbin/lpr/lpc/Makefile.depend +++ b/usr.sbin/lpr/lpc/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.sbin/lpr/lpd/Makefile.depend b/usr.sbin/lpr/lpd/Makefile.depend index 0243d450e61b..9c027ea14c72 100644 --- a/usr.sbin/lpr/lpd/Makefile.depend +++ b/usr.sbin/lpr/lpd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lpq/Makefile.depend b/usr.sbin/lpr/lpq/Makefile.depend index 8f77f91c01d2..72675faee650 100644 --- a/usr.sbin/lpr/lpq/Makefile.depend +++ b/usr.sbin/lpr/lpq/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lpr/Makefile.depend b/usr.sbin/lpr/lpr/Makefile.depend index 8f77f91c01d2..72675faee650 100644 --- a/usr.sbin/lpr/lpr/Makefile.depend +++ b/usr.sbin/lpr/lpr/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lprm/Makefile.depend b/usr.sbin/lpr/lprm/Makefile.depend index 8f77f91c01d2..72675faee650 100644 --- a/usr.sbin/lpr/lprm/Makefile.depend +++ b/usr.sbin/lpr/lprm/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lptest/Makefile.depend b/usr.sbin/lpr/lptest/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.sbin/lpr/lptest/Makefile.depend +++ b/usr.sbin/lpr/lptest/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lpr/pac/Makefile.depend b/usr.sbin/lpr/pac/Makefile.depend index 8f77f91c01d2..72675faee650 100644 --- a/usr.sbin/lpr/pac/Makefile.depend +++ b/usr.sbin/lpr/pac/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lptcontrol/Makefile.depend b/usr.sbin/lptcontrol/Makefile.depend index 82222e2879c7..e9a1dda6ca51 100644 --- a/usr.sbin/lptcontrol/Makefile.depend +++ b/usr.sbin/lptcontrol/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mailstats/Makefile.depend b/usr.sbin/mailstats/Makefile.depend index 86a4151e9700..58c5c7f30c7f 100644 --- a/usr.sbin/mailstats/Makefile.depend +++ b/usr.sbin/mailstats/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libsmutil \ diff --git a/usr.sbin/mailwrapper/Makefile.depend b/usr.sbin/mailwrapper/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.sbin/mailwrapper/Makefile.depend +++ b/usr.sbin/mailwrapper/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/makefs/Makefile.depend b/usr.sbin/makefs/Makefile.depend index e549f5515219..8f76fa4c1fc9 100644 --- a/usr.sbin/makefs/Makefile.depend +++ b/usr.sbin/makefs/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetbsd \ lib/libsbuf \ diff --git a/usr.sbin/makemap/Makefile.depend b/usr.sbin/makemap/Makefile.depend index 3363ae1d7261..f0d84e2e7b2a 100644 --- a/usr.sbin/makemap/Makefile.depend +++ b/usr.sbin/makemap/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ diff --git a/usr.sbin/memcontrol/Makefile.depend b/usr.sbin/memcontrol/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/memcontrol/Makefile.depend +++ b/usr.sbin/memcontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mfiutil/Makefile.depend b/usr.sbin/mfiutil/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.sbin/mfiutil/Makefile.depend +++ b/usr.sbin/mfiutil/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/mixer/Makefile.depend b/usr.sbin/mixer/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/mixer/Makefile.depend +++ b/usr.sbin/mixer/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mld6query/Makefile.depend b/usr.sbin/mld6query/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/mld6query/Makefile.depend +++ b/usr.sbin/mld6query/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mlxcontrol/Makefile.depend b/usr.sbin/mlxcontrol/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/mlxcontrol/Makefile.depend +++ b/usr.sbin/mlxcontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mountd/Makefile.depend b/usr.sbin/mountd/Makefile.depend index bd7098e0b6ce..d9693fd64752 100644 --- a/usr.sbin/mountd/Makefile.depend +++ b/usr.sbin/mountd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/moused/Makefile.depend b/usr.sbin/moused/Makefile.depend index ccc35b8af14f..6e19c15e849b 100644 --- a/usr.sbin/moused/Makefile.depend +++ b/usr.sbin/moused/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/mptable/Makefile.depend b/usr.sbin/mptable/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/mptable/Makefile.depend +++ b/usr.sbin/mptable/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mptutil/Makefile.depend b/usr.sbin/mptutil/Makefile.depend index 0b2207fafdc4..c79bce5f2287 100644 --- a/usr.sbin/mptutil/Makefile.depend +++ b/usr.sbin/mptutil/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcam \ lib/libcompiler_rt \ lib/libsbuf \ diff --git a/usr.sbin/mtest/Makefile.depend b/usr.sbin/mtest/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/mtest/Makefile.depend +++ b/usr.sbin/mtest/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mtree/Makefile.depend b/usr.sbin/mtree/Makefile.depend index 5d619f8fac05..f3adefe05801 100644 --- a/usr.sbin/mtree/Makefile.depend +++ b/usr.sbin/mtree/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/ndiscvt/Makefile.depend b/usr.sbin/ndiscvt/Makefile.depend index 717e7b61a974..a4e44851d469 100644 --- a/usr.sbin/ndiscvt/Makefile.depend +++ b/usr.sbin/ndiscvt/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ usr.bin/lex/lib \ diff --git a/usr.sbin/ndp/Makefile.depend b/usr.sbin/ndp/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/ndp/Makefile.depend +++ b/usr.sbin/ndp/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/newsyslog/Makefile.depend b/usr.sbin/newsyslog/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/newsyslog/Makefile.depend +++ b/usr.sbin/newsyslog/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/nfscbd/Makefile.depend b/usr.sbin/nfscbd/Makefile.depend index 0de3a4ae3d33..eaaeea993366 100644 --- a/usr.sbin/nfscbd/Makefile.depend +++ b/usr.sbin/nfscbd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/nfsd/Makefile.depend b/usr.sbin/nfsd/Makefile.depend index 8800879854fe..1c61866765c9 100644 --- a/usr.sbin/nfsd/Makefile.depend +++ b/usr.sbin/nfsd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/nfsdumpstate/Makefile.depend b/usr.sbin/nfsdumpstate/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/nfsdumpstate/Makefile.depend +++ b/usr.sbin/nfsdumpstate/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/nfsrevoke/Makefile.depend b/usr.sbin/nfsrevoke/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/nfsrevoke/Makefile.depend +++ b/usr.sbin/nfsrevoke/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/nfsuserd/Makefile.depend b/usr.sbin/nfsuserd/Makefile.depend index 0de3a4ae3d33..eaaeea993366 100644 --- a/usr.sbin/nfsuserd/Makefile.depend +++ b/usr.sbin/nfsuserd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ngctl/Makefile.depend b/usr.sbin/ngctl/Makefile.depend index 272b5cc87938..37af2e2aa525 100644 --- a/usr.sbin/ngctl/Makefile.depend +++ b/usr.sbin/ngctl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/libnetgraph \ diff --git a/usr.sbin/nghook/Makefile.depend b/usr.sbin/nghook/Makefile.depend index 0fadb2183fbe..f5603505d900 100644 --- a/usr.sbin/nghook/Makefile.depend +++ b/usr.sbin/nghook/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/nologin/Makefile.depend b/usr.sbin/nologin/Makefile.depend index 6871eb59a0e8..0e905603c660 100644 --- a/usr.sbin/nologin/Makefile.depend +++ b/usr.sbin/nologin/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ include \ lib/${CSU_DIR} \ lib/libc \ diff --git a/usr.sbin/nscd/Makefile.depend b/usr.sbin/nscd/Makefile.depend index a4729648ced7..467cf7b91373 100644 --- a/usr.sbin/nscd/Makefile.depend +++ b/usr.sbin/nscd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ lib/libutil \ diff --git a/usr.sbin/ntp/sntp/Makefile.depend b/usr.sbin/ntp/sntp/Makefile.depend index 4433894e8af9..9ceac4ec3f26 100644 --- a/usr.sbin/ntp/sntp/Makefile.depend +++ b/usr.sbin/ntp/sntp/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ usr.sbin/ntp/libopts \ diff --git a/usr.sbin/pciconf/Makefile.depend b/usr.sbin/pciconf/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/pciconf/Makefile.depend +++ b/usr.sbin/pciconf/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/pmcannotate/Makefile.depend b/usr.sbin/pmcannotate/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/pmcannotate/Makefile.depend +++ b/usr.sbin/pmcannotate/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/pmccontrol/Makefile.depend b/usr.sbin/pmccontrol/Makefile.depend index 6a9aed0d32d9..efab25b02815 100644 --- a/usr.sbin/pmccontrol/Makefile.depend +++ b/usr.sbin/pmccontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpmc \ diff --git a/usr.sbin/pmcstat/Makefile.depend b/usr.sbin/pmcstat/Makefile.depend index bed53d87edb3..a12bc72ddbb5 100644 --- a/usr.sbin/pmcstat/Makefile.depend +++ b/usr.sbin/pmcstat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libkvm \ diff --git a/usr.sbin/portsnap/make_index/Makefile.depend b/usr.sbin/portsnap/make_index/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/portsnap/make_index/Makefile.depend +++ b/usr.sbin/portsnap/make_index/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/portsnap/phttpget/Makefile.depend b/usr.sbin/portsnap/phttpget/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/portsnap/phttpget/Makefile.depend +++ b/usr.sbin/portsnap/phttpget/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/powerd/Makefile.depend b/usr.sbin/powerd/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.sbin/powerd/Makefile.depend +++ b/usr.sbin/powerd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/pppctl/Makefile.depend b/usr.sbin/pppctl/Makefile.depend index 7df722139e91..33f37206d154 100644 --- a/usr.sbin/pppctl/Makefile.depend +++ b/usr.sbin/pppctl/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/libthr \ diff --git a/usr.sbin/praliases/Makefile.depend b/usr.sbin/praliases/Makefile.depend index 7c8c5bc0ced6..742a51b9c716 100644 --- a/usr.sbin/praliases/Makefile.depend +++ b/usr.sbin/praliases/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ diff --git a/usr.sbin/praudit/Makefile.depend b/usr.sbin/praudit/Makefile.depend index 86905b4e7296..cfab52535a52 100644 --- a/usr.sbin/praudit/Makefile.depend +++ b/usr.sbin/praudit/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/procctl/Makefile.depend b/usr.sbin/procctl/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/procctl/Makefile.depend +++ b/usr.sbin/procctl/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/pstat/Makefile.depend b/usr.sbin/pstat/Makefile.depend index 8ab5cd4582a1..d5037d299cbf 100644 --- a/usr.sbin/pstat/Makefile.depend +++ b/usr.sbin/pstat/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ lib/libutil \ diff --git a/usr.sbin/pw/Makefile.depend b/usr.sbin/pw/Makefile.depend index 1797aa74422f..8c9b44e8e0a4 100644 --- a/usr.sbin/pw/Makefile.depend +++ b/usr.sbin/pw/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ diff --git a/usr.sbin/pwd_mkdb/Makefile.depend b/usr.sbin/pwd_mkdb/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/pwd_mkdb/Makefile.depend +++ b/usr.sbin/pwd_mkdb/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/quot/Makefile.depend b/usr.sbin/quot/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/quot/Makefile.depend +++ b/usr.sbin/quot/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/quotaon/Makefile.depend b/usr.sbin/quotaon/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.sbin/quotaon/Makefile.depend +++ b/usr.sbin/quotaon/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/rarpd/Makefile.depend b/usr.sbin/rarpd/Makefile.depend index ee948eaa011e..e3af08532eec 100644 --- a/usr.sbin/rarpd/Makefile.depend +++ b/usr.sbin/rarpd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/repquota/Makefile.depend b/usr.sbin/repquota/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.sbin/repquota/Makefile.depend +++ b/usr.sbin/repquota/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/rip6query/Makefile.depend b/usr.sbin/rip6query/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/rip6query/Makefile.depend +++ b/usr.sbin/rip6query/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/rmt/Makefile.depend b/usr.sbin/rmt/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/rmt/Makefile.depend +++ b/usr.sbin/rmt/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/route6d/Makefile.depend b/usr.sbin/route6d/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/route6d/Makefile.depend +++ b/usr.sbin/route6d/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/rpc.lockd/Makefile.depend b/usr.sbin/rpc.lockd/Makefile.depend index 3c9d7a38f9ec..036f9836837c 100644 --- a/usr.sbin/rpc.lockd/Makefile.depend +++ b/usr.sbin/rpc.lockd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/usr.sbin/rpc.statd/Makefile.depend b/usr.sbin/rpc.statd/Makefile.depend index 74608330b620..57f69dadf00a 100644 --- a/usr.sbin/rpc.statd/Makefile.depend +++ b/usr.sbin/rpc.statd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/rpc.umntall/Makefile.depend b/usr.sbin/rpc.umntall/Makefile.depend index d074335f4466..5930524f9ce7 100644 --- a/usr.sbin/rpc.umntall/Makefile.depend +++ b/usr.sbin/rpc.umntall/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/rpc.yppasswdd/Makefile.depend b/usr.sbin/rpc.yppasswdd/Makefile.depend index d8b9fa8fcb51..a3e7a5eca9fa 100644 --- a/usr.sbin/rpc.yppasswdd/Makefile.depend +++ b/usr.sbin/rpc.yppasswdd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/librpcsvc \ diff --git a/usr.sbin/rpc.ypupdated/Makefile.depend b/usr.sbin/rpc.ypupdated/Makefile.depend index b88e71079efb..e39027bd7c0b 100644 --- a/usr.sbin/rpc.ypupdated/Makefile.depend +++ b/usr.sbin/rpc.ypupdated/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/rpc.ypxfrd/Makefile.depend b/usr.sbin/rpc.ypxfrd/Makefile.depend index 48f98922bdad..91c9284ebd47 100644 --- a/usr.sbin/rpc.ypxfrd/Makefile.depend +++ b/usr.sbin/rpc.ypxfrd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/rpcbind/Makefile.depend b/usr.sbin/rpcbind/Makefile.depend index 2503b486bf4e..924e5c4aae69 100644 --- a/usr.sbin/rpcbind/Makefile.depend +++ b/usr.sbin/rpcbind/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/libwrap \ diff --git a/usr.sbin/rrenumd/Makefile.depend b/usr.sbin/rrenumd/Makefile.depend index 368f2482f09d..4416d5f8ea67 100644 --- a/usr.sbin/rrenumd/Makefile.depend +++ b/usr.sbin/rrenumd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ lib/liby \ diff --git a/usr.sbin/rtadvctl/Makefile.depend b/usr.sbin/rtadvctl/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/rtadvctl/Makefile.depend +++ b/usr.sbin/rtadvctl/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/rtadvd/Makefile.depend b/usr.sbin/rtadvd/Makefile.depend index ee948eaa011e..e3af08532eec 100644 --- a/usr.sbin/rtadvd/Makefile.depend +++ b/usr.sbin/rtadvd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/rtprio/Makefile.depend b/usr.sbin/rtprio/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/rtprio/Makefile.depend +++ b/usr.sbin/rtprio/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/rtsold/Makefile.depend b/usr.sbin/rtsold/Makefile.depend index d7113b4351cf..803dc63a94f7 100644 --- a/usr.sbin/rtsold/Makefile.depend +++ b/usr.sbin/rtsold/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/rwhod/Makefile.depend b/usr.sbin/rwhod/Makefile.depend index 48e46367c59a..11fa4d730adc 100644 --- a/usr.sbin/rwhod/Makefile.depend +++ b/usr.sbin/rwhod/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/sa/Makefile.depend b/usr.sbin/sa/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/sa/Makefile.depend +++ b/usr.sbin/sa/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/services_mkdb/Makefile.depend b/usr.sbin/services_mkdb/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.sbin/services_mkdb/Makefile.depend +++ b/usr.sbin/services_mkdb/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/setfib/Makefile.depend b/usr.sbin/setfib/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/setfib/Makefile.depend +++ b/usr.sbin/setfib/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/setfmac/Makefile.depend b/usr.sbin/setfmac/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/setfmac/Makefile.depend +++ b/usr.sbin/setfmac/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/setpmac/Makefile.depend b/usr.sbin/setpmac/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/setpmac/Makefile.depend +++ b/usr.sbin/setpmac/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/sicontrol/Makefile.depend b/usr.sbin/sicontrol/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/sicontrol/Makefile.depend +++ b/usr.sbin/sicontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/smbmsg/Makefile.depend b/usr.sbin/smbmsg/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/smbmsg/Makefile.depend +++ b/usr.sbin/smbmsg/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/snapinfo/Makefile.depend b/usr.sbin/snapinfo/Makefile.depend index 374b5e7b5c94..7fb8fce4559a 100644 --- a/usr.sbin/snapinfo/Makefile.depend +++ b/usr.sbin/snapinfo/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/usr.sbin/spray/Makefile.depend b/usr.sbin/spray/Makefile.depend index 6514930150d7..3b0eba6af4e1 100644 --- a/usr.sbin/spray/Makefile.depend +++ b/usr.sbin/spray/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/syslogd/Makefile.depend b/usr.sbin/syslogd/Makefile.depend index ee948eaa011e..e3af08532eec 100644 --- a/usr.sbin/syslogd/Makefile.depend +++ b/usr.sbin/syslogd/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/tcpdchk/Makefile.depend b/usr.sbin/tcpdchk/Makefile.depend index 74a1dd9afe70..a02eba6f2277 100644 --- a/usr.sbin/tcpdchk/Makefile.depend +++ b/usr.sbin/tcpdchk/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ diff --git a/usr.sbin/tcpdmatch/Makefile.depend b/usr.sbin/tcpdmatch/Makefile.depend index 74a1dd9afe70..a02eba6f2277 100644 --- a/usr.sbin/tcpdmatch/Makefile.depend +++ b/usr.sbin/tcpdmatch/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ diff --git a/usr.sbin/tcpdrop/Makefile.depend b/usr.sbin/tcpdrop/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/tcpdrop/Makefile.depend +++ b/usr.sbin/tcpdrop/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/timed/timed/Makefile.depend b/usr.sbin/timed/timed/Makefile.depend index 87c803cdcc89..b298230158b8 100644 --- a/usr.sbin/timed/timed/Makefile.depend +++ b/usr.sbin/timed/timed/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/timed/timedc/Makefile.depend b/usr.sbin/timed/timedc/Makefile.depend index 48e46367c59a..11fa4d730adc 100644 --- a/usr.sbin/timed/timedc/Makefile.depend +++ b/usr.sbin/timed/timedc/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/traceroute/Makefile.depend b/usr.sbin/traceroute/Makefile.depend index a34f13856acd..8ef0d4e1c0bd 100644 --- a/usr.sbin/traceroute/Makefile.depend +++ b/usr.sbin/traceroute/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ diff --git a/usr.sbin/traceroute6/Makefile.depend b/usr.sbin/traceroute6/Makefile.depend index 25b01eb5a09b..46ae5afac68b 100644 --- a/usr.sbin/traceroute6/Makefile.depend +++ b/usr.sbin/traceroute6/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ diff --git a/usr.sbin/trpt/Makefile.depend b/usr.sbin/trpt/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/trpt/Makefile.depend +++ b/usr.sbin/trpt/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/tzsetup/Makefile.depend b/usr.sbin/tzsetup/Makefile.depend index 35a0b670a376..546cb43f4f04 100644 --- a/usr.sbin/tzsetup/Makefile.depend +++ b/usr.sbin/tzsetup/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libdialog \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncursesw \ diff --git a/usr.sbin/uathload/Makefile.depend b/usr.sbin/uathload/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/uathload/Makefile.depend +++ b/usr.sbin/uathload/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ugidfw/Makefile.depend b/usr.sbin/ugidfw/Makefile.depend index d0b08acfebf4..0c062e1f1df6 100644 --- a/usr.sbin/ugidfw/Makefile.depend +++ b/usr.sbin/ugidfw/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libugidfw \ diff --git a/usr.sbin/uhsoctl/Makefile.depend b/usr.sbin/uhsoctl/Makefile.depend index ee948eaa011e..e3af08532eec 100644 --- a/usr.sbin/uhsoctl/Makefile.depend +++ b/usr.sbin/uhsoctl/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/usbconfig/Makefile.depend b/usr.sbin/usbconfig/Makefile.depend index e7ad4fafade0..fad2a1d2fe7b 100644 --- a/usr.sbin/usbconfig/Makefile.depend +++ b/usr.sbin/usbconfig/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ lib/libusb \ diff --git a/usr.sbin/usbdump/Makefile.depend b/usr.sbin/usbdump/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/usbdump/Makefile.depend +++ b/usr.sbin/usbdump/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/utx/Makefile.depend b/usr.sbin/utx/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/utx/Makefile.depend +++ b/usr.sbin/utx/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/vidcontrol/Makefile.depend b/usr.sbin/vidcontrol/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/vidcontrol/Makefile.depend +++ b/usr.sbin/vidcontrol/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/vipw/Makefile.depend b/usr.sbin/vipw/Makefile.depend index afbe02588041..40b445f04779 100644 --- a/usr.sbin/vipw/Makefile.depend +++ b/usr.sbin/vipw/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/wake/Makefile.depend b/usr.sbin/wake/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/wake/Makefile.depend +++ b/usr.sbin/wake/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/watch/Makefile.depend b/usr.sbin/watch/Makefile.depend index dd43fad9b357..233a7c6cd0b8 100644 --- a/usr.sbin/watch/Makefile.depend +++ b/usr.sbin/watch/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.sbin/watchdogd/Makefile.depend b/usr.sbin/watchdogd/Makefile.depend index ccc35b8af14f..6e19c15e849b 100644 --- a/usr.sbin/watchdogd/Makefile.depend +++ b/usr.sbin/watchdogd/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/wlandebug/Makefile.depend b/usr.sbin/wlandebug/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/wlandebug/Makefile.depend +++ b/usr.sbin/wlandebug/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/wpa/hostapd_cli/Makefile.depend b/usr.sbin/wpa/hostapd_cli/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/wpa/hostapd_cli/Makefile.depend +++ b/usr.sbin/wpa/hostapd_cli/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/wpa/ndis_events/Makefile.depend b/usr.sbin/wpa/ndis_events/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/wpa/ndis_events/Makefile.depend +++ b/usr.sbin/wpa/ndis_events/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/wpa/wpa_cli/Makefile.depend b/usr.sbin/wpa/wpa_cli/Makefile.depend index 0ca3031c40a5..6033e4a5149c 100644 --- a/usr.sbin/wpa/wpa_cli/Makefile.depend +++ b/usr.sbin/wpa/wpa_cli/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.sbin/wpa/wpa_passphrase/Makefile.depend b/usr.sbin/wpa/wpa_passphrase/Makefile.depend index 26cf1959f6fe..5269280d143c 100644 --- a/usr.sbin/wpa/wpa_passphrase/Makefile.depend +++ b/usr.sbin/wpa/wpa_passphrase/Makefile.depend @@ -3,12 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/yp_mkdb/Makefile.depend b/usr.sbin/yp_mkdb/Makefile.depend index d074335f4466..5930524f9ce7 100644 --- a/usr.sbin/yp_mkdb/Makefile.depend +++ b/usr.sbin/yp_mkdb/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ypbind/Makefile.depend b/usr.sbin/ypbind/Makefile.depend index 8800879854fe..1c61866765c9 100644 --- a/usr.sbin/ypbind/Makefile.depend +++ b/usr.sbin/ypbind/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/yppoll/Makefile.depend b/usr.sbin/yppoll/Makefile.depend index d074335f4466..5930524f9ce7 100644 --- a/usr.sbin/yppoll/Makefile.depend +++ b/usr.sbin/yppoll/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/yppush/Makefile.depend b/usr.sbin/yppush/Makefile.depend index a13e0bc329c8..52a8367eeebd 100644 --- a/usr.sbin/yppush/Makefile.depend +++ b/usr.sbin/yppush/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ @@ -10,6 +11,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ypserv/Makefile.depend b/usr.sbin/ypserv/Makefile.depend index 9748bb8e6261..2d2fd8adc856 100644 --- a/usr.sbin/ypserv/Makefile.depend +++ b/usr.sbin/ypserv/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ diff --git a/usr.sbin/ypset/Makefile.depend b/usr.sbin/ypset/Makefile.depend index 8800879854fe..1c61866765c9 100644 --- a/usr.sbin/ypset/Makefile.depend +++ b/usr.sbin/ypset/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/zic/zdump/Makefile.depend b/usr.sbin/zic/zdump/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/zic/zdump/Makefile.depend +++ b/usr.sbin/zic/zdump/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/zic/zic/Makefile.depend b/usr.sbin/zic/zic/Makefile.depend index 65ce5679ccda..6caf55f2706e 100644 --- a/usr.sbin/zic/zic/Makefile.depend +++ b/usr.sbin/zic/zic/Makefile.depend @@ -3,11 +3,13 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc_nonshared \ lib/libcompiler_rt \ From 9a08faa5bf0e76e36b4fe6cc67232cdd5a07d3e7 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 10 May 2014 21:53:07 +0000 Subject: [PATCH 146/228] Updated depends --- usr.bin/clang/clang/Makefile.depend | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/usr.bin/clang/clang/Makefile.depend b/usr.bin/clang/clang/Makefile.depend index 6b3c19a7a294..947a3e94601d 100644 --- a/usr.bin/clang/clang/Makefile.depend +++ b/usr.bin/clang/clang/Makefile.depend @@ -55,12 +55,20 @@ DIRDEPS = \ lib/clang/libllvmmipsinstprinter \ lib/clang/libllvmobjcarcopts \ lib/clang/libllvmobject \ + lib/clang/libllvmoption \ + lib/clang/libllvmpowerpcasmparser \ lib/clang/libllvmpowerpccodegen \ lib/clang/libllvmpowerpcdesc \ lib/clang/libllvmpowerpcinfo \ lib/clang/libllvmpowerpcinstprinter \ lib/clang/libllvmscalaropts \ lib/clang/libllvmselectiondag \ + lib/clang/libllvmsparcasmparser \ + lib/clang/libllvmsparccodegen \ + lib/clang/libllvmsparcdesc \ + lib/clang/libllvmsparcdisassembler \ + lib/clang/libllvmsparcinfo \ + lib/clang/libllvmsparcinstprinter \ lib/clang/libllvmsupport \ lib/clang/libllvmtarget \ lib/clang/libllvmtransformutils \ From f7fb4188cea44b6ad059a202396671aee5cbfd22 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 14 May 2014 04:02:59 +0000 Subject: [PATCH 147/228] New deps --- lib/libc_nonshared/Makefile.depend | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/libc_nonshared/Makefile.depend diff --git a/lib/libc_nonshared/Makefile.depend b/lib/libc_nonshared/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libc_nonshared/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif From fae50821ae22099d0406090228bc4c5b6af693ad Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:09:51 +0000 Subject: [PATCH 148/228] Updated dependencies --- bin/cat/Makefile.depend | 1 - bin/chflags/Makefile.depend | 1 - bin/chio/Makefile.depend | 1 - bin/chmod/Makefile.depend | 1 - bin/cp/Makefile.depend | 1 - bin/csh/Makefile.depend | 1 - bin/date/Makefile.depend | 1 - bin/dd/Makefile.depend | 1 - bin/df/Makefile.depend | 1 - bin/domainname/Makefile.depend | 1 - bin/echo/Makefile.depend | 1 - bin/ed/Makefile.depend | 1 + bin/expr/Makefile.depend | 1 - bin/getfacl/Makefile.depend | 1 - bin/hostname/Makefile.depend | 1 - bin/kenv/Makefile.depend | 1 - bin/kill/Makefile.depend | 1 - bin/ln/Makefile.depend | 1 - bin/ls/Makefile.depend | 1 - bin/mkdir/Makefile.depend | 1 - bin/mv/Makefile.depend | 1 - bin/pax/Makefile.depend | 1 - bin/pkill/Makefile.depend | 1 - bin/ps/Makefile.depend | 1 - bin/pwait/Makefile.depend | 1 - bin/pwd/Makefile.depend | 1 - bin/rcp/Makefile.depend | 1 - bin/realpath/Makefile.depend | 1 - bin/rm/Makefile.depend | 1 - bin/rmail/Makefile.depend | 1 - bin/rmdir/Makefile.depend | 1 - bin/setfacl/Makefile.depend | 1 - bin/sh/Makefile.depend | 1 - bin/sleep/Makefile.depend | 1 - bin/stty/Makefile.depend | 1 - bin/sync/Makefile.depend | 1 - bin/test/Makefile.depend | 1 - bin/uuidgen/Makefile.depend | 1 - cddl/lib/libavl/Makefile.depend | 2 +- cddl/lib/libctf/Makefile.depend | 2 +- cddl/lib/libdtrace/Makefile.depend | 2 +- cddl/lib/libnvpair/Makefile.depend | 2 +- cddl/lib/libumem/Makefile.depend | 2 +- cddl/lib/libuutil/Makefile.depend | 2 +- cddl/lib/libzfs/Makefile.depend | 2 +- cddl/lib/libzfs_core/Makefile.depend | 2 +- cddl/lib/libzpool/Makefile.depend | 2 +- cddl/sbin/zfs/Makefile.depend | 1 - cddl/sbin/zpool/Makefile.depend | 1 - cddl/usr.bin/sgsmsg/Makefile.depend | 1 - cddl/usr.bin/zinject/Makefile.depend | 1 - cddl/usr.bin/zstreamdump/Makefile.depend | 1 - cddl/usr.bin/ztest/Makefile.depend | 1 - cddl/usr.sbin/lockstat/Makefile.depend | 1 - cddl/usr.sbin/zdb/Makefile.depend | 1 - cddl/usr.sbin/zhack/Makefile.depend | 1 - games/bcd/Makefile.depend | 1 - games/caesar/Makefile.depend | 1 - games/factor/Makefile.depend | 1 + games/fortune/fortune/Makefile.depend | 1 - games/fortune/strfile/Makefile.depend | 1 - games/fortune/unstr/Makefile.depend | 1 - games/grdc/Makefile.depend | 1 - games/morse/Makefile.depend | 1 - games/number/Makefile.depend | 1 - games/pom/Makefile.depend | 1 - games/ppt/Makefile.depend | 1 - games/primes/Makefile.depend | 1 - games/random/Makefile.depend | 1 - gnu/lib/libdialog/Makefile.depend | 2 +- gnu/lib/libgcc/Makefile.depend | 2 +- gnu/lib/libgomp/Makefile.depend | 2 +- gnu/lib/libreadline/readline/Makefile.depend | 2 +- gnu/lib/libregex/Makefile.depend | 2 +- gnu/lib/libstdc++/Makefile.depend | 2 +- gnu/lib/libsupc++/Makefile.depend | 2 +- .../binutils/addr2line/Makefile.depend | 1 - gnu/usr.bin/binutils/nm/Makefile.depend | 1 - gnu/usr.bin/binutils/objcopy/Makefile.depend | 1 - gnu/usr.bin/binutils/objdump/Makefile.depend | 1 - gnu/usr.bin/binutils/readelf/Makefile.depend | 1 - gnu/usr.bin/binutils/size/Makefile.depend | 1 - gnu/usr.bin/binutils/strings/Makefile.depend | 1 - gnu/usr.bin/binutils/strip/Makefile.depend | 1 - gnu/usr.bin/dialog/Makefile.depend | 1 - gnu/usr.bin/diff3/Makefile.depend | 1 - gnu/usr.bin/gdb/gdb/Makefile.depend | 1 + gnu/usr.bin/gdb/gdbserver/Makefile.depend | 1 - gnu/usr.bin/gdb/gdbtui/Makefile.depend | 1 + gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 | 1 + .../groff/src/devices/grodvi/Makefile.depend | 1 - .../groff/src/devices/grohtml/Makefile.depend | 1 - .../groff/src/devices/grolbp/Makefile.depend | 1 - .../groff/src/devices/grolj4/Makefile.depend | 1 - .../groff/src/devices/grops/Makefile.depend | 1 - .../groff/src/devices/grotty/Makefile.depend | 1 - .../groff/src/preproc/eqn/Makefile.depend | 1 - .../groff/src/preproc/grn/Makefile.depend | 1 - .../groff/src/preproc/html/Makefile.depend | 1 - .../groff/src/preproc/pic/Makefile.depend | 1 - .../groff/src/preproc/refer/Makefile.depend | 1 - .../groff/src/preproc/soelim/Makefile.depend | 1 - .../groff/src/preproc/tbl/Makefile.depend | 1 - .../groff/src/roff/groff/Makefile.depend | 1 - .../groff/src/roff/troff/Makefile.depend | 1 - .../groff/src/utils/addftinfo/Makefile.depend | 1 - .../groff/src/utils/hpftodit/Makefile.depend | 1 - .../groff/src/utils/indxbib/Makefile.depend | 1 - .../groff/src/utils/lkbib/Makefile.depend | 1 - .../groff/src/utils/lookbib/Makefile.depend | 1 - .../groff/src/utils/pfbtops/Makefile.depend | 1 - .../groff/src/utils/tfmtodit/Makefile.depend | 1 - gnu/usr.bin/rcs/ci/Makefile.depend | 1 - gnu/usr.bin/rcs/co/Makefile.depend | 1 - gnu/usr.bin/rcs/ident/Makefile.depend | 1 - gnu/usr.bin/rcs/merge/Makefile.depend | 1 - gnu/usr.bin/rcs/rcs/Makefile.depend | 1 - gnu/usr.bin/rcs/rcsclean/Makefile.depend | 1 - gnu/usr.bin/rcs/rcsdiff/Makefile.depend | 1 - gnu/usr.bin/rcs/rcsmerge/Makefile.depend | 1 - gnu/usr.bin/rcs/rlog/Makefile.depend | 1 - gnu/usr.bin/sdiff/Makefile.depend | 1 - gnu/usr.bin/texinfo/info/Makefile.depend | 1 - gnu/usr.bin/texinfo/infokey/Makefile.depend | 1 - .../texinfo/install-info/Makefile.depend | 1 - gnu/usr.bin/texinfo/makeinfo/Makefile.depend | 1 - gnu/usr.bin/texinfo/texindex/Makefile.depend | 1 - include/Makefile.depend | 1 + kerberos5/lib/libasn1/Makefile.depend | 2 +- kerberos5/lib/libgssapi_krb5/Makefile.depend | 2 + kerberos5/lib/libgssapi_ntlm/Makefile.depend | 2 + .../lib/libgssapi_spnego/Makefile.depend | 2 + kerberos5/lib/libhdb/Makefile.depend | 2 + kerberos5/lib/libheimbase/Makefile.depend | 2 +- kerberos5/lib/libheimipcc/Makefile.depend | 2 +- kerberos5/lib/libheimipcs/Makefile.depend | 2 + kerberos5/lib/libheimntlm/Makefile.depend | 2 + kerberos5/lib/libheimsqlite/Makefile.depend | 2 +- kerberos5/lib/libhx509/Makefile.depend | 2 + kerberos5/lib/libkadm5clnt/Makefile.depend | 2 + kerberos5/lib/libkadm5srv/Makefile.depend | 2 + kerberos5/lib/libkafs5/Makefile.depend | 2 + kerberos5/lib/libkdc/Makefile.depend | 2 + kerberos5/lib/libkrb5/Makefile.depend | 2 + kerberos5/lib/libroken/Makefile.depend | 2 +- kerberos5/lib/libwind/Makefile.depend | 2 +- .../libexec/digest-service/Makefile.depend | 1 + kerberos5/libexec/hprop/Makefile.depend | 1 + kerberos5/libexec/hpropd/Makefile.depend | 1 + .../libexec/ipropd-master/Makefile.depend | 1 + .../libexec/ipropd-slave/Makefile.depend | 1 + kerberos5/libexec/kadmind/Makefile.depend | 1 + kerberos5/libexec/kcm/Makefile.depend | 1 + kerberos5/libexec/kdc/Makefile.depend | 1 + kerberos5/libexec/kdigest/Makefile.depend | 1 + kerberos5/libexec/kfd/Makefile.depend | 1 + .../libexec/kimpersonate/Makefile.depend | 1 + kerberos5/libexec/kpasswdd/Makefile.depend | 1 + kerberos5/tools/asn1_compile/Makefile.depend | 1 - kerberos5/tools/make-roken/Makefile.depend | 1 - kerberos5/tools/slc/Makefile.depend | 1 - kerberos5/usr.bin/hxtool/Makefile.depend | 1 + kerberos5/usr.bin/kadmin/Makefile.depend | 1 + kerberos5/usr.bin/kcc/Makefile.depend | 1 + kerberos5/usr.bin/kdestroy/Makefile.depend | 1 + kerberos5/usr.bin/kf/Makefile.depend | 1 + kerberos5/usr.bin/kgetcred/Makefile.depend | 1 + kerberos5/usr.bin/kinit/Makefile.depend | 1 + kerberos5/usr.bin/kpasswd/Makefile.depend | 1 + kerberos5/usr.bin/ksu/Makefile.depend | 1 + kerberos5/usr.bin/string2key/Makefile.depend | 1 + .../usr.bin/verify_krb5_conf/Makefile.depend | 1 + kerberos5/usr.sbin/iprop-log/Makefile.depend | 1 + kerberos5/usr.sbin/kstash/Makefile.depend | 1 + kerberos5/usr.sbin/ktutil/Makefile.depend | 1 + lib/atf/libatf-c++/Makefile.depend | 10 +---- lib/atf/libatf-c/Makefile.depend | 2 +- lib/clang/libclanganalysis/Makefile.depend | 15 ++++++- lib/clang/libclangarcmigrate/Makefile.depend | 11 +++-- lib/clang/libclangast/Makefile.depend | 43 +++++++++---------- lib/clang/libclangbasic/Makefile.depend | 4 +- lib/clang/libclangcodegen/Makefile.depend | 31 ++++++++++++- lib/clang/libclangdriver/Makefile.depend | 18 ++++---- lib/clang/libclangedit/Makefile.depend | 3 +- lib/clang/libclangfrontend/Makefile.depend | 26 +++++------ .../libclangfrontendtool/Makefile.depend | 4 +- lib/clang/libclanglex/Makefile.depend | 4 +- lib/clang/libclangparse/Makefile.depend | 9 ++-- lib/clang/libclangrewritecore/Makefile.depend | 3 +- .../libclangrewritefrontend/Makefile.depend | 3 +- lib/clang/libclangsema/Makefile.depend | 13 +++++- .../libclangserialization/Makefile.depend | 7 ++- .../Makefile.depend | 13 +++++- .../Makefile.depend | 9 +--- .../Makefile.depend | 3 +- lib/clang/libllvmanalysis/Makefile.depend | 3 +- lib/clang/libllvmarmasmparser/Makefile.depend | 3 +- lib/clang/libllvmarmcodegen/Makefile.depend | 3 +- lib/clang/libllvmarmdesc/Makefile.depend | 9 +++- .../libllvmarmdisassembler/Makefile.depend | 3 +- lib/clang/libllvmarminfo/Makefile.depend | 3 +- .../libllvmarminstprinter/Makefile.depend | 3 +- lib/clang/libllvmasmparser/Makefile.depend | 4 +- lib/clang/libllvmasmprinter/Makefile.depend | 3 +- lib/clang/libllvmbitreader/Makefile.depend | 3 +- lib/clang/libllvmbitwriter/Makefile.depend | 4 +- lib/clang/libllvmcodegen/Makefile.depend | 3 +- lib/clang/libllvmcore/Makefile.depend | 3 +- lib/clang/libllvmdebuginfo/Makefile.depend | 4 +- .../libllvmexecutionengine/Makefile.depend | 3 +- lib/clang/libllvminstcombine/Makefile.depend | 3 +- .../libllvminstrumentation/Makefile.depend | 7 ++- lib/clang/libllvminterpreter/Makefile.depend | 3 +- lib/clang/libllvmipa/Makefile.depend | 3 +- lib/clang/libllvmipo/Makefile.depend | 3 +- lib/clang/libllvmirreader/Makefile.depend | 4 +- lib/clang/libllvmjit/Makefile.depend | 3 +- lib/clang/libllvmlinker/Makefile.depend | 4 +- lib/clang/libllvmmc/Makefile.depend | 3 +- .../libllvmmcdisassembler/Makefile.depend | 4 +- lib/clang/libllvmmcjit/Makefile.depend | 3 +- lib/clang/libllvmmcparser/Makefile.depend | 4 +- .../libllvmmipsasmparser/Makefile.depend | 3 +- lib/clang/libllvmmipscodegen/Makefile.depend | 9 +++- lib/clang/libllvmmipsdesc/Makefile.depend | 11 +---- .../libllvmmipsdisassembler/Makefile.depend | 3 +- lib/clang/libllvmmipsinfo/Makefile.depend | 3 +- .../libllvmmipsinstprinter/Makefile.depend | 3 +- lib/clang/libllvmobjcarcopts/Makefile.depend | 3 +- lib/clang/libllvmobject/Makefile.depend | 4 +- .../libllvmpowerpccodegen/Makefile.depend | 17 +++++++- lib/clang/libllvmpowerpcdesc/Makefile.depend | 9 +++- lib/clang/libllvmpowerpcinfo/Makefile.depend | 3 +- .../libllvmpowerpcinstprinter/Makefile.depend | 3 +- lib/clang/libllvmruntimedyld/Makefile.depend | 4 +- lib/clang/libllvmscalaropts/Makefile.depend | 9 +++- lib/clang/libllvmselectiondag/Makefile.depend | 3 +- lib/clang/libllvmsupport/Makefile.depend | 3 +- lib/clang/libllvmtablegen/Makefile.depend | 3 +- lib/clang/libllvmtarget/Makefile.depend | 4 +- .../libllvmtransformutils/Makefile.depend | 5 ++- lib/clang/libllvmvectorize/Makefile.depend | 5 +-- lib/clang/libllvmx86asmparser/Makefile.depend | 3 +- lib/clang/libllvmx86codegen/Makefile.depend | 3 +- lib/clang/libllvmx86desc/Makefile.depend | 15 ++++++- .../libllvmx86disassembler/Makefile.depend | 3 +- lib/clang/libllvmx86info/Makefile.depend | 3 +- .../libllvmx86instprinter/Makefile.depend | 3 +- lib/clang/libllvmx86utils/Makefile.depend | 4 +- lib/libalias/libalias/Makefile.depend | 2 +- lib/libalias/modules/cuseeme/Makefile.depend | 1 - lib/libalias/modules/dummy/Makefile.depend | 1 - lib/libalias/modules/ftp/Makefile.depend | 1 - lib/libalias/modules/irc/Makefile.depend | 1 - lib/libalias/modules/nbt/Makefile.depend | 1 - lib/libalias/modules/pptp/Makefile.depend | 1 - lib/libalias/modules/skinny/Makefile.depend | 1 - lib/libalias/modules/smedia/Makefile.depend | 1 - lib/libarchive/Makefile.depend | 2 + lib/libauditd/Makefile.depend | 2 +- lib/libbegemot/Makefile.depend | 2 +- lib/libblocksruntime/Makefile.depend | 2 +- lib/libbluetooth/Makefile.depend | 2 +- lib/libbsm/Makefile.depend | 2 +- lib/libbsnmp/libbsnmp/Makefile.depend | 2 + lib/libbz2/Makefile.depend | 2 +- lib/libc++/Makefile.depend | 1 - lib/libcalendar/Makefile.depend | 2 +- lib/libcam/Makefile.depend | 2 +- lib/libcapsicum/Makefile.depend | 2 +- lib/libcom_err/Makefile.depend | 2 +- lib/libcrypt/Makefile.depend | 2 +- lib/libcxxrt/Makefile.depend | 2 +- lib/libdevinfo/Makefile.depend | 2 +- lib/libdevstat/Makefile.depend | 2 +- lib/libdwarf/Makefile.depend | 2 +- lib/libedit/Makefile.depend | 2 +- lib/libelf/Makefile.depend | 2 +- lib/libexecinfo/Makefile.depend | 2 +- lib/libexpat/Makefile.depend | 2 +- lib/libfetch/Makefile.depend | 2 + lib/libgeom/Makefile.depend | 2 +- lib/libgpib/Makefile.depend | 2 +- lib/libgssapi/Makefile.depend | 2 +- lib/libiconv_modules/BIG5/Makefile.depend | 6 +++ lib/libiconv_modules/DECHanyu/Makefile.depend | 6 +++ lib/libiconv_modules/EUC/Makefile.depend | 6 +++ lib/libiconv_modules/EUCTW/Makefile.depend | 6 +++ lib/libiconv_modules/GBK2K/Makefile.depend | 6 +++ lib/libiconv_modules/HZ/Makefile.depend | 6 +++ lib/libiconv_modules/ISO2022/Makefile.depend | 6 +++ lib/libiconv_modules/JOHAB/Makefile.depend | 6 +++ lib/libiconv_modules/MSKanji/Makefile.depend | 6 +++ lib/libiconv_modules/UES/Makefile.depend | 6 +++ lib/libiconv_modules/UTF1632/Makefile.depend | 6 +++ lib/libiconv_modules/UTF7/Makefile.depend | 6 +++ lib/libiconv_modules/UTF8/Makefile.depend | 6 +++ lib/libiconv_modules/VIQR/Makefile.depend | 6 +++ lib/libiconv_modules/ZW/Makefile.depend | 6 +++ .../iconv_none/Makefile.depend | 6 +++ .../iconv_std/Makefile.depend | 6 +++ .../mapper_646/Makefile.depend | 6 +++ .../mapper_none/Makefile.depend | 6 +++ .../mapper_parallel/Makefile.depend | 6 +++ .../mapper_serial/Makefile.depend | 6 +++ .../mapper_std/Makefile.depend | 6 +++ .../mapper_zone/Makefile.depend | 6 +++ lib/libipsec/Makefile.depend | 2 +- lib/libjail/Makefile.depend | 2 +- lib/libkiconv/Makefile.depend | 2 +- lib/libkvm/Makefile.depend | 2 +- lib/libldns/Makefile.depend | 2 + lib/liblzma/Makefile.depend | 2 +- lib/libmagic/Makefile.depend | 2 +- lib/libmd/Makefile.depend | 2 +- lib/libmemstat/Makefile.depend | 2 +- lib/libmilter/Makefile.depend | 2 +- lib/libmp/Makefile.depend | 2 + lib/libnetgraph/Makefile.depend | 2 +- lib/libngatm/Makefile.depend | 2 +- lib/libnv/Makefile.depend | 2 +- lib/libopie/Makefile.depend | 2 +- lib/libpam/libpam/Makefile.depend | 2 +- lib/libpam/modules/pam_chroot/Makefile.depend | 2 +- lib/libpam/modules/pam_deny/Makefile.depend | 2 +- lib/libpam/modules/pam_echo/Makefile.depend | 2 +- lib/libpam/modules/pam_exec/Makefile.depend | 2 +- .../modules/pam_ftpusers/Makefile.depend | 2 +- lib/libpam/modules/pam_group/Makefile.depend | 2 +- lib/libpam/modules/pam_guest/Makefile.depend | 2 +- lib/libpam/modules/pam_krb5/Makefile.depend | 2 + lib/libpam/modules/pam_ksu/Makefile.depend | 2 + .../modules/pam_lastlog/Makefile.depend | 2 +- .../modules/pam_login_access/Makefile.depend | 2 +- .../modules/pam_nologin/Makefile.depend | 2 +- lib/libpam/modules/pam_opie/Makefile.depend | 2 +- .../modules/pam_opieaccess/Makefile.depend | 2 +- .../modules/pam_passwdqc/Makefile.depend | 2 +- lib/libpam/modules/pam_permit/Makefile.depend | 2 +- lib/libpam/modules/pam_radius/Makefile.depend | 2 + lib/libpam/modules/pam_rhosts/Makefile.depend | 2 +- lib/libpam/modules/pam_rootok/Makefile.depend | 2 +- .../modules/pam_securetty/Makefile.depend | 2 +- lib/libpam/modules/pam_self/Makefile.depend | 2 +- lib/libpam/modules/pam_ssh/Makefile.depend | 2 + .../modules/pam_tacplus/Makefile.depend | 2 +- lib/libpam/modules/pam_unix/Makefile.depend | 2 +- lib/libpcap/Makefile.depend | 2 +- lib/libpmc/Makefile.depend | 2 +- lib/libproc/Makefile.depend | 2 +- lib/libprocstat/Makefile.depend | 2 +- lib/libprocstat/zfs/Makefile.depend | 1 + lib/libradius/Makefile.depend | 2 + lib/librpcsec_gss/Makefile.depend | 2 +- lib/librpcsvc/Makefile.depend | 2 +- lib/librt/Makefile.depend | 2 +- lib/librtld_db/Makefile.depend | 2 +- lib/libsbuf/Makefile.depend | 2 +- lib/libsdp/Makefile.depend | 2 +- lib/libsmb/Makefile.depend | 2 +- lib/libstand/Makefile.depend | 1 + lib/libstdbuf/Makefile.depend | 2 +- lib/libstdthreads/Makefile.depend | 2 +- lib/libtacplus/Makefile.depend | 2 +- lib/libthr/Makefile.depend | 2 +- lib/libthread_db/Makefile.depend | 2 +- lib/libufs/Makefile.depend | 2 +- lib/libugidfw/Makefile.depend | 2 +- lib/libulog/Makefile.depend | 2 +- lib/libunbound/Makefile.depend | 2 + lib/libusb/Makefile.depend | 2 +- lib/libusbhid/Makefile.depend | 2 +- lib/libutil/Makefile.depend | 2 +- lib/libvgl/Makefile.depend | 2 +- lib/libvmmapi/Makefile.depend | 2 +- lib/libwrap/Makefile.depend | 2 +- lib/libypclnt/Makefile.depend | 2 +- lib/libz/Makefile.depend | 2 +- lib/msun/Makefile.depend | 2 +- lib/ncurses/form/Makefile.depend | 2 +- lib/ncurses/formw/Makefile.depend | 2 +- lib/ncurses/menu/Makefile.depend | 2 +- lib/ncurses/menuw/Makefile.depend | 2 +- lib/ncurses/ncurses/Makefile.depend | 2 +- lib/ncurses/ncursesw/Makefile.depend | 2 +- lib/ncurses/panel/Makefile.depend | 2 +- lib/ncurses/panelw/Makefile.depend | 2 +- libexec/atf/atf-check/Makefile.depend | 5 ++- libexec/atrun/Makefile.depend | 1 - libexec/bootpd/bootpgw/Makefile.depend | 1 - libexec/bootpd/tools/bootpef/Makefile.depend | 1 - .../bootpd/tools/bootptest/Makefile.depend | 1 - libexec/comsat/Makefile.depend | 1 - libexec/fingerd/Makefile.depend | 1 - libexec/ftpd/Makefile.depend | 1 - libexec/getty/Makefile.depend | 1 - libexec/mail.local/Makefile.depend | 1 - libexec/mknetid/Makefile.depend | 1 - libexec/pppoed/Makefile.depend | 1 - libexec/rbootd/Makefile.depend | 1 - libexec/revnetgroup/Makefile.depend | 1 - libexec/rlogind/Makefile.depend | 1 - libexec/rpc.rquotad/Makefile.depend | 1 - libexec/rpc.rstatd/Makefile.depend | 1 - libexec/rpc.rusersd/Makefile.depend | 1 - libexec/rpc.rwalld/Makefile.depend | 1 - libexec/rpc.sprayd/Makefile.depend | 1 - libexec/rshd/Makefile.depend | 1 - libexec/smrsh/Makefile.depend | 1 - libexec/talkd/Makefile.depend | 1 - libexec/tcpd/Makefile.depend | 1 - libexec/telnetd/Makefile.depend | 1 + libexec/tftp-proxy/Makefile.depend | 1 - libexec/tftpd/Makefile.depend | 1 - libexec/ulog-helper/Makefile.depend | 1 - libexec/ypxfr/Makefile.depend | 1 - sbin/adjkerntz/Makefile.depend | 1 - sbin/atm/atmconfig/Makefile.depend | 1 + sbin/badsect/Makefile.depend | 1 - sbin/bsdlabel/Makefile.depend | 1 - sbin/camcontrol/Makefile.depend | 1 - sbin/ccdconfig/Makefile.depend | 1 - sbin/clri/Makefile.depend | 1 - sbin/comcontrol/Makefile.depend | 1 - sbin/conscontrol/Makefile.depend | 1 - sbin/ddb/Makefile.depend | 1 - sbin/devd/Makefile.depend | 4 +- sbin/devfs/Makefile.depend | 1 - sbin/dhclient/Makefile.depend | 1 - sbin/dmesg/Makefile.depend | 1 - sbin/dump/Makefile.depend | 1 - sbin/dumpfs/Makefile.depend | 1 - sbin/dumpon/Makefile.depend | 1 - sbin/etherswitchcfg/Makefile.depend | 1 - sbin/fdisk/Makefile.depend | 1 - sbin/ffsinfo/Makefile.depend | 1 - sbin/fsck/Makefile.depend | 1 - sbin/fsck_ffs/Makefile.depend | 1 - sbin/fsck_msdosfs/Makefile.depend | 1 - sbin/fsdb/Makefile.depend | 1 - sbin/fsirand/Makefile.depend | 1 - sbin/gbde/Makefile.depend | 1 - sbin/geom/class/cache/Makefile.depend | 1 - sbin/geom/class/concat/Makefile.depend | 1 - sbin/geom/class/eli/Makefile.depend | 1 + sbin/geom/class/journal/Makefile.depend | 1 - sbin/geom/class/label/Makefile.depend | 1 - sbin/geom/class/mirror/Makefile.depend | 1 - sbin/geom/class/mountver/Makefile.depend | 1 - sbin/geom/class/multipath/Makefile.depend | 1 - sbin/geom/class/nop/Makefile.depend | 1 - sbin/geom/class/part/Makefile.depend | 1 - sbin/geom/class/raid/Makefile.depend | 1 - sbin/geom/class/raid3/Makefile.depend | 1 - sbin/geom/class/sched/Makefile.depend | 1 - sbin/geom/class/shsec/Makefile.depend | 1 - sbin/geom/class/stripe/Makefile.depend | 1 - sbin/geom/class/virstor/Makefile.depend | 1 - sbin/geom/core/Makefile.depend | 1 - sbin/ggate/ggatec/Makefile.depend | 1 - sbin/ggate/ggated/Makefile.depend | 1 - sbin/ggate/ggatel/Makefile.depend | 1 - sbin/growfs/Makefile.depend | 1 - sbin/gvinum/Makefile.depend | 1 - sbin/hastctl/Makefile.depend | 1 + sbin/hastd/Makefile.depend | 1 + sbin/ifconfig/Makefile.depend | 1 - sbin/ipf/ipf/Makefile.depend | 1 - sbin/ipf/ipfs/Makefile.depend | 1 - sbin/ipf/ipfstat/Makefile.depend | 1 - sbin/ipf/ipftest/Makefile.depend | 1 - sbin/ipf/ipmon/Makefile.depend | 1 - sbin/ipf/ipnat/Makefile.depend | 1 - sbin/ipf/ippool/Makefile.depend | 1 - sbin/ipf/ipresend/Makefile.depend | 1 - sbin/ipfw/Makefile.depend | 1 - sbin/iscontrol/Makefile.depend | 1 - sbin/kldconfig/Makefile.depend | 1 - sbin/kldload/Makefile.depend | 1 - sbin/kldstat/Makefile.depend | 1 - sbin/kldunload/Makefile.depend | 1 - sbin/ldconfig/Makefile.depend | 1 - sbin/md5/Makefile.depend | 1 - sbin/mdconfig/Makefile.depend | 1 - sbin/mdmfs/Makefile.depend | 1 - sbin/mknod/Makefile.depend | 1 - sbin/mksnap_ffs/Makefile.depend | 1 - sbin/mount/Makefile.depend | 1 - sbin/mount_cd9660/Makefile.depend | 1 - sbin/mount_fusefs/Makefile.depend | 1 - sbin/mount_msdosfs/Makefile.depend | 1 - sbin/mount_nfs/Makefile.depend | 1 - sbin/mount_nullfs/Makefile.depend | 1 - sbin/mount_udf/Makefile.depend | 1 - sbin/mount_unionfs/Makefile.depend | 1 - sbin/natd/Makefile.depend | 1 - sbin/newfs/Makefile.depend | 1 - sbin/newfs_msdos/Makefile.depend | 1 - sbin/nfsiod/Makefile.depend | 1 - sbin/nos-tun/Makefile.depend | 1 - sbin/nvmecontrol/Makefile.depend | 1 - sbin/pfctl/Makefile.depend | 1 - sbin/pflogd/Makefile.depend | 1 - sbin/ping/Makefile.depend | 1 - sbin/ping6/Makefile.depend | 1 - sbin/quotacheck/Makefile.depend | 1 - sbin/rcorder/Makefile.depend | 1 - sbin/reboot/Makefile.depend | 1 - sbin/recoverdisk/Makefile.depend | 1 - sbin/restore/Makefile.depend | 1 - sbin/route/Makefile.depend | 1 - sbin/routed/rtquery/Makefile.depend | 1 - sbin/rtsol/Makefile.depend | 1 - sbin/savecore/Makefile.depend | 1 - sbin/setkey/Makefile.depend | 1 - sbin/shutdown/Makefile.depend | 1 - sbin/spppcontrol/Makefile.depend | 1 - sbin/swapon/Makefile.depend | 1 - sbin/sysctl/Makefile.depend | 1 - sbin/tunefs/Makefile.depend | 1 - sbin/umount/Makefile.depend | 1 - secure/lib/libcrypto/Makefile.depend | 2 + .../engines/lib4758cca/Makefile.depend | 1 + .../libcrypto/engines/libaep/Makefile.depend | 1 + .../engines/libatalla/Makefile.depend | 1 + .../libcrypto/engines/libchil/Makefile.depend | 1 + .../engines/libcswift/Makefile.depend | 1 + .../libcrypto/engines/libgost/Makefile.depend | 1 + .../engines/libnuron/Makefile.depend | 1 + .../engines/libsureware/Makefile.depend | 1 + .../engines/libubsec/Makefile.depend | 1 + secure/lib/libssh/Makefile.depend | 2 + secure/lib/libssl/Makefile.depend | 2 + secure/libexec/sftp-server/Makefile.depend | 1 + secure/libexec/ssh-keysign/Makefile.depend | 1 + .../libexec/ssh-pkcs11-helper/Makefile.depend | 1 + secure/usr.bin/bdes/Makefile.depend | 1 + secure/usr.bin/openssl/Makefile.depend | 1 + secure/usr.bin/scp/Makefile.depend | 1 + secure/usr.bin/sftp/Makefile.depend | 1 + secure/usr.bin/ssh-add/Makefile.depend | 1 + secure/usr.bin/ssh-agent/Makefile.depend | 1 + secure/usr.bin/ssh-keygen/Makefile.depend | 1 + secure/usr.bin/ssh-keyscan/Makefile.depend | 1 + secure/usr.bin/ssh/Makefile.depend | 2 + secure/usr.sbin/sshd/Makefile.depend | 1 + share/syscons/scrnmaps/Makefile.depend | 1 - usr.bin/apply/Makefile.depend | 1 - usr.bin/ar/Makefile.depend | 1 + usr.bin/asa/Makefile.depend | 1 - usr.bin/at/Makefile.depend | 1 - usr.bin/atf/atf-sh/Makefile.depend | 5 ++- usr.bin/atm/sscop/Makefile.depend | 1 - usr.bin/awk/Makefile.depend | 1 - usr.bin/banner/Makefile.depend | 1 - usr.bin/basename/Makefile.depend | 1 - usr.bin/bc/Makefile.depend | 1 - usr.bin/biff/Makefile.depend | 1 - usr.bin/bluetooth/bthost/Makefile.depend | 1 - usr.bin/bluetooth/btsockstat/Makefile.depend | 1 - usr.bin/bluetooth/rfcomm_sppd/Makefile.depend | 1 - usr.bin/brandelf/Makefile.depend | 1 - usr.bin/bsdiff/bsdiff/Makefile.depend | 1 - usr.bin/bsdiff/bspatch/Makefile.depend | 1 - usr.bin/bzip2/Makefile.depend | 1 - usr.bin/bzip2recover/Makefile.depend | 1 - usr.bin/c89/Makefile.depend | 1 - usr.bin/c99/Makefile.depend | 1 - usr.bin/calendar/Makefile.depend | 1 - usr.bin/cap_mkdb/Makefile.depend | 1 - usr.bin/catman/Makefile.depend | 1 - usr.bin/chat/Makefile.depend | 1 - usr.bin/checknr/Makefile.depend | 1 - usr.bin/chkey/Makefile.depend | 1 + usr.bin/chpass/Makefile.depend | 1 - usr.bin/cksum/Makefile.depend | 1 - usr.bin/clang/clang-tblgen/Makefile.depend | 6 +-- usr.bin/clang/clang/Makefile.depend | 6 ++- usr.bin/clang/tblgen/Makefile.depend | 6 +-- usr.bin/cmp/Makefile.depend | 1 - usr.bin/col/Makefile.depend | 1 - usr.bin/colcrt/Makefile.depend | 1 - usr.bin/colldef/Makefile.depend | 1 - usr.bin/colrm/Makefile.depend | 1 - usr.bin/column/Makefile.depend | 1 - usr.bin/comm/Makefile.depend | 1 - usr.bin/compile_et/Makefile.depend | 1 - usr.bin/compress/Makefile.depend | 1 - usr.bin/cpio/Makefile.depend | 1 + usr.bin/cpuset/Makefile.depend | 1 - usr.bin/csplit/Makefile.depend | 1 - usr.bin/csup/Makefile.depend | 1 - usr.bin/ctags/Makefile.depend | 1 - usr.bin/ctlstat/Makefile.depend | 1 - usr.bin/cut/Makefile.depend | 1 - usr.bin/dc/Makefile.depend | 1 + usr.bin/dirname/Makefile.depend | 1 - usr.bin/du/Makefile.depend | 1 - usr.bin/ee/Makefile.depend | 1 - usr.bin/elf2aout/Makefile.depend | 1 - usr.bin/elfdump/Makefile.depend | 1 - usr.bin/enigma/Makefile.depend | 1 - usr.bin/env/Makefile.depend | 1 - usr.bin/expand/Makefile.depend | 1 - usr.bin/false/Makefile.depend | 1 - usr.bin/fetch/Makefile.depend | 1 + usr.bin/file/Makefile.depend | 1 - usr.bin/file2c/Makefile.depend | 1 - usr.bin/find/Makefile.depend | 1 - usr.bin/finger/Makefile.depend | 1 - usr.bin/fmt/Makefile.depend | 1 - usr.bin/fold/Makefile.depend | 1 - usr.bin/from/Makefile.depend | 1 - usr.bin/fstat/Makefile.depend | 1 - usr.bin/fsync/Makefile.depend | 1 - usr.bin/ftp/Makefile.depend | 1 - usr.bin/gcore/Makefile.depend | 1 - usr.bin/gencat/Makefile.depend | 1 - usr.bin/getconf/Makefile.depend | 1 - usr.bin/getent/Makefile.depend | 1 - usr.bin/getopt/Makefile.depend | 1 - usr.bin/gprof/Makefile.depend | 1 - usr.bin/grep/Makefile.depend | 1 - usr.bin/gzip/Makefile.depend | 1 - usr.bin/head/Makefile.depend | 1 - usr.bin/hexdump/Makefile.depend | 1 - usr.bin/host/Makefile.depend | 1 + usr.bin/id/Makefile.depend | 1 - usr.bin/indent/Makefile.depend | 1 - usr.bin/ipcrm/Makefile.depend | 1 - usr.bin/ipcs/Makefile.depend | 1 - usr.bin/join/Makefile.depend | 1 - usr.bin/jot/Makefile.depend | 1 - usr.bin/kdump/Makefile.depend | 1 - usr.bin/keylogin/Makefile.depend | 1 - usr.bin/keylogout/Makefile.depend | 1 - usr.bin/killall/Makefile.depend | 1 - usr.bin/ktrace/Makefile.depend | 1 - usr.bin/ktrdump/Makefile.depend | 1 - usr.bin/lam/Makefile.depend | 1 - usr.bin/last/Makefile.depend | 1 - usr.bin/lastcomm/Makefile.depend | 1 - usr.bin/ldd/Makefile.depend | 1 - usr.bin/leave/Makefile.depend | 1 - usr.bin/less/Makefile.depend | 1 - usr.bin/lessecho/Makefile.depend | 1 - usr.bin/lesskey/Makefile.depend | 1 - usr.bin/limits/Makefile.depend | 1 - usr.bin/locale/Makefile.depend | 1 - usr.bin/locate/bigram/Makefile.depend | 1 - usr.bin/locate/code/Makefile.depend | 1 - usr.bin/locate/locate/Makefile.depend | 1 - usr.bin/lock/Makefile.depend | 1 - usr.bin/lockf/Makefile.depend | 1 - usr.bin/logger/Makefile.depend | 1 - usr.bin/login/Makefile.depend | 1 - usr.bin/logins/Makefile.depend | 1 - usr.bin/logname/Makefile.depend | 1 - usr.bin/look/Makefile.depend | 1 - usr.bin/lsvfs/Makefile.depend | 1 - usr.bin/lzmainfo/Makefile.depend | 1 - usr.bin/m4/Makefile.depend | 1 - usr.bin/mail/Makefile.depend | 1 - usr.bin/makewhatis/Makefile.depend | 1 - usr.bin/mandoc/Makefile.depend | 1 - usr.bin/mesg/Makefile.depend | 1 - usr.bin/minigzip/Makefile.depend | 1 - usr.bin/ministat/Makefile.depend | 1 - usr.bin/mkfifo/Makefile.depend | 1 - usr.bin/mklocale/Makefile.depend | 1 - usr.bin/mkstr/Makefile.depend | 1 - usr.bin/mktemp/Makefile.depend | 1 - usr.bin/mkulzma/Makefile.depend | 1 - usr.bin/mkuzip/Makefile.depend | 1 - usr.bin/msgs/Makefile.depend | 1 - usr.bin/mt/Makefile.depend | 1 - usr.bin/nc/Makefile.depend | 1 - usr.bin/ncal/Makefile.depend | 1 - usr.bin/netstat/Makefile.depend | 1 - usr.bin/newgrp/Makefile.depend | 1 - usr.bin/newkey/Makefile.depend | 1 + usr.bin/nfsstat/Makefile.depend | 1 - usr.bin/nice/Makefile.depend | 1 - usr.bin/nl/Makefile.depend | 1 - usr.bin/nohup/Makefile.depend | 1 - usr.bin/opieinfo/Makefile.depend | 1 - usr.bin/opiekey/Makefile.depend | 1 - usr.bin/opiepasswd/Makefile.depend | 1 - usr.bin/passwd/Makefile.depend | 1 - usr.bin/paste/Makefile.depend | 1 - usr.bin/pathchk/Makefile.depend | 1 - usr.bin/perror/Makefile.depend | 1 - usr.bin/pr/Makefile.depend | 1 - usr.bin/printenv/Makefile.depend | 1 - usr.bin/printf/Makefile.depend | 1 - usr.bin/procstat/Makefile.depend | 1 - usr.bin/quota/Makefile.depend | 1 - usr.bin/rctl/Makefile.depend | 1 - usr.bin/renice/Makefile.depend | 1 - usr.bin/rev/Makefile.depend | 1 - usr.bin/revoke/Makefile.depend | 1 - usr.bin/rlogin/Makefile.depend | 1 - usr.bin/rpcgen/Makefile.depend | 1 - usr.bin/rpcinfo/Makefile.depend | 1 - usr.bin/rs/Makefile.depend | 1 - usr.bin/rsh/Makefile.depend | 1 - usr.bin/rup/Makefile.depend | 1 - usr.bin/ruptime/Makefile.depend | 1 - usr.bin/rusers/Makefile.depend | 1 - usr.bin/rwall/Makefile.depend | 1 - usr.bin/rwho/Makefile.depend | 1 - usr.bin/script/Makefile.depend | 1 - usr.bin/sed/Makefile.depend | 1 - usr.bin/seq/Makefile.depend | 1 - usr.bin/showmount/Makefile.depend | 1 - usr.bin/sockstat/Makefile.depend | 1 - usr.bin/sort/Makefile.depend | 1 - usr.bin/split/Makefile.depend | 1 - usr.bin/stat/Makefile.depend | 1 - usr.bin/stdbuf/Makefile.depend | 1 - usr.bin/su/Makefile.depend | 1 - usr.bin/systat/Makefile.depend | 1 - usr.bin/tabs/Makefile.depend | 1 - usr.bin/tail/Makefile.depend | 1 - usr.bin/talk/Makefile.depend | 1 - usr.bin/tar/Makefile.depend | 1 + usr.bin/tcopy/Makefile.depend | 1 - usr.bin/tee/Makefile.depend | 1 - usr.bin/telnet/Makefile.depend | 1 + usr.bin/tftp/Makefile.depend | 1 - usr.bin/time/Makefile.depend | 1 - usr.bin/tip/tip/Makefile.depend | 1 - usr.bin/top/Makefile.depend | 1 - usr.bin/touch/Makefile.depend | 1 - usr.bin/tput/Makefile.depend | 1 - usr.bin/tr/Makefile.depend | 1 - usr.bin/true/Makefile.depend | 1 - usr.bin/truncate/Makefile.depend | 1 - usr.bin/truss/Makefile.depend.amd64 | 1 - usr.bin/tset/Makefile.depend | 1 - usr.bin/tsort/Makefile.depend | 1 - usr.bin/tty/Makefile.depend | 1 - usr.bin/ul/Makefile.depend | 1 - usr.bin/uname/Makefile.depend | 1 - usr.bin/unexpand/Makefile.depend | 1 - usr.bin/unifdef/Makefile.depend | 1 - usr.bin/uniq/Makefile.depend | 1 - usr.bin/units/Makefile.depend | 1 - usr.bin/unvis/Makefile.depend | 1 - usr.bin/unzip/Makefile.depend | 1 + usr.bin/usbhidaction/Makefile.depend | 1 - usr.bin/usbhidctl/Makefile.depend | 1 - usr.bin/users/Makefile.depend | 1 - usr.bin/uudecode/Makefile.depend | 1 - usr.bin/uuencode/Makefile.depend | 1 - usr.bin/vacation/Makefile.depend | 1 - usr.bin/vgrind/Makefile.depend | 1 - usr.bin/vi/Makefile.depend | 1 - usr.bin/vis/Makefile.depend | 1 - usr.bin/vmstat/Makefile.depend | 1 - usr.bin/w/Makefile.depend | 1 - usr.bin/wall/Makefile.depend | 1 - usr.bin/wc/Makefile.depend | 1 - usr.bin/what/Makefile.depend | 1 - usr.bin/whereis/Makefile.depend | 1 - usr.bin/which/Makefile.depend | 1 - usr.bin/who/Makefile.depend | 1 - usr.bin/whois/Makefile.depend | 1 - usr.bin/write/Makefile.depend | 1 - usr.bin/xargs/Makefile.depend | 1 - usr.bin/xinstall/Makefile.depend | 1 - usr.bin/xlint/lint1/Makefile.depend | 1 - usr.bin/xlint/lint2/Makefile.depend | 1 - usr.bin/xlint/xlint/Makefile.depend | 1 - usr.bin/xstr/Makefile.depend | 1 - usr.bin/xz/Makefile.depend | 1 - usr.bin/xzdec/Makefile.depend | 1 - usr.bin/yacc/Makefile.depend | 1 - usr.bin/yes/Makefile.depend | 1 - usr.bin/ypcat/Makefile.depend | 1 - usr.bin/ypmatch/Makefile.depend | 1 - usr.bin/ypwhich/Makefile.depend | 1 - usr.sbin/ac/Makefile.depend | 1 - usr.sbin/accton/Makefile.depend | 1 - usr.sbin/acpi/acpiconf/Makefile.depend | 1 - usr.sbin/acpi/acpidb/Makefile.depend | 1 - usr.sbin/acpi/acpidump/Makefile.depend | 1 - usr.sbin/acpi/iasl/Makefile.depend | 1 - usr.sbin/amd/amd/Makefile.depend | 1 - usr.sbin/amd/amq/Makefile.depend | 1 - usr.sbin/amd/fixmount/Makefile.depend | 1 - usr.sbin/amd/fsinfo/Makefile.depend | 1 - usr.sbin/amd/hlfsd/Makefile.depend | 1 - usr.sbin/amd/mk-amd-map/Makefile.depend | 1 - usr.sbin/amd/pawd/Makefile.depend | 1 - usr.sbin/amd/wire-test/Makefile.depend | 1 - usr.sbin/ancontrol/Makefile.depend | 1 - usr.sbin/apm/Makefile.depend | 1 - usr.sbin/arp/Makefile.depend | 1 - usr.sbin/asf/Makefile.depend | 1 - usr.sbin/audit/Makefile.depend | 1 - usr.sbin/auditd/Makefile.depend | 1 - usr.sbin/auditreduce/Makefile.depend | 1 - usr.sbin/authpf/Makefile.depend | 1 - usr.sbin/bluetooth/ath3kfw/Makefile.depend | 1 - usr.sbin/bluetooth/bcmfw/Makefile.depend | 1 - usr.sbin/bluetooth/bt3cfw/Makefile.depend | 1 - .../bluetooth/bthidcontrol/Makefile.depend | 1 - usr.sbin/bluetooth/bthidd/Makefile.depend | 1 - usr.sbin/bluetooth/btpand/Makefile.depend | 1 - usr.sbin/bluetooth/hccontrol/Makefile.depend | 1 - usr.sbin/bluetooth/hcsecd/Makefile.depend | 1 - usr.sbin/bluetooth/hcseriald/Makefile.depend | 1 - usr.sbin/bluetooth/l2control/Makefile.depend | 1 - usr.sbin/bluetooth/l2ping/Makefile.depend | 1 - .../bluetooth/rfcomm_pppd/Makefile.depend | 1 - usr.sbin/bluetooth/sdpcontrol/Makefile.depend | 1 - usr.sbin/bluetooth/sdpd/Makefile.depend | 1 - usr.sbin/boot0cfg/Makefile.depend | 1 - .../bootparamd/bootparamd/Makefile.depend | 1 - usr.sbin/bootparamd/callbootd/Makefile.depend | 1 - .../bsdinstall/distextract/Makefile.depend | 1 + usr.sbin/bsdinstall/distfetch/Makefile.depend | 1 + usr.sbin/bsdinstall/partedit/Makefile.depend | 1 - usr.sbin/bsnmpd/bsnmpd/Makefile.depend | 1 + usr.sbin/bsnmpd/gensnmptree/Makefile.depend | 1 - .../bsnmpd/modules/snmp_atm/Makefile.depend | 2 + .../modules/snmp_bridge/Makefile.depend | 2 + .../modules/snmp_hostres/Makefile.depend | 2 + .../bsnmpd/modules/snmp_mibII/Makefile.depend | 2 + .../modules/snmp_netgraph/Makefile.depend | 2 + .../bsnmpd/modules/snmp_pf/Makefile.depend | 2 + .../modules/snmp_target/Makefile.depend | 2 + .../bsnmpd/modules/snmp_usm/Makefile.depend | 2 + .../bsnmpd/modules/snmp_vacm/Makefile.depend | 2 + .../bsnmpd/modules/snmp_wlan/Makefile.depend | 2 + .../bsnmpd/tools/bsnmptools/Makefile.depend | 1 + .../tools/libbsnmptools/Makefile.depend | 2 + usr.sbin/btxld/Makefile.depend | 1 - usr.sbin/cdcontrol/Makefile.depend | 1 - usr.sbin/chkgrp/Makefile.depend | 1 - usr.sbin/chown/Makefile.depend | 1 - usr.sbin/chroot/Makefile.depend | 1 - usr.sbin/ckdist/Makefile.depend | 1 - usr.sbin/clear_locks/Makefile.depend | 1 - usr.sbin/config/Makefile.depend | 1 - usr.sbin/cpucontrol/Makefile.depend | 1 - usr.sbin/cron/cron/Makefile.depend | 1 - usr.sbin/cron/crontab/Makefile.depend | 1 - usr.sbin/crunch/crunchgen/Makefile.depend | 1 - usr.sbin/crunch/crunchide/Makefile.depend | 1 - usr.sbin/ctladm/Makefile.depend | 1 - usr.sbin/ctm/ctm/Makefile.depend | 1 - usr.sbin/ctm/ctm_dequeue/Makefile.depend | 1 - usr.sbin/ctm/ctm_rmail/Makefile.depend | 1 - usr.sbin/ctm/ctm_smail/Makefile.depend | 1 - usr.sbin/daemon/Makefile.depend | 1 - usr.sbin/dconschat/Makefile.depend | 1 - usr.sbin/devinfo/Makefile.depend | 1 - usr.sbin/digictl/Makefile.depend | 1 - usr.sbin/diskinfo/Makefile.depend | 1 - usr.sbin/dumpcis/Makefile.depend | 1 - usr.sbin/editmap/Makefile.depend | 1 - usr.sbin/edquota/Makefile.depend | 1 - usr.sbin/extattr/Makefile.depend | 1 - usr.sbin/extattrctl/Makefile.depend | 1 - usr.sbin/faithd/Makefile.depend | 1 - usr.sbin/fdcontrol/Makefile.depend | 1 - usr.sbin/fdformat/Makefile.depend | 1 - usr.sbin/fdread/Makefile.depend | 1 - usr.sbin/fdwrite/Makefile.depend | 1 - .../fifolog/fifolog_create/Makefile.depend | 1 - .../fifolog/fifolog_reader/Makefile.depend | 1 - .../fifolog/fifolog_writer/Makefile.depend | 1 - usr.sbin/flowctl/Makefile.depend | 1 - usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend | 1 - usr.sbin/fwcontrol/Makefile.depend | 1 - usr.sbin/getfmac/Makefile.depend | 1 - usr.sbin/getpmac/Makefile.depend | 1 - usr.sbin/gpioctl/Makefile.depend | 1 - usr.sbin/gssd/Makefile.depend | 1 + usr.sbin/gstat/Makefile.depend | 1 - usr.sbin/i2c/Makefile.depend | 1 - usr.sbin/ifmcstat/Makefile.depend | 1 - usr.sbin/inetd/Makefile.depend | 1 - usr.sbin/iostat/Makefile.depend | 1 - usr.sbin/ip6addrctl/Makefile.depend | 1 - usr.sbin/ipfwpcap/Makefile.depend | 1 - usr.sbin/jail/Makefile.depend | 1 - usr.sbin/jexec/Makefile.depend | 1 - usr.sbin/jls/Makefile.depend | 1 - usr.sbin/kbdcontrol/Makefile.depend | 1 - usr.sbin/kbdmap/Makefile.depend | 1 - usr.sbin/keyserv/Makefile.depend | 1 + usr.sbin/kgmon/Makefile.depend | 1 - usr.sbin/kldxref/Makefile.depend | 1 - usr.sbin/lastlogin/Makefile.depend | 1 - usr.sbin/lmcconfig/Makefile.depend | 1 - usr.sbin/lpr/chkprintcap/Makefile.depend | 1 - .../lpr/filters.ru/koi2855/Makefile.depend | 1 - .../lpr/filters.ru/koi2alt/Makefile.depend | 1 - usr.sbin/lpr/filters/Makefile.depend | 1 - usr.sbin/lpr/lpc/Makefile.depend | 1 - usr.sbin/lpr/lpd/Makefile.depend | 1 - usr.sbin/lpr/lpq/Makefile.depend | 1 - usr.sbin/lpr/lpr/Makefile.depend | 1 - usr.sbin/lpr/lprm/Makefile.depend | 1 - usr.sbin/lpr/lptest/Makefile.depend | 1 - usr.sbin/lpr/pac/Makefile.depend | 1 - usr.sbin/lptcontrol/Makefile.depend | 1 - usr.sbin/mailstats/Makefile.depend | 1 - usr.sbin/mailwrapper/Makefile.depend | 1 - usr.sbin/makefs/Makefile.depend | 1 - usr.sbin/makemap/Makefile.depend | 1 - usr.sbin/memcontrol/Makefile.depend | 1 - usr.sbin/mfiutil/Makefile.depend | 1 - usr.sbin/mixer/Makefile.depend | 1 - usr.sbin/mld6query/Makefile.depend | 1 - usr.sbin/mlxcontrol/Makefile.depend | 1 - usr.sbin/mountd/Makefile.depend | 1 - usr.sbin/moused/Makefile.depend | 1 - usr.sbin/mptable/Makefile.depend | 1 - usr.sbin/mptutil/Makefile.depend | 1 - usr.sbin/mtest/Makefile.depend | 1 - usr.sbin/mtree/Makefile.depend | 1 - usr.sbin/ndiscvt/Makefile.depend | 1 - usr.sbin/ndp/Makefile.depend | 1 - usr.sbin/newsyslog/Makefile.depend | 1 - usr.sbin/nfscbd/Makefile.depend | 1 - usr.sbin/nfsd/Makefile.depend | 1 - usr.sbin/nfsdumpstate/Makefile.depend | 1 - usr.sbin/nfsrevoke/Makefile.depend | 1 - usr.sbin/nfsuserd/Makefile.depend | 1 - usr.sbin/ngctl/Makefile.depend | 1 - usr.sbin/nghook/Makefile.depend | 1 - usr.sbin/nscd/Makefile.depend | 1 - usr.sbin/ntp/ntp-keygen/Makefile.depend | 1 + usr.sbin/ntp/ntpd/Makefile.depend | 1 + usr.sbin/ntp/ntpdate/Makefile.depend | 1 + usr.sbin/ntp/ntpdc/Makefile.depend | 1 + usr.sbin/ntp/ntpq/Makefile.depend | 1 + usr.sbin/ntp/ntptime/Makefile.depend | 1 + usr.sbin/ntp/sntp/Makefile.depend | 1 - usr.sbin/pciconf/Makefile.depend | 1 - usr.sbin/pkg/Makefile.depend | 4 +- usr.sbin/pmcannotate/Makefile.depend | 1 - usr.sbin/pmccontrol/Makefile.depend | 1 - usr.sbin/pmcstat/Makefile.depend | 1 - usr.sbin/portsnap/make_index/Makefile.depend | 1 - usr.sbin/portsnap/phttpget/Makefile.depend | 1 - usr.sbin/powerd/Makefile.depend | 1 - usr.sbin/ppp/Makefile.depend | 1 + usr.sbin/pppctl/Makefile.depend | 1 - usr.sbin/praliases/Makefile.depend | 1 - usr.sbin/praudit/Makefile.depend | 1 - usr.sbin/procctl/Makefile.depend | 1 - usr.sbin/pstat/Makefile.depend | 1 - usr.sbin/pw/Makefile.depend | 1 - usr.sbin/pwd_mkdb/Makefile.depend | 1 - usr.sbin/quot/Makefile.depend | 1 - usr.sbin/quotaon/Makefile.depend | 1 - usr.sbin/rarpd/Makefile.depend | 1 - usr.sbin/repquota/Makefile.depend | 1 - usr.sbin/rip6query/Makefile.depend | 1 - usr.sbin/rmt/Makefile.depend | 1 - usr.sbin/route6d/Makefile.depend | 1 - usr.sbin/rpc.lockd/Makefile.depend | 1 - usr.sbin/rpc.statd/Makefile.depend | 1 - usr.sbin/rpc.umntall/Makefile.depend | 1 - usr.sbin/rpc.yppasswdd/Makefile.depend | 1 - usr.sbin/rpc.ypupdated/Makefile.depend | 1 - usr.sbin/rpc.ypxfrd/Makefile.depend | 1 - usr.sbin/rpcbind/Makefile.depend | 1 - usr.sbin/rrenumd/Makefile.depend | 1 - usr.sbin/rtadvctl/Makefile.depend | 1 - usr.sbin/rtadvd/Makefile.depend | 1 - usr.sbin/rtprio/Makefile.depend | 1 - usr.sbin/rtsold/Makefile.depend | 1 - usr.sbin/rwhod/Makefile.depend | 1 - usr.sbin/sa/Makefile.depend | 1 - usr.sbin/sendmail/Makefile.depend | 1 + usr.sbin/services_mkdb/Makefile.depend | 1 - usr.sbin/setfib/Makefile.depend | 1 - usr.sbin/setfmac/Makefile.depend | 1 - usr.sbin/setpmac/Makefile.depend | 1 - usr.sbin/sicontrol/Makefile.depend | 1 - usr.sbin/smbmsg/Makefile.depend | 1 - usr.sbin/snapinfo/Makefile.depend | 1 - usr.sbin/spray/Makefile.depend | 1 - usr.sbin/syslogd/Makefile.depend | 1 - usr.sbin/tcpdchk/Makefile.depend | 1 - usr.sbin/tcpdmatch/Makefile.depend | 1 - usr.sbin/tcpdrop/Makefile.depend | 1 - usr.sbin/tcpdump/tcpdump/Makefile.depend | 3 ++ usr.sbin/timed/timed/Makefile.depend | 1 - usr.sbin/timed/timedc/Makefile.depend | 1 - usr.sbin/traceroute/Makefile.depend | 1 - usr.sbin/traceroute6/Makefile.depend | 1 - usr.sbin/trpt/Makefile.depend | 1 - usr.sbin/tzsetup/Makefile.depend | 1 - usr.sbin/uathload/Makefile.depend | 1 - usr.sbin/ugidfw/Makefile.depend | 1 - usr.sbin/uhsoctl/Makefile.depend | 1 - usr.sbin/usbconfig/Makefile.depend | 1 - usr.sbin/usbdump/Makefile.depend | 1 - usr.sbin/utx/Makefile.depend | 1 - usr.sbin/vidcontrol/Makefile.depend | 1 - usr.sbin/vipw/Makefile.depend | 1 - usr.sbin/wake/Makefile.depend | 1 - usr.sbin/watch/Makefile.depend | 1 - usr.sbin/watchdogd/Makefile.depend | 1 - usr.sbin/wlandebug/Makefile.depend | 1 - usr.sbin/wpa/hostapd/Makefile.depend | 1 + usr.sbin/wpa/hostapd_cli/Makefile.depend | 1 - usr.sbin/wpa/ndis_events/Makefile.depend | 1 - usr.sbin/wpa/wpa_cli/Makefile.depend | 1 - usr.sbin/wpa/wpa_passphrase/Makefile.depend | 1 - usr.sbin/wpa/wpa_supplicant/Makefile.depend | 1 + usr.sbin/yp_mkdb/Makefile.depend | 1 - usr.sbin/ypbind/Makefile.depend | 1 - usr.sbin/yppoll/Makefile.depend | 1 - usr.sbin/yppush/Makefile.depend | 1 - usr.sbin/ypserv/Makefile.depend | 1 - usr.sbin/ypset/Makefile.depend | 1 - usr.sbin/zic/zdump/Makefile.depend | 1 - usr.sbin/zic/zic/Makefile.depend | 1 - 1026 files changed, 692 insertions(+), 1029 deletions(-) diff --git a/bin/cat/Makefile.depend b/bin/cat/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/cat/Makefile.depend +++ b/bin/cat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/chflags/Makefile.depend b/bin/chflags/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/chflags/Makefile.depend +++ b/bin/chflags/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/chio/Makefile.depend b/bin/chio/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/chio/Makefile.depend +++ b/bin/chio/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/chmod/Makefile.depend b/bin/chmod/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/chmod/Makefile.depend +++ b/bin/chmod/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/cp/Makefile.depend b/bin/cp/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/cp/Makefile.depend +++ b/bin/cp/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/csh/Makefile.depend b/bin/csh/Makefile.depend index 8792a2fdc9d0..7d24a2b5c71f 100644 --- a/bin/csh/Makefile.depend +++ b/bin/csh/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/ncurses/ncurses \ diff --git a/bin/date/Makefile.depend b/bin/date/Makefile.depend index b3c03a71825a..4a9f7867ec6d 100644 --- a/bin/date/Makefile.depend +++ b/bin/date/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/dd/Makefile.depend b/bin/dd/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/dd/Makefile.depend +++ b/bin/dd/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/df/Makefile.depend b/bin/df/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/bin/df/Makefile.depend +++ b/bin/df/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/bin/domainname/Makefile.depend b/bin/domainname/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/domainname/Makefile.depend +++ b/bin/domainname/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/echo/Makefile.depend b/bin/echo/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/echo/Makefile.depend +++ b/bin/echo/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/ed/Makefile.depend b/bin/ed/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/bin/ed/Makefile.depend +++ b/bin/ed/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/bin/expr/Makefile.depend b/bin/expr/Makefile.depend index 26e188813d66..1c402a90a785 100644 --- a/bin/expr/Makefile.depend +++ b/bin/expr/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/getfacl/Makefile.depend b/bin/getfacl/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/getfacl/Makefile.depend +++ b/bin/getfacl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/hostname/Makefile.depend b/bin/hostname/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/hostname/Makefile.depend +++ b/bin/hostname/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/kenv/Makefile.depend b/bin/kenv/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/kenv/Makefile.depend +++ b/bin/kenv/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/kill/Makefile.depend b/bin/kill/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/kill/Makefile.depend +++ b/bin/kill/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/ln/Makefile.depend b/bin/ln/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/ln/Makefile.depend +++ b/bin/ln/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/ls/Makefile.depend b/bin/ls/Makefile.depend index b8efbdcd65f1..fa30ba59a752 100644 --- a/bin/ls/Makefile.depend +++ b/bin/ls/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/ncurses/ncurses \ diff --git a/bin/mkdir/Makefile.depend b/bin/mkdir/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/mkdir/Makefile.depend +++ b/bin/mkdir/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/mv/Makefile.depend b/bin/mv/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/mv/Makefile.depend +++ b/bin/mv/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/pax/Makefile.depend b/bin/pax/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/pax/Makefile.depend +++ b/bin/pax/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/pkill/Makefile.depend b/bin/pkill/Makefile.depend index b7d414c85aeb..384b6754a9ab 100644 --- a/bin/pkill/Makefile.depend +++ b/bin/pkill/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/bin/ps/Makefile.depend b/bin/ps/Makefile.depend index 55f64b8f923e..a1b416dc3b7c 100644 --- a/bin/ps/Makefile.depend +++ b/bin/ps/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libjail \ lib/libkvm \ diff --git a/bin/pwait/Makefile.depend b/bin/pwait/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/pwait/Makefile.depend +++ b/bin/pwait/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/pwd/Makefile.depend b/bin/pwd/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/pwd/Makefile.depend +++ b/bin/pwd/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/rcp/Makefile.depend b/bin/rcp/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/rcp/Makefile.depend +++ b/bin/rcp/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/realpath/Makefile.depend b/bin/realpath/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/bin/realpath/Makefile.depend +++ b/bin/realpath/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/rm/Makefile.depend b/bin/rm/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/rm/Makefile.depend +++ b/bin/rm/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/rmail/Makefile.depend b/bin/rmail/Makefile.depend index 369993741a21..38c9111f896a 100644 --- a/bin/rmail/Makefile.depend +++ b/bin/rmail/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libutil \ diff --git a/bin/rmdir/Makefile.depend b/bin/rmdir/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/rmdir/Makefile.depend +++ b/bin/rmdir/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/setfacl/Makefile.depend b/bin/setfacl/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/setfacl/Makefile.depend +++ b/bin/setfacl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/sh/Makefile.depend b/bin/sh/Makefile.depend index 8c34e2e9ee31..cd6f78e660fc 100644 --- a/bin/sh/Makefile.depend +++ b/bin/sh/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/bin/sleep/Makefile.depend b/bin/sleep/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/sleep/Makefile.depend +++ b/bin/sleep/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/stty/Makefile.depend b/bin/stty/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/stty/Makefile.depend +++ b/bin/stty/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/sync/Makefile.depend b/bin/sync/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/bin/sync/Makefile.depend +++ b/bin/sync/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/test/Makefile.depend b/bin/test/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/bin/test/Makefile.depend +++ b/bin/test/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/bin/uuidgen/Makefile.depend b/bin/uuidgen/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/bin/uuidgen/Makefile.depend +++ b/bin/uuidgen/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/cddl/lib/libavl/Makefile.depend b/cddl/lib/libavl/Makefile.depend index e9a1dda6ca51..7cedd5f867c7 100644 --- a/cddl/lib/libavl/Makefile.depend +++ b/cddl/lib/libavl/Makefile.depend @@ -8,8 +8,8 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/cddl/lib/libctf/Makefile.depend b/cddl/lib/libctf/Makefile.depend index 8289d12000c8..8c281dd942e7 100644 --- a/cddl/lib/libctf/Makefile.depend +++ b/cddl/lib/libctf/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libz \ + usr.bin/xinstall.host \ .include diff --git a/cddl/lib/libdtrace/Makefile.depend b/cddl/lib/libdtrace/Makefile.depend index 8f7dd109b8ff..8d30ace22df6 100644 --- a/cddl/lib/libdtrace/Makefile.depend +++ b/cddl/lib/libdtrace/Makefile.depend @@ -10,11 +10,11 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libproc \ lib/librtld_db \ + usr.bin/xinstall.host \ .include diff --git a/cddl/lib/libnvpair/Makefile.depend b/cddl/lib/libnvpair/Makefile.depend index 26b0cb7f5dde..bee153c2a7af 100644 --- a/cddl/lib/libnvpair/Makefile.depend +++ b/cddl/lib/libnvpair/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ + usr.bin/xinstall.host \ .include diff --git a/cddl/lib/libumem/Makefile.depend b/cddl/lib/libumem/Makefile.depend index e9a1dda6ca51..7cedd5f867c7 100644 --- a/cddl/lib/libumem/Makefile.depend +++ b/cddl/lib/libumem/Makefile.depend @@ -8,8 +8,8 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/cddl/lib/libuutil/Makefile.depend b/cddl/lib/libuutil/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/cddl/lib/libuutil/Makefile.depend +++ b/cddl/lib/libuutil/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/cddl/lib/libzfs/Makefile.depend b/cddl/lib/libzfs/Makefile.depend index c37dc06029e6..79c81b8d5772 100644 --- a/cddl/lib/libzfs/Makefile.depend +++ b/cddl/lib/libzfs/Makefile.depend @@ -12,13 +12,13 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ lib/libthr \ lib/libutil \ lib/msun \ + usr.bin/xinstall.host \ .include diff --git a/cddl/lib/libzfs_core/Makefile.depend b/cddl/lib/libzfs_core/Makefile.depend index d4b30864d0e6..cce84af56921 100644 --- a/cddl/lib/libzfs_core/Makefile.depend +++ b/cddl/lib/libzfs_core/Makefile.depend @@ -10,9 +10,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ + usr.bin/xinstall.host \ .include diff --git a/cddl/lib/libzpool/Makefile.depend b/cddl/lib/libzpool/Makefile.depend index e6ee354f02f6..4ee502210e97 100644 --- a/cddl/lib/libzpool/Makefile.depend +++ b/cddl/lib/libzpool/Makefile.depend @@ -9,12 +9,12 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libthr \ lib/libz \ lib/msun \ + usr.bin/xinstall.host \ .include diff --git a/cddl/sbin/zfs/Makefile.depend b/cddl/sbin/zfs/Makefile.depend index bbd5273b1c9b..c3b3a22bb026 100644 --- a/cddl/sbin/zfs/Makefile.depend +++ b/cddl/sbin/zfs/Makefile.depend @@ -14,7 +14,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/cddl/sbin/zpool/Makefile.depend b/cddl/sbin/zpool/Makefile.depend index ee2b9c1e6e66..5486a80db25b 100644 --- a/cddl/sbin/zpool/Makefile.depend +++ b/cddl/sbin/zpool/Makefile.depend @@ -15,7 +15,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/cddl/usr.bin/sgsmsg/Makefile.depend b/cddl/usr.bin/sgsmsg/Makefile.depend index 659d7cca1ad8..56f580e457d3 100644 --- a/cddl/usr.bin/sgsmsg/Makefile.depend +++ b/cddl/usr.bin/sgsmsg/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ diff --git a/cddl/usr.bin/zinject/Makefile.depend b/cddl/usr.bin/zinject/Makefile.depend index 672391411234..529f1d7d5ddc 100644 --- a/cddl/usr.bin/zinject/Makefile.depend +++ b/cddl/usr.bin/zinject/Makefile.depend @@ -15,7 +15,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/cddl/usr.bin/zstreamdump/Makefile.depend b/cddl/usr.bin/zstreamdump/Makefile.depend index e31b2b34708f..b44a5fda14b7 100644 --- a/cddl/usr.bin/zstreamdump/Makefile.depend +++ b/cddl/usr.bin/zstreamdump/Makefile.depend @@ -13,7 +13,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libthr \ diff --git a/cddl/usr.bin/ztest/Makefile.depend b/cddl/usr.bin/ztest/Makefile.depend index 0c093416d1b6..2a76b0ebb740 100644 --- a/cddl/usr.bin/ztest/Makefile.depend +++ b/cddl/usr.bin/ztest/Makefile.depend @@ -16,7 +16,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/cddl/usr.sbin/lockstat/Makefile.depend b/cddl/usr.sbin/lockstat/Makefile.depend index 1accae89ba85..3dec902e6c68 100644 --- a/cddl/usr.sbin/lockstat/Makefile.depend +++ b/cddl/usr.sbin/lockstat/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/libelf \ diff --git a/cddl/usr.sbin/zdb/Makefile.depend b/cddl/usr.sbin/zdb/Makefile.depend index 672391411234..529f1d7d5ddc 100644 --- a/cddl/usr.sbin/zdb/Makefile.depend +++ b/cddl/usr.sbin/zdb/Makefile.depend @@ -15,7 +15,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/cddl/usr.sbin/zhack/Makefile.depend b/cddl/usr.sbin/zhack/Makefile.depend index 672391411234..529f1d7d5ddc 100644 --- a/cddl/usr.sbin/zhack/Makefile.depend +++ b/cddl/usr.sbin/zhack/Makefile.depend @@ -15,7 +15,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/games/bcd/Makefile.depend b/games/bcd/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/games/bcd/Makefile.depend +++ b/games/bcd/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/caesar/Makefile.depend b/games/caesar/Makefile.depend index 26b0cb7f5dde..da4f56b373df 100644 --- a/games/caesar/Makefile.depend +++ b/games/caesar/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/games/factor/Makefile.depend b/games/factor/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/games/factor/Makefile.depend +++ b/games/factor/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/games/fortune/fortune/Makefile.depend b/games/fortune/fortune/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/games/fortune/fortune/Makefile.depend +++ b/games/fortune/fortune/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/fortune/strfile/Makefile.depend b/games/fortune/strfile/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/games/fortune/strfile/Makefile.depend +++ b/games/fortune/strfile/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/fortune/unstr/Makefile.depend b/games/fortune/unstr/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/games/fortune/unstr/Makefile.depend +++ b/games/fortune/unstr/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/grdc/Makefile.depend b/games/grdc/Makefile.depend index 233a7c6cd0b8..4f4df6520bd4 100644 --- a/games/grdc/Makefile.depend +++ b/games/grdc/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/games/morse/Makefile.depend b/games/morse/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/games/morse/Makefile.depend +++ b/games/morse/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/number/Makefile.depend b/games/number/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/games/number/Makefile.depend +++ b/games/number/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/pom/Makefile.depend b/games/pom/Makefile.depend index 26b0cb7f5dde..da4f56b373df 100644 --- a/games/pom/Makefile.depend +++ b/games/pom/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/games/ppt/Makefile.depend b/games/ppt/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/games/ppt/Makefile.depend +++ b/games/ppt/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/games/primes/Makefile.depend b/games/primes/Makefile.depend index 26b0cb7f5dde..da4f56b373df 100644 --- a/games/primes/Makefile.depend +++ b/games/primes/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/games/random/Makefile.depend b/games/random/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/games/random/Makefile.depend +++ b/games/random/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/lib/libdialog/Makefile.depend b/gnu/lib/libdialog/Makefile.depend index 796e9bf46bb6..4f075dab95e0 100644 --- a/gnu/lib/libdialog/Makefile.depend +++ b/gnu/lib/libdialog/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncursesw \ + usr.bin/xinstall.host \ .include diff --git a/gnu/lib/libgcc/Makefile.depend b/gnu/lib/libgcc/Makefile.depend index 1fbfd7fffcf5..5a788db1e041 100644 --- a/gnu/lib/libgcc/Makefile.depend +++ b/gnu/lib/libgcc/Makefile.depend @@ -8,7 +8,7 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ + usr.bin/xinstall.host \ .include diff --git a/gnu/lib/libgomp/Makefile.depend b/gnu/lib/libgomp/Makefile.depend index 71accaeebd52..59f451a66000 100644 --- a/gnu/lib/libgomp/Makefile.depend +++ b/gnu/lib/libgomp/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/gnu/lib/libreadline/readline/Makefile.depend b/gnu/lib/libreadline/readline/Makefile.depend index 233a7c6cd0b8..c23402005508 100644 --- a/gnu/lib/libreadline/readline/Makefile.depend +++ b/gnu/lib/libreadline/readline/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ + usr.bin/xinstall.host \ .include diff --git a/gnu/lib/libregex/Makefile.depend b/gnu/lib/libregex/Makefile.depend index c64a40fd9bc1..aa86386d4c32 100644 --- a/gnu/lib/libregex/Makefile.depend +++ b/gnu/lib/libregex/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/gnu/lib/libstdc++/Makefile.depend b/gnu/lib/libstdc++/Makefile.depend index e24c102fd216..7155be6f266c 100644 --- a/gnu/lib/libstdc++/Makefile.depend +++ b/gnu/lib/libstdc++/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ + usr.bin/xinstall.host \ .include diff --git a/gnu/lib/libsupc++/Makefile.depend b/gnu/lib/libsupc++/Makefile.depend index 1afbe8be911c..dcb5bb9dea54 100644 --- a/gnu/lib/libsupc++/Makefile.depend +++ b/gnu/lib/libsupc++/Makefile.depend @@ -10,8 +10,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/gnu/usr.bin/binutils/addr2line/Makefile.depend b/gnu/usr.bin/binutils/addr2line/Makefile.depend index f720db2bf7fb..4ed5ef1f4a47 100644 --- a/gnu/usr.bin/binutils/addr2line/Makefile.depend +++ b/gnu/usr.bin/binutils/addr2line/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/nm/Makefile.depend b/gnu/usr.bin/binutils/nm/Makefile.depend index f720db2bf7fb..4ed5ef1f4a47 100644 --- a/gnu/usr.bin/binutils/nm/Makefile.depend +++ b/gnu/usr.bin/binutils/nm/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/objcopy/Makefile.depend b/gnu/usr.bin/binutils/objcopy/Makefile.depend index f720db2bf7fb..4ed5ef1f4a47 100644 --- a/gnu/usr.bin/binutils/objcopy/Makefile.depend +++ b/gnu/usr.bin/binutils/objcopy/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/objdump/Makefile.depend b/gnu/usr.bin/binutils/objdump/Makefile.depend index b21a71066e66..ca80e98ef859 100644 --- a/gnu/usr.bin/binutils/objdump/Makefile.depend +++ b/gnu/usr.bin/binutils/objdump/Makefile.depend @@ -13,7 +13,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/readelf/Makefile.depend b/gnu/usr.bin/binutils/readelf/Makefile.depend index f720db2bf7fb..4ed5ef1f4a47 100644 --- a/gnu/usr.bin/binutils/readelf/Makefile.depend +++ b/gnu/usr.bin/binutils/readelf/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/size/Makefile.depend b/gnu/usr.bin/binutils/size/Makefile.depend index f720db2bf7fb..4ed5ef1f4a47 100644 --- a/gnu/usr.bin/binutils/size/Makefile.depend +++ b/gnu/usr.bin/binutils/size/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/strings/Makefile.depend b/gnu/usr.bin/binutils/strings/Makefile.depend index f720db2bf7fb..4ed5ef1f4a47 100644 --- a/gnu/usr.bin/binutils/strings/Makefile.depend +++ b/gnu/usr.bin/binutils/strings/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/binutils/strip/Makefile.depend b/gnu/usr.bin/binutils/strip/Makefile.depend index f720db2bf7fb..4ed5ef1f4a47 100644 --- a/gnu/usr.bin/binutils/strip/Makefile.depend +++ b/gnu/usr.bin/binutils/strip/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/dialog/Makefile.depend b/gnu/usr.bin/dialog/Makefile.depend index 546cb43f4f04..d9cc8893dc80 100644 --- a/gnu/usr.bin/dialog/Makefile.depend +++ b/gnu/usr.bin/dialog/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncursesw \ diff --git a/gnu/usr.bin/diff3/Makefile.depend b/gnu/usr.bin/diff3/Makefile.depend index ead1ad513fac..71c3d5e9b0de 100644 --- a/gnu/usr.bin/diff3/Makefile.depend +++ b/gnu/usr.bin/diff3/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/gdb/gdb/Makefile.depend b/gnu/usr.bin/gdb/gdb/Makefile.depend index c3a2af4da2f6..4572bc150e30 100644 --- a/gnu/usr.bin/gdb/gdb/Makefile.depend +++ b/gnu/usr.bin/gdb/gdb/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/lib/libreadline/readline \ gnu/lib/libregex \ diff --git a/gnu/usr.bin/gdb/gdbserver/Makefile.depend b/gnu/usr.bin/gdb/gdbserver/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/gnu/usr.bin/gdb/gdbserver/Makefile.depend +++ b/gnu/usr.bin/gdb/gdbserver/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/gdb/gdbtui/Makefile.depend b/gnu/usr.bin/gdb/gdbtui/Makefile.depend index 8ba7b928ece2..1d50acab904e 100644 --- a/gnu/usr.bin/gdb/gdbtui/Makefile.depend +++ b/gnu/usr.bin/gdb/gdbtui/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/lib/libreadline/readline \ gnu/lib/libregex \ diff --git a/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 b/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 index d2192d3b2971..165f4f0ff780 100644 --- a/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 +++ b/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ gnu/lib/libreadline/readline \ gnu/lib/libregex \ diff --git a/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend index 97cb0bdfd01e..b5a6296105ba 100644 --- a/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend index 97cb0bdfd01e..b5a6296105ba 100644 --- a/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend index 97cb0bdfd01e..b5a6296105ba 100644 --- a/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend index 97cb0bdfd01e..b5a6296105ba 100644 --- a/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grops/Makefile.depend b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend index 97cb0bdfd01e..b5a6296105ba 100644 --- a/gnu/usr.bin/groff/src/devices/grops/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend index 97cb0bdfd01e..b5a6296105ba 100644 --- a/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend index f38013572255..78b43b7136d4 100644 --- a/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend index 6936f25a9e7a..df023f12a0d1 100644 --- a/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/html/Makefile.depend b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend index 6936f25a9e7a..df023f12a0d1 100644 --- a/gnu/usr.bin/groff/src/preproc/html/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend index aea5b2d8cc45..dd0bc4c6445a 100644 --- a/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend index 345d8fbb2d22..661e26a334fd 100644 --- a/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend b/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend index 6936f25a9e7a..df023f12a0d1 100644 --- a/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend index 6936f25a9e7a..df023f12a0d1 100644 --- a/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/roff/groff/Makefile.depend b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend index 6936f25a9e7a..df023f12a0d1 100644 --- a/gnu/usr.bin/groff/src/roff/groff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/roff/troff/Makefile.depend b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend index 80cfb86ca689..093a8eec5e78 100644 --- a/gnu/usr.bin/groff/src/roff/troff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend index 6936f25a9e7a..df023f12a0d1 100644 --- a/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend index 6936f25a9e7a..df023f12a0d1 100644 --- a/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend index 5f92b0df5f81..48d82090baa7 100644 --- a/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend index 5f92b0df5f81..48d82090baa7 100644 --- a/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend index 5f92b0df5f81..48d82090baa7 100644 --- a/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend index b4de74964106..fd3efc3ce774 100644 --- a/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend index 6936f25a9e7a..df023f12a0d1 100644 --- a/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libc++ \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/gnu/usr.bin/rcs/ci/Makefile.depend b/gnu/usr.bin/rcs/ci/Makefile.depend index 0e57857f4e80..12b27259d9a0 100644 --- a/gnu/usr.bin/rcs/ci/Makefile.depend +++ b/gnu/usr.bin/rcs/ci/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/co/Makefile.depend b/gnu/usr.bin/rcs/co/Makefile.depend index 0e57857f4e80..12b27259d9a0 100644 --- a/gnu/usr.bin/rcs/co/Makefile.depend +++ b/gnu/usr.bin/rcs/co/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/ident/Makefile.depend b/gnu/usr.bin/rcs/ident/Makefile.depend index 0e57857f4e80..12b27259d9a0 100644 --- a/gnu/usr.bin/rcs/ident/Makefile.depend +++ b/gnu/usr.bin/rcs/ident/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/merge/Makefile.depend b/gnu/usr.bin/rcs/merge/Makefile.depend index 0e57857f4e80..12b27259d9a0 100644 --- a/gnu/usr.bin/rcs/merge/Makefile.depend +++ b/gnu/usr.bin/rcs/merge/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/rcs/Makefile.depend b/gnu/usr.bin/rcs/rcs/Makefile.depend index 0e57857f4e80..12b27259d9a0 100644 --- a/gnu/usr.bin/rcs/rcs/Makefile.depend +++ b/gnu/usr.bin/rcs/rcs/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/rcsclean/Makefile.depend b/gnu/usr.bin/rcs/rcsclean/Makefile.depend index 0e57857f4e80..12b27259d9a0 100644 --- a/gnu/usr.bin/rcs/rcsclean/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsclean/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/rcsdiff/Makefile.depend b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend index 0e57857f4e80..12b27259d9a0 100644 --- a/gnu/usr.bin/rcs/rcsdiff/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/rcsmerge/Makefile.depend b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend index 0e57857f4e80..12b27259d9a0 100644 --- a/gnu/usr.bin/rcs/rcsmerge/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/rcs/rlog/Makefile.depend b/gnu/usr.bin/rcs/rlog/Makefile.depend index 0e57857f4e80..12b27259d9a0 100644 --- a/gnu/usr.bin/rcs/rlog/Makefile.depend +++ b/gnu/usr.bin/rcs/rlog/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/sdiff/Makefile.depend b/gnu/usr.bin/sdiff/Makefile.depend index 3c6803038b80..243191967bf4 100644 --- a/gnu/usr.bin/sdiff/Makefile.depend +++ b/gnu/usr.bin/sdiff/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/texinfo/info/Makefile.depend b/gnu/usr.bin/texinfo/info/Makefile.depend index 4300e83bcc16..1afa811efa51 100644 --- a/gnu/usr.bin/texinfo/info/Makefile.depend +++ b/gnu/usr.bin/texinfo/info/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/gnu/usr.bin/texinfo/infokey/Makefile.depend b/gnu/usr.bin/texinfo/infokey/Makefile.depend index adec3fdafec6..ffe9a50f8400 100644 --- a/gnu/usr.bin/texinfo/infokey/Makefile.depend +++ b/gnu/usr.bin/texinfo/infokey/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/texinfo/install-info/Makefile.depend b/gnu/usr.bin/texinfo/install-info/Makefile.depend index adec3fdafec6..ffe9a50f8400 100644 --- a/gnu/usr.bin/texinfo/install-info/Makefile.depend +++ b/gnu/usr.bin/texinfo/install-info/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/texinfo/makeinfo/Makefile.depend b/gnu/usr.bin/texinfo/makeinfo/Makefile.depend index adec3fdafec6..ffe9a50f8400 100644 --- a/gnu/usr.bin/texinfo/makeinfo/Makefile.depend +++ b/gnu/usr.bin/texinfo/makeinfo/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/gnu/usr.bin/texinfo/texindex/Makefile.depend b/gnu/usr.bin/texinfo/texindex/Makefile.depend index adec3fdafec6..ffe9a50f8400 100644 --- a/gnu/usr.bin/texinfo/texindex/Makefile.depend +++ b/gnu/usr.bin/texinfo/texindex/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/include/Makefile.depend b/include/Makefile.depend index 57b7e10c3d71..8b97128420c9 100644 --- a/include/Makefile.depend +++ b/include/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libasn1/Makefile.depend b/kerberos5/lib/libasn1/Makefile.depend index a8e1a3f5ba33..ef5a7ac2bb05 100644 --- a/kerberos5/lib/libasn1/Makefile.depend +++ b/kerberos5/lib/libasn1/Makefile.depend @@ -11,9 +11,9 @@ DIRDEPS = \ kerberos5/lib/libroken \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcom_err \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libgssapi_krb5/Makefile.depend b/kerberos5/lib/libgssapi_krb5/Makefile.depend index 3806b8fdf44b..53eaa7a7933b 100644 --- a/kerberos5/lib/libgssapi_krb5/Makefile.depend +++ b/kerberos5/lib/libgssapi_krb5/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -20,6 +21,7 @@ DIRDEPS = \ lib/libcrypt \ lib/libgssapi \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libgssapi_ntlm/Makefile.depend b/kerberos5/lib/libgssapi_ntlm/Makefile.depend index 750e245754e2..a43012612ccf 100644 --- a/kerberos5/lib/libgssapi_ntlm/Makefile.depend +++ b/kerberos5/lib/libgssapi_ntlm/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -17,6 +18,7 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libgssapi \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libgssapi_spnego/Makefile.depend b/kerberos5/lib/libgssapi_spnego/Makefile.depend index 4c515bba5be2..6fd1d4bc7afc 100644 --- a/kerberos5/lib/libgssapi_spnego/Makefile.depend +++ b/kerberos5/lib/libgssapi_spnego/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -15,6 +16,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libgssapi \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libhdb/Makefile.depend b/kerberos5/lib/libhdb/Makefile.depend index 57b04f9a36d4..b4e36db527fa 100644 --- a/kerberos5/lib/libhdb/Makefile.depend +++ b/kerberos5/lib/libhdb/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -19,6 +20,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libheimbase/Makefile.depend b/kerberos5/lib/libheimbase/Makefile.depend index e1ba49601114..37acbe0cd621 100644 --- a/kerberos5/lib/libheimbase/Makefile.depend +++ b/kerberos5/lib/libheimbase/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libheimipcc/Makefile.depend b/kerberos5/lib/libheimipcc/Makefile.depend index 1bd43f6f3360..2e6c752672cd 100644 --- a/kerberos5/lib/libheimipcc/Makefile.depend +++ b/kerberos5/lib/libheimipcc/Makefile.depend @@ -13,9 +13,9 @@ DIRDEPS = \ kerberos5/lib/libroken \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libheimipcs/Makefile.depend b/kerberos5/lib/libheimipcs/Makefile.depend index 7e91e8acea5a..b025a8a77f0a 100644 --- a/kerberos5/lib/libheimipcs/Makefile.depend +++ b/kerberos5/lib/libheimipcs/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -15,6 +16,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libthr \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libheimntlm/Makefile.depend b/kerberos5/lib/libheimntlm/Makefile.depend index 80d5c7a4d4be..3efab050e19f 100644 --- a/kerberos5/lib/libheimntlm/Makefile.depend +++ b/kerberos5/lib/libheimntlm/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -15,6 +16,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libheimsqlite/Makefile.depend b/kerberos5/lib/libheimsqlite/Makefile.depend index 13680b314856..2fe55c2304c6 100644 --- a/kerberos5/lib/libheimsqlite/Makefile.depend +++ b/kerberos5/lib/libheimsqlite/Makefile.depend @@ -8,9 +8,9 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libhx509/Makefile.depend b/kerberos5/lib/libhx509/Makefile.depend index a0673df9d6d6..c36ae15e2a48 100644 --- a/kerberos5/lib/libhx509/Makefile.depend +++ b/kerberos5/lib/libhx509/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -15,6 +16,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libkadm5clnt/Makefile.depend b/kerberos5/lib/libkadm5clnt/Makefile.depend index 8481de4880e0..8cb61ee781af 100644 --- a/kerberos5/lib/libkadm5clnt/Makefile.depend +++ b/kerberos5/lib/libkadm5clnt/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -15,6 +16,7 @@ DIRDEPS = \ lib/libc \ lib/libcom_err \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libkadm5srv/Makefile.depend b/kerberos5/lib/libkadm5srv/Makefile.depend index 58c19dcc9660..48db2a548135 100644 --- a/kerberos5/lib/libkadm5srv/Makefile.depend +++ b/kerberos5/lib/libkadm5srv/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -15,6 +16,7 @@ DIRDEPS = \ lib/libc \ lib/libcom_err \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libkafs5/Makefile.depend b/kerberos5/lib/libkafs5/Makefile.depend index 1abcc6a570df..3eaa22ab602c 100644 --- a/kerberos5/lib/libkafs5/Makefile.depend +++ b/kerberos5/lib/libkafs5/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -14,6 +15,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libkdc/Makefile.depend b/kerberos5/lib/libkdc/Makefile.depend index b906e0fbfef4..14e302a31bea 100644 --- a/kerberos5/lib/libkdc/Makefile.depend +++ b/kerberos5/lib/libkdc/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -22,6 +23,7 @@ DIRDEPS = \ lib/libcrypt \ lib/libutil \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libkrb5/Makefile.depend b/kerberos5/lib/libkrb5/Makefile.depend index 420c842f72d0..3e1417105421 100644 --- a/kerberos5/lib/libkrb5/Makefile.depend +++ b/kerberos5/lib/libkrb5/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -19,6 +20,7 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libcrypt \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libroken/Makefile.depend b/kerberos5/lib/libroken/Makefile.depend index 27304ee9f793..631ef86406f8 100644 --- a/kerberos5/lib/libroken/Makefile.depend +++ b/kerberos5/lib/libroken/Makefile.depend @@ -10,9 +10,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/lib/libwind/Makefile.depend b/kerberos5/lib/libwind/Makefile.depend index 5e661c1bddb2..eb1ed587d341 100644 --- a/kerberos5/lib/libwind/Makefile.depend +++ b/kerberos5/lib/libwind/Makefile.depend @@ -11,9 +11,9 @@ DIRDEPS = \ kerberos5/lib/libroken \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcom_err \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/kerberos5/libexec/digest-service/Makefile.depend b/kerberos5/libexec/digest-service/Makefile.depend index 898ac2e02ce8..2ced5dae0874 100644 --- a/kerberos5/libexec/digest-service/Makefile.depend +++ b/kerberos5/libexec/digest-service/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/libexec/hprop/Makefile.depend b/kerberos5/libexec/hprop/Makefile.depend index 26bea350cb0d..b407aae6d99d 100644 --- a/kerberos5/libexec/hprop/Makefile.depend +++ b/kerberos5/libexec/hprop/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/libexec/hpropd/Makefile.depend b/kerberos5/libexec/hpropd/Makefile.depend index 053da8cc1e3a..63599a91e694 100644 --- a/kerberos5/libexec/hpropd/Makefile.depend +++ b/kerberos5/libexec/hpropd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/libexec/ipropd-master/Makefile.depend b/kerberos5/libexec/ipropd-master/Makefile.depend index d204f959c357..4cd3c9b1e3d3 100644 --- a/kerberos5/libexec/ipropd-master/Makefile.depend +++ b/kerberos5/libexec/ipropd-master/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/libexec/ipropd-slave/Makefile.depend b/kerberos5/libexec/ipropd-slave/Makefile.depend index c55271d163dc..5adbfed78c72 100644 --- a/kerberos5/libexec/ipropd-slave/Makefile.depend +++ b/kerberos5/libexec/ipropd-slave/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/libexec/kadmind/Makefile.depend b/kerberos5/libexec/kadmind/Makefile.depend index 5c380b2df6ac..ff1fa9fb1f0e 100644 --- a/kerberos5/libexec/kadmind/Makefile.depend +++ b/kerberos5/libexec/kadmind/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/libexec/kcm/Makefile.depend b/kerberos5/libexec/kcm/Makefile.depend index b9d7a6d3f8c8..35a316f8b7ac 100644 --- a/kerberos5/libexec/kcm/Makefile.depend +++ b/kerberos5/libexec/kcm/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/libexec/kdc/Makefile.depend b/kerberos5/libexec/kdc/Makefile.depend index fe889f155981..814936143089 100644 --- a/kerberos5/libexec/kdc/Makefile.depend +++ b/kerberos5/libexec/kdc/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/libexec/kdigest/Makefile.depend b/kerberos5/libexec/kdigest/Makefile.depend index 05ab28f57f02..28e098540a89 100644 --- a/kerberos5/libexec/kdigest/Makefile.depend +++ b/kerberos5/libexec/kdigest/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/libexec/kfd/Makefile.depend b/kerberos5/libexec/kfd/Makefile.depend index 94c1eaa6520d..ff20361da26b 100644 --- a/kerberos5/libexec/kfd/Makefile.depend +++ b/kerberos5/libexec/kfd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/libexec/kimpersonate/Makefile.depend b/kerberos5/libexec/kimpersonate/Makefile.depend index 8bbf5d756990..3a7e74bf4d5e 100644 --- a/kerberos5/libexec/kimpersonate/Makefile.depend +++ b/kerberos5/libexec/kimpersonate/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/libexec/kpasswdd/Makefile.depend b/kerberos5/libexec/kpasswdd/Makefile.depend index 7d45ea20def9..2cda4e9e15c0 100644 --- a/kerberos5/libexec/kpasswdd/Makefile.depend +++ b/kerberos5/libexec/kpasswdd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/tools/asn1_compile/Makefile.depend b/kerberos5/tools/asn1_compile/Makefile.depend index 2d1668bda45c..2364b2929905 100644 --- a/kerberos5/tools/asn1_compile/Makefile.depend +++ b/kerberos5/tools/asn1_compile/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/kerberos5/tools/make-roken/Makefile.depend b/kerberos5/tools/make-roken/Makefile.depend index c515f44f9e7d..0347dd3a14ae 100644 --- a/kerberos5/tools/make-roken/Makefile.depend +++ b/kerberos5/tools/make-roken/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/kerberos5/tools/slc/Makefile.depend b/kerberos5/tools/slc/Makefile.depend index 752a34352cc2..8c9acfb604b3 100644 --- a/kerberos5/tools/slc/Makefile.depend +++ b/kerberos5/tools/slc/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/kerberos5/usr.bin/hxtool/Makefile.depend b/kerberos5/usr.bin/hxtool/Makefile.depend index 5f5b0c89c678..fc0959323f07 100644 --- a/kerberos5/usr.bin/hxtool/Makefile.depend +++ b/kerberos5/usr.bin/hxtool/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.bin/kadmin/Makefile.depend b/kerberos5/usr.bin/kadmin/Makefile.depend index 378e201cd505..17a95c6a6b70 100644 --- a/kerberos5/usr.bin/kadmin/Makefile.depend +++ b/kerberos5/usr.bin/kadmin/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.bin/kcc/Makefile.depend b/kerberos5/usr.bin/kcc/Makefile.depend index 3a3a863a001e..57e50ba9ef60 100644 --- a/kerberos5/usr.bin/kcc/Makefile.depend +++ b/kerberos5/usr.bin/kcc/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.bin/kdestroy/Makefile.depend b/kerberos5/usr.bin/kdestroy/Makefile.depend index 8bbf5d756990..3a7e74bf4d5e 100644 --- a/kerberos5/usr.bin/kdestroy/Makefile.depend +++ b/kerberos5/usr.bin/kdestroy/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.bin/kf/Makefile.depend b/kerberos5/usr.bin/kf/Makefile.depend index 94c1eaa6520d..ff20361da26b 100644 --- a/kerberos5/usr.bin/kf/Makefile.depend +++ b/kerberos5/usr.bin/kf/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.bin/kgetcred/Makefile.depend b/kerberos5/usr.bin/kgetcred/Makefile.depend index 6ac7a46f3ff8..0bc3ece1140b 100644 --- a/kerberos5/usr.bin/kgetcred/Makefile.depend +++ b/kerberos5/usr.bin/kgetcred/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.bin/kinit/Makefile.depend b/kerberos5/usr.bin/kinit/Makefile.depend index 8bbf5d756990..3a7e74bf4d5e 100644 --- a/kerberos5/usr.bin/kinit/Makefile.depend +++ b/kerberos5/usr.bin/kinit/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.bin/kpasswd/Makefile.depend b/kerberos5/usr.bin/kpasswd/Makefile.depend index 693ae4b476bd..6a1350b452c9 100644 --- a/kerberos5/usr.bin/kpasswd/Makefile.depend +++ b/kerberos5/usr.bin/kpasswd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.bin/ksu/Makefile.depend b/kerberos5/usr.bin/ksu/Makefile.depend index 6ac7a46f3ff8..0bc3ece1140b 100644 --- a/kerberos5/usr.bin/ksu/Makefile.depend +++ b/kerberos5/usr.bin/ksu/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.bin/string2key/Makefile.depend b/kerberos5/usr.bin/string2key/Makefile.depend index 053da8cc1e3a..63599a91e694 100644 --- a/kerberos5/usr.bin/string2key/Makefile.depend +++ b/kerberos5/usr.bin/string2key/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend index 6ac7a46f3ff8..0bc3ece1140b 100644 --- a/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend +++ b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.sbin/iprop-log/Makefile.depend b/kerberos5/usr.sbin/iprop-log/Makefile.depend index adaaf0433614..5cbb43b7a402 100644 --- a/kerberos5/usr.sbin/iprop-log/Makefile.depend +++ b/kerberos5/usr.sbin/iprop-log/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.sbin/kstash/Makefile.depend b/kerberos5/usr.sbin/kstash/Makefile.depend index 053da8cc1e3a..63599a91e694 100644 --- a/kerberos5/usr.sbin/kstash/Makefile.depend +++ b/kerberos5/usr.sbin/kstash/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/kerberos5/usr.sbin/ktutil/Makefile.depend b/kerberos5/usr.sbin/ktutil/Makefile.depend index 9c7835106721..7cee2f03d5c2 100644 --- a/kerberos5/usr.sbin/ktutil/Makefile.depend +++ b/kerberos5/usr.sbin/ktutil/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/lib/atf/libatf-c++/Makefile.depend b/lib/atf/libatf-c++/Makefile.depend index 6f092c911531..c93850e2886e 100644 --- a/lib/atf/libatf-c++/Makefile.depend +++ b/lib/atf/libatf-c++/Makefile.depend @@ -3,17 +3,11 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/csu \ - gnu/lib/libgcc \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ - lib/${CSU_DIR} \ lib/atf/libatf-c \ - lib/libc \ - lib/libc_nonshared \ - lib/libcompiler_rt \ + lib/libc++ \ + usr.bin/xinstall.host \ .include diff --git a/lib/atf/libatf-c/Makefile.depend b/lib/atf/libatf-c/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/atf/libatf-c/Makefile.depend +++ b/lib/atf/libatf-c/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/clang/libclanganalysis/Makefile.depend b/lib/clang/libclanganalysis/Makefile.depend index c50852eb86f5..3e73ed20437f 100644 --- a/lib/clang/libclanganalysis/Makefile.depend +++ b/lib/clang/libclanganalysis/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ @@ -59,6 +58,18 @@ CocoaConventions.o: DeclNodes.inc.h CocoaConventions.o: DiagnosticCommonKinds.inc.h CocoaConventions.po: DeclNodes.inc.h CocoaConventions.po: DiagnosticCommonKinds.inc.h +Consumed.o: AttrList.inc.h +Consumed.o: Attrs.inc.h +Consumed.o: CommentCommandList.inc.h +Consumed.o: DeclNodes.inc.h +Consumed.o: DiagnosticCommonKinds.inc.h +Consumed.o: StmtNodes.inc.h +Consumed.po: AttrList.inc.h +Consumed.po: Attrs.inc.h +Consumed.po: CommentCommandList.inc.h +Consumed.po: DeclNodes.inc.h +Consumed.po: DiagnosticCommonKinds.inc.h +Consumed.po: StmtNodes.inc.h Dominators.o: DeclNodes.inc.h Dominators.o: DiagnosticCommonKinds.inc.h Dominators.o: StmtNodes.inc.h diff --git a/lib/clang/libclangarcmigrate/Makefile.depend b/lib/clang/libclangarcmigrate/Makefile.depend index 5ce1899a364a..91f16dcf6e63 100644 --- a/lib/clang/libclangarcmigrate/Makefile.depend +++ b/lib/clang/libclangarcmigrate/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ @@ -15,18 +14,14 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -ARCMT.o: AttrList.inc.h ARCMT.o: AttrParsedAttrList.inc.h -ARCMT.o: Attrs.inc.h ARCMT.o: CommentCommandList.inc.h ARCMT.o: DeclNodes.inc.h ARCMT.o: DiagnosticCommonKinds.inc.h ARCMT.o: DiagnosticGroups.inc.h ARCMT.o: DiagnosticSemaKinds.inc.h ARCMT.o: StmtNodes.inc.h -ARCMT.po: AttrList.inc.h ARCMT.po: AttrParsedAttrList.inc.h -ARCMT.po: Attrs.inc.h ARCMT.po: CommentCommandList.inc.h ARCMT.po: DeclNodes.inc.h ARCMT.po: DiagnosticCommonKinds.inc.h @@ -37,10 +32,14 @@ ARCMTActions.o: DiagnosticCommonKinds.inc.h ARCMTActions.po: DiagnosticCommonKinds.inc.h FileRemapper.o: DiagnosticCommonKinds.inc.h FileRemapper.po: DiagnosticCommonKinds.inc.h +ObjCMT.o: AttrList.inc.h +ObjCMT.o: Attrs.inc.h ObjCMT.o: CommentCommandList.inc.h ObjCMT.o: DeclNodes.inc.h ObjCMT.o: DiagnosticCommonKinds.inc.h ObjCMT.o: StmtNodes.inc.h +ObjCMT.po: AttrList.inc.h +ObjCMT.po: Attrs.inc.h ObjCMT.po: CommentCommandList.inc.h ObjCMT.po: DeclNodes.inc.h ObjCMT.po: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangast/Makefile.depend b/lib/clang/libclangast/Makefile.depend index 44813d64bf45..eccc381966dd 100644 --- a/lib/clang/libclangast/Makefile.depend +++ b/lib/clang/libclangast/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ @@ -77,6 +76,14 @@ ASTImporter.po: DeclNodes.inc.h ASTImporter.po: DiagnosticASTKinds.inc.h ASTImporter.po: DiagnosticCommonKinds.inc.h ASTImporter.po: StmtNodes.inc.h +ASTTypeTraits.o: CommentCommandList.inc.h +ASTTypeTraits.o: DeclNodes.inc.h +ASTTypeTraits.o: DiagnosticCommonKinds.inc.h +ASTTypeTraits.o: StmtNodes.inc.h +ASTTypeTraits.po: CommentCommandList.inc.h +ASTTypeTraits.po: DeclNodes.inc.h +ASTTypeTraits.po: DiagnosticCommonKinds.inc.h +ASTTypeTraits.po: StmtNodes.inc.h AttrImpl.o: AttrImpl.inc.h AttrImpl.o: AttrList.inc.h AttrImpl.o: Attrs.inc.h @@ -251,18 +258,6 @@ DeclarationName.po: CommentCommandList.inc.h DeclarationName.po: DeclNodes.inc.h DeclarationName.po: DiagnosticCommonKinds.inc.h DeclarationName.po: StmtNodes.inc.h -DumpXML.o: AttrList.inc.h -DumpXML.o: Attrs.inc.h -DumpXML.o: CommentCommandList.inc.h -DumpXML.o: DeclNodes.inc.h -DumpXML.o: DiagnosticCommonKinds.inc.h -DumpXML.o: StmtNodes.inc.h -DumpXML.po: AttrList.inc.h -DumpXML.po: Attrs.inc.h -DumpXML.po: CommentCommandList.inc.h -DumpXML.po: DeclNodes.inc.h -DumpXML.po: DiagnosticCommonKinds.inc.h -DumpXML.po: StmtNodes.inc.h Expr.o: AttrList.inc.h Expr.o: Attrs.inc.h Expr.o: CommentCommandList.inc.h @@ -339,22 +334,26 @@ ItaniumMangle.po: CommentCommandList.inc.h ItaniumMangle.po: DeclNodes.inc.h ItaniumMangle.po: DiagnosticCommonKinds.inc.h ItaniumMangle.po: StmtNodes.inc.h -LambdaMangleContext.o: CommentCommandList.inc.h -LambdaMangleContext.o: DeclNodes.inc.h -LambdaMangleContext.o: DiagnosticCommonKinds.inc.h -LambdaMangleContext.o: StmtNodes.inc.h -LambdaMangleContext.po: CommentCommandList.inc.h -LambdaMangleContext.po: DeclNodes.inc.h -LambdaMangleContext.po: DiagnosticCommonKinds.inc.h -LambdaMangleContext.po: StmtNodes.inc.h +Mangle.o: AttrList.inc.h +Mangle.o: Attrs.inc.h Mangle.o: CommentCommandList.inc.h Mangle.o: DeclNodes.inc.h Mangle.o: DiagnosticCommonKinds.inc.h Mangle.o: StmtNodes.inc.h +Mangle.po: AttrList.inc.h +Mangle.po: Attrs.inc.h Mangle.po: CommentCommandList.inc.h Mangle.po: DeclNodes.inc.h Mangle.po: DiagnosticCommonKinds.inc.h Mangle.po: StmtNodes.inc.h +MangleNumberingContext.o: CommentCommandList.inc.h +MangleNumberingContext.o: DeclNodes.inc.h +MangleNumberingContext.o: DiagnosticCommonKinds.inc.h +MangleNumberingContext.o: StmtNodes.inc.h +MangleNumberingContext.po: CommentCommandList.inc.h +MangleNumberingContext.po: DeclNodes.inc.h +MangleNumberingContext.po: DiagnosticCommonKinds.inc.h +MangleNumberingContext.po: StmtNodes.inc.h MicrosoftCXXABI.o: AttrList.inc.h MicrosoftCXXABI.o: Attrs.inc.h MicrosoftCXXABI.o: CommentCommandList.inc.h diff --git a/lib/clang/libclangbasic/Makefile.depend b/lib/clang/libclangbasic/Makefile.depend index 30ba0f01f0d8..6d3d657869a5 100644 --- a/lib/clang/libclangbasic/Makefile.depend +++ b/lib/clang/libclangbasic/Makefile.depend @@ -3,11 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ - lib/clang/include \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ diff --git a/lib/clang/libclangcodegen/Makefile.depend b/lib/clang/libclangcodegen/Makefile.depend index 68834643e118..611aebbd68d8 100644 --- a/lib/clang/libclangcodegen/Makefile.depend +++ b/lib/clang/libclangcodegen/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ usr.bin/clang/tblgen.host \ @@ -377,6 +376,7 @@ CGStmt.o: Attrs.inc.h CGStmt.o: CommentCommandList.inc.h CGStmt.o: DeclNodes.inc.h CGStmt.o: DiagnosticCommonKinds.inc.h +CGStmt.o: DiagnosticSemaKinds.inc.h CGStmt.o: Intrinsics.inc.h CGStmt.o: StmtNodes.inc.h CGStmt.po: AttrList.inc.h @@ -384,6 +384,7 @@ CGStmt.po: Attrs.inc.h CGStmt.po: CommentCommandList.inc.h CGStmt.po: DeclNodes.inc.h CGStmt.po: DiagnosticCommonKinds.inc.h +CGStmt.po: DiagnosticSemaKinds.inc.h CGStmt.po: Intrinsics.inc.h CGStmt.po: StmtNodes.inc.h CGVTT.o: AttrList.inc.h @@ -410,6 +411,18 @@ CGVTables.po: CommentCommandList.inc.h CGVTables.po: DeclNodes.inc.h CGVTables.po: DiagnosticCommonKinds.inc.h CGVTables.po: StmtNodes.inc.h +CodeGenABITypes.o: AttrList.inc.h +CodeGenABITypes.o: Attrs.inc.h +CodeGenABITypes.o: CommentCommandList.inc.h +CodeGenABITypes.o: DeclNodes.inc.h +CodeGenABITypes.o: DiagnosticCommonKinds.inc.h +CodeGenABITypes.o: StmtNodes.inc.h +CodeGenABITypes.po: AttrList.inc.h +CodeGenABITypes.po: Attrs.inc.h +CodeGenABITypes.po: CommentCommandList.inc.h +CodeGenABITypes.po: DeclNodes.inc.h +CodeGenABITypes.po: DiagnosticCommonKinds.inc.h +CodeGenABITypes.po: StmtNodes.inc.h CodeGenAction.o: CommentCommandList.inc.h CodeGenAction.o: DeclNodes.inc.h CodeGenAction.o: DiagnosticCommonKinds.inc.h @@ -439,6 +452,7 @@ CodeGenModule.o: Attrs.inc.h CodeGenModule.o: CommentCommandList.inc.h CodeGenModule.o: DeclNodes.inc.h CodeGenModule.o: DiagnosticCommonKinds.inc.h +CodeGenModule.o: DiagnosticSemaKinds.inc.h CodeGenModule.o: Intrinsics.inc.h CodeGenModule.o: StmtNodes.inc.h CodeGenModule.po: AttrList.inc.h @@ -446,6 +460,7 @@ CodeGenModule.po: Attrs.inc.h CodeGenModule.po: CommentCommandList.inc.h CodeGenModule.po: DeclNodes.inc.h CodeGenModule.po: DiagnosticCommonKinds.inc.h +CodeGenModule.po: DiagnosticSemaKinds.inc.h CodeGenModule.po: Intrinsics.inc.h CodeGenModule.po: StmtNodes.inc.h CodeGenTBAA.o: AttrList.inc.h @@ -498,6 +513,18 @@ MicrosoftCXXABI.po: CommentCommandList.inc.h MicrosoftCXXABI.po: DeclNodes.inc.h MicrosoftCXXABI.po: DiagnosticCommonKinds.inc.h MicrosoftCXXABI.po: StmtNodes.inc.h +MicrosoftVBTables.o: AttrList.inc.h +MicrosoftVBTables.o: Attrs.inc.h +MicrosoftVBTables.o: CommentCommandList.inc.h +MicrosoftVBTables.o: DeclNodes.inc.h +MicrosoftVBTables.o: DiagnosticCommonKinds.inc.h +MicrosoftVBTables.o: StmtNodes.inc.h +MicrosoftVBTables.po: AttrList.inc.h +MicrosoftVBTables.po: Attrs.inc.h +MicrosoftVBTables.po: CommentCommandList.inc.h +MicrosoftVBTables.po: DeclNodes.inc.h +MicrosoftVBTables.po: DiagnosticCommonKinds.inc.h +MicrosoftVBTables.po: StmtNodes.inc.h ModuleBuilder.o: AttrList.inc.h ModuleBuilder.o: Attrs.inc.h ModuleBuilder.o: CommentCommandList.inc.h diff --git a/lib/clang/libclangdriver/Makefile.depend b/lib/clang/libclangdriver/Makefile.depend index 1859c3ba4e8c..6c6cde521e99 100644 --- a/lib/clang/libclangdriver/Makefile.depend +++ b/lib/clang/libclangdriver/Makefile.depend @@ -3,22 +3,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ + usr.bin/clang/tblgen.host \ .include .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -ArgList.o: DiagnosticCommonKinds.inc.h -ArgList.o: DiagnosticDriverKinds.inc.h -ArgList.po: DiagnosticCommonKinds.inc.h -ArgList.po: DiagnosticDriverKinds.inc.h CC1AsOptions.o: CC1AsOptions.inc.h CC1AsOptions.po: CC1AsOptions.inc.h Compilation.o: DiagnosticCommonKinds.inc.h @@ -35,8 +31,12 @@ Driver.po: DiagnosticDriverKinds.inc.h Driver.po: Options.inc.h DriverOptions.o: Options.inc.h DriverOptions.po: Options.inc.h -OptTable.o: Options.inc.h -OptTable.po: Options.inc.h +SanitizerArgs.o: DiagnosticCommonKinds.inc.h +SanitizerArgs.o: DiagnosticDriverKinds.inc.h +SanitizerArgs.o: Options.inc.h +SanitizerArgs.po: DiagnosticCommonKinds.inc.h +SanitizerArgs.po: DiagnosticDriverKinds.inc.h +SanitizerArgs.po: Options.inc.h ToolChain.o: DiagnosticCommonKinds.inc.h ToolChain.o: DiagnosticDriverKinds.inc.h ToolChain.o: Options.inc.h @@ -51,9 +51,11 @@ ToolChains.po: DiagnosticDriverKinds.inc.h ToolChains.po: Options.inc.h Tools.o: DiagnosticCommonKinds.inc.h Tools.o: DiagnosticDriverKinds.inc.h +Tools.o: DiagnosticSemaKinds.inc.h Tools.o: Options.inc.h Tools.po: DiagnosticCommonKinds.inc.h Tools.po: DiagnosticDriverKinds.inc.h +Tools.po: DiagnosticSemaKinds.inc.h Tools.po: Options.inc.h WindowsToolChain.o: DiagnosticCommonKinds.inc.h WindowsToolChain.o: DiagnosticDriverKinds.inc.h diff --git a/lib/clang/libclangedit/Makefile.depend b/lib/clang/libclangedit/Makefile.depend index 2781622df92d..05b479b95959 100644 --- a/lib/clang/libclangedit/Makefile.depend +++ b/lib/clang/libclangedit/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ diff --git a/lib/clang/libclangfrontend/Makefile.depend b/lib/clang/libclangfrontend/Makefile.depend index 7191baf2c803..870ea103360b 100644 --- a/lib/clang/libclangfrontend/Makefile.depend +++ b/lib/clang/libclangfrontend/Makefile.depend @@ -3,12 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ + usr.bin/clang/tblgen.host \ .include @@ -23,17 +23,11 @@ ASTConsumers.po: CommentCommandList.inc.h ASTConsumers.po: DeclNodes.inc.h ASTConsumers.po: DiagnosticCommonKinds.inc.h ASTConsumers.po: StmtNodes.inc.h -ASTMerge.o: AttrList.inc.h -ASTMerge.o: AttrParsedAttrList.inc.h -ASTMerge.o: Attrs.inc.h ASTMerge.o: CommentCommandList.inc.h ASTMerge.o: DeclNodes.inc.h ASTMerge.o: DiagnosticASTKinds.inc.h ASTMerge.o: DiagnosticCommonKinds.inc.h ASTMerge.o: StmtNodes.inc.h -ASTMerge.po: AttrList.inc.h -ASTMerge.po: AttrParsedAttrList.inc.h -ASTMerge.po: Attrs.inc.h ASTMerge.po: CommentCommandList.inc.h ASTMerge.po: DeclNodes.inc.h ASTMerge.po: DiagnosticASTKinds.inc.h @@ -59,16 +53,12 @@ CacheTokens.o: DiagnosticCommonKinds.inc.h CacheTokens.po: DiagnosticCommonKinds.inc.h ChainedDiagnosticConsumer.o: DiagnosticCommonKinds.inc.h ChainedDiagnosticConsumer.po: DiagnosticCommonKinds.inc.h -ChainedIncludesSource.o: AttrList.inc.h ChainedIncludesSource.o: AttrParsedAttrList.inc.h -ChainedIncludesSource.o: Attrs.inc.h ChainedIncludesSource.o: CommentCommandList.inc.h ChainedIncludesSource.o: DeclNodes.inc.h ChainedIncludesSource.o: DiagnosticCommonKinds.inc.h ChainedIncludesSource.o: StmtNodes.inc.h -ChainedIncludesSource.po: AttrList.inc.h ChainedIncludesSource.po: AttrParsedAttrList.inc.h -ChainedIncludesSource.po: Attrs.inc.h ChainedIncludesSource.po: CommentCommandList.inc.h ChainedIncludesSource.po: DeclNodes.inc.h ChainedIncludesSource.po: DiagnosticCommonKinds.inc.h @@ -89,14 +79,18 @@ CompilerInstance.po: DeclNodes.inc.h CompilerInstance.po: DiagnosticCommonKinds.inc.h CompilerInstance.po: DiagnosticFrontendKinds.inc.h CompilerInstance.po: StmtNodes.inc.h +CompilerInvocation.o: AttrParsedAttrList.inc.h CompilerInvocation.o: DeclNodes.inc.h CompilerInvocation.o: DiagnosticCommonKinds.inc.h CompilerInvocation.o: DiagnosticDriverKinds.inc.h CompilerInvocation.o: Options.inc.h +CompilerInvocation.o: StmtNodes.inc.h +CompilerInvocation.po: AttrParsedAttrList.inc.h CompilerInvocation.po: DeclNodes.inc.h CompilerInvocation.po: DiagnosticCommonKinds.inc.h CompilerInvocation.po: DiagnosticDriverKinds.inc.h CompilerInvocation.po: Options.inc.h +CompilerInvocation.po: StmtNodes.inc.h CreateInvocationFromCommandLine.o: DiagnosticCommonKinds.inc.h CreateInvocationFromCommandLine.o: DiagnosticFrontendKinds.inc.h CreateInvocationFromCommandLine.o: Options.inc.h @@ -115,17 +109,13 @@ DependencyGraph.po: DiagnosticCommonKinds.inc.h DependencyGraph.po: DiagnosticFrontendKinds.inc.h DiagnosticRenderer.o: DiagnosticCommonKinds.inc.h DiagnosticRenderer.po: DiagnosticCommonKinds.inc.h -FrontendAction.o: AttrList.inc.h FrontendAction.o: AttrParsedAttrList.inc.h -FrontendAction.o: Attrs.inc.h FrontendAction.o: CommentCommandList.inc.h FrontendAction.o: DeclNodes.inc.h FrontendAction.o: DiagnosticCommonKinds.inc.h FrontendAction.o: DiagnosticFrontendKinds.inc.h FrontendAction.o: StmtNodes.inc.h -FrontendAction.po: AttrList.inc.h FrontendAction.po: AttrParsedAttrList.inc.h -FrontendAction.po: Attrs.inc.h FrontendAction.po: CommentCommandList.inc.h FrontendAction.po: DeclNodes.inc.h FrontendAction.po: DiagnosticCommonKinds.inc.h @@ -153,12 +143,16 @@ HeaderIncludeGen.po: DiagnosticCommonKinds.inc.h HeaderIncludeGen.po: DiagnosticFrontendKinds.inc.h InitHeaderSearch.o: DiagnosticCommonKinds.inc.h InitHeaderSearch.po: DiagnosticCommonKinds.inc.h +InitPreprocessor.o: AttrParsedAttrList.inc.h InitPreprocessor.o: DeclNodes.inc.h InitPreprocessor.o: DiagnosticCommonKinds.inc.h InitPreprocessor.o: DiagnosticFrontendKinds.inc.h +InitPreprocessor.o: StmtNodes.inc.h +InitPreprocessor.po: AttrParsedAttrList.inc.h InitPreprocessor.po: DeclNodes.inc.h InitPreprocessor.po: DiagnosticCommonKinds.inc.h InitPreprocessor.po: DiagnosticFrontendKinds.inc.h +InitPreprocessor.po: StmtNodes.inc.h LayoutOverrideSource.o: DeclNodes.inc.h LayoutOverrideSource.o: DiagnosticCommonKinds.inc.h LayoutOverrideSource.po: DeclNodes.inc.h diff --git a/lib/clang/libclangfrontendtool/Makefile.depend b/lib/clang/libclangfrontendtool/Makefile.depend index e69aaa538230..b3f9b2b610af 100644 --- a/lib/clang/libclangfrontendtool/Makefile.depend +++ b/lib/clang/libclangfrontendtool/Makefile.depend @@ -3,12 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ + usr.bin/clang/tblgen.host \ .include diff --git a/lib/clang/libclanglex/Makefile.depend b/lib/clang/libclanglex/Makefile.depend index 7c8859dc6824..362b138d509d 100644 --- a/lib/clang/libclanglex/Makefile.depend +++ b/lib/clang/libclanglex/Makefile.depend @@ -3,11 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ - lib/clang/include \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ diff --git a/lib/clang/libclangparse/Makefile.depend b/lib/clang/libclangparse/Makefile.depend index 0b7d67a6c038..263adfc50223 100644 --- a/lib/clang/libclangparse/Makefile.depend +++ b/lib/clang/libclangparse/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ @@ -45,19 +44,21 @@ ParseCXXInlineMethods.po: DeclNodes.inc.h ParseCXXInlineMethods.po: DiagnosticCommonKinds.inc.h ParseCXXInlineMethods.po: DiagnosticParseKinds.inc.h ParseCXXInlineMethods.po: StmtNodes.inc.h -ParseDecl.o: AttrExprArgs.inc.h +ParseDecl.o: AttrIdentifierArg.inc.h ParseDecl.o: AttrLateParsed.inc.h ParseDecl.o: AttrList.inc.h ParseDecl.o: AttrParsedAttrList.inc.h +ParseDecl.o: AttrTypeArg.inc.h ParseDecl.o: Attrs.inc.h ParseDecl.o: DeclNodes.inc.h ParseDecl.o: DiagnosticCommonKinds.inc.h ParseDecl.o: DiagnosticParseKinds.inc.h ParseDecl.o: StmtNodes.inc.h -ParseDecl.po: AttrExprArgs.inc.h +ParseDecl.po: AttrIdentifierArg.inc.h ParseDecl.po: AttrLateParsed.inc.h ParseDecl.po: AttrList.inc.h ParseDecl.po: AttrParsedAttrList.inc.h +ParseDecl.po: AttrTypeArg.inc.h ParseDecl.po: Attrs.inc.h ParseDecl.po: DeclNodes.inc.h ParseDecl.po: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangrewritecore/Makefile.depend b/lib/clang/libclangrewritecore/Makefile.depend index a15fa635d8b4..a211b19844a9 100644 --- a/lib/clang/libclangrewritecore/Makefile.depend +++ b/lib/clang/libclangrewritecore/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ diff --git a/lib/clang/libclangrewritefrontend/Makefile.depend b/lib/clang/libclangrewritefrontend/Makefile.depend index fd47556d5116..8fbe823dfb30 100644 --- a/lib/clang/libclangrewritefrontend/Makefile.depend +++ b/lib/clang/libclangrewritefrontend/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ diff --git a/lib/clang/libclangsema/Makefile.depend b/lib/clang/libclangsema/Makefile.depend index f06a41dba0bc..8e45ce4d048b 100644 --- a/lib/clang/libclangsema/Makefile.depend +++ b/lib/clang/libclangsema/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ @@ -31,6 +30,7 @@ AnalysisBasedWarnings.po: DeclNodes.inc.h AnalysisBasedWarnings.po: DiagnosticCommonKinds.inc.h AnalysisBasedWarnings.po: DiagnosticSemaKinds.inc.h AnalysisBasedWarnings.po: StmtNodes.inc.h +AttributeList.o: AttrParsedAttrImpl.inc.h AttributeList.o: AttrParsedAttrKinds.inc.h AttributeList.o: AttrParsedAttrList.inc.h AttributeList.o: AttrSpellingListIndex.inc.h @@ -38,6 +38,7 @@ AttributeList.o: CommentCommandList.inc.h AttributeList.o: DeclNodes.inc.h AttributeList.o: DiagnosticCommonKinds.inc.h AttributeList.o: StmtNodes.inc.h +AttributeList.po: AttrParsedAttrImpl.inc.h AttributeList.po: AttrParsedAttrKinds.inc.h AttributeList.po: AttrParsedAttrList.inc.h AttributeList.po: AttrSpellingListIndex.inc.h @@ -683,4 +684,12 @@ TargetAttributesSema.po: DeclNodes.inc.h TargetAttributesSema.po: DiagnosticCommonKinds.inc.h TargetAttributesSema.po: DiagnosticSemaKinds.inc.h TargetAttributesSema.po: StmtNodes.inc.h +TypeLocBuilder.o: CommentCommandList.inc.h +TypeLocBuilder.o: DeclNodes.inc.h +TypeLocBuilder.o: DiagnosticCommonKinds.inc.h +TypeLocBuilder.o: StmtNodes.inc.h +TypeLocBuilder.po: CommentCommandList.inc.h +TypeLocBuilder.po: DeclNodes.inc.h +TypeLocBuilder.po: DiagnosticCommonKinds.inc.h +TypeLocBuilder.po: StmtNodes.inc.h .endif diff --git a/lib/clang/libclangserialization/Makefile.depend b/lib/clang/libclangserialization/Makefile.depend index 2269b1e1f3c1..7d04136aa606 100644 --- a/lib/clang/libclangserialization/Makefile.depend +++ b/lib/clang/libclangserialization/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ @@ -57,10 +56,12 @@ ASTReaderDecl.po: DeclNodes.inc.h ASTReaderDecl.po: DiagnosticCommonKinds.inc.h ASTReaderDecl.po: DiagnosticSemaKinds.inc.h ASTReaderDecl.po: StmtNodes.inc.h +ASTReaderStmt.o: AttrParsedAttrList.inc.h ASTReaderStmt.o: CommentCommandList.inc.h ASTReaderStmt.o: DeclNodes.inc.h ASTReaderStmt.o: DiagnosticCommonKinds.inc.h ASTReaderStmt.o: StmtNodes.inc.h +ASTReaderStmt.po: AttrParsedAttrList.inc.h ASTReaderStmt.po: CommentCommandList.inc.h ASTReaderStmt.po: DeclNodes.inc.h ASTReaderStmt.po: DiagnosticCommonKinds.inc.h @@ -81,10 +82,12 @@ ASTWriter.po: CommentCommandList.inc.h ASTWriter.po: DeclNodes.inc.h ASTWriter.po: DiagnosticCommonKinds.inc.h ASTWriter.po: StmtNodes.inc.h +ASTWriterDecl.o: AttrParsedAttrList.inc.h ASTWriterDecl.o: CommentCommandList.inc.h ASTWriterDecl.o: DeclNodes.inc.h ASTWriterDecl.o: DiagnosticCommonKinds.inc.h ASTWriterDecl.o: StmtNodes.inc.h +ASTWriterDecl.po: AttrParsedAttrList.inc.h ASTWriterDecl.po: CommentCommandList.inc.h ASTWriterDecl.po: DeclNodes.inc.h ASTWriterDecl.po: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangstaticanalyzercheckers/Makefile.depend b/lib/clang/libclangstaticanalyzercheckers/Makefile.depend index c9fe45fc6f1e..68d1e50d7e55 100644 --- a/lib/clang/libclangstaticanalyzercheckers/Makefile.depend +++ b/lib/clang/libclangstaticanalyzercheckers/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ @@ -311,6 +310,16 @@ IdempotentOperationChecker.po: CommentCommandList.inc.h IdempotentOperationChecker.po: DeclNodes.inc.h IdempotentOperationChecker.po: DiagnosticCommonKinds.inc.h IdempotentOperationChecker.po: StmtNodes.inc.h +IdenticalExprChecker.o: Checkers.inc.h +IdenticalExprChecker.o: CommentCommandList.inc.h +IdenticalExprChecker.o: DeclNodes.inc.h +IdenticalExprChecker.o: DiagnosticCommonKinds.inc.h +IdenticalExprChecker.o: StmtNodes.inc.h +IdenticalExprChecker.po: Checkers.inc.h +IdenticalExprChecker.po: CommentCommandList.inc.h +IdenticalExprChecker.po: DeclNodes.inc.h +IdenticalExprChecker.po: DiagnosticCommonKinds.inc.h +IdenticalExprChecker.po: StmtNodes.inc.h IvarInvalidationChecker.o: AttrList.inc.h IvarInvalidationChecker.o: Attrs.inc.h IvarInvalidationChecker.o: Checkers.inc.h diff --git a/lib/clang/libclangstaticanalyzercore/Makefile.depend b/lib/clang/libclangstaticanalyzercore/Makefile.depend index ced08b278d8e..41d7e388c307 100644 --- a/lib/clang/libclangstaticanalyzercore/Makefile.depend +++ b/lib/clang/libclangstaticanalyzercore/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ @@ -283,10 +282,4 @@ SymbolManager.po: CommentCommandList.inc.h SymbolManager.po: DeclNodes.inc.h SymbolManager.po: DiagnosticCommonKinds.inc.h SymbolManager.po: StmtNodes.inc.h -TextPathDiagnostics.o: DeclNodes.inc.h -TextPathDiagnostics.o: DiagnosticCommonKinds.inc.h -TextPathDiagnostics.o: StmtNodes.inc.h -TextPathDiagnostics.po: DeclNodes.inc.h -TextPathDiagnostics.po: DiagnosticCommonKinds.inc.h -TextPathDiagnostics.po: StmtNodes.inc.h .endif diff --git a/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend b/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend index 910b0c2f2ee8..7a70a3738b1e 100644 --- a/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend +++ b/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ diff --git a/lib/clang/libllvmanalysis/Makefile.depend b/lib/clang/libllvmanalysis/Makefile.depend index 9aa32a96a0b6..ab902c251a4e 100644 --- a/lib/clang/libllvmanalysis/Makefile.depend +++ b/lib/clang/libllvmanalysis/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmarmasmparser/Makefile.depend b/lib/clang/libllvmarmasmparser/Makefile.depend index 2b046d8a2331..3b15beeaae80 100644 --- a/lib/clang/libllvmarmasmparser/Makefile.depend +++ b/lib/clang/libllvmarmasmparser/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmarmcodegen/Makefile.depend b/lib/clang/libllvmarmcodegen/Makefile.depend index 42795f18d8b2..5a85191fb047 100644 --- a/lib/clang/libllvmarmcodegen/Makefile.depend +++ b/lib/clang/libllvmarmcodegen/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmarmdesc/Makefile.depend b/lib/clang/libllvmarmdesc/Makefile.depend index 725a374fa20c..a3c276069236 100644 --- a/lib/clang/libllvmarmdesc/Makefile.depend +++ b/lib/clang/libllvmarmdesc/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ @@ -47,6 +46,12 @@ ARMMCTargetDesc.o: ARMGenSubtargetInfo.inc.h ARMMCTargetDesc.po: ARMGenInstrInfo.inc.h ARMMCTargetDesc.po: ARMGenRegisterInfo.inc.h ARMMCTargetDesc.po: ARMGenSubtargetInfo.inc.h +ARMMachORelocationInfo.o: ARMGenInstrInfo.inc.h +ARMMachORelocationInfo.o: ARMGenRegisterInfo.inc.h +ARMMachORelocationInfo.o: ARMGenSubtargetInfo.inc.h +ARMMachORelocationInfo.po: ARMGenInstrInfo.inc.h +ARMMachORelocationInfo.po: ARMGenRegisterInfo.inc.h +ARMMachORelocationInfo.po: ARMGenSubtargetInfo.inc.h ARMMachObjectWriter.o: ARMGenInstrInfo.inc.h ARMMachObjectWriter.o: ARMGenRegisterInfo.inc.h ARMMachObjectWriter.o: ARMGenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmarmdisassembler/Makefile.depend b/lib/clang/libllvmarmdisassembler/Makefile.depend index 72192cb421ce..38ea1cb0d490 100644 --- a/lib/clang/libllvmarmdisassembler/Makefile.depend +++ b/lib/clang/libllvmarmdisassembler/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmarminfo/Makefile.depend b/lib/clang/libllvmarminfo/Makefile.depend index 7a0fbe1e3419..794d0ae4d58b 100644 --- a/lib/clang/libllvmarminfo/Makefile.depend +++ b/lib/clang/libllvmarminfo/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmarminstprinter/Makefile.depend b/lib/clang/libllvmarminstprinter/Makefile.depend index dfe2199b31ca..87d7ea956eed 100644 --- a/lib/clang/libllvmarminstprinter/Makefile.depend +++ b/lib/clang/libllvmarminstprinter/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmasmparser/Makefile.depend b/lib/clang/libllvmasmparser/Makefile.depend index 422d37c93228..d4069a675840 100644 --- a/lib/clang/libllvmasmparser/Makefile.depend +++ b/lib/clang/libllvmasmparser/Makefile.depend @@ -3,10 +3,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmasmprinter/Makefile.depend b/lib/clang/libllvmasmprinter/Makefile.depend index de12791bb810..33dfbf9a5eb0 100644 --- a/lib/clang/libllvmasmprinter/Makefile.depend +++ b/lib/clang/libllvmasmprinter/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmbitreader/Makefile.depend b/lib/clang/libllvmbitreader/Makefile.depend index 0ca04aace01a..edbadfd147fa 100644 --- a/lib/clang/libllvmbitreader/Makefile.depend +++ b/lib/clang/libllvmbitreader/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmbitwriter/Makefile.depend b/lib/clang/libllvmbitwriter/Makefile.depend index 422d37c93228..d4069a675840 100644 --- a/lib/clang/libllvmbitwriter/Makefile.depend +++ b/lib/clang/libllvmbitwriter/Makefile.depend @@ -3,10 +3,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmcodegen/Makefile.depend b/lib/clang/libllvmcodegen/Makefile.depend index a5078c5e831c..0dda0fddea1b 100644 --- a/lib/clang/libllvmcodegen/Makefile.depend +++ b/lib/clang/libllvmcodegen/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmcore/Makefile.depend b/lib/clang/libllvmcore/Makefile.depend index 94d82b9ac309..0b232ec27459 100644 --- a/lib/clang/libllvmcore/Makefile.depend +++ b/lib/clang/libllvmcore/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmdebuginfo/Makefile.depend b/lib/clang/libllvmdebuginfo/Makefile.depend index 422d37c93228..d4069a675840 100644 --- a/lib/clang/libllvmdebuginfo/Makefile.depend +++ b/lib/clang/libllvmdebuginfo/Makefile.depend @@ -3,10 +3,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmexecutionengine/Makefile.depend b/lib/clang/libllvmexecutionengine/Makefile.depend index 422d37c93228..4d8f064b840b 100644 --- a/lib/clang/libllvmexecutionengine/Makefile.depend +++ b/lib/clang/libllvmexecutionengine/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvminstcombine/Makefile.depend b/lib/clang/libllvminstcombine/Makefile.depend index ce67684d75d8..2910d05e8dea 100644 --- a/lib/clang/libllvminstcombine/Makefile.depend +++ b/lib/clang/libllvminstcombine/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvminstrumentation/Makefile.depend b/lib/clang/libllvminstrumentation/Makefile.depend index e64cf0b52a2d..8e825e09c7e2 100644 --- a/lib/clang/libllvminstrumentation/Makefile.depend +++ b/lib/clang/libllvminstrumentation/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ @@ -19,6 +18,10 @@ AddressSanitizer.o: Intrinsics.inc.h AddressSanitizer.po: Intrinsics.inc.h BoundsChecking.o: Intrinsics.inc.h BoundsChecking.po: Intrinsics.inc.h +DataFlowSanitizer.o: Intrinsics.inc.h +DataFlowSanitizer.po: Intrinsics.inc.h +DebugIR.o: Intrinsics.inc.h +DebugIR.po: Intrinsics.inc.h MemorySanitizer.o: Intrinsics.inc.h MemorySanitizer.po: Intrinsics.inc.h ThreadSanitizer.o: Intrinsics.inc.h diff --git a/lib/clang/libllvminterpreter/Makefile.depend b/lib/clang/libllvminterpreter/Makefile.depend index 1c2bfebe806c..6f6ff7784e74 100644 --- a/lib/clang/libllvminterpreter/Makefile.depend +++ b/lib/clang/libllvminterpreter/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmipa/Makefile.depend b/lib/clang/libllvmipa/Makefile.depend index 2a8fb8532579..916056a7beec 100644 --- a/lib/clang/libllvmipa/Makefile.depend +++ b/lib/clang/libllvmipa/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmipo/Makefile.depend b/lib/clang/libllvmipo/Makefile.depend index 07566681bfe3..151c976f9979 100644 --- a/lib/clang/libllvmipo/Makefile.depend +++ b/lib/clang/libllvmipo/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmirreader/Makefile.depend b/lib/clang/libllvmirreader/Makefile.depend index 422d37c93228..d4069a675840 100644 --- a/lib/clang/libllvmirreader/Makefile.depend +++ b/lib/clang/libllvmirreader/Makefile.depend @@ -3,10 +3,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmjit/Makefile.depend b/lib/clang/libllvmjit/Makefile.depend index 422d37c93228..4d8f064b840b 100644 --- a/lib/clang/libllvmjit/Makefile.depend +++ b/lib/clang/libllvmjit/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmlinker/Makefile.depend b/lib/clang/libllvmlinker/Makefile.depend index 422d37c93228..d4069a675840 100644 --- a/lib/clang/libllvmlinker/Makefile.depend +++ b/lib/clang/libllvmlinker/Makefile.depend @@ -3,10 +3,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmmc/Makefile.depend b/lib/clang/libllvmmc/Makefile.depend index 422d37c93228..4d8f064b840b 100644 --- a/lib/clang/libllvmmc/Makefile.depend +++ b/lib/clang/libllvmmc/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmmcdisassembler/Makefile.depend b/lib/clang/libllvmmcdisassembler/Makefile.depend index 422d37c93228..d4069a675840 100644 --- a/lib/clang/libllvmmcdisassembler/Makefile.depend +++ b/lib/clang/libllvmmcdisassembler/Makefile.depend @@ -3,10 +3,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmmcjit/Makefile.depend b/lib/clang/libllvmmcjit/Makefile.depend index 422d37c93228..4d8f064b840b 100644 --- a/lib/clang/libllvmmcjit/Makefile.depend +++ b/lib/clang/libllvmmcjit/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmmcparser/Makefile.depend b/lib/clang/libllvmmcparser/Makefile.depend index 422d37c93228..d4069a675840 100644 --- a/lib/clang/libllvmmcparser/Makefile.depend +++ b/lib/clang/libllvmmcparser/Makefile.depend @@ -3,10 +3,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmmipsasmparser/Makefile.depend b/lib/clang/libllvmmipsasmparser/Makefile.depend index ef82df0bcb84..bbb5c8a3e639 100644 --- a/lib/clang/libllvmmipsasmparser/Makefile.depend +++ b/lib/clang/libllvmmipsasmparser/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmmipscodegen/Makefile.depend b/lib/clang/libllvmmipscodegen/Makefile.depend index 25d3766bd9af..dd0e8917c122 100644 --- a/lib/clang/libllvmmipscodegen/Makefile.depend +++ b/lib/clang/libllvmmipscodegen/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ @@ -21,6 +20,12 @@ Mips16FrameLowering.o: MipsGenSubtargetInfo.inc.h Mips16FrameLowering.po: MipsGenInstrInfo.inc.h Mips16FrameLowering.po: MipsGenRegisterInfo.inc.h Mips16FrameLowering.po: MipsGenSubtargetInfo.inc.h +Mips16HardFloat.o: MipsGenInstrInfo.inc.h +Mips16HardFloat.o: MipsGenRegisterInfo.inc.h +Mips16HardFloat.o: MipsGenSubtargetInfo.inc.h +Mips16HardFloat.po: MipsGenInstrInfo.inc.h +Mips16HardFloat.po: MipsGenRegisterInfo.inc.h +Mips16HardFloat.po: MipsGenSubtargetInfo.inc.h Mips16ISelDAGToDAG.o: Intrinsics.inc.h Mips16ISelDAGToDAG.o: MipsGenDAGISel.inc.h Mips16ISelDAGToDAG.o: MipsGenInstrInfo.inc.h diff --git a/lib/clang/libllvmmipsdesc/Makefile.depend b/lib/clang/libllvmmipsdesc/Makefile.depend index 96c1046c07fc..c0c495914f42 100644 --- a/lib/clang/libllvmmipsdesc/Makefile.depend +++ b/lib/clang/libllvmmipsdesc/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ @@ -21,20 +20,12 @@ MipsAsmBackend.o: MipsGenSubtargetInfo.inc.h MipsAsmBackend.po: MipsGenInstrInfo.inc.h MipsAsmBackend.po: MipsGenRegisterInfo.inc.h MipsAsmBackend.po: MipsGenSubtargetInfo.inc.h -MipsDirectObjLower.o: MipsGenInstrInfo.inc.h -MipsDirectObjLower.o: MipsGenRegisterInfo.inc.h -MipsDirectObjLower.o: MipsGenSubtargetInfo.inc.h -MipsDirectObjLower.po: MipsGenInstrInfo.inc.h -MipsDirectObjLower.po: MipsGenRegisterInfo.inc.h -MipsDirectObjLower.po: MipsGenSubtargetInfo.inc.h MipsELFObjectWriter.o: MipsGenInstrInfo.inc.h MipsELFObjectWriter.o: MipsGenRegisterInfo.inc.h MipsELFObjectWriter.o: MipsGenSubtargetInfo.inc.h MipsELFObjectWriter.po: MipsGenInstrInfo.inc.h MipsELFObjectWriter.po: MipsGenRegisterInfo.inc.h MipsELFObjectWriter.po: MipsGenSubtargetInfo.inc.h -MipsELFStreamer.o: MipsGenSubtargetInfo.inc.h -MipsELFStreamer.po: MipsGenSubtargetInfo.inc.h MipsMCCodeEmitter.o: MipsGenInstrInfo.inc.h MipsMCCodeEmitter.o: MipsGenMCCodeEmitter.inc.h MipsMCCodeEmitter.o: MipsGenRegisterInfo.inc.h diff --git a/lib/clang/libllvmmipsdisassembler/Makefile.depend b/lib/clang/libllvmmipsdisassembler/Makefile.depend index 062877f6c133..878dd8593cf6 100644 --- a/lib/clang/libllvmmipsdisassembler/Makefile.depend +++ b/lib/clang/libllvmmipsdisassembler/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmmipsinfo/Makefile.depend b/lib/clang/libllvmmipsinfo/Makefile.depend index 1c74f8ffb6b6..452184f8ae4d 100644 --- a/lib/clang/libllvmmipsinfo/Makefile.depend +++ b/lib/clang/libllvmmipsinfo/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmmipsinstprinter/Makefile.depend b/lib/clang/libllvmmipsinstprinter/Makefile.depend index 2ac9a3876a1f..99744bab583c 100644 --- a/lib/clang/libllvmmipsinstprinter/Makefile.depend +++ b/lib/clang/libllvmmipsinstprinter/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmobjcarcopts/Makefile.depend b/lib/clang/libllvmobjcarcopts/Makefile.depend index faea27b7f43f..4ebd17e012a6 100644 --- a/lib/clang/libllvmobjcarcopts/Makefile.depend +++ b/lib/clang/libllvmobjcarcopts/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmobject/Makefile.depend b/lib/clang/libllvmobject/Makefile.depend index 422d37c93228..d4069a675840 100644 --- a/lib/clang/libllvmobject/Makefile.depend +++ b/lib/clang/libllvmobject/Makefile.depend @@ -3,10 +3,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmpowerpccodegen/Makefile.depend b/lib/clang/libllvmpowerpccodegen/Makefile.depend index 3ef28585d282..2808f9ae4a4b 100644 --- a/lib/clang/libllvmpowerpccodegen/Makefile.depend +++ b/lib/clang/libllvmpowerpccodegen/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ @@ -27,9 +26,11 @@ PPCBranchSelector.o: PPCGenSubtargetInfo.inc.h PPCBranchSelector.po: PPCGenInstrInfo.inc.h PPCBranchSelector.po: PPCGenRegisterInfo.inc.h PPCBranchSelector.po: PPCGenSubtargetInfo.inc.h +PPCCTRLoops.o: Intrinsics.inc.h PPCCTRLoops.o: PPCGenInstrInfo.inc.h PPCCTRLoops.o: PPCGenRegisterInfo.inc.h PPCCTRLoops.o: PPCGenSubtargetInfo.inc.h +PPCCTRLoops.po: Intrinsics.inc.h PPCCTRLoops.po: PPCGenInstrInfo.inc.h PPCCTRLoops.po: PPCGenRegisterInfo.inc.h PPCCTRLoops.po: PPCGenSubtargetInfo.inc.h @@ -41,6 +42,18 @@ PPCCodeEmitter.po: PPCGenCodeEmitter.inc.h PPCCodeEmitter.po: PPCGenInstrInfo.inc.h PPCCodeEmitter.po: PPCGenRegisterInfo.inc.h PPCCodeEmitter.po: PPCGenSubtargetInfo.inc.h +PPCFastISel.o: Intrinsics.inc.h +PPCFastISel.o: PPCGenCallingConv.inc.h +PPCFastISel.o: PPCGenFastISel.inc.h +PPCFastISel.o: PPCGenInstrInfo.inc.h +PPCFastISel.o: PPCGenRegisterInfo.inc.h +PPCFastISel.o: PPCGenSubtargetInfo.inc.h +PPCFastISel.po: Intrinsics.inc.h +PPCFastISel.po: PPCGenCallingConv.inc.h +PPCFastISel.po: PPCGenFastISel.inc.h +PPCFastISel.po: PPCGenInstrInfo.inc.h +PPCFastISel.po: PPCGenRegisterInfo.inc.h +PPCFastISel.po: PPCGenSubtargetInfo.inc.h PPCFrameLowering.o: PPCGenInstrInfo.inc.h PPCFrameLowering.o: PPCGenRegisterInfo.inc.h PPCFrameLowering.o: PPCGenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmpowerpcdesc/Makefile.depend b/lib/clang/libllvmpowerpcdesc/Makefile.depend index ddc053c119af..d6220e7321a8 100644 --- a/lib/clang/libllvmpowerpcdesc/Makefile.depend +++ b/lib/clang/libllvmpowerpcdesc/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ @@ -41,4 +40,10 @@ PPCMCTargetDesc.o: PPCGenSubtargetInfo.inc.h PPCMCTargetDesc.po: PPCGenInstrInfo.inc.h PPCMCTargetDesc.po: PPCGenRegisterInfo.inc.h PPCMCTargetDesc.po: PPCGenSubtargetInfo.inc.h +PPCMachObjectWriter.o: PPCGenInstrInfo.inc.h +PPCMachObjectWriter.o: PPCGenRegisterInfo.inc.h +PPCMachObjectWriter.o: PPCGenSubtargetInfo.inc.h +PPCMachObjectWriter.po: PPCGenInstrInfo.inc.h +PPCMachObjectWriter.po: PPCGenRegisterInfo.inc.h +PPCMachObjectWriter.po: PPCGenSubtargetInfo.inc.h .endif diff --git a/lib/clang/libllvmpowerpcinfo/Makefile.depend b/lib/clang/libllvmpowerpcinfo/Makefile.depend index e952d74e5ede..022060a5f096 100644 --- a/lib/clang/libllvmpowerpcinfo/Makefile.depend +++ b/lib/clang/libllvmpowerpcinfo/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmpowerpcinstprinter/Makefile.depend b/lib/clang/libllvmpowerpcinstprinter/Makefile.depend index 057e08f6b214..676a53c94bdc 100644 --- a/lib/clang/libllvmpowerpcinstprinter/Makefile.depend +++ b/lib/clang/libllvmpowerpcinstprinter/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmruntimedyld/Makefile.depend b/lib/clang/libllvmruntimedyld/Makefile.depend index 422d37c93228..d4069a675840 100644 --- a/lib/clang/libllvmruntimedyld/Makefile.depend +++ b/lib/clang/libllvmruntimedyld/Makefile.depend @@ -3,10 +3,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmscalaropts/Makefile.depend b/lib/clang/libllvmscalaropts/Makefile.depend index 921024027b00..1c880cd3d3fd 100644 --- a/lib/clang/libllvmscalaropts/Makefile.depend +++ b/lib/clang/libllvmscalaropts/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ @@ -33,6 +32,8 @@ LICM.o: Intrinsics.inc.h LICM.po: Intrinsics.inc.h LoopIdiomRecognize.o: Intrinsics.inc.h LoopIdiomRecognize.po: Intrinsics.inc.h +LoopRerollPass.o: Intrinsics.inc.h +LoopRerollPass.po: Intrinsics.inc.h LoopRotation.o: Intrinsics.inc.h LoopRotation.po: Intrinsics.inc.h LoopStrengthReduce.o: Intrinsics.inc.h @@ -45,6 +46,8 @@ LowerAtomic.o: Intrinsics.inc.h LowerAtomic.po: Intrinsics.inc.h MemCpyOptimizer.o: Intrinsics.inc.h MemCpyOptimizer.po: Intrinsics.inc.h +PartiallyInlineLibCalls.o: Intrinsics.inc.h +PartiallyInlineLibCalls.po: Intrinsics.inc.h Reassociate.o: Intrinsics.inc.h Reassociate.po: Intrinsics.inc.h SCCP.o: Intrinsics.inc.h @@ -57,6 +60,8 @@ SimplifyCFGPass.o: Intrinsics.inc.h SimplifyCFGPass.po: Intrinsics.inc.h Sink.o: Intrinsics.inc.h Sink.po: Intrinsics.inc.h +StructurizeCFG.o: Intrinsics.inc.h +StructurizeCFG.po: Intrinsics.inc.h TailRecursionElimination.o: Intrinsics.inc.h TailRecursionElimination.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvmselectiondag/Makefile.depend b/lib/clang/libllvmselectiondag/Makefile.depend index 95ce77ee7c9b..737ede18613e 100644 --- a/lib/clang/libllvmselectiondag/Makefile.depend +++ b/lib/clang/libllvmselectiondag/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmsupport/Makefile.depend b/lib/clang/libllvmsupport/Makefile.depend index 422d37c93228..4d8f064b840b 100644 --- a/lib/clang/libllvmsupport/Makefile.depend +++ b/lib/clang/libllvmsupport/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmtablegen/Makefile.depend b/lib/clang/libllvmtablegen/Makefile.depend index 422d37c93228..4d8f064b840b 100644 --- a/lib/clang/libllvmtablegen/Makefile.depend +++ b/lib/clang/libllvmtablegen/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmtarget/Makefile.depend b/lib/clang/libllvmtarget/Makefile.depend index 422d37c93228..d4069a675840 100644 --- a/lib/clang/libllvmtarget/Makefile.depend +++ b/lib/clang/libllvmtarget/Makefile.depend @@ -3,10 +3,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ + lib/libc++ \ lib/msun \ diff --git a/lib/clang/libllvmtransformutils/Makefile.depend b/lib/clang/libllvmtransformutils/Makefile.depend index 5ed0fbadb4c0..2aad904d8c6a 100644 --- a/lib/clang/libllvmtransformutils/Makefile.depend +++ b/lib/clang/libllvmtransformutils/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ @@ -23,6 +22,8 @@ CloneFunction.o: Intrinsics.inc.h CloneFunction.po: Intrinsics.inc.h CodeExtractor.o: Intrinsics.inc.h CodeExtractor.po: Intrinsics.inc.h +GlobalStatus.o: Intrinsics.inc.h +GlobalStatus.po: Intrinsics.inc.h InlineFunction.o: Intrinsics.inc.h InlineFunction.po: Intrinsics.inc.h IntegerDivision.o: Intrinsics.inc.h diff --git a/lib/clang/libllvmvectorize/Makefile.depend b/lib/clang/libllvmvectorize/Makefile.depend index 40d35601976f..171d928360a5 100644 --- a/lib/clang/libllvmvectorize/Makefile.depend +++ b/lib/clang/libllvmvectorize/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ @@ -21,6 +20,4 @@ LoopVectorize.o: Intrinsics.inc.h LoopVectorize.po: Intrinsics.inc.h SLPVectorizer.o: Intrinsics.inc.h SLPVectorizer.po: Intrinsics.inc.h -VecUtils.o: Intrinsics.inc.h -VecUtils.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvmx86asmparser/Makefile.depend b/lib/clang/libllvmx86asmparser/Makefile.depend index b4ef923f230b..200e80ddc0c4 100644 --- a/lib/clang/libllvmx86asmparser/Makefile.depend +++ b/lib/clang/libllvmx86asmparser/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmx86codegen/Makefile.depend b/lib/clang/libllvmx86codegen/Makefile.depend index 1eb524d37c33..530394855029 100644 --- a/lib/clang/libllvmx86codegen/Makefile.depend +++ b/lib/clang/libllvmx86codegen/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmx86desc/Makefile.depend b/lib/clang/libllvmx86desc/Makefile.depend index 9e3ab7303e68..503475705ddc 100644 --- a/lib/clang/libllvmx86desc/Makefile.depend +++ b/lib/clang/libllvmx86desc/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ @@ -27,6 +26,12 @@ X86ELFObjectWriter.o: X86GenSubtargetInfo.inc.h X86ELFObjectWriter.po: X86GenInstrInfo.inc.h X86ELFObjectWriter.po: X86GenRegisterInfo.inc.h X86ELFObjectWriter.po: X86GenSubtargetInfo.inc.h +X86ELFRelocationInfo.o: X86GenInstrInfo.inc.h +X86ELFRelocationInfo.o: X86GenRegisterInfo.inc.h +X86ELFRelocationInfo.o: X86GenSubtargetInfo.inc.h +X86ELFRelocationInfo.po: X86GenInstrInfo.inc.h +X86ELFRelocationInfo.po: X86GenRegisterInfo.inc.h +X86ELFRelocationInfo.po: X86GenSubtargetInfo.inc.h X86MCCodeEmitter.o: X86GenInstrInfo.inc.h X86MCCodeEmitter.o: X86GenRegisterInfo.inc.h X86MCCodeEmitter.o: X86GenSubtargetInfo.inc.h @@ -39,6 +44,12 @@ X86MCTargetDesc.o: X86GenSubtargetInfo.inc.h X86MCTargetDesc.po: X86GenInstrInfo.inc.h X86MCTargetDesc.po: X86GenRegisterInfo.inc.h X86MCTargetDesc.po: X86GenSubtargetInfo.inc.h +X86MachORelocationInfo.o: X86GenInstrInfo.inc.h +X86MachORelocationInfo.o: X86GenRegisterInfo.inc.h +X86MachORelocationInfo.o: X86GenSubtargetInfo.inc.h +X86MachORelocationInfo.po: X86GenInstrInfo.inc.h +X86MachORelocationInfo.po: X86GenRegisterInfo.inc.h +X86MachORelocationInfo.po: X86GenSubtargetInfo.inc.h X86MachObjectWriter.o: X86GenInstrInfo.inc.h X86MachObjectWriter.o: X86GenRegisterInfo.inc.h X86MachObjectWriter.o: X86GenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmx86disassembler/Makefile.depend b/lib/clang/libllvmx86disassembler/Makefile.depend index 0e569caab18a..fa7a65b0d137 100644 --- a/lib/clang/libllvmx86disassembler/Makefile.depend +++ b/lib/clang/libllvmx86disassembler/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmx86info/Makefile.depend b/lib/clang/libllvmx86info/Makefile.depend index 212ccc1cdf92..1ea75cbc9180 100644 --- a/lib/clang/libllvmx86info/Makefile.depend +++ b/lib/clang/libllvmx86info/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmx86instprinter/Makefile.depend b/lib/clang/libllvmx86instprinter/Makefile.depend index 062c7822b7da..86a651a27d43 100644 --- a/lib/clang/libllvmx86instprinter/Makefile.depend +++ b/lib/clang/libllvmx86instprinter/Makefile.depend @@ -3,10 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/libc++ \ lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmx86utils/Makefile.depend b/lib/clang/libllvmx86utils/Makefile.depend index 422d37c93228..d4069a675840 100644 --- a/lib/clang/libllvmx86utils/Makefile.depend +++ b/lib/clang/libllvmx86utils/Makefile.depend @@ -3,10 +3,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ + lib/clang/include \ + lib/libc++ \ lib/msun \ diff --git a/lib/libalias/libalias/Makefile.depend b/lib/libalias/libalias/Makefile.depend index 5269280d143c..807c0a46764c 100644 --- a/lib/libalias/libalias/Makefile.depend +++ b/lib/libalias/libalias/Makefile.depend @@ -10,8 +10,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libalias/modules/cuseeme/Makefile.depend b/lib/libalias/modules/cuseeme/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/lib/libalias/modules/cuseeme/Makefile.depend +++ b/lib/libalias/modules/cuseeme/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/dummy/Makefile.depend b/lib/libalias/modules/dummy/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/lib/libalias/modules/dummy/Makefile.depend +++ b/lib/libalias/modules/dummy/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/ftp/Makefile.depend b/lib/libalias/modules/ftp/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/lib/libalias/modules/ftp/Makefile.depend +++ b/lib/libalias/modules/ftp/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/irc/Makefile.depend b/lib/libalias/modules/irc/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/lib/libalias/modules/irc/Makefile.depend +++ b/lib/libalias/modules/irc/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/nbt/Makefile.depend b/lib/libalias/modules/nbt/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/lib/libalias/modules/nbt/Makefile.depend +++ b/lib/libalias/modules/nbt/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/pptp/Makefile.depend b/lib/libalias/modules/pptp/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/lib/libalias/modules/pptp/Makefile.depend +++ b/lib/libalias/modules/pptp/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/skinny/Makefile.depend b/lib/libalias/modules/skinny/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/lib/libalias/modules/skinny/Makefile.depend +++ b/lib/libalias/modules/skinny/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libalias/modules/smedia/Makefile.depend b/lib/libalias/modules/smedia/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/lib/libalias/modules/smedia/Makefile.depend +++ b/lib/libalias/modules/smedia/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/lib/libarchive/Makefile.depend b/lib/libarchive/Makefile.depend index aec02f3165be..f87de01ae5f6 100644 --- a/lib/libarchive/Makefile.depend +++ b/lib/libarchive/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -14,6 +15,7 @@ DIRDEPS = \ lib/liblzma \ lib/libz \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/lib/libauditd/Makefile.depend b/lib/libauditd/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libauditd/Makefile.depend +++ b/lib/libauditd/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libbegemot/Makefile.depend b/lib/libbegemot/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libbegemot/Makefile.depend +++ b/lib/libbegemot/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libblocksruntime/Makefile.depend b/lib/libblocksruntime/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libblocksruntime/Makefile.depend +++ b/lib/libblocksruntime/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libbluetooth/Makefile.depend b/lib/libbluetooth/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libbluetooth/Makefile.depend +++ b/lib/libbluetooth/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libbsm/Makefile.depend b/lib/libbsm/Makefile.depend index 5269280d143c..807c0a46764c 100644 --- a/lib/libbsm/Makefile.depend +++ b/lib/libbsm/Makefile.depend @@ -10,8 +10,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libbsnmp/libbsnmp/Makefile.depend b/lib/libbsnmp/libbsnmp/Makefile.depend index 761a02420758..4de5cd32a6b8 100644 --- a/lib/libbsnmp/libbsnmp/Makefile.depend +++ b/lib/libbsnmp/libbsnmp/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/lib/libbz2/Makefile.depend b/lib/libbz2/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libbz2/Makefile.depend +++ b/lib/libbz2/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libc++/Makefile.depend b/lib/libc++/Makefile.depend index bc14f56bdfff..e391c404ef63 100644 --- a/lib/libc++/Makefile.depend +++ b/lib/libc++/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/msun \ diff --git a/lib/libcalendar/Makefile.depend b/lib/libcalendar/Makefile.depend index e9a1dda6ca51..7cedd5f867c7 100644 --- a/lib/libcalendar/Makefile.depend +++ b/lib/libcalendar/Makefile.depend @@ -8,8 +8,8 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libcam/Makefile.depend b/lib/libcam/Makefile.depend index a1157119ad51..f976a9c926dd 100644 --- a/lib/libcam/Makefile.depend +++ b/lib/libcam/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsbuf \ + usr.bin/xinstall.host \ .include diff --git a/lib/libcapsicum/Makefile.depend b/lib/libcapsicum/Makefile.depend index 67b4ef08e1f9..ab84fcc1c757 100644 --- a/lib/libcapsicum/Makefile.depend +++ b/lib/libcapsicum/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnv \ + usr.bin/xinstall.host \ .include diff --git a/lib/libcom_err/Makefile.depend b/lib/libcom_err/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libcom_err/Makefile.depend +++ b/lib/libcom_err/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libcrypt/Makefile.depend b/lib/libcrypt/Makefile.depend index 5269280d143c..807c0a46764c 100644 --- a/lib/libcrypt/Makefile.depend +++ b/lib/libcrypt/Makefile.depend @@ -10,8 +10,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libcxxrt/Makefile.depend b/lib/libcxxrt/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libcxxrt/Makefile.depend +++ b/lib/libcxxrt/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libdevinfo/Makefile.depend b/lib/libdevinfo/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libdevinfo/Makefile.depend +++ b/lib/libdevinfo/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libdevstat/Makefile.depend b/lib/libdevstat/Makefile.depend index b7d414c85aeb..46488c998a57 100644 --- a/lib/libdevstat/Makefile.depend +++ b/lib/libdevstat/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ + usr.bin/xinstall.host \ .include diff --git a/lib/libdwarf/Makefile.depend b/lib/libdwarf/Makefile.depend index 1b2ce3e41ae6..07e629e24137 100644 --- a/lib/libdwarf/Makefile.depend +++ b/lib/libdwarf/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ + usr.bin/xinstall.host \ .include diff --git a/lib/libedit/Makefile.depend b/lib/libedit/Makefile.depend index af92ff9ef9e3..1d7ae9448400 100644 --- a/lib/libedit/Makefile.depend +++ b/lib/libedit/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ + usr.bin/xinstall.host \ .include diff --git a/lib/libelf/Makefile.depend b/lib/libelf/Makefile.depend index 7c6b7073c2ee..b2c79ae13999 100644 --- a/lib/libelf/Makefile.depend +++ b/lib/libelf/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libexecinfo/Makefile.depend b/lib/libexecinfo/Makefile.depend index 659d7cca1ad8..f8f5a363f748 100644 --- a/lib/libexecinfo/Makefile.depend +++ b/lib/libexecinfo/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ + usr.bin/xinstall.host \ .include diff --git a/lib/libexpat/Makefile.depend b/lib/libexpat/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libexpat/Makefile.depend +++ b/lib/libexpat/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libfetch/Makefile.depend b/lib/libfetch/Makefile.depend index 02237e854efd..3fcefec42ea7 100644 --- a/lib/libfetch/Makefile.depend +++ b/lib/libfetch/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -11,6 +12,7 @@ DIRDEPS = \ lib/libcompiler_rt \ secure/lib/libcrypto \ secure/lib/libssl \ + usr.bin/xinstall.host \ .include diff --git a/lib/libgeom/Makefile.depend b/lib/libgeom/Makefile.depend index a66d580db4dc..acc7f3579c8e 100644 --- a/lib/libgeom/Makefile.depend +++ b/lib/libgeom/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libsbuf \ + usr.bin/xinstall.host \ .include diff --git a/lib/libgpib/Makefile.depend b/lib/libgpib/Makefile.depend index e9a1dda6ca51..7cedd5f867c7 100644 --- a/lib/libgpib/Makefile.depend +++ b/lib/libgpib/Makefile.depend @@ -8,8 +8,8 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libgssapi/Makefile.depend b/lib/libgssapi/Makefile.depend index 841cdfd90dab..4a1f10886ac4 100644 --- a/lib/libgssapi/Makefile.depend +++ b/lib/libgssapi/Makefile.depend @@ -10,8 +10,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/BIG5/Makefile.depend b/lib/libiconv_modules/BIG5/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/BIG5/Makefile.depend +++ b/lib/libiconv_modules/BIG5/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/DECHanyu/Makefile.depend b/lib/libiconv_modules/DECHanyu/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/DECHanyu/Makefile.depend +++ b/lib/libiconv_modules/DECHanyu/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/EUC/Makefile.depend b/lib/libiconv_modules/EUC/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/EUC/Makefile.depend +++ b/lib/libiconv_modules/EUC/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/EUCTW/Makefile.depend b/lib/libiconv_modules/EUCTW/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/EUCTW/Makefile.depend +++ b/lib/libiconv_modules/EUCTW/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/GBK2K/Makefile.depend b/lib/libiconv_modules/GBK2K/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/GBK2K/Makefile.depend +++ b/lib/libiconv_modules/GBK2K/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/HZ/Makefile.depend b/lib/libiconv_modules/HZ/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/HZ/Makefile.depend +++ b/lib/libiconv_modules/HZ/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/ISO2022/Makefile.depend b/lib/libiconv_modules/ISO2022/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/ISO2022/Makefile.depend +++ b/lib/libiconv_modules/ISO2022/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/JOHAB/Makefile.depend b/lib/libiconv_modules/JOHAB/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/JOHAB/Makefile.depend +++ b/lib/libiconv_modules/JOHAB/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/MSKanji/Makefile.depend b/lib/libiconv_modules/MSKanji/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/MSKanji/Makefile.depend +++ b/lib/libiconv_modules/MSKanji/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/UES/Makefile.depend b/lib/libiconv_modules/UES/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/UES/Makefile.depend +++ b/lib/libiconv_modules/UES/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/UTF1632/Makefile.depend b/lib/libiconv_modules/UTF1632/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/UTF1632/Makefile.depend +++ b/lib/libiconv_modules/UTF1632/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/UTF7/Makefile.depend b/lib/libiconv_modules/UTF7/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/UTF7/Makefile.depend +++ b/lib/libiconv_modules/UTF7/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/UTF8/Makefile.depend b/lib/libiconv_modules/UTF8/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/UTF8/Makefile.depend +++ b/lib/libiconv_modules/UTF8/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/VIQR/Makefile.depend b/lib/libiconv_modules/VIQR/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/VIQR/Makefile.depend +++ b/lib/libiconv_modules/VIQR/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/ZW/Makefile.depend b/lib/libiconv_modules/ZW/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/ZW/Makefile.depend +++ b/lib/libiconv_modules/ZW/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/iconv_none/Makefile.depend b/lib/libiconv_modules/iconv_none/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/iconv_none/Makefile.depend +++ b/lib/libiconv_modules/iconv_none/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/iconv_std/Makefile.depend b/lib/libiconv_modules/iconv_std/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/iconv_std/Makefile.depend +++ b/lib/libiconv_modules/iconv_std/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/mapper_646/Makefile.depend b/lib/libiconv_modules/mapper_646/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/mapper_646/Makefile.depend +++ b/lib/libiconv_modules/mapper_646/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/mapper_none/Makefile.depend b/lib/libiconv_modules/mapper_none/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/mapper_none/Makefile.depend +++ b/lib/libiconv_modules/mapper_none/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/mapper_parallel/Makefile.depend b/lib/libiconv_modules/mapper_parallel/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/mapper_parallel/Makefile.depend +++ b/lib/libiconv_modules/mapper_parallel/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/mapper_serial/Makefile.depend b/lib/libiconv_modules/mapper_serial/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/mapper_serial/Makefile.depend +++ b/lib/libiconv_modules/mapper_serial/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/mapper_std/Makefile.depend b/lib/libiconv_modules/mapper_std/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/mapper_std/Makefile.depend +++ b/lib/libiconv_modules/mapper_std/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libiconv_modules/mapper_zone/Makefile.depend b/lib/libiconv_modules/mapper_zone/Makefile.depend index 639d45d8b9b0..467741f6d1a9 100644 --- a/lib/libiconv_modules/mapper_zone/Makefile.depend +++ b/lib/libiconv_modules/mapper_zone/Makefile.depend @@ -3,8 +3,14 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ include \ include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libipsec/Makefile.depend b/lib/libipsec/Makefile.depend index 89518b5ff290..f48095aeb79d 100644 --- a/lib/libipsec/Makefile.depend +++ b/lib/libipsec/Makefile.depend @@ -10,8 +10,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libjail/Makefile.depend b/lib/libjail/Makefile.depend index 5269280d143c..807c0a46764c 100644 --- a/lib/libjail/Makefile.depend +++ b/lib/libjail/Makefile.depend @@ -10,8 +10,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libkiconv/Makefile.depend b/lib/libkiconv/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libkiconv/Makefile.depend +++ b/lib/libkiconv/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libkvm/Makefile.depend b/lib/libkvm/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libkvm/Makefile.depend +++ b/lib/libkvm/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libldns/Makefile.depend b/lib/libldns/Makefile.depend index 4ea74e5d0c67..3bf324e728f6 100644 --- a/lib/libldns/Makefile.depend +++ b/lib/libldns/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -12,6 +13,7 @@ DIRDEPS = \ lib/libcompiler_rt \ secure/lib/libcrypto \ secure/lib/libssl \ + usr.bin/xinstall.host \ .include diff --git a/lib/liblzma/Makefile.depend b/lib/liblzma/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/liblzma/Makefile.depend +++ b/lib/liblzma/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libmagic/Makefile.depend b/lib/libmagic/Makefile.depend index 8d258dfd965e..934940fb76de 100644 --- a/lib/libmagic/Makefile.depend +++ b/lib/libmagic/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libz \ + usr.bin/xinstall.host \ .include diff --git a/lib/libmd/Makefile.depend b/lib/libmd/Makefile.depend index 9561917e0293..17ea6ebfae17 100644 --- a/lib/libmd/Makefile.depend +++ b/lib/libmd/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libmemstat/Makefile.depend b/lib/libmemstat/Makefile.depend index b7d414c85aeb..46488c998a57 100644 --- a/lib/libmemstat/Makefile.depend +++ b/lib/libmemstat/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ + usr.bin/xinstall.host \ .include diff --git a/lib/libmilter/Makefile.depend b/lib/libmilter/Makefile.depend index 92baf08bda74..e092bec52b91 100644 --- a/lib/libmilter/Makefile.depend +++ b/lib/libmilter/Makefile.depend @@ -10,9 +10,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ + usr.bin/xinstall.host \ .include diff --git a/lib/libmp/Makefile.depend b/lib/libmp/Makefile.depend index 761a02420758..4de5cd32a6b8 100644 --- a/lib/libmp/Makefile.depend +++ b/lib/libmp/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/lib/libnetgraph/Makefile.depend b/lib/libnetgraph/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libnetgraph/Makefile.depend +++ b/lib/libnetgraph/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libngatm/Makefile.depend b/lib/libngatm/Makefile.depend index 5269280d143c..807c0a46764c 100644 --- a/lib/libngatm/Makefile.depend +++ b/lib/libngatm/Makefile.depend @@ -10,8 +10,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libnv/Makefile.depend b/lib/libnv/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libnv/Makefile.depend +++ b/lib/libnv/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libopie/Makefile.depend b/lib/libopie/Makefile.depend index c1f494f87eff..9c2e45312c9f 100644 --- a/lib/libopie/Makefile.depend +++ b/lib/libopie/Makefile.depend @@ -10,9 +10,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/libpam/Makefile.depend b/lib/libpam/libpam/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libpam/libpam/Makefile.depend +++ b/lib/libpam/libpam/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_chroot/Makefile.depend b/lib/libpam/modules/pam_chroot/Makefile.depend index f44d17dcca74..9d521d074595 100644 --- a/lib/libpam/modules/pam_chroot/Makefile.depend +++ b/lib/libpam/modules/pam_chroot/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_deny/Makefile.depend b/lib/libpam/modules/pam_deny/Makefile.depend index afe8c8b3c68f..223b0d0cb95d 100644 --- a/lib/libpam/modules/pam_deny/Makefile.depend +++ b/lib/libpam/modules/pam_deny/Makefile.depend @@ -8,9 +8,9 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_echo/Makefile.depend b/lib/libpam/modules/pam_echo/Makefile.depend index f44d17dcca74..9d521d074595 100644 --- a/lib/libpam/modules/pam_echo/Makefile.depend +++ b/lib/libpam/modules/pam_echo/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_exec/Makefile.depend b/lib/libpam/modules/pam_exec/Makefile.depend index f44d17dcca74..9d521d074595 100644 --- a/lib/libpam/modules/pam_exec/Makefile.depend +++ b/lib/libpam/modules/pam_exec/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_ftpusers/Makefile.depend b/lib/libpam/modules/pam_ftpusers/Makefile.depend index f44d17dcca74..9d521d074595 100644 --- a/lib/libpam/modules/pam_ftpusers/Makefile.depend +++ b/lib/libpam/modules/pam_ftpusers/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_group/Makefile.depend b/lib/libpam/modules/pam_group/Makefile.depend index f44d17dcca74..9d521d074595 100644 --- a/lib/libpam/modules/pam_group/Makefile.depend +++ b/lib/libpam/modules/pam_group/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_guest/Makefile.depend b/lib/libpam/modules/pam_guest/Makefile.depend index f44d17dcca74..9d521d074595 100644 --- a/lib/libpam/modules/pam_guest/Makefile.depend +++ b/lib/libpam/modules/pam_guest/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_krb5/Makefile.depend b/lib/libpam/modules/pam_krb5/Makefile.depend index 43e39273fcd1..f6e886edbc48 100644 --- a/lib/libpam/modules/pam_krb5/Makefile.depend +++ b/lib/libpam/modules/pam_krb5/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -17,6 +18,7 @@ DIRDEPS = \ lib/libcrypt \ lib/libpam/libpam \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_ksu/Makefile.depend b/lib/libpam/modules/pam_ksu/Makefile.depend index 43e39273fcd1..f6e886edbc48 100644 --- a/lib/libpam/modules/pam_ksu/Makefile.depend +++ b/lib/libpam/modules/pam_ksu/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -17,6 +18,7 @@ DIRDEPS = \ lib/libcrypt \ lib/libpam/libpam \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_lastlog/Makefile.depend b/lib/libpam/modules/pam_lastlog/Makefile.depend index f44d17dcca74..9d521d074595 100644 --- a/lib/libpam/modules/pam_lastlog/Makefile.depend +++ b/lib/libpam/modules/pam_lastlog/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_login_access/Makefile.depend b/lib/libpam/modules/pam_login_access/Makefile.depend index f44d17dcca74..9d521d074595 100644 --- a/lib/libpam/modules/pam_login_access/Makefile.depend +++ b/lib/libpam/modules/pam_login_access/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_nologin/Makefile.depend b/lib/libpam/modules/pam_nologin/Makefile.depend index 3d8c2f306ad0..0e5a16774bbd 100644 --- a/lib/libpam/modules/pam_nologin/Makefile.depend +++ b/lib/libpam/modules/pam_nologin/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_opie/Makefile.depend b/lib/libpam/modules/pam_opie/Makefile.depend index 91d27924dfb5..1e75b4a902b0 100644 --- a/lib/libpam/modules/pam_opie/Makefile.depend +++ b/lib/libpam/modules/pam_opie/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libopie \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_opieaccess/Makefile.depend b/lib/libpam/modules/pam_opieaccess/Makefile.depend index 94ab2e8f6fbf..7316349cd5b6 100644 --- a/lib/libpam/modules/pam_opieaccess/Makefile.depend +++ b/lib/libpam/modules/pam_opieaccess/Makefile.depend @@ -8,10 +8,10 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libopie \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_passwdqc/Makefile.depend b/lib/libpam/modules/pam_passwdqc/Makefile.depend index 89eac3ede0d5..7cce822158bc 100644 --- a/lib/libpam/modules/pam_passwdqc/Makefile.depend +++ b/lib/libpam/modules/pam_passwdqc/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_permit/Makefile.depend b/lib/libpam/modules/pam_permit/Makefile.depend index afe8c8b3c68f..223b0d0cb95d 100644 --- a/lib/libpam/modules/pam_permit/Makefile.depend +++ b/lib/libpam/modules/pam_permit/Makefile.depend @@ -8,9 +8,9 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_radius/Makefile.depend b/lib/libpam/modules/pam_radius/Makefile.depend index 6a72e9b8e25d..8daba2c77397 100644 --- a/lib/libpam/modules/pam_radius/Makefile.depend +++ b/lib/libpam/modules/pam_radius/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -11,6 +12,7 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libradius \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_rhosts/Makefile.depend b/lib/libpam/modules/pam_rhosts/Makefile.depend index f44d17dcca74..9d521d074595 100644 --- a/lib/libpam/modules/pam_rhosts/Makefile.depend +++ b/lib/libpam/modules/pam_rhosts/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_rootok/Makefile.depend b/lib/libpam/modules/pam_rootok/Makefile.depend index afe8c8b3c68f..223b0d0cb95d 100644 --- a/lib/libpam/modules/pam_rootok/Makefile.depend +++ b/lib/libpam/modules/pam_rootok/Makefile.depend @@ -8,9 +8,9 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_securetty/Makefile.depend b/lib/libpam/modules/pam_securetty/Makefile.depend index f44d17dcca74..9d521d074595 100644 --- a/lib/libpam/modules/pam_securetty/Makefile.depend +++ b/lib/libpam/modules/pam_securetty/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_self/Makefile.depend b/lib/libpam/modules/pam_self/Makefile.depend index afe8c8b3c68f..223b0d0cb95d 100644 --- a/lib/libpam/modules/pam_self/Makefile.depend +++ b/lib/libpam/modules/pam_self/Makefile.depend @@ -8,9 +8,9 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_ssh/Makefile.depend b/lib/libpam/modules/pam_ssh/Makefile.depend index 425795df2d57..e46aac47883c 100644 --- a/lib/libpam/modules/pam_ssh/Makefile.depend +++ b/lib/libpam/modules/pam_ssh/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -15,6 +16,7 @@ DIRDEPS = \ lib/libutil \ secure/lib/libcrypto \ secure/lib/libssh \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_tacplus/Makefile.depend b/lib/libpam/modules/pam_tacplus/Makefile.depend index bc4b7343419e..c3edc9b21fdc 100644 --- a/lib/libpam/modules/pam_tacplus/Makefile.depend +++ b/lib/libpam/modules/pam_tacplus/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libtacplus \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpam/modules/pam_unix/Makefile.depend b/lib/libpam/modules/pam_unix/Makefile.depend index 13a84801d0c2..47a9e7e0623c 100644 --- a/lib/libpam/modules/pam_unix/Makefile.depend +++ b/lib/libpam/modules/pam_unix/Makefile.depend @@ -10,12 +10,12 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libpam/libpam \ lib/libutil \ lib/libypclnt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpcap/Makefile.depend b/lib/libpcap/Makefile.depend index 2b635d7fa37e..c3f153ba3ae8 100644 --- a/lib/libpcap/Makefile.depend +++ b/lib/libpcap/Makefile.depend @@ -10,8 +10,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libpmc/Makefile.depend b/lib/libpmc/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libpmc/Makefile.depend +++ b/lib/libpmc/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libproc/Makefile.depend b/lib/libproc/Makefile.depend index 363d9a0730b3..46c4714e5ad6 100644 --- a/lib/libproc/Makefile.depend +++ b/lib/libproc/Makefile.depend @@ -9,11 +9,11 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcxxrt \ lib/libelf \ lib/libutil \ + usr.bin/xinstall.host \ .include diff --git a/lib/libprocstat/Makefile.depend b/lib/libprocstat/Makefile.depend index 7e162f7cd899..bf92deb89550 100644 --- a/lib/libprocstat/Makefile.depend +++ b/lib/libprocstat/Makefile.depend @@ -9,12 +9,12 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libkvm \ lib/libprocstat/zfs \ lib/libutil \ + usr.bin/xinstall.host \ .include diff --git a/lib/libprocstat/zfs/Makefile.depend b/lib/libprocstat/zfs/Makefile.depend index b142a6736e9e..2b448e39c8b1 100644 --- a/lib/libprocstat/zfs/Makefile.depend +++ b/lib/libprocstat/zfs/Makefile.depend @@ -5,6 +5,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ include \ include/xlocale \ + lib/clang/include \ lib/libkvm \ lib/msun \ diff --git a/lib/libradius/Makefile.depend b/lib/libradius/Makefile.depend index 2c3cff5e1329..6047b890a604 100644 --- a/lib/libradius/Makefile.depend +++ b/lib/libradius/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/lib/librpcsec_gss/Makefile.depend b/lib/librpcsec_gss/Makefile.depend index 4651ca83b919..89fa5dfd28c1 100644 --- a/lib/librpcsec_gss/Makefile.depend +++ b/lib/librpcsec_gss/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/rpc \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgssapi \ + usr.bin/xinstall.host \ .include diff --git a/lib/librpcsvc/Makefile.depend b/lib/librpcsvc/Makefile.depend index 7b1e7f4f7015..0c8f02a303d1 100644 --- a/lib/librpcsvc/Makefile.depend +++ b/lib/librpcsvc/Makefile.depend @@ -11,8 +11,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/librt/Makefile.depend b/lib/librt/Makefile.depend index e1ba49601114..37acbe0cd621 100644 --- a/lib/librt/Makefile.depend +++ b/lib/librt/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ + usr.bin/xinstall.host \ .include diff --git a/lib/librtld_db/Makefile.depend b/lib/librtld_db/Makefile.depend index 6b94eaeeb5af..8a7801e2e170 100644 --- a/lib/librtld_db/Makefile.depend +++ b/lib/librtld_db/Makefile.depend @@ -9,11 +9,11 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libproc \ lib/libutil \ + usr.bin/xinstall.host \ .include diff --git a/lib/libsbuf/Makefile.depend b/lib/libsbuf/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libsbuf/Makefile.depend +++ b/lib/libsbuf/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libsdp/Makefile.depend b/lib/libsdp/Makefile.depend index beb640354e0e..7a7a3e35ab8d 100644 --- a/lib/libsdp/Makefile.depend +++ b/lib/libsdp/Makefile.depend @@ -11,8 +11,8 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libsmb/Makefile.depend b/lib/libsmb/Makefile.depend index b1a67cd37ad9..b370707fb403 100644 --- a/lib/libsmb/Makefile.depend +++ b/lib/libsmb/Makefile.depend @@ -10,9 +10,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkiconv \ + usr.bin/xinstall.host \ .include diff --git a/lib/libstand/Makefile.depend b/lib/libstand/Makefile.depend index 34236cbeda95..647f6f8b2c3f 100644 --- a/lib/libstand/Makefile.depend +++ b/lib/libstand/Makefile.depend @@ -6,6 +6,7 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ + lib/clang/include \ lib/libbz2 \ diff --git a/lib/libstdbuf/Makefile.depend b/lib/libstdbuf/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libstdbuf/Makefile.depend +++ b/lib/libstdbuf/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libstdthreads/Makefile.depend b/lib/libstdthreads/Makefile.depend index e1ba49601114..37acbe0cd621 100644 --- a/lib/libstdthreads/Makefile.depend +++ b/lib/libstdthreads/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ + usr.bin/xinstall.host \ .include diff --git a/lib/libtacplus/Makefile.depend b/lib/libtacplus/Makefile.depend index c1f494f87eff..9c2e45312c9f 100644 --- a/lib/libtacplus/Makefile.depend +++ b/lib/libtacplus/Makefile.depend @@ -10,9 +10,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ + usr.bin/xinstall.host \ .include diff --git a/lib/libthr/Makefile.depend b/lib/libthr/Makefile.depend index e9a1dda6ca51..7cedd5f867c7 100644 --- a/lib/libthr/Makefile.depend +++ b/lib/libthr/Makefile.depend @@ -8,8 +8,8 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libthread_db/Makefile.depend b/lib/libthread_db/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libthread_db/Makefile.depend +++ b/lib/libthread_db/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libufs/Makefile.depend b/lib/libufs/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libufs/Makefile.depend +++ b/lib/libufs/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libugidfw/Makefile.depend b/lib/libugidfw/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libugidfw/Makefile.depend +++ b/lib/libugidfw/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libulog/Makefile.depend b/lib/libulog/Makefile.depend index f3adefe05801..0d8c29b0674e 100644 --- a/lib/libulog/Makefile.depend +++ b/lib/libulog/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ + usr.bin/xinstall.host \ .include diff --git a/lib/libunbound/Makefile.depend b/lib/libunbound/Makefile.depend index 2cfec353103a..44c5fdc3413a 100644 --- a/lib/libunbound/Makefile.depend +++ b/lib/libunbound/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -13,6 +14,7 @@ DIRDEPS = \ lib/libthr \ secure/lib/libcrypto \ secure/lib/libssl \ + usr.bin/xinstall.host \ .include diff --git a/lib/libusb/Makefile.depend b/lib/libusb/Makefile.depend index e1ba49601114..37acbe0cd621 100644 --- a/lib/libusb/Makefile.depend +++ b/lib/libusb/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ + usr.bin/xinstall.host \ .include diff --git a/lib/libusbhid/Makefile.depend b/lib/libusbhid/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libusbhid/Makefile.depend +++ b/lib/libusbhid/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libutil/Makefile.depend b/lib/libutil/Makefile.depend index 5269280d143c..807c0a46764c 100644 --- a/lib/libutil/Makefile.depend +++ b/lib/libutil/Makefile.depend @@ -10,8 +10,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libvgl/Makefile.depend b/lib/libvgl/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libvgl/Makefile.depend +++ b/lib/libvgl/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libvmmapi/Makefile.depend b/lib/libvmmapi/Makefile.depend index 40b445f04779..074ac81cfb42 100644 --- a/lib/libvmmapi/Makefile.depend +++ b/lib/libvmmapi/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ + usr.bin/xinstall.host \ .include diff --git a/lib/libwrap/Makefile.depend b/lib/libwrap/Makefile.depend index 5269280d143c..807c0a46764c 100644 --- a/lib/libwrap/Makefile.depend +++ b/lib/libwrap/Makefile.depend @@ -10,8 +10,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libypclnt/Makefile.depend b/lib/libypclnt/Makefile.depend index 619ca757937c..7d7c7444e9b2 100644 --- a/lib/libypclnt/Makefile.depend +++ b/lib/libypclnt/Makefile.depend @@ -11,8 +11,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/libz/Makefile.depend b/lib/libz/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/libz/Makefile.depend +++ b/lib/libz/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/msun/Makefile.depend b/lib/msun/Makefile.depend index 6caf55f2706e..467741f6d1a9 100644 --- a/lib/msun/Makefile.depend +++ b/lib/msun/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/ncurses/form/Makefile.depend b/lib/ncurses/form/Makefile.depend index 936372895325..c3295ff8e981 100644 --- a/lib/ncurses/form/Makefile.depend +++ b/lib/ncurses/form/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ + usr.bin/xinstall.host \ .include diff --git a/lib/ncurses/formw/Makefile.depend b/lib/ncurses/formw/Makefile.depend index e942aba98876..d56ffbbe742d 100644 --- a/lib/ncurses/formw/Makefile.depend +++ b/lib/ncurses/formw/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncursesw \ + usr.bin/xinstall.host \ .include diff --git a/lib/ncurses/menu/Makefile.depend b/lib/ncurses/menu/Makefile.depend index 3ca328f016d0..5c8368f7d874 100644 --- a/lib/ncurses/menu/Makefile.depend +++ b/lib/ncurses/menu/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ + usr.bin/xinstall.host \ .include diff --git a/lib/ncurses/menuw/Makefile.depend b/lib/ncurses/menuw/Makefile.depend index 981ac37cd263..49f188286e37 100644 --- a/lib/ncurses/menuw/Makefile.depend +++ b/lib/ncurses/menuw/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncursesw \ + usr.bin/xinstall.host \ .include diff --git a/lib/ncurses/ncurses/Makefile.depend b/lib/ncurses/ncurses/Makefile.depend index 6274ac87202f..871dd718ac1f 100644 --- a/lib/ncurses/ncurses/Makefile.depend +++ b/lib/ncurses/ncurses/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncursesw \ + usr.bin/xinstall.host \ .include diff --git a/lib/ncurses/ncursesw/Makefile.depend b/lib/ncurses/ncursesw/Makefile.depend index b26f3c2fe5c7..445c456bc4f7 100644 --- a/lib/ncurses/ncursesw/Makefile.depend +++ b/lib/ncurses/ncursesw/Makefile.depend @@ -9,8 +9,8 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/lib/ncurses/panel/Makefile.depend b/lib/ncurses/panel/Makefile.depend index e5c91fb693ef..2359930f70f6 100644 --- a/lib/ncurses/panel/Makefile.depend +++ b/lib/ncurses/panel/Makefile.depend @@ -9,10 +9,10 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ + usr.bin/xinstall.host \ .include diff --git a/lib/ncurses/panelw/Makefile.depend b/lib/ncurses/panelw/Makefile.depend index c5a301e94c81..2ec647289e61 100644 --- a/lib/ncurses/panelw/Makefile.depend +++ b/lib/ncurses/panelw/Makefile.depend @@ -9,9 +9,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncursesw \ + usr.bin/xinstall.host \ .include diff --git a/libexec/atf/atf-check/Makefile.depend b/libexec/atf/atf-check/Makefile.depend index aa1a20886895..72e04cf1a78d 100644 --- a/libexec/atf/atf-check/Makefile.depend +++ b/libexec/atf/atf-check/Makefile.depend @@ -3,16 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/atf/libatf-c \ lib/atf/libatf-c++ \ lib/libc \ + lib/libc++ \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/libexec/atrun/Makefile.depend b/libexec/atrun/Makefile.depend index 3d8c2f306ad0..0d2c9f9e78d5 100644 --- a/libexec/atrun/Makefile.depend +++ b/libexec/atrun/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/libexec/bootpd/bootpgw/Makefile.depend b/libexec/bootpd/bootpgw/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/libexec/bootpd/bootpgw/Makefile.depend +++ b/libexec/bootpd/bootpgw/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/bootpd/tools/bootpef/Makefile.depend b/libexec/bootpd/tools/bootpef/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/libexec/bootpd/tools/bootpef/Makefile.depend +++ b/libexec/bootpd/tools/bootpef/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/bootpd/tools/bootptest/Makefile.depend b/libexec/bootpd/tools/bootptest/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/libexec/bootpd/tools/bootptest/Makefile.depend +++ b/libexec/bootpd/tools/bootptest/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/comsat/Makefile.depend b/libexec/comsat/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/libexec/comsat/Makefile.depend +++ b/libexec/comsat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/fingerd/Makefile.depend b/libexec/fingerd/Makefile.depend index e3af08532eec..d9ecce6a52af 100644 --- a/libexec/fingerd/Makefile.depend +++ b/libexec/fingerd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/ftpd/Makefile.depend b/libexec/ftpd/Makefile.depend index a648938b6ff4..01d6209a27de 100644 --- a/libexec/ftpd/Makefile.depend +++ b/libexec/ftpd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libmd \ diff --git a/libexec/getty/Makefile.depend b/libexec/getty/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/libexec/getty/Makefile.depend +++ b/libexec/getty/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/mail.local/Makefile.depend b/libexec/mail.local/Makefile.depend index d4bbfb2aa92a..9dfec4858713 100644 --- a/libexec/mail.local/Makefile.depend +++ b/libexec/mail.local/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libutil \ diff --git a/libexec/mknetid/Makefile.depend b/libexec/mknetid/Makefile.depend index 5930524f9ce7..c1655db8b437 100644 --- a/libexec/mknetid/Makefile.depend +++ b/libexec/mknetid/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/pppoed/Makefile.depend b/libexec/pppoed/Makefile.depend index a2060055a242..83a8148003a0 100644 --- a/libexec/pppoed/Makefile.depend +++ b/libexec/pppoed/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/libexec/rbootd/Makefile.depend b/libexec/rbootd/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/libexec/rbootd/Makefile.depend +++ b/libexec/rbootd/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/revnetgroup/Makefile.depend b/libexec/revnetgroup/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/libexec/revnetgroup/Makefile.depend +++ b/libexec/revnetgroup/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/rlogind/Makefile.depend b/libexec/rlogind/Makefile.depend index e3af08532eec..d9ecce6a52af 100644 --- a/libexec/rlogind/Makefile.depend +++ b/libexec/rlogind/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/rpc.rquotad/Makefile.depend b/libexec/rpc.rquotad/Makefile.depend index 27a6a4a115b8..3eb4558310fb 100644 --- a/libexec/rpc.rquotad/Makefile.depend +++ b/libexec/rpc.rquotad/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/libexec/rpc.rstatd/Makefile.depend b/libexec/rpc.rstatd/Makefile.depend index e7870b4b49c3..0453f999473f 100644 --- a/libexec/rpc.rstatd/Makefile.depend +++ b/libexec/rpc.rstatd/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ diff --git a/libexec/rpc.rusersd/Makefile.depend b/libexec/rpc.rusersd/Makefile.depend index 8d990c379a15..40fe95df0535 100644 --- a/libexec/rpc.rusersd/Makefile.depend +++ b/libexec/rpc.rusersd/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/libexec/rpc.rwalld/Makefile.depend b/libexec/rpc.rwalld/Makefile.depend index d9693fd64752..bcf0e390016a 100644 --- a/libexec/rpc.rwalld/Makefile.depend +++ b/libexec/rpc.rwalld/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/libexec/rpc.sprayd/Makefile.depend b/libexec/rpc.sprayd/Makefile.depend index 3b0eba6af4e1..e44fad36fdf9 100644 --- a/libexec/rpc.sprayd/Makefile.depend +++ b/libexec/rpc.sprayd/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/libexec/rshd/Makefile.depend b/libexec/rshd/Makefile.depend index e513c61c3548..a6d700e4d586 100644 --- a/libexec/rshd/Makefile.depend +++ b/libexec/rshd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/libexec/smrsh/Makefile.depend b/libexec/smrsh/Makefile.depend index 47096166cc73..af04b518f38b 100644 --- a/libexec/smrsh/Makefile.depend +++ b/libexec/smrsh/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libutil \ diff --git a/libexec/talkd/Makefile.depend b/libexec/talkd/Makefile.depend index 11fa4d730adc..7cc74610b497 100644 --- a/libexec/talkd/Makefile.depend +++ b/libexec/talkd/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/tcpd/Makefile.depend b/libexec/tcpd/Makefile.depend index 8452af99c632..e66cc0b2d565 100644 --- a/libexec/tcpd/Makefile.depend +++ b/libexec/tcpd/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ diff --git a/libexec/telnetd/Makefile.depend b/libexec/telnetd/Makefile.depend index b4f3ca5b72ce..e2ee38e3ec48 100644 --- a/libexec/telnetd/Makefile.depend +++ b/libexec/telnetd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/libexec/tftp-proxy/Makefile.depend b/libexec/tftp-proxy/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/libexec/tftp-proxy/Makefile.depend +++ b/libexec/tftp-proxy/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/libexec/tftpd/Makefile.depend b/libexec/tftpd/Makefile.depend index a02eba6f2277..2e79396a44b9 100644 --- a/libexec/tftpd/Makefile.depend +++ b/libexec/tftpd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ diff --git a/libexec/ulog-helper/Makefile.depend b/libexec/ulog-helper/Makefile.depend index dfe8b1b46789..545efc7ef401 100644 --- a/libexec/ulog-helper/Makefile.depend +++ b/libexec/ulog-helper/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libulog \ diff --git a/libexec/ypxfr/Makefile.depend b/libexec/ypxfr/Makefile.depend index 9641db9a4176..70e571fc5df5 100644 --- a/libexec/ypxfr/Makefile.depend +++ b/libexec/ypxfr/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/sbin/adjkerntz/Makefile.depend b/sbin/adjkerntz/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/adjkerntz/Makefile.depend +++ b/sbin/adjkerntz/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/atm/atmconfig/Makefile.depend b/sbin/atm/atmconfig/Makefile.depend index 99d3028dc5a3..d0b9730ddd5b 100644 --- a/sbin/atm/atmconfig/Makefile.depend +++ b/sbin/atm/atmconfig/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/sbin/badsect/Makefile.depend b/sbin/badsect/Makefile.depend index 7fb8fce4559a..66da85cb1de1 100644 --- a/sbin/badsect/Makefile.depend +++ b/sbin/badsect/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/bsdlabel/Makefile.depend b/sbin/bsdlabel/Makefile.depend index bac69c034a3b..df6361797d5d 100644 --- a/sbin/bsdlabel/Makefile.depend +++ b/sbin/bsdlabel/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/camcontrol/Makefile.depend b/sbin/camcontrol/Makefile.depend index c79bce5f2287..981ec38d17a8 100644 --- a/sbin/camcontrol/Makefile.depend +++ b/sbin/camcontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcam \ lib/libcompiler_rt \ lib/libsbuf \ diff --git a/sbin/ccdconfig/Makefile.depend b/sbin/ccdconfig/Makefile.depend index bac69c034a3b..df6361797d5d 100644 --- a/sbin/ccdconfig/Makefile.depend +++ b/sbin/ccdconfig/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/clri/Makefile.depend b/sbin/clri/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/clri/Makefile.depend +++ b/sbin/clri/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/comcontrol/Makefile.depend b/sbin/comcontrol/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/comcontrol/Makefile.depend +++ b/sbin/comcontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/conscontrol/Makefile.depend b/sbin/conscontrol/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/conscontrol/Makefile.depend +++ b/sbin/conscontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/ddb/Makefile.depend b/sbin/ddb/Makefile.depend index b7d414c85aeb..384b6754a9ab 100644 --- a/sbin/ddb/Makefile.depend +++ b/sbin/ddb/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/sbin/devd/Makefile.depend b/sbin/devd/Makefile.depend index fdd8a7ca9a2d..adc7292db895 100644 --- a/sbin/devd/Makefile.depend +++ b/sbin/devd/Makefile.depend @@ -3,12 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ + gnu/lib/csu \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libc++ \ lib/libcompiler_rt \ lib/libutil \ lib/msun \ diff --git a/sbin/devfs/Makefile.depend b/sbin/devfs/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/devfs/Makefile.depend +++ b/sbin/devfs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/dhclient/Makefile.depend b/sbin/dhclient/Makefile.depend index e3af08532eec..d9ecce6a52af 100644 --- a/sbin/dhclient/Makefile.depend +++ b/sbin/dhclient/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/dmesg/Makefile.depend b/sbin/dmesg/Makefile.depend index b7d414c85aeb..384b6754a9ab 100644 --- a/sbin/dmesg/Makefile.depend +++ b/sbin/dmesg/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/sbin/dump/Makefile.depend b/sbin/dump/Makefile.depend index b3c03a71825a..4a9f7867ec6d 100644 --- a/sbin/dump/Makefile.depend +++ b/sbin/dump/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/dumpfs/Makefile.depend b/sbin/dumpfs/Makefile.depend index 7fb8fce4559a..66da85cb1de1 100644 --- a/sbin/dumpfs/Makefile.depend +++ b/sbin/dumpfs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/dumpon/Makefile.depend b/sbin/dumpon/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/dumpon/Makefile.depend +++ b/sbin/dumpon/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/etherswitchcfg/Makefile.depend b/sbin/etherswitchcfg/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/etherswitchcfg/Makefile.depend +++ b/sbin/etherswitchcfg/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/fdisk/Makefile.depend b/sbin/fdisk/Makefile.depend index bac69c034a3b..df6361797d5d 100644 --- a/sbin/fdisk/Makefile.depend +++ b/sbin/fdisk/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/ffsinfo/Makefile.depend b/sbin/ffsinfo/Makefile.depend index 7fb8fce4559a..66da85cb1de1 100644 --- a/sbin/ffsinfo/Makefile.depend +++ b/sbin/ffsinfo/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/fsck/Makefile.depend b/sbin/fsck/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/fsck/Makefile.depend +++ b/sbin/fsck/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/fsck_ffs/Makefile.depend b/sbin/fsck_ffs/Makefile.depend index 7fb8fce4559a..66da85cb1de1 100644 --- a/sbin/fsck_ffs/Makefile.depend +++ b/sbin/fsck_ffs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/fsck_msdosfs/Makefile.depend b/sbin/fsck_msdosfs/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/fsck_msdosfs/Makefile.depend +++ b/sbin/fsck_msdosfs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/fsdb/Makefile.depend b/sbin/fsdb/Makefile.depend index 749626347205..6bb45ddb04cd 100644 --- a/sbin/fsdb/Makefile.depend +++ b/sbin/fsdb/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/libufs \ diff --git a/sbin/fsirand/Makefile.depend b/sbin/fsirand/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/sbin/fsirand/Makefile.depend +++ b/sbin/fsirand/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/gbde/Makefile.depend b/sbin/gbde/Makefile.depend index b9c27745e156..f30afe7cb903 100644 --- a/sbin/gbde/Makefile.depend +++ b/sbin/gbde/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/geom/class/cache/Makefile.depend b/sbin/geom/class/cache/Makefile.depend index bc686f5b7642..b1d6d2cfbef4 100644 --- a/sbin/geom/class/cache/Makefile.depend +++ b/sbin/geom/class/cache/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/concat/Makefile.depend b/sbin/geom/class/concat/Makefile.depend index bc686f5b7642..b1d6d2cfbef4 100644 --- a/sbin/geom/class/concat/Makefile.depend +++ b/sbin/geom/class/concat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/eli/Makefile.depend b/sbin/geom/class/eli/Makefile.depend index fd13a8bc1924..2c7c316eefa7 100644 --- a/sbin/geom/class/eli/Makefile.depend +++ b/sbin/geom/class/eli/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/sbin/geom/class/journal/Makefile.depend b/sbin/geom/class/journal/Makefile.depend index 83f19b190dd7..058f0d7f87e5 100644 --- a/sbin/geom/class/journal/Makefile.depend +++ b/sbin/geom/class/journal/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ diff --git a/sbin/geom/class/label/Makefile.depend b/sbin/geom/class/label/Makefile.depend index bc686f5b7642..b1d6d2cfbef4 100644 --- a/sbin/geom/class/label/Makefile.depend +++ b/sbin/geom/class/label/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/mirror/Makefile.depend b/sbin/geom/class/mirror/Makefile.depend index 6ba212c71e01..4fa82023ea16 100644 --- a/sbin/geom/class/mirror/Makefile.depend +++ b/sbin/geom/class/mirror/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ diff --git a/sbin/geom/class/mountver/Makefile.depend b/sbin/geom/class/mountver/Makefile.depend index bc686f5b7642..b1d6d2cfbef4 100644 --- a/sbin/geom/class/mountver/Makefile.depend +++ b/sbin/geom/class/mountver/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/multipath/Makefile.depend b/sbin/geom/class/multipath/Makefile.depend index bc686f5b7642..b1d6d2cfbef4 100644 --- a/sbin/geom/class/multipath/Makefile.depend +++ b/sbin/geom/class/multipath/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/nop/Makefile.depend b/sbin/geom/class/nop/Makefile.depend index bc686f5b7642..b1d6d2cfbef4 100644 --- a/sbin/geom/class/nop/Makefile.depend +++ b/sbin/geom/class/nop/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/part/Makefile.depend b/sbin/geom/class/part/Makefile.depend index a6d50feedd98..ef3b57ef9b99 100644 --- a/sbin/geom/class/part/Makefile.depend +++ b/sbin/geom/class/part/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libutil \ diff --git a/sbin/geom/class/raid/Makefile.depend b/sbin/geom/class/raid/Makefile.depend index 6ba212c71e01..4fa82023ea16 100644 --- a/sbin/geom/class/raid/Makefile.depend +++ b/sbin/geom/class/raid/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ diff --git a/sbin/geom/class/raid3/Makefile.depend b/sbin/geom/class/raid3/Makefile.depend index 6ba212c71e01..4fa82023ea16 100644 --- a/sbin/geom/class/raid3/Makefile.depend +++ b/sbin/geom/class/raid3/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libmd \ diff --git a/sbin/geom/class/sched/Makefile.depend b/sbin/geom/class/sched/Makefile.depend index bc686f5b7642..b1d6d2cfbef4 100644 --- a/sbin/geom/class/sched/Makefile.depend +++ b/sbin/geom/class/sched/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/shsec/Makefile.depend b/sbin/geom/class/shsec/Makefile.depend index bc686f5b7642..b1d6d2cfbef4 100644 --- a/sbin/geom/class/shsec/Makefile.depend +++ b/sbin/geom/class/shsec/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/stripe/Makefile.depend b/sbin/geom/class/stripe/Makefile.depend index bc686f5b7642..b1d6d2cfbef4 100644 --- a/sbin/geom/class/stripe/Makefile.depend +++ b/sbin/geom/class/stripe/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/class/virstor/Makefile.depend b/sbin/geom/class/virstor/Makefile.depend index bc686f5b7642..b1d6d2cfbef4 100644 --- a/sbin/geom/class/virstor/Makefile.depend +++ b/sbin/geom/class/virstor/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ sbin/geom/core \ diff --git a/sbin/geom/core/Makefile.depend b/sbin/geom/core/Makefile.depend index f9880dbe6075..e20388c0bb72 100644 --- a/sbin/geom/core/Makefile.depend +++ b/sbin/geom/core/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/ggate/ggatec/Makefile.depend b/sbin/ggate/ggatec/Makefile.depend index ae9479365944..c2834f3d54b9 100644 --- a/sbin/ggate/ggatec/Makefile.depend +++ b/sbin/ggate/ggatec/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/ggate/ggated/Makefile.depend b/sbin/ggate/ggated/Makefile.depend index 85448cf03bff..375f95b6da8c 100644 --- a/sbin/ggate/ggated/Makefile.depend +++ b/sbin/ggate/ggated/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libgeom \ lib/libthr \ diff --git a/sbin/ggate/ggatel/Makefile.depend b/sbin/ggate/ggatel/Makefile.depend index 2ad23bc89f48..4aa987016f02 100644 --- a/sbin/ggate/ggatel/Makefile.depend +++ b/sbin/ggate/ggatel/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/sbin/growfs/Makefile.depend b/sbin/growfs/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/sbin/growfs/Makefile.depend +++ b/sbin/growfs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/gvinum/Makefile.depend b/sbin/gvinum/Makefile.depend index ab889550d0b6..e67cb4a72ca3 100644 --- a/sbin/gvinum/Makefile.depend +++ b/sbin/gvinum/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libedit \ diff --git a/sbin/hastctl/Makefile.depend b/sbin/hastctl/Makefile.depend index f12a2e4065a7..55bb66cd4f36 100644 --- a/sbin/hastctl/Makefile.depend +++ b/sbin/hastctl/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/sbin/hastd/Makefile.depend b/sbin/hastd/Makefile.depend index 70e64c824f82..8fc25faadb51 100644 --- a/sbin/hastd/Makefile.depend +++ b/sbin/hastd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/sbin/ifconfig/Makefile.depend b/sbin/ifconfig/Makefile.depend index 63a1548cafe5..300eacf77ac5 100644 --- a/sbin/ifconfig/Makefile.depend +++ b/sbin/ifconfig/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libjail \ diff --git a/sbin/ipf/ipf/Makefile.depend b/sbin/ipf/ipf/Makefile.depend index 2532b4df7c6b..f781eb1d1370 100644 --- a/sbin/ipf/ipf/Makefile.depend +++ b/sbin/ipf/ipf/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ lib/libpcap \ diff --git a/sbin/ipf/ipfs/Makefile.depend b/sbin/ipf/ipfs/Makefile.depend index ae05e22e3b02..c09695388eae 100644 --- a/sbin/ipf/ipfs/Makefile.depend +++ b/sbin/ipf/ipfs/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipfstat/Makefile.depend b/sbin/ipf/ipfstat/Makefile.depend index 4023f007f83d..e2073f8e3ad0 100644 --- a/sbin/ipf/ipfstat/Makefile.depend +++ b/sbin/ipf/ipfstat/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ lib/ncurses/ncurses \ diff --git a/sbin/ipf/ipftest/Makefile.depend b/sbin/ipf/ipftest/Makefile.depend index 2acc1cb14510..0ba17cd30337 100644 --- a/sbin/ipf/ipftest/Makefile.depend +++ b/sbin/ipf/ipftest/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipmon/Makefile.depend b/sbin/ipf/ipmon/Makefile.depend index 38d4caa8bbdb..7f71b7a2971f 100644 --- a/sbin/ipf/ipmon/Makefile.depend +++ b/sbin/ipf/ipmon/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipnat/Makefile.depend b/sbin/ipf/ipnat/Makefile.depend index 221f0bceb10a..6ba8eba5c3c4 100644 --- a/sbin/ipf/ipnat/Makefile.depend +++ b/sbin/ipf/ipnat/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ippool/Makefile.depend b/sbin/ipf/ippool/Makefile.depend index e039ce09709e..05af37b93c5e 100644 --- a/sbin/ipf/ippool/Makefile.depend +++ b/sbin/ipf/ippool/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ sbin/ipf/libipf \ diff --git a/sbin/ipf/ipresend/Makefile.depend b/sbin/ipf/ipresend/Makefile.depend index eed6565d0e1f..7499c73c3480 100644 --- a/sbin/ipf/ipresend/Makefile.depend +++ b/sbin/ipf/ipresend/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ lib/msun \ diff --git a/sbin/ipfw/Makefile.depend b/sbin/ipfw/Makefile.depend index 59ad864f74e5..a4fcbf0bce75 100644 --- a/sbin/ipfw/Makefile.depend +++ b/sbin/ipfw/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libalias/libalias \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/iscontrol/Makefile.depend b/sbin/iscontrol/Makefile.depend index f58230065ebe..bf26a6c27532 100644 --- a/sbin/iscontrol/Makefile.depend +++ b/sbin/iscontrol/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcam \ lib/libcompiler_rt \ lib/libmd \ diff --git a/sbin/kldconfig/Makefile.depend b/sbin/kldconfig/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/kldconfig/Makefile.depend +++ b/sbin/kldconfig/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/kldload/Makefile.depend b/sbin/kldload/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/kldload/Makefile.depend +++ b/sbin/kldload/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/kldstat/Makefile.depend b/sbin/kldstat/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/sbin/kldstat/Makefile.depend +++ b/sbin/kldstat/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/kldunload/Makefile.depend b/sbin/kldunload/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/sbin/kldunload/Makefile.depend +++ b/sbin/kldunload/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/ldconfig/Makefile.depend b/sbin/ldconfig/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/ldconfig/Makefile.depend +++ b/sbin/ldconfig/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/md5/Makefile.depend b/sbin/md5/Makefile.depend index f3adefe05801..50e2e74bea35 100644 --- a/sbin/md5/Makefile.depend +++ b/sbin/md5/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/sbin/mdconfig/Makefile.depend b/sbin/mdconfig/Makefile.depend index 0b555dc8a5ea..d6b21c79a951 100644 --- a/sbin/mdconfig/Makefile.depend +++ b/sbin/mdconfig/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libexpat \ diff --git a/sbin/mdmfs/Makefile.depend b/sbin/mdmfs/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/mdmfs/Makefile.depend +++ b/sbin/mdmfs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mknod/Makefile.depend b/sbin/mknod/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/mknod/Makefile.depend +++ b/sbin/mknod/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mksnap_ffs/Makefile.depend b/sbin/mksnap_ffs/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/mksnap_ffs/Makefile.depend +++ b/sbin/mksnap_ffs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mount/Makefile.depend b/sbin/mount/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/sbin/mount/Makefile.depend +++ b/sbin/mount/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/mount_cd9660/Makefile.depend b/sbin/mount_cd9660/Makefile.depend index b1a67cd37ad9..69a5342e7030 100644 --- a/sbin/mount_cd9660/Makefile.depend +++ b/sbin/mount_cd9660/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkiconv \ diff --git a/sbin/mount_fusefs/Makefile.depend b/sbin/mount_fusefs/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/mount_fusefs/Makefile.depend +++ b/sbin/mount_fusefs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mount_msdosfs/Makefile.depend b/sbin/mount_msdosfs/Makefile.depend index 22fad8deab8a..6f58bd155962 100644 --- a/sbin/mount_msdosfs/Makefile.depend +++ b/sbin/mount_msdosfs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkiconv \ lib/libutil \ diff --git a/sbin/mount_nfs/Makefile.depend b/sbin/mount_nfs/Makefile.depend index 1c61866765c9..2a44c25ffe8e 100644 --- a/sbin/mount_nfs/Makefile.depend +++ b/sbin/mount_nfs/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mount_nullfs/Makefile.depend b/sbin/mount_nullfs/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/mount_nullfs/Makefile.depend +++ b/sbin/mount_nullfs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/mount_udf/Makefile.depend b/sbin/mount_udf/Makefile.depend index b7e649d8d7d6..24c6b245d3af 100644 --- a/sbin/mount_udf/Makefile.depend +++ b/sbin/mount_udf/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkiconv \ diff --git a/sbin/mount_unionfs/Makefile.depend b/sbin/mount_unionfs/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/mount_unionfs/Makefile.depend +++ b/sbin/mount_unionfs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/natd/Makefile.depend b/sbin/natd/Makefile.depend index a15829ca96b8..0aa70dbca58f 100644 --- a/sbin/natd/Makefile.depend +++ b/sbin/natd/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libalias/libalias \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/newfs/Makefile.depend b/sbin/newfs/Makefile.depend index d6d2939dca6d..f94cc5edbe53 100644 --- a/sbin/newfs/Makefile.depend +++ b/sbin/newfs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ lib/libutil \ diff --git a/sbin/newfs_msdos/Makefile.depend b/sbin/newfs_msdos/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/newfs_msdos/Makefile.depend +++ b/sbin/newfs_msdos/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/nfsiod/Makefile.depend b/sbin/nfsiod/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/sbin/nfsiod/Makefile.depend +++ b/sbin/nfsiod/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/nos-tun/Makefile.depend b/sbin/nos-tun/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/sbin/nos-tun/Makefile.depend +++ b/sbin/nos-tun/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/nvmecontrol/Makefile.depend b/sbin/nvmecontrol/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/nvmecontrol/Makefile.depend +++ b/sbin/nvmecontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/pfctl/Makefile.depend b/sbin/pfctl/Makefile.depend index c4ddd860abce..3114c66c6910 100644 --- a/sbin/pfctl/Makefile.depend +++ b/sbin/pfctl/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/msun \ diff --git a/sbin/pflogd/Makefile.depend b/sbin/pflogd/Makefile.depend index b42437a19d44..fb2e1ea9ff35 100644 --- a/sbin/pflogd/Makefile.depend +++ b/sbin/pflogd/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpcap \ diff --git a/sbin/ping/Makefile.depend b/sbin/ping/Makefile.depend index dbc78f8a0384..aa5c26eba086 100644 --- a/sbin/ping/Makefile.depend +++ b/sbin/ping/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcapsicum \ lib/libcompiler_rt \ lib/libipsec \ diff --git a/sbin/ping6/Makefile.depend b/sbin/ping6/Makefile.depend index 57b18a823075..c657f0f52556 100644 --- a/sbin/ping6/Makefile.depend +++ b/sbin/ping6/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ lib/libmd \ diff --git a/sbin/quotacheck/Makefile.depend b/sbin/quotacheck/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/sbin/quotacheck/Makefile.depend +++ b/sbin/quotacheck/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/rcorder/Makefile.depend b/sbin/rcorder/Makefile.depend index c642cb1106ce..ed049c94b327 100644 --- a/sbin/rcorder/Makefile.depend +++ b/sbin/rcorder/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/reboot/Makefile.depend b/sbin/reboot/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/reboot/Makefile.depend +++ b/sbin/reboot/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/recoverdisk/Makefile.depend b/sbin/recoverdisk/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/recoverdisk/Makefile.depend +++ b/sbin/recoverdisk/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/restore/Makefile.depend b/sbin/restore/Makefile.depend index b3c03a71825a..4a9f7867ec6d 100644 --- a/sbin/restore/Makefile.depend +++ b/sbin/restore/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/route/Makefile.depend b/sbin/route/Makefile.depend index b8fd55457479..32760141ab1a 100644 --- a/sbin/route/Makefile.depend +++ b/sbin/route/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/routed/rtquery/Makefile.depend b/sbin/routed/rtquery/Makefile.depend index 28d49cc89966..beb04be9c6be 100644 --- a/sbin/routed/rtquery/Makefile.depend +++ b/sbin/routed/rtquery/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/sbin/rtsol/Makefile.depend b/sbin/rtsol/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/sbin/rtsol/Makefile.depend +++ b/sbin/rtsol/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/savecore/Makefile.depend b/sbin/savecore/Makefile.depend index 8d258dfd965e..4f4a210e3f59 100644 --- a/sbin/savecore/Makefile.depend +++ b/sbin/savecore/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libz \ diff --git a/sbin/setkey/Makefile.depend b/sbin/setkey/Makefile.depend index 736ae9228802..2c5eceab3944 100644 --- a/sbin/setkey/Makefile.depend +++ b/sbin/setkey/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ lib/liby \ diff --git a/sbin/shutdown/Makefile.depend b/sbin/shutdown/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/shutdown/Makefile.depend +++ b/sbin/shutdown/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/spppcontrol/Makefile.depend b/sbin/spppcontrol/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/spppcontrol/Makefile.depend +++ b/sbin/spppcontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/swapon/Makefile.depend b/sbin/swapon/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/sbin/swapon/Makefile.depend +++ b/sbin/swapon/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/sbin/sysctl/Makefile.depend b/sbin/sysctl/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/sbin/sysctl/Makefile.depend +++ b/sbin/sysctl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/sbin/tunefs/Makefile.depend b/sbin/tunefs/Makefile.depend index 7fb8fce4559a..66da85cb1de1 100644 --- a/sbin/tunefs/Makefile.depend +++ b/sbin/tunefs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/sbin/umount/Makefile.depend b/sbin/umount/Makefile.depend index 5930524f9ce7..c1655db8b437 100644 --- a/sbin/umount/Makefile.depend +++ b/sbin/umount/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/secure/lib/libcrypto/Makefile.depend b/secure/lib/libcrypto/Makefile.depend index c29f848fe460..7ef0e6328eb6 100644 --- a/secure/lib/libcrypto/Makefile.depend +++ b/secure/lib/libcrypto/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/msun \ + usr.bin/xinstall.host \ .include diff --git a/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend +++ b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/secure/lib/libcrypto/engines/libaep/Makefile.depend b/secure/lib/libcrypto/engines/libaep/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/secure/lib/libcrypto/engines/libaep/Makefile.depend +++ b/secure/lib/libcrypto/engines/libaep/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/secure/lib/libcrypto/engines/libatalla/Makefile.depend b/secure/lib/libcrypto/engines/libatalla/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/secure/lib/libcrypto/engines/libatalla/Makefile.depend +++ b/secure/lib/libcrypto/engines/libatalla/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/secure/lib/libcrypto/engines/libchil/Makefile.depend b/secure/lib/libcrypto/engines/libchil/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/secure/lib/libcrypto/engines/libchil/Makefile.depend +++ b/secure/lib/libcrypto/engines/libchil/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/secure/lib/libcrypto/engines/libcswift/Makefile.depend b/secure/lib/libcrypto/engines/libcswift/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/secure/lib/libcrypto/engines/libcswift/Makefile.depend +++ b/secure/lib/libcrypto/engines/libcswift/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/secure/lib/libcrypto/engines/libgost/Makefile.depend b/secure/lib/libcrypto/engines/libgost/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/secure/lib/libcrypto/engines/libgost/Makefile.depend +++ b/secure/lib/libcrypto/engines/libgost/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/secure/lib/libcrypto/engines/libnuron/Makefile.depend b/secure/lib/libcrypto/engines/libnuron/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/secure/lib/libcrypto/engines/libnuron/Makefile.depend +++ b/secure/lib/libcrypto/engines/libnuron/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/secure/lib/libcrypto/engines/libsureware/Makefile.depend b/secure/lib/libcrypto/engines/libsureware/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/secure/lib/libcrypto/engines/libsureware/Makefile.depend +++ b/secure/lib/libcrypto/engines/libsureware/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/secure/lib/libcrypto/engines/libubsec/Makefile.depend b/secure/lib/libcrypto/engines/libubsec/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/secure/lib/libcrypto/engines/libubsec/Makefile.depend +++ b/secure/lib/libcrypto/engines/libubsec/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/secure/lib/libssh/Makefile.depend b/secure/lib/libssh/Makefile.depend index 7d3729c1febd..474e282fceaf 100644 --- a/secure/lib/libssh/Makefile.depend +++ b/secure/lib/libssh/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -24,6 +25,7 @@ DIRDEPS = \ lib/libz \ secure/lib/libcrypto \ secure/lib/libssl \ + usr.bin/xinstall.host \ .include diff --git a/secure/lib/libssl/Makefile.depend b/secure/lib/libssl/Makefile.depend index 2c3cff5e1329..6047b890a604 100644 --- a/secure/lib/libssl/Makefile.depend +++ b/secure/lib/libssl/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ secure/lib/libcrypto \ + usr.bin/xinstall.host \ .include diff --git a/secure/libexec/sftp-server/Makefile.depend b/secure/libexec/sftp-server/Makefile.depend index 9ec443c113b4..277d93412b94 100644 --- a/secure/libexec/sftp-server/Makefile.depend +++ b/secure/libexec/sftp-server/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/secure/libexec/ssh-keysign/Makefile.depend b/secure/libexec/ssh-keysign/Makefile.depend index 9ec443c113b4..277d93412b94 100644 --- a/secure/libexec/ssh-keysign/Makefile.depend +++ b/secure/libexec/ssh-keysign/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/secure/libexec/ssh-pkcs11-helper/Makefile.depend b/secure/libexec/ssh-pkcs11-helper/Makefile.depend index 9ec443c113b4..277d93412b94 100644 --- a/secure/libexec/ssh-pkcs11-helper/Makefile.depend +++ b/secure/libexec/ssh-pkcs11-helper/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/secure/usr.bin/bdes/Makefile.depend b/secure/usr.bin/bdes/Makefile.depend index 761a02420758..ebcc77915608 100644 --- a/secure/usr.bin/bdes/Makefile.depend +++ b/secure/usr.bin/bdes/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/secure/usr.bin/openssl/Makefile.depend b/secure/usr.bin/openssl/Makefile.depend index 88ac4865f8fc..cdca1d280c31 100644 --- a/secure/usr.bin/openssl/Makefile.depend +++ b/secure/usr.bin/openssl/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/secure/usr.bin/scp/Makefile.depend b/secure/usr.bin/scp/Makefile.depend index 9ec443c113b4..277d93412b94 100644 --- a/secure/usr.bin/scp/Makefile.depend +++ b/secure/usr.bin/scp/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/secure/usr.bin/sftp/Makefile.depend b/secure/usr.bin/sftp/Makefile.depend index 1f554f057163..2a5eb5d4204e 100644 --- a/secure/usr.bin/sftp/Makefile.depend +++ b/secure/usr.bin/sftp/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/secure/usr.bin/ssh-add/Makefile.depend b/secure/usr.bin/ssh-add/Makefile.depend index 9ec443c113b4..277d93412b94 100644 --- a/secure/usr.bin/ssh-add/Makefile.depend +++ b/secure/usr.bin/ssh-add/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/secure/usr.bin/ssh-agent/Makefile.depend b/secure/usr.bin/ssh-agent/Makefile.depend index 9ec443c113b4..277d93412b94 100644 --- a/secure/usr.bin/ssh-agent/Makefile.depend +++ b/secure/usr.bin/ssh-agent/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/secure/usr.bin/ssh-keygen/Makefile.depend b/secure/usr.bin/ssh-keygen/Makefile.depend index 9ec443c113b4..277d93412b94 100644 --- a/secure/usr.bin/ssh-keygen/Makefile.depend +++ b/secure/usr.bin/ssh-keygen/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/secure/usr.bin/ssh-keyscan/Makefile.depend b/secure/usr.bin/ssh-keyscan/Makefile.depend index 9ec443c113b4..277d93412b94 100644 --- a/secure/usr.bin/ssh-keyscan/Makefile.depend +++ b/secure/usr.bin/ssh-keyscan/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/secure/usr.bin/ssh/Makefile.depend b/secure/usr.bin/ssh/Makefile.depend index 7ea112bc7394..c8445146b345 100644 --- a/secure/usr.bin/ssh/Makefile.depend +++ b/secure/usr.bin/ssh/Makefile.depend @@ -3,10 +3,12 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ include/gssapi \ + include/rpc \ include/xlocale \ kerberos5/lib/libasn1 \ kerberos5/lib/libheimbase \ diff --git a/secure/usr.sbin/sshd/Makefile.depend b/secure/usr.sbin/sshd/Makefile.depend index 140ceeccbfbb..f6a63fe8e9d5 100644 --- a/secure/usr.sbin/sshd/Makefile.depend +++ b/secure/usr.sbin/sshd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/share/syscons/scrnmaps/Makefile.depend b/share/syscons/scrnmaps/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/share/syscons/scrnmaps/Makefile.depend +++ b/share/syscons/scrnmaps/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/apply/Makefile.depend b/usr.bin/apply/Makefile.depend index a1157119ad51..dc9c62a00fa1 100644 --- a/usr.bin/apply/Makefile.depend +++ b/usr.bin/apply/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsbuf \ diff --git a/usr.bin/ar/Makefile.depend b/usr.bin/ar/Makefile.depend index fb5f3e35a21b..c8ce9caa1d3c 100644 --- a/usr.bin/ar/Makefile.depend +++ b/usr.bin/ar/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/usr.bin/asa/Makefile.depend b/usr.bin/asa/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/asa/Makefile.depend +++ b/usr.bin/asa/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/at/Makefile.depend b/usr.bin/at/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/at/Makefile.depend +++ b/usr.bin/at/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/atf/atf-sh/Makefile.depend b/usr.bin/atf/atf-sh/Makefile.depend index aa1a20886895..72e04cf1a78d 100644 --- a/usr.bin/atf/atf-sh/Makefile.depend +++ b/usr.bin/atf/atf-sh/Makefile.depend @@ -3,16 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/atf/libatf-c \ lib/atf/libatf-c++ \ lib/libc \ + lib/libc++ \ lib/libcompiler_rt \ + lib/libcxxrt \ lib/msun \ diff --git a/usr.bin/atm/sscop/Makefile.depend b/usr.bin/atm/sscop/Makefile.depend index 1d7d03c9ac9c..08035b199dc3 100644 --- a/usr.bin/atm/sscop/Makefile.depend +++ b/usr.bin/atm/sscop/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbegemot \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ lib/libngatm \ diff --git a/usr.bin/awk/Makefile.depend b/usr.bin/awk/Makefile.depend index 5b1f96fd4a82..bcdaffeb83e8 100644 --- a/usr.bin/awk/Makefile.depend +++ b/usr.bin/awk/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/banner/Makefile.depend b/usr.bin/banner/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/banner/Makefile.depend +++ b/usr.bin/banner/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/basename/Makefile.depend b/usr.bin/basename/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/basename/Makefile.depend +++ b/usr.bin/basename/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bc/Makefile.depend b/usr.bin/bc/Makefile.depend index 3cc8704c86d6..e13898c4c621 100644 --- a/usr.bin/bc/Makefile.depend +++ b/usr.bin/bc/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.bin/biff/Makefile.depend b/usr.bin/biff/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/biff/Makefile.depend +++ b/usr.bin/biff/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bluetooth/bthost/Makefile.depend b/usr.bin/bluetooth/bthost/Makefile.depend index 334348050096..9e752f475e12 100644 --- a/usr.bin/bluetooth/bthost/Makefile.depend +++ b/usr.bin/bluetooth/bthost/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bluetooth/btsockstat/Makefile.depend b/usr.bin/bluetooth/btsockstat/Makefile.depend index c8112080776a..7272828c7373 100644 --- a/usr.bin/bluetooth/btsockstat/Makefile.depend +++ b/usr.bin/bluetooth/btsockstat/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend index 8402227f3aa8..70283d4fe738 100644 --- a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend +++ b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.bin/brandelf/Makefile.depend b/usr.bin/brandelf/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/brandelf/Makefile.depend +++ b/usr.bin/brandelf/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bsdiff/bsdiff/Makefile.depend b/usr.bin/bsdiff/bsdiff/Makefile.depend index e13f9731efe8..95b1d2b4c706 100644 --- a/usr.bin/bsdiff/bsdiff/Makefile.depend +++ b/usr.bin/bsdiff/bsdiff/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bsdiff/bspatch/Makefile.depend b/usr.bin/bsdiff/bspatch/Makefile.depend index e13f9731efe8..95b1d2b4c706 100644 --- a/usr.bin/bsdiff/bspatch/Makefile.depend +++ b/usr.bin/bsdiff/bspatch/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/bzip2/Makefile.depend b/usr.bin/bzip2/Makefile.depend index 7616a5eeee2c..3b800419adc2 100644 --- a/usr.bin/bzip2/Makefile.depend +++ b/usr.bin/bzip2/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/bzip2recover/Makefile.depend b/usr.bin/bzip2recover/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/bzip2recover/Makefile.depend +++ b/usr.bin/bzip2recover/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/c89/Makefile.depend b/usr.bin/c89/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/c89/Makefile.depend +++ b/usr.bin/c89/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/c99/Makefile.depend b/usr.bin/c99/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/c99/Makefile.depend +++ b/usr.bin/c99/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/calendar/Makefile.depend b/usr.bin/calendar/Makefile.depend index 26b0cb7f5dde..da4f56b373df 100644 --- a/usr.bin/calendar/Makefile.depend +++ b/usr.bin/calendar/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/cap_mkdb/Makefile.depend b/usr.bin/cap_mkdb/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/cap_mkdb/Makefile.depend +++ b/usr.bin/cap_mkdb/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/catman/Makefile.depend b/usr.bin/catman/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/catman/Makefile.depend +++ b/usr.bin/catman/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/chat/Makefile.depend b/usr.bin/chat/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/chat/Makefile.depend +++ b/usr.bin/chat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/checknr/Makefile.depend b/usr.bin/checknr/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/checknr/Makefile.depend +++ b/usr.bin/checknr/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/chkey/Makefile.depend b/usr.bin/chkey/Makefile.depend index c04a0a5edede..93ea89a54add 100644 --- a/usr.bin/chkey/Makefile.depend +++ b/usr.bin/chkey/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ diff --git a/usr.bin/chpass/Makefile.depend b/usr.bin/chpass/Makefile.depend index eff6559d030b..e31b02bc51f2 100644 --- a/usr.bin/chpass/Makefile.depend +++ b/usr.bin/chpass/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ diff --git a/usr.bin/cksum/Makefile.depend b/usr.bin/cksum/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/cksum/Makefile.depend +++ b/usr.bin/cksum/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/clang/clang-tblgen/Makefile.depend b/usr.bin/clang/clang-tblgen/Makefile.depend index 1a3fce45f4e3..70ecfefb3674 100644 --- a/usr.bin/clang/clang-tblgen/Makefile.depend +++ b/usr.bin/clang/clang-tblgen/Makefile.depend @@ -3,17 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libgcc \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ + gnu/lib/csu \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/clang/libllvmsupport \ lib/clang/libllvmtablegen \ lib/libc \ + lib/libc++ \ lib/libcompiler_rt \ lib/msun \ + lib/ncurses/ncurses \ .include diff --git a/usr.bin/clang/clang/Makefile.depend b/usr.bin/clang/clang/Makefile.depend index 947a3e94601d..f7414039dde3 100644 --- a/usr.bin/clang/clang/Makefile.depend +++ b/usr.bin/clang/clang/Makefile.depend @@ -3,8 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ + gnu/lib/csu \ include \ include/xlocale \ lib/${CSU_DIR} \ @@ -81,9 +80,12 @@ DIRDEPS = \ lib/clang/libllvmx86instprinter \ lib/clang/libllvmx86utils \ lib/libc \ + lib/libc++ \ lib/libcompiler_rt \ lib/msun \ + lib/ncurses/ncurses \ usr.bin/clang/clang-tblgen.host \ + usr.bin/clang/tblgen.host \ .include diff --git a/usr.bin/clang/tblgen/Makefile.depend b/usr.bin/clang/tblgen/Makefile.depend index 1a3fce45f4e3..70ecfefb3674 100644 --- a/usr.bin/clang/tblgen/Makefile.depend +++ b/usr.bin/clang/tblgen/Makefile.depend @@ -3,17 +3,17 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - gnu/lib/libgcc \ - gnu/lib/libstdc++ \ - gnu/lib/libsupc++ \ + gnu/lib/csu \ include \ include/xlocale \ lib/${CSU_DIR} \ lib/clang/libllvmsupport \ lib/clang/libllvmtablegen \ lib/libc \ + lib/libc++ \ lib/libcompiler_rt \ lib/msun \ + lib/ncurses/ncurses \ .include diff --git a/usr.bin/cmp/Makefile.depend b/usr.bin/cmp/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/cmp/Makefile.depend +++ b/usr.bin/cmp/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/col/Makefile.depend b/usr.bin/col/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/col/Makefile.depend +++ b/usr.bin/col/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/colcrt/Makefile.depend b/usr.bin/colcrt/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/colcrt/Makefile.depend +++ b/usr.bin/colcrt/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/colldef/Makefile.depend b/usr.bin/colldef/Makefile.depend index 8249cb41cd02..032dbbf85786 100644 --- a/usr.bin/colldef/Makefile.depend +++ b/usr.bin/colldef/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ usr.bin/lex/lib \ diff --git a/usr.bin/colrm/Makefile.depend b/usr.bin/colrm/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/colrm/Makefile.depend +++ b/usr.bin/colrm/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/column/Makefile.depend b/usr.bin/column/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/column/Makefile.depend +++ b/usr.bin/column/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/comm/Makefile.depend b/usr.bin/comm/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/comm/Makefile.depend +++ b/usr.bin/comm/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/compile_et/Makefile.depend b/usr.bin/compile_et/Makefile.depend index b442c85b1bfa..f90d17cbfba8 100644 --- a/usr.bin/compile_et/Makefile.depend +++ b/usr.bin/compile_et/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ kerberos5/lib/libvers \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ diff --git a/usr.bin/compress/Makefile.depend b/usr.bin/compress/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/compress/Makefile.depend +++ b/usr.bin/compress/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/cpio/Makefile.depend b/usr.bin/cpio/Makefile.depend index 91c0c581ff74..7f1d5315141e 100644 --- a/usr.bin/cpio/Makefile.depend +++ b/usr.bin/cpio/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/usr.bin/cpuset/Makefile.depend b/usr.bin/cpuset/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/cpuset/Makefile.depend +++ b/usr.bin/cpuset/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/csplit/Makefile.depend b/usr.bin/csplit/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/csplit/Makefile.depend +++ b/usr.bin/csplit/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/csup/Makefile.depend b/usr.bin/csup/Makefile.depend index 4ee17dedb94b..061f7d070a83 100644 --- a/usr.bin/csup/Makefile.depend +++ b/usr.bin/csup/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libthr \ diff --git a/usr.bin/ctags/Makefile.depend b/usr.bin/ctags/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/ctags/Makefile.depend +++ b/usr.bin/ctags/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ctlstat/Makefile.depend b/usr.bin/ctlstat/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/ctlstat/Makefile.depend +++ b/usr.bin/ctlstat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/cut/Makefile.depend b/usr.bin/cut/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/cut/Makefile.depend +++ b/usr.bin/cut/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/dc/Makefile.depend b/usr.bin/dc/Makefile.depend index d4efe3363e45..2e6643d674ec 100644 --- a/usr.bin/dc/Makefile.depend +++ b/usr.bin/dc/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/usr.bin/dirname/Makefile.depend b/usr.bin/dirname/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/dirname/Makefile.depend +++ b/usr.bin/dirname/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/du/Makefile.depend b/usr.bin/du/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.bin/du/Makefile.depend +++ b/usr.bin/du/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/ee/Makefile.depend b/usr.bin/ee/Makefile.depend index 233a7c6cd0b8..4f4df6520bd4 100644 --- a/usr.bin/ee/Makefile.depend +++ b/usr.bin/ee/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/elf2aout/Makefile.depend b/usr.bin/elf2aout/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/elf2aout/Makefile.depend +++ b/usr.bin/elf2aout/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/elfdump/Makefile.depend b/usr.bin/elfdump/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/elfdump/Makefile.depend +++ b/usr.bin/elfdump/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/enigma/Makefile.depend b/usr.bin/enigma/Makefile.depend index 59126995bf0c..ea9a8a21fd88 100644 --- a/usr.bin/enigma/Makefile.depend +++ b/usr.bin/enigma/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ diff --git a/usr.bin/env/Makefile.depend b/usr.bin/env/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/env/Makefile.depend +++ b/usr.bin/env/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/expand/Makefile.depend b/usr.bin/expand/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/expand/Makefile.depend +++ b/usr.bin/expand/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/false/Makefile.depend b/usr.bin/false/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/false/Makefile.depend +++ b/usr.bin/false/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/fetch/Makefile.depend b/usr.bin/fetch/Makefile.depend index 722654902907..b7ff32463013 100644 --- a/usr.bin/fetch/Makefile.depend +++ b/usr.bin/fetch/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/usr.bin/file/Makefile.depend b/usr.bin/file/Makefile.depend index 5d1fe0e16cf9..35dd078a5e28 100644 --- a/usr.bin/file/Makefile.depend +++ b/usr.bin/file/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmagic \ lib/libz \ diff --git a/usr.bin/file2c/Makefile.depend b/usr.bin/file2c/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/file2c/Makefile.depend +++ b/usr.bin/file2c/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/find/Makefile.depend b/usr.bin/find/Makefile.depend index 9e4103f0ee3d..c834e401a401 100644 --- a/usr.bin/find/Makefile.depend +++ b/usr.bin/find/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/finger/Makefile.depend b/usr.bin/finger/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/finger/Makefile.depend +++ b/usr.bin/finger/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/fmt/Makefile.depend b/usr.bin/fmt/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/fmt/Makefile.depend +++ b/usr.bin/fmt/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/fold/Makefile.depend b/usr.bin/fold/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/fold/Makefile.depend +++ b/usr.bin/fold/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/from/Makefile.depend b/usr.bin/from/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/from/Makefile.depend +++ b/usr.bin/from/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/fstat/Makefile.depend b/usr.bin/fstat/Makefile.depend index c811358a1162..5c89c182eb46 100644 --- a/usr.bin/fstat/Makefile.depend +++ b/usr.bin/fstat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libkvm \ diff --git a/usr.bin/fsync/Makefile.depend b/usr.bin/fsync/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/fsync/Makefile.depend +++ b/usr.bin/fsync/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ftp/Makefile.depend b/usr.bin/ftp/Makefile.depend index 1adc0d1cd8b4..b176abfa6bb7 100644 --- a/usr.bin/ftp/Makefile.depend +++ b/usr.bin/ftp/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/libutil \ diff --git a/usr.bin/gcore/Makefile.depend b/usr.bin/gcore/Makefile.depend index c121cbc81234..2d670d2625ea 100644 --- a/usr.bin/gcore/Makefile.depend +++ b/usr.bin/gcore/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsbuf \ lib/libutil \ diff --git a/usr.bin/gencat/Makefile.depend b/usr.bin/gencat/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.bin/gencat/Makefile.depend +++ b/usr.bin/gencat/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/getconf/Makefile.depend b/usr.bin/getconf/Makefile.depend index 2b3f880dc2a7..3cc34a178186 100644 --- a/usr.bin/getconf/Makefile.depend +++ b/usr.bin/getconf/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/getent/Makefile.depend b/usr.bin/getent/Makefile.depend index 886683c668e9..5de5043a0bb9 100644 --- a/usr.bin/getent/Makefile.depend +++ b/usr.bin/getent/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/getopt/Makefile.depend b/usr.bin/getopt/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/getopt/Makefile.depend +++ b/usr.bin/getopt/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/gprof/Makefile.depend b/usr.bin/gprof/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/gprof/Makefile.depend +++ b/usr.bin/gprof/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/grep/Makefile.depend b/usr.bin/grep/Makefile.depend index e06aa1dcb23b..b8b81d787bce 100644 --- a/usr.bin/grep/Makefile.depend +++ b/usr.bin/grep/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ lib/libz \ diff --git a/usr.bin/gzip/Makefile.depend b/usr.bin/gzip/Makefile.depend index e59b5376efc3..4e4edde654c0 100644 --- a/usr.bin/gzip/Makefile.depend +++ b/usr.bin/gzip/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbz2 \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ lib/libz \ diff --git a/usr.bin/head/Makefile.depend b/usr.bin/head/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/head/Makefile.depend +++ b/usr.bin/head/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/hexdump/Makefile.depend b/usr.bin/hexdump/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/hexdump/Makefile.depend +++ b/usr.bin/hexdump/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/host/Makefile.depend b/usr.bin/host/Makefile.depend index aeb60b6e7f95..74e1d285bfa9 100644 --- a/usr.bin/host/Makefile.depend +++ b/usr.bin/host/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/usr.bin/id/Makefile.depend b/usr.bin/id/Makefile.depend index cfab52535a52..24594da0ac10 100644 --- a/usr.bin/id/Makefile.depend +++ b/usr.bin/id/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/indent/Makefile.depend b/usr.bin/indent/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/indent/Makefile.depend +++ b/usr.bin/indent/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ipcrm/Makefile.depend b/usr.bin/ipcrm/Makefile.depend index b7d414c85aeb..384b6754a9ab 100644 --- a/usr.bin/ipcrm/Makefile.depend +++ b/usr.bin/ipcrm/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/ipcs/Makefile.depend b/usr.bin/ipcs/Makefile.depend index b7d414c85aeb..384b6754a9ab 100644 --- a/usr.bin/ipcs/Makefile.depend +++ b/usr.bin/ipcs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/join/Makefile.depend b/usr.bin/join/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/join/Makefile.depend +++ b/usr.bin/join/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/jot/Makefile.depend b/usr.bin/jot/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/jot/Makefile.depend +++ b/usr.bin/jot/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/kdump/Makefile.depend b/usr.bin/kdump/Makefile.depend index abb06b452307..c7bcbb837428 100644 --- a/usr.bin/kdump/Makefile.depend +++ b/usr.bin/kdump/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcapsicum \ lib/libcompiler_rt \ lib/libnv \ diff --git a/usr.bin/keylogin/Makefile.depend b/usr.bin/keylogin/Makefile.depend index 3b0eba6af4e1..e44fad36fdf9 100644 --- a/usr.bin/keylogin/Makefile.depend +++ b/usr.bin/keylogin/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.bin/keylogout/Makefile.depend b/usr.bin/keylogout/Makefile.depend index 5930524f9ce7..c1655db8b437 100644 --- a/usr.bin/keylogout/Makefile.depend +++ b/usr.bin/keylogout/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/killall/Makefile.depend b/usr.bin/killall/Makefile.depend index 4ece791e62b4..80299ac8a6bd 100644 --- a/usr.bin/killall/Makefile.depend +++ b/usr.bin/killall/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libjail \ diff --git a/usr.bin/ktrace/Makefile.depend b/usr.bin/ktrace/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/ktrace/Makefile.depend +++ b/usr.bin/ktrace/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ktrdump/Makefile.depend b/usr.bin/ktrdump/Makefile.depend index b7d414c85aeb..384b6754a9ab 100644 --- a/usr.bin/ktrdump/Makefile.depend +++ b/usr.bin/ktrdump/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/lam/Makefile.depend b/usr.bin/lam/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/lam/Makefile.depend +++ b/usr.bin/lam/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/last/Makefile.depend b/usr.bin/last/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/last/Makefile.depend +++ b/usr.bin/last/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/lastcomm/Makefile.depend b/usr.bin/lastcomm/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/lastcomm/Makefile.depend +++ b/usr.bin/lastcomm/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ldd/Makefile.depend b/usr.bin/ldd/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.bin/ldd/Makefile.depend +++ b/usr.bin/ldd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/leave/Makefile.depend b/usr.bin/leave/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/leave/Makefile.depend +++ b/usr.bin/leave/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/less/Makefile.depend b/usr.bin/less/Makefile.depend index 233a7c6cd0b8..4f4df6520bd4 100644 --- a/usr.bin/less/Makefile.depend +++ b/usr.bin/less/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/lessecho/Makefile.depend b/usr.bin/lessecho/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/lessecho/Makefile.depend +++ b/usr.bin/lessecho/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/lesskey/Makefile.depend b/usr.bin/lesskey/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/lesskey/Makefile.depend +++ b/usr.bin/lesskey/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/limits/Makefile.depend b/usr.bin/limits/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.bin/limits/Makefile.depend +++ b/usr.bin/limits/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/locale/Makefile.depend b/usr.bin/locale/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/locale/Makefile.depend +++ b/usr.bin/locale/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/locate/bigram/Makefile.depend b/usr.bin/locate/bigram/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/locate/bigram/Makefile.depend +++ b/usr.bin/locate/bigram/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/locate/code/Makefile.depend b/usr.bin/locate/code/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/locate/code/Makefile.depend +++ b/usr.bin/locate/code/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/locate/locate/Makefile.depend b/usr.bin/locate/locate/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.bin/locate/locate/Makefile.depend +++ b/usr.bin/locate/locate/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/lock/Makefile.depend b/usr.bin/lock/Makefile.depend index 59126995bf0c..ea9a8a21fd88 100644 --- a/usr.bin/lock/Makefile.depend +++ b/usr.bin/lock/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ diff --git a/usr.bin/lockf/Makefile.depend b/usr.bin/lockf/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/lockf/Makefile.depend +++ b/usr.bin/lockf/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/logger/Makefile.depend b/usr.bin/logger/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/logger/Makefile.depend +++ b/usr.bin/logger/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/login/Makefile.depend b/usr.bin/login/Makefile.depend index 5dbe42cdaf55..67fd380bc7a8 100644 --- a/usr.bin/login/Makefile.depend +++ b/usr.bin/login/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/usr.bin/logins/Makefile.depend b/usr.bin/logins/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/logins/Makefile.depend +++ b/usr.bin/logins/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/logname/Makefile.depend b/usr.bin/logname/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/logname/Makefile.depend +++ b/usr.bin/logname/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/look/Makefile.depend b/usr.bin/look/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/look/Makefile.depend +++ b/usr.bin/look/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/lsvfs/Makefile.depend b/usr.bin/lsvfs/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/lsvfs/Makefile.depend +++ b/usr.bin/lsvfs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/lzmainfo/Makefile.depend b/usr.bin/lzmainfo/Makefile.depend index 6da741b42b7f..b7653d1d49f8 100644 --- a/usr.bin/lzmainfo/Makefile.depend +++ b/usr.bin/lzmainfo/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/m4/Makefile.depend b/usr.bin/m4/Makefile.depend index 429b9f2eddc2..f5f9a16f6de2 100644 --- a/usr.bin/m4/Makefile.depend +++ b/usr.bin/m4/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/liby \ lib/msun \ diff --git a/usr.bin/mail/Makefile.depend b/usr.bin/mail/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/mail/Makefile.depend +++ b/usr.bin/mail/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/makewhatis/Makefile.depend b/usr.bin/makewhatis/Makefile.depend index 8d258dfd965e..4f4a210e3f59 100644 --- a/usr.bin/makewhatis/Makefile.depend +++ b/usr.bin/makewhatis/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libz \ diff --git a/usr.bin/mandoc/Makefile.depend b/usr.bin/mandoc/Makefile.depend index b6149c033a2f..456ca6f7cb81 100644 --- a/usr.bin/mandoc/Makefile.depend +++ b/usr.bin/mandoc/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmandoc \ diff --git a/usr.bin/mesg/Makefile.depend b/usr.bin/mesg/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/mesg/Makefile.depend +++ b/usr.bin/mesg/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/minigzip/Makefile.depend b/usr.bin/minigzip/Makefile.depend index 8d258dfd965e..4f4a210e3f59 100644 --- a/usr.bin/minigzip/Makefile.depend +++ b/usr.bin/minigzip/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libz \ diff --git a/usr.bin/ministat/Makefile.depend b/usr.bin/ministat/Makefile.depend index 26b0cb7f5dde..da4f56b373df 100644 --- a/usr.bin/ministat/Makefile.depend +++ b/usr.bin/ministat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/mkfifo/Makefile.depend b/usr.bin/mkfifo/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/mkfifo/Makefile.depend +++ b/usr.bin/mkfifo/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/mklocale/Makefile.depend b/usr.bin/mklocale/Makefile.depend index 38018d75b343..6895869c32e2 100644 --- a/usr.bin/mklocale/Makefile.depend +++ b/usr.bin/mklocale/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/mkstr/Makefile.depend b/usr.bin/mkstr/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/mkstr/Makefile.depend +++ b/usr.bin/mkstr/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/mktemp/Makefile.depend b/usr.bin/mktemp/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/mktemp/Makefile.depend +++ b/usr.bin/mktemp/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/mkulzma/Makefile.depend b/usr.bin/mkulzma/Makefile.depend index 6da741b42b7f..b7653d1d49f8 100644 --- a/usr.bin/mkulzma/Makefile.depend +++ b/usr.bin/mkulzma/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/mkuzip/Makefile.depend b/usr.bin/mkuzip/Makefile.depend index 8d258dfd965e..4f4a210e3f59 100644 --- a/usr.bin/mkuzip/Makefile.depend +++ b/usr.bin/mkuzip/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libz \ diff --git a/usr.bin/msgs/Makefile.depend b/usr.bin/msgs/Makefile.depend index 233a7c6cd0b8..4f4df6520bd4 100644 --- a/usr.bin/msgs/Makefile.depend +++ b/usr.bin/msgs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/mt/Makefile.depend b/usr.bin/mt/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/mt/Makefile.depend +++ b/usr.bin/mt/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/nc/Makefile.depend b/usr.bin/nc/Makefile.depend index 46ae5afac68b..4de996d8a07b 100644 --- a/usr.bin/nc/Makefile.depend +++ b/usr.bin/nc/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ diff --git a/usr.bin/ncal/Makefile.depend b/usr.bin/ncal/Makefile.depend index 22a43b9738e3..48604c6abb56 100644 --- a/usr.bin/ncal/Makefile.depend +++ b/usr.bin/ncal/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcalendar \ lib/libcompiler_rt \ lib/ncurses/ncurses \ diff --git a/usr.bin/netstat/Makefile.depend b/usr.bin/netstat/Makefile.depend index 12d044647034..225f5f8681e1 100644 --- a/usr.bin/netstat/Makefile.depend +++ b/usr.bin/netstat/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ lib/libmemstat \ diff --git a/usr.bin/newgrp/Makefile.depend b/usr.bin/newgrp/Makefile.depend index 8c9b44e8e0a4..8595bfc84564 100644 --- a/usr.bin/newgrp/Makefile.depend +++ b/usr.bin/newgrp/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ diff --git a/usr.bin/newkey/Makefile.depend b/usr.bin/newkey/Makefile.depend index c04a0a5edede..93ea89a54add 100644 --- a/usr.bin/newkey/Makefile.depend +++ b/usr.bin/newkey/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ diff --git a/usr.bin/nfsstat/Makefile.depend b/usr.bin/nfsstat/Makefile.depend index b7d414c85aeb..384b6754a9ab 100644 --- a/usr.bin/nfsstat/Makefile.depend +++ b/usr.bin/nfsstat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.bin/nice/Makefile.depend b/usr.bin/nice/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/nice/Makefile.depend +++ b/usr.bin/nice/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/nl/Makefile.depend b/usr.bin/nl/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/nl/Makefile.depend +++ b/usr.bin/nl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/nohup/Makefile.depend b/usr.bin/nohup/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/nohup/Makefile.depend +++ b/usr.bin/nohup/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/opieinfo/Makefile.depend b/usr.bin/opieinfo/Makefile.depend index 8607f4373445..6b42295d36ec 100644 --- a/usr.bin/opieinfo/Makefile.depend +++ b/usr.bin/opieinfo/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libopie \ diff --git a/usr.bin/opiekey/Makefile.depend b/usr.bin/opiekey/Makefile.depend index 8607f4373445..6b42295d36ec 100644 --- a/usr.bin/opiekey/Makefile.depend +++ b/usr.bin/opiekey/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libopie \ diff --git a/usr.bin/opiepasswd/Makefile.depend b/usr.bin/opiepasswd/Makefile.depend index 8607f4373445..6b42295d36ec 100644 --- a/usr.bin/opiepasswd/Makefile.depend +++ b/usr.bin/opiepasswd/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libopie \ diff --git a/usr.bin/passwd/Makefile.depend b/usr.bin/passwd/Makefile.depend index afe8c8b3c68f..35dd079986b8 100644 --- a/usr.bin/passwd/Makefile.depend +++ b/usr.bin/passwd/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ diff --git a/usr.bin/paste/Makefile.depend b/usr.bin/paste/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/paste/Makefile.depend +++ b/usr.bin/paste/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/pathchk/Makefile.depend b/usr.bin/pathchk/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/pathchk/Makefile.depend +++ b/usr.bin/pathchk/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/perror/Makefile.depend b/usr.bin/perror/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/perror/Makefile.depend +++ b/usr.bin/perror/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/pr/Makefile.depend b/usr.bin/pr/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/pr/Makefile.depend +++ b/usr.bin/pr/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/printenv/Makefile.depend b/usr.bin/printenv/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/printenv/Makefile.depend +++ b/usr.bin/printenv/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/printf/Makefile.depend b/usr.bin/printf/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/printf/Makefile.depend +++ b/usr.bin/printf/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/procstat/Makefile.depend b/usr.bin/procstat/Makefile.depend index 232852e0fd16..a0478e259cf4 100644 --- a/usr.bin/procstat/Makefile.depend +++ b/usr.bin/procstat/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libkvm \ diff --git a/usr.bin/quota/Makefile.depend b/usr.bin/quota/Makefile.depend index 8d990c379a15..40fe95df0535 100644 --- a/usr.bin/quota/Makefile.depend +++ b/usr.bin/quota/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/usr.bin/rctl/Makefile.depend b/usr.bin/rctl/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.bin/rctl/Makefile.depend +++ b/usr.bin/rctl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/renice/Makefile.depend b/usr.bin/renice/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/renice/Makefile.depend +++ b/usr.bin/renice/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rev/Makefile.depend b/usr.bin/rev/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/rev/Makefile.depend +++ b/usr.bin/rev/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/revoke/Makefile.depend b/usr.bin/revoke/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/revoke/Makefile.depend +++ b/usr.bin/revoke/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rlogin/Makefile.depend b/usr.bin/rlogin/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/rlogin/Makefile.depend +++ b/usr.bin/rlogin/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rpcgen/Makefile.depend b/usr.bin/rpcgen/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/rpcgen/Makefile.depend +++ b/usr.bin/rpcgen/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rpcinfo/Makefile.depend b/usr.bin/rpcinfo/Makefile.depend index 886683c668e9..5de5043a0bb9 100644 --- a/usr.bin/rpcinfo/Makefile.depend +++ b/usr.bin/rpcinfo/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rs/Makefile.depend b/usr.bin/rs/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/rs/Makefile.depend +++ b/usr.bin/rs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rsh/Makefile.depend b/usr.bin/rsh/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.bin/rsh/Makefile.depend +++ b/usr.bin/rsh/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/rup/Makefile.depend b/usr.bin/rup/Makefile.depend index 30a67fae3522..2fa66dd368db 100644 --- a/usr.bin/rup/Makefile.depend +++ b/usr.bin/rup/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.bin/ruptime/Makefile.depend b/usr.bin/ruptime/Makefile.depend index b3c03a71825a..4a9f7867ec6d 100644 --- a/usr.bin/ruptime/Makefile.depend +++ b/usr.bin/ruptime/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rusers/Makefile.depend b/usr.bin/rusers/Makefile.depend index 30a67fae3522..2fa66dd368db 100644 --- a/usr.bin/rusers/Makefile.depend +++ b/usr.bin/rusers/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.bin/rwall/Makefile.depend b/usr.bin/rwall/Makefile.depend index 5930524f9ce7..c1655db8b437 100644 --- a/usr.bin/rwall/Makefile.depend +++ b/usr.bin/rwall/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/rwho/Makefile.depend b/usr.bin/rwho/Makefile.depend index b3c03a71825a..4a9f7867ec6d 100644 --- a/usr.bin/rwho/Makefile.depend +++ b/usr.bin/rwho/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/script/Makefile.depend b/usr.bin/script/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.bin/script/Makefile.depend +++ b/usr.bin/script/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/sed/Makefile.depend b/usr.bin/sed/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/sed/Makefile.depend +++ b/usr.bin/sed/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/seq/Makefile.depend b/usr.bin/seq/Makefile.depend index 26b0cb7f5dde..da4f56b373df 100644 --- a/usr.bin/seq/Makefile.depend +++ b/usr.bin/seq/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ diff --git a/usr.bin/showmount/Makefile.depend b/usr.bin/showmount/Makefile.depend index 5930524f9ce7..c1655db8b437 100644 --- a/usr.bin/showmount/Makefile.depend +++ b/usr.bin/showmount/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/sockstat/Makefile.depend b/usr.bin/sockstat/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.bin/sockstat/Makefile.depend +++ b/usr.bin/sockstat/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/sort/Makefile.depend b/usr.bin/sort/Makefile.depend index d95413e60409..7b75c5ebb077 100644 --- a/usr.bin/sort/Makefile.depend +++ b/usr.bin/sort/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/msun \ diff --git a/usr.bin/split/Makefile.depend b/usr.bin/split/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.bin/split/Makefile.depend +++ b/usr.bin/split/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/stat/Makefile.depend b/usr.bin/stat/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/stat/Makefile.depend +++ b/usr.bin/stat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/stdbuf/Makefile.depend b/usr.bin/stdbuf/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/stdbuf/Makefile.depend +++ b/usr.bin/stdbuf/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/su/Makefile.depend b/usr.bin/su/Makefile.depend index 5dbe42cdaf55..67fd380bc7a8 100644 --- a/usr.bin/su/Makefile.depend +++ b/usr.bin/su/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/usr.bin/systat/Makefile.depend b/usr.bin/systat/Makefile.depend index ae33ba876636..846e23f1bb2e 100644 --- a/usr.bin/systat/Makefile.depend +++ b/usr.bin/systat/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ diff --git a/usr.bin/tabs/Makefile.depend b/usr.bin/tabs/Makefile.depend index 233a7c6cd0b8..4f4df6520bd4 100644 --- a/usr.bin/tabs/Makefile.depend +++ b/usr.bin/tabs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tail/Makefile.depend b/usr.bin/tail/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/tail/Makefile.depend +++ b/usr.bin/tail/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/talk/Makefile.depend b/usr.bin/talk/Makefile.depend index 310bef38e929..e07a2f668f95 100644 --- a/usr.bin/talk/Makefile.depend +++ b/usr.bin/talk/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tar/Makefile.depend b/usr.bin/tar/Makefile.depend index 91c0c581ff74..7f1d5315141e 100644 --- a/usr.bin/tar/Makefile.depend +++ b/usr.bin/tar/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/usr.bin/tcopy/Makefile.depend b/usr.bin/tcopy/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/tcopy/Makefile.depend +++ b/usr.bin/tcopy/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/tee/Makefile.depend b/usr.bin/tee/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/tee/Makefile.depend +++ b/usr.bin/tee/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/telnet/Makefile.depend b/usr.bin/telnet/Makefile.depend index 067677e55167..6da64664f08d 100644 --- a/usr.bin/telnet/Makefile.depend +++ b/usr.bin/telnet/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/usr.bin/tftp/Makefile.depend b/usr.bin/tftp/Makefile.depend index 6033e4a5149c..a0d576d9b48e 100644 --- a/usr.bin/tftp/Makefile.depend +++ b/usr.bin/tftp/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.bin/time/Makefile.depend b/usr.bin/time/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/time/Makefile.depend +++ b/usr.bin/time/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/tip/tip/Makefile.depend b/usr.bin/tip/tip/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/tip/tip/Makefile.depend +++ b/usr.bin/tip/tip/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/top/Makefile.depend b/usr.bin/top/Makefile.depend index ad0f13a519b1..90e81ac147bd 100644 --- a/usr.bin/top/Makefile.depend +++ b/usr.bin/top/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libjail \ lib/libkvm \ diff --git a/usr.bin/touch/Makefile.depend b/usr.bin/touch/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/touch/Makefile.depend +++ b/usr.bin/touch/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/tput/Makefile.depend b/usr.bin/tput/Makefile.depend index 233a7c6cd0b8..4f4df6520bd4 100644 --- a/usr.bin/tput/Makefile.depend +++ b/usr.bin/tput/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tr/Makefile.depend b/usr.bin/tr/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/tr/Makefile.depend +++ b/usr.bin/tr/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/true/Makefile.depend b/usr.bin/true/Makefile.depend index ed02837d7018..05a6a1b483a0 100644 --- a/usr.bin/true/Makefile.depend +++ b/usr.bin/true/Makefile.depend @@ -7,7 +7,6 @@ DIRDEPS = \ gnu/lib/libgcc \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/truncate/Makefile.depend b/usr.bin/truncate/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.bin/truncate/Makefile.depend +++ b/usr.bin/truncate/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.bin/truss/Makefile.depend.amd64 b/usr.bin/truss/Makefile.depend.amd64 index 34492d5ffcd7..844c8812ab5a 100644 --- a/usr.bin/truss/Makefile.depend.amd64 +++ b/usr.bin/truss/Makefile.depend.amd64 @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/tset/Makefile.depend b/usr.bin/tset/Makefile.depend index 233a7c6cd0b8..4f4df6520bd4 100644 --- a/usr.bin/tset/Makefile.depend +++ b/usr.bin/tset/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/tsort/Makefile.depend b/usr.bin/tsort/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/tsort/Makefile.depend +++ b/usr.bin/tsort/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/tty/Makefile.depend b/usr.bin/tty/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/tty/Makefile.depend +++ b/usr.bin/tty/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ul/Makefile.depend b/usr.bin/ul/Makefile.depend index 233a7c6cd0b8..4f4df6520bd4 100644 --- a/usr.bin/ul/Makefile.depend +++ b/usr.bin/ul/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/uname/Makefile.depend b/usr.bin/uname/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/uname/Makefile.depend +++ b/usr.bin/uname/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/unexpand/Makefile.depend b/usr.bin/unexpand/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/unexpand/Makefile.depend +++ b/usr.bin/unexpand/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/unifdef/Makefile.depend b/usr.bin/unifdef/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/unifdef/Makefile.depend +++ b/usr.bin/unifdef/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/uniq/Makefile.depend b/usr.bin/uniq/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/uniq/Makefile.depend +++ b/usr.bin/uniq/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/units/Makefile.depend b/usr.bin/units/Makefile.depend index e7af95cdf21a..6fc94a41ce7c 100644 --- a/usr.bin/units/Makefile.depend +++ b/usr.bin/units/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.bin/unvis/Makefile.depend b/usr.bin/unvis/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/unvis/Makefile.depend +++ b/usr.bin/unvis/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/unzip/Makefile.depend b/usr.bin/unzip/Makefile.depend index 91c0c581ff74..7f1d5315141e 100644 --- a/usr.bin/unzip/Makefile.depend +++ b/usr.bin/unzip/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/usr.bin/usbhidaction/Makefile.depend b/usr.bin/usbhidaction/Makefile.depend index 0cf2f69216dd..ddc15a902498 100644 --- a/usr.bin/usbhidaction/Makefile.depend +++ b/usr.bin/usbhidaction/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libusbhid \ diff --git a/usr.bin/usbhidctl/Makefile.depend b/usr.bin/usbhidctl/Makefile.depend index 0cf2f69216dd..ddc15a902498 100644 --- a/usr.bin/usbhidctl/Makefile.depend +++ b/usr.bin/usbhidctl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libusbhid \ diff --git a/usr.bin/users/Makefile.depend b/usr.bin/users/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/users/Makefile.depend +++ b/usr.bin/users/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/uudecode/Makefile.depend b/usr.bin/uudecode/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.bin/uudecode/Makefile.depend +++ b/usr.bin/uudecode/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/uuencode/Makefile.depend b/usr.bin/uuencode/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.bin/uuencode/Makefile.depend +++ b/usr.bin/uuencode/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/vacation/Makefile.depend b/usr.bin/vacation/Makefile.depend index 4f613d1fc876..5ef7ccc610d8 100644 --- a/usr.bin/vacation/Makefile.depend +++ b/usr.bin/vacation/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ diff --git a/usr.bin/vgrind/Makefile.depend b/usr.bin/vgrind/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/vgrind/Makefile.depend +++ b/usr.bin/vgrind/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/vi/Makefile.depend b/usr.bin/vi/Makefile.depend index 41f7b7051ee1..358a9d309341 100644 --- a/usr.bin/vi/Makefile.depend +++ b/usr.bin/vi/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/ncurses/ncursesw \ diff --git a/usr.bin/vis/Makefile.depend b/usr.bin/vis/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/vis/Makefile.depend +++ b/usr.bin/vis/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/vmstat/Makefile.depend b/usr.bin/vmstat/Makefile.depend index c26fc4630e14..11e4d51c98b7 100644 --- a/usr.bin/vmstat/Makefile.depend +++ b/usr.bin/vmstat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ diff --git a/usr.bin/w/Makefile.depend b/usr.bin/w/Makefile.depend index 2d49890bb27e..ae117e2af41d 100644 --- a/usr.bin/w/Makefile.depend +++ b/usr.bin/w/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ lib/libutil \ diff --git a/usr.bin/wall/Makefile.depend b/usr.bin/wall/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/wall/Makefile.depend +++ b/usr.bin/wall/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/wc/Makefile.depend b/usr.bin/wc/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/wc/Makefile.depend +++ b/usr.bin/wc/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/what/Makefile.depend b/usr.bin/what/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/what/Makefile.depend +++ b/usr.bin/what/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/whereis/Makefile.depend b/usr.bin/whereis/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/whereis/Makefile.depend +++ b/usr.bin/whereis/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/which/Makefile.depend b/usr.bin/which/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/which/Makefile.depend +++ b/usr.bin/which/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/who/Makefile.depend b/usr.bin/who/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/who/Makefile.depend +++ b/usr.bin/who/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/whois/Makefile.depend b/usr.bin/whois/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.bin/whois/Makefile.depend +++ b/usr.bin/whois/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/write/Makefile.depend b/usr.bin/write/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/write/Makefile.depend +++ b/usr.bin/write/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/xargs/Makefile.depend b/usr.bin/xargs/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/xargs/Makefile.depend +++ b/usr.bin/xargs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/xinstall/Makefile.depend b/usr.bin/xinstall/Makefile.depend index 43462417933d..1fca33bfb0df 100644 --- a/usr.bin/xinstall/Makefile.depend +++ b/usr.bin/xinstall/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libutil \ diff --git a/usr.bin/xlint/lint1/Makefile.depend b/usr.bin/xlint/lint1/Makefile.depend index 2cf17dca4ec9..bb0ee776563d 100644 --- a/usr.bin/xlint/lint1/Makefile.depend +++ b/usr.bin/xlint/lint1/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ usr.bin/lex/lib \ diff --git a/usr.bin/xlint/lint2/Makefile.depend b/usr.bin/xlint/lint2/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/xlint/lint2/Makefile.depend +++ b/usr.bin/xlint/lint2/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/xlint/xlint/Makefile.depend b/usr.bin/xlint/xlint/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/xlint/xlint/Makefile.depend +++ b/usr.bin/xlint/xlint/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/xstr/Makefile.depend b/usr.bin/xstr/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/xstr/Makefile.depend +++ b/usr.bin/xstr/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/xz/Makefile.depend b/usr.bin/xz/Makefile.depend index 6da741b42b7f..b7653d1d49f8 100644 --- a/usr.bin/xz/Makefile.depend +++ b/usr.bin/xz/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/xzdec/Makefile.depend b/usr.bin/xzdec/Makefile.depend index 6da741b42b7f..b7653d1d49f8 100644 --- a/usr.bin/xzdec/Makefile.depend +++ b/usr.bin/xzdec/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/liblzma \ diff --git a/usr.bin/yacc/Makefile.depend b/usr.bin/yacc/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.bin/yacc/Makefile.depend +++ b/usr.bin/yacc/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/yes/Makefile.depend b/usr.bin/yes/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.bin/yes/Makefile.depend +++ b/usr.bin/yes/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ypcat/Makefile.depend b/usr.bin/ypcat/Makefile.depend index 5930524f9ce7..c1655db8b437 100644 --- a/usr.bin/ypcat/Makefile.depend +++ b/usr.bin/ypcat/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ypmatch/Makefile.depend b/usr.bin/ypmatch/Makefile.depend index 5930524f9ce7..c1655db8b437 100644 --- a/usr.bin/ypmatch/Makefile.depend +++ b/usr.bin/ypmatch/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.bin/ypwhich/Makefile.depend b/usr.bin/ypwhich/Makefile.depend index 1c61866765c9..2a44c25ffe8e 100644 --- a/usr.bin/ypwhich/Makefile.depend +++ b/usr.bin/ypwhich/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ac/Makefile.depend b/usr.sbin/ac/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/ac/Makefile.depend +++ b/usr.sbin/ac/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/accton/Makefile.depend b/usr.sbin/accton/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/accton/Makefile.depend +++ b/usr.sbin/accton/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/acpi/acpiconf/Makefile.depend b/usr.sbin/acpi/acpiconf/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/acpi/acpiconf/Makefile.depend +++ b/usr.sbin/acpi/acpiconf/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/acpi/acpidb/Makefile.depend b/usr.sbin/acpi/acpidb/Makefile.depend index e1ba49601114..0a2118269eec 100644 --- a/usr.sbin/acpi/acpidb/Makefile.depend +++ b/usr.sbin/acpi/acpidb/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ diff --git a/usr.sbin/acpi/acpidump/Makefile.depend b/usr.sbin/acpi/acpidump/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/acpi/acpidump/Makefile.depend +++ b/usr.sbin/acpi/acpidump/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/acpi/iasl/Makefile.depend b/usr.sbin/acpi/iasl/Makefile.depend index 107b2f1db4bd..d12ff044d90e 100644 --- a/usr.sbin/acpi/iasl/Makefile.depend +++ b/usr.sbin/acpi/iasl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/amd/amd/Makefile.depend b/usr.sbin/amd/amd/Makefile.depend index 9fe831b1c564..bdfb4b3e07b1 100644 --- a/usr.sbin/amd/amd/Makefile.depend +++ b/usr.sbin/amd/amd/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/amq/Makefile.depend b/usr.sbin/amd/amq/Makefile.depend index 092b301ab9b2..2035894ef981 100644 --- a/usr.sbin/amd/amq/Makefile.depend +++ b/usr.sbin/amd/amq/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/fixmount/Makefile.depend b/usr.sbin/amd/fixmount/Makefile.depend index d7a7ddc139fc..f7c2c0354019 100644 --- a/usr.sbin/amd/fixmount/Makefile.depend +++ b/usr.sbin/amd/fixmount/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ lib/libwrap \ diff --git a/usr.sbin/amd/fsinfo/Makefile.depend b/usr.sbin/amd/fsinfo/Makefile.depend index 293b77888407..bec1372b5c6a 100644 --- a/usr.sbin/amd/fsinfo/Makefile.depend +++ b/usr.sbin/amd/fsinfo/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/hlfsd/Makefile.depend b/usr.sbin/amd/hlfsd/Makefile.depend index 092b301ab9b2..2035894ef981 100644 --- a/usr.sbin/amd/hlfsd/Makefile.depend +++ b/usr.sbin/amd/hlfsd/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/mk-amd-map/Makefile.depend b/usr.sbin/amd/mk-amd-map/Makefile.depend index 092b301ab9b2..2035894ef981 100644 --- a/usr.sbin/amd/mk-amd-map/Makefile.depend +++ b/usr.sbin/amd/mk-amd-map/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/pawd/Makefile.depend b/usr.sbin/amd/pawd/Makefile.depend index 092b301ab9b2..2035894ef981 100644 --- a/usr.sbin/amd/pawd/Makefile.depend +++ b/usr.sbin/amd/pawd/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/amd/wire-test/Makefile.depend b/usr.sbin/amd/wire-test/Makefile.depend index 092b301ab9b2..2035894ef981 100644 --- a/usr.sbin/amd/wire-test/Makefile.depend +++ b/usr.sbin/amd/wire-test/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ usr.sbin/amd/include \ diff --git a/usr.sbin/ancontrol/Makefile.depend b/usr.sbin/ancontrol/Makefile.depend index c1f494f87eff..adfa321cff0a 100644 --- a/usr.sbin/ancontrol/Makefile.depend +++ b/usr.sbin/ancontrol/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/apm/Makefile.depend b/usr.sbin/apm/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/apm/Makefile.depend +++ b/usr.sbin/apm/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/arp/Makefile.depend b/usr.sbin/arp/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/arp/Makefile.depend +++ b/usr.sbin/arp/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/asf/Makefile.depend b/usr.sbin/asf/Makefile.depend index b7d414c85aeb..384b6754a9ab 100644 --- a/usr.sbin/asf/Makefile.depend +++ b/usr.sbin/asf/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/audit/Makefile.depend b/usr.sbin/audit/Makefile.depend index cfab52535a52..24594da0ac10 100644 --- a/usr.sbin/audit/Makefile.depend +++ b/usr.sbin/audit/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/auditd/Makefile.depend b/usr.sbin/auditd/Makefile.depend index 0de12f7d62a6..f0b54f797798 100644 --- a/usr.sbin/auditd/Makefile.depend +++ b/usr.sbin/auditd/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/libauditd \ lib/libbsm \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/auditreduce/Makefile.depend b/usr.sbin/auditreduce/Makefile.depend index cfab52535a52..24594da0ac10 100644 --- a/usr.sbin/auditreduce/Makefile.depend +++ b/usr.sbin/auditreduce/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/authpf/Makefile.depend b/usr.sbin/authpf/Makefile.depend index 5a23e70ffbae..b28c0ae15a8b 100644 --- a/usr.sbin/authpf/Makefile.depend +++ b/usr.sbin/authpf/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libutil \ diff --git a/usr.sbin/bluetooth/ath3kfw/Makefile.depend b/usr.sbin/bluetooth/ath3kfw/Makefile.depend index fad2a1d2fe7b..91ae73e1aa71 100644 --- a/usr.sbin/bluetooth/ath3kfw/Makefile.depend +++ b/usr.sbin/bluetooth/ath3kfw/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ lib/libusb \ diff --git a/usr.sbin/bluetooth/bcmfw/Makefile.depend b/usr.sbin/bluetooth/bcmfw/Makefile.depend index f5603505d900..181b85adfc73 100644 --- a/usr.sbin/bluetooth/bcmfw/Makefile.depend +++ b/usr.sbin/bluetooth/bcmfw/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/bluetooth/bt3cfw/Makefile.depend b/usr.sbin/bluetooth/bt3cfw/Makefile.depend index f5603505d900..181b85adfc73 100644 --- a/usr.sbin/bluetooth/bt3cfw/Makefile.depend +++ b/usr.sbin/bluetooth/bt3cfw/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/bluetooth/bthidcontrol/Makefile.depend b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend index 93c221eb4ad8..7ce677b0f3e2 100644 --- a/usr.sbin/bluetooth/bthidcontrol/Makefile.depend +++ b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ lib/libusbhid \ diff --git a/usr.sbin/bluetooth/bthidd/Makefile.depend b/usr.sbin/bluetooth/bthidd/Makefile.depend index b9d70b78114e..c4c93a260e45 100644 --- a/usr.sbin/bluetooth/bthidd/Makefile.depend +++ b/usr.sbin/bluetooth/bthidd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libusbhid \ diff --git a/usr.sbin/bluetooth/btpand/Makefile.depend b/usr.sbin/bluetooth/btpand/Makefile.depend index 994099d3d0fd..9b6c133a202b 100644 --- a/usr.sbin/bluetooth/btpand/Makefile.depend +++ b/usr.sbin/bluetooth/btpand/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ lib/libutil \ diff --git a/usr.sbin/bluetooth/hccontrol/Makefile.depend b/usr.sbin/bluetooth/hccontrol/Makefile.depend index 334348050096..9e752f475e12 100644 --- a/usr.sbin/bluetooth/hccontrol/Makefile.depend +++ b/usr.sbin/bluetooth/hccontrol/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bluetooth/hcsecd/Makefile.depend b/usr.sbin/bluetooth/hcsecd/Makefile.depend index 71286d98a1a7..cba7fb148b49 100644 --- a/usr.sbin/bluetooth/hcsecd/Makefile.depend +++ b/usr.sbin/bluetooth/hcsecd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bluetooth/hcseriald/Makefile.depend b/usr.sbin/bluetooth/hcseriald/Makefile.depend index f5603505d900..181b85adfc73 100644 --- a/usr.sbin/bluetooth/hcseriald/Makefile.depend +++ b/usr.sbin/bluetooth/hcseriald/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/bluetooth/l2control/Makefile.depend b/usr.sbin/bluetooth/l2control/Makefile.depend index 334348050096..9e752f475e12 100644 --- a/usr.sbin/bluetooth/l2control/Makefile.depend +++ b/usr.sbin/bluetooth/l2control/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bluetooth/l2ping/Makefile.depend b/usr.sbin/bluetooth/l2ping/Makefile.depend index beb640354e0e..4d052006175a 100644 --- a/usr.sbin/bluetooth/l2ping/Makefile.depend +++ b/usr.sbin/bluetooth/l2ping/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend index 8402227f3aa8..70283d4fe738 100644 --- a/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend +++ b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.sbin/bluetooth/sdpcontrol/Makefile.depend b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend index 8402227f3aa8..70283d4fe738 100644 --- a/usr.sbin/bluetooth/sdpcontrol/Makefile.depend +++ b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.sbin/bluetooth/sdpd/Makefile.depend b/usr.sbin/bluetooth/sdpd/Makefile.depend index 461c623490a6..d95c08f9104b 100644 --- a/usr.sbin/bluetooth/sdpd/Makefile.depend +++ b/usr.sbin/bluetooth/sdpd/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbluetooth \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsdp \ diff --git a/usr.sbin/boot0cfg/Makefile.depend b/usr.sbin/boot0cfg/Makefile.depend index bac69c034a3b..df6361797d5d 100644 --- a/usr.sbin/boot0cfg/Makefile.depend +++ b/usr.sbin/boot0cfg/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/usr.sbin/bootparamd/bootparamd/Makefile.depend b/usr.sbin/bootparamd/bootparamd/Makefile.depend index 49a473e8ad26..1d3642f698a2 100644 --- a/usr.sbin/bootparamd/bootparamd/Makefile.depend +++ b/usr.sbin/bootparamd/bootparamd/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bootparamd/callbootd/Makefile.depend b/usr.sbin/bootparamd/callbootd/Makefile.depend index 2b23406601da..3c40b30a3331 100644 --- a/usr.sbin/bootparamd/callbootd/Makefile.depend +++ b/usr.sbin/bootparamd/callbootd/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bsdinstall/distextract/Makefile.depend b/usr.sbin/bsdinstall/distextract/Makefile.depend index bf6f768a4d35..2a012b9a8126 100644 --- a/usr.sbin/bsdinstall/distextract/Makefile.depend +++ b/usr.sbin/bsdinstall/distextract/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libdialog \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsdinstall/distfetch/Makefile.depend b/usr.sbin/bsdinstall/distfetch/Makefile.depend index 9bf11e3949b3..a58535625412 100644 --- a/usr.sbin/bsdinstall/distfetch/Makefile.depend +++ b/usr.sbin/bsdinstall/distfetch/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libdialog \ gnu/lib/libgcc \ include \ diff --git a/usr.sbin/bsdinstall/partedit/Makefile.depend b/usr.sbin/bsdinstall/partedit/Makefile.depend index c0c3ad805dba..d7a53af2c60a 100644 --- a/usr.sbin/bsdinstall/partedit/Makefile.depend +++ b/usr.sbin/bsdinstall/partedit/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libexpat \ lib/libgeom \ diff --git a/usr.sbin/bsnmpd/bsnmpd/Makefile.depend b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend index aa5ee3ce271b..a67edf4a706b 100644 --- a/usr.sbin/bsnmpd/bsnmpd/Makefile.depend +++ b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/usr.sbin/bsnmpd/gensnmptree/Makefile.depend b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/bsnmpd/gensnmptree/Makefile.depend +++ b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend index fb4901460f3f..126a6e0c6d5f 100644 --- a/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/libbsnmp/libbsnmp \ lib/libc \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ usr.sbin/bsnmpd/modules \ usr.sbin/bsnmpd/modules/snmp_mibII \ usr.sbin/bsnmpd/modules/snmp_netgraph \ diff --git a/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend index 2d95ace79f8d..520d81c5df2e 100644 --- a/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/libbsnmp/libbsnmp \ lib/libc \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ usr.sbin/bsnmpd/modules \ usr.sbin/bsnmpd/modules/snmp_mibII \ diff --git a/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend index 5158a2371cae..1b6312499383 100644 --- a/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -15,6 +16,7 @@ DIRDEPS = \ lib/libkvm \ lib/libmemstat \ lib/msun \ + usr.bin/xinstall.host \ usr.sbin/bsnmpd/modules \ usr.sbin/bsnmpd/modules/snmp_mibII \ diff --git a/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend index f950f14c9028..86837f049a13 100644 --- a/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ lib/libbsnmp/libbsnmp \ lib/libc \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend index d32cc0c0a114..bb997d662a98 100644 --- a/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -11,6 +12,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libnetgraph \ + usr.bin/xinstall.host \ usr.sbin/bsnmpd/modules \ diff --git a/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend index 7a31aae4f659..e8e3f4ae6209 100644 --- a/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/libbsnmp/libbsnmp \ lib/libc \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ usr.sbin/bsnmpd/modules \ diff --git a/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend index 2b6c9afdf1cb..a4fddaae962a 100644 --- a/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/libbsnmp/libbsnmp \ lib/libc \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend index 4ef736ec47a0..941d9e35d343 100644 --- a/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/libbsnmp/libbsnmp \ lib/libc \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend index 36af0186eeb6..0bb35f278a21 100644 --- a/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/libbsnmp/libbsnmp \ lib/libc \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend index cbd984e1df08..cedaa27c0d46 100644 --- a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/libbsnmp/libbsnmp \ lib/libc \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ usr.sbin/bsnmpd/modules \ usr.sbin/bsnmpd/modules/snmp_mibII \ diff --git a/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend b/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend index 9ebea21d0aa5..a6f194b02727 100644 --- a/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend +++ b/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend index a34009537f95..ead6599deb3a 100644 --- a/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend +++ b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -11,6 +12,7 @@ DIRDEPS = \ lib/libbsnmp/libbsnmp \ lib/libc \ lib/libcompiler_rt \ + usr.bin/xinstall.host \ .include diff --git a/usr.sbin/btxld/Makefile.depend b/usr.sbin/btxld/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/btxld/Makefile.depend +++ b/usr.sbin/btxld/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/cdcontrol/Makefile.depend b/usr.sbin/cdcontrol/Makefile.depend index 6033e4a5149c..a0d576d9b48e 100644 --- a/usr.sbin/cdcontrol/Makefile.depend +++ b/usr.sbin/cdcontrol/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.sbin/chkgrp/Makefile.depend b/usr.sbin/chkgrp/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/chkgrp/Makefile.depend +++ b/usr.sbin/chkgrp/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/chown/Makefile.depend b/usr.sbin/chown/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/chown/Makefile.depend +++ b/usr.sbin/chown/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/chroot/Makefile.depend b/usr.sbin/chroot/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/chroot/Makefile.depend +++ b/usr.sbin/chroot/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ckdist/Makefile.depend b/usr.sbin/ckdist/Makefile.depend index f3adefe05801..50e2e74bea35 100644 --- a/usr.sbin/ckdist/Makefile.depend +++ b/usr.sbin/ckdist/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/clear_locks/Makefile.depend b/usr.sbin/clear_locks/Makefile.depend index 3b0eba6af4e1..e44fad36fdf9 100644 --- a/usr.sbin/clear_locks/Makefile.depend +++ b/usr.sbin/clear_locks/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/config/Makefile.depend b/usr.sbin/config/Makefile.depend index 37666058320e..6f629ac59d4a 100644 --- a/usr.sbin/config/Makefile.depend +++ b/usr.sbin/config/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsbuf \ usr.bin/lex/lib \ diff --git a/usr.sbin/cpucontrol/Makefile.depend b/usr.sbin/cpucontrol/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/cpucontrol/Makefile.depend +++ b/usr.sbin/cpucontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/cron/cron/Makefile.depend b/usr.sbin/cron/cron/Makefile.depend index 956f11385666..87e49fd76dd9 100644 --- a/usr.sbin/cron/cron/Makefile.depend +++ b/usr.sbin/cron/cron/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpam/libpam \ lib/libutil \ diff --git a/usr.sbin/cron/crontab/Makefile.depend b/usr.sbin/cron/crontab/Makefile.depend index 479fd4bc824f..6e07a85e08ba 100644 --- a/usr.sbin/cron/crontab/Makefile.depend +++ b/usr.sbin/cron/crontab/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ lib/libutil \ diff --git a/usr.sbin/crunch/crunchgen/Makefile.depend b/usr.sbin/crunch/crunchgen/Makefile.depend index b0880915ddc9..41b04bf746cc 100644 --- a/usr.sbin/crunch/crunchgen/Makefile.depend +++ b/usr.sbin/crunch/crunchgen/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/crunch/crunchide/Makefile.depend b/usr.sbin/crunch/crunchide/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/crunch/crunchide/Makefile.depend +++ b/usr.sbin/crunch/crunchide/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ctladm/Makefile.depend b/usr.sbin/ctladm/Makefile.depend index 9fb65fb33df1..24b66ebf3acf 100644 --- a/usr.sbin/ctladm/Makefile.depend +++ b/usr.sbin/ctladm/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcam \ lib/libcompiler_rt \ lib/libexpat \ diff --git a/usr.sbin/ctm/ctm/Makefile.depend b/usr.sbin/ctm/ctm/Makefile.depend index f3adefe05801..50e2e74bea35 100644 --- a/usr.sbin/ctm/ctm/Makefile.depend +++ b/usr.sbin/ctm/ctm/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/ctm/ctm_dequeue/Makefile.depend b/usr.sbin/ctm/ctm_dequeue/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/ctm/ctm_dequeue/Makefile.depend +++ b/usr.sbin/ctm/ctm_dequeue/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ctm/ctm_rmail/Makefile.depend b/usr.sbin/ctm/ctm_rmail/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/ctm/ctm_rmail/Makefile.depend +++ b/usr.sbin/ctm/ctm_rmail/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ctm/ctm_smail/Makefile.depend b/usr.sbin/ctm/ctm_smail/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/ctm/ctm_smail/Makefile.depend +++ b/usr.sbin/ctm/ctm_smail/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/daemon/Makefile.depend b/usr.sbin/daemon/Makefile.depend index bd2426af0eca..7df683f8f51a 100644 --- a/usr.sbin/daemon/Makefile.depend +++ b/usr.sbin/daemon/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/dconschat/Makefile.depend b/usr.sbin/dconschat/Makefile.depend index 803dc63a94f7..3820cc87112a 100644 --- a/usr.sbin/dconschat/Makefile.depend +++ b/usr.sbin/dconschat/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/devinfo/Makefile.depend b/usr.sbin/devinfo/Makefile.depend index 62d696039291..608934c480ff 100644 --- a/usr.sbin/devinfo/Makefile.depend +++ b/usr.sbin/devinfo/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevinfo \ diff --git a/usr.sbin/digictl/Makefile.depend b/usr.sbin/digictl/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/digictl/Makefile.depend +++ b/usr.sbin/digictl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/diskinfo/Makefile.depend b/usr.sbin/diskinfo/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.sbin/diskinfo/Makefile.depend +++ b/usr.sbin/diskinfo/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/dumpcis/Makefile.depend b/usr.sbin/dumpcis/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/dumpcis/Makefile.depend +++ b/usr.sbin/dumpcis/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/editmap/Makefile.depend b/usr.sbin/editmap/Makefile.depend index 93db1c449e5c..fdd37893b51c 100644 --- a/usr.sbin/editmap/Makefile.depend +++ b/usr.sbin/editmap/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ diff --git a/usr.sbin/edquota/Makefile.depend b/usr.sbin/edquota/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.sbin/edquota/Makefile.depend +++ b/usr.sbin/edquota/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/extattr/Makefile.depend b/usr.sbin/extattr/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.sbin/extattr/Makefile.depend +++ b/usr.sbin/extattr/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/extattrctl/Makefile.depend b/usr.sbin/extattrctl/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.sbin/extattrctl/Makefile.depend +++ b/usr.sbin/extattrctl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/faithd/Makefile.depend b/usr.sbin/faithd/Makefile.depend index e3af08532eec..d9ecce6a52af 100644 --- a/usr.sbin/faithd/Makefile.depend +++ b/usr.sbin/faithd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/fdcontrol/Makefile.depend b/usr.sbin/fdcontrol/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/fdcontrol/Makefile.depend +++ b/usr.sbin/fdcontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/fdformat/Makefile.depend b/usr.sbin/fdformat/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/fdformat/Makefile.depend +++ b/usr.sbin/fdformat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/fdread/Makefile.depend b/usr.sbin/fdread/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/fdread/Makefile.depend +++ b/usr.sbin/fdread/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/fdwrite/Makefile.depend b/usr.sbin/fdwrite/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/fdwrite/Makefile.depend +++ b/usr.sbin/fdwrite/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/fifolog/fifolog_create/Makefile.depend b/usr.sbin/fifolog/fifolog_create/Makefile.depend index 8e9bccfd1293..793b4975b574 100644 --- a/usr.sbin/fifolog/fifolog_create/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_create/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ usr.sbin/fifolog/lib \ diff --git a/usr.sbin/fifolog/fifolog_reader/Makefile.depend b/usr.sbin/fifolog/fifolog_reader/Makefile.depend index e1918714b78d..c6cbc3e4e45d 100644 --- a/usr.sbin/fifolog/fifolog_reader/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_reader/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/libz \ diff --git a/usr.sbin/fifolog/fifolog_writer/Makefile.depend b/usr.sbin/fifolog/fifolog_writer/Makefile.depend index e1918714b78d..c6cbc3e4e45d 100644 --- a/usr.sbin/fifolog/fifolog_writer/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_writer/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/libz \ diff --git a/usr.sbin/flowctl/Makefile.depend b/usr.sbin/flowctl/Makefile.depend index a2060055a242..83a8148003a0 100644 --- a/usr.sbin/flowctl/Makefile.depend +++ b/usr.sbin/flowctl/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend b/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend index 149691f61243..bbe5cc80eb0b 100644 --- a/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend +++ b/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/ftp-proxy/libevent \ diff --git a/usr.sbin/fwcontrol/Makefile.depend b/usr.sbin/fwcontrol/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/fwcontrol/Makefile.depend +++ b/usr.sbin/fwcontrol/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/getfmac/Makefile.depend b/usr.sbin/getfmac/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/getfmac/Makefile.depend +++ b/usr.sbin/getfmac/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/getpmac/Makefile.depend b/usr.sbin/getpmac/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/getpmac/Makefile.depend +++ b/usr.sbin/getpmac/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/gpioctl/Makefile.depend b/usr.sbin/gpioctl/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/gpioctl/Makefile.depend +++ b/usr.sbin/gpioctl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/gssd/Makefile.depend b/usr.sbin/gssd/Makefile.depend index c298b138308c..4f3249e485f5 100644 --- a/usr.sbin/gssd/Makefile.depend +++ b/usr.sbin/gssd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/gssapi \ diff --git a/usr.sbin/gstat/Makefile.depend b/usr.sbin/gstat/Makefile.depend index 35163f86750f..aee289a3fe11 100644 --- a/usr.sbin/gstat/Makefile.depend +++ b/usr.sbin/gstat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libedit \ diff --git a/usr.sbin/i2c/Makefile.depend b/usr.sbin/i2c/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/i2c/Makefile.depend +++ b/usr.sbin/i2c/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ifmcstat/Makefile.depend b/usr.sbin/ifmcstat/Makefile.depend index 803dc63a94f7..3820cc87112a 100644 --- a/usr.sbin/ifmcstat/Makefile.depend +++ b/usr.sbin/ifmcstat/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/inetd/Makefile.depend b/usr.sbin/inetd/Makefile.depend index 9143faf6062d..0713fe0de09b 100644 --- a/usr.sbin/inetd/Makefile.depend +++ b/usr.sbin/inetd/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ lib/libutil \ diff --git a/usr.sbin/iostat/Makefile.depend b/usr.sbin/iostat/Makefile.depend index 7c9f840d2948..819a99f1c05c 100644 --- a/usr.sbin/iostat/Makefile.depend +++ b/usr.sbin/iostat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libdevstat \ lib/libkvm \ diff --git a/usr.sbin/ip6addrctl/Makefile.depend b/usr.sbin/ip6addrctl/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/ip6addrctl/Makefile.depend +++ b/usr.sbin/ip6addrctl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ipfwpcap/Makefile.depend b/usr.sbin/ipfwpcap/Makefile.depend index b42437a19d44..fb2e1ea9ff35 100644 --- a/usr.sbin/ipfwpcap/Makefile.depend +++ b/usr.sbin/ipfwpcap/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpcap \ diff --git a/usr.sbin/jail/Makefile.depend b/usr.sbin/jail/Makefile.depend index db8479a2a123..4dabb746ba08 100644 --- a/usr.sbin/jail/Makefile.depend +++ b/usr.sbin/jail/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libjail \ lib/libkvm \ diff --git a/usr.sbin/jexec/Makefile.depend b/usr.sbin/jexec/Makefile.depend index 427ef996336d..8870ca410289 100644 --- a/usr.sbin/jexec/Makefile.depend +++ b/usr.sbin/jexec/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libjail \ lib/libutil \ diff --git a/usr.sbin/jls/Makefile.depend b/usr.sbin/jls/Makefile.depend index 6a22d19e6ba5..a365c22fe4cb 100644 --- a/usr.sbin/jls/Makefile.depend +++ b/usr.sbin/jls/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libjail \ diff --git a/usr.sbin/kbdcontrol/Makefile.depend b/usr.sbin/kbdcontrol/Makefile.depend index cd4d236402c6..e3418c5550dd 100644 --- a/usr.sbin/kbdcontrol/Makefile.depend +++ b/usr.sbin/kbdcontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ usr.bin/lex/lib \ diff --git a/usr.sbin/kbdmap/Makefile.depend b/usr.sbin/kbdmap/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/kbdmap/Makefile.depend +++ b/usr.sbin/kbdmap/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/keyserv/Makefile.depend b/usr.sbin/keyserv/Makefile.depend index acbf9bbc36ac..c9aa32c97057 100644 --- a/usr.sbin/keyserv/Makefile.depend +++ b/usr.sbin/keyserv/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/rpc \ diff --git a/usr.sbin/kgmon/Makefile.depend b/usr.sbin/kgmon/Makefile.depend index b7d414c85aeb..384b6754a9ab 100644 --- a/usr.sbin/kgmon/Makefile.depend +++ b/usr.sbin/kgmon/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/kldxref/Makefile.depend b/usr.sbin/kldxref/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/kldxref/Makefile.depend +++ b/usr.sbin/kldxref/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lastlogin/Makefile.depend b/usr.sbin/lastlogin/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/lastlogin/Makefile.depend +++ b/usr.sbin/lastlogin/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lmcconfig/Makefile.depend b/usr.sbin/lmcconfig/Makefile.depend index f5603505d900..181b85adfc73 100644 --- a/usr.sbin/lmcconfig/Makefile.depend +++ b/usr.sbin/lmcconfig/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/lpr/chkprintcap/Makefile.depend b/usr.sbin/lpr/chkprintcap/Makefile.depend index 72675faee650..003813c8b56e 100644 --- a/usr.sbin/lpr/chkprintcap/Makefile.depend +++ b/usr.sbin/lpr/chkprintcap/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend +++ b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend +++ b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lpr/filters/Makefile.depend b/usr.sbin/lpr/filters/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/lpr/filters/Makefile.depend +++ b/usr.sbin/lpr/filters/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lpr/lpc/Makefile.depend b/usr.sbin/lpr/lpc/Makefile.depend index 9d5d53e5e417..4db22878234b 100644 --- a/usr.sbin/lpr/lpc/Makefile.depend +++ b/usr.sbin/lpr/lpc/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.sbin/lpr/lpd/Makefile.depend b/usr.sbin/lpr/lpd/Makefile.depend index 9c027ea14c72..167bd2a96e9b 100644 --- a/usr.sbin/lpr/lpd/Makefile.depend +++ b/usr.sbin/lpr/lpd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lpq/Makefile.depend b/usr.sbin/lpr/lpq/Makefile.depend index 72675faee650..003813c8b56e 100644 --- a/usr.sbin/lpr/lpq/Makefile.depend +++ b/usr.sbin/lpr/lpq/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lpr/Makefile.depend b/usr.sbin/lpr/lpr/Makefile.depend index 72675faee650..003813c8b56e 100644 --- a/usr.sbin/lpr/lpr/Makefile.depend +++ b/usr.sbin/lpr/lpr/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lprm/Makefile.depend b/usr.sbin/lpr/lprm/Makefile.depend index 72675faee650..003813c8b56e 100644 --- a/usr.sbin/lpr/lprm/Makefile.depend +++ b/usr.sbin/lpr/lprm/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lpr/lptest/Makefile.depend b/usr.sbin/lpr/lptest/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.sbin/lpr/lptest/Makefile.depend +++ b/usr.sbin/lpr/lptest/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/lpr/pac/Makefile.depend b/usr.sbin/lpr/pac/Makefile.depend index 72675faee650..003813c8b56e 100644 --- a/usr.sbin/lpr/pac/Makefile.depend +++ b/usr.sbin/lpr/pac/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ usr.sbin/lpr/common_source \ diff --git a/usr.sbin/lptcontrol/Makefile.depend b/usr.sbin/lptcontrol/Makefile.depend index e9a1dda6ca51..2d9ec507cd13 100644 --- a/usr.sbin/lptcontrol/Makefile.depend +++ b/usr.sbin/lptcontrol/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mailstats/Makefile.depend b/usr.sbin/mailstats/Makefile.depend index 58c5c7f30c7f..1e452ffb53bb 100644 --- a/usr.sbin/mailstats/Makefile.depend +++ b/usr.sbin/mailstats/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libsmutil \ diff --git a/usr.sbin/mailwrapper/Makefile.depend b/usr.sbin/mailwrapper/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.sbin/mailwrapper/Makefile.depend +++ b/usr.sbin/mailwrapper/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/makefs/Makefile.depend b/usr.sbin/makefs/Makefile.depend index 8f76fa4c1fc9..4c55f94e78c7 100644 --- a/usr.sbin/makefs/Makefile.depend +++ b/usr.sbin/makefs/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetbsd \ lib/libsbuf \ diff --git a/usr.sbin/makemap/Makefile.depend b/usr.sbin/makemap/Makefile.depend index f0d84e2e7b2a..3e6ba435356b 100644 --- a/usr.sbin/makemap/Makefile.depend +++ b/usr.sbin/makemap/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ diff --git a/usr.sbin/memcontrol/Makefile.depend b/usr.sbin/memcontrol/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/memcontrol/Makefile.depend +++ b/usr.sbin/memcontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mfiutil/Makefile.depend b/usr.sbin/mfiutil/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.sbin/mfiutil/Makefile.depend +++ b/usr.sbin/mfiutil/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/mixer/Makefile.depend b/usr.sbin/mixer/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/mixer/Makefile.depend +++ b/usr.sbin/mixer/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mld6query/Makefile.depend b/usr.sbin/mld6query/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/mld6query/Makefile.depend +++ b/usr.sbin/mld6query/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mlxcontrol/Makefile.depend b/usr.sbin/mlxcontrol/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/mlxcontrol/Makefile.depend +++ b/usr.sbin/mlxcontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mountd/Makefile.depend b/usr.sbin/mountd/Makefile.depend index d9693fd64752..bcf0e390016a 100644 --- a/usr.sbin/mountd/Makefile.depend +++ b/usr.sbin/mountd/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/moused/Makefile.depend b/usr.sbin/moused/Makefile.depend index 6e19c15e849b..9292a7dc93ae 100644 --- a/usr.sbin/moused/Makefile.depend +++ b/usr.sbin/moused/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/mptable/Makefile.depend b/usr.sbin/mptable/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/mptable/Makefile.depend +++ b/usr.sbin/mptable/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mptutil/Makefile.depend b/usr.sbin/mptutil/Makefile.depend index c79bce5f2287..981ec38d17a8 100644 --- a/usr.sbin/mptutil/Makefile.depend +++ b/usr.sbin/mptutil/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcam \ lib/libcompiler_rt \ lib/libsbuf \ diff --git a/usr.sbin/mtest/Makefile.depend b/usr.sbin/mtest/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/mtest/Makefile.depend +++ b/usr.sbin/mtest/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/mtree/Makefile.depend b/usr.sbin/mtree/Makefile.depend index f3adefe05801..50e2e74bea35 100644 --- a/usr.sbin/mtree/Makefile.depend +++ b/usr.sbin/mtree/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libmd \ diff --git a/usr.sbin/ndiscvt/Makefile.depend b/usr.sbin/ndiscvt/Makefile.depend index a4e44851d469..35458af65212 100644 --- a/usr.sbin/ndiscvt/Makefile.depend +++ b/usr.sbin/ndiscvt/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ usr.bin/lex/lib \ diff --git a/usr.sbin/ndp/Makefile.depend b/usr.sbin/ndp/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/ndp/Makefile.depend +++ b/usr.sbin/ndp/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/newsyslog/Makefile.depend b/usr.sbin/newsyslog/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/newsyslog/Makefile.depend +++ b/usr.sbin/newsyslog/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/nfscbd/Makefile.depend b/usr.sbin/nfscbd/Makefile.depend index eaaeea993366..102b1c3ddd08 100644 --- a/usr.sbin/nfscbd/Makefile.depend +++ b/usr.sbin/nfscbd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/nfsd/Makefile.depend b/usr.sbin/nfsd/Makefile.depend index 1c61866765c9..2a44c25ffe8e 100644 --- a/usr.sbin/nfsd/Makefile.depend +++ b/usr.sbin/nfsd/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/nfsdumpstate/Makefile.depend b/usr.sbin/nfsdumpstate/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/nfsdumpstate/Makefile.depend +++ b/usr.sbin/nfsdumpstate/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/nfsrevoke/Makefile.depend b/usr.sbin/nfsrevoke/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/nfsrevoke/Makefile.depend +++ b/usr.sbin/nfsrevoke/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/nfsuserd/Makefile.depend b/usr.sbin/nfsuserd/Makefile.depend index eaaeea993366..102b1c3ddd08 100644 --- a/usr.sbin/nfsuserd/Makefile.depend +++ b/usr.sbin/nfsuserd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ngctl/Makefile.depend b/usr.sbin/ngctl/Makefile.depend index 37af2e2aa525..35c7a73c52d6 100644 --- a/usr.sbin/ngctl/Makefile.depend +++ b/usr.sbin/ngctl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/libnetgraph \ diff --git a/usr.sbin/nghook/Makefile.depend b/usr.sbin/nghook/Makefile.depend index f5603505d900..181b85adfc73 100644 --- a/usr.sbin/nghook/Makefile.depend +++ b/usr.sbin/nghook/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libnetgraph \ diff --git a/usr.sbin/nscd/Makefile.depend b/usr.sbin/nscd/Makefile.depend index 467cf7b91373..c3952a6d19ea 100644 --- a/usr.sbin/nscd/Makefile.depend +++ b/usr.sbin/nscd/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ lib/libutil \ diff --git a/usr.sbin/ntp/ntp-keygen/Makefile.depend b/usr.sbin/ntp/ntp-keygen/Makefile.depend index 83e463362acf..0a7e70539d1c 100644 --- a/usr.sbin/ntp/ntp-keygen/Makefile.depend +++ b/usr.sbin/ntp/ntp-keygen/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/usr.sbin/ntp/ntpd/Makefile.depend b/usr.sbin/ntp/ntpd/Makefile.depend index 4bff1e2e5786..d6638a0fc0e3 100644 --- a/usr.sbin/ntp/ntpd/Makefile.depend +++ b/usr.sbin/ntp/ntpd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/usr.sbin/ntp/ntpdate/Makefile.depend b/usr.sbin/ntp/ntpdate/Makefile.depend index 868ca7acccb4..8dabf4f76a44 100644 --- a/usr.sbin/ntp/ntpdate/Makefile.depend +++ b/usr.sbin/ntp/ntpdate/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/usr.sbin/ntp/ntpdc/Makefile.depend b/usr.sbin/ntp/ntpdc/Makefile.depend index 69a85599b00c..799bdb767365 100644 --- a/usr.sbin/ntp/ntpdc/Makefile.depend +++ b/usr.sbin/ntp/ntpdc/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/usr.sbin/ntp/ntpq/Makefile.depend b/usr.sbin/ntp/ntpq/Makefile.depend index 69a85599b00c..799bdb767365 100644 --- a/usr.sbin/ntp/ntpq/Makefile.depend +++ b/usr.sbin/ntp/ntpq/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/usr.sbin/ntp/ntptime/Makefile.depend b/usr.sbin/ntp/ntptime/Makefile.depend index f0385c9962ac..a1737396246a 100644 --- a/usr.sbin/ntp/ntptime/Makefile.depend +++ b/usr.sbin/ntp/ntptime/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ diff --git a/usr.sbin/ntp/sntp/Makefile.depend b/usr.sbin/ntp/sntp/Makefile.depend index 9ceac4ec3f26..e7a994a2a9d2 100644 --- a/usr.sbin/ntp/sntp/Makefile.depend +++ b/usr.sbin/ntp/sntp/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ usr.sbin/ntp/libopts \ diff --git a/usr.sbin/pciconf/Makefile.depend b/usr.sbin/pciconf/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/pciconf/Makefile.depend +++ b/usr.sbin/pciconf/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/pkg/Makefile.depend b/usr.sbin/pkg/Makefile.depend index d25c193c1b7e..cb18bf6aa3f8 100644 --- a/usr.sbin/pkg/Makefile.depend +++ b/usr.sbin/pkg/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -17,8 +18,9 @@ DIRDEPS = \ lib/libfetch \ lib/liblzma \ lib/libsbuf \ - lib/libyaml \ + lib/libucl \ lib/libz \ + lib/msun \ secure/lib/libcrypto \ secure/lib/libssl \ diff --git a/usr.sbin/pmcannotate/Makefile.depend b/usr.sbin/pmcannotate/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/pmcannotate/Makefile.depend +++ b/usr.sbin/pmcannotate/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/pmccontrol/Makefile.depend b/usr.sbin/pmccontrol/Makefile.depend index efab25b02815..d0338228a632 100644 --- a/usr.sbin/pmccontrol/Makefile.depend +++ b/usr.sbin/pmccontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libpmc \ diff --git a/usr.sbin/pmcstat/Makefile.depend b/usr.sbin/pmcstat/Makefile.depend index a12bc72ddbb5..063d52f4ddc5 100644 --- a/usr.sbin/pmcstat/Makefile.depend +++ b/usr.sbin/pmcstat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libelf \ lib/libkvm \ diff --git a/usr.sbin/portsnap/make_index/Makefile.depend b/usr.sbin/portsnap/make_index/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/portsnap/make_index/Makefile.depend +++ b/usr.sbin/portsnap/make_index/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/portsnap/phttpget/Makefile.depend b/usr.sbin/portsnap/phttpget/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/portsnap/phttpget/Makefile.depend +++ b/usr.sbin/portsnap/phttpget/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/powerd/Makefile.depend b/usr.sbin/powerd/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.sbin/powerd/Makefile.depend +++ b/usr.sbin/powerd/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/ppp/Makefile.depend b/usr.sbin/ppp/Makefile.depend index 24931b03655f..e1dc9b44d6dd 100644 --- a/usr.sbin/ppp/Makefile.depend +++ b/usr.sbin/ppp/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/usr.sbin/pppctl/Makefile.depend b/usr.sbin/pppctl/Makefile.depend index 33f37206d154..8c91260ab083 100644 --- a/usr.sbin/pppctl/Makefile.depend +++ b/usr.sbin/pppctl/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/libthr \ diff --git a/usr.sbin/praliases/Makefile.depend b/usr.sbin/praliases/Makefile.depend index 742a51b9c716..95c819c68a8f 100644 --- a/usr.sbin/praliases/Makefile.depend +++ b/usr.sbin/praliases/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libsm \ lib/libsmdb \ diff --git a/usr.sbin/praudit/Makefile.depend b/usr.sbin/praudit/Makefile.depend index cfab52535a52..24594da0ac10 100644 --- a/usr.sbin/praudit/Makefile.depend +++ b/usr.sbin/praudit/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libbsm \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/procctl/Makefile.depend b/usr.sbin/procctl/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/procctl/Makefile.depend +++ b/usr.sbin/procctl/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/pstat/Makefile.depend b/usr.sbin/pstat/Makefile.depend index d5037d299cbf..5181feb78738 100644 --- a/usr.sbin/pstat/Makefile.depend +++ b/usr.sbin/pstat/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ lib/libutil \ diff --git a/usr.sbin/pw/Makefile.depend b/usr.sbin/pw/Makefile.depend index 8c9b44e8e0a4..8595bfc84564 100644 --- a/usr.sbin/pw/Makefile.depend +++ b/usr.sbin/pw/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/libutil \ diff --git a/usr.sbin/pwd_mkdb/Makefile.depend b/usr.sbin/pwd_mkdb/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/pwd_mkdb/Makefile.depend +++ b/usr.sbin/pwd_mkdb/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/quot/Makefile.depend b/usr.sbin/quot/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/quot/Makefile.depend +++ b/usr.sbin/quot/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/quotaon/Makefile.depend b/usr.sbin/quotaon/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.sbin/quotaon/Makefile.depend +++ b/usr.sbin/quotaon/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/rarpd/Makefile.depend b/usr.sbin/rarpd/Makefile.depend index e3af08532eec..d9ecce6a52af 100644 --- a/usr.sbin/rarpd/Makefile.depend +++ b/usr.sbin/rarpd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/repquota/Makefile.depend b/usr.sbin/repquota/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.sbin/repquota/Makefile.depend +++ b/usr.sbin/repquota/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/rip6query/Makefile.depend b/usr.sbin/rip6query/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/rip6query/Makefile.depend +++ b/usr.sbin/rip6query/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/rmt/Makefile.depend b/usr.sbin/rmt/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/rmt/Makefile.depend +++ b/usr.sbin/rmt/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/route6d/Makefile.depend b/usr.sbin/route6d/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/route6d/Makefile.depend +++ b/usr.sbin/route6d/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/rpc.lockd/Makefile.depend b/usr.sbin/rpc.lockd/Makefile.depend index 036f9836837c..5d4d88112deb 100644 --- a/usr.sbin/rpc.lockd/Makefile.depend +++ b/usr.sbin/rpc.lockd/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ lib/libutil \ diff --git a/usr.sbin/rpc.statd/Makefile.depend b/usr.sbin/rpc.statd/Makefile.depend index 57f69dadf00a..332bf27d9933 100644 --- a/usr.sbin/rpc.statd/Makefile.depend +++ b/usr.sbin/rpc.statd/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/rpc.umntall/Makefile.depend b/usr.sbin/rpc.umntall/Makefile.depend index 5930524f9ce7..c1655db8b437 100644 --- a/usr.sbin/rpc.umntall/Makefile.depend +++ b/usr.sbin/rpc.umntall/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/rpc.yppasswdd/Makefile.depend b/usr.sbin/rpc.yppasswdd/Makefile.depend index a3e7a5eca9fa..cdca06f53d8a 100644 --- a/usr.sbin/rpc.yppasswdd/Makefile.depend +++ b/usr.sbin/rpc.yppasswdd/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libcrypt \ lib/librpcsvc \ diff --git a/usr.sbin/rpc.ypupdated/Makefile.depend b/usr.sbin/rpc.ypupdated/Makefile.depend index e39027bd7c0b..d02c4ba0aaa0 100644 --- a/usr.sbin/rpc.ypupdated/Makefile.depend +++ b/usr.sbin/rpc.ypupdated/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/rpc.ypxfrd/Makefile.depend b/usr.sbin/rpc.ypxfrd/Makefile.depend index 91c9284ebd47..ff79a2ec2fcf 100644 --- a/usr.sbin/rpc.ypxfrd/Makefile.depend +++ b/usr.sbin/rpc.ypxfrd/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/rpcbind/Makefile.depend b/usr.sbin/rpcbind/Makefile.depend index 924e5c4aae69..ee9a1f9ced9a 100644 --- a/usr.sbin/rpcbind/Makefile.depend +++ b/usr.sbin/rpcbind/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/libwrap \ diff --git a/usr.sbin/rrenumd/Makefile.depend b/usr.sbin/rrenumd/Makefile.depend index 4416d5f8ea67..fdcd9a02a426 100644 --- a/usr.sbin/rrenumd/Makefile.depend +++ b/usr.sbin/rrenumd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ lib/liby \ diff --git a/usr.sbin/rtadvctl/Makefile.depend b/usr.sbin/rtadvctl/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/rtadvctl/Makefile.depend +++ b/usr.sbin/rtadvctl/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/rtadvd/Makefile.depend b/usr.sbin/rtadvd/Makefile.depend index e3af08532eec..d9ecce6a52af 100644 --- a/usr.sbin/rtadvd/Makefile.depend +++ b/usr.sbin/rtadvd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/rtprio/Makefile.depend b/usr.sbin/rtprio/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/rtprio/Makefile.depend +++ b/usr.sbin/rtprio/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/rtsold/Makefile.depend b/usr.sbin/rtsold/Makefile.depend index 803dc63a94f7..3820cc87112a 100644 --- a/usr.sbin/rtsold/Makefile.depend +++ b/usr.sbin/rtsold/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libkvm \ diff --git a/usr.sbin/rwhod/Makefile.depend b/usr.sbin/rwhod/Makefile.depend index 11fa4d730adc..7cc74610b497 100644 --- a/usr.sbin/rwhod/Makefile.depend +++ b/usr.sbin/rwhod/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/sa/Makefile.depend b/usr.sbin/sa/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/sa/Makefile.depend +++ b/usr.sbin/sa/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/sendmail/Makefile.depend b/usr.sbin/sendmail/Makefile.depend index f8c574cf28ff..c86601a362af 100644 --- a/usr.sbin/sendmail/Makefile.depend +++ b/usr.sbin/sendmail/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/usr.sbin/services_mkdb/Makefile.depend b/usr.sbin/services_mkdb/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.sbin/services_mkdb/Makefile.depend +++ b/usr.sbin/services_mkdb/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/setfib/Makefile.depend b/usr.sbin/setfib/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/setfib/Makefile.depend +++ b/usr.sbin/setfib/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/setfmac/Makefile.depend b/usr.sbin/setfmac/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/setfmac/Makefile.depend +++ b/usr.sbin/setfmac/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/setpmac/Makefile.depend b/usr.sbin/setpmac/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/setpmac/Makefile.depend +++ b/usr.sbin/setpmac/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/sicontrol/Makefile.depend b/usr.sbin/sicontrol/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/sicontrol/Makefile.depend +++ b/usr.sbin/sicontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/smbmsg/Makefile.depend b/usr.sbin/smbmsg/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/smbmsg/Makefile.depend +++ b/usr.sbin/smbmsg/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/snapinfo/Makefile.depend b/usr.sbin/snapinfo/Makefile.depend index 7fb8fce4559a..66da85cb1de1 100644 --- a/usr.sbin/snapinfo/Makefile.depend +++ b/usr.sbin/snapinfo/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libufs \ diff --git a/usr.sbin/spray/Makefile.depend b/usr.sbin/spray/Makefile.depend index 3b0eba6af4e1..e44fad36fdf9 100644 --- a/usr.sbin/spray/Makefile.depend +++ b/usr.sbin/spray/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/librpcsvc \ diff --git a/usr.sbin/syslogd/Makefile.depend b/usr.sbin/syslogd/Makefile.depend index e3af08532eec..d9ecce6a52af 100644 --- a/usr.sbin/syslogd/Makefile.depend +++ b/usr.sbin/syslogd/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/tcpdchk/Makefile.depend b/usr.sbin/tcpdchk/Makefile.depend index a02eba6f2277..2e79396a44b9 100644 --- a/usr.sbin/tcpdchk/Makefile.depend +++ b/usr.sbin/tcpdchk/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ diff --git a/usr.sbin/tcpdmatch/Makefile.depend b/usr.sbin/tcpdmatch/Makefile.depend index a02eba6f2277..2e79396a44b9 100644 --- a/usr.sbin/tcpdmatch/Makefile.depend +++ b/usr.sbin/tcpdmatch/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ diff --git a/usr.sbin/tcpdrop/Makefile.depend b/usr.sbin/tcpdrop/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/tcpdrop/Makefile.depend +++ b/usr.sbin/tcpdrop/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/tcpdump/tcpdump/Makefile.depend b/usr.sbin/tcpdump/tcpdump/Makefile.depend index 91bd6d387bd7..d6449ae305d6 100644 --- a/usr.sbin/tcpdump/tcpdump/Makefile.depend +++ b/usr.sbin/tcpdump/tcpdump/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ @@ -10,7 +11,9 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ + lib/libcapsicum \ lib/libcompiler_rt \ + lib/libnv \ lib/libpcap \ secure/lib/libcrypto \ usr.bin/lex/lib \ diff --git a/usr.sbin/timed/timed/Makefile.depend b/usr.sbin/timed/timed/Makefile.depend index b298230158b8..662a3391e707 100644 --- a/usr.sbin/timed/timed/Makefile.depend +++ b/usr.sbin/timed/timed/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/timed/timedc/Makefile.depend b/usr.sbin/timed/timedc/Makefile.depend index 11fa4d730adc..7cc74610b497 100644 --- a/usr.sbin/timed/timedc/Makefile.depend +++ b/usr.sbin/timed/timedc/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/traceroute/Makefile.depend b/usr.sbin/traceroute/Makefile.depend index 8ef0d4e1c0bd..76dabb396b38 100644 --- a/usr.sbin/traceroute/Makefile.depend +++ b/usr.sbin/traceroute/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ diff --git a/usr.sbin/traceroute6/Makefile.depend b/usr.sbin/traceroute6/Makefile.depend index 46ae5afac68b..4de996d8a07b 100644 --- a/usr.sbin/traceroute6/Makefile.depend +++ b/usr.sbin/traceroute6/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libipsec \ diff --git a/usr.sbin/trpt/Makefile.depend b/usr.sbin/trpt/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/trpt/Makefile.depend +++ b/usr.sbin/trpt/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/tzsetup/Makefile.depend b/usr.sbin/tzsetup/Makefile.depend index 546cb43f4f04..d9cc8893dc80 100644 --- a/usr.sbin/tzsetup/Makefile.depend +++ b/usr.sbin/tzsetup/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/msun \ lib/ncurses/ncursesw \ diff --git a/usr.sbin/uathload/Makefile.depend b/usr.sbin/uathload/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/uathload/Makefile.depend +++ b/usr.sbin/uathload/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ugidfw/Makefile.depend b/usr.sbin/ugidfw/Makefile.depend index 0c062e1f1df6..005d01278800 100644 --- a/usr.sbin/ugidfw/Makefile.depend +++ b/usr.sbin/ugidfw/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libugidfw \ diff --git a/usr.sbin/uhsoctl/Makefile.depend b/usr.sbin/uhsoctl/Makefile.depend index e3af08532eec..d9ecce6a52af 100644 --- a/usr.sbin/uhsoctl/Makefile.depend +++ b/usr.sbin/uhsoctl/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/usbconfig/Makefile.depend b/usr.sbin/usbconfig/Makefile.depend index fad2a1d2fe7b..91ae73e1aa71 100644 --- a/usr.sbin/usbconfig/Makefile.depend +++ b/usr.sbin/usbconfig/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libthr \ lib/libusb \ diff --git a/usr.sbin/usbdump/Makefile.depend b/usr.sbin/usbdump/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/usbdump/Makefile.depend +++ b/usr.sbin/usbdump/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/utx/Makefile.depend b/usr.sbin/utx/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/utx/Makefile.depend +++ b/usr.sbin/utx/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/vidcontrol/Makefile.depend b/usr.sbin/vidcontrol/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/vidcontrol/Makefile.depend +++ b/usr.sbin/vidcontrol/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/vipw/Makefile.depend b/usr.sbin/vipw/Makefile.depend index 40b445f04779..78b235bef5b2 100644 --- a/usr.sbin/vipw/Makefile.depend +++ b/usr.sbin/vipw/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ diff --git a/usr.sbin/wake/Makefile.depend b/usr.sbin/wake/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/wake/Makefile.depend +++ b/usr.sbin/wake/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/watch/Makefile.depend b/usr.sbin/watch/Makefile.depend index 233a7c6cd0b8..4f4df6520bd4 100644 --- a/usr.sbin/watch/Makefile.depend +++ b/usr.sbin/watch/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.sbin/watchdogd/Makefile.depend b/usr.sbin/watchdogd/Makefile.depend index 6e19c15e849b..9292a7dc93ae 100644 --- a/usr.sbin/watchdogd/Makefile.depend +++ b/usr.sbin/watchdogd/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libutil \ lib/msun \ diff --git a/usr.sbin/wlandebug/Makefile.depend b/usr.sbin/wlandebug/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/wlandebug/Makefile.depend +++ b/usr.sbin/wlandebug/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/wpa/hostapd/Makefile.depend b/usr.sbin/wpa/hostapd/Makefile.depend index 4d8f09c4314f..ae45e7b9d550 100644 --- a/usr.sbin/wpa/hostapd/Makefile.depend +++ b/usr.sbin/wpa/hostapd/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/usr.sbin/wpa/hostapd_cli/Makefile.depend b/usr.sbin/wpa/hostapd_cli/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/wpa/hostapd_cli/Makefile.depend +++ b/usr.sbin/wpa/hostapd_cli/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/wpa/ndis_events/Makefile.depend b/usr.sbin/wpa/ndis_events/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/wpa/ndis_events/Makefile.depend +++ b/usr.sbin/wpa/ndis_events/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/wpa/wpa_cli/Makefile.depend b/usr.sbin/wpa/wpa_cli/Makefile.depend index 6033e4a5149c..a0d576d9b48e 100644 --- a/usr.sbin/wpa/wpa_cli/Makefile.depend +++ b/usr.sbin/wpa/wpa_cli/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libedit \ lib/ncurses/ncurses \ diff --git a/usr.sbin/wpa/wpa_passphrase/Makefile.depend b/usr.sbin/wpa/wpa_passphrase/Makefile.depend index 5269280d143c..b68b4bb5daf9 100644 --- a/usr.sbin/wpa/wpa_passphrase/Makefile.depend +++ b/usr.sbin/wpa/wpa_passphrase/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/wpa/wpa_supplicant/Makefile.depend b/usr.sbin/wpa/wpa_supplicant/Makefile.depend index 4d8f09c4314f..ae45e7b9d550 100644 --- a/usr.sbin/wpa/wpa_supplicant/Makefile.depend +++ b/usr.sbin/wpa/wpa_supplicant/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/arpa \ diff --git a/usr.sbin/yp_mkdb/Makefile.depend b/usr.sbin/yp_mkdb/Makefile.depend index 5930524f9ce7..c1655db8b437 100644 --- a/usr.sbin/yp_mkdb/Makefile.depend +++ b/usr.sbin/yp_mkdb/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ypbind/Makefile.depend b/usr.sbin/ypbind/Makefile.depend index 1c61866765c9..2a44c25ffe8e 100644 --- a/usr.sbin/ypbind/Makefile.depend +++ b/usr.sbin/ypbind/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/yppoll/Makefile.depend b/usr.sbin/yppoll/Makefile.depend index 5930524f9ce7..c1655db8b437 100644 --- a/usr.sbin/yppoll/Makefile.depend +++ b/usr.sbin/yppoll/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/yppush/Makefile.depend b/usr.sbin/yppush/Makefile.depend index 52a8367eeebd..fcb2738e1f24 100644 --- a/usr.sbin/yppush/Makefile.depend +++ b/usr.sbin/yppush/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/ypserv/Makefile.depend b/usr.sbin/ypserv/Makefile.depend index 2d2fd8adc856..ed8b35e4cff1 100644 --- a/usr.sbin/ypserv/Makefile.depend +++ b/usr.sbin/ypserv/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ lib/libwrap \ diff --git a/usr.sbin/ypset/Makefile.depend b/usr.sbin/ypset/Makefile.depend index 1c61866765c9..2a44c25ffe8e 100644 --- a/usr.sbin/ypset/Makefile.depend +++ b/usr.sbin/ypset/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/zic/zdump/Makefile.depend b/usr.sbin/zic/zdump/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/zic/zdump/Makefile.depend +++ b/usr.sbin/zic/zdump/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ diff --git a/usr.sbin/zic/zic/Makefile.depend b/usr.sbin/zic/zic/Makefile.depend index 6caf55f2706e..96aa2a21a959 100644 --- a/usr.sbin/zic/zic/Makefile.depend +++ b/usr.sbin/zic/zic/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ include/xlocale \ lib/${CSU_DIR} \ lib/libc \ - lib/libc_nonshared \ lib/libcompiler_rt \ From aee7bee5c3e5827149aad909d256f6c97957e9ae Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:40:07 +0000 Subject: [PATCH 149/228] Fix building libstdc++ with clang Reviewed by: theraven --- gnu/lib/libstdc++/Makefile | 5 ++--- gnu/lib/libsupc++/Makefile | 4 +--- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/gnu/lib/libstdc++/Makefile b/gnu/lib/libstdc++/Makefile index d19f9f3bb3ff..dffb5632c0e6 100644 --- a/gnu/lib/libstdc++/Makefile +++ b/gnu/lib/libstdc++/Makefile @@ -634,7 +634,6 @@ CLEANFILES+= ${VERSION_MAP} .include -# Filter out libc++-specific flags, and -std= flags above c++98 or gnu++98. -CXXFLAGS:= ${CXXFLAGS:N-stdlib=libc++:N-std=c++[01][13x]:N-std=gnu++[01][13x]} - CXXFLAGS.clang+= -stdlib=libstdc++ +CXXFLAGS+= -std=gnu++98 + diff --git a/gnu/lib/libsupc++/Makefile b/gnu/lib/libsupc++/Makefile index 5cc5f04adf67..a172a6ed08ac 100644 --- a/gnu/lib/libsupc++/Makefile +++ b/gnu/lib/libsupc++/Makefile @@ -54,7 +54,5 @@ VERSION_MAP= ${.CURDIR}/Version.map .include -# Filter out libc++-specific flags, and -std= flags above c++98 or gnu++98. -CXXFLAGS:= ${CXXFLAGS:N-stdlib=libc++:N-std=c++[01][13x]:N-std=gnu++[01][13x]} - CXXFLAGS.clang+= -stdlib=libstdc++ +CXXFLAGS+= -std=gnu++98 From f8217b322f0f3e32ea15c4f7da18547d531f2a85 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:42:34 +0000 Subject: [PATCH 150/228] Supress beforebuild dependency on buildincludes --- kerberos5/lib/libasn1/Makefile | 4 +++- kerberos5/lib/libhdb/Makefile | 2 ++ kerberos5/lib/libhx509/Makefile | 3 +++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/kerberos5/lib/libasn1/Makefile b/kerberos5/lib/libasn1/Makefile index dc1de5c61506..815d4c934268 100644 --- a/kerberos5/lib/libasn1/Makefile +++ b/kerberos5/lib/libasn1/Makefile @@ -116,7 +116,9 @@ ${GEN_KX509}: kx509.asn1 .hx.h: cp ${.IMPSRC} ${.TARGET} - + +NO_BEFOREBUILD_INCLUDES= + .include .SUFFIXES: .h .c .x .hx diff --git a/kerberos5/lib/libhdb/Makefile b/kerberos5/lib/libhdb/Makefile index a1ed80612896..2492ca126c9a 100644 --- a/kerberos5/lib/libhdb/Makefile +++ b/kerberos5/lib/libhdb/Makefile @@ -96,6 +96,8 @@ ${GEN}: hdb.asn1 .hx.h: cp ${.IMPSRC} ${.TARGET} +NO_BEFOREBUILD_INCLUDES= + .include .SUFFIXES: .h .c .x .hx diff --git a/kerberos5/lib/libhx509/Makefile b/kerberos5/lib/libhx509/Makefile index 3bffda6eb0e4..dc2be9942137 100644 --- a/kerberos5/lib/libhx509/Makefile +++ b/kerberos5/lib/libhx509/Makefile @@ -291,8 +291,11 @@ ${GEN_CRMF}: crmf.asn1 .hx.h: cp ${.IMPSRC} ${.TARGET} +NO_BEFOREBUILD_INCLUDES= + .include .SUFFIXES: .h .c .x .hx .PATH: ${KRB5DIR}/lib/hx509 ${KRB5DIR}/lib/asn1 ${KRB5DIR}/doc/doxyout/hx509/man/man3 + From a5e980ce9586d309f79530eaf3716259c178ea32 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:43:24 +0000 Subject: [PATCH 151/228] use mv -f to avoid questions --- include/mk-osreldate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mk-osreldate.sh b/include/mk-osreldate.sh index 239a66159b2a..ed8311c6ead8 100755 --- a/include/mk-osreldate.sh +++ b/include/mk-osreldate.sh @@ -49,4 +49,4 @@ $COPYRIGHT #endif EOF chmod 644 $tmpfile -mv $tmpfile osreldate.h +mv -f $tmpfile osreldate.h From 1a682d2cea21bc46d683533c5368c3a2c6dc1fc2 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:47:18 +0000 Subject: [PATCH 152/228] We want to use stage_includes as a hook, so use NO_STAGE_INCLUDES in include/Makefile to suppress normal behavior --- include/Makefile | 11 ++++++++++- share/mk/bsd.incs.mk | 11 ++++------- share/mk/meta.stage.mk | 3 ++- 3 files changed, 16 insertions(+), 9 deletions(-) diff --git a/include/Makefile b/include/Makefile index 8b896bad8999..274dd2c4591f 100644 --- a/include/Makefile +++ b/include/Makefile @@ -121,7 +121,7 @@ _MARCHS+= x86 .if ${MK_STAGING} != "no" # tell bsd.incs.mk that we have it covered -stage_includes: +NO_STAGE_INCLUDES= .endif .include @@ -371,3 +371,12 @@ symlinks: .if ${MK_META_MODE} == "yes" touch ${.TARGET} .endif + +.if ${MACHINE} == "host" +# we're here because we are building a sysroot... +# we need MACHINE et al set correctly +HOST_MACHINE!= uname -m +HOST_MACHINE_ARCH!= uname -p +MACHINE:= ${HOST_MACHINE} +MACHINE_ARCH:= ${HOST_MACHINE_ARCH} +.endif diff --git a/share/mk/bsd.incs.mk b/share/mk/bsd.incs.mk index ee4305a73816..08ef376b5d7e 100644 --- a/share/mk/bsd.incs.mk +++ b/share/mk/bsd.incs.mk @@ -45,6 +45,7 @@ ${group}NAME_${header:T}?= ${header:T} STAGE_AS_SETS+= ${group} STAGE_AS_${header:T}= ${${group}NAME_${header:T}} stage_as.${group}: ${header} +stage_includes: stage_as.${group} installincludes: _${group}INS_${header:T} _${group}INS_${header:T}: ${header} @@ -58,6 +59,7 @@ _${group}INCS+= ${header} .endfor .if !empty(_${group}INCS) stage_files.${group}: ${_${group}INCS} +stage_includes: stage_files.${group} installincludes: _${group}INS _${group}INS: ${_${group}INCS} @@ -91,13 +93,8 @@ realinstall: installincludes .ORDER: beforeinstall installincludes .if ${MK_STAGING} != "no" && !defined(_SKIP_BUILD) -.if !target(stage_includes) -.if !empty(STAGE_SETS) -buildincludes: stage_files -.if !empty(STAGE_AS_SETS) -buildincludes: stage_as -.endif -.endif +.if !defined(NO_STAGE_INCLUDES) +staging: stage_includes .if !empty(INCSLINKS) staging: stage_symlinks STAGE_SYMLINKS.INCS= ${INCSLINKS} diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index 63cef7f656ad..1c9475963908 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -123,6 +123,7 @@ _STAGE_BASENAME_USE: .USE ${.TARGET:T} STAGE_TARGETS += stage_incs STAGE_INCS ?= ${.ALLSRC:N.dirdep} +stage_includes: stage_incs stage_incs: .dirdep @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_INCSDIR:${STAGE_DIR_FILTER}} ${STAGE_INCS} @touch $@ @@ -220,7 +221,7 @@ stage_as.$s: .dirdep .endfor .endif -CLEANFILES += ${STAGE_TARGETS} +CLEANFILES += ${STAGE_TARGETS} stage_incs stage_includes # stage_*links usually needs to follow any others. .for t in ${STAGE_TARGETS:N*links:O:u} From 7bbde42e0d906c172c8df41d350e5023c6329f97 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:49:37 +0000 Subject: [PATCH 153/228] There is no guarantee that user gid maps to a name so in etc/Makefile we want _gid to be id, so use _gn for the name. --- share/mk/bsd.own.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 952ca21a2852..606bb3c90fbd 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -140,10 +140,11 @@ _uid!= id -u .if !defined(USER) USER!= id -un .endif -_gid!= id -gn +_gid!= id -g +_gn!= id -gn .for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE $xOWN= ${USER} -$xGRP= ${_gid} +$xGRP= ${_gn} .endfor .endif .endif From f187ca8c906bbd8049a075b7b913116ec7047886 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:51:19 +0000 Subject: [PATCH 154/228] Using lib*.so as a linker script ... the paths can be avoided, making the file mobile, so generate during build and we need to handle staging it. --- share/mk/bsd.lib.mk | 58 ++++++++++++++++++++++++++------------------- share/mk/bsd.sys.mk | 33 ++++++++++++++++++++++++-- 2 files changed, 64 insertions(+), 27 deletions(-) diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index 9710d8ef8731..4782545bfda7 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -212,10 +212,40 @@ SOLINKOPTS+= -Wl,--fatal-warnings -Wl,--warn-shared-textrel beforelinking: ${SOBJS} ${SHLIB_NAME_FULL}: beforelinking .endif + +.if defined(SHLIB_LINK) +# ${_SHLIBDIRPREFIX} and ${_LDSCRIPTROOT} are both needed when cross-building +# and when building 32 bits library shims. ${_SHLIBDIRPREFIX} is the directory +# prefix where shared objects will be installed by the install target. +# +# ${_LDSCRIPTROOT} is the directory prefix that will be used when generating +# ld(1) scripts. The crosstools' ld is configured to lookup libraries in an +# alternative directory which is called "sysroot", so during buildworld binaries +# won't be linked against the running system libraries but against the ones of +# the current source tree. ${_LDSCRIPTROOT} behavior is twisted because of +# the location where we store them: +# - 64 bits libs are located under sysroot, so ${_LDSCRIPTROOT} must be empty +# because ld(1) will manage to find them from sysroot; +# - 32 bits shims are not, so ${_LDSCRIPTROOT} is used to specify their full +# path, outside of sysroot. +# Note that ld(1) scripts are generated both during buildworld and +# installworld; in the later case ${_LDSCRIPTROOT} must be obviously empty +# because on the target system, libraries are meant to be looked up from /. +.if defined(SHLIB_LDSCRIPT) && !empty(SHLIB_LDSCRIPT) && exists(${.CURDIR}/${SHLIB_LDSCRIPT}) +${SHLIB_LINK:R}.ld: ${.CURDIR}/${SHLIB_LDSCRIPT} + sed -e 's,@@SHLIB@@,${_LDSCRIPTROOT}${_SHLIBDIR}/${SHLIB_NAME},g' \ + -e 's,@@LIBDIR@@,${_LDSCRIPTROOT}${_LIBDIR},g' \ + -e 's,/[^ ]*/,,g' \ + ${.ALLSRC} > ${.TARGET} + +${SHLIB_NAME_FULL}: ${SHLIB_LINK:R}.ld +.endif +.endif + ${SHLIB_NAME_FULL}: ${SOBJS} @${ECHO} building shared library ${SHLIB_NAME} @rm -f ${SHLIB_NAME} ${SHLIB_LINK} -.if defined(SHLIB_LINK) +.if defined(SHLIB_LINK) && !commands(${SHLIB_LINK:R}.ld) @${INSTALL_SYMLINK} ${SHLIB_NAME} ${SHLIB_LINK} .endif .if !defined(NM) @@ -329,32 +359,10 @@ _libinstall: ${SHLIB_NAME}.debug ${DESTDIR}${DEBUGFILEDIR} .endif .if defined(SHLIB_LINK) -# ${_SHLIBDIRPREFIX} and ${_LDSCRIPTROOT} are both needed when cross-building -# and when building 32 bits library shims. ${_SHLIBDIRPREFIX} is the directory -# prefix where shared objects will be installed by the install target. -# -# ${_LDSCRIPTROOT} is the directory prefix that will be used when generating -# ld(1) scripts. The crosstools' ld is configured to lookup libraries in an -# alternative directory which is called "sysroot", so during buildworld binaries -# won't be linked against the running system libraries but against the ones of -# the current source tree. ${_LDSCRIPTROOT} behavior is twisted because of -# the location where we store them: -# - 64 bits libs are located under sysroot, so ${_LDSCRIPTROOT} must be empty -# because ld(1) will manage to find them from sysroot; -# - 32 bits shims are not, so ${_LDSCRIPTROOT} is used to specify their full -# path, outside of sysroot. -# Note that ld(1) scripts are generated both during buildworld and -# installworld; in the later case ${_LDSCRIPTROOT} must be obviously empty -# because on the target system, libraries are meant to be looked up from /. -.if defined(SHLIB_LDSCRIPT) && !empty(SHLIB_LDSCRIPT) && exists(${.CURDIR}/${SHLIB_LDSCRIPT}) - sed -e 's,@@SHLIB@@,${_LDSCRIPTROOT}${_SHLIBDIR}/${SHLIB_NAME},g' \ - -e 's,@@LIBDIR@@,${_LDSCRIPTROOT}${_LIBDIR},g' \ - ${.CURDIR}/${SHLIB_LDSCRIPT} > ${DESTDIR}${_LIBDIR}/${SHLIB_LINK:R}.ld +.if commands(${SHLIB_LINK:R}.ld) ${INSTALL} -S -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ - ${_INSTALLFLAGS} ${DESTDIR}${_LIBDIR}/${SHLIB_LINK:R}.ld \ + ${_INSTALLFLAGS} ${SHLIB_LINK:R}.ld \ ${DESTDIR}${_LIBDIR}/${SHLIB_LINK} - rm -f ${DESTDIR}${_LIBDIR}/${SHLIB_LINK:R}.ld - .else .if ${_SHLIBDIR} == ${_LIBDIR} ${INSTALL_SYMLINK} ${SHLIB_NAME} ${DESTDIR}${_LIBDIR}/${SHLIB_LINK} diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk index a587b0d28b15..97ca9632aa95 100644 --- a/share/mk/bsd.sys.mk +++ b/share/mk/bsd.sys.mk @@ -168,7 +168,7 @@ PHONY_NOTMAIN+= fetch patch .else .PHONY: ${PHONY_NOTMAIN} .endif -.NOTMAIN: ${PHONY_NOTMAIN} +.NOTMAIN: ${PHONY_NOTMAIN:Nall} .if !defined(.PARSEDIR) # this is a no-op @@ -184,6 +184,7 @@ staging stage_libs stage_files stage_as stage_links stage_symlinks: .else # allow targets like beforeinstall to be leveraged DESTDIR= ${STAGE_OBJTOP} +_SHLIBDIRPREFIX= ${STAGE_OBJTOP} .if commands(beforeinstall) .if !empty(_LIBS) || ${MK_STAGING_PROG} != "no" @@ -209,14 +210,42 @@ staging: stage_files .endif .if !empty(_LIBS) && !defined(INTERNALLIB) +.if defined(SHLIBDIR) && ${SHLIBDIR} != ${LIBDIR} && ${_LIBS:Uno:M*.so.*} != "" +STAGE_SETS+= shlib +STAGE_DIR.shlib= ${STAGE_OBJTOP}${SHLIBDIR} +STAGE_FILES.shlib+= ${_LIBS:M*.so.*} +stage_files.shlib: ${_LIBS:M*.so.*} +.endif + +.if defined(SHLIB_LINK) && commands(${SHLIB_LINK:R}.ld) +_LDSCRIPTROOT?= ${STAGE_OBJTOP} +STAGE_AS_SETS+= ldscript +STAGE_AS.ldscript+= ${SHLIB_LINK:R}.ld +stage_as.ldscript: ${SHLIB_LINK:R}.ld +STAGE_DIR.ldscript = ${STAGE_LIBDIR} +STAGE_AS_${SHLIB_LINK:R}.ld:= ${SHLIB_LINK} +NO_SHLIB_LINKS= +.endif + +.if target(stage_files.shlib) stage_libs: ${_LIBS} +.if defined(DEBUG_FLAGS) && target(${SHLIB_NAME}.symbols) +stage_files.shlib: ${SHLIB_NAME}.symbols +.endif +.else +stage_libs: ${_LIBS} +.endif .if defined(SHLIB_NAME) && defined(DEBUG_FLAGS) && target(${SHLIB_NAME}.symbols) stage_libs: ${SHLIB_NAME}.symbols .endif + .endif .if !empty(INCS) || !empty(INCSGROUPS) && target(buildincludes) -beforebuild: buildincludes +.if !defined(NO_BEFOREBUILD_INCLUDES) +stage_includes: buildincludes +beforebuild: stage_includes +.endif .endif .for t in stage_libs stage_files stage_as From ab2f54513ba52ad1a03eb5059e8627d033f288b1 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:52:18 +0000 Subject: [PATCH 155/228] Add SYSROOT --- share/mk/src.opts.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index f82167b87bf6..336d7009f1f8 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -178,6 +178,7 @@ __DEFAULT_NO_OPTIONS = \ SHARED_TOOLCHAIN \ SORT_THREADS \ SVN \ + SYSROOT \ TESTS \ USB_GADGET_EXAMPLES From 59dd53f1040b5a3a0ba29cfcae88cb4cc6529359 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:53:15 +0000 Subject: [PATCH 156/228] Include src.opts.mk and handle MK_SYSROOT. --- share/mk/local.init.mk | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/share/mk/local.init.mk b/share/mk/local.init.mk index eb15b1ee9fa5..f6a29377d9a0 100644 --- a/share/mk/local.init.mk +++ b/share/mk/local.init.mk @@ -1,4 +1,6 @@ +.include "src.opts.mk" + .if defined(.PARSEDIR) .if ${.MAKE.MODE:Mmeta*} != "" .if !empty(SUBDIR) && !defined(LIB) && !defined(PROG) && ${.MAKE.MAKEFILES:M*bsd.prog.mk} == "" @@ -10,7 +12,22 @@ .endif .endif +.if ${MK_SYSROOT} == "yes" && !empty(SYSROOT) +CFLAGS_LAST+= --sysroot=${SYSROOT} +CXXFLAGS_LAST+= --sysroot=${SYSROOT} +LDADD+= --sysroot=${SYSROOT} .if ${MACHINE} == "host" +# we cheat? +LDADD+= -B/usr/lib +CFLAGS_LAST+= -I/usr/include +CXXFLAGS_LAST+= -I/usr/include +.endif +.endif + +.if ${MACHINE} == "host" +.if ${.MAKE.DEPENDFILE:E} != "host" +UPDATE_DEPENDFILE?= no +.endif HOST_CC?= /usr/bin/cc HOST_CFLAGS+= -DHOSTPROG CC= ${HOST_CC} From 5d50250ddaecdd435cbaa08e334188a73c906ead Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:54:05 +0000 Subject: [PATCH 157/228] Use BTOOLSDIR --- pkgs/pseudo/bootstrap-tools/Makefile | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/pseudo/bootstrap-tools/Makefile b/pkgs/pseudo/bootstrap-tools/Makefile index 34aae96b9914..67fe13ed2e32 100644 --- a/pkgs/pseudo/bootstrap-tools/Makefile +++ b/pkgs/pseudo/bootstrap-tools/Makefile @@ -6,21 +6,22 @@ all: cross-tools build-tools UPDATE_DEPENDFILE= no +.export UPDATE_DEPENDFILE # we build for the pseudo machine "host" TARGET_MACHINE= host HOST_MACHINE!= uname -m HOST_MACHINE_ARCH!= uname -p -TOOLSDIR?= ${HOST_OBJTOP}/tools -LEGACY_TOOLS?= ${TOOLSDIR}/legacy +BTOOLSDIR?= ${HOST_OBJTOP}/tools +LEGACY_TOOLS?= ${BTOOLSDIR}/legacy BSENV= \ - unset MAKEOBJDIR; MAKEOBJDIRPREFIX=${TOOLSDIR} \ - MAKESYSPATH=${SRCTOP}/tools/build/mk:${SRCTOP}/share/mk \ - TARGET=${HOST_MACHINE} TARGET_ARCH=${HOST_MACHINE_ARCH} \ - WITHOUT_STAGING=1 STAGE_ROOT= \ - WORLDTMP=${TOOLSDIR} LEGACY_TOOLS=${LEGACY_TOOLS} + unset MAKEOBJDIR; MAKEOBJDIRPREFIX=${BTOOLSDIR} \ + MAKESYSPATH=${SRCTOP}/tools/build/mk:${SRCTOP}/share/mk \ + TARGET=${HOST_MACHINE} TARGET_ARCH=${HOST_MACHINE_ARCH} \ + WITHOUT_STAGING=1 STAGE_ROOT= \ + WORLDTMP=${BTOOLSDIR} LEGACY_TOOLS=${LEGACY_TOOLS} BSARGS= \ DESTDIR= \ @@ -32,7 +33,7 @@ BSARGS= \ legacy: .MAKE .META mkdir -p ${LEGACY_TOOLS} - ${MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${TOOLSDIR} > $@2 + ${MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${BTOOLSDIR} > $@2 ${MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${LEGACY_TOOLS} > $@ ${BSENV} ${MAKE} -C ${SRCTOP} -f Makefile.inc1 ${BSARGS} $@ touch $@ From e2b820a948a1ecfe7c784b9027d03587224cdef8 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:54:29 +0000 Subject: [PATCH 158/228] Avoid circular dependency --- lib/clang/include/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/clang/include/Makefile b/lib/clang/include/Makefile index 2b5a976788ce..da39f1ccbce7 100644 --- a/lib/clang/include/Makefile +++ b/lib/clang/include/Makefile @@ -47,4 +47,7 @@ INCS= __wmmintrin_aes.h \ GENINCS= arm_neon.h CLEANFILES= ${GENINCS} +# avoid a circular dependency +GENDIRDEPS_FILTER+= Nusr.bin/clang/clang-tblgen.host + .include From 1d01c27d5f6916d829f89401826e45413f1ab1e7 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:56:06 +0000 Subject: [PATCH 159/228] Include bsd.opts.mk before local.init.mk --- share/mk/bsd.init.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/mk/bsd.init.mk b/share/mk/bsd.init.mk index 74e477a74d18..14a17dd657e4 100644 --- a/share/mk/bsd.init.mk +++ b/share/mk/bsd.init.mk @@ -8,8 +8,8 @@ .if !target(____) ____: -.sinclude "local.init.mk" .include +.sinclude "local.init.mk" .if exists(${.CURDIR}/../Makefile.inc) .include "${.CURDIR}/../Makefile.inc" .endif From 0244ab1f26bcc9c4a4c02ff1ab5d01bf230d823f Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 14:58:48 +0000 Subject: [PATCH 160/228] Use _LIBDIR in STAGE_LIBDIR so we DTRT for PRIVATE libs. We now use SYSROOT and (for now) non-shared toolchain when building for host. --- share/mk/local.sys.mk | 32 +++++++++++++------------------- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index 3ade230909c2..e98e108847ca 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -4,6 +4,7 @@ WITH_INSTALL_AS_USER= yes SRCCONF:= ${.PARSEDIR}/src.conf # ensure we are self contained __MAKE_CONF:= ${SRCCONF} +.-include "src.conf" # some handy macros _this = ${.PARSEDIR:tA}/${.PARSEFILE} @@ -41,9 +42,10 @@ OBJROOT ?= ${SB_OBJROOT} .if empty(SRCTOP) SRCTOP := ${_PARSEDIR:H:H} -.export SRCTOP OBJROOT ?= ${SRCTOP:H}/obj/ +OBJROOT := ${OBJROOT} .endif +.export OBJROOT SRCTOP # we need HOST_TARGET etc below. .include @@ -200,7 +202,7 @@ STAGE_OBJTOP:= ${STAGE_ROOT}/${STAGE_MACHINE} STAGE_COMMON_OBJTOP:= ${STAGE_ROOT}/common STAGE_HOST_OBJTOP:= ${STAGE_ROOT}/${HOST_TARGET} -STAGE_LIBDIR= ${STAGE_OBJTOP}${LIBDIR:U/lib} +STAGE_LIBDIR= ${STAGE_OBJTOP}${_LIBDIR:U${LIBDIR:U/lib}} # this is not the same as INCLUDEDIR STAGE_INCSDIR= ${STAGE_OBJTOP}${INCSDIR:U/include} # the target is usually an absolute path @@ -209,23 +211,8 @@ STAGE_SYMLINKS_DIR= ${STAGE_OBJTOP} .if ${MACHINE} == "host" && defined(EARLY_BUILD) # we literally want to build with host cc and includes .else -.ifndef WITH_SYSROOT -.if ${MACHINE} != "host" -CFLAGS_LAST+= -nostdinc -.endif -GCCVER?= 4.2 -CLANGVER?= 3.4 -CFLAGS_LAST+= -isystem ${STAGE_OBJTOP}/usr/include -I${STAGE_OBJTOP}/usr/include -CFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} -LDFLAGS_LAST+= -B${STAGE_LIBDIR} -L${STAGE_LIBDIR} -L${STAGE_OBJTOP}/lib -CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER} -I${STAGE_OBJTOP}/usr/include/c++/${GCCVER} -# backward doesn't get searched if -nostdinc -CXXFLAGS_LAST += -isystem ${STAGE_OBJTOP}/usr/include/c++/${GCCVER}/backward -I${STAGE_OBJTOP}/usr/include/c++/${GCCVER}/backward -CFLAGS_LAST.clang += -isystem ${STAGE_OBJTOP}/usr/include/clang/${CLANGVER} -I${STAGE_OBJTOP}/usr/include/clang/${CLANGVER} -CXXFLAGS_LAST += ${CFLAGS_LAST.${COMPILER_TYPE}} -.else -# if ld suppored sysroot, this would suffice -CFLAGS_LAST+= --sysroot=${STAGE_OBJTOP} +.ifdef WITH_SYSROOT +SYSROOT?= ${STAGE_OBJTOP}/ .endif LDFLAGS_LAST+= -Wl,-rpath-link,${STAGE_LIBDIR} STAGED_INCLUDE_DIR= ${STAGE_OBJTOP}/usr/include @@ -299,6 +286,9 @@ TRACER= ${TIME_STAMP} ${AnEmptyVar} .endif # toolchains can be a pain - especially bootstrappping them +.if ${MACHINE} == "host" +MK_SHARED_TOOLCHAIN= no +.endif .ifdef WITH_TOOLSDIR TOOLSDIR?= ${HOST_OBJTOP}/tools .elif defined(STAGE_HOST_OBJTOP) && exists(${STAGE_HOST_OBJTOP}/usr/bin) @@ -307,6 +297,10 @@ TOOLSDIR?= ${STAGE_HOST_OBJTOP} .if ${.MAKE.LEVEL} == 0 && exists(${TOOLSDIR}/usr/bin) PATH:= ${PATH:S,:, ,g:@d@${exists(${TOOLSDIR}$d):?${TOOLSDIR}$d:}@:ts:}:${PATH} .export PATH +.if exists(${TOOLSDIR}/usr/bin/cc) +HOST_CC?= ${TOOLSDIR}/usr/bin/cc +.export HOST_CC +.endif .endif .endif # bmake From c65ae8f9440df5554199df4c3fbbe107edbd7cc7 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 15:00:04 +0000 Subject: [PATCH 161/228] There are a few libs we need to build for host. Handle more optional dependencies. --- share/mk/local.dirdeps.mk | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index 15b3977666c5..c9c089a38961 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -25,7 +25,11 @@ M_dep_qual_fixes += C;($m),[^/.,]*$$;\1; #.info M_dep_qual_fixes=${M_dep_qual_fixes} # we want to supress these dependencies for host tools # but some libs are sadly needed. -_need_host_libs= lib/libdwarf +_need_host_libs= \ + lib/libc++ \ + lib/libcxxrt \ + lib/libdwarf \ + N_host_libs:= ${cd ${SRCTOP} && echo lib/lib*:L:sh:${_need_host_libs:${M_ListToSkip}}:${M_ListToSkip}} DIRDEPS_FILTER.host = \ ${N_host_libs} \ @@ -36,17 +40,30 @@ DIRDEPS_FILTER.host = \ Ngnu/lib/lib[a-r]* \ +DIRDEPS_FILTER+= \ + ${DIRDEPS_FILTER.xtras:U} +.endif + +# reset this each time +DIRDEPS_FILTER.xtras= +.if ${DEP_MACHINE:Npkgs*} != "" +DIRDEPS_FILTER.xtras+= Nusr.bin/clang/clang.host .endif .if ${DEP_MACHINE} != "host" # this is how we can handle optional dependencies -.if ${MK_SSP:Uno} != "no" && ${DEP_RELDIR:U${RELDIR}} == "lib/libc" +.if ${DEP_RELDIR} == "lib/libc" +DIRDEPS += lib/libc_nonshared +.if ${MK_SSP:Uno} != "no" DIRDEPS += gnu/lib/libssp/libssp_nonshared .endif +.else +DIRDEPS_FILTER.xtras+= Nlib/libc_nonshared +.endif # some optional things -.if ${MK_CTF} == "yes" && ${DEP_RELDIR:U${RELDIR}:Mcddl/usr.bin/ctf*} == "" +.if ${MK_CTF} == "yes" && ${DEP_RELDIR:Mcddl/usr.bin/ctf*} == "" DIRDEPS += \ cddl/usr.bin/ctfconvert.host \ cddl/usr.bin/ctfmerge.host @@ -54,8 +71,12 @@ DIRDEPS += \ .endif +.if ${MK_CLANG} == "yes" && ${DEP_RELDIR:Nlib/clang/lib*:Nlib/libc*} == "" +DIRDEPS+= lib/clang/include +.endif + # we need pkgs/pseudo/stage to prep the stage tree -.if ${DEP_RELDIR:U${RELDIR}} != "pkgs/pseudo/stage" +.if ${DEP_RELDIR} != "pkgs/pseudo/stage" DIRDEPS += pkgs/pseudo/stage .endif From 5633315ba3f391a941d9f5acc0c8118b0c9456fe Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 15:00:30 +0000 Subject: [PATCH 162/228] Suppress optional dependencies --- share/mk/local.gendirdeps.mk | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/share/mk/local.gendirdeps.mk b/share/mk/local.gendirdeps.mk index 28b589daf994..ff36d97a836e 100644 --- a/share/mk/local.gendirdeps.mk +++ b/share/mk/local.gendirdeps.mk @@ -3,7 +3,17 @@ GENDIRDEPS_FILTER+= \ Ngnu/lib/libssp/libssp_nonshared \ Ncddl/usr.bin/ctf* \ - Npkgs/pseudo/stage* + Nlib/clang/include \ + Nlib/libc_nonshared \ + Npkgs/pseudo/stage* \ + Ntools/* + +.if ${RELDIR:Mpkgs*} == "" +GENDIRDEPS_FILTER+= \ + Nusr.bin/clang/clang.host \ + Ngnu/usr.bin/cc* \ + +.endif # gendirdeps.mk will turn _{VAR} into ${VAR} which keeps this simple # order of this list matters! From f44c3559243a04947308a7c1d923fa4ffa085369 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 15:01:39 +0000 Subject: [PATCH 163/228] Handle bootstrapping for host --- lib/clang/clang.build.mk | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/lib/clang/clang.build.mk b/lib/clang/clang.build.mk index 27c0ca068785..f60ec6217545 100644 --- a/lib/clang/clang.build.mk +++ b/lib/clang/clang.build.mk @@ -40,9 +40,18 @@ CXXFLAGS+= -fno-exceptions -fno-rtti .PATH: ${LLVM_SRCS}/${SRCDIR} +.if ${MACHINE} == "host" && defined(EARLY_BUILD) +.if !empty(LEGACY_TOOLS) && exists(${LEGACY_TOOLS}/usr/bin/tblgen) +TOOLSDIR= ${LEGACY_TOOLS} +.endif +.endif .if ${MK_STAGING} == "yes" -TBLGEN= ${STAGE_HOST_OBJTOP}/usr/bin/tblgen -CLANG_TBLGEN= ${STAGE_HOST_OBJTOP}/usr/bin/clang-tblgen +TOOLSDIR?= ${STAGE_HOST_OBJTOP} +.endif +TOOLSDIR?= +.if !empty(TOOLSDIR) +TBLGEN= ${TOOLSDIR}/usr/bin/tblgen +CLANG_TBLGEN= ${TOOLSDIR}/usr/bin/clang-tblgen .endif TBLGEN?= tblgen CLANG_TBLGEN?= clang-tblgen From 9ac5c14c93472b55f1a6e39814b12b4b2312a4b8 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 15:02:12 +0000 Subject: [PATCH 164/228] Pay attention to MK_SHARED_TOOLCHAIN --- usr.bin/clang/clang.prog.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/usr.bin/clang/clang.prog.mk b/usr.bin/clang/clang.prog.mk index 4cd1052d7de3..8d3f5362f39a 100644 --- a/usr.bin/clang/clang.prog.mk +++ b/usr.bin/clang/clang.prog.mk @@ -14,4 +14,9 @@ LDADD+= -lncurses BINDIR?= /usr/bin + +.if ${MK_SHARED_TOOLCHAIN} == "no" +NO_SHARED= yes +.endif + .include From 0a117278be74be04fce720e93277068203daa284 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 16:21:17 +0000 Subject: [PATCH 165/228] Actually avoid stage_includes target --- include/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/Makefile b/include/Makefile index 274dd2c4591f..b1ffc6fcb49e 100644 --- a/include/Makefile +++ b/include/Makefile @@ -130,7 +130,7 @@ NO_STAGE_INCLUDES= .if make(all) DESTDIR= ${STAGE_OBJTOP} -all: stage_includes +all: stage_include installincludes: buildincludes buildincludes: stage_prep @@ -138,7 +138,7 @@ stage_prep: @mkdir -p ${DESTDIR}${INCLUDEDIR} @touch $@ -stage_includes: .dirdep installincludes +stage_include: .dirdep installincludes @touch $@ .endif .endif From 8a9439c5edafde10606f2c38ad004a4a0d989655 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 17:50:23 +0000 Subject: [PATCH 166/228] Use Makefile.depend.host for bootstrap-tools so it automatically builds for host --- pkgs/Makefile | 26 ++++++++++++++++--- .../{Makefile.depend => Makefile.depend.host} | 0 2 files changed, 22 insertions(+), 4 deletions(-) rename pkgs/pseudo/bootstrap-tools/{Makefile.depend => Makefile.depend.host} (100%) diff --git a/pkgs/Makefile b/pkgs/Makefile index 64a77046a796..bf2a30036c17 100644 --- a/pkgs/Makefile +++ b/pkgs/Makefile @@ -60,8 +60,9 @@ SHIPDIR = no .else +all_machine_list = ${ALL_MACHINE_LIST} host common .if defined(ALL_MACHINES) -DIRDEPS := ${DIRDEPS:O:u:@d@${ALL_MACHINE_LIST:O:u:@m@${exists(${SRCTOP}/$d/${.MAKE.DEPENDFILE:T:R}.$m):?$d.$m:}@}@} +DIRDEPS := ${DIRDEPS:O:u:@d@${all_machine_list:O:u:@m@${exists(${SRCTOP}/$d/${.MAKE.DEPENDFILE_PREFIX:T}.$m):?$d.$m:}@}@} .undef ALL_MACHINES PKG_MACHINE_LIST ?= ${DIRDEPS:E:O:u} .elif defined(HOST_MACHINE) && ${MACHINE} == ${HOST_MACHINE} @@ -69,10 +70,9 @@ PKG_MACHINE_LIST ?= ${DIRDEPS:E:O:u} # some packages only support one machine which may not be ${MACHINE} # some support multiple, in which case unless ALL_MACHINES is defined # we only want ${MACHINE} -plain := ${DIRDEPS:@d@${exists(${SRCTOP}/$d/${.MAKE.DEPENDFILE:T:R}):?$d:}@} +plain := ${DIRDEPS:@d@${exists(${SRCTOP}/$d/${.MAKE.DEPENDFILE_PREFIX:T}):?$d:}@} .if ${plain} != ${DIRDEPS} -all_machine_list = ${ALL_MACHINE_LIST} host -qual := ${DIRDEPS:${plain:${M_ListToSkip}}:@d@${all_machine_list:O:u:@m@${exists(${SRCTOP}/$d/${.MAKE.DEPENDFILE:T:R}.$m):?$d.$m:}@}@} +qual := ${DIRDEPS:${plain:${M_ListToSkip}}:@d@${all_machine_list:O:u:@m@${exists(${SRCTOP}/$d/${.MAKE.DEPENDFILE_PREFIX:T}.$m):?$d.$m:}@}@} DIRDEPS := ${plain} ${qual} PKG_MACHINE_LIST ?= ${MACHINE} ${qual:E:O:u} .endif @@ -88,6 +88,24 @@ PKG_MACHINE_LIST := ${PKG_MACHINE_LIST} .endif .endif +# we don't use DIRDEPS_FILTER, since we only want it to +# apply to this initial list +.if !empty(REQUESTED_MACHINE) && !empty(DIRDEPS) +# this is a variant of the logic above, we want plain +# but need to filter the qualified DIRDEPS to REQUESTED_MACHINE +plain := ${DIRDEPS:@d@${exists(${SRCTOP}/$d/${.MAKE.DEPENDFILE_PREFIX:T}):?$d:}@} +.if ${plain} != ${DIRDEPS} +qual := ${DIRDEPS:${plain:${M_ListToSkip}}:M*.${REQUESTED_MACHINE}} +.if empty(qual) +qual := ${DIRDEPS:@d@${exists(${SRCTOP}/$d/${.MAKE.DEPENDFILE:T}):?$d.${.MAKE.DEPENDFILE:E}:}@} +.endif +DIRDEPS := ${plain} ${qual} +.endif +.if empty(DIRDEPS) +.error ${REQUESTED_MACHINE} is not appropriate for ${DEP_RELDIR:T} +.endif +.endif + .if !empty(build_options) build_options := ${build_options:O:u} .for v in ${build_options} diff --git a/pkgs/pseudo/bootstrap-tools/Makefile.depend b/pkgs/pseudo/bootstrap-tools/Makefile.depend.host similarity index 100% rename from pkgs/pseudo/bootstrap-tools/Makefile.depend rename to pkgs/pseudo/bootstrap-tools/Makefile.depend.host From f7df4ea864339c1c978ec3243814a44d74037d4d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 17:50:57 +0000 Subject: [PATCH 167/228] Provide HOST_MACHINE --- share/mk/host-target.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/mk/host-target.mk b/share/mk/host-target.mk index c6d4562bf15a..84308608499f 100644 --- a/share/mk/host-target.mk +++ b/share/mk/host-target.mk @@ -18,6 +18,10 @@ _HOST_ARCH != uname -m .endif .export _HOST_ARCH .endif +.if !defined(HOST_MACHINE) +HOST_MACHINE != uname -m +.export HOST_MACHINE +.endif HOST_OSMAJOR := ${_HOST_OSREL:C/[^0-9].*//} HOST_OSTYPE := ${_HOST_OSNAME}-${_HOST_OSREL:C/\([^\)]*\)//}-${_HOST_ARCH} From dc8c6c5c08cb5b4ff1721b9b449858b14a5c7f28 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 16 May 2014 17:57:14 +0000 Subject: [PATCH 168/228] Ensure clang-tblgen in TOOLSDIR --- lib/clang/clang.build.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/clang/clang.build.mk b/lib/clang/clang.build.mk index f60ec6217545..c9d17982f690 100644 --- a/lib/clang/clang.build.mk +++ b/lib/clang/clang.build.mk @@ -49,7 +49,7 @@ TOOLSDIR= ${LEGACY_TOOLS} TOOLSDIR?= ${STAGE_HOST_OBJTOP} .endif TOOLSDIR?= -.if !empty(TOOLSDIR) +.if !empty(TOOLSDIR) && exists(${TOOLSDIR}/usr/bin/clang-tblgen) TBLGEN= ${TOOLSDIR}/usr/bin/tblgen CLANG_TBLGEN= ${TOOLSDIR}/usr/bin/clang-tblgen .endif From c9e3031a0b604173dd35c8d36569b586d5539b2c Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 17 May 2014 03:03:17 +0000 Subject: [PATCH 169/228] New dependencies --- contrib/bmake/lst.h | 2 + contrib/bmake/lst.lib/lstEnQueue.c | 11 ++ contrib/bmake/make.c | 2 +- contrib/bmake/make.h | 1 + contrib/bmake/meta.c | 11 +- contrib/bmake/parse.c | 2 + contrib/bmake/var.c | 22 +++- lib/clang/libllvmoption/Makefile.depend | 18 +++ .../libllvmpowerpcasmparser/Makefile.depend | 25 +++++ .../libllvmsparcasmparser/Makefile.depend | 25 +++++ lib/clang/libllvmsparccodegen/Makefile.depend | 104 ++++++++++++++++++ lib/clang/libllvmsparcdesc/Makefile.depend | 44 ++++++++ .../libllvmsparcdisassembler/Makefile.depend | 25 +++++ lib/clang/libllvmsparcinfo/Makefile.depend | 23 ++++ .../libllvmsparcinstprinter/Makefile.depend | 25 +++++ lib/libucl/Makefile.depend | 21 ++++ share/info/Makefile.depend | 12 ++ share/sendmail/Makefile.depend | 12 ++ tools/build/Makefile.depend | 12 ++ usr.bin/bmake/Makefile.inc | 2 +- usr.sbin/nmtree/Makefile.depend | 15 +++ 21 files changed, 406 insertions(+), 8 deletions(-) create mode 100644 lib/clang/libllvmoption/Makefile.depend create mode 100644 lib/clang/libllvmpowerpcasmparser/Makefile.depend create mode 100644 lib/clang/libllvmsparcasmparser/Makefile.depend create mode 100644 lib/clang/libllvmsparccodegen/Makefile.depend create mode 100644 lib/clang/libllvmsparcdesc/Makefile.depend create mode 100644 lib/clang/libllvmsparcdisassembler/Makefile.depend create mode 100644 lib/clang/libllvmsparcinfo/Makefile.depend create mode 100644 lib/clang/libllvmsparcinstprinter/Makefile.depend create mode 100644 lib/libucl/Makefile.depend create mode 100644 share/info/Makefile.depend create mode 100644 share/sendmail/Makefile.depend create mode 100644 tools/build/Makefile.depend create mode 100644 usr.sbin/nmtree/Makefile.depend diff --git a/contrib/bmake/lst.h b/contrib/bmake/lst.h index e0674071a98f..de6b0004c1d7 100644 --- a/contrib/bmake/lst.h +++ b/contrib/bmake/lst.h @@ -183,6 +183,8 @@ void Lst_Close(Lst); */ /* Place an element at tail of queue */ ReturnStatus Lst_EnQueue(Lst, void *); +/* Same but only if not on list */ +ReturnStatus Lst_EnQueueOnce(Lst, void *); /* Remove an element from head of queue */ void *Lst_DeQueue(Lst); diff --git a/contrib/bmake/lst.lib/lstEnQueue.c b/contrib/bmake/lst.lib/lstEnQueue.c index be386c91a512..94523deada7b 100644 --- a/contrib/bmake/lst.lib/lstEnQueue.c +++ b/contrib/bmake/lst.lib/lstEnQueue.c @@ -76,3 +76,14 @@ Lst_EnQueue(Lst l, void *d) return (Lst_InsertAfter(l, Lst_Last(l), d)); } +ReturnStatus +Lst_EnQueueOnce(Lst l, void *d) +{ + if (LstValid (l) == FALSE) { + return (FAILURE); + } + + if (Lst_Member(l, d)) + return (SUCCESS); + return (Lst_InsertAfter(l, Lst_Last(l), d)); +} diff --git a/contrib/bmake/make.c b/contrib/bmake/make.c index 7905f8c1910c..6f4ced076422 100644 --- a/contrib/bmake/make.c +++ b/contrib/bmake/make.c @@ -378,7 +378,7 @@ MakeAddChild(void *gnp, void *lp) if (DEBUG(MAKE)) fprintf(debug_file, "MakeAddChild: need to examine %s%s\n", gn->name, gn->cohort_num); - (void)Lst_EnQueue(l, gn); + (void)Lst_EnQueueOnce(l, gn); } return (0); } diff --git a/contrib/bmake/make.h b/contrib/bmake/make.h index 7579f6214304..b2c9e4dc06d9 100644 --- a/contrib/bmake/make.h +++ b/contrib/bmake/make.h @@ -289,6 +289,7 @@ typedef struct GNode { #define OP_NOMETA 0x00080000 /* .NOMETA do not create a .meta file */ #define OP_META 0x00100000 /* .META we _do_ want a .meta file */ #define OP_NOMETA_CMP 0x00200000 /* Do not compare commands in .meta file */ +#define OP_LSTAT 0x00400000 /* Use lstat rather that stat */ /* Attributes applied by PMake */ #define OP_TRANSFORM 0x80000000 /* The node is a transformation rule */ #define OP_MEMBER 0x40000000 /* Target is a member of an archive */ diff --git a/contrib/bmake/meta.c b/contrib/bmake/meta.c index 3ec0bdca5c6e..ac0dcd5be0e5 100644 --- a/contrib/bmake/meta.c +++ b/contrib/bmake/meta.c @@ -867,6 +867,15 @@ string_match(const void *p, const void *q) *ep = '\0'; \ } +static int +gn_stat(GNode *gn, const char *path, struct stat *sb) +{ + if (gn->type & OP_LSTAT) { + return lstat(path, sb); + } + return stat(path, sb); +} + Boolean meta_oodate(GNode *gn, Boolean oodate) { @@ -1220,7 +1229,7 @@ meta_oodate(GNode *gn, Boolean oodate) if (DEBUG(META)) fprintf(debug_file, "%s: %d: looking for: %s\n", fname, lineno, *sdp); #endif - if (stat(*sdp, &fs) == 0) { + if (gn_stat(gn, *sdp, &fs) == 0) { found = 1; p = *sdp; } diff --git a/contrib/bmake/parse.c b/contrib/bmake/parse.c index ac51abfbab19..7314da66237c 100644 --- a/contrib/bmake/parse.c +++ b/contrib/bmake/parse.c @@ -190,6 +190,7 @@ typedef enum { Includes, /* .INCLUDES */ Interrupt, /* .INTERRUPT */ Libs, /* .LIBS */ + Lstat, /* .LSTAT */ Meta, /* .META */ MFlags, /* .MFLAGS or .MAKEFLAGS */ Main, /* .MAIN and we don't have anything user-specified to @@ -310,6 +311,7 @@ static const struct { { ".INVISIBLE", Attribute, OP_INVISIBLE }, { ".JOIN", Attribute, OP_JOIN }, { ".LIBS", Libs, 0 }, +{ ".LSTAT", Lstat, OP_LSTAT }, { ".MADE", Attribute, OP_MADE }, { ".MAIN", Main, 0 }, { ".MAKE", Attribute, OP_MAKE }, diff --git a/contrib/bmake/var.c b/contrib/bmake/var.c index dd911f92bb4e..4ee8af1411b3 100644 --- a/contrib/bmake/var.c +++ b/contrib/bmake/var.c @@ -3705,6 +3705,7 @@ Var_Parse(const char *str, GNode *ctxt, Boolean errnum, int *lengthPtr, } } else { Buffer buf; /* Holds the variable name */ + int depth = 1; endc = startc == PROPEN ? PRCLOSE : BRCLOSE; Buf_Init(&buf, 0); @@ -3712,10 +3713,21 @@ Var_Parse(const char *str, GNode *ctxt, Boolean errnum, int *lengthPtr, /* * Skip to the end character or a colon, whichever comes first. */ - for (tstr = str + 2; - *tstr != '\0' && *tstr != endc && *tstr != ':'; - tstr++) + for (tstr = str + 2; *tstr != '\0'; tstr++) { + /* + * Track depth so we can spot parse errors. + */ + if (*tstr == startc) { + depth++; + } + if (*tstr == endc) { + if (--depth == 0) + break; + } + if (depth == 1 && *tstr == ':') { + break; + } /* * A variable inside a variable, expand */ @@ -3735,7 +3747,7 @@ Var_Parse(const char *str, GNode *ctxt, Boolean errnum, int *lengthPtr, } if (*tstr == ':') { haveModifier = TRUE; - } else if (*tstr != '\0') { + } else if (*tstr == endc) { haveModifier = FALSE; } else { /* @@ -4085,7 +4097,7 @@ Var_Subst(const char *var, const char *str, GNode *ctxt, Boolean undefErr) */ if (oldVars) { str += length; - } else if (undefErr) { + } else if (undefErr || val == var_Error) { /* * If variable is undefined, complain and skip the * variable. The complaint will stop us from doing anything diff --git a/lib/clang/libllvmoption/Makefile.depend b/lib/clang/libllvmoption/Makefile.depend new file mode 100644 index 000000000000..ff10d3df73aa --- /dev/null +++ b/lib/clang/libllvmoption/Makefile.depend @@ -0,0 +1,18 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/clang/include \ + lib/libc++ \ + lib/msun \ + tools/usr/bin.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/clang/libllvmpowerpcasmparser/Makefile.depend b/lib/clang/libllvmpowerpcasmparser/Makefile.depend new file mode 100644 index 000000000000..194691fed594 --- /dev/null +++ b/lib/clang/libllvmpowerpcasmparser/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libc++ \ + lib/msun \ + usr.bin/clang/tblgen.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +PPCAsmParser.o: PPCGenAsmMatcher.inc.h +PPCAsmParser.o: PPCGenInstrInfo.inc.h +PPCAsmParser.o: PPCGenRegisterInfo.inc.h +PPCAsmParser.o: PPCGenSubtargetInfo.inc.h +PPCAsmParser.po: PPCGenAsmMatcher.inc.h +PPCAsmParser.po: PPCGenInstrInfo.inc.h +PPCAsmParser.po: PPCGenRegisterInfo.inc.h +PPCAsmParser.po: PPCGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmsparcasmparser/Makefile.depend b/lib/clang/libllvmsparcasmparser/Makefile.depend new file mode 100644 index 000000000000..63286f919113 --- /dev/null +++ b/lib/clang/libllvmsparcasmparser/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libc++ \ + lib/msun \ + usr.bin/clang/tblgen.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +SparcAsmParser.o: SparcGenAsmMatcher.inc.h +SparcAsmParser.o: SparcGenInstrInfo.inc.h +SparcAsmParser.o: SparcGenRegisterInfo.inc.h +SparcAsmParser.o: SparcGenSubtargetInfo.inc.h +SparcAsmParser.po: SparcGenAsmMatcher.inc.h +SparcAsmParser.po: SparcGenInstrInfo.inc.h +SparcAsmParser.po: SparcGenRegisterInfo.inc.h +SparcAsmParser.po: SparcGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmsparccodegen/Makefile.depend b/lib/clang/libllvmsparccodegen/Makefile.depend new file mode 100644 index 000000000000..ce49f971ecc6 --- /dev/null +++ b/lib/clang/libllvmsparccodegen/Makefile.depend @@ -0,0 +1,104 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libc++ \ + lib/msun \ + tools/usr/bin.host \ + usr.bin/clang/tblgen.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +DelaySlotFiller.o: SparcGenInstrInfo.inc.h +DelaySlotFiller.o: SparcGenRegisterInfo.inc.h +DelaySlotFiller.o: SparcGenSubtargetInfo.inc.h +DelaySlotFiller.po: SparcGenInstrInfo.inc.h +DelaySlotFiller.po: SparcGenRegisterInfo.inc.h +DelaySlotFiller.po: SparcGenSubtargetInfo.inc.h +SparcAsmPrinter.o: SparcGenInstrInfo.inc.h +SparcAsmPrinter.o: SparcGenRegisterInfo.inc.h +SparcAsmPrinter.o: SparcGenSubtargetInfo.inc.h +SparcAsmPrinter.po: SparcGenInstrInfo.inc.h +SparcAsmPrinter.po: SparcGenRegisterInfo.inc.h +SparcAsmPrinter.po: SparcGenSubtargetInfo.inc.h +SparcCodeEmitter.o: SparcGenCodeEmitter.inc.h +SparcCodeEmitter.o: SparcGenInstrInfo.inc.h +SparcCodeEmitter.o: SparcGenRegisterInfo.inc.h +SparcCodeEmitter.o: SparcGenSubtargetInfo.inc.h +SparcCodeEmitter.po: SparcGenCodeEmitter.inc.h +SparcCodeEmitter.po: SparcGenInstrInfo.inc.h +SparcCodeEmitter.po: SparcGenRegisterInfo.inc.h +SparcCodeEmitter.po: SparcGenSubtargetInfo.inc.h +SparcFrameLowering.o: SparcGenInstrInfo.inc.h +SparcFrameLowering.o: SparcGenRegisterInfo.inc.h +SparcFrameLowering.o: SparcGenSubtargetInfo.inc.h +SparcFrameLowering.po: SparcGenInstrInfo.inc.h +SparcFrameLowering.po: SparcGenRegisterInfo.inc.h +SparcFrameLowering.po: SparcGenSubtargetInfo.inc.h +SparcISelDAGToDAG.o: Intrinsics.inc.h +SparcISelDAGToDAG.o: SparcGenDAGISel.inc.h +SparcISelDAGToDAG.o: SparcGenInstrInfo.inc.h +SparcISelDAGToDAG.o: SparcGenRegisterInfo.inc.h +SparcISelDAGToDAG.o: SparcGenSubtargetInfo.inc.h +SparcISelDAGToDAG.po: Intrinsics.inc.h +SparcISelDAGToDAG.po: SparcGenDAGISel.inc.h +SparcISelDAGToDAG.po: SparcGenInstrInfo.inc.h +SparcISelDAGToDAG.po: SparcGenRegisterInfo.inc.h +SparcISelDAGToDAG.po: SparcGenSubtargetInfo.inc.h +SparcISelLowering.o: SparcGenCallingConv.inc.h +SparcISelLowering.o: SparcGenInstrInfo.inc.h +SparcISelLowering.o: SparcGenRegisterInfo.inc.h +SparcISelLowering.o: SparcGenSubtargetInfo.inc.h +SparcISelLowering.po: SparcGenCallingConv.inc.h +SparcISelLowering.po: SparcGenInstrInfo.inc.h +SparcISelLowering.po: SparcGenRegisterInfo.inc.h +SparcISelLowering.po: SparcGenSubtargetInfo.inc.h +SparcInstrInfo.o: SparcGenInstrInfo.inc.h +SparcInstrInfo.o: SparcGenRegisterInfo.inc.h +SparcInstrInfo.o: SparcGenSubtargetInfo.inc.h +SparcInstrInfo.po: SparcGenInstrInfo.inc.h +SparcInstrInfo.po: SparcGenRegisterInfo.inc.h +SparcInstrInfo.po: SparcGenSubtargetInfo.inc.h +SparcJITInfo.o: SparcGenInstrInfo.inc.h +SparcJITInfo.o: SparcGenRegisterInfo.inc.h +SparcJITInfo.o: SparcGenSubtargetInfo.inc.h +SparcJITInfo.po: SparcGenInstrInfo.inc.h +SparcJITInfo.po: SparcGenRegisterInfo.inc.h +SparcJITInfo.po: SparcGenSubtargetInfo.inc.h +SparcMCInstLower.o: SparcGenInstrInfo.inc.h +SparcMCInstLower.o: SparcGenRegisterInfo.inc.h +SparcMCInstLower.o: SparcGenSubtargetInfo.inc.h +SparcMCInstLower.po: SparcGenInstrInfo.inc.h +SparcMCInstLower.po: SparcGenRegisterInfo.inc.h +SparcMCInstLower.po: SparcGenSubtargetInfo.inc.h +SparcRegisterInfo.o: SparcGenInstrInfo.inc.h +SparcRegisterInfo.o: SparcGenRegisterInfo.inc.h +SparcRegisterInfo.o: SparcGenSubtargetInfo.inc.h +SparcRegisterInfo.po: SparcGenInstrInfo.inc.h +SparcRegisterInfo.po: SparcGenRegisterInfo.inc.h +SparcRegisterInfo.po: SparcGenSubtargetInfo.inc.h +SparcSelectionDAGInfo.o: SparcGenInstrInfo.inc.h +SparcSelectionDAGInfo.o: SparcGenRegisterInfo.inc.h +SparcSelectionDAGInfo.o: SparcGenSubtargetInfo.inc.h +SparcSelectionDAGInfo.po: SparcGenInstrInfo.inc.h +SparcSelectionDAGInfo.po: SparcGenRegisterInfo.inc.h +SparcSelectionDAGInfo.po: SparcGenSubtargetInfo.inc.h +SparcSubtarget.o: SparcGenInstrInfo.inc.h +SparcSubtarget.o: SparcGenRegisterInfo.inc.h +SparcSubtarget.o: SparcGenSubtargetInfo.inc.h +SparcSubtarget.po: SparcGenInstrInfo.inc.h +SparcSubtarget.po: SparcGenRegisterInfo.inc.h +SparcSubtarget.po: SparcGenSubtargetInfo.inc.h +SparcTargetMachine.o: SparcGenInstrInfo.inc.h +SparcTargetMachine.o: SparcGenRegisterInfo.inc.h +SparcTargetMachine.o: SparcGenSubtargetInfo.inc.h +SparcTargetMachine.po: SparcGenInstrInfo.inc.h +SparcTargetMachine.po: SparcGenRegisterInfo.inc.h +SparcTargetMachine.po: SparcGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmsparcdesc/Makefile.depend b/lib/clang/libllvmsparcdesc/Makefile.depend new file mode 100644 index 000000000000..940c6310de9a --- /dev/null +++ b/lib/clang/libllvmsparcdesc/Makefile.depend @@ -0,0 +1,44 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libc++ \ + lib/msun \ + tools/usr/bin.host \ + usr.bin/clang/tblgen.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +SparcAsmBackend.o: SparcGenInstrInfo.inc.h +SparcAsmBackend.o: SparcGenRegisterInfo.inc.h +SparcAsmBackend.o: SparcGenSubtargetInfo.inc.h +SparcAsmBackend.po: SparcGenInstrInfo.inc.h +SparcAsmBackend.po: SparcGenRegisterInfo.inc.h +SparcAsmBackend.po: SparcGenSubtargetInfo.inc.h +SparcELFObjectWriter.o: SparcGenInstrInfo.inc.h +SparcELFObjectWriter.o: SparcGenRegisterInfo.inc.h +SparcELFObjectWriter.o: SparcGenSubtargetInfo.inc.h +SparcELFObjectWriter.po: SparcGenInstrInfo.inc.h +SparcELFObjectWriter.po: SparcGenRegisterInfo.inc.h +SparcELFObjectWriter.po: SparcGenSubtargetInfo.inc.h +SparcMCCodeEmitter.o: SparcGenInstrInfo.inc.h +SparcMCCodeEmitter.o: SparcGenMCCodeEmitter.inc.h +SparcMCCodeEmitter.o: SparcGenRegisterInfo.inc.h +SparcMCCodeEmitter.o: SparcGenSubtargetInfo.inc.h +SparcMCCodeEmitter.po: SparcGenInstrInfo.inc.h +SparcMCCodeEmitter.po: SparcGenMCCodeEmitter.inc.h +SparcMCCodeEmitter.po: SparcGenRegisterInfo.inc.h +SparcMCCodeEmitter.po: SparcGenSubtargetInfo.inc.h +SparcMCTargetDesc.o: SparcGenInstrInfo.inc.h +SparcMCTargetDesc.o: SparcGenRegisterInfo.inc.h +SparcMCTargetDesc.o: SparcGenSubtargetInfo.inc.h +SparcMCTargetDesc.po: SparcGenInstrInfo.inc.h +SparcMCTargetDesc.po: SparcGenRegisterInfo.inc.h +SparcMCTargetDesc.po: SparcGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmsparcdisassembler/Makefile.depend b/lib/clang/libllvmsparcdisassembler/Makefile.depend new file mode 100644 index 000000000000..e25131cd0a60 --- /dev/null +++ b/lib/clang/libllvmsparcdisassembler/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libc++ \ + lib/msun \ + usr.bin/clang/tblgen.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +SparcDisassembler.o: SparcGenDisassemblerTables.inc.h +SparcDisassembler.o: SparcGenInstrInfo.inc.h +SparcDisassembler.o: SparcGenRegisterInfo.inc.h +SparcDisassembler.o: SparcGenSubtargetInfo.inc.h +SparcDisassembler.po: SparcGenDisassemblerTables.inc.h +SparcDisassembler.po: SparcGenInstrInfo.inc.h +SparcDisassembler.po: SparcGenRegisterInfo.inc.h +SparcDisassembler.po: SparcGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmsparcinfo/Makefile.depend b/lib/clang/libllvmsparcinfo/Makefile.depend new file mode 100644 index 000000000000..f5a3bc975e49 --- /dev/null +++ b/lib/clang/libllvmsparcinfo/Makefile.depend @@ -0,0 +1,23 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libc++ \ + lib/msun \ + usr.bin/clang/tblgen.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +SparcTargetInfo.o: SparcGenInstrInfo.inc.h +SparcTargetInfo.o: SparcGenRegisterInfo.inc.h +SparcTargetInfo.o: SparcGenSubtargetInfo.inc.h +SparcTargetInfo.po: SparcGenInstrInfo.inc.h +SparcTargetInfo.po: SparcGenRegisterInfo.inc.h +SparcTargetInfo.po: SparcGenSubtargetInfo.inc.h +.endif diff --git a/lib/clang/libllvmsparcinstprinter/Makefile.depend b/lib/clang/libllvmsparcinstprinter/Makefile.depend new file mode 100644 index 000000000000..411f0807c2b1 --- /dev/null +++ b/lib/clang/libllvmsparcinstprinter/Makefile.depend @@ -0,0 +1,25 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + lib/libc++ \ + lib/msun \ + usr.bin/clang/tblgen.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +SparcInstPrinter.o: SparcGenAsmWriter.inc.h +SparcInstPrinter.o: SparcGenInstrInfo.inc.h +SparcInstPrinter.o: SparcGenRegisterInfo.inc.h +SparcInstPrinter.o: SparcGenSubtargetInfo.inc.h +SparcInstPrinter.po: SparcGenAsmWriter.inc.h +SparcInstPrinter.po: SparcGenInstrInfo.inc.h +SparcInstPrinter.po: SparcGenRegisterInfo.inc.h +SparcInstPrinter.po: SparcGenSubtargetInfo.inc.h +.endif diff --git a/lib/libucl/Makefile.depend b/lib/libucl/Makefile.depend new file mode 100644 index 000000000000..bee153c2a7af --- /dev/null +++ b/lib/libucl/Makefile.depend @@ -0,0 +1,21 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/msun \ + usr.bin/xinstall.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/info/Makefile.depend b/share/info/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/share/info/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/share/sendmail/Makefile.depend b/share/sendmail/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/share/sendmail/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/tools/build/Makefile.depend b/tools/build/Makefile.depend new file mode 100644 index 000000000000..57b7e10c3d71 --- /dev/null +++ b/tools/build/Makefile.depend @@ -0,0 +1,12 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/usr.bin/bmake/Makefile.inc b/usr.bin/bmake/Makefile.inc index 25f9a3a96b88..120cab488e0e 100644 --- a/usr.bin/bmake/Makefile.inc +++ b/usr.bin/bmake/Makefile.inc @@ -14,4 +14,4 @@ NO_SHARED?= YES .endif WARNS=3 -CFLAGS+= -DNO_PWD_OVERRIDE +CFLAGS+= -DNO_PWD_OVERRIDE ${DBG} diff --git a/usr.sbin/nmtree/Makefile.depend b/usr.sbin/nmtree/Makefile.depend new file mode 100644 index 000000000000..5e66545d6b94 --- /dev/null +++ b/usr.sbin/nmtree/Makefile.depend @@ -0,0 +1,15 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + tools/c/sjg/work/FreeBSD/projects-bmake/src/lib/libnetbsd.host \ + tools/legacy/usr/include.host \ + tools/legacy/usr/lib.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif From 7d46a6b75a72e04a705a25abd3411d7313dabba3 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 25 Jun 2014 00:19:58 +0000 Subject: [PATCH 170/228] export sanitized MAKESYSPATH in case .../ appears in default syspath. --- share/mk/local.sys.mk | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index e98e108847ca..cc1001a11b97 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -170,11 +170,17 @@ WITH_STAGING_PROG= yes PYTHON ?= /usr/local/bin/python .if ${.MAKE.LEVEL} == 0 -.if ${MAKESYSPATH:Uno:M*.../*} != "" -# make sure this is resolved -MAKESYSPATH:= ${MAKESYSPATH:S,:, ,g:C,\.\.\./.*,${_this:H},:ts:} +# just in case -m, MAKESYSPATH or our default has .../ +# export a sanitised version... +# first any -m* from command line, +# then any MAKESYSPATH and finally ${.PARSEDIR} +_makesyspath:= ${.MAKEFLAGS:tW:S/ -m / -m/g:tw:M-m*:S,^-m,,} \ + ${MAKESYSPATH:U} \ + ${.PARSEDIR} +# replace .../.* with ${.PARSEDIR}, not perfect but pretty close +MAKESYSPATH:= ${_makesyspath:S,:, ,g:C,^\.\.\./.*,${.PARSEDIR},:u:ts:} .export MAKESYSPATH -.endif + # this works best if share/mk is ready for it. BUILD_AT_LEVEL0= no # By default only MACHINE0 updates dependencies From 4bd681c15009007dea48e578ec6715ebf454f235 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 25 Jul 2014 20:44:04 +0000 Subject: [PATCH 171/228] Crude cross-build support thanks to clang --- share/mk/local.sys.mk | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index cc1001a11b97..8fe019561681 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -220,7 +220,7 @@ STAGE_SYMLINKS_DIR= ${STAGE_OBJTOP} .ifdef WITH_SYSROOT SYSROOT?= ${STAGE_OBJTOP}/ .endif -LDFLAGS_LAST+= -Wl,-rpath-link,${STAGE_LIBDIR} +LDFLAGS_LAST+= -Wl,-rpath-link -Wl,${STAGE_LIBDIR} STAGED_INCLUDE_DIR= ${STAGE_OBJTOP}/usr/include .endif .endif # EARLY_BUILD for host @@ -309,4 +309,16 @@ HOST_CC?= ${TOOLSDIR}/usr/bin/cc .endif .endif +.if ${MACHINE:Nhost:Ncommon} != "" && ${MACHINE} != ${HOST_MACHINE} +# cross-building +.if !defined(FREEBSD_REVISION) +FREEBSD_REVISION!= sed -n '/^REVISION=/{s,.*=,,;s,",,g;p; }' ${SRCTOP}/sys/conf/newvers.sh +.export FREEBSD_REVISION +.endif +CROSS_TARGET_FLAGS= -target ${MACHINE_ARCH}-unknown-freebsd${FREEBSD_REVISION} +CFLAGS+= ${CROSS_TARGET_FLAGS} +ACFLAGS+= ${CROSS_TARGET_FLAGS} +LDFLAGS+= -Wl,-m -Wl,elf_${MACHINE_ARCH}_fbsd +.endif + .endif # bmake From ffda191e301f128a62c152fde92b692548367fca Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 19 Aug 2014 06:37:33 +0000 Subject: [PATCH 172/228] After we finish using src/Makefile.inc1 to bootstrap legacy tools use it to build the toolchain we actually want. --- pkgs/pseudo/bootstrap-tools/Makefile | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/pkgs/pseudo/bootstrap-tools/Makefile b/pkgs/pseudo/bootstrap-tools/Makefile index 67fe13ed2e32..49fccde88661 100644 --- a/pkgs/pseudo/bootstrap-tools/Makefile +++ b/pkgs/pseudo/bootstrap-tools/Makefile @@ -1,9 +1,8 @@ # $FreeBSD$ # building clang is particularly tedious - so avoid re-inventing wheels -# the end result is -all: cross-tools build-tools +all: bootstrap-toolchain UPDATE_DEPENDFILE= no .export UPDATE_DEPENDFILE @@ -28,6 +27,7 @@ BSARGS= \ SSP_CFLAGS= \ MK_HTML=no MK_INFO=no NO_LINT=yes MK_MAN=no \ -DNO_PIC MK_PROFILE=no -DNO_SHARED \ + -DWITH_CLANG_BOOTSTRAP \ -DNO_CPU_CFLAGS -DNO_WARNS MK_CTF=no -DEARLY_BUILD MK_TESTS=no @@ -45,3 +45,22 @@ cross-tools: build-tools cross-tools build-tools bootstrap-tools: .MAKE .META ${BSENV} ${MAKE} -C ${SRCTOP} -f Makefile.inc1 ${BSARGS} $@ touch $@ + +# MAKELEVEL=0 so that dirdeps.mk does its thing +# LEGACY_TOOLS lets us use the bootstaped stuff above +# TARGET* is so that MK_CLANG gets set correctly. +BSTCENV= \ + MAKELEVEL=0 \ + MACHINE=host \ + LEGACY_TOOLS=${LEGACY_TOOLS} \ + TARGET=${HOST_MACHINE} \ + TARGET_ARCH=${HOST_MACHINE_ARCH} + +BSTCARGS= \ + ${BSARGS} \ + -DWITH_STAGING \ + -DWITH_TOOLSDIR + +# finally we build toolchain leveraging the above. +bootstrap-toolchain: .MAKE cross-tools + ${BSTCENV} ${MAKE} -C ${.CURDIR:H:H} ${BSTCARGS} toolchain From 29c34e9d2781cf25403647fb5af7d7ddb23be7e1 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 19 Nov 2014 00:44:21 +0000 Subject: [PATCH 173/228] fixed dep --- gnu/lib/csu/Makefile.depend | 1 - 1 file changed, 1 deletion(-) diff --git a/gnu/lib/csu/Makefile.depend b/gnu/lib/csu/Makefile.depend index 2c6edc6c2124..dc4c8629b6ea 100644 --- a/gnu/lib/csu/Makefile.depend +++ b/gnu/lib/csu/Makefile.depend @@ -3,7 +3,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - bin/cat.host \ include \ include/xlocale \ From cffbea9c9593177560c20ec6d945a3f6bd397273 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 19 Nov 2014 07:09:14 +0000 Subject: [PATCH 174/228] Include src.opts.mk since we don't include modules.inc here. --- lib/libpam/libpam/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/libpam/libpam/Makefile b/lib/libpam/libpam/Makefile index 7a425e0c29bf..c8f13c465393 100644 --- a/lib/libpam/libpam/Makefile +++ b/lib/libpam/libpam/Makefile @@ -176,6 +176,8 @@ ADD_HEADERS= security/pam_mod_misc.h INCS= ${HEADERS} ${ADD_HEADERS} INCSDIR= ${INCLUDEDIR}/security +.include + .if ${MK_TESTS} != "no" SUBDIR+= tests .endif From 287bbe2be592fba9db893291dd0e233a70daf17d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 19 Nov 2014 07:09:43 +0000 Subject: [PATCH 175/228] Use OBJTOP if defined --- share/mk/src.libnames.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/mk/src.libnames.mk b/share/mk/src.libnames.mk index 336ede11e3a6..d2dffca3236d 100644 --- a/share/mk/src.libnames.mk +++ b/share/mk/src.libnames.mk @@ -7,7 +7,11 @@ .error src.libnames.mk cannot be included directly. .endif +.if defined(OBJTOP) +ROOTOBJDIR= ${OBJTOP} +.else ROOTOBJDIR= ${.OBJDIR:S/${.CURDIR}//}${.MAKE.MAKEFILES:M*/src.libnames.mk:H:H:H} +.endif LIBATF_CDIR= ${ROOTOBJDIR}/lib/atf/libatf-c LDATF_C?= ${LIBATF_CDIR}/libatf-c.so From 488c975a1ff5af722f9a9c36f8d41ad90c45432e Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 19 Nov 2014 07:10:38 +0000 Subject: [PATCH 176/228] Updated/new dependencies --- bin/df/Makefile.depend | 1 + cddl/lib/libzfs/Makefile.depend | 2 ++ cddl/lib/libzpool/Makefile.depend | 3 +++ lib/libevent/Makefile.depend | 14 +++++++++++++ lib/libohash/Makefile.depend | 14 +++++++++++++ lib/libpam/modules/pam_chroot/Makefile.depend | 1 - lib/libpam/modules/pam_deny/Makefile.depend | 1 - lib/libpam/modules/pam_echo/Makefile.depend | 1 - lib/libpam/modules/pam_exec/Makefile.depend | 1 - .../modules/pam_ftpusers/Makefile.depend | 1 - lib/libpam/modules/pam_group/Makefile.depend | 1 - lib/libpam/modules/pam_guest/Makefile.depend | 1 - lib/libpam/modules/pam_krb5/Makefile.depend | 1 - lib/libpam/modules/pam_ksu/Makefile.depend | 1 - .../modules/pam_lastlog/Makefile.depend | 1 - .../modules/pam_login_access/Makefile.depend | 1 - .../modules/pam_nologin/Makefile.depend | 1 - lib/libpam/modules/pam_opie/Makefile.depend | 1 - .../modules/pam_opieaccess/Makefile.depend | 1 - .../modules/pam_passwdqc/Makefile.depend | 1 - lib/libpam/modules/pam_permit/Makefile.depend | 1 - lib/libpam/modules/pam_radius/Makefile.depend | 1 - lib/libpam/modules/pam_rhosts/Makefile.depend | 1 - lib/libpam/modules/pam_rootok/Makefile.depend | 1 - .../modules/pam_securetty/Makefile.depend | 1 - lib/libpam/modules/pam_self/Makefile.depend | 1 - lib/libpam/modules/pam_ssh/Makefile.depend | 1 - .../modules/pam_tacplus/Makefile.depend | 1 - lib/libpam/modules/pam_unix/Makefile.depend | 1 - lib/libxo/Makefile.depend | 20 +++++++++++++++++++ pkgs/pseudo/usr.sbin/Makefile.depend | 3 --- sbin/fsirand/Makefile.depend | 1 - sbin/ifconfig/Makefile.depend | 1 + usr.bin/bc/Makefile.depend | 1 - usr.bin/bluetooth/rfcomm_sppd/Makefile.depend | 1 + usr.bin/ftp/Makefile.depend | 1 - usr.bin/id/Makefile.depend | 1 - usr.bin/m4/Makefile.depend | 1 + usr.bin/w/Makefile.depend | 1 + usr.bin/wc/Makefile.depend | 1 + usr.sbin/acpi/iasl/Makefile.depend | 4 ++++ .../fifolog/fifolog_reader/Makefile.depend | 1 - .../fifolog/fifolog_writer/Makefile.depend | 1 - usr.sbin/gstat/Makefile.depend | 1 - usr.sbin/pkg/Makefile.depend | 1 - usr.sbin/wpa/wpa_cli/Makefile.depend | 2 -- 46 files changed, 63 insertions(+), 37 deletions(-) create mode 100644 lib/libevent/Makefile.depend create mode 100644 lib/libohash/Makefile.depend create mode 100644 lib/libxo/Makefile.depend diff --git a/bin/df/Makefile.depend b/bin/df/Makefile.depend index 78b235bef5b2..92ffb0f8eb8c 100644 --- a/bin/df/Makefile.depend +++ b/bin/df/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libutil \ + lib/libxo \ .include diff --git a/cddl/lib/libzfs/Makefile.depend b/cddl/lib/libzfs/Makefile.depend index c5db69640d09..11f311469919 100644 --- a/cddl/lib/libzfs/Makefile.depend +++ b/cddl/lib/libzfs/Makefile.depend @@ -6,6 +6,7 @@ DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ cddl/lib/libumem \ + cddl/lib/libuutil \ cddl/lib/libzfs_core \ gnu/lib/csu \ gnu/lib/libgcc \ @@ -14,6 +15,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libexpat \ lib/libgeom \ lib/libmd \ lib/libthr \ diff --git a/cddl/lib/libzpool/Makefile.depend b/cddl/lib/libzpool/Makefile.depend index 4ee502210e97..a08600061584 100644 --- a/cddl/lib/libzpool/Makefile.depend +++ b/cddl/lib/libzpool/Makefile.depend @@ -3,6 +3,9 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + cddl/lib/libavl \ + cddl/lib/libnvpair \ + cddl/lib/libumem \ gnu/lib/csu \ gnu/lib/libgcc \ include \ diff --git a/lib/libevent/Makefile.depend b/lib/libevent/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libevent/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libohash/Makefile.depend b/lib/libohash/Makefile.depend new file mode 100644 index 000000000000..639d45d8b9b0 --- /dev/null +++ b/lib/libohash/Makefile.depend @@ -0,0 +1,14 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + include \ + include/xlocale \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/lib/libpam/modules/pam_chroot/Makefile.depend b/lib/libpam/modules/pam_chroot/Makefile.depend index 9d521d074595..467741f6d1a9 100644 --- a/lib/libpam/modules/pam_chroot/Makefile.depend +++ b/lib/libpam/modules/pam_chroot/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_deny/Makefile.depend b/lib/libpam/modules/pam_deny/Makefile.depend index 223b0d0cb95d..7cedd5f867c7 100644 --- a/lib/libpam/modules/pam_deny/Makefile.depend +++ b/lib/libpam/modules/pam_deny/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_echo/Makefile.depend b/lib/libpam/modules/pam_echo/Makefile.depend index 9d521d074595..467741f6d1a9 100644 --- a/lib/libpam/modules/pam_echo/Makefile.depend +++ b/lib/libpam/modules/pam_echo/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_exec/Makefile.depend b/lib/libpam/modules/pam_exec/Makefile.depend index 9d521d074595..467741f6d1a9 100644 --- a/lib/libpam/modules/pam_exec/Makefile.depend +++ b/lib/libpam/modules/pam_exec/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_ftpusers/Makefile.depend b/lib/libpam/modules/pam_ftpusers/Makefile.depend index 9d521d074595..467741f6d1a9 100644 --- a/lib/libpam/modules/pam_ftpusers/Makefile.depend +++ b/lib/libpam/modules/pam_ftpusers/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_group/Makefile.depend b/lib/libpam/modules/pam_group/Makefile.depend index 9d521d074595..467741f6d1a9 100644 --- a/lib/libpam/modules/pam_group/Makefile.depend +++ b/lib/libpam/modules/pam_group/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_guest/Makefile.depend b/lib/libpam/modules/pam_guest/Makefile.depend index 9d521d074595..467741f6d1a9 100644 --- a/lib/libpam/modules/pam_guest/Makefile.depend +++ b/lib/libpam/modules/pam_guest/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_krb5/Makefile.depend b/lib/libpam/modules/pam_krb5/Makefile.depend index f6e886edbc48..41f51403d928 100644 --- a/lib/libpam/modules/pam_krb5/Makefile.depend +++ b/lib/libpam/modules/pam_krb5/Makefile.depend @@ -16,7 +16,6 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ - lib/libpam/libpam \ secure/lib/libcrypto \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_ksu/Makefile.depend b/lib/libpam/modules/pam_ksu/Makefile.depend index f6e886edbc48..41f51403d928 100644 --- a/lib/libpam/modules/pam_ksu/Makefile.depend +++ b/lib/libpam/modules/pam_ksu/Makefile.depend @@ -16,7 +16,6 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ - lib/libpam/libpam \ secure/lib/libcrypto \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_lastlog/Makefile.depend b/lib/libpam/modules/pam_lastlog/Makefile.depend index 9d521d074595..467741f6d1a9 100644 --- a/lib/libpam/modules/pam_lastlog/Makefile.depend +++ b/lib/libpam/modules/pam_lastlog/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_login_access/Makefile.depend b/lib/libpam/modules/pam_login_access/Makefile.depend index 9d521d074595..467741f6d1a9 100644 --- a/lib/libpam/modules/pam_login_access/Makefile.depend +++ b/lib/libpam/modules/pam_login_access/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_nologin/Makefile.depend b/lib/libpam/modules/pam_nologin/Makefile.depend index 0e5a16774bbd..074ac81cfb42 100644 --- a/lib/libpam/modules/pam_nologin/Makefile.depend +++ b/lib/libpam/modules/pam_nologin/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ lib/libutil \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_opie/Makefile.depend b/lib/libpam/modules/pam_opie/Makefile.depend index 1e75b4a902b0..f85cdc556e64 100644 --- a/lib/libpam/modules/pam_opie/Makefile.depend +++ b/lib/libpam/modules/pam_opie/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libopie \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_opieaccess/Makefile.depend b/lib/libpam/modules/pam_opieaccess/Makefile.depend index 7316349cd5b6..e39349a33731 100644 --- a/lib/libpam/modules/pam_opieaccess/Makefile.depend +++ b/lib/libpam/modules/pam_opieaccess/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libopie \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_passwdqc/Makefile.depend b/lib/libpam/modules/pam_passwdqc/Makefile.depend index 7cce822158bc..4d6419c099ed 100644 --- a/lib/libpam/modules/pam_passwdqc/Makefile.depend +++ b/lib/libpam/modules/pam_passwdqc/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libcrypt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_permit/Makefile.depend b/lib/libpam/modules/pam_permit/Makefile.depend index 223b0d0cb95d..7cedd5f867c7 100644 --- a/lib/libpam/modules/pam_permit/Makefile.depend +++ b/lib/libpam/modules/pam_permit/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_radius/Makefile.depend b/lib/libpam/modules/pam_radius/Makefile.depend index 8daba2c77397..c09649a7373e 100644 --- a/lib/libpam/modules/pam_radius/Makefile.depend +++ b/lib/libpam/modules/pam_radius/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ lib/libradius \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_rhosts/Makefile.depend b/lib/libpam/modules/pam_rhosts/Makefile.depend index 9d521d074595..467741f6d1a9 100644 --- a/lib/libpam/modules/pam_rhosts/Makefile.depend +++ b/lib/libpam/modules/pam_rhosts/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_rootok/Makefile.depend b/lib/libpam/modules/pam_rootok/Makefile.depend index 223b0d0cb95d..7cedd5f867c7 100644 --- a/lib/libpam/modules/pam_rootok/Makefile.depend +++ b/lib/libpam/modules/pam_rootok/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_securetty/Makefile.depend b/lib/libpam/modules/pam_securetty/Makefile.depend index 9d521d074595..467741f6d1a9 100644 --- a/lib/libpam/modules/pam_securetty/Makefile.depend +++ b/lib/libpam/modules/pam_securetty/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_self/Makefile.depend b/lib/libpam/modules/pam_self/Makefile.depend index 223b0d0cb95d..7cedd5f867c7 100644 --- a/lib/libpam/modules/pam_self/Makefile.depend +++ b/lib/libpam/modules/pam_self/Makefile.depend @@ -9,7 +9,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_ssh/Makefile.depend b/lib/libpam/modules/pam_ssh/Makefile.depend index e46aac47883c..fe1b1a9881cc 100644 --- a/lib/libpam/modules/pam_ssh/Makefile.depend +++ b/lib/libpam/modules/pam_ssh/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libcrypt \ - lib/libpam/libpam \ lib/libutil \ secure/lib/libcrypto \ secure/lib/libssh \ diff --git a/lib/libpam/modules/pam_tacplus/Makefile.depend b/lib/libpam/modules/pam_tacplus/Makefile.depend index c3edc9b21fdc..d7bb6e103654 100644 --- a/lib/libpam/modules/pam_tacplus/Makefile.depend +++ b/lib/libpam/modules/pam_tacplus/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libpam/libpam \ lib/libtacplus \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_unix/Makefile.depend b/lib/libpam/modules/pam_unix/Makefile.depend index 47a9e7e0623c..8bca5d89e833 100644 --- a/lib/libpam/modules/pam_unix/Makefile.depend +++ b/lib/libpam/modules/pam_unix/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libcrypt \ - lib/libpam/libpam \ lib/libutil \ lib/libypclnt \ usr.bin/xinstall.host \ diff --git a/lib/libxo/Makefile.depend b/lib/libxo/Makefile.depend new file mode 100644 index 000000000000..467741f6d1a9 --- /dev/null +++ b/lib/libxo/Makefile.depend @@ -0,0 +1,20 @@ +# Autogenerated - do NOT edit! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + usr.bin/xinstall.host \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif diff --git a/pkgs/pseudo/usr.sbin/Makefile.depend b/pkgs/pseudo/usr.sbin/Makefile.depend index 9887c3610924..4ba91f321f5b 100644 --- a/pkgs/pseudo/usr.sbin/Makefile.depend +++ b/pkgs/pseudo/usr.sbin/Makefile.depend @@ -101,7 +101,6 @@ DIRDEPS = \ usr.sbin/etcupdate \ usr.sbin/extattr \ usr.sbin/extattrctl \ - usr.sbin/faithd \ usr.sbin/fdcontrol \ usr.sbin/fdformat \ usr.sbin/fdread \ @@ -112,8 +111,6 @@ DIRDEPS = \ usr.sbin/fifolog/fifolog_reader \ usr.sbin/flowctl \ usr.sbin/freebsd-update \ - usr.sbin/ftp-proxy/libevent \ - usr.sbin/ftp-proxy/ftp-proxy \ usr.sbin/fwcontrol \ usr.sbin/genrandom \ usr.sbin/getfmac \ diff --git a/sbin/fsirand/Makefile.depend b/sbin/fsirand/Makefile.depend index 78b235bef5b2..96aa2a21a959 100644 --- a/sbin/fsirand/Makefile.depend +++ b/sbin/fsirand/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libutil \ .include diff --git a/sbin/ifconfig/Makefile.depend b/sbin/ifconfig/Makefile.depend index 300eacf77ac5..318c7c863a7e 100644 --- a/sbin/ifconfig/Makefile.depend +++ b/sbin/ifconfig/Makefile.depend @@ -14,6 +14,7 @@ DIRDEPS = \ lib/libexpat \ lib/libjail \ lib/libsbuf \ + lib/msun \ .include diff --git a/usr.bin/bc/Makefile.depend b/usr.bin/bc/Makefile.depend index 114241948b37..ec6db2cea21a 100644 --- a/usr.bin/bc/Makefile.depend +++ b/usr.bin/bc/Makefile.depend @@ -11,7 +11,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libedit \ - lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend index 70283d4fe738..9b6c133a202b 100644 --- a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend +++ b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libsdp \ + lib/libutil \ .include diff --git a/usr.bin/ftp/Makefile.depend b/usr.bin/ftp/Makefile.depend index c43a11a5f8fb..abbcdbc6ab98 100644 --- a/usr.bin/ftp/Makefile.depend +++ b/usr.bin/ftp/Makefile.depend @@ -12,7 +12,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libedit \ - lib/libutil \ lib/ncurses/ncursesw \ diff --git a/usr.bin/id/Makefile.depend b/usr.bin/id/Makefile.depend index 24594da0ac10..96aa2a21a959 100644 --- a/usr.bin/id/Makefile.depend +++ b/usr.bin/id/Makefile.depend @@ -8,7 +8,6 @@ DIRDEPS = \ include \ include/xlocale \ lib/${CSU_DIR} \ - lib/libbsm \ lib/libc \ lib/libcompiler_rt \ diff --git a/usr.bin/m4/Makefile.depend b/usr.bin/m4/Makefile.depend index f5f9a16f6de2..5ef57d9aab7c 100644 --- a/usr.bin/m4/Makefile.depend +++ b/usr.bin/m4/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libohash \ lib/liby \ lib/msun \ usr.bin/lex/lib \ diff --git a/usr.bin/w/Makefile.depend b/usr.bin/w/Makefile.depend index ae117e2af41d..d371bbeb0fe2 100644 --- a/usr.bin/w/Makefile.depend +++ b/usr.bin/w/Makefile.depend @@ -13,6 +13,7 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libkvm \ lib/libutil \ + lib/libxo \ .include diff --git a/usr.bin/wc/Makefile.depend b/usr.bin/wc/Makefile.depend index 96aa2a21a959..57f7edd4bcc5 100644 --- a/usr.bin/wc/Makefile.depend +++ b/usr.bin/wc/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libxo \ .include diff --git a/usr.sbin/acpi/iasl/Makefile.depend b/usr.sbin/acpi/iasl/Makefile.depend index d12ff044d90e..82b46652db1e 100644 --- a/usr.sbin/acpi/iasl/Makefile.depend +++ b/usr.sbin/acpi/iasl/Makefile.depend @@ -40,6 +40,10 @@ aslload.o: aslcompiler.y.h aslload.po: aslcompiler.y.h asllookup.o: aslcompiler.y.h asllookup.po: aslcompiler.y.h +aslmapoutput.o: aslcompiler.y.h +aslmapoutput.po: aslcompiler.y.h +aslmaputils.o: aslcompiler.y.h +aslmaputils.po: aslcompiler.y.h aslmethod.o: aslcompiler.y.h aslmethod.po: aslcompiler.y.h aslnamesp.o: aslcompiler.y.h diff --git a/usr.sbin/fifolog/fifolog_reader/Makefile.depend b/usr.sbin/fifolog/fifolog_reader/Makefile.depend index c6cbc3e4e45d..4367c660cfe7 100644 --- a/usr.sbin/fifolog/fifolog_reader/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_reader/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libutil \ lib/libz \ usr.sbin/fifolog/lib \ diff --git a/usr.sbin/fifolog/fifolog_writer/Makefile.depend b/usr.sbin/fifolog/fifolog_writer/Makefile.depend index c6cbc3e4e45d..4367c660cfe7 100644 --- a/usr.sbin/fifolog/fifolog_writer/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_writer/Makefile.depend @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libutil \ lib/libz \ usr.sbin/fifolog/lib \ diff --git a/usr.sbin/gstat/Makefile.depend b/usr.sbin/gstat/Makefile.depend index aee289a3fe11..67e0e7333b8d 100644 --- a/usr.sbin/gstat/Makefile.depend +++ b/usr.sbin/gstat/Makefile.depend @@ -16,7 +16,6 @@ DIRDEPS = \ lib/libgeom \ lib/libkvm \ lib/libsbuf \ - lib/ncurses/ncurses \ lib/ncurses/ncursesw \ diff --git a/usr.sbin/pkg/Makefile.depend b/usr.sbin/pkg/Makefile.depend index cb18bf6aa3f8..b61c29c20707 100644 --- a/usr.sbin/pkg/Makefile.depend +++ b/usr.sbin/pkg/Makefile.depend @@ -13,7 +13,6 @@ DIRDEPS = \ lib/libbz2 \ lib/libc \ lib/libcompiler_rt \ - lib/libelf \ lib/libexpat \ lib/libfetch \ lib/liblzma \ diff --git a/usr.sbin/wpa/wpa_cli/Makefile.depend b/usr.sbin/wpa/wpa_cli/Makefile.depend index c43a11a5f8fb..d9ecce6a52af 100644 --- a/usr.sbin/wpa/wpa_cli/Makefile.depend +++ b/usr.sbin/wpa/wpa_cli/Makefile.depend @@ -11,9 +11,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libedit \ lib/libutil \ - lib/ncurses/ncursesw \ .include From 807c53f513a2b696f96576c1a73cc30050401d71 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 19 Nov 2014 07:11:29 +0000 Subject: [PATCH 177/228] Removed from head --- usr.sbin/faithd/Makefile | 25 - usr.sbin/faithd/Makefile.depend | 21 - usr.sbin/faithd/README | 148 --- usr.sbin/faithd/faithd.8 | 404 ------- usr.sbin/faithd/faithd.c | 908 --------------- usr.sbin/faithd/faithd.h | 70 -- usr.sbin/faithd/ftp.c | 1085 ------------------ usr.sbin/faithd/prefix.c | 345 ------ usr.sbin/faithd/prefix.h | 52 - usr.sbin/faithd/tcp.c | 324 ------ usr.sbin/faithd/test/faithd.rb | 312 ----- usr.sbin/ftp-proxy/ftp-proxy/Makefile | 19 - usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend | 21 - usr.sbin/ftp-proxy/libevent/Makefile | 27 - usr.sbin/ftp-proxy/libevent/Makefile.depend | 14 - 15 files changed, 3775 deletions(-) delete mode 100644 usr.sbin/faithd/Makefile delete mode 100644 usr.sbin/faithd/Makefile.depend delete mode 100644 usr.sbin/faithd/README delete mode 100644 usr.sbin/faithd/faithd.8 delete mode 100644 usr.sbin/faithd/faithd.c delete mode 100644 usr.sbin/faithd/faithd.h delete mode 100644 usr.sbin/faithd/ftp.c delete mode 100644 usr.sbin/faithd/prefix.c delete mode 100644 usr.sbin/faithd/prefix.h delete mode 100644 usr.sbin/faithd/tcp.c delete mode 100644 usr.sbin/faithd/test/faithd.rb delete mode 100644 usr.sbin/ftp-proxy/ftp-proxy/Makefile delete mode 100644 usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend delete mode 100644 usr.sbin/ftp-proxy/libevent/Makefile delete mode 100644 usr.sbin/ftp-proxy/libevent/Makefile.depend diff --git a/usr.sbin/faithd/Makefile b/usr.sbin/faithd/Makefile deleted file mode 100644 index dec45b9645b0..000000000000 --- a/usr.sbin/faithd/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright (c) 1996 WIDE Project. All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modifications, are permitted provided that the above copyright notice -# and this paragraph are duplicated in all such forms and that any -# documentation, advertising materials, and other materials related to -# such distribution and use acknowledge that the software was developed -# by the WIDE Project, Japan. The name of the Project may not be used to -# endorse or promote products derived from this software without -# specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' -# AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT -# LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE. -# -# $FreeBSD$ - -PROG= faithd -MAN= faithd.8 -SRCS= faithd.c tcp.c ftp.c prefix.c - -CFLAGS+= -DHAVE_POLL_H - -WARNS?= 2 - -.include diff --git a/usr.sbin/faithd/Makefile.depend b/usr.sbin/faithd/Makefile.depend deleted file mode 100644 index d9ecce6a52af..000000000000 --- a/usr.sbin/faithd/Makefile.depend +++ /dev/null @@ -1,21 +0,0 @@ -# Autogenerated - do NOT edit! - -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - -DIRDEPS = \ - gnu/lib/csu \ - gnu/lib/libgcc \ - include \ - include/arpa \ - include/xlocale \ - lib/${CSU_DIR} \ - lib/libc \ - lib/libcompiler_rt \ - lib/libutil \ - - -.include - -.if ${DEP_RELDIR} == ${_DEP_RELDIR} -# local dependencies - needed for -jN in clean tree -.endif diff --git a/usr.sbin/faithd/README b/usr.sbin/faithd/README deleted file mode 100644 index 6628bf63dcbc..000000000000 --- a/usr.sbin/faithd/README +++ /dev/null @@ -1,148 +0,0 @@ -Configuring FAITH IPv6-to-IPv4 TCP relay - -Kazu Yamamoto and Jun-ichiro itojun Hagino -$KAME: README,v 1.10 2003/01/06 21:40:33 sumikawa Exp $ -$FreeBSD$ - - -Introduction -============ - -FAITH is an IPv6-to-IPv4 TCP relay. It performs tcp relay just as some of -firewall-oriented gateway does, but between IPv6 and IPv4 with address -translation. -TCP connections has to be made from IPv6 node to IPv4 node. FAITH will -not relay connections for the opposite direction. -To perform relays, FAITH daemon needs to be executed on a router between -your local IPv6 site and outside IPv4 network. The daemon needs to be -invoked per each TCP services (TCP port number). - - IPv4 node "dest" = 123.4.5.6 - | - [[[[ outside IPv4 ocean ]]]] - | - node that runs FAITH-daemon (usually a router) - | - ==+=====+===+==== IPv6, or IPv4/v6 network in your site ^ - | | | connection - clients IPv6 node "src" | - -You will have to allocate an IPv6 address prefix to map IPv4 addresses into. -The following description uses 3ffe:0501:ffff:0000:: as example. -Please use a prefix which belongs to your site. -FAITH will make it possible to make an IPv6 TCP connection From IPv6 node -"src", toward IPv4 node "dest", by specifying FAITH-mapped address -3ffe:0501:ffff:0000::123.4.5.6 -(which is, 3ffe:0501:ffff:0000:0000:0000:7b04:0506). -The address mapping can be performed by hand:-), by special nameserver on -the network, or by special resolver on the source node. - - -Setup -===== - -The following example assumes: -- You have assigned 3ffe:0501:ffff:0000:: as FAITH adderss prefix. -- You are willing to provide IPv6-to IPv4 TCP relay for telnet. - -<> - -(1) If you have IPv6 TCP server for the "telnet" service, i.e. telnetd via - inet6d, disable that daemon. Comment out the line from "inet6d.conf" - and send the HUP signal to "inet6d". - -(2) Execute sysctl as root to enable FAITH support in the kernel. - - # sysctl net.inet6.ip6.keepfaith=1 - -(3) Route packets toward FAITH prefix into "faith0" interface. - - # ifconfig faith0 up - # route add -inet6 3ffe:0501:ffff:0000:: -prefixlen 64 ::1 - # route change -inet6 3ffe:0501:ffff:0000:: -prefixlen 64 -ifp faith0 - -(4) Execute "faithd" by root as follows: - - # faithd telnet /usr/libexec/telnetd telnetd - - 1st argument is a service name you are willing to provide TCP relay. - (it can be specified either by number "23" or by string "telnet") - 2nd argument is a path name for local IPv6 TCP server. If there is a - connection toward the router itself, this program will be invoked. - 3rd and the following arguments are arguments for the local IPv6 TCP - server. (3rd argument is typically the program name without its path.) - - More examples: - - # faithd ftpd /usr/libexec/ftpd ftpd -l - # faithd sshd - -If inetd(8) on your platform have special support for faithd, it is possible -to setup faithd services via inetd(8). Consult manpage for details. - - -<> - -(4) Make sure that packets whose destinations match the prefix can -reach from the IPv6 host to the translating router. - -<> - -There are two ways to translate IPv4 address to IPv6 address: - (a) Faked by DNS - (b) Faked by /etc/hosts. - -(5.a) Install "newbie" and set up FAITH mode. See kit/ports/newbie. - -(5.b) Add an entry into /etc/hosts so that you can resolve hostname into -faked IPv6 addrss. For example, add the following line for www.netbsd.org: - - 3ffe:0501:ffff:0000::140.160.140.252 www.netbsd.org - -<> - -(6) To see if "faithd" works, watch "/var/log/daemon". Note: please -setup "/etc/syslog.conf" so that LOG_DAEMON messages are to be stored -in "/var/log/daemon". - - - daemon.* /var/log/daemon - - -Access control -============== - -Since faithd implements TCP relaying service, it is critical to implement -proper access control to cope with malicious use. Bad guy may try to -use your relay router to circumvent access controls, or may try to -abuse your network (like sending SPAMs from IPv4 address that belong to you). -Install IPv6 packet filter directives that would reject traffic from -unwanted source. If you are using inetd-based setup, you may be able to -use access control mechanisms in inetd. - - -Advanced configuration -====================== - -If you would like to restrict IPv4 destination for translation, you may -want to do the following: - - # route add -inet6 3ffe:0501:ffff:0000::123.0.0.0 -prefixlen 104 ::1 - # route change -inet6 3ffe:0501:ffff:0000::123.0.0.0 -prefixlen 104 \ - -ifp faith0 - -By this way, you can restrict IPv4 destination to 123.0.0.0/8. -You may also want to reject packets toward 3ffe:0501:ffff:0000::/64 which -is not in 3ffe:0501:ffff:0000::123.0.0.0/104. This will be left as excerside -for the reader. - -By doing this, you will be able to provide your IPv4 web server to outside -IPv6 customers, without risks of unwanted open relays. - - [[[[ IPv6 network outside ]]]] | - | | connection - node that runs FAITH-daemon (usually a router) v - | - ========+======== IPv4/v6 network in your site - | (123.0.0.0/8) - IPv4 web server diff --git a/usr.sbin/faithd/faithd.8 b/usr.sbin/faithd/faithd.8 deleted file mode 100644 index 93a835b9a97b..000000000000 --- a/usr.sbin/faithd/faithd.8 +++ /dev/null @@ -1,404 +0,0 @@ -.\" $KAME: faithd.8,v 1.37 2002/05/09 14:21:23 itojun Exp $ -.\" -.\" Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. -.\" All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" 3. Neither the name of the project nor the names of its contributors -.\" may be used to endorse or promote products derived from this software -.\" without specific prior written permission. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND -.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -.\" ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE -.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -.\" SUCH DAMAGE. -.\" -.\" $FreeBSD$ -.\" -.Dd August 2, 2011 -.Dt FAITHD 8 -.Os -.Sh NAME -.Nm faithd -.Nd FAITH IPv6/v4 translator daemon -.Sh SYNOPSIS -.Nm -.Op Fl dp -.Op Fl f Ar configfile -.Ar service -.Op Ar serverpath Op Ar serverargs -.Sh DESCRIPTION -The -.Nm -utility provides IPv6-to-IPv4 TCP relaying. -It can only be used on an IPv4/v6 dual stack router. -.Pp -When -.Nm -receives -.Tn TCPv6 -traffic, it will relay the -.Tn TCPv6 -traffic to -.Tn TCPv4 . -The destination for the relayed -.Tn TCPv4 -connection will be determined by the last 4 octets of the original -.Tn IPv6 -destination. -For example, if -.Li 3ffe:0501:4819:ffff:: -is reserved for -.Nm , -and the -.Tn TCPv6 -destination address is -.Li 3ffe:0501:4819:ffff::0a01:0101 , -the traffic will be relayed to IPv4 destination -.Li 10.1.1.1 . -.Pp -To use the -.Nm -translation service, -an IPv6 address prefix must be reserved for mapping IPv4 addresses into. -The kernel must be properly configured to route all the TCP connections -toward the reserved IPv6 address prefix into the -.Xr faith 4 -pseudo interface, using the -.Xr route 8 -command. -Also, -.Xr sysctl 8 -should be used to configure -.Dv net.inet6.ip6.keepfaith -to -.Dv 1 . -.Pp -The router must be configured to capture all the TCP traffic -for the reserved -.Tn IPv6 -address prefix, by using -.Xr route 8 -and -.Xr sysctl 8 -commands. -.Pp -The -.Nm -utility needs special name-to-address translation logic, so that -hostnames get resolved into the special -.Tn IPv6 -address prefix. -For small-scale installations, use -.Xr hosts 5 ; -For large-scale installations, it is useful to have -a DNS server with special address translation support. -An implementation called -.Nm totd -is available at -.Pa http://www.vermicelli.pasta.cs.uit.no/software/totd.html . -Make sure you do not propagate translated DNS records over to normal -DNS, as it can cause severe problems. -.Ss Daemon mode -When -.Nm -is invoked as a standalone program, -.Nm -will daemonize itself. -The -.Nm -utility will listen to -.Tn TCPv6 -port -.Ar service . -If -.Tn TCPv6 -traffic to port -.Ar service -is found, it relays the connection. -.Pp -Since -.Nm -listens to TCP port -.Ar service , -it is not possible to run local TCP daemons for port -.Ar service -on the router, using -.Xr inetd 8 -or other standard mechanisms. -By specifying -.Ar serverpath -to -.Nm , -you can run local daemons on the router. -The -.Nm -utility will invoke a local daemon at -.Ar serverpath -if the destination address is a local interface address, -and will perform translation to IPv4 TCP in other cases. -You can also specify -.Ar serverargs -for the arguments for the local daemon. -.Pp -The following options are available: -.Bl -tag -width indent -.It Fl d -Debugging information will be generated using -.Xr syslog 3 . -.It Fl f Ar configfile -Specify a configuration file for access control. -See below. -.It Fl p -Use privileged TCP port number as source port, -for IPv4 TCP connection toward final destination. -For relaying -.Xr ftp 1 , -this flag is not necessary as special program code is supplied. -.El -.Pp -The -.Nm -utility will relay both normal and out-of-band TCP data. -It is capable of emulating TCP half close as well. -The -.Nm -utility includes special support for protocols used by -.Xr ftp 1 . -When translating the FTP protocol, -.Nm -translates network level addresses in -.Li PORT/LPRT/EPRT -and -.Li PASV/LPSV/EPSV -commands. -.Pp -Inactive sessions will be disconnected in 30 minutes, -to prevent stale sessions from chewing up resources. -This may be inappropriate for some services -(should this be configurable?). -.Ss inetd mode -When -.Nm -is invoked via -.Xr inetd 8 , -.Nm -will handle connections passed from standard input. -If the connection endpoint is in the reserved IPv6 address prefix, -.Nm -will relay the connection. -Otherwise, -.Nm -will invoke a service-specific daemon like -.Xr telnetd 8 , -by using the command argument passed from -.Xr inetd 8 . -.Pp -The -.Nm -utility determines operation mode by the local TCP port number, -and enables special protocol handling whenever necessary/possible. -For example, if -.Nm -is invoked via -.Xr inetd 8 -on the FTP port, it will operate as an FTP relay. -.Pp -The operation mode requires special support for -.Nm -in -.Xr inetd 8 . -.Ss Access control -To prevent malicious access, -.Nm -implements simple address-based access control. -With -.Pa /etc/faithd.conf -(or -.Ar configfile -specified by -.Fl f ) , -.Nm -will avoid relaying unwanted traffic. -The -.Pa faithd.conf -configuration file contains directives of the following format: -.Bl -bullet -.It -.Ar src Ns / Ns Ar slen Cm deny Ar dst Ns / Ns Ar dlen -.Pp -If the source address of a query matches -.Ar src Ns / Ns Ar slen , -and the translated destination address matches -.Ar dst Ns / Ns Ar dlen , -deny the connection. -.It -.Ar src Ns / Ns Ar slen Cm permit Ar dst Ns / Ns Ar dlen -.Pp -If the source address of a query matches -.Ar src Ns / Ns Ar slen , -and the translated destination address matches -.Ar dst Ns / Ns Ar dlen , -permit the connection. -.El -.Pp -The directives are evaluated in sequence, -and the first matching entry will be effective. -If there is no match -(if we reach the end of the ruleset) -the traffic will be denied. -.Pp -With inetd mode, -traffic may be filtered by using access control functionality in -.Xr inetd 8 . -.Sh EXIT STATUS -The -.Nm -utility exits with -.Dv EXIT_SUCCESS -.Pq 0 -on success, and -.Dv EXIT_FAILURE -.Pq 1 -on error. -.Sh EXAMPLES -Before invoking -.Nm , -the -.Xr faith 4 -interface has to be configured properly. -.Bd -literal -offset indent -# sysctl net.inet6.ip6.accept_rtadv=0 -# sysctl net.inet6.ip6.forwarding=1 -# sysctl net.inet6.ip6.keepfaith=1 -# ifconfig faith0 up -# route add -inet6 3ffe:501:4819:ffff:: -prefixlen 96 ::1 -# route change -inet6 3ffe:501:4819:ffff:: -prefixlen 96 -ifp faith0 -.Ed -.Ss Daemon mode samples -To translate -.Li telnet -service, and provide no local telnet service, invoke -.Nm -as follows: -.Bd -literal -offset indent -# faithd telnet -.Ed -.Pp -If you would like to provide local telnet service via -.Xr telnetd 8 -on -.Pa /usr/libexec/telnetd , -use the following command line: -.Bd -literal -offset indent -# faithd telnet /usr/libexec/telnetd telnetd -.Ed -.Pp -If you would like to pass extra arguments to the local daemon: -.Bd -literal -offset indent -# faithd ftp /usr/libexec/ftpd ftpd -l -.Ed -.Pp -Here are some other examples. -You may need -.Fl p -if the service checks the source port range. -.Bd -literal -offset indent -# faithd ssh -# faithd telnet /usr/libexec/telnetd telnetd -.Ed -.Ss inetd mode samples -Add the following lines into -.Xr inetd.conf 5 . -Syntax may vary depending upon your operating system. -.Bd -literal -offset indent -telnet stream tcp6/faith nowait root faithd telnetd -ftp stream tcp6/faith nowait root faithd ftpd -l -ssh stream tcp6/faith nowait root faithd /usr/sbin/sshd -i -.Ed -.Pp -.Xr inetd 8 -will open listening sockets with kernel TCP relay support enabled. -Whenever a connection comes in, -.Nm -will be invoked by -.Xr inetd 8 . -If the connection endpoint is in the reserved IPv6 address prefix. -The -.Nm -utility will relay the connection. -Otherwise, -.Nm -will invoke service-specific daemon like -.Xr telnetd 8 . -.Ss Access control samples -The following illustrates a simple -.Pa faithd.conf -setting. -.Bd -literal -offset indent -# permit anyone from 3ffe:501:ffff::/48 to use the translator, -# to connect to the following IPv4 destinations: -# - any location except 10.0.0.0/8 and 127.0.0.0/8. -# Permit no other connections. -# -3ffe:501:ffff::/48 deny 10.0.0.0/8 -3ffe:501:ffff::/48 deny 127.0.0.0/8 -3ffe:501:ffff::/48 permit 0.0.0.0/0 -.Ed -.Sh SEE ALSO -.Xr faith 4 , -.Xr route 8 , -.Xr sysctl 8 -.Rs -.%A Jun-ichiro itojun Hagino -.%A Kazu Yamamoto -.%T "An IPv6-to-IPv4 transport relay translator" -.%B RFC3142 -.%U http://tools.ietf.org/html/rfc3142 -.%D June 2001 -.Re -.\" -.Sh HISTORY -The -.Nm -utility first appeared in the WIDE Hydrangea IPv6 protocol stack kit. -.\" -.Pp -IPv6 and IPsec support based on the KAME Project (http://www.kame.net/) stack -was initially integrated into -.Fx 4.0 . -.Sh SECURITY CONSIDERATIONS -It is very insecure to use IP-address based authentication, for connections relayed by -.Nm , -and any other TCP relaying services. -.Pp -Administrators are advised to limit accesses to -.Nm -using -.Pa faithd.conf , -or by using IPv6 packet filters, to protect the -.Nm -service from malicious parties, and to avoid theft of service/bandwidth. -IPv6 destination addresses can be limited by -carefully configuring routing entries that point to -.Xr faith 4 , -using -.Xr route 8 . -The IPv6 source address needs to be filtered using packet filters. -The documents listed in -.Sx SEE ALSO -have more information on this topic. diff --git a/usr.sbin/faithd/faithd.c b/usr.sbin/faithd/faithd.c deleted file mode 100644 index 1745de1f6b1a..000000000000 --- a/usr.sbin/faithd/faithd.c +++ /dev/null @@ -1,908 +0,0 @@ -/* $KAME: faithd.c,v 1.67 2003/10/16 05:26:21 itojun Exp $ */ - -/* - * Copyright (C) 1997 and 1998 WIDE Project. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the project nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -/* - * User level translator from IPv6 to IPv4. - * - * Usage: faithd [ ...] - * e.g. faithd telnet /usr/libexec/telnetd telnetd - */ - -#include -__FBSDID("$FreeBSD$"); - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#ifdef HAVE_POLL_H -#include -#endif -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#ifdef IFT_FAITH -# define USE_ROUTE -# include -# include -# include -#endif - -#include -#include -#include -#include - -#include "faithd.h" -#include "prefix.h" - -char *serverpath = NULL; -char *serverarg[MAXARGV + 1]; -static char *faithdname = NULL; -char logname[BUFSIZ]; -char procname[BUFSIZ]; - -struct myaddrs { - struct myaddrs *next; - struct sockaddr *addr; -}; -struct myaddrs *myaddrs = NULL; - -static const char *service; -#ifdef USE_ROUTE -static int sockfd = 0; -#endif -int dflag = 0; -static int pflag = 0; -static int inetd = 0; -static char *configfile = NULL; - -int main(int, char **); -static int inetd_main(int, char **); -static int daemon_main(int, char **); -static void play_service(int); -static void play_child(int, struct sockaddr *); -static int faith_prefix(struct sockaddr *); -static int map6to4(struct sockaddr_in6 *, struct sockaddr_in *); -static void sig_child(int); -static void sig_terminate(int); -static void start_daemon(void); -static void exit_stderr(const char *, ...) - __attribute__((__format__(__printf__, 1, 2))); -static void grab_myaddrs(void); -static void free_myaddrs(void); -static void update_myaddrs(void); -static void usage(void); - -int -main(int argc, char **argv) -{ - - /* - * Initializing stuff - */ - - faithdname = strrchr(argv[0], '/'); - if (faithdname) - faithdname++; - else - faithdname = argv[0]; - - if (strcmp(faithdname, "faithd") != 0) { - inetd = 1; - return inetd_main(argc, argv); - } else - return daemon_main(argc, argv); -} - -static int -inetd_main(int argc, char **argv) -{ - char path[MAXPATHLEN]; - struct sockaddr_storage me; - struct sockaddr_storage from; - socklen_t melen, fromlen; - int i; - int error; - const int on = 1; - char sbuf[NI_MAXSERV], snum[NI_MAXSERV]; - - if (config_load(configfile) < 0 && configfile) { - exit_failure("could not load config file"); - /*NOTREACHED*/ - } - - if (strrchr(argv[0], '/') == NULL) - snprintf(path, sizeof(path), "%s/%s", DEFAULT_DIR, argv[0]); - else - snprintf(path, sizeof(path), "%s", argv[0]); - -#ifdef USE_ROUTE - grab_myaddrs(); - - sockfd = socket(PF_ROUTE, SOCK_RAW, PF_UNSPEC); - if (sockfd < 0) { - exit_failure("socket(PF_ROUTE): %s", strerror(errno)); - /*NOTREACHED*/ - } -#endif - - melen = sizeof(me); - if (getsockname(STDIN_FILENO, (struct sockaddr *)&me, &melen) < 0) { - exit_failure("getsockname: %s", strerror(errno)); - /*NOTREACHED*/ - } - fromlen = sizeof(from); - if (getpeername(STDIN_FILENO, (struct sockaddr *)&from, &fromlen) < 0) { - exit_failure("getpeername: %s", strerror(errno)); - /*NOTREACHED*/ - } - if (getnameinfo((struct sockaddr *)&me, melen, NULL, 0, - sbuf, sizeof(sbuf), NI_NUMERICHOST) == 0) - service = sbuf; - else - service = DEFAULT_PORT_NAME; - if (getnameinfo((struct sockaddr *)&me, melen, NULL, 0, - snum, sizeof(snum), NI_NUMERICHOST) != 0) - snprintf(snum, sizeof(snum), "?"); - - snprintf(logname, sizeof(logname), "faithd %s", snum); - snprintf(procname, sizeof(procname), "accepting port %s", snum); - openlog(logname, LOG_PID | LOG_NOWAIT, LOG_DAEMON); - - if (argc >= MAXARGV) { - exit_failure("too many arguments"); - /*NOTREACHED*/ - } - serverarg[0] = serverpath = path; - for (i = 1; i < argc; i++) - serverarg[i] = argv[i]; - serverarg[i] = NULL; - - error = setsockopt(STDIN_FILENO, SOL_SOCKET, SO_OOBINLINE, &on, - sizeof(on)); - if (error < 0) { - exit_failure("setsockopt(SO_OOBINLINE): %s", strerror(errno)); - /*NOTREACHED*/ - } - - play_child(STDIN_FILENO, (struct sockaddr *)&from); - exit_failure("should not reach here"); - return 0; /*dummy!*/ -} - -static int -daemon_main(int argc, char **argv) -{ - struct addrinfo hints, *res; - int s_wld, error, i, serverargc, on = 1; - int family = AF_INET6; - int c; - - while ((c = getopt(argc, argv, "df:p")) != -1) { - switch (c) { - case 'd': - dflag++; - break; - case 'f': - configfile = optarg; - break; - case 'p': - pflag++; - break; - default: - usage(); - /*NOTREACHED*/ - } - } - argc -= optind; - argv += optind; - - if (config_load(configfile) < 0 && configfile) { - exit_failure("could not load config file"); - /*NOTREACHED*/ - } - - -#ifdef USE_ROUTE - grab_myaddrs(); -#endif - - switch (argc) { - case 0: - usage(); - /*NOTREACHED*/ - default: - serverargc = argc - NUMARG; - if (serverargc >= MAXARGV) - exit_stderr("too many arguments"); - - serverpath = strdup(argv[NUMPRG]); - if (!serverpath) - exit_stderr("not enough core"); - for (i = 0; i < serverargc; i++) { - serverarg[i] = strdup(argv[i + NUMARG]); - if (!serverarg[i]) - exit_stderr("not enough core"); - } - serverarg[i] = NULL; - /* fall throuth */ - case 1: /* no local service */ - service = argv[NUMPRT]; - break; - } - - start_daemon(); - - /* - * Opening wild card socket for this service. - */ - - memset(&hints, 0, sizeof(hints)); - hints.ai_flags = AI_PASSIVE; - hints.ai_family = family; - hints.ai_socktype = SOCK_STREAM; - hints.ai_protocol = IPPROTO_TCP; /* SCTP? */ - error = getaddrinfo(NULL, service, &hints, &res); - if (error) - exit_failure("getaddrinfo: %s", gai_strerror(error)); - - s_wld = socket(res->ai_family, res->ai_socktype, res->ai_protocol); - if (s_wld == -1) - exit_failure("socket: %s", strerror(errno)); - -#ifdef IPV6_FAITH - if (res->ai_family == AF_INET6) { - error = setsockopt(s_wld, IPPROTO_IPV6, IPV6_FAITH, &on, sizeof(on)); - if (error == -1) - exit_failure("setsockopt(IPV6_FAITH): %s", - strerror(errno)); - } -#endif - - error = setsockopt(s_wld, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)); - if (error == -1) - exit_failure("setsockopt(SO_REUSEADDR): %s", strerror(errno)); - - error = setsockopt(s_wld, SOL_SOCKET, SO_OOBINLINE, &on, sizeof(on)); - if (error == -1) - exit_failure("setsockopt(SO_OOBINLINE): %s", strerror(errno)); - -#ifdef IPV6_V6ONLY - error = setsockopt(s_wld, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)); - if (error == -1) - exit_failure("setsockopt(IPV6_V6ONLY): %s", strerror(errno)); -#endif - - error = bind(s_wld, (struct sockaddr *)res->ai_addr, res->ai_addrlen); - if (error == -1) - exit_failure("bind: %s", strerror(errno)); - - error = listen(s_wld, 5); - if (error == -1) - exit_failure("listen: %s", strerror(errno)); - -#ifdef USE_ROUTE - sockfd = socket(PF_ROUTE, SOCK_RAW, PF_UNSPEC); - if (sockfd < 0) { - exit_failure("socket(PF_ROUTE): %s", strerror(errno)); - /*NOTREACHED*/ - } -#endif - - /* - * Everything is OK. - */ - - snprintf(logname, sizeof(logname), "faithd %s", service); - snprintf(procname, sizeof(procname), "accepting port %s", service); - openlog(logname, LOG_PID | LOG_NOWAIT, LOG_DAEMON); - syslog(LOG_INFO, "Starting faith daemon for %s port", service); - - play_service(s_wld); - /* NOTREACHED */ - exit(1); /*pacify gcc*/ -} - -static void -play_service(int s_wld) -{ - struct sockaddr_storage srcaddr; - socklen_t len; - int s_src; - pid_t child_pid; -#ifdef HAVE_POLL_H - struct pollfd pfd[2]; -#else - fd_set rfds; - int maxfd; -#endif - int error; - - /* - * Wait, accept, fork, faith.... - */ -again: - setproctitle("%s", procname); - -#ifdef HAVE_POLL_H - pfd[0].fd = s_wld; - pfd[0].events = POLLIN; - pfd[1].fd = -1; - pfd[1].revents = 0; -#else - FD_ZERO(&rfds); - if (s_wld >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(s_wld, &rfds); - maxfd = s_wld; -#endif -#ifdef USE_ROUTE - if (sockfd) { -#ifdef HAVE_POLL_H - pfd[1].fd = sockfd; - pfd[1].events = POLLIN; -#else - if (sockfd >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(sockfd, &rfds); - maxfd = (maxfd < sockfd) ? sockfd : maxfd; -#endif - } -#endif - -#ifdef HAVE_POLL_H - error = poll(pfd, sizeof(pfd)/sizeof(pfd[0]), INFTIM); -#else - error = select(maxfd + 1, &rfds, NULL, NULL, NULL); -#endif - if (error < 0) { - if (errno == EINTR) - goto again; - exit_failure("select: %s", strerror(errno)); - /*NOTREACHED*/ - } - -#ifdef USE_ROUTE -#ifdef HAVE_POLL_H - if (pfd[1].revents & POLLIN) -#else - if (FD_ISSET(sockfd, &rfds)) -#endif - { - update_myaddrs(); - } -#endif -#ifdef HAVE_POLL_H - if (pfd[0].revents & POLLIN) -#else - if (FD_ISSET(s_wld, &rfds)) -#endif - { - len = sizeof(srcaddr); - s_src = accept(s_wld, (struct sockaddr *)&srcaddr, &len); - if (s_src < 0) { - if (errno == ECONNABORTED) - goto again; - exit_failure("socket: %s", strerror(errno)); - /*NOTREACHED*/ - } - if (srcaddr.ss_family == AF_INET6 && - IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&srcaddr)->sin6_addr)) { - close(s_src); - syslog(LOG_ERR, "connection from IPv4 mapped address?"); - goto again; - } - - child_pid = fork(); - - if (child_pid == 0) { - /* child process */ - close(s_wld); - closelog(); - openlog(logname, LOG_PID | LOG_NOWAIT, LOG_DAEMON); - play_child(s_src, (struct sockaddr *)&srcaddr); - exit_failure("should never reach here"); - /*NOTREACHED*/ - } else { - /* parent process */ - close(s_src); - if (child_pid == -1) - syslog(LOG_ERR, "can't fork"); - } - } - goto again; -} - -static void -play_child(int s_src, struct sockaddr *srcaddr) -{ - struct sockaddr_storage dstaddr6; - struct sockaddr_storage dstaddr4; - char src[NI_MAXHOST]; - char dst6[NI_MAXHOST]; - char dst4[NI_MAXHOST]; - socklen_t len = sizeof(dstaddr6); - int s_dst, error, hport, nresvport, on = 1; - struct timeval tv; - struct sockaddr *sa4; - const struct config *conf; - - tv.tv_sec = 1; - tv.tv_usec = 0; - - getnameinfo(srcaddr, srcaddr->sa_len, - src, sizeof(src), NULL, 0, NI_NUMERICHOST); - syslog(LOG_INFO, "accepted a client from %s", src); - - error = getsockname(s_src, (struct sockaddr *)&dstaddr6, &len); - if (error == -1) { - exit_failure("getsockname: %s", strerror(errno)); - /*NOTREACHED*/ - } - - getnameinfo((struct sockaddr *)&dstaddr6, len, - dst6, sizeof(dst6), NULL, 0, NI_NUMERICHOST); - syslog(LOG_INFO, "the client is connecting to %s", dst6); - - if (!faith_prefix((struct sockaddr *)&dstaddr6)) { - if (serverpath) { - /* - * Local service - */ - syslog(LOG_INFO, "executing local %s", serverpath); - if (!inetd) { - dup2(s_src, 0); - close(s_src); - dup2(0, 1); - dup2(0, 2); - } - execv(serverpath, serverarg); - syslog(LOG_ERR, "execv %s: %s", serverpath, - strerror(errno)); - _exit(EXIT_FAILURE); - } else { - close(s_src); - exit_success("no local service for %s", service); - } - } - - /* - * Act as a translator - */ - - switch (((struct sockaddr *)&dstaddr6)->sa_family) { - case AF_INET6: - if (!map6to4((struct sockaddr_in6 *)&dstaddr6, - (struct sockaddr_in *)&dstaddr4)) { - close(s_src); - exit_failure("map6to4 failed"); - /*NOTREACHED*/ - } - syslog(LOG_INFO, "translating from v6 to v4"); - break; - default: - close(s_src); - exit_failure("family not supported"); - /*NOTREACHED*/ - } - - sa4 = (struct sockaddr *)&dstaddr4; - getnameinfo(sa4, sa4->sa_len, - dst4, sizeof(dst4), NULL, 0, NI_NUMERICHOST); - - conf = config_match(srcaddr, sa4); - if (!conf || !conf->permit) { - close(s_src); - if (conf) { - exit_failure("translation to %s not permitted for %s", - dst4, prefix_string(&conf->match)); - /*NOTREACHED*/ - } else { - exit_failure("translation to %s not permitted", dst4); - /*NOTREACHED*/ - } - } - - syslog(LOG_INFO, "the translator is connecting to %s", dst4); - - setproctitle("port %s, %s -> %s", service, src, dst4); - - if (sa4->sa_family == AF_INET6) - hport = ntohs(((struct sockaddr_in6 *)&dstaddr4)->sin6_port); - else /* AF_INET */ - hport = ntohs(((struct sockaddr_in *)&dstaddr4)->sin_port); - - if (pflag) - s_dst = rresvport_af(&nresvport, sa4->sa_family); - else - s_dst = socket(sa4->sa_family, SOCK_STREAM, 0); - if (s_dst < 0) { - exit_failure("socket: %s", strerror(errno)); - /*NOTREACHED*/ - } - - if (conf->src.a.ss_family) { - if (bind(s_dst, (const struct sockaddr *)&conf->src.a, - conf->src.a.ss_len) < 0) { - exit_failure("bind: %s", strerror(errno)); - /*NOTREACHED*/ - } - } - - error = setsockopt(s_dst, SOL_SOCKET, SO_OOBINLINE, &on, sizeof(on)); - if (error < 0) { - exit_failure("setsockopt(SO_OOBINLINE): %s", strerror(errno)); - /*NOTREACHED*/ - } - - error = setsockopt(s_src, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)); - if (error < 0) { - exit_failure("setsockopt(SO_SNDTIMEO): %s", strerror(errno)); - /*NOTREACHED*/ - } - error = setsockopt(s_dst, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)); - if (error < 0) { - exit_failure("setsockopt(SO_SNDTIMEO): %s", strerror(errno)); - /*NOTREACHED*/ - } - - error = connect(s_dst, sa4, sa4->sa_len); - if (error < 0) { - exit_failure("connect: %s", strerror(errno)); - /*NOTREACHED*/ - } - - switch (hport) { - case FTP_PORT: - ftp_relay(s_src, s_dst); - break; - default: - tcp_relay(s_src, s_dst, service); - break; - } - - /* NOTREACHED */ -} - -/* 0: non faith, 1: faith */ -static int -faith_prefix(struct sockaddr *dst) -{ -#ifndef USE_ROUTE - int mib[4], size; - struct in6_addr faith_prefix; - struct sockaddr_in6 *dst6 = (struct sockaddr_in *)dst; - - if (dst->sa_family != AF_INET6) - return 0; - - mib[0] = CTL_NET; - mib[1] = PF_INET6; - mib[2] = IPPROTO_IPV6; - mib[3] = IPV6CTL_FAITH_PREFIX; - size = sizeof(struct in6_addr); - if (sysctl(mib, 4, &faith_prefix, &size, NULL, 0) < 0) { - exit_failure("sysctl: %s", strerror(errno)); - /*NOTREACHED*/ - } - - if (memcmp(dst, &faith_prefix, - sizeof(struct in6_addr) - sizeof(struct in_addr) == 0) { - return 1; - } - return 0; -#else - struct myaddrs *p; - struct sockaddr_in6 *sin6; - struct sockaddr_in *sin4; - struct sockaddr_in6 *dst6; - struct sockaddr_in *dst4; - struct sockaddr_in dstmap; - - dst6 = (struct sockaddr_in6 *)dst; - if (dst->sa_family == AF_INET6 - && IN6_IS_ADDR_V4MAPPED(&dst6->sin6_addr)) { - /* ugly... */ - memset(&dstmap, 0, sizeof(dstmap)); - dstmap.sin_family = AF_INET; - dstmap.sin_len = sizeof(dstmap); - memcpy(&dstmap.sin_addr, &dst6->sin6_addr.s6_addr[12], - sizeof(dstmap.sin_addr)); - dst = (struct sockaddr *)&dstmap; - } - - dst6 = (struct sockaddr_in6 *)dst; - dst4 = (struct sockaddr_in *)dst; - - for (p = myaddrs; p; p = p->next) { - sin6 = (struct sockaddr_in6 *)p->addr; - sin4 = (struct sockaddr_in *)p->addr; - - if (p->addr->sa_len != dst->sa_len - || p->addr->sa_family != dst->sa_family) - continue; - - switch (dst->sa_family) { - case AF_INET6: - if (sin6->sin6_scope_id == dst6->sin6_scope_id - && IN6_ARE_ADDR_EQUAL(&sin6->sin6_addr, &dst6->sin6_addr)) - return 0; - break; - case AF_INET: - if (sin4->sin_addr.s_addr == dst4->sin_addr.s_addr) - return 0; - break; - } - } - return 1; -#endif -} - -/* 0: non faith, 1: faith */ -static int -map6to4(struct sockaddr_in6 *dst6, struct sockaddr_in *dst4) -{ - memset(dst4, 0, sizeof(*dst4)); - dst4->sin_len = sizeof(*dst4); - dst4->sin_family = AF_INET; - dst4->sin_port = dst6->sin6_port; - memcpy(&dst4->sin_addr, &dst6->sin6_addr.s6_addr[12], - sizeof(dst4->sin_addr)); - - if (dst4->sin_addr.s_addr == INADDR_ANY - || dst4->sin_addr.s_addr == INADDR_BROADCAST - || IN_MULTICAST(ntohl(dst4->sin_addr.s_addr))) - return 0; - - return 1; -} - - -static void -sig_child(int sig __unused) -{ - int status; - pid_t pid; - - while ((pid = wait3(&status, WNOHANG, (struct rusage *)0)) > 0) - if (WEXITSTATUS(status)) - syslog(LOG_WARNING, "child %ld exit status 0x%x", - (long)pid, status); -} - -void -sig_terminate(int sig __unused) -{ - syslog(LOG_INFO, "Terminating faith daemon"); - exit(EXIT_SUCCESS); -} - -static void -start_daemon(void) -{ -#ifdef SA_NOCLDWAIT - struct sigaction sa; -#endif - - if (daemon(0, 0) == -1) - exit_stderr("daemon: %s", strerror(errno)); - -#ifdef SA_NOCLDWAIT - memset(&sa, 0, sizeof(sa)); - sa.sa_handler = sig_child; - sa.sa_flags = SA_NOCLDWAIT; - sigemptyset(&sa.sa_mask); - sigaction(SIGCHLD, &sa, (struct sigaction *)0); -#else - if (signal(SIGCHLD, sig_child) == SIG_ERR) { - exit_failure("signal CHLD: %s", strerror(errno)); - /*NOTREACHED*/ - } -#endif - - if (signal(SIGTERM, sig_terminate) == SIG_ERR) { - exit_failure("signal TERM: %s", strerror(errno)); - /*NOTREACHED*/ - } -} - -static void -exit_stderr(const char *fmt, ...) -{ - va_list ap; - char buf[BUFSIZ]; - - va_start(ap, fmt); - vsnprintf(buf, sizeof(buf), fmt, ap); - va_end(ap); - fprintf(stderr, "%s\n", buf); - exit(EXIT_FAILURE); -} - -void -exit_failure(const char *fmt, ...) -{ - va_list ap; - char buf[BUFSIZ]; - - va_start(ap, fmt); - vsnprintf(buf, sizeof(buf), fmt, ap); - va_end(ap); - syslog(LOG_ERR, "%s", buf); - exit(EXIT_FAILURE); -} - -void -exit_success(const char *fmt, ...) -{ - va_list ap; - char buf[BUFSIZ]; - - va_start(ap, fmt); - vsnprintf(buf, sizeof(buf), fmt, ap); - va_end(ap); - syslog(LOG_INFO, "%s", buf); - exit(EXIT_SUCCESS); -} - -#ifdef USE_ROUTE -static void -grab_myaddrs(void) -{ - struct ifaddrs *ifap, *ifa; - struct myaddrs *p; - struct sockaddr_in6 *sin6; - - if (getifaddrs(&ifap) != 0) { - exit_failure("getifaddrs"); - /*NOTREACHED*/ - } - - for (ifa = ifap; ifa; ifa = ifa->ifa_next) { - switch (ifa->ifa_addr->sa_family) { - case AF_INET: - case AF_INET6: - break; - default: - continue; - } - - p = (struct myaddrs *)malloc(sizeof(struct myaddrs) + - ifa->ifa_addr->sa_len); - if (!p) { - exit_failure("not enough core"); - /*NOTREACHED*/ - } - memcpy(p + 1, ifa->ifa_addr, ifa->ifa_addr->sa_len); - p->next = myaddrs; - p->addr = (struct sockaddr *)(p + 1); -#ifdef __KAME__ - if (ifa->ifa_addr->sa_family == AF_INET6) { - sin6 = (struct sockaddr_in6 *)p->addr; - if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr) - || IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr)) { - sin6->sin6_scope_id = - ntohs(*(u_int16_t *)&sin6->sin6_addr.s6_addr[2]); - sin6->sin6_addr.s6_addr[2] = 0; - sin6->sin6_addr.s6_addr[3] = 0; - } - } -#endif - myaddrs = p; - if (dflag) { - char hbuf[NI_MAXHOST]; - getnameinfo(p->addr, p->addr->sa_len, - hbuf, sizeof(hbuf), NULL, 0, - NI_NUMERICHOST); - syslog(LOG_INFO, "my interface: %s %s", hbuf, - ifa->ifa_name); - } - } - - freeifaddrs(ifap); -} - -static void -free_myaddrs(void) -{ - struct myaddrs *p, *q; - - p = myaddrs; - while (p) { - q = p->next; - free(p); - p = q; - } - myaddrs = NULL; -} - -static void -update_myaddrs(void) -{ - char msg[BUFSIZ]; - int len; - struct rt_msghdr *rtm; - - len = read(sockfd, msg, sizeof(msg)); - if (len < 0) { - syslog(LOG_ERR, "read(PF_ROUTE) failed"); - return; - } - rtm = (struct rt_msghdr *)msg; - if (len < 4 || len < rtm->rtm_msglen) { - syslog(LOG_ERR, "read(PF_ROUTE) short read"); - return; - } - if (rtm->rtm_version != RTM_VERSION) { - syslog(LOG_ERR, "routing socket version mismatch"); - close(sockfd); - sockfd = 0; - return; - } - switch (rtm->rtm_type) { - case RTM_NEWADDR: - case RTM_DELADDR: - case RTM_IFINFO: - break; - default: - return; - } - /* XXX more filters here? */ - - syslog(LOG_INFO, "update interface address list"); - free_myaddrs(); - grab_myaddrs(); -} -#endif /*USE_ROUTE*/ - -static void -usage(void) -{ - fprintf(stderr, "usage: %s [-dp] [-f conf] service [serverpath [serverargs]]\n", - faithdname); - exit(0); -} diff --git a/usr.sbin/faithd/faithd.h b/usr.sbin/faithd/faithd.h deleted file mode 100644 index c578d46c4d2f..000000000000 --- a/usr.sbin/faithd/faithd.h +++ /dev/null @@ -1,70 +0,0 @@ -/* $KAME: faithd.h,v 1.9 2002/05/09 09:41:24 itojun Exp $ */ - -/* - * Copyright (C) 1997 and 1998 WIDE Project. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the project nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * $FreeBSD$ - */ - -extern char logname[]; -extern int dflag; - -extern void tcp_relay(int, int, const char *); -extern void ftp_relay(int, int); -extern int ftp_active(int, int, int *, int *); -extern int ftp_passive(int, int, int *, int *); -extern void exit_success(const char *, ...) - __attribute__((__format__(__printf__, 1, 2))); -extern void exit_failure(const char *, ...) - __attribute__((__format__(__printf__, 1, 2))); - -#define DEFAULT_PORT_NAME "telnet" -#define DEFAULT_DIR "/usr/libexec" -#define DEFAULT_NAME "telnetd" -#define DEFAULT_PATH (DEFAULT_DIR "/" DEFAULT_NAME) - -#define FTP_PORT 21 -#define RLOGIN_PORT 513 -#define RSH_PORT 514 - -#define RETURN_SUCCESS 0 -#define RETURN_FAILURE 1 - -#define YES 1 -#define NO 0 - -#define MSS 2048 -#define MAXARGV 20 - -#define NUMPRT 0 -#define NUMPRG 1 -#define NUMARG 2 - -#define UC(b) (((int)b)&0xff) - -#define FAITH_TIMEOUT (30 * 60) /*second*/ diff --git a/usr.sbin/faithd/ftp.c b/usr.sbin/faithd/ftp.c deleted file mode 100644 index c54371a2c20e..000000000000 --- a/usr.sbin/faithd/ftp.c +++ /dev/null @@ -1,1085 +0,0 @@ -/* $KAME: ftp.c,v 1.24 2005/03/16 05:05:48 itojun Exp $ */ - -/* - * Copyright (C) 1997 and 1998 WIDE Project. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the project nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * $FreeBSD$ - */ - -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#ifdef HAVE_POLL_H -#include -#endif -#include -#include - -#include -#include -#include - -#include "faithd.h" - -static char rbuf[MSS]; -static char sbuf[MSS]; -static int passivemode = 0; -static int wport4 = -1; /* listen() to active */ -static int wport6 = -1; /* listen() to passive */ -static int port4 = -1; /* active: inbound passive: outbound */ -static int port6 = -1; /* active: outbound passive: inbound */ -static struct sockaddr_storage data4; /* server data address */ -static struct sockaddr_storage data6; /* client data address */ -static int epsvall = 0; - -enum state { NONE, LPRT, EPRT, LPSV, EPSV }; - -static int ftp_activeconn(void); -static int ftp_passiveconn(void); -static int ftp_copy(int, int); -static int ftp_copyresult(int, int, enum state); -static int ftp_copycommand(int, int, enum state *); - -void -ftp_relay(int ctl6, int ctl4) -{ -#ifdef HAVE_POLL_H - struct pollfd pfd[6]; -#else - fd_set readfds; -#endif - int error; - enum state state = NONE; - struct timeval tv; - - syslog(LOG_INFO, "starting ftp control connection"); - - for (;;) { -#ifdef HAVE_POLL_H - pfd[0].fd = ctl4; - pfd[0].events = POLLIN; - pfd[1].fd = ctl6; - pfd[1].events = POLLIN; - if (0 <= port4) { - pfd[2].fd = port4; - pfd[2].events = POLLIN; - } else - pfd[2].fd = -1; - if (0 <= port6) { - pfd[3].fd = port6; - pfd[3].events = POLLIN; - } else - pfd[3].fd = -1; -#if 0 - if (0 <= wport4) { - pfd[4].fd = wport4; - pfd[4].events = POLLIN; - } else - pfd[4].fd = -1; - if (0 <= wport6) { - pfd[5].fd = wport4; - pfd[5].events = POLLIN; - } else - pfd[5].fd = -1; -#else - pfd[4].fd = pfd[5].fd = -1; - pfd[4].events = pfd[5].events = 0; -#endif -#else - int maxfd = 0; - - FD_ZERO(&readfds); - if (ctl4 >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(ctl4, &readfds); - maxfd = ctl4; - if (ctl6 >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(ctl6, &readfds); - maxfd = (ctl6 > maxfd) ? ctl6 : maxfd; - if (0 <= port4) { - if (port4 >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(port4, &readfds); - maxfd = (port4 > maxfd) ? port4 : maxfd; - } - if (0 <= port6) { - if (port6 >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(port6, &readfds); - maxfd = (port6 > maxfd) ? port6 : maxfd; - } -#if 0 - if (0 <= wport4) { - if (wport4 >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(wport4, &readfds); - maxfd = (wport4 > maxfd) ? wport4 : maxfd; - } - if (0 <= wport6) { - if (wport6 >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(wport6, &readfds); - maxfd = (wport6 > maxfd) ? wport6 : maxfd; - } -#endif -#endif - tv.tv_sec = FAITH_TIMEOUT; - tv.tv_usec = 0; - -#ifdef HAVE_POLL_H - error = poll(pfd, sizeof(pfd)/sizeof(pfd[0]), tv.tv_sec * 1000); -#else - error = select(maxfd + 1, &readfds, NULL, NULL, &tv); -#endif - if (error == -1) { -#ifdef HAVE_POLL_H - exit_failure("poll: %s", strerror(errno)); -#else - exit_failure("select: %s", strerror(errno)); -#endif - } - else if (error == 0) - exit_failure("connection timeout"); - - /* - * The order of the following checks does (slightly) matter. - * It is important to visit all checks (do not use "continue"), - * otherwise some of the pipe may become full and we cannot - * relay correctly. - */ -#ifdef HAVE_POLL_H - if (pfd[1].revents & POLLIN) -#else - if (FD_ISSET(ctl6, &readfds)) -#endif - { - /* - * copy control connection from the client. - * command translation is necessary. - */ - error = ftp_copycommand(ctl6, ctl4, &state); - - if (error < 0) - goto bad; - else if (error == 0) { - close(ctl4); - close(ctl6); - exit_success("terminating ftp control connection"); - /*NOTREACHED*/ - } - } -#ifdef HAVE_POLL_H - if (pfd[0].revents & POLLIN) -#else - if (FD_ISSET(ctl4, &readfds)) -#endif - { - /* - * copy control connection from the server - * translation of result code is necessary. - */ - error = ftp_copyresult(ctl4, ctl6, state); - - if (error < 0) - goto bad; - else if (error == 0) { - close(ctl4); - close(ctl6); - exit_success("terminating ftp control connection"); - /*NOTREACHED*/ - } - } -#ifdef HAVE_POLL_H - if (0 <= port4 && 0 <= port6 && (pfd[2].revents & POLLIN)) -#else - if (0 <= port4 && 0 <= port6 && FD_ISSET(port4, &readfds)) -#endif - { - /* - * copy data connection. - * no special treatment necessary. - */ -#ifdef HAVE_POLL_H - if (pfd[2].revents & POLLIN) -#else - if (FD_ISSET(port4, &readfds)) -#endif - error = ftp_copy(port4, port6); - switch (error) { - case -1: - goto bad; - case 0: - close(port4); - close(port6); - port4 = port6 = -1; - syslog(LOG_INFO, "terminating data connection"); - break; - default: - break; - } - } -#ifdef HAVE_POLL_H - if (0 <= port4 && 0 <= port6 && (pfd[3].revents & POLLIN)) -#else - if (0 <= port4 && 0 <= port6 && FD_ISSET(port6, &readfds)) -#endif - { - /* - * copy data connection. - * no special treatment necessary. - */ -#ifdef HAVE_POLL_H - if (pfd[3].revents & POLLIN) -#else - if (FD_ISSET(port6, &readfds)) -#endif - error = ftp_copy(port6, port4); - switch (error) { - case -1: - goto bad; - case 0: - close(port4); - close(port6); - port4 = port6 = -1; - syslog(LOG_INFO, "terminating data connection"); - break; - default: - break; - } - } -#if 0 -#ifdef HAVE_POLL_H - if (wport4 && (pfd[4].revents & POLLIN)) -#else - if (wport4 && FD_ISSET(wport4, &readfds)) -#endif - { - /* - * establish active data connection from the server. - */ - ftp_activeconn(); - } -#ifdef HAVE_POLL_H - if (wport4 && (pfd[5].revents & POLLIN)) -#else - if (wport6 && FD_ISSET(wport6, &readfds)) -#endif - { - /* - * establish passive data connection from the client. - */ - ftp_passiveconn(); - } -#endif - } - - bad: - exit_failure("%s", strerror(errno)); -} - -static int -ftp_activeconn() -{ - socklen_t n; - int error; -#ifdef HAVE_POLL_H - struct pollfd pfd[1]; -#else - fd_set set; -#endif - struct timeval timeout; - struct sockaddr *sa; - - /* get active connection from server */ -#ifdef HAVE_POLL_H - pfd[0].fd = wport4; - pfd[0].events = POLLIN; -#else - FD_ZERO(&set); - if (wport4 >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(wport4, &set); -#endif - timeout.tv_sec = 120; - timeout.tv_usec = 0; - n = sizeof(data4); -#ifdef HAVE_POLL_H - if (poll(pfd, sizeof(pfd)/sizeof(pfd[0]), timeout.tv_sec * 1000) == 0 || - (port4 = accept(wport4, (struct sockaddr *)&data4, &n)) < 0) -#else - if (select(wport4 + 1, &set, NULL, NULL, &timeout) == 0 || - (port4 = accept(wport4, (struct sockaddr *)&data4, &n)) < 0) -#endif - { - close(wport4); - wport4 = -1; - syslog(LOG_INFO, "active mode data connection failed"); - return -1; - } - - /* ask active connection to client */ - sa = (struct sockaddr *)&data6; - port6 = socket(sa->sa_family, SOCK_STREAM, 0); - if (port6 == -1) { - close(port4); - close(wport4); - port4 = wport4 = -1; - syslog(LOG_INFO, "active mode data connection failed"); - return -1; - } - error = connect(port6, sa, sa->sa_len); - if (error < 0) { - close(port6); - close(port4); - close(wport4); - port6 = port4 = wport4 = -1; - syslog(LOG_INFO, "active mode data connection failed"); - return -1; - } - - syslog(LOG_INFO, "active mode data connection established"); - return 0; -} - -static int -ftp_passiveconn() -{ - socklen_t len; - int error; -#ifdef HAVE_POLL_H - struct pollfd pfd[1]; -#else - fd_set set; -#endif - struct timeval timeout; - struct sockaddr *sa; - - /* get passive connection from client */ -#ifdef HAVE_POLL_H - pfd[0].fd = wport6; - pfd[0].events = POLLIN; -#else - FD_ZERO(&set); - if (wport6 >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(wport6, &set); -#endif - timeout.tv_sec = 120; - timeout.tv_usec = 0; - len = sizeof(data6); -#ifdef HAVE_POLL_H - if (poll(pfd, sizeof(pfd)/sizeof(pfd[0]), timeout.tv_sec * 1000) == 0 || - (port6 = accept(wport6, (struct sockaddr *)&data6, &len)) < 0) -#else - if (select(wport6 + 1, &set, NULL, NULL, &timeout) == 0 || - (port6 = accept(wport6, (struct sockaddr *)&data6, &len)) < 0) -#endif - { - close(wport6); - wport6 = -1; - syslog(LOG_INFO, "passive mode data connection failed"); - return -1; - } - - /* ask passive connection to server */ - sa = (struct sockaddr *)&data4; - port4 = socket(sa->sa_family, SOCK_STREAM, 0); - if (port4 == -1) { - close(wport6); - close(port6); - wport6 = port6 = -1; - syslog(LOG_INFO, "passive mode data connection failed"); - return -1; - } - error = connect(port4, sa, sa->sa_len); - if (error < 0) { - close(wport6); - close(port4); - close(port6); - wport6 = port4 = port6 = -1; - syslog(LOG_INFO, "passive mode data connection failed"); - return -1; - } - - syslog(LOG_INFO, "passive mode data connection established"); - return 0; -} - -static int -ftp_copy(int src, int dst) -{ - int error, atmark, n; - - /* OOB data handling */ - error = ioctl(src, SIOCATMARK, &atmark); - if (error != -1 && atmark == 1) { - n = read(src, rbuf, 1); - if (n == -1) - goto bad; - send(dst, rbuf, n, MSG_OOB); -#if 0 - n = read(src, rbuf, sizeof(rbuf)); - if (n == -1) - goto bad; - write(dst, rbuf, n); - return n; -#endif - } - - n = read(src, rbuf, sizeof(rbuf)); - switch (n) { - case -1: - case 0: - return n; - default: - write(dst, rbuf, n); - return n; - } - - bad: - exit_failure("%s", strerror(errno)); - /*NOTREACHED*/ - return 0; /* to make gcc happy */ -} - -static int -ftp_copyresult(int src, int dst, enum state state) -{ - int error, atmark, n; - socklen_t len; - char *param; - int code; - char *a, *p; - int i; - - /* OOB data handling */ - error = ioctl(src, SIOCATMARK, &atmark); - if (error != -1 && atmark == 1) { - n = read(src, rbuf, 1); - if (n == -1) - goto bad; - send(dst, rbuf, n, MSG_OOB); -#if 0 - n = read(src, rbuf, sizeof(rbuf)); - if (n == -1) - goto bad; - write(dst, rbuf, n); - return n; -#endif - } - - n = read(src, rbuf, sizeof(rbuf)); - if (n <= 0) - return n; - rbuf[n] = '\0'; - - /* - * parse argument - */ - p = rbuf; - for (i = 0; i < 3; i++) { - if (!isdigit(*p)) { - /* invalid reply */ - write(dst, rbuf, n); - return n; - } - p++; - } - if (!isspace(*p)) { - /* invalid reply */ - write(dst, rbuf, n); - return n; - } - code = atoi(rbuf); - param = p; - /* param points to first non-command token, if any */ - while (*param && isspace(*param)) - param++; - if (!*param) - param = NULL; - - switch (state) { - case NONE: - if (!passivemode && rbuf[0] == '1') { - if (ftp_activeconn() < 0) { - n = snprintf(rbuf, sizeof(rbuf), - "425 Cannot open data connetion\r\n"); - if (n < 0 || n >= sizeof(rbuf)) - n = 0; - } - } - if (n) - write(dst, rbuf, n); - return n; - case LPRT: - case EPRT: - /* expecting "200 PORT command successful." */ - if (code == 200) { - p = strstr(rbuf, "PORT"); - if (p) { - p[0] = (state == LPRT) ? 'L' : 'E'; - p[1] = 'P'; - } - } else { - close(wport4); - wport4 = -1; - } - write(dst, rbuf, n); - return n; - case LPSV: - case EPSV: - /* - * expecting "227 Entering Passive Mode (x,x,x,x,x,x,x)" - * (in some cases result comes without paren) - */ - if (code != 227) { -passivefail0: - close(wport6); - wport6 = -1; - write(dst, rbuf, n); - return n; - } - - { - unsigned int ho[4], po[2]; - struct sockaddr_in *sin; - struct sockaddr_in6 *sin6; - u_short port; - - /* - * PASV result -> LPSV/EPSV result - */ - p = param; - while (*p && *p != '(' && !isdigit(*p)) /*)*/ - p++; - if (!*p) - goto passivefail0; /*XXX*/ - if (*p == '(') /*)*/ - p++; - n = sscanf(p, "%u,%u,%u,%u,%u,%u", - &ho[0], &ho[1], &ho[2], &ho[3], &po[0], &po[1]); - if (n != 6) - goto passivefail0; /*XXX*/ - - /* keep PORT parameter */ - memset(&data4, 0, sizeof(data4)); - sin = (struct sockaddr_in *)&data4; - sin->sin_len = sizeof(*sin); - sin->sin_family = AF_INET; - sin->sin_addr.s_addr = 0; - for (n = 0; n < 4; n++) { - sin->sin_addr.s_addr |= - htonl((ho[n] & 0xff) << ((3 - n) * 8)); - } - sin->sin_port = htons(((po[0] & 0xff) << 8) | (po[1] & 0xff)); - - /* get ready for passive data connection */ - memset(&data6, 0, sizeof(data6)); - sin6 = (struct sockaddr_in6 *)&data6; - sin6->sin6_len = sizeof(*sin6); - sin6->sin6_family = AF_INET6; - wport6 = socket(sin6->sin6_family, SOCK_STREAM, 0); - if (wport6 == -1) { -passivefail: - n = snprintf(sbuf, sizeof(sbuf), - "500 could not translate from PASV\r\n"); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - return n; - } -#ifdef IPV6_FAITH - { - int on = 1; - error = setsockopt(wport6, IPPROTO_IPV6, IPV6_FAITH, - &on, sizeof(on)); - if (error == -1) - exit_failure("setsockopt(IPV6_FAITH): %s", strerror(errno)); - } -#endif - error = bind(wport6, (struct sockaddr *)sin6, sin6->sin6_len); - if (error == -1) { - close(wport6); - wport6 = -1; - goto passivefail; - } - error = listen(wport6, 1); - if (error == -1) { - close(wport6); - wport6 = -1; - goto passivefail; - } - - /* transmit LPSV or EPSV */ - /* - * addr from dst, port from wport6 - */ - len = sizeof(data6); - error = getsockname(wport6, (struct sockaddr *)&data6, &len); - if (error == -1) { - close(wport6); - wport6 = -1; - goto passivefail; - } - sin6 = (struct sockaddr_in6 *)&data6; - port = sin6->sin6_port; - - len = sizeof(data6); - error = getsockname(dst, (struct sockaddr *)&data6, &len); - if (error == -1) { - close(wport6); - wport6 = -1; - goto passivefail; - } - sin6 = (struct sockaddr_in6 *)&data6; - sin6->sin6_port = port; - - if (state == LPSV) { - a = (char *)&sin6->sin6_addr; - p = (char *)&sin6->sin6_port; - n = snprintf(sbuf, sizeof(sbuf), -"228 Entering Long Passive Mode (%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d)\r\n", - 6, 16, UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]), - UC(a[4]), UC(a[5]), UC(a[6]), UC(a[7]), - UC(a[8]), UC(a[9]), UC(a[10]), UC(a[11]), - UC(a[12]), UC(a[13]), UC(a[14]), UC(a[15]), - 2, UC(p[0]), UC(p[1])); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(dst, sbuf, n); - passivemode = 1; - return n; - } else { - n = snprintf(sbuf, sizeof(sbuf), -"229 Entering Extended Passive Mode (|||%d|)\r\n", - ntohs(sin6->sin6_port)); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(dst, sbuf, n); - passivemode = 1; - return n; - } - } - } - - bad: - exit_failure("%s", strerror(errno)); - /*NOTREACHED*/ - return 0; /* to make gcc happy */ -} - -static int -ftp_copycommand(int src, int dst, enum state *state) -{ - int error, atmark, n; - socklen_t len; - unsigned int af, hal, ho[16], pal, po[2]; - char *a, *p, *q; - char cmd[5], *param; - struct sockaddr_in *sin; - struct sockaddr_in6 *sin6; - enum state nstate; - char ch; - int i; - - /* OOB data handling */ - error = ioctl(src, SIOCATMARK, &atmark); - if (error != -1 && atmark == 1) { - n = read(src, rbuf, 1); - if (n == -1) - goto bad; - send(dst, rbuf, n, MSG_OOB); -#if 0 - n = read(src, rbuf, sizeof(rbuf)); - if (n == -1) - goto bad; - write(dst, rbuf, n); - return n; -#endif - } - - n = read(src, rbuf, sizeof(rbuf)); - if (n <= 0) - return n; - rbuf[n] = '\0'; - - if (n < 4) { - write(dst, rbuf, n); - return n; - } - - /* - * parse argument - */ - p = rbuf; - q = cmd; - for (i = 0; i < 4; i++) { - if (!isalpha(*p)) { - /* invalid command */ - write(dst, rbuf, n); - return n; - } - *q++ = islower(*p) ? toupper(*p) : *p; - p++; - } - if (!isspace(*p)) { - /* invalid command */ - write(dst, rbuf, n); - return n; - } - *q = '\0'; - param = p; - /* param points to first non-command token, if any */ - while (*param && isspace(*param)) - param++; - if (!*param) - param = NULL; - - *state = NONE; - - if (strcmp(cmd, "LPRT") == 0 && param) { - /* - * LPRT -> PORT - */ - nstate = LPRT; - - close(wport4); - close(wport6); - close(port4); - close(port6); - wport4 = wport6 = port4 = port6 = -1; - - if (epsvall) { - n = snprintf(sbuf, sizeof(sbuf), "501 %s disallowed in EPSV ALL\r\n", - cmd); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - return n; - } - - n = sscanf(param, -"%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u", - &af, &hal, &ho[0], &ho[1], &ho[2], &ho[3], - &ho[4], &ho[5], &ho[6], &ho[7], - &ho[8], &ho[9], &ho[10], &ho[11], - &ho[12], &ho[13], &ho[14], &ho[15], - &pal, &po[0], &po[1]); - if (n != 21 || af != 6 || hal != 16|| pal != 2) { - n = snprintf(sbuf, sizeof(sbuf), - "501 illegal parameter to LPRT\r\n"); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - return n; - } - - /* keep LPRT parameter */ - memset(&data6, 0, sizeof(data6)); - sin6 = (struct sockaddr_in6 *)&data6; - sin6->sin6_len = sizeof(*sin6); - sin6->sin6_family = AF_INET6; - for (n = 0; n < 16; n++) - sin6->sin6_addr.s6_addr[n] = ho[n]; - sin6->sin6_port = htons(((po[0] & 0xff) << 8) | (po[1] & 0xff)); - -sendport: - /* get ready for active data connection */ - len = sizeof(data4); - error = getsockname(dst, (struct sockaddr *)&data4, &len); - if (error == -1) { -lprtfail: - n = snprintf(sbuf, sizeof(sbuf), - "500 could not translate to PORT\r\n"); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - return n; - } - if (((struct sockaddr *)&data4)->sa_family != AF_INET) - goto lprtfail; - sin = (struct sockaddr_in *)&data4; - sin->sin_port = 0; - wport4 = socket(sin->sin_family, SOCK_STREAM, 0); - if (wport4 == -1) - goto lprtfail; - error = bind(wport4, (struct sockaddr *)sin, sin->sin_len); - if (error == -1) { - close(wport4); - wport4 = -1; - goto lprtfail; - } - error = listen(wport4, 1); - if (error == -1) { - close(wport4); - wport4 = -1; - goto lprtfail; - } - - /* transmit PORT */ - len = sizeof(data4); - error = getsockname(wport4, (struct sockaddr *)&data4, &len); - if (error == -1) { - close(wport4); - wport4 = -1; - goto lprtfail; - } - if (((struct sockaddr *)&data4)->sa_family != AF_INET) { - close(wport4); - wport4 = -1; - goto lprtfail; - } - sin = (struct sockaddr_in *)&data4; - a = (char *)&sin->sin_addr; - p = (char *)&sin->sin_port; - n = snprintf(sbuf, sizeof(sbuf), "PORT %d,%d,%d,%d,%d,%d\r\n", - UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]), - UC(p[0]), UC(p[1])); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(dst, sbuf, n); - *state = nstate; - passivemode = 0; - return n; - } else if (strcmp(cmd, "EPRT") == 0 && param) { - /* - * EPRT -> PORT - */ - char *afp, *hostp, *portp; - struct addrinfo hints, *res; - - nstate = EPRT; - - close(wport4); - close(wport6); - close(port4); - close(port6); - wport4 = wport6 = port4 = port6 = -1; - - if (epsvall) { - n = snprintf(sbuf, sizeof(sbuf), "501 %s disallowed in EPSV ALL\r\n", - cmd); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - return n; - } - - p = param; - ch = *p++; /* boundary character */ - afp = p; - while (*p && *p != ch) - p++; - if (!*p) { -eprtparamfail: - n = snprintf(sbuf, sizeof(sbuf), - "501 illegal parameter to EPRT\r\n"); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - return n; - } - *p++ = '\0'; - hostp = p; - while (*p && *p != ch) - p++; - if (!*p) - goto eprtparamfail; - *p++ = '\0'; - portp = p; - while (*p && *p != ch) - p++; - if (!*p) - goto eprtparamfail; - *p++ = '\0'; - - n = sscanf(afp, "%d", &af); - if (n != 1 || af != 2) { - n = snprintf(sbuf, sizeof(sbuf), - "501 unsupported address family to EPRT\r\n"); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - return n; - } - memset(&hints, 0, sizeof(hints)); - hints.ai_family = AF_UNSPEC; - hints.ai_socktype = SOCK_STREAM; - hints.ai_protocol = IPPROTO_TCP; - error = getaddrinfo(hostp, portp, &hints, &res); - if (error) { - n = snprintf(sbuf, sizeof(sbuf), - "501 EPRT: %s\r\n", gai_strerror(error)); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - return n; - } - if (res->ai_next) { - n = snprintf(sbuf, sizeof(sbuf), - "501 EPRT: %s resolved to multiple addresses\r\n", hostp); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - freeaddrinfo(res); - return n; - } - - memcpy(&data6, res->ai_addr, res->ai_addrlen); - - freeaddrinfo(res); - goto sendport; - } else if (strcmp(cmd, "LPSV") == 0 && !param) { - /* - * LPSV -> PASV - */ - nstate = LPSV; - - close(wport4); - close(wport6); - close(port4); - close(port6); - wport4 = wport6 = port4 = port6 = -1; - - if (epsvall) { - n = snprintf(sbuf, sizeof(sbuf), "501 %s disallowed in EPSV ALL\r\n", - cmd); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - return n; - } - - /* transmit PASV */ - n = snprintf(sbuf, sizeof(sbuf), "PASV\r\n"); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(dst, sbuf, n); - *state = LPSV; - passivemode = 0; /* to be set to 1 later */ - return n; - } else if (strcmp(cmd, "EPSV") == 0 && !param) { - /* - * EPSV -> PASV - */ - close(wport4); - close(wport6); - close(port4); - close(port6); - wport4 = wport6 = port4 = port6 = -1; - - n = snprintf(sbuf, sizeof(sbuf), "PASV\r\n"); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(dst, sbuf, n); - *state = EPSV; - passivemode = 0; /* to be set to 1 later */ - return n; - } else if (strcmp(cmd, "EPSV") == 0 && param - && strncasecmp(param, "ALL", 3) == 0 && isspace(param[3])) { - /* - * EPSV ALL - */ - epsvall = 1; - n = snprintf(sbuf, sizeof(sbuf), "200 EPSV ALL command successful.\r\n"); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - return n; - } else if (strcmp(cmd, "PORT") == 0 || strcmp(cmd, "PASV") == 0) { - /* - * reject PORT/PASV - */ - n = snprintf(sbuf, sizeof(sbuf), "502 %s not implemented.\r\n", cmd); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - return n; - } else if (passivemode - && (strcmp(cmd, "STOR") == 0 - || strcmp(cmd, "STOU") == 0 - || strcmp(cmd, "RETR") == 0 - || strcmp(cmd, "LIST") == 0 - || strcmp(cmd, "NLST") == 0 - || strcmp(cmd, "APPE") == 0)) { - /* - * commands with data transfer. need to care about passive - * mode data connection. - */ - - if (ftp_passiveconn() < 0) { - n = snprintf(sbuf, sizeof(sbuf), "425 Cannot open data connetion\r\n"); - if (n < 0 || n >= sizeof(sbuf)) - n = 0; - if (n) - write(src, sbuf, n); - } else { - /* simply relay the command */ - write(dst, rbuf, n); - } - - *state = NONE; - return n; - } else { - /* simply relay it */ - *state = NONE; - write(dst, rbuf, n); - return n; - } - - bad: - exit_failure("%s", strerror(errno)); - /*NOTREACHED*/ - return 0; /* to make gcc happy */ -} diff --git a/usr.sbin/faithd/prefix.c b/usr.sbin/faithd/prefix.c deleted file mode 100644 index bdb763ad6f5b..000000000000 --- a/usr.sbin/faithd/prefix.c +++ /dev/null @@ -1,345 +0,0 @@ -/* $KAME: prefix.c,v 1.13 2003/09/02 22:50:17 itojun Exp $ */ -/* $FreeBSD$ */ - -/* - * Copyright (C) 2000 WIDE Project. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the project nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#ifndef offsetof -#define offsetof(type, member) ((size_t)(u_long)(&((type *)0)->member)) -#endif - -#include "faithd.h" -#include "prefix.h" - -static int prefix_set(const char *, struct prefix *, int); -static struct config *config_load1(const char *); -#if 0 -static void config_show1(const struct config *); -static void config_show(void); -#endif - -struct config *config_list = NULL; -const int niflags = NI_NUMERICHOST; - -static int -prefix_set(const char *s, struct prefix *prefix, int slash) -{ - char *p = NULL, *q, *r; - struct addrinfo hints, *res = NULL; - int max; - - p = strdup(s); - if (!p) - goto fail; - q = strchr(p, '/'); - if (q) { - if (!slash) - goto fail; - *q++ = '\0'; - } - - memset(&hints, 0, sizeof(hints)); - hints.ai_family = PF_UNSPEC; - hints.ai_socktype = SOCK_DGRAM; /*dummy*/ - hints.ai_flags = AI_NUMERICHOST; - if (getaddrinfo(p, "0", &hints, &res)) - goto fail; - if (res->ai_next || res->ai_addrlen > sizeof(prefix->a)) - goto fail; - memcpy(&prefix->a, res->ai_addr, res->ai_addrlen); - - switch (prefix->a.ss_family) { - case AF_INET: - max = 32; - break; - case AF_INET6: - max = 128; - break; - default: - max = -1; - break; - } - - if (q) { - r = NULL; - prefix->l = (int)strtoul(q, &r, 10); - if (!*q || *r) - goto fail; - if (prefix->l < 0 || prefix->l > max) - goto fail; - } else - prefix->l = max; - - if (p) - free(p); - if (res) - freeaddrinfo(res); - return 0; - -fail: - if (p) - free(p); - if (res) - freeaddrinfo(res); - return -1; -} - -const char * -prefix_string(const struct prefix *prefix) -{ - static char buf[NI_MAXHOST + 20]; - char hbuf[NI_MAXHOST]; - - if (getnameinfo((const struct sockaddr *)&prefix->a, prefix->a.ss_len, - hbuf, sizeof(hbuf), NULL, 0, niflags)) - return NULL; - snprintf(buf, sizeof(buf), "%s/%d", hbuf, prefix->l); - return buf; -} - -int -prefix_match(const struct prefix *prefix, const struct sockaddr *sa) -{ - struct sockaddr_storage a, b; - char *pa, *pb; - int off, l; - - if (prefix->a.ss_family != sa->sa_family || - prefix->a.ss_len != sa->sa_len) - return 0; - - if (prefix->a.ss_len > sizeof(a) || sa->sa_len > sizeof(b)) - return 0; - - switch (prefix->a.ss_family) { - case AF_INET: - off = offsetof(struct sockaddr_in, sin_addr); - break; - case AF_INET6: - off = offsetof(struct sockaddr_in6, sin6_addr); - break; - default: - if (memcmp(&prefix->a, sa, prefix->a.ss_len) != 0) - return 0; - else - return 1; - } - - memcpy(&a, &prefix->a, prefix->a.ss_len); - memcpy(&b, sa, sa->sa_len); - l = prefix->l / 8 + (prefix->l % 8 ? 1 : 0); - - /* overrun check */ - if (off + l > a.ss_len) - return 0; - - pa = ((char *)&a) + off; - pb = ((char *)&b) + off; - if (prefix->l % 8) { - pa[prefix->l / 8] &= 0xff00 >> (prefix->l % 8); - pb[prefix->l / 8] &= 0xff00 >> (prefix->l % 8); - } - if (memcmp(pa, pb, l) != 0) - return 0; - else - return 1; -} - -/* - * prefix/prefixlen permit/deny prefix/prefixlen [srcaddr] - * 3ffe::/16 permit 10.0.0.0/8 10.1.1.1 - */ -static struct config * -config_load1(const char *line) -{ - struct config *conf; - char buf[BUFSIZ]; - char *p; - char *token[4]; - int i; - - if (strlen(line) + 1 > sizeof(buf)) - return NULL; - strlcpy(buf, line, sizeof(buf)); - - p = strchr(buf, '\n'); - if (!p) - return NULL; - *p = '\0'; - p = strchr(buf, '#'); - if (p) - *p = '\0'; - if (strlen(buf) == 0) - return NULL; - - p = buf; - memset(token, 0, sizeof(token)); - for (i = 0; i < sizeof(token) / sizeof(token[0]); i++) { - token[i] = strtok(p, "\t "); - p = NULL; - if (token[i] == NULL) - break; - } - /* extra tokens? */ - if (strtok(p, "\t ") != NULL) - return NULL; - /* insufficient tokens */ - switch (i) { - case 3: - case 4: - break; - default: - return NULL; - } - - conf = (struct config *)malloc(sizeof(*conf)); - if (conf == NULL) - return NULL; - memset(conf, 0, sizeof(*conf)); - - if (strcasecmp(token[1], "permit") == 0) - conf->permit = 1; - else if (strcasecmp(token[1], "deny") == 0) - conf->permit = 0; - else { - /* invalid keyword is considered as "deny" */ - conf->permit = 0; - } - - if (prefix_set(token[0], &conf->match, 1) < 0) - goto fail; - if (prefix_set(token[2], &conf->dest, 1) < 0) - goto fail; - if (token[3]) { - if (prefix_set(token[3], &conf->src, 0) < 0) - goto fail; - } - - return conf; - -fail: - free(conf); - return NULL; -} - -int -config_load(const char *configfile) -{ - FILE *fp; - char buf[BUFSIZ]; - struct config *conf, *p; - struct config sentinel; - - config_list = NULL; - - if (!configfile) - configfile = _PATH_PREFIX_CONF; - fp = fopen(configfile, "r"); - if (fp == NULL) - return -1; - - p = &sentinel; - sentinel.next = NULL; - while (fgets(buf, sizeof(buf), fp) != NULL) { - conf = config_load1(buf); - if (conf) { - p->next = conf; - p = p->next; - } - } - config_list = sentinel.next; - - fclose(fp); - return 0; -} - -#if 0 -static void -config_show1(const struct config *conf) -{ - const char *p; - - p = prefix_string(&conf->match); - printf("%s", p ? p : "?"); - - if (conf->permit) - printf(" permit"); - else - printf(" deny"); - - p = prefix_string(&conf->dest); - printf(" %s", p ? p : "?"); - - printf("\n"); -} - -static void -config_show() -{ - struct config *conf; - - for (conf = config_list; conf; conf = conf->next) - config_show1(conf); -} -#endif - -const struct config * -config_match(struct sockaddr *sa1, struct sockaddr *sa2) -{ - static struct config conf; - const struct config *p; - - if (sa1->sa_len > sizeof(conf.match.a) || - sa2->sa_len > sizeof(conf.dest.a)) - return NULL; - - memset(&conf, 0, sizeof(conf)); - if (!config_list) { - conf.permit = 1; - memcpy(&conf.match.a, sa1, sa1->sa_len); - memcpy(&conf.dest.a, sa2, sa2->sa_len); - return &conf; - } - - for (p = config_list; p; p = p->next) - if (prefix_match(&p->match, sa1) && prefix_match(&p->dest, sa2)) - return p; - - return NULL; -} diff --git a/usr.sbin/faithd/prefix.h b/usr.sbin/faithd/prefix.h deleted file mode 100644 index 4d6b3d59c463..000000000000 --- a/usr.sbin/faithd/prefix.h +++ /dev/null @@ -1,52 +0,0 @@ -/* $KAME: prefix.h,v 1.4 2001/09/05 03:04:21 itojun Exp $ */ -/* $FreeBSD$ */ - -/* - * Copyright (C) 2000 WIDE Project. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the project nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -struct prefix { - struct sockaddr_storage a; - int l; -}; - -struct config { - struct config *next; - - int permit; - struct prefix match; - struct prefix dest; - struct prefix src; /* src to use for outgoing connection */ -}; - -#define _PATH_PREFIX_CONF "/etc/faithd.conf" - -extern const char *prefix_string(const struct prefix *); -extern int prefix_match(const struct prefix *, const struct sockaddr *); -extern int config_load(const char *); -extern const struct config *config_match(struct sockaddr *, struct sockaddr *); diff --git a/usr.sbin/faithd/tcp.c b/usr.sbin/faithd/tcp.c deleted file mode 100644 index 219769441471..000000000000 --- a/usr.sbin/faithd/tcp.c +++ /dev/null @@ -1,324 +0,0 @@ -/* $KAME: tcp.c,v 1.13 2003/09/02 22:49:21 itojun Exp $ */ - -/* - * Copyright (C) 1997 and 1998 WIDE Project. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the project nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#include -__FBSDID("$FreeBSD$"); - -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -#include "faithd.h" - -static char tcpbuf[16*1024]; - /* bigger than MSS and may be lesser than window size */ -static int tblen, tboff, oob_exists; -static fd_set readfds, writefds, exceptfds; -static char atmark_buf[2]; -static pid_t cpid = (pid_t)0; -static pid_t ppid = (pid_t)0; -volatile time_t child_lastactive = (time_t)0; -static time_t parent_lastactive = (time_t)0; - -static void sig_ctimeout(int); -static void sig_child(int); -static void notify_inactive(void); -static void notify_active(void); -static void send_data(int, int, const char *, int); -static void relay(int, int, const char *, int); - -/* - * Inactivity timer: - * - child side (ppid != 0) will send SIGUSR1 to parent every (FAITH_TIMEOUT/4) - * second if traffic is active. if traffic is inactive, don't send SIGUSR1. - * - parent side (ppid == 0) will check the last SIGUSR1 it have seen. - */ -static void -sig_ctimeout(int sig __unused) -{ - /* parent side: record notification from the child */ - if (dflag) - syslog(LOG_DEBUG, "activity timer from child"); - child_lastactive = time(NULL); -} - -/* parent will terminate if child dies. */ -static void -sig_child(int sig __unused) -{ - int status; - pid_t pid; - - pid = wait3(&status, WNOHANG, (struct rusage *)0); - if (pid > 0 && WEXITSTATUS(status)) - syslog(LOG_WARNING, "child %ld exit status 0x%x", - (long)pid, status); - exit_success("terminate connection due to child termination"); -} - -static void -notify_inactive() -{ - time_t t; - - /* only on parent side... */ - if (ppid) - return; - - /* parent side should check for timeout. */ - t = time(NULL); - if (dflag) { - syslog(LOG_DEBUG, "parent side %sactive, child side %sactive", - (FAITH_TIMEOUT < t - parent_lastactive) ? "in" : "", - (FAITH_TIMEOUT < t - child_lastactive) ? "in" : ""); - } - - if (FAITH_TIMEOUT < t - child_lastactive - && FAITH_TIMEOUT < t - parent_lastactive) { - /* both side timeouted */ - signal(SIGCHLD, SIG_DFL); - kill(cpid, SIGTERM); - wait(NULL); - exit_failure("connection timeout"); - /* NOTREACHED */ - } -} - -static void -notify_active() -{ - if (ppid) { - /* child side: notify parent of active traffic */ - time_t t; - t = time(NULL); - if (FAITH_TIMEOUT / 4 < t - child_lastactive) { - if (kill(ppid, SIGUSR1) < 0) { - exit_failure("terminate connection due to parent termination"); - /* NOTREACHED */ - } - child_lastactive = t; - } - } else { - /* parent side */ - parent_lastactive = time(NULL); - } -} - -static void -send_data(int s_rcv, int s_snd, const char *service __unused, int direction) -{ - int cc; - - if (oob_exists) { - cc = send(s_snd, atmark_buf, 1, MSG_OOB); - if (cc == -1) - goto retry_or_err; - oob_exists = 0; - if (s_rcv >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(s_rcv, &exceptfds); - } - - for (; tboff < tblen; tboff += cc) { - cc = write(s_snd, tcpbuf + tboff, tblen - tboff); - if (cc < 0) - goto retry_or_err; - } -#ifdef DEBUG - if (tblen) { - if (tblen >= sizeof(tcpbuf)) - tblen = sizeof(tcpbuf) - 1; - tcpbuf[tblen] = '\0'; - syslog(LOG_DEBUG, "from %s (%dbytes): %s", - direction == 1 ? "client" : "server", tblen, tcpbuf); - } -#endif /* DEBUG */ - tblen = 0; tboff = 0; - if (s_snd >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_CLR(s_snd, &writefds); - if (s_rcv >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(s_rcv, &readfds); - return; - retry_or_err: - if (errno != EAGAIN) - exit_failure("writing relay data failed: %s", strerror(errno)); - if (s_snd >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(s_snd, &writefds); -} - -static void -relay(int s_rcv, int s_snd, const char *service, int direction) -{ - int atmark, error, maxfd; - struct timeval tv; - fd_set oreadfds, owritefds, oexceptfds; - - FD_ZERO(&readfds); - FD_ZERO(&writefds); - FD_ZERO(&exceptfds); - fcntl(s_snd, F_SETFD, O_NONBLOCK); - oreadfds = readfds; owritefds = writefds; oexceptfds = exceptfds; - if (s_rcv >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(s_rcv, &readfds); - FD_SET(s_rcv, &exceptfds); - oob_exists = 0; - maxfd = (s_rcv > s_snd) ? s_rcv : s_snd; - - for (;;) { - tv.tv_sec = FAITH_TIMEOUT / 4; - tv.tv_usec = 0; - oreadfds = readfds; - owritefds = writefds; - oexceptfds = exceptfds; - error = select(maxfd + 1, &readfds, &writefds, &exceptfds, &tv); - if (error == -1) { - if (errno == EINTR) - continue; - exit_failure("select: %s", strerror(errno)); - } else if (error == 0) { - readfds = oreadfds; - writefds = owritefds; - exceptfds = oexceptfds; - notify_inactive(); - continue; - } - - /* activity notification */ - notify_active(); - - if (FD_ISSET(s_rcv, &exceptfds)) { - error = ioctl(s_rcv, SIOCATMARK, &atmark); - if (error != -1 && atmark == 1) { - int cc; - oob_read_retry: - cc = read(s_rcv, atmark_buf, 1); - if (cc == 1) { - if (s_rcv >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_CLR(s_rcv, &exceptfds); - if (s_snd >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(s_snd, &writefds); - oob_exists = 1; - } else if (cc == -1) { - if (errno == EINTR) - goto oob_read_retry; - exit_failure("reading oob data failed" - ": %s", - strerror(errno)); - } - } - } - if (FD_ISSET(s_rcv, &readfds)) { - relaydata_read_retry: - tblen = read(s_rcv, tcpbuf, sizeof(tcpbuf)); - tboff = 0; - - switch (tblen) { - case -1: - if (errno == EINTR) - goto relaydata_read_retry; - exit_failure("reading relay data failed: %s", - strerror(errno)); - /* NOTREACHED */ - case 0: - /* to close opposite-direction relay process */ - shutdown(s_snd, 0); - - close(s_rcv); - close(s_snd); - exit_success("terminating %s relay", service); - /* NOTREACHED */ - default: - if (s_rcv >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_CLR(s_rcv, &readfds); - if (s_snd >= FD_SETSIZE) - exit_failure("descriptor too big"); - FD_SET(s_snd, &writefds); - break; - } - } - if (FD_ISSET(s_snd, &writefds)) - send_data(s_rcv, s_snd, service, direction); - } -} - -void -tcp_relay(int s_src, int s_dst, const char *service) -{ - syslog(LOG_INFO, "starting %s relay", service); - - child_lastactive = parent_lastactive = time(NULL); - - cpid = fork(); - switch (cpid) { - case -1: - exit_failure("tcp_relay: can't fork grand child: %s", - strerror(errno)); - /* NOTREACHED */ - case 0: - /* child process: relay going traffic */ - ppid = getppid(); - /* this is child so reopen log */ - closelog(); - openlog(logname, LOG_PID | LOG_NOWAIT, LOG_DAEMON); - relay(s_src, s_dst, service, 1); - /* NOTREACHED */ - default: - /* parent process: relay coming traffic */ - ppid = (pid_t)0; - signal(SIGUSR1, sig_ctimeout); - signal(SIGCHLD, sig_child); - relay(s_dst, s_src, service, 0); - /* NOTREACHED */ - } -} diff --git a/usr.sbin/faithd/test/faithd.rb b/usr.sbin/faithd/test/faithd.rb deleted file mode 100644 index 682f540db98a..000000000000 --- a/usr.sbin/faithd/test/faithd.rb +++ /dev/null @@ -1,312 +0,0 @@ -# faithd, ruby version. requires v6-enabled ruby. -# -# highly experimental (not working right at all) and very limited -# functionality. -# -# $Id: faithd.rb,v 1.1.2.4 1999/05/10 17:06:30 itojun Exp $ -# $FreeBSD$ - -require "socket" -require "thread" - -# XXX should be derived from system headers -IPPROTO_IPV6 = 41 -IPV6_FAITH = 29 -DEBUG = true -DEBUG_LOOPBACK = true - -# TODO: OOB data handling -def tcpcopy(s1, s2, m) - STDERR.print "tcpcopy #{s1} #{s2}\n" if DEBUG - buf = "" - while TRUE - begin - buf = s1.sysread(100) - s2.syswrite(buf) - rescue EOFError - break - rescue IOError - break - end - end - STDERR.print "tcpcopy #{s1} #{s2} finished\n" if DEBUG - s1.shutdown(0) - s2.shutdown(1) -end - -def relay_ftp_passiveconn(s6, s4, dport6, dport4) - Thread.start do - d6 = TCPserver.open("::", dport6).accept - d4 = TCPsocket.open(s4.getpeer[3], dport4) - t = [] - t[0] = Thread.start do - tcpcopy(d6, d4) - end - t[1] = Thread.start do - tcpcopy(d4, d6) - end - for i in t - i.join - end - d4.close - d6.close - end -end - -def ftp_parse_2428(line) - if (line[0] != line[line.length - 1]) - return nil - end - t = line.split(line[0 .. 0]) # as string - if (t.size != 4 || t[1] !~ /^[12]$/ || t[3] !~ /^\d+$/) - return nil - end - return t[1 .. 3] -end - -def relay_ftp_command(s6, s4, state) - STDERR.print "relay_ftp_command start\n" if DEBUG - while TRUE - begin - STDERR.print "s6.gets\n" if DEBUG - line = s6.gets - STDERR.print "line is #{line}\n" if DEBUG - if line == nil - return nil - end - - # translate then copy - STDERR.print "line is #{line}\n" if DEBUG - if (line =~ /^EPSV\r\n/i) - STDERR.print "EPSV -> PASV\n" if DEBUG - line = "PASV\n" - state = "EPSV" - elsif (line =~ /^EPRT\s+(.+)\r\n/i) - t = ftp_parse_2428($1) - if t == nil - s6.puts "501 illegal parameter to EPRT\r\n" - next - end - - # some tricks should be here - s6.puts "501 illegal parameter to EPRT\r\n" - next - end - STDERR.print "fail: send #{line} as is\n" if DEBUG - s4.puts(line) - break - rescue EOFError - return nil - rescue IOError - return nil - end - end - STDERR.print "relay_ftp_command finish\n" if DEBUG - return state -end - -def relay_ftp_status(s4, s6, state) - STDERR.print "relay_ftp_status start\n" if DEBUG - while TRUE - begin - line = s4.gets - if line == nil - return nil - end - - # translate then copy - s6.puts(line) - - next if line =~ /^\d\d\d-/ - next if line !~ /^\d/ - - # special post-processing - case line - when /^221 / # result to QUIT - s4.shutdown(0) - s6.shutdown(1) - end - - break if (line =~ /^\d\d\d /) - rescue EOFError - return nil - rescue IOError - return nil - end - end - STDERR.print "relay_ftp_status finish\n" if DEBUG - return state -end - -def relay_ftp(sock, name) - STDERR.print "relay_ftp(#{sock}, #{name})\n" if DEBUG - while TRUE - STDERR.print "relay_ftp(#{sock}, #{name}) accepting\n" if DEBUG - s = sock.accept - STDERR.print "relay_ftp(#{sock}, #{name}) accepted #{s}\n" if DEBUG - Thread.start do - threads = [] - STDERR.print "accepted #{s} -> #{Thread.current}\n" if DEBUG - s6 = s - dest6 = s.addr[3] - if !DEBUG_LOOPBACK - t = s.getsockname.unpack("x8 x12 C4") - dest4 = "#{t[0]}.#{t[1]}.#{t[2]}.#{t[3]}" - port4 = s.addr[1] - else - dest4 = "127.0.0.1" - port4 = "ftp" - end - if DEBUG - STDERR.print "IPv6 dest: #{dest6} IPv4 dest: #{dest4}\n" if DEBUG - end - STDERR.print "connect to #{dest4} #{port4}\n" if DEBUG - s4 = TCPsocket.open(dest4, port4) - STDERR.print "connected to #{dest4} #{port4}, #{s4.addr[1]}\n" if DEBUG - state = 0 - while TRUE - # translate status line - state = relay_ftp_status(s4, s6, state) - break if state == nil - # translate command line - state = relay_ftp_command(s6, s4, state) - break if state == nil - end - STDERR.print "relay_ftp(#{sock}, #{name}) closing s4\n" if DEBUG - s4.close - STDERR.print "relay_ftp(#{sock}, #{name}) closing s6\n" if DEBUG - s6.close - STDERR.print "relay_ftp(#{sock}, #{name}) done\n" if DEBUG - end - end - STDERR.print "relay_ftp(#{sock}, #{name}) finished\n" if DEBUG -end - -def relay_tcp(sock, name) - STDERR.print "relay_tcp(#{sock}, #{name})\n" if DEBUG - while TRUE - STDERR.print "relay_tcp(#{sock}, #{name}) accepting\n" if DEBUG - s = sock.accept - STDERR.print "relay_tcp(#{sock}, #{name}) accepted #{s}\n" if DEBUG - Thread.start do - threads = [] - STDERR.print "accepted #{s} -> #{Thread.current}\n" if DEBUG - s6 = s - dest6 = s.addr[3] - if !DEBUG_LOOPBACK - t = s.getsockname.unpack("x8 x12 C4") - dest4 = "#{t[0]}.#{t[1]}.#{t[2]}.#{t[3]}" - port4 = s.addr[1] - else - dest4 = "127.0.0.1" - port4 = "telnet" - end - if DEBUG - STDERR.print "IPv6 dest: #{dest6} IPv4 dest: #{dest4}\n" if DEBUG - end - STDERR.print "connect to #{dest4} #{port4}\n" if DEBUG - s4 = TCPsocket.open(dest4, port4) - STDERR.print "connected to #{dest4} #{port4}, #{s4.addr[1]}\n" if DEBUG - [0, 1].each do |i| - threads[i] = Thread.start do - if (i == 0) - tcpcopy(s6, s4) - else - tcpcopy(s4, s6) - end - end - end - STDERR.print "relay_tcp(#{sock}, #{name}) wait\n" if DEBUG - for i in threads - STDERR.print "relay_tcp(#{sock}, #{name}) wait #{i}\n" if DEBUG - i.join - STDERR.print "relay_tcp(#{sock}, #{name}) wait #{i} done\n" if DEBUG - end - STDERR.print "relay_tcp(#{sock}, #{name}) closing s4\n" if DEBUG - s4.close - STDERR.print "relay_tcp(#{sock}, #{name}) closing s6\n" if DEBUG - s6.close - STDERR.print "relay_tcp(#{sock}, #{name}) done\n" if DEBUG - end - end - STDERR.print "relay_tcp(#{sock}, #{name}) finished\n" if DEBUG -end - -def usage() - STDERR.print "usage: #{$0} [-f] port...\n" -end - -#------------------------------------------------------------ - -$mode = "tcp" - -while ARGV[0] =~ /^-/ do - case ARGV[0] - when /^-f/ - $mode = "ftp" - else - usage() - exit 0 - end - ARGV.shift -end - -if ARGV.length == 0 - usage() - exit 1 -end - -ftpport = Socket.getservbyname("ftp") - -res = [] -for port in ARGV - t = Socket.getaddrinfo(nil, port, Socket::PF_INET6, Socket::SOCK_STREAM, - nil, Socket::AI_PASSIVE) - if (t.size <= 0) - STDERR.print "FATAL: getaddrinfo failed (port=#{port})\n" - exit 1 - end - res += t -end - -sockpool = [] -names = [] -listenthreads = [] - -res.each do |i| - s = TCPserver.new(i[3], i[1]) - n = Socket.getnameinfo(s.getsockname, Socket::NI_NUMERICHOST|Socket::NI_NUMERICSERV).join(" port ") - if i[6] == IPPROTO_IPV6 - s.setsockopt(i[6], IPV6_FAITH, 1) - end - s.setsockopt(Socket::SOL_SOCKET, Socket::SO_REUSEADDR, 1) - sockpool.push s - names.push n -end - -if DEBUG - (0 .. sockpool.size - 1).each do |i| - STDERR.print "listen[#{i}]: #{sockpool[i]} #{names[i]}\n" if DEBUG - end -end - -(0 .. sockpool.size - 1).each do |i| - listenthreads[i] = Thread.start do - if DEBUG - STDERR.print "listen[#{i}]: thread #{Thread.current}\n" if DEBUG - end - STDERR.print "listen[#{i}]: thread #{Thread.current}\n" if DEBUG - case $mode - when "tcp" - relay_tcp(sockpool[i], names[i]) - when "ftp" - relay_ftp(sockpool[i], names[i]) - end - end -end - -for i in listenthreads - i.join -end - -exit 0 diff --git a/usr.sbin/ftp-proxy/ftp-proxy/Makefile b/usr.sbin/ftp-proxy/ftp-proxy/Makefile deleted file mode 100644 index 686bac436e1e..000000000000 --- a/usr.sbin/ftp-proxy/ftp-proxy/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# $FreeBSD$ - -.PATH: ${.CURDIR}/../../../contrib/pf/ftp-proxy - -PROG= ftp-proxy -MAN= ftp-proxy.8 - -SRCS= ftp-proxy.c filter.c - -CFLAGS+= -I${.CURDIR}/../../../contrib/pf/libevent - -LDADD+= ${LIBEVENT} -DPADD+= ${LIBEVENT} - -WARNS?= 3 - -NO_PIE= yes - -.include diff --git a/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend b/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend deleted file mode 100644 index bbe5cc80eb0b..000000000000 --- a/usr.sbin/ftp-proxy/ftp-proxy/Makefile.depend +++ /dev/null @@ -1,21 +0,0 @@ -# Autogenerated - do NOT edit! - -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - -DIRDEPS = \ - gnu/lib/csu \ - gnu/lib/libgcc \ - include \ - include/arpa \ - include/xlocale \ - lib/${CSU_DIR} \ - lib/libc \ - lib/libcompiler_rt \ - usr.sbin/ftp-proxy/libevent \ - - -.include - -.if ${DEP_RELDIR} == ${_DEP_RELDIR} -# local dependencies - needed for -jN in clean tree -.endif diff --git a/usr.sbin/ftp-proxy/libevent/Makefile b/usr.sbin/ftp-proxy/libevent/Makefile deleted file mode 100644 index a8ff09b9ba5f..000000000000 --- a/usr.sbin/ftp-proxy/libevent/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# $FreeBSD$ - -.PATH: ${.CURDIR}/../../../contrib/pf/libevent - - -LIB= event -INTERNALLIB=yes -SRCS= buffer.c evbuffer.c event.c kqueue.c log.c poll.c select.c signal.c -HDRS= event.h - -CFLAGS+= -I${.CURDIR} \ - -DHAVE_CLOCK_GETTIME \ - -DHAVE_FCNTL_H \ - -DHAVE_POLL \ - -DHAVE_SELECT \ - -DHAVE_SETFD \ - -DHAVE_STDARG_H \ - -DHAVE_SYS_IOCTL_H \ - -DHAVE_SYS_TIME_H \ - -DHAVE_UNISTD_H \ - -DHAVE_VASPRINTF \ - -DHAVE_WORKING_KQUEUE \ - -DVERSION='"1.3b"' - -WARNS?= 2 - -.include diff --git a/usr.sbin/ftp-proxy/libevent/Makefile.depend b/usr.sbin/ftp-proxy/libevent/Makefile.depend deleted file mode 100644 index 639d45d8b9b0..000000000000 --- a/usr.sbin/ftp-proxy/libevent/Makefile.depend +++ /dev/null @@ -1,14 +0,0 @@ -# Autogenerated - do NOT edit! - -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - -DIRDEPS = \ - include \ - include/xlocale \ - - -.include - -.if ${DEP_RELDIR} == ${_DEP_RELDIR} -# local dependencies - needed for -jN in clean tree -.endif From 51486565d80c7f6dd7d6b0f89cf440eb6f93651d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 20 Nov 2014 22:42:40 +0000 Subject: [PATCH 178/228] Use latest version --- share/mk/dirdeps.mk | 80 +++++++++++++++++++++++++++++++++--------- share/mk/meta.stage.mk | 28 +++++++++++++-- 2 files changed, 89 insertions(+), 19 deletions(-) diff --git a/share/mk/dirdeps.mk b/share/mk/dirdeps.mk index 52950bd1eb1a..a2f3686f4766 100644 --- a/share/mk/dirdeps.mk +++ b/share/mk/dirdeps.mk @@ -1,4 +1,4 @@ -# $Id: dirdeps.mk,v 1.33 2014/03/14 22:25:35 sjg Exp $ +# $Id: dirdeps.mk,v 1.38 2014/11/20 22:22:30 sjg Exp $ # Copyright (c) 2010-2013, Juniper Networks, Inc. # All rights reserved. @@ -111,7 +111,9 @@ # TARGET_SPEC = ${TARGET_SPEC_VARS:@v@${$v:U}@:ts,} # -.if ${.MAKE.LEVEL} == 0 +# touch this at your peril +_DIRDEP_USE_LEVEL?= 0 +.if ${.MAKE.LEVEL} == ${_DIRDEP_USE_LEVEL} # only the first instance is interested in all this # First off, we want to know what ${MACHINE} to build for. @@ -201,7 +203,7 @@ _last_dependfile := ${.INCLUDEDFROMFILE:M${.MAKE.DEPENDFILE_PREFIX}*} .else _last_dependfile := ${.MAKE.MAKEFILES:M*/${.MAKE.DEPENDFILE_PREFIX}*:[-1]} .endif -.if !empty(_debug_reldir) +.if ${_debug_reldir:U0} .info ${DEP_RELDIR}.${DEP_TARGET_SPEC}: _last_dependfile='${_last_dependfile}' .endif @@ -260,7 +262,7 @@ _DEP_RELDIR := ${DEP_RELDIR} # things we skip for host tools SKIP_HOSTDIR ?= -NSkipHostDir = ${SKIP_HOSTDIR:N*.host:S,$,.host,:N.host:${M_ListToSkip}} +NSkipHostDir = ${SKIP_HOSTDIR:N*.host*:S,$,.host*,:N.host*:S,^,${SRCTOP}/,:${M_ListToSkip}} # things we always skip # SKIP_DIRDEPS allows for adding entries on command line. @@ -282,7 +284,7 @@ DIRDEPS_FILTER += M${_DEP_RELDIR}* # this is what we run below DIRDEP_MAKE?= ${.MAKE} -# we supress SUBDIR when visiting the leaves +# we suppress SUBDIR when visiting the leaves # we assume sys.mk will set MACHINE_ARCH # you can add extras to DIRDEP_USE_ENV # if there is no makefile in the target directory, we skip it. @@ -332,8 +334,16 @@ _only_machines := ${_only_machines:${NOT_MACHINE_LIST:${M_ListToSkip}}} DIRDEPS ?= ${RELDIR} .endif # target -_debug_reldir := ${DEBUG_DIRDEPS:@x@${DEP_RELDIR:M$x}${${DEP_RELDIR}.${DEP_MACHINE}:L:M$x}@} -_debug_search := ${DEBUG_DIRDEPS:@x@${DEP_RELDIR:M$x}${${DEP_RELDIR}.depend:L:M$x}@} +.if ${DEBUG_DIRDEPS:@x@${DEP_RELDIR:M$x}${${DEP_RELDIR}.${DEP_MACHINE}:L:M$x}@} != "" +_debug_reldir = 1 +.else +_debug_reldir = 0 +.endif +.if ${DEBUG_DIRDEPS:@x@${DEP_RELDIR:M$x}${${DEP_RELDIR}.depend:L:M$x}@} != "" +_debug_search = 1 +.else +_debug_search = 0 +.endif # the rest is done repeatedly for every Makefile.depend we read. # if we are anything but the original dir we care only about the @@ -368,7 +378,8 @@ _machines := ${_machines:O:u} # we need to tweak _machines _dm := ${DEP_MACHINE} # apply the same filtering that we do when qualifying DIRDEPS. -_machines := ${_machines:@DEP_MACHINE@${DEP_TARGET_SPEC}@:${M_dep_qual_fixes:ts:}:O:u} +# M_dep_qual_fixes expects .${MACHINE}* so add (and remove) '.' +_machines := ${_machines:@DEP_MACHINE@${DEP_TARGET_SPEC}@:S,^,.,:${M_dep_qual_fixes:ts:}:O:u:S,^.,,} DEP_MACHINE := ${_dm} .endif @@ -388,7 +399,7 @@ _build_dirs += ${_machines:N${DEP_TARGET_SPEC}:@m@${_CURDIR}.$m@} .endif .endif -.if !empty(_debug_reldir) +.if ${_debug_reldir} .info ${DEP_RELDIR}.${DEP_TARGET_SPEC}: DIRDEPS='${DIRDEPS}' .info ${DEP_RELDIR}.${DEP_TARGET_SPEC}: _machines='${_machines}' .endif @@ -419,7 +430,7 @@ __hostdpadd := ${DPADD:U.:M${HOST_OBJTOP}/*:S,${HOST_OBJTOP}/,,:H:${NSkipDir}:${ __qual_depdirs += ${__hostdpadd} .endif -.if !empty(_debug_reldir) +.if ${_debug_reldir} .info depdirs=${__depdirs} .info qualified=${__qual_depdirs} .info unqualified=${__unqual_depdirs} @@ -429,7 +440,8 @@ __qual_depdirs += ${__hostdpadd} _build_dirs += \ ${__qual_depdirs:M*.host:${NSkipHostDir}:N.host} \ ${__qual_depdirs:N*.host} \ - ${_machines:@m@${__unqual_depdirs:@d@$d.$m@}@} + ${_machines:Mhost*:@m@${__unqual_depdirs:@d@$d.$m@}@:${NSkipHostDir}:N.host} \ + ${_machines:Nhost*:@m@${__unqual_depdirs:@d@$d.$m@}@} # qualify everything now _build_dirs := ${_build_dirs:${M_dep_qual_fixes:ts:}:O:u} @@ -445,7 +457,7 @@ _build_dirs := ${_build_dirs:${M_dep_qual_fixes:ts:}:O:u} dirdeps: ${_build_dirs} ${_build_dirs}: _DIRDEP_USE -.if !empty(_debug_reldir) +.if ${_debug_reldir} .info ${DEP_RELDIR}.${DEP_TARGET_SPEC}: needs: ${_build_dirs} .endif @@ -454,13 +466,13 @@ ${_build_dirs}: _DIRDEP_USE # it would be nice to do :N${.TARGET} .if !empty(__qual_depdirs) .for q in ${__qual_depdirs:${M_dep_qual_fixes:ts:}:E:O:u:N$m} -.if !empty(_debug_reldir) || ${DEBUG_DIRDEPS:@x@${${DEP_RELDIR}.$m:L:M$x}${${DEP_RELDIR}.$q:L:M$x}@} != "" +.if ${_debug_reldir} || ${DEBUG_DIRDEPS:@x@${${DEP_RELDIR}.$m:L:M$x}${${DEP_RELDIR}.$q:L:M$x}@} != "" .info ${DEP_RELDIR}.$m: graph: ${_build_dirs:M*.$q} .endif ${_this_dir}.$m: ${_build_dirs:M*.$q} .endfor .endif -.if !empty(_debug_reldir) +.if ${_debug_reldir} .info ${DEP_RELDIR}.$m: graph: ${_build_dirs:M*.$m:N${_this_dir}.$m} .endif ${_this_dir}.$m: ${_build_dirs:M*.$m:N${_this_dir}.$m} @@ -473,7 +485,7 @@ ${_this_dir}.$m: ${_build_dirs:M*.$m:N${_this_dir}.$m} .if ${_DIRDEP_CHECKED:M$d} == "" # once only _DIRDEP_CHECKED += $d -.if !empty(_debug_search) +.if ${_debug_search} .info checking $d .endif # Note: _build_dirs is fully qualifed so d:R is always the directory @@ -485,14 +497,14 @@ _m := ${.MAKE.DEPENDFILE_PREFERENCE:T:S;${TARGET_SPEC}$;${d:E};:S;${MACHINE};${d .if !empty(_m) # M_dep_qual_fixes isn't geared to Makefile.depend _qm := ${_m:C;(\.depend)$;\1.${d:E};:${M_dep_qual_fixes:ts:}} -.if !empty(_debug_search) +.if ${_debug_search} .info Looking for ${_qm} .endif # we pass _DEP_TARGET_SPEC to tell the next step what we want _DEP_TARGET_SPEC := ${d:E} # some makefiles may still look at this _DEP_MACHINE := ${d:E:C/,.*//} -.if !empty(_debug_reldir) && ${_qm} != ${_m} +.if ${_debug_reldir} && ${_qm} != ${_m} .info loading ${_m} for ${d:E} .endif .include <${_m}> @@ -511,3 +523,37 @@ _DEP_RELDIR := ${DEP_RELDIR} .-include <.depend> .endif +# bootstrapping new dependencies made easy? +.if make(bootstrap*) && !target(bootstrap) + +.if exists(${.CURDIR}/${.MAKE.DEPENDFILE:T}) +# stop here +${.TARGETS:Mboot*}: +.else +# find a Makefile.depend to use as _src +_src != cd ${.CURDIR} && for m in ${.MAKE.DEPENDFILE_PREFERENCE:T:S,${MACHINE},*,}; do test -s $$m || continue; echo $$m; break; done; echo +.if empty(_src) +.error cannot find any of ${.MAKE.DEPENDFILE_PREFERENCE:T} +.endif + +_src?= ${.MAKE.DEPENDFILE:T} + +bootstrap-this: .NOTMAIN + @echo Bootstrapping ${RELDIR}/${.MAKE.DEPENDFILE:T} from ${_src:T} + (cd ${.CURDIR} && sed 's,${_src:E},${MACHINE},g' ${_src} > ${.MAKE.DEPENDFILE:T}) + +bootstrap: bootstrap-recurse +bootstrap-recurse: bootstrap-this + +_mf := ${.PARSEFILE} +bootstrap-recurse: .NOTMAIN .MAKE + @cd ${SRCTOP} && \ + for d in `cd ${RELDIR} && ${.MAKE} -B -f ${"${.MAKEFLAGS:M-n}":?${_src}:${.MAKE.DEPENDFILE:T}} -V DIRDEPS`; do \ + test -d $$d || d=$${d%.*}; \ + test -d $$d || continue; \ + echo "Checking $$d for bootstrap ..."; \ + (cd $$d && ${.MAKE} -f ${_mf} bootstrap-recurse); \ + done + +.endif +.endif diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index 1c9475963908..cd951136fb72 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -1,4 +1,4 @@ -# $Id: meta.stage.mk,v 1.30 2013/04/19 16:32:57 sjg Exp $ +# $Id: meta.stage.mk,v 1.34 2014/11/20 22:40:08 sjg Exp $ # # @(#) Copyright (c) 2011, Simon J. Gerraty # @@ -52,7 +52,7 @@ STAGE_DIR_FILTER = tA:@d@$${_STAGED_DIRS::+=$$d}$$d@ # convert _STAGED_DIRS into suitable filters GENDIRDEPS_FILTER += Nnot-empty-is-important \ ${_STAGED_DIRS:O:u:M${OBJTOP}*:S,${OBJTOP}/,N,} \ - ${_STAGED_DIRS:O:u:N${OBJTOP}*:S,${_objroot},,:C,^([^/]+)/(.*),N\2.\1,:S,${HOST_TARGET},.host,} + ${_STAGED_DIRS:O:u:M${_objroot}*:N${OBJTOP}*:S,${_objroot},,:C,^([^/]+)/(.*),N\2.\1,:S,${HOST_TARGET},.host,} LN_CP_SCRIPT = LnCp() { \ rm -f $$2 2> /dev/null; \ @@ -119,6 +119,9 @@ STAGE_AS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageAs() { \ _STAGE_BASENAME_USE: .USE ${.TARGET:T} @${STAGE_FILE_SCRIPT}; StageFiles ${.TARGET:H:${STAGE_DIR_FILTER}} ${.TARGET:T} +_STAGE_AS_BASENAME_USE: .USE ${.TARGET:T} + @${STAGE_AS_SCRIPT}; StageAs ${.TARGET:H:${STAGE_DIR_FILTER}} ${.TARGET:T} ${STAGE_AS_${.TARGET:T}:U${.TARGET:T}} + .if !empty(STAGE_INCSDIR) STAGE_TARGETS += stage_incs STAGE_INCS ?= ${.ALLSRC:N.dirdep} @@ -249,5 +252,26 @@ INSTALL := ${STAGE_INSTALL} beforeinstall: .dirdep .endif .endif +.NOPATH: ${STAGE_FILES} + +.if !empty(STAGE_TARGETS) +MK_STALE_STAGED?= no +.if ${MK_STALE_STAGED} == "yes" +all: stale_staged +# get a list of paths that we have just staged +# get a list of paths that we have previously staged to those same dirs +# anything in the 2nd list but not the first is stale - remove it. +stale_staged: staging .NOMETA + @egrep '^[WL] .*${STAGE_OBJTOP}' /dev/null ${.MAKE.META.FILES:M*stage_*} | \ + sed "/\.dirdep/d;s,.* '*\(${STAGE_OBJTOP}/[^ '][^ ']*\).*,\1," | \ + sort > ${.TARGET}.staged1 + @grep -l '${_dirdep}' /dev/null ${_STAGED_DIRS:M${STAGE_OBJTOP}*:O:u:@d@$d/*.dirdep@} | \ + sed 's,\.dirdep,,' | sort > ${.TARGET}.staged2 + @comm -13 ${.TARGET}.staged1 ${.TARGET}.staged2 > ${.TARGET}.stale + @test ! -s ${.TARGET}.stale || { \ + echo "Removing stale staged files..."; \ + sed 's,.*,& &.dirdep,' ${.TARGET}.stale | xargs rm -f; } .endif +.endif +.endif From 566bf19ac8cd78a36266c3b81c57051c40758289 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 21 Nov 2014 19:56:27 +0000 Subject: [PATCH 179/228] Use latest version --- share/mk/auto.obj.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/share/mk/auto.obj.mk b/share/mk/auto.obj.mk index cd4b2b0fb0db..795bc1002f5d 100644 --- a/share/mk/auto.obj.mk +++ b/share/mk/auto.obj.mk @@ -34,6 +34,9 @@ Mkdirs= Mkdirs() { \ # if MKOBJDIRS is set to auto (and NOOBJ isn't defined) do some magic... # This will automatically create objdirs as needed. # Skip it if we are just doing 'clean'. +.if ${MK_AUTO_OBJ:Uno} == "yes" +MKOBJDIRS= auto +.endif .if !defined(NOOBJ) && !defined(NO_OBJ) && ${MKOBJDIRS:Uno} == auto # Use __objdir here so it is easier to tweak without impacting # the logic. From f1382cffe7703a142e8eea88242485a577c1aeb2 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 23 Nov 2014 00:08:22 +0000 Subject: [PATCH 180/228] Leverage dirdeps.mk by tweaking _DIRDEP_USE_LEVEL so we can have a 2nd stage of dependencies computed in parallel. Reviewed by: marcel --- pkgs/pseudo/hosttools/Makefile | 3 ++ pkgs/pseudo/hosttools/Makefile.depend | 24 +++++++++ pkgs/pseudo/universe/Makefile | 73 +++++++++++++++++++++++++++ pkgs/pseudo/universe/Makefile.depend | 15 ++++++ 4 files changed, 115 insertions(+) create mode 100644 pkgs/pseudo/hosttools/Makefile create mode 100644 pkgs/pseudo/hosttools/Makefile.depend create mode 100644 pkgs/pseudo/universe/Makefile create mode 100644 pkgs/pseudo/universe/Makefile.depend diff --git a/pkgs/pseudo/hosttools/Makefile b/pkgs/pseudo/hosttools/Makefile new file mode 100644 index 000000000000..265f86d1ed55 --- /dev/null +++ b/pkgs/pseudo/hosttools/Makefile @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/pkgs/pseudo/hosttools/Makefile.depend b/pkgs/pseudo/hosttools/Makefile.depend new file mode 100644 index 000000000000..83c884853777 --- /dev/null +++ b/pkgs/pseudo/hosttools/Makefile.depend @@ -0,0 +1,24 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +DIRDEPS = \ + lib/clang/include.host \ + lib/libc++.host \ + lib/libcxxrt.host \ + share/doc/llvm/clang.host \ + usr.bin/clang/clang-tblgen.host \ + usr.bin/clang/clang.host \ + usr.bin/clang/tblgen.host \ + usr.bin/lex/lib.host \ + usr.bin/mkcsmapper_static.host \ + usr.bin/mkesdb_static.host \ + usr.bin/mkuzip.host \ + usr.bin/xinstall.host \ + usr.sbin/config.host \ + + + +.include diff --git a/pkgs/pseudo/universe/Makefile b/pkgs/pseudo/universe/Makefile new file mode 100644 index 000000000000..85b6b7189477 --- /dev/null +++ b/pkgs/pseudo/universe/Makefile @@ -0,0 +1,73 @@ +# $FreeBSD$ + +# This target is "special". +# +# The actual work is done via another target; +# UNIVERSE_TARGET_RELDIR is used to identify it. +# +# We leverage dirdeps.mk to run a sub-make per +# MACHINE/ARCH to each build ${UNIVERSE_TARGET_RELDIR} +# in meta mode. +# +# We simply override the level at which dirdeps.mk normally does +# its thing, and give it a DIRDEPS list that corresponds to +# ${UNIVERSE_TARGET_RELDIR}.${TARGET_SPEC} for each TARGET_SPEC we +# want. +# +# This allows the computation of dependencies for each ${TARGET_SPEC} +# to happen in parallel - avoiding a very long startup time. +# We can even export each sub-make to a different machine if using a +# cluster. +# +# The above works fine so long as our sub-makes remain independent. +# That is; none of them attempts to visit any directory for a machine +# other than the TARGET_SPEC we gave it. +# For example; to build some tool for the pseudo machine "host". +# To avoid that, our Makefile.depend lists all the hosttools we might +# need and these will thus be built before we launch the +# ${UNIVERSE_TARGET_RELDIR} sub-makes. +# Further we add a filter to skip any "host" dirdeps during those +# sub-makes. +# +# + +# this is the RELDIR of the target we build +UNIVERSE_TARGET_RELDIR?= pkgs/pseudo/the-lot + +# the list of machines +TARGET_MACHINE_LIST = i386 amd64 +# some machines have more than one arch +TARGET_ARCHES_arm?= arm armeb armv6 armv6hf + +# avoid ../Makefile.inc defining this +all: + +.include "../Makefile.inc" + +.if ${.MAKE.LEVEL} > 0 +# ok our prerequisites have been built +.if !defined(UNIVERSE_GUARD) +# just incase we end up back here, +# we cannot rely on .MAKE.LEVEL as we normally would +UNIVERSE_GUARD=1 +.export UNIVERSE_GUARD + +# we want to re-use dirdeps +_DIRDEP_USE_LEVEL = ${.MAKE.LEVEL} + +# we want our sub-makes to think they are level 0 +# and we don't want failure of one to stop all. +DIRDEP_USE_ENV= \ + MAKELEVEL=0 \ + MAKE_JOB_ERROR_TOKEN=no + + +_target_specs:= ${TARGET_MACHINE_LIST:@m@${TARGET_ARCHES_$m:U$m:@a@$m,$a@}@:O:u} + +DIRDEPS:= ${_target_specs:@t@${UNIVERSE_TARGET_RELDIR}.$t@} + +all: dirdeps + +.include +.endif +.endif diff --git a/pkgs/pseudo/universe/Makefile.depend b/pkgs/pseudo/universe/Makefile.depend new file mode 100644 index 000000000000..e9cbdb58b354 --- /dev/null +++ b/pkgs/pseudo/universe/Makefile.depend @@ -0,0 +1,15 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +# this is not normally needed, but we are not normal +.if ${.MAKE.LEVEL} == 0 +DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} + +# our role here is to build all the host tools etc. +DIRDEPS = \ + pkgs/pseudo/hosttools.host \ + + +.include +.endif From b6209a9b5861cbf265a23afeac999cb27bfc7eae Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 30 Nov 2014 00:20:20 +0000 Subject: [PATCH 181/228] Rename pkgs to more generic targets (that's what they are) Reviewed by: marcel --- {pkgs => targets}/Makefile | 0 {pkgs => targets}/Makefile.inc | 0 {pkgs => targets}/Makefile.xtras | 0 {pkgs => targets}/pseudo/Makefile.inc | 0 {pkgs => targets}/pseudo/bin/Makefile | 0 {pkgs => targets}/pseudo/bin/Makefile.depend | 0 {pkgs => targets}/pseudo/bootstrap-tools/Makefile | 0 {pkgs => targets}/pseudo/bootstrap-tools/Makefile.depend.host | 0 {pkgs => targets}/pseudo/cddl/Makefile | 0 {pkgs => targets}/pseudo/cddl/Makefile.depend | 0 {pkgs => targets}/pseudo/clang/Makefile | 0 {pkgs => targets}/pseudo/clang/Makefile.depend | 0 {pkgs => targets}/pseudo/games/Makefile | 0 {pkgs => targets}/pseudo/games/Makefile.depend | 0 {pkgs => targets}/pseudo/gcc/Makefile | 0 {pkgs => targets}/pseudo/gcc/Makefile.depend | 0 {pkgs => targets}/pseudo/gnu/Makefile | 0 {pkgs => targets}/pseudo/gnu/Makefile.depend | 0 {pkgs => targets}/pseudo/hosttools/Makefile | 0 {pkgs => targets}/pseudo/hosttools/Makefile.depend | 0 {pkgs => targets}/pseudo/include/Makefile | 0 {pkgs => targets}/pseudo/include/Makefile.depend | 0 {pkgs => targets}/pseudo/kerberos5/Makefile | 0 {pkgs => targets}/pseudo/kerberos5/Makefile.depend | 0 {pkgs => targets}/pseudo/kernel/Makefile | 0 {pkgs => targets}/pseudo/kernel/Makefile.depend | 0 {pkgs => targets}/pseudo/lib/Makefile | 0 {pkgs => targets}/pseudo/lib/Makefile.depend | 0 {pkgs => targets}/pseudo/libexec/Makefile | 0 {pkgs => targets}/pseudo/libexec/Makefile.depend | 0 {pkgs => targets}/pseudo/misc/Makefile | 0 {pkgs => targets}/pseudo/misc/Makefile.depend | 0 {pkgs => targets}/pseudo/sbin/Makefile | 0 {pkgs => targets}/pseudo/sbin/Makefile.depend | 0 {pkgs => targets}/pseudo/secure/Makefile | 0 {pkgs => targets}/pseudo/secure/Makefile.depend | 0 {pkgs => targets}/pseudo/share/Makefile | 0 {pkgs => targets}/pseudo/share/Makefile.depend | 0 {pkgs => targets}/pseudo/stage/Makefile | 0 {pkgs => targets}/pseudo/the-lot/Makefile | 0 {pkgs => targets}/pseudo/the-lot/Makefile.depend | 0 {pkgs => targets}/pseudo/toolchain/Makefile | 0 {pkgs => targets}/pseudo/toolchain/Makefile.depend | 0 {pkgs => targets}/pseudo/universe/Makefile | 0 {pkgs => targets}/pseudo/universe/Makefile.depend | 0 {pkgs => targets}/pseudo/userland/Makefile | 0 {pkgs => targets}/pseudo/userland/Makefile.depend | 0 {pkgs => targets}/pseudo/usr.bin/Makefile | 0 {pkgs => targets}/pseudo/usr.bin/Makefile.depend | 0 {pkgs => targets}/pseudo/usr.sbin/Makefile | 0 {pkgs => targets}/pseudo/usr.sbin/Makefile.depend | 0 51 files changed, 0 insertions(+), 0 deletions(-) rename {pkgs => targets}/Makefile (100%) rename {pkgs => targets}/Makefile.inc (100%) rename {pkgs => targets}/Makefile.xtras (100%) rename {pkgs => targets}/pseudo/Makefile.inc (100%) rename {pkgs => targets}/pseudo/bin/Makefile (100%) rename {pkgs => targets}/pseudo/bin/Makefile.depend (100%) rename {pkgs => targets}/pseudo/bootstrap-tools/Makefile (100%) rename {pkgs => targets}/pseudo/bootstrap-tools/Makefile.depend.host (100%) rename {pkgs => targets}/pseudo/cddl/Makefile (100%) rename {pkgs => targets}/pseudo/cddl/Makefile.depend (100%) rename {pkgs => targets}/pseudo/clang/Makefile (100%) rename {pkgs => targets}/pseudo/clang/Makefile.depend (100%) rename {pkgs => targets}/pseudo/games/Makefile (100%) rename {pkgs => targets}/pseudo/games/Makefile.depend (100%) rename {pkgs => targets}/pseudo/gcc/Makefile (100%) rename {pkgs => targets}/pseudo/gcc/Makefile.depend (100%) rename {pkgs => targets}/pseudo/gnu/Makefile (100%) rename {pkgs => targets}/pseudo/gnu/Makefile.depend (100%) rename {pkgs => targets}/pseudo/hosttools/Makefile (100%) rename {pkgs => targets}/pseudo/hosttools/Makefile.depend (100%) rename {pkgs => targets}/pseudo/include/Makefile (100%) rename {pkgs => targets}/pseudo/include/Makefile.depend (100%) rename {pkgs => targets}/pseudo/kerberos5/Makefile (100%) rename {pkgs => targets}/pseudo/kerberos5/Makefile.depend (100%) rename {pkgs => targets}/pseudo/kernel/Makefile (100%) rename {pkgs => targets}/pseudo/kernel/Makefile.depend (100%) rename {pkgs => targets}/pseudo/lib/Makefile (100%) rename {pkgs => targets}/pseudo/lib/Makefile.depend (100%) rename {pkgs => targets}/pseudo/libexec/Makefile (100%) rename {pkgs => targets}/pseudo/libexec/Makefile.depend (100%) rename {pkgs => targets}/pseudo/misc/Makefile (100%) rename {pkgs => targets}/pseudo/misc/Makefile.depend (100%) rename {pkgs => targets}/pseudo/sbin/Makefile (100%) rename {pkgs => targets}/pseudo/sbin/Makefile.depend (100%) rename {pkgs => targets}/pseudo/secure/Makefile (100%) rename {pkgs => targets}/pseudo/secure/Makefile.depend (100%) rename {pkgs => targets}/pseudo/share/Makefile (100%) rename {pkgs => targets}/pseudo/share/Makefile.depend (100%) rename {pkgs => targets}/pseudo/stage/Makefile (100%) rename {pkgs => targets}/pseudo/the-lot/Makefile (100%) rename {pkgs => targets}/pseudo/the-lot/Makefile.depend (100%) rename {pkgs => targets}/pseudo/toolchain/Makefile (100%) rename {pkgs => targets}/pseudo/toolchain/Makefile.depend (100%) rename {pkgs => targets}/pseudo/universe/Makefile (100%) rename {pkgs => targets}/pseudo/universe/Makefile.depend (100%) rename {pkgs => targets}/pseudo/userland/Makefile (100%) rename {pkgs => targets}/pseudo/userland/Makefile.depend (100%) rename {pkgs => targets}/pseudo/usr.bin/Makefile (100%) rename {pkgs => targets}/pseudo/usr.bin/Makefile.depend (100%) rename {pkgs => targets}/pseudo/usr.sbin/Makefile (100%) rename {pkgs => targets}/pseudo/usr.sbin/Makefile.depend (100%) diff --git a/pkgs/Makefile b/targets/Makefile similarity index 100% rename from pkgs/Makefile rename to targets/Makefile diff --git a/pkgs/Makefile.inc b/targets/Makefile.inc similarity index 100% rename from pkgs/Makefile.inc rename to targets/Makefile.inc diff --git a/pkgs/Makefile.xtras b/targets/Makefile.xtras similarity index 100% rename from pkgs/Makefile.xtras rename to targets/Makefile.xtras diff --git a/pkgs/pseudo/Makefile.inc b/targets/pseudo/Makefile.inc similarity index 100% rename from pkgs/pseudo/Makefile.inc rename to targets/pseudo/Makefile.inc diff --git a/pkgs/pseudo/bin/Makefile b/targets/pseudo/bin/Makefile similarity index 100% rename from pkgs/pseudo/bin/Makefile rename to targets/pseudo/bin/Makefile diff --git a/pkgs/pseudo/bin/Makefile.depend b/targets/pseudo/bin/Makefile.depend similarity index 100% rename from pkgs/pseudo/bin/Makefile.depend rename to targets/pseudo/bin/Makefile.depend diff --git a/pkgs/pseudo/bootstrap-tools/Makefile b/targets/pseudo/bootstrap-tools/Makefile similarity index 100% rename from pkgs/pseudo/bootstrap-tools/Makefile rename to targets/pseudo/bootstrap-tools/Makefile diff --git a/pkgs/pseudo/bootstrap-tools/Makefile.depend.host b/targets/pseudo/bootstrap-tools/Makefile.depend.host similarity index 100% rename from pkgs/pseudo/bootstrap-tools/Makefile.depend.host rename to targets/pseudo/bootstrap-tools/Makefile.depend.host diff --git a/pkgs/pseudo/cddl/Makefile b/targets/pseudo/cddl/Makefile similarity index 100% rename from pkgs/pseudo/cddl/Makefile rename to targets/pseudo/cddl/Makefile diff --git a/pkgs/pseudo/cddl/Makefile.depend b/targets/pseudo/cddl/Makefile.depend similarity index 100% rename from pkgs/pseudo/cddl/Makefile.depend rename to targets/pseudo/cddl/Makefile.depend diff --git a/pkgs/pseudo/clang/Makefile b/targets/pseudo/clang/Makefile similarity index 100% rename from pkgs/pseudo/clang/Makefile rename to targets/pseudo/clang/Makefile diff --git a/pkgs/pseudo/clang/Makefile.depend b/targets/pseudo/clang/Makefile.depend similarity index 100% rename from pkgs/pseudo/clang/Makefile.depend rename to targets/pseudo/clang/Makefile.depend diff --git a/pkgs/pseudo/games/Makefile b/targets/pseudo/games/Makefile similarity index 100% rename from pkgs/pseudo/games/Makefile rename to targets/pseudo/games/Makefile diff --git a/pkgs/pseudo/games/Makefile.depend b/targets/pseudo/games/Makefile.depend similarity index 100% rename from pkgs/pseudo/games/Makefile.depend rename to targets/pseudo/games/Makefile.depend diff --git a/pkgs/pseudo/gcc/Makefile b/targets/pseudo/gcc/Makefile similarity index 100% rename from pkgs/pseudo/gcc/Makefile rename to targets/pseudo/gcc/Makefile diff --git a/pkgs/pseudo/gcc/Makefile.depend b/targets/pseudo/gcc/Makefile.depend similarity index 100% rename from pkgs/pseudo/gcc/Makefile.depend rename to targets/pseudo/gcc/Makefile.depend diff --git a/pkgs/pseudo/gnu/Makefile b/targets/pseudo/gnu/Makefile similarity index 100% rename from pkgs/pseudo/gnu/Makefile rename to targets/pseudo/gnu/Makefile diff --git a/pkgs/pseudo/gnu/Makefile.depend b/targets/pseudo/gnu/Makefile.depend similarity index 100% rename from pkgs/pseudo/gnu/Makefile.depend rename to targets/pseudo/gnu/Makefile.depend diff --git a/pkgs/pseudo/hosttools/Makefile b/targets/pseudo/hosttools/Makefile similarity index 100% rename from pkgs/pseudo/hosttools/Makefile rename to targets/pseudo/hosttools/Makefile diff --git a/pkgs/pseudo/hosttools/Makefile.depend b/targets/pseudo/hosttools/Makefile.depend similarity index 100% rename from pkgs/pseudo/hosttools/Makefile.depend rename to targets/pseudo/hosttools/Makefile.depend diff --git a/pkgs/pseudo/include/Makefile b/targets/pseudo/include/Makefile similarity index 100% rename from pkgs/pseudo/include/Makefile rename to targets/pseudo/include/Makefile diff --git a/pkgs/pseudo/include/Makefile.depend b/targets/pseudo/include/Makefile.depend similarity index 100% rename from pkgs/pseudo/include/Makefile.depend rename to targets/pseudo/include/Makefile.depend diff --git a/pkgs/pseudo/kerberos5/Makefile b/targets/pseudo/kerberos5/Makefile similarity index 100% rename from pkgs/pseudo/kerberos5/Makefile rename to targets/pseudo/kerberos5/Makefile diff --git a/pkgs/pseudo/kerberos5/Makefile.depend b/targets/pseudo/kerberos5/Makefile.depend similarity index 100% rename from pkgs/pseudo/kerberos5/Makefile.depend rename to targets/pseudo/kerberos5/Makefile.depend diff --git a/pkgs/pseudo/kernel/Makefile b/targets/pseudo/kernel/Makefile similarity index 100% rename from pkgs/pseudo/kernel/Makefile rename to targets/pseudo/kernel/Makefile diff --git a/pkgs/pseudo/kernel/Makefile.depend b/targets/pseudo/kernel/Makefile.depend similarity index 100% rename from pkgs/pseudo/kernel/Makefile.depend rename to targets/pseudo/kernel/Makefile.depend diff --git a/pkgs/pseudo/lib/Makefile b/targets/pseudo/lib/Makefile similarity index 100% rename from pkgs/pseudo/lib/Makefile rename to targets/pseudo/lib/Makefile diff --git a/pkgs/pseudo/lib/Makefile.depend b/targets/pseudo/lib/Makefile.depend similarity index 100% rename from pkgs/pseudo/lib/Makefile.depend rename to targets/pseudo/lib/Makefile.depend diff --git a/pkgs/pseudo/libexec/Makefile b/targets/pseudo/libexec/Makefile similarity index 100% rename from pkgs/pseudo/libexec/Makefile rename to targets/pseudo/libexec/Makefile diff --git a/pkgs/pseudo/libexec/Makefile.depend b/targets/pseudo/libexec/Makefile.depend similarity index 100% rename from pkgs/pseudo/libexec/Makefile.depend rename to targets/pseudo/libexec/Makefile.depend diff --git a/pkgs/pseudo/misc/Makefile b/targets/pseudo/misc/Makefile similarity index 100% rename from pkgs/pseudo/misc/Makefile rename to targets/pseudo/misc/Makefile diff --git a/pkgs/pseudo/misc/Makefile.depend b/targets/pseudo/misc/Makefile.depend similarity index 100% rename from pkgs/pseudo/misc/Makefile.depend rename to targets/pseudo/misc/Makefile.depend diff --git a/pkgs/pseudo/sbin/Makefile b/targets/pseudo/sbin/Makefile similarity index 100% rename from pkgs/pseudo/sbin/Makefile rename to targets/pseudo/sbin/Makefile diff --git a/pkgs/pseudo/sbin/Makefile.depend b/targets/pseudo/sbin/Makefile.depend similarity index 100% rename from pkgs/pseudo/sbin/Makefile.depend rename to targets/pseudo/sbin/Makefile.depend diff --git a/pkgs/pseudo/secure/Makefile b/targets/pseudo/secure/Makefile similarity index 100% rename from pkgs/pseudo/secure/Makefile rename to targets/pseudo/secure/Makefile diff --git a/pkgs/pseudo/secure/Makefile.depend b/targets/pseudo/secure/Makefile.depend similarity index 100% rename from pkgs/pseudo/secure/Makefile.depend rename to targets/pseudo/secure/Makefile.depend diff --git a/pkgs/pseudo/share/Makefile b/targets/pseudo/share/Makefile similarity index 100% rename from pkgs/pseudo/share/Makefile rename to targets/pseudo/share/Makefile diff --git a/pkgs/pseudo/share/Makefile.depend b/targets/pseudo/share/Makefile.depend similarity index 100% rename from pkgs/pseudo/share/Makefile.depend rename to targets/pseudo/share/Makefile.depend diff --git a/pkgs/pseudo/stage/Makefile b/targets/pseudo/stage/Makefile similarity index 100% rename from pkgs/pseudo/stage/Makefile rename to targets/pseudo/stage/Makefile diff --git a/pkgs/pseudo/the-lot/Makefile b/targets/pseudo/the-lot/Makefile similarity index 100% rename from pkgs/pseudo/the-lot/Makefile rename to targets/pseudo/the-lot/Makefile diff --git a/pkgs/pseudo/the-lot/Makefile.depend b/targets/pseudo/the-lot/Makefile.depend similarity index 100% rename from pkgs/pseudo/the-lot/Makefile.depend rename to targets/pseudo/the-lot/Makefile.depend diff --git a/pkgs/pseudo/toolchain/Makefile b/targets/pseudo/toolchain/Makefile similarity index 100% rename from pkgs/pseudo/toolchain/Makefile rename to targets/pseudo/toolchain/Makefile diff --git a/pkgs/pseudo/toolchain/Makefile.depend b/targets/pseudo/toolchain/Makefile.depend similarity index 100% rename from pkgs/pseudo/toolchain/Makefile.depend rename to targets/pseudo/toolchain/Makefile.depend diff --git a/pkgs/pseudo/universe/Makefile b/targets/pseudo/universe/Makefile similarity index 100% rename from pkgs/pseudo/universe/Makefile rename to targets/pseudo/universe/Makefile diff --git a/pkgs/pseudo/universe/Makefile.depend b/targets/pseudo/universe/Makefile.depend similarity index 100% rename from pkgs/pseudo/universe/Makefile.depend rename to targets/pseudo/universe/Makefile.depend diff --git a/pkgs/pseudo/userland/Makefile b/targets/pseudo/userland/Makefile similarity index 100% rename from pkgs/pseudo/userland/Makefile rename to targets/pseudo/userland/Makefile diff --git a/pkgs/pseudo/userland/Makefile.depend b/targets/pseudo/userland/Makefile.depend similarity index 100% rename from pkgs/pseudo/userland/Makefile.depend rename to targets/pseudo/userland/Makefile.depend diff --git a/pkgs/pseudo/usr.bin/Makefile b/targets/pseudo/usr.bin/Makefile similarity index 100% rename from pkgs/pseudo/usr.bin/Makefile rename to targets/pseudo/usr.bin/Makefile diff --git a/pkgs/pseudo/usr.bin/Makefile.depend b/targets/pseudo/usr.bin/Makefile.depend similarity index 100% rename from pkgs/pseudo/usr.bin/Makefile.depend rename to targets/pseudo/usr.bin/Makefile.depend diff --git a/pkgs/pseudo/usr.sbin/Makefile b/targets/pseudo/usr.sbin/Makefile similarity index 100% rename from pkgs/pseudo/usr.sbin/Makefile rename to targets/pseudo/usr.sbin/Makefile diff --git a/pkgs/pseudo/usr.sbin/Makefile.depend b/targets/pseudo/usr.sbin/Makefile.depend similarity index 100% rename from pkgs/pseudo/usr.sbin/Makefile.depend rename to targets/pseudo/usr.sbin/Makefile.depend From 6e7d005c833f3480a0d24e30172cf3441e0e2f65 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 30 Nov 2014 18:42:29 +0000 Subject: [PATCH 182/228] Put lib/csu/amd64/Makefile back the way it is in head and handle staging via ../Makefile.inc --- lib/csu/Makefile.inc | 5 +++++ lib/csu/amd64/Makefile | 11 ++++------- lib/csu/i386-elf/Makefile.depend | 2 -- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/csu/Makefile.inc b/lib/csu/Makefile.inc index 95d5c5e5f355..ff77f668b368 100644 --- a/lib/csu/Makefile.inc +++ b/lib/csu/Makefile.inc @@ -7,3 +7,8 @@ SED_FIX_NOTE = -i "" -e '/\.note\.tag/s/progbits/note/' NO_WMISSING_VARIABLE_DECLARATIONS= .include "../Makefile.inc" + +.if ${MK_STAGING} == "yes" && ${.TARGETS:Nall} == "" +FILES?= ${OBJS} +FILESDIR?= ${LIBDIR} +.endif diff --git a/lib/csu/amd64/Makefile b/lib/csu/amd64/Makefile index 5ddbab661f43..80d14a7ae7af 100644 --- a/lib/csu/amd64/Makefile +++ b/lib/csu/amd64/Makefile @@ -9,12 +9,6 @@ CFLAGS+= -I${.CURDIR}/../common \ -I${.CURDIR}/../../libc/include CFLAGS+= -fno-omit-frame-pointer -FILES= ${OBJS} -FILESOWN= ${LIBOWN} -FILESGRP= ${LIBGRP} -FILESMODE= ${LIBMODE} -FILESDIR= ${LIBDIR} - all: ${OBJS} CLEANFILES= ${OBJS} @@ -44,5 +38,8 @@ Scrt1.s: crt1.c Scrt1.o: Scrt1.s ${CC} ${ACFLAGS} -c -o ${.TARGET} Scrt1.s +realinstall: + ${INSTALL} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + ${OBJS} ${DESTDIR}${LIBDIR} -.include +.include diff --git a/lib/csu/i386-elf/Makefile.depend b/lib/csu/i386-elf/Makefile.depend index ff699f730be6..7d982eb5c63a 100644 --- a/lib/csu/i386-elf/Makefile.depend +++ b/lib/csu/i386-elf/Makefile.depend @@ -2,8 +2,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ include \ From 61ad1ff58d4e7a8c21f05066d9a05aad2f84d291 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 30 Nov 2014 18:45:46 +0000 Subject: [PATCH 183/228] Renamed pkgs/ targets/ --- share/mk/local.dirdeps.mk | 12 +++++++--- share/mk/local.gendirdeps.mk | 4 ++-- targets/Makefile | 29 +++++++++--------------- targets/Makefile.inc | 4 ++-- targets/pseudo/the-lot/Makefile.depend | 6 ++--- targets/pseudo/toolchain/Makefile.depend | 4 ++-- targets/pseudo/universe/Makefile | 2 +- targets/pseudo/universe/Makefile.depend | 2 +- targets/pseudo/userland/Makefile.depend | 26 ++++++++++----------- 9 files changed, 44 insertions(+), 45 deletions(-) diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index 5fefd03a640d..88783db69973 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -17,6 +17,12 @@ DIRDEPS := ${.TARGETS:M*/*} ${.TARGETS:Nall}: all .endif +# making universe is special +.if defined(UNIVERSE_GUARD) +# these should be done by now +DIRDEPS_FILTER+= N*.host +.endif + # pseudo machines get no qualification .for m in host common M_dep_qual_fixes += C;($m),[^/.,]*$$;\1; @@ -75,9 +81,9 @@ DIRDEPS += \ DIRDEPS+= lib/clang/include .endif -# we need pkgs/pseudo/stage to prep the stage tree -.if ${DEP_RELDIR} != "pkgs/pseudo/stage" -DIRDEPS += pkgs/pseudo/stage +# we need targets/pseudo/stage to prep the stage tree +.if ${DEP_RELDIR} != "targets/pseudo/stage" +DIRDEPS += targets/pseudo/stage .endif CSU_DIR.i386 = csu/i386-elf diff --git a/share/mk/local.gendirdeps.mk b/share/mk/local.gendirdeps.mk index ff36d97a836e..df32cda6af2e 100644 --- a/share/mk/local.gendirdeps.mk +++ b/share/mk/local.gendirdeps.mk @@ -5,10 +5,10 @@ GENDIRDEPS_FILTER+= \ Ncddl/usr.bin/ctf* \ Nlib/clang/include \ Nlib/libc_nonshared \ - Npkgs/pseudo/stage* \ + Ntargets/pseudo/stage* \ Ntools/* -.if ${RELDIR:Mpkgs*} == "" +.if ${RELDIR:Mtargets*} == "" GENDIRDEPS_FILTER+= \ Nusr.bin/clang/clang.host \ Ngnu/usr.bin/cc* \ diff --git a/targets/Makefile b/targets/Makefile index bf2a30036c17..e0d7fa3f1e9a 100644 --- a/targets/Makefile +++ b/targets/Makefile @@ -35,23 +35,23 @@ # this is our top-level makefile .if make(pkg-*) -DIRDEPS_FILTER = Mpkgs/* +DIRDEPS_FILTER = Mtargets/* .endif # in theory, this is what we want -target_dirs = pkgs pkgs/pseudo +target_dirs = targets targets/pseudo # these tweak how we do it target_prefix = pkg- build- DIRDEPS := ${.TARGETS:Nall:${target_prefix:@p@S,^$p,,@:ts:}:@t@${target_dirs:@d@$d/$t@}@:@d@${exists(${SRCTOP}/$d):?$d:}@} -.if ${DIRDEPS:Mpkgs/pseudo/*} != "" +.if ${DIRDEPS:Mtargets/pseudo/*} != "" # all bets are off PKG_MACHINE_LIST = ${ALL_MACHINE_LIST} .endif .if make(check-commit) # a special case -DIRDEPS = pkgs/pseudo/check-commit +DIRDEPS = targets/pseudo/check-commit .if defined(ALL_MACHINES) CHECK_MACHINE_LIST = all .undef ALL_MACHINES @@ -127,16 +127,15 @@ start_utc := ${now_utc} _begin = count-makefiles -# by default, we clean pkgs/ which can otherwise accumulate a lot of cruft -.if ${NEED_CLEAN_PKGS:Uyes:tl} != "no" -_begin += clean-pkgs -.endif -.if defined(SHIPDIR) && ${NEED_CLEAN_SHIPDIR:Uno:tl} != "no" && exists(${SHIPDIR}) -_begin += clean-shipdir -.endif -.if ${NEED_CLEAN_ERROR_LOGS:Uyes:tl} == "yes" +__DEFAULT_YES_OPTIONS+= \ + CLEAN_ERROR_LOGS + +.include + +.if ${MK_CLEAN_ERROR_LOGS} == "yes" _begin += clean-error-logs .endif + .if !empty(_begin) && !make(clean*) dirdeps: ${_begin} .WAIT .endif @@ -167,12 +166,6 @@ _build_failed: .NOMETA clean-error-logs: .NOMETA @test ! -d ${meta_error_log:H} || rm -f ${meta_error_log:H}/*log -clean-pkgs: .NOMETA - @rm -rf ${ALL_MACHINE_LIST:N${MACHINE}:@m@${OBJROOT}$m/pkgs@} ${OBJROOT}${MACHINE}/pkgs/* - -clean-shipdir: .NOMETA - ${"${SHIPDIR:tl:Nno:N*\:*}":?rm -f ${SHIPDIR}/*:} - .if !target(_DIRDEP_USE) # we did not read dirdeps.mk above, the target may be here .include "Makefile.xtras" diff --git a/targets/Makefile.inc b/targets/Makefile.inc index 58d19c83c3ab..2dc3b8155824 100644 --- a/targets/Makefile.inc +++ b/targets/Makefile.inc @@ -6,9 +6,9 @@ __${_this}__: _CURDIR ?= ${.CURDIR} _OBJDIR ?= ${.OBJDIR} -.if ${RELDIR:Mpkgs/*} != "" || ${RELDIR} == "." +.if ${RELDIR:Mtargets/*} != "" || ${RELDIR} == "." -.if ${.MAKE.LEVEL} == 0 && ${RELDIR:Mpkgs/*} != "" +.if ${.MAKE.LEVEL} == 0 && ${RELDIR:Mtargets/*} != "" .if make(bootstrap*) || !exists(${_CURDIR}/${.MAKE.DEPENDFILE:T}) _bootstrap_dirdeps = yes .else diff --git a/targets/pseudo/the-lot/Makefile.depend b/targets/pseudo/the-lot/Makefile.depend index ad51546fd5d8..d54c59cc5d5f 100644 --- a/targets/pseudo/the-lot/Makefile.depend +++ b/targets/pseudo/the-lot/Makefile.depend @@ -5,8 +5,8 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - pkgs/pseudo/kernel \ - pkgs/pseudo/toolchain \ - pkgs/pseudo/userland \ + targets/pseudo/kernel \ + targets/pseudo/toolchain \ + targets/pseudo/userland \ .include diff --git a/targets/pseudo/toolchain/Makefile.depend b/targets/pseudo/toolchain/Makefile.depend index 4ea8d5879693..bb4bf7ec471a 100644 --- a/targets/pseudo/toolchain/Makefile.depend +++ b/targets/pseudo/toolchain/Makefile.depend @@ -10,10 +10,10 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS= usr.bin/xinstall .if ${MK_CLANG} == "yes" -DIRDEPS+= pkgs/pseudo/clang +DIRDEPS+= targets/pseudo/clang .endif .if ${MK_GCC} == "yes" -DIRDEPS+= pkgs/pseudo/gcc +DIRDEPS+= targets/pseudo/gcc .endif .include diff --git a/targets/pseudo/universe/Makefile b/targets/pseudo/universe/Makefile index 85b6b7189477..ef696d330e01 100644 --- a/targets/pseudo/universe/Makefile +++ b/targets/pseudo/universe/Makefile @@ -32,7 +32,7 @@ # # this is the RELDIR of the target we build -UNIVERSE_TARGET_RELDIR?= pkgs/pseudo/the-lot +UNIVERSE_TARGET_RELDIR?= targets/pseudo/the-lot # the list of machines TARGET_MACHINE_LIST = i386 amd64 diff --git a/targets/pseudo/universe/Makefile.depend b/targets/pseudo/universe/Makefile.depend index e9cbdb58b354..b55179d01636 100644 --- a/targets/pseudo/universe/Makefile.depend +++ b/targets/pseudo/universe/Makefile.depend @@ -8,7 +8,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} # our role here is to build all the host tools etc. DIRDEPS = \ - pkgs/pseudo/hosttools.host \ + targets/pseudo/hosttools.host \ .include diff --git a/targets/pseudo/userland/Makefile.depend b/targets/pseudo/userland/Makefile.depend index 10591bdc5f12..12c881f0f2ae 100644 --- a/targets/pseudo/userland/Makefile.depend +++ b/targets/pseudo/userland/Makefile.depend @@ -7,18 +7,18 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DEP_MACHINE := ${.PARSEFILE:E} DIRDEPS = \ - pkgs/pseudo/bin \ - pkgs/pseudo/cddl \ - pkgs/pseudo/games \ - pkgs/pseudo/gnu \ - pkgs/pseudo/include \ - pkgs/pseudo/kerberos5 \ - pkgs/pseudo/lib \ - pkgs/pseudo/libexec \ - pkgs/pseudo/sbin \ - pkgs/pseudo/secure \ - pkgs/pseudo/share \ - pkgs/pseudo/usr.bin \ - pkgs/pseudo/usr.sbin \ + targets/pseudo/bin \ + targets/pseudo/cddl \ + targets/pseudo/games \ + targets/pseudo/gnu \ + targets/pseudo/include \ + targets/pseudo/kerberos5 \ + targets/pseudo/lib \ + targets/pseudo/libexec \ + targets/pseudo/sbin \ + targets/pseudo/secure \ + targets/pseudo/share \ + targets/pseudo/usr.bin \ + targets/pseudo/usr.sbin \ .include From cbf53e73115708b26bdb887a0cb5b00682c2ea92 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 30 Nov 2014 18:46:34 +0000 Subject: [PATCH 184/228] all is MAIN target --- gnu/lib/csu/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/lib/csu/Makefile b/gnu/lib/csu/Makefile index 909d740c5d7d..6f625f683df5 100644 --- a/gnu/lib/csu/Makefile +++ b/gnu/lib/csu/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +.MAIN: all + .include MK_SSP= no From 838e37378e5824ae95bb7750732c8bb82137b2f1 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 30 Nov 2014 18:48:17 +0000 Subject: [PATCH 185/228] Need headers staged by libpam --- lib/libpam/modules/pam_krb5/Makefile.depend | 1 + lib/libpam/modules/pam_ksu/Makefile.depend | 1 + lib/libpam/modules/pam_nologin/Makefile.depend | 1 + lib/libpam/modules/pam_opie/Makefile.depend | 1 + lib/libpam/modules/pam_opieaccess/Makefile.depend | 1 + lib/libpam/modules/pam_passwdqc/Makefile.depend | 1 + lib/libpam/modules/pam_radius/Makefile.depend | 1 + lib/libpam/modules/pam_ssh/Makefile.depend | 1 + lib/libpam/modules/pam_tacplus/Makefile.depend | 1 + lib/libpam/modules/pam_unix/Makefile.depend | 1 + 10 files changed, 10 insertions(+) diff --git a/lib/libpam/modules/pam_krb5/Makefile.depend b/lib/libpam/modules/pam_krb5/Makefile.depend index 41f51403d928..f6e886edbc48 100644 --- a/lib/libpam/modules/pam_krb5/Makefile.depend +++ b/lib/libpam/modules/pam_krb5/Makefile.depend @@ -16,6 +16,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libpam/libpam \ secure/lib/libcrypto \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_ksu/Makefile.depend b/lib/libpam/modules/pam_ksu/Makefile.depend index 41f51403d928..f6e886edbc48 100644 --- a/lib/libpam/modules/pam_ksu/Makefile.depend +++ b/lib/libpam/modules/pam_ksu/Makefile.depend @@ -16,6 +16,7 @@ DIRDEPS = \ lib/libcom_err \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libpam/libpam \ secure/lib/libcrypto \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_nologin/Makefile.depend b/lib/libpam/modules/pam_nologin/Makefile.depend index 074ac81cfb42..0e5a16774bbd 100644 --- a/lib/libpam/modules/pam_nologin/Makefile.depend +++ b/lib/libpam/modules/pam_nologin/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libpam/libpam \ lib/libutil \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_opie/Makefile.depend b/lib/libpam/modules/pam_opie/Makefile.depend index f85cdc556e64..1e75b4a902b0 100644 --- a/lib/libpam/modules/pam_opie/Makefile.depend +++ b/lib/libpam/modules/pam_opie/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libopie \ + lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_opieaccess/Makefile.depend b/lib/libpam/modules/pam_opieaccess/Makefile.depend index e39349a33731..7316349cd5b6 100644 --- a/lib/libpam/modules/pam_opieaccess/Makefile.depend +++ b/lib/libpam/modules/pam_opieaccess/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libopie \ + lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_passwdqc/Makefile.depend b/lib/libpam/modules/pam_passwdqc/Makefile.depend index 4d6419c099ed..7cce822158bc 100644 --- a/lib/libpam/modules/pam_passwdqc/Makefile.depend +++ b/lib/libpam/modules/pam_passwdqc/Makefile.depend @@ -11,6 +11,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libpam/libpam \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_radius/Makefile.depend b/lib/libpam/modules/pam_radius/Makefile.depend index c09649a7373e..8daba2c77397 100644 --- a/lib/libpam/modules/pam_radius/Makefile.depend +++ b/lib/libpam/modules/pam_radius/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libpam/libpam \ lib/libradius \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_ssh/Makefile.depend b/lib/libpam/modules/pam_ssh/Makefile.depend index fe1b1a9881cc..e46aac47883c 100644 --- a/lib/libpam/modules/pam_ssh/Makefile.depend +++ b/lib/libpam/modules/pam_ssh/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libpam/libpam \ lib/libutil \ secure/lib/libcrypto \ secure/lib/libssh \ diff --git a/lib/libpam/modules/pam_tacplus/Makefile.depend b/lib/libpam/modules/pam_tacplus/Makefile.depend index d7bb6e103654..c3edc9b21fdc 100644 --- a/lib/libpam/modules/pam_tacplus/Makefile.depend +++ b/lib/libpam/modules/pam_tacplus/Makefile.depend @@ -10,6 +10,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + lib/libpam/libpam \ lib/libtacplus \ usr.bin/xinstall.host \ diff --git a/lib/libpam/modules/pam_unix/Makefile.depend b/lib/libpam/modules/pam_unix/Makefile.depend index 8bca5d89e833..47a9e7e0623c 100644 --- a/lib/libpam/modules/pam_unix/Makefile.depend +++ b/lib/libpam/modules/pam_unix/Makefile.depend @@ -12,6 +12,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libcrypt \ + lib/libpam/libpam \ lib/libutil \ lib/libypclnt \ usr.bin/xinstall.host \ From c0b2d894beb0265ed5b1c3b6f4c300f17f22126f Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 30 Nov 2014 18:48:57 +0000 Subject: [PATCH 186/228] update dependencies --- include/Makefile.depend | 1 - 1 file changed, 1 deletion(-) diff --git a/include/Makefile.depend b/include/Makefile.depend index 482a633b8798..8b97128420c9 100644 --- a/include/Makefile.depend +++ b/include/Makefile.depend @@ -3,7 +3,6 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ - bin/cat.host \ usr.bin/xinstall.host \ From aa9bd11d5d12ddc394c1868430ead2e6e61e4178 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 30 Nov 2014 18:50:15 +0000 Subject: [PATCH 187/228] If we are doing META_MODE use targets/Makefile as top-level since this one isn't suitable. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 3951269382ac..d2a5f3a5d108 100644 --- a/Makefile +++ b/Makefile @@ -99,6 +99,11 @@ # # For more information, see the build(7) manual page. # +.if ${MK_META_MODE} == "yes" +# targets/Makefile plays the role of top-level +.include "targets/Makefile" +.else + TGTS= all all-man buildenv buildenvvars buildkernel buildworld \ check-old check-old-dirs check-old-files check-old-libs \ checkdpadd clean cleandepend cleandir \ @@ -527,3 +532,4 @@ MAKE_JOB_ERROR_TOKEN= no .export MAKE_JOB_ERROR_TOKEN .endif .endif +.endif From 5edeb6659abf143ae0bc104819c3573b9f588122 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 30 Nov 2014 18:51:10 +0000 Subject: [PATCH 188/228] Add STALE_STAGED as default no --- share/mk/src.opts.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index 44d171dd7643..a78b32f103bd 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -170,6 +170,7 @@ __DEFAULT_NO_OPTIONS = \ SHARED_TOOLCHAIN \ SORT_THREADS \ SVN \ + STALE_STAGED \ SYSROOT # From 1253b02bf984d9c34b6d52ef55662568c83c63d9 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 24 May 2015 02:16:00 +0000 Subject: [PATCH 189/228] Add files to install --- share/mk/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/share/mk/Makefile b/share/mk/Makefile index cd69ca83f10c..b40c832ed209 100644 --- a/share/mk/Makefile +++ b/share/mk/Makefile @@ -4,6 +4,7 @@ .include FILES= \ + auto.obj.mk \ bsd.README \ bsd.arch.inc.mk \ bsd.compiler.mk \ @@ -38,6 +39,12 @@ FILES= \ bsd.symver.mk \ bsd.sys.mk \ bsd.test.mk \ + dirdeps.mk \ + gendirdeps.mk \ + meta.autodep.mk \ + meta.stage.mk \ + meta.subdir.mk \ + meta.sys.mk \ sys.mk \ version_gen.awk From 89ea69b2faeab753b868e1f665853c464e083058 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 24 May 2015 02:45:15 +0000 Subject: [PATCH 190/228] Move include of auto.obj.mk to sys.mk --- share/mk/local.sys.mk | 8 -------- 1 file changed, 8 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index 2fe3d8fb9978..aa9f82829448 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -158,14 +158,6 @@ TARGET_MACHINE= host OBJTOP := ${HOST_OBJTOP} .endif -# if you want objdirs make them automatic -# we need .OBJDIR made before we start populating .PATH -.if ${MKOBJDIRS:Uno} == "auto" || defined(WITH_AUTO_OBJ) -WITH_AUTO_OBJ= yes -MKOBJDIRS=auto -.include -.endif - # the logic in bsd.own.mk forces this dance .ifndef WITHOUT_META_MODE WITH_META_MODE= yes From 9932374ea3c345be2b3bf75259d51d93ab650d6e Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 24 May 2015 02:46:08 +0000 Subject: [PATCH 191/228] Add options for auto obj and meta mode to sys.mk --- share/mk/sys.mk | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/share/mk/sys.mk b/share/mk/sys.mk index 54ded9d2c3fe..73a5e26ba015 100644 --- a/share/mk/sys.mk +++ b/share/mk/sys.mk @@ -328,10 +328,30 @@ __MAKE_CONF?=/etc/make.conf .endif # Setup anything for the FreeBSD source build, if we're building -# inside the source tree. Needs to be after make.conf, but before -# local stuff. +# inside the source tree. Needs to be after make.conf .sinclude +# Some options we need now +__DEFAULT_NO_OPTIONS+= \ + AUTO_OBJ \ + META_MODE \ + META_FILES \ + STAGING + +.include + +.if ${MK_AUTO_OBJ} == "yes" +# This needs to be done early - before .PATH is computed +.sinclude +.endif +.if ${MK_META_MODE} == "yes" +.sinclude +.elif ${MK_META_FILES} == "yes" +.MAKE.MODE= meta verbose +.else +MK_STAGING= no +.endif + .if defined(__MAKE_SHELL) && !empty(__MAKE_SHELL) SHELL= ${__MAKE_SHELL} .SHELL: path=${__MAKE_SHELL} From 3b33c213ef9a3dfab615817961600ad1e2b765b5 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 26 May 2015 16:17:24 +0000 Subject: [PATCH 192/228] Add support for __DEFAULT_DEPENDENT_OPTIONS --- share/mk/bsd.mkopt.mk | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/share/mk/bsd.mkopt.mk b/share/mk/bsd.mkopt.mk index 46f835b86dca..6a41dbe43b5b 100644 --- a/share/mk/bsd.mkopt.mk +++ b/share/mk/bsd.mkopt.mk @@ -18,6 +18,10 @@ # after all this processing, allowing this file to be included # multiple times with different lists. # +# Other parts of the build system will set BROKEN_OPTIONS to a list +# of options that are broken on this platform. This will not be unset +# before returning. Clients are expected to always += this variable. +# # Users should generally define WITH_FOO or WITHOUT_FOO, but the build # system should use MK_FOO={yes,no} when it needs to override the # user's desires or default behavior. @@ -33,7 +37,11 @@ MK_${var}:= no .else MK_${var}:= yes .endif +.else +.if ${MK_${var}} != "yes" && ${MK_${var}} != "no" +.error "Illegal value for MK_${var}: ${MK_${var}}" .endif +.endif # !defined(MK_${var}) .endfor .undef __DEFAULT_YES_OPTIONS @@ -47,6 +55,31 @@ MK_${var}:= yes .else MK_${var}:= no .endif +.else +.if ${MK_${var}} != "yes" && ${MK_${var}} != "no" +.error "Illegal value for MK_${var}: ${MK_${var}}" .endif +.endif # !defined(MK_${var}) .endfor .undef __DEFAULT_NO_OPTIONS + +# +# MK_* options which are always no, usually because they are +# unsupported/badly broken on this architecture. +# +.for var in ${BROKEN_OPTIONS} +MK_${var}:= no +.endfor + +.for vv in ${__DEFAULT_DEPENDENT_OPTIONS} +.if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H}) +MK_${vv:H}?= no +.elif defined(WITH_${vv:H}) +MK_${vv:H}?= yes +.elif defined(WITHOUT_${vv:H}) +MK_${vv:H}?= no +.else +MK_${vv:H}?= ${MK_${vv:T}} +.endif +.endfor +.undef __DEFAULT_DEPENDENT_OPTIONS From 71edef51db4780f3556a74185469f17d5cdaaf11 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 26 May 2015 21:03:41 +0000 Subject: [PATCH 193/228] Latest dirdeps.mk and meta.stage.mk Add support for dirdeps cache and allow full path as key for STAGE_AS_* --- share/mk/dirdeps.mk | 89 +++++++++++++++++++++++++++++++++++++++++- share/mk/meta.stage.mk | 6 ++- 2 files changed, 91 insertions(+), 4 deletions(-) diff --git a/share/mk/dirdeps.mk b/share/mk/dirdeps.mk index a2f3686f4766..d46bced3f89d 100644 --- a/share/mk/dirdeps.mk +++ b/share/mk/dirdeps.mk @@ -1,4 +1,4 @@ -# $Id: dirdeps.mk,v 1.38 2014/11/20 22:22:30 sjg Exp $ +# $Id: dirdeps.mk,v 1.53 2015/05/24 07:08:24 sjg Exp $ # Copyright (c) 2010-2013, Juniper Networks, Inc. # All rights reserved. @@ -123,6 +123,12 @@ _DIRDEP_USE_LEVEL?= 0 .if !target(_DIRDEP_USE) # do some setup we only need once _CURDIR ?= ${.CURDIR} +_OBJDIR ?= ${.OBJDIR} + +now_utc = ${%s:L:gmtime} +.if !defined(start_utc) +start_utc := ${now_utc} +.endif # make sure these are empty to start with _DEP_TARGET_SPEC = @@ -334,6 +340,70 @@ _only_machines := ${_only_machines:${NOT_MACHINE_LIST:${M_ListToSkip}}} DIRDEPS ?= ${RELDIR} .endif # target +# if repeatedly building the same target, +# we can avoid the overhead of re-computing the tree dependencies. +MK_DIRDEPS_CACHE ?= no +BUILD_DIRDEPS_CACHE ?= no +BUILD_DIRDEPS ?= yes + +.if !defined(NO_DIRDEPS) +.if ${MK_DIRDEPS_CACHE} == "yes" +# this is where we will cache all our work +DIRDEPS_CACHE?= ${_OBJDIR}/dirdeps.cache${.TARGETS:Nall:O:u:ts-:S,/,_,g:S,^,.,:N.} + +# just ensure this exists +build-dirdeps: + +M_oneperline = @x@\\${.newline} $$x@ + +.if ${BUILD_DIRDEPS_CACHE} == "no" +.if !target(dirdeps-cached) +# we do this via sub-make +BUILD_DIRDEPS = no + +dirdeps: dirdeps-cached +dirdeps-cached: ${DIRDEPS_CACHE} .MAKE + @echo "${TRACER}Using ${DIRDEPS_CACHE}" + @MAKELEVEL=${.MAKE.LEVEL} ${.MAKE} -C ${_CURDIR} -f ${DIRDEPS_CACHE} \ + dirdeps MK_DIRDEPS_CACHE=no BUILD_DIRDEPS=no + +# these should generally do +BUILD_DIRDEPS_MAKEFILE ?= ${MAKEFILE} +BUILD_DIRDEPS_TARGETS ?= ${.TARGETS} + +# we need the .meta file to ensure we update if +# any of the Makefile.depend* changed. +# We do not want to compare the command line though. +${DIRDEPS_CACHE}: .META .NOMETA_CMP + +@{ echo '# Autogenerated - do NOT edit!'; echo; \ + echo 'BUILD_DIRDEPS=no'; echo; \ + echo '.include '; \ + } > ${.TARGET}.new + +@MAKELEVEL=${.MAKE.LEVEL} DIRDEPS_CACHE=${DIRDEPS_CACHE} \ + DIRDEPS="${DIRDEPS}" \ + MAKEFLAGS= ${.MAKE} -C ${_CURDIR} -f ${BUILD_DIRDEPS_MAKEFILE} \ + ${BUILD_DIRDEPS_TARGETS} BUILD_DIRDEPS_CACHE=yes \ + .MAKE.DEPENDFILE=.none \ + 3>&1 1>&2 | sed 's,${SRCTOP},$${SRCTOP},g' >> ${.TARGET}.new && \ + mv ${.TARGET}.new ${.TARGET} + +.endif +.elif !target(_count_dirdeps) +# we want to capture the dirdeps count in the cache +.END: _count_dirdeps +_count_dirdeps: .NOMETA + @echo '.info $${.newline}$${TRACER}Makefiles read: total=${.MAKE.MAKEFILES:[#]} depend=${.MAKE.MAKEFILES:M*depend*:[#]} dirdeps=${.ALLTARGETS:M${SRCTOP}*:O:u:[#]}' >&3 + +.endif +.elif !make(dirdeps) && !target(_count_dirdeps) +beforedirdeps: _count_dirdeps +_count_dirdeps: .NOMETA + @echo "${TRACER}Makefiles read: total=${.MAKE.MAKEFILES:[#]} depend=${.MAKE.MAKEFILES:M*depend*:[#]} dirdeps=${.ALLTARGETS:M${SRCTOP}*:O:u:[#]} seconds=`expr ${now_utc} - ${start_utc}`" + +.endif +.endif + +.if ${BUILD_DIRDEPS} == "yes" .if ${DEBUG_DIRDEPS:@x@${DEP_RELDIR:M$x}${${DEP_RELDIR}.${DEP_MACHINE}:L:M$x}@} != "" _debug_reldir = 1 .else @@ -453,8 +523,14 @@ _build_dirs := ${_build_dirs:${M_dep_qual_fixes:ts:}:O:u} # but if we want to count the number of Makefile.depend* read, we do. .if ${.MAKEFLAGS:M-V${_V_READ_DIRDEPS}} == "" .if !empty(_build_dirs) +.if ${BUILD_DIRDEPS_CACHE} == "yes" +x!= { echo; echo '\# ${DEP_RELDIR}.${DEP_TARGET_SPEC}'; \ + echo 'dirdeps: ${_build_dirs:${M_oneperline}}'; echo; } >&3; echo +x!= { ${_build_dirs:@x@${target($x):?:echo '$x: _DIRDEP_USE';}@} echo; } >&3; echo +.else # this makes it all happen dirdeps: ${_build_dirs} +.endif ${_build_dirs}: _DIRDEP_USE .if ${_debug_reldir} @@ -469,13 +545,21 @@ ${_build_dirs}: _DIRDEP_USE .if ${_debug_reldir} || ${DEBUG_DIRDEPS:@x@${${DEP_RELDIR}.$m:L:M$x}${${DEP_RELDIR}.$q:L:M$x}@} != "" .info ${DEP_RELDIR}.$m: graph: ${_build_dirs:M*.$q} .endif +.if ${BUILD_DIRDEPS_CACHE} == "yes" +x!= { echo; echo '${_this_dir}.$m: ${_build_dirs:M*.$q:${M_oneperline}}'; echo; } >&3; echo +.else ${_this_dir}.$m: ${_build_dirs:M*.$q} +.endif .endfor .endif .if ${_debug_reldir} .info ${DEP_RELDIR}.$m: graph: ${_build_dirs:M*.$m:N${_this_dir}.$m} .endif +.if ${BUILD_DIRDEPS_CACHE} == "yes" +x!= { echo; echo '${_this_dir}.$m: ${_build_dirs:M*.$m:N${_this_dir}.$m:${M_oneperline}}'; echo; } >&3; echo +.else ${_this_dir}.$m: ${_build_dirs:M*.$m:N${_this_dir}.$m} +.endif .endfor .endif @@ -514,6 +598,7 @@ _DEP_MACHINE := ${d:E:C/,.*//} .endfor .endif # -V +.endif # BUILD_DIRDEPS .elif ${.MAKE.LEVEL} > 42 .error You should have stopped recursing by now. @@ -524,7 +609,7 @@ _DEP_RELDIR := ${DEP_RELDIR} .endif # bootstrapping new dependencies made easy? -.if make(bootstrap*) && !target(bootstrap) +.if (make(bootstrap) || make(bootstrap-recurse)) && !target(bootstrap) .if exists(${.CURDIR}/${.MAKE.DEPENDFILE:T}) # stop here diff --git a/share/mk/meta.stage.mk b/share/mk/meta.stage.mk index cd951136fb72..588f50e98204 100644 --- a/share/mk/meta.stage.mk +++ b/share/mk/meta.stage.mk @@ -1,4 +1,4 @@ -# $Id: meta.stage.mk,v 1.34 2014/11/20 22:40:08 sjg Exp $ +# $Id: meta.stage.mk,v 1.35 2015/05/20 06:40:33 sjg Exp $ # # @(#) Copyright (c) 2011, Simon J. Gerraty # @@ -218,7 +218,7 @@ STAGE_AS.$s ?= ${.ALLSRC:N.dirdep} stage_as: stage_as.$s stage_as.$s: .dirdep - @${STAGE_AS_SCRIPT}; StageAs ${FLAGS.$@} ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_AS.$s:@f@$f ${STAGE_AS_${f:T}:U${f:T}}@} + @${STAGE_AS_SCRIPT}; StageAs ${FLAGS.$@} ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_AS.$s:@f@$f ${STAGE_AS_${f:tA}:U${STAGE_AS_${f:T}:U${f:T}}}@} @touch $@ .endfor @@ -238,7 +238,9 @@ staging: # generally we want staging to wait until everything else is done STAGING_WAIT ?= .WAIT +.if ${.MAKE.LEVEL} > 0 all: ${STAGING_WAIT} staging +.endif .if exists(${.PARSEDIR}/stage-install.sh) && !defined(STAGE_INSTALL) # this will run install(1) and then followup with .dirdep files. From ae3019ca089722bfac8a1f8b7a8962fa769d90fe Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 26 May 2015 21:41:26 +0000 Subject: [PATCH 194/228] Define SRCTOP in src.sys.mk Use SRCTOP to replace .../ in MAKSYSPATH (avoid extra :tA) Use SRCTOP rather than ROOTSRCDIR in src.libnames.mk Merge from head --- share/mk/src.libnames.mk | 379 +++++++++++++++++++++++++++++++++++---- share/mk/src.opts.mk | 75 +++++--- share/mk/src.sys.mk | 13 ++ 3 files changed, 407 insertions(+), 60 deletions(-) diff --git a/share/mk/src.libnames.mk b/share/mk/src.libnames.mk index d2dffca3236d..9b357035be20 100644 --- a/share/mk/src.libnames.mk +++ b/share/mk/src.libnames.mk @@ -7,56 +7,363 @@ .error src.libnames.mk cannot be included directly. .endif -.if defined(OBJTOP) -ROOTOBJDIR= ${OBJTOP} -.else -ROOTOBJDIR= ${.OBJDIR:S/${.CURDIR}//}${.MAKE.MAKEFILES:M*/src.libnames.mk:H:H:H} +.include + +.if defined(MAKEOBJDIRPREFIX) && ${.OBJDIR:M${MAKEOBJDIRPREFIX}/*} != "" +ROOTOBJDIR= ${.OBJDIR:S/${.CURDIR}//}${SRCTOP} +.elif defined(OBJTOP) && ${.OBJDIR:M${OBJTOP}*} != "" +ROOTOBJDIR= ${OBJTOP} .endif -LIBATF_CDIR= ${ROOTOBJDIR}/lib/atf/libatf-c -LDATF_C?= ${LIBATF_CDIR}/libatf-c.so -LIBATF_C?= ${LIBATF_CDIR}/libatf-c.a +_PRIVATELIBS= \ + atf_c \ + atf_cxx \ + bsdstat \ + event \ + heimipcc \ + heimipcs \ + ldns \ + sqlite3 \ + ssh \ + ucl \ + unbound -LIBATF_CXXDIR= ${ROOTOBJDIR}/lib/atf/libatf-c++ -LDATF_CXX?= ${LIBATF_CXXDIR}/libatf-c++.so -LIBATF_CXX?= ${LIBATF_CXXDIR}/libatf-c++.a +_INTERNALLIBS= \ + amu \ + bsnmptools \ + cron \ + elftc \ + fifolog \ + ipf \ + lpr \ + netbsd \ + ntp \ + ntpevent \ + ohash \ + opts \ + parse \ + readline \ + sl \ + sm \ + smdb \ + smutil \ + telnet \ + vers -LIBBSDSTATDIR= ${ROOTOBJDIR}/lib/libbsdstat -LDBSDSTAT?= ${LIBBSDSTATDIR}/libbsdstat.so -LIBBSDSTAT?= ${LIBBSDSTATDIR}/libbsdstat.a +_LIBRARIES= \ + ${_PRIVATELIBS} \ + ${_INTERNALLIBS} \ + alias \ + archive \ + asn1 \ + auditd \ + begemot \ + bluetooth \ + bsdxml \ + bsm \ + bsnmp \ + bz2 \ + c \ + c_pic \ + calendar \ + cam \ + capsicum \ + casper \ + com_err \ + compiler_rt \ + crypt \ + crypto \ + ctf \ + cuse \ + cxxrt \ + devctl \ + devinfo \ + devstat \ + dialog \ + dpv \ + dtrace \ + dwarf \ + edit \ + elf \ + execinfo \ + fetch \ + figpar \ + geom \ + gnuregex \ + gpio \ + gssapi \ + gssapi_krb5 \ + hdb \ + heimbase \ + heimntlm \ + heimsqlite \ + hx509 \ + ipsec \ + jail \ + kadm5clnt \ + kadm5srv \ + kafs5 \ + kdc \ + kiconv \ + krb5 \ + kvm \ + l \ + lzma \ + m \ + magic \ + md \ + memstat \ + mp \ + mt \ + nandfs \ + ncurses \ + ncursesw \ + netgraph \ + ngatm \ + nv \ + opie \ + pam \ + pcap \ + pcsclite \ + pjdlog \ + pmc \ + proc \ + procstat \ + pthread \ + radius \ + readline \ + roken \ + rpcsec_gss \ + rpcsvc \ + rt \ + rtld_db \ + sbuf \ + sdp \ + sm \ + smb \ + ssl \ + ssp_nonshared \ + stdthreads \ + supcplusplus \ + tacplus \ + termcapw \ + ufs \ + ugidfw \ + ulog \ + usb \ + usbhid \ + util \ + vmmapi \ + wind \ + wrap \ + xo \ + y \ + ypclnt \ + z -LIBEVENTDIR= ${ROOTOBJDIR}/lib/libevent -LDEVENT?= ${LIBEVENTDIR}/libevent.so -LIBEVENT?= ${LIBEVENTDIR}/libevent.a +_DP_archive= z bz2 lzma bsdxml +.if ${MK_OPENSSL} != "no" +_DP_archive+= crypto +.else +_DP_archive+= md +.endif +_DP_ssl= crypto +_DP_ssh= crypto crypt +.if ${MK_LDNS} != "no" +_DP_ssh+= ldns z +.endif +_DP_edit= ncursesw +.if ${MK_OPENSSL} != "no" +_DP_bsnmp= crypto +.endif +_DP_geom= bsdxml sbuf +_DP_cam= sbuf +_DP_casper= capsicum nv pjdlog +_DP_capsicum= nv +_DP_pjdlog= util +_DP_opie= md +_DP_usb= pthread +_DP_unbound= pthread +_DP_rt= pthread +.if ${MK_OPENSSL} == "no" +_DP_radius= md +.else +_DP_radius= crypto +.endif +_DP_procstat= kvm util elf +.if ${MK_CXX} == "yes" +.if ${MK_LIBCPLUSPLUS} != "no" +_DP_proc= cxxrt +.else +_DP_proc= supcplusplus +.endif +.endif +.if ${MK_CDDL} != "no" +_DP_proc+= ctf +.endif +_DP_mp= crypto +_DP_memstat= kvm +_DP_magic= z +_DP_mt= bsdxml +_DP_ldns= crypto +.if ${MK_OPENSSL} != "no" +_DP_fetch= ssl crypto +.else +_DP_fetch= md +.endif +_DP_execinfo= elf +_DP_dwarf= elf +_DP_dpv= dialog figpar util +_DP_dialog= ncursesw m +_DP_cuse= pthread +_DP_atf_cxx= atf_c +_DP_devstat= kvm +_DP_pam= radius tacplus opie md util +.if ${MK_KERBEROS} != "no" +_DP_pam+= krb5 +.endif +.if ${MK_OPENSSH} != "no" +_DP_pam+= ssh +.endif +.if ${MK_NIS} != "no" +_DP_pam+= ypclnt +.endif +_DP_krb5+= asn1 com_err crypt crypto hx509 roken wind heimbase heimipcc \ + pthread +_DP_gssapi_krb5+= gssapi krb5 crypto roken asn1 com_err +_DP_lzma= pthread +_DP_ucl= m +_DP_vmmapi= util +_DP_ctf= z +_DP_proc= rtld_db util +_DP_dtrace= rtld_db pthread -LIBHEIMIPCCDIR= ${ROOTOBJDIR}/kerberos5/lib/libheimipcc -LDHEIMIPCC?= ${LIBHEIMIPCCDIR}/libheimipcc.so -LIBHEIMIPCC?= ${LIBHEIMIPCCDIR}/libheimipcc.a +# Define spacial cases +LDADD_supcplusplus= -lsupc++ +LIBATF_C= ${DESTDIR}${LIBDIR}/libprivateatf-c.a +LIBATF_CXX= ${DESTDIR}${LIBDIR}/libprivateatf-c++.a +LDADD_atf_c= -lprivateatf-c +LDADD_atf_cxx= -lprivateatf-c++ -LIBHEIMIPCSDIR= ${ROOTOBJDIR}/kerberos5/lib/libheimipcs -LDHEIMIPCS?= ${LIBHEIMIPCSDIR}/libheimipcs.so -LIBHEIMIPCS?= ${LIBHEIMIPCSDIR}/libheimipcs.a +.for _l in ${_PRIVATELIBS} +LIB${_l:tu}?= ${DESTDIR}${LIBDIR}/libprivate${_l}.a +.endfor -LIBLDNSDIR= ${ROOTOBJDIR}/lib/libldns -LDLDNS?= ${LIBLDNSDIR}/libldns.so -LIBLDNS?= ${LIBLDNSDIR}/libldns.a +.for _l in ${_LIBRARIES} +.if ${_INTERNALLIBS:M${_l}} +LDADD_${_l}_L+= -L${LIB${_l:tu}DIR} +.endif +DPADD_${_l}?= ${LIB${_l:tu}} +.if ${_PRIVATELIBS:M${_l}} +LDADD_${_l}?= -lprivate${_l} +.else +LDADD_${_l}?= ${LDADD_${_l}_L} -l${_l} +.endif +.if defined(_DP_${_l}) && defined(NO_SHARED) +.for _d in ${_DP_${_l}} +DPADD_${_l}+= ${DPADD_${_d}} +LDADD_${_l}+= ${LDADD_${_d}} +.endfor +.endif +.endfor -LIBSSHDIR= ${ROOTOBJDIR}/secure/lib/libssh -LDSSH?= ${LIBSSHDIR}/libssh.so -LIBSSH?= ${LIBSSHDIR}/libssh.a +DPADD_atf_cxx+= ${DPADD_atf_c} +LDADD_atf_cxx+= ${LDADD_atf_c} -LIBUNBOUNDDIR= ${ROOTOBJDIR}/lib/libunbound -LDUNBOUND?= ${LIBUNBOUNDDIR}/libunbound.so -LIBUNBOUND?= ${LIBUNBOUNDDIR}/libunbound.a +DPADD_sqlite3+= ${DPADD_pthread} +LDADD_sqlite3+= ${LDADD_pthread} -LIBUCLDIR= ${ROOTOBJDIR}/lib/libucl -LDUCL?= ${LIBUCLDIR}/libucl.so -LIBUCL?= ${LIBUCLDIR}/libucl.a +DPADD_fifolog+= ${DPADD_z} +LDADD_fifolog+= ${LDADD_z} + +DPADD_ipf+= ${DPADD_kvm} +LDADD_ipf+= ${LDADD_kvm} + +DPADD_mt+= ${DPADD_sbuf} +LDADD_mt+= ${LDADD_sbuf} + +DPADD_dtrace+= ${DPADD_ctf} ${DPADD_elf} ${DPADD_proc} +LDADD_dtrace+= ${LDADD_ctf} ${LDADD_elf} ${LDADD_proc} + +# The following depends on libraries which are using pthread +DPADD_hdb+= ${DPADD_pthread} +LDADD_hdb+= ${LDADD_pthread} +DPADD_kadm5srv+= ${DPADD_pthread} +LDADD_kadm5srv+= ${LDADD_pthread} +DPADD_krb5+= ${DPADD_pthread} +LDADD_krb5+= ${LDADD_pthread} +DPADD_gssapi_krb5+= ${DPADD_pthread} +LDADD_gssapi_krb5+= ${LDADD_pthread} + +.for _l in ${LIBADD} +.if ${_PRIVATELIBS:M${_l}} +USEPRIVATELIB+= ${_l} +.endif +DPADD+= ${DPADD_${_l}:Umissing-dpadd_${_l}} +LDADD+= ${LDADD_${_l}} +.endfor + +.if defined(DPADD) && ${DPADD:Mmissing-dpadd_*} +.error Missing ${DPADD:Mmissing-dpadd_*:S/missing-dpadd_//:S/^/DPADD_/} variable add "${DPADD:Mmissing-dpadd_*:S/missing-dpadd_//}" to _LIBRARIES, _INTERNALLIBS, or _PRIVATELIBS and define "${DPADD:Mmissing-dpadd_*:S/missing-dpadd_//:S/^/LIB/:tu}". +.endif + +LIBELFTCDIR= ${ROOTOBJDIR}/lib/libelftc +LIBELFTC?= ${LIBELFTCDIR}/libelftc.a LIBREADLINEDIR= ${ROOTOBJDIR}/gnu/lib/libreadline/readline -LDREADLINE?= ${LIBREADLINEDIR}/libreadline.a LIBREADLINE?= ${LIBREADLINEDIR}/libreadline.a LIBOHASHDIR= ${ROOTOBJDIR}/lib/libohash -LDOHASH?= ${LIBOHASHDIR}/libohash.a LIBOHASH?= ${LIBOHASHDIR}/libohash.a + +LIBSMDIR= ${ROOTOBJDIR}/lib/libsm +LIBSM?= ${LIBSMDIR}/libsm.a + +LIBSMDBDIR= ${ROOTOBJDIR}/lib/libsmdb +LIBSMDB?= ${LIBSMDBDIR}/libsmdb.a + +LIBSMUTILDIR= ${ROOTOBJDIR}/lib/libsmutil +LIBSMUTIL?= ${LIBSMDBDIR}/libsmutil.a + +LIBNETBSDDIR?= ${ROOTOBJDIR}/lib/libnetbsd +LIBNETBSD?= ${LIBNETBSDDIR}/libnetbsd.a + +LIBVERSDIR?= ${ROOTOBJDIR}/kerberos5/lib/libvers +LIBVERS?= ${LIBVERSDIR}/libvers.a + +LIBSLDIR= ${ROOTOBJDIR}/kerberos5/lib/libsl +LIBSL?= ${LIBSLDIR}/libsl.a + +LIBIPFDIR= ${ROOTOBJDIR}/sbin/ipf/libipf +LIBIPF?= ${LIBIPFDIR}/libipf.a + +LIBTELNETDIR= ${ROOTOBJDIR}/lib/libtelnet +LIBTELNET?= ${LIBIPFDIR}/libtelnet.a + +LIBCRONDIR= ${ROOTOBJDIR}/usr.sbin/cron/lib +LIBCRON?= ${LIBCRONDIR}/libcron.a + +LIBNTPDIR= ${ROOTOBJDIR}/usr.sbin/ntp/libntp +LIBNTP?= ${LIBNTPDIR}/libntp.a + +LIBNTPEVENTDIR= ${ROOTOBJDIR}/usr.sbin/ntp/libntpevent +LIBNTPEVENT?= ${LIBNTPEVENTDIR}/libntpevent.a + +LIBOPTSDIR= ${ROOTOBJDIR}/usr.sbin/ntp/libopts +LIBOTPS?= ${LIBOPTSDIR}/libopts.a + +LIBPARSEDIR= ${ROOTOBJDIR}/usr.sbin/ntp/libparse +LIBPARSE?= ${LIBPARSEDIR}/libparse.a + +LIBLPRDIR= ${ROOTOBJDIR}/usr.sbin/lpr/common_source +LIBLPR?= ${LIBOPTSDIR}/liblpr.a + +LIBFIFOLOGDIR= ${ROOTOBJDIR}/usr.sbin/fifolog/lib +LIBFIFOLOG?= ${LIBOPTSDIR}/libfifolog.a + +LIBBSNMPTOOLSDIR= ${ROOTOBJDIR}/usr.sbin/bsnmpd/tools/libbsnmptools +LIBBSNMPTOOLS?= ${LIBBSNMPTOOLSDIR}/libbsnmptools.a + +LIBAMUDIR= ${ROOTOBJDIR}/usr.sbin/amd/libamu +LIBAMU?= ${LIBAMUDIR}/libamu/libamu.a + diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index a78b32f103bd..21041bf81a8c 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -11,7 +11,7 @@ # are exceptions). Recursive makes usually add MK_FOO=no for options that they wish # to omit from that make. # -# Makefiles must include bsd.srcpot.mk before they test the value of any MK_FOO +# Makefiles must include bsd.mkopt.mk before they test the value of any MK_FOO # variable. # # Makefiles may also assume that this file is included by src.opts.mk should it @@ -52,16 +52,22 @@ __DEFAULT_YES_OPTIONS = \ ATM \ AUDIT \ AUTHPF \ + AUTOFS \ + BHYVE \ BINUTILS \ BINUTILS_BOOTSTRAP \ BLUETOOTH \ BOOT \ + BOOTPARAMD \ + BOOTPD \ BSD_CPIO \ + BSDINSTALL \ BSNMP \ BZIP2 \ CALENDAR \ CAPSICUM \ CASPER \ + CCD \ CDDL \ CPP \ CROSS_COMPILER \ @@ -73,29 +79,36 @@ __DEFAULT_YES_OPTIONS = \ DMAGENT \ DYNAMICROOT \ ED_CRYPTO \ + EE \ + ELFTOOLCHAIN_TOOLS \ EXAMPLES \ FDT \ + FILE \ + FINGER \ FLOPPY \ FMTREE \ FORTH \ FP_LIBC \ FREEBSD_UPDATE \ + FTP \ GAMES \ GCOV \ GDB \ GNU \ GNU_GREP_COMPAT \ - GPIB \ GPIO \ GPL_DTC \ GROFF \ + HAST \ HTML \ HYPERV \ ICONV \ INET \ INET6 \ + INETD \ IPFILTER \ IPFW \ + ISCSI \ JAIL \ KDUMP \ KVM \ @@ -128,7 +141,9 @@ __DEFAULT_YES_OPTIONS = \ PORTSNAP \ PPP \ QUOTAS \ + RADIUS_SUPPORT \ RCMDS \ + RBOOTD \ RCS \ RESCUE \ ROUTED \ @@ -139,13 +154,16 @@ __DEFAULT_YES_OPTIONS = \ SOURCELESS_HOST \ SOURCELESS_UCODE \ SVNLITE \ - SYSCALL_COMPAT \ SYSCONS \ SYSINSTALL \ + TALK \ + TCP_WRAPPERS \ TCSH \ TELNET \ TESTS \ TEXTPROC \ + TFTP \ + TIMED \ UNBOUND \ USB \ UTMPX \ @@ -169,9 +187,8 @@ __DEFAULT_NO_OPTIONS = \ OPENSSH_NONE_CIPHER \ SHARED_TOOLCHAIN \ SORT_THREADS \ - SVN \ STALE_STAGED \ - SYSROOT + SVN # # Default behaviour of some options depends on the architecture. Unfortunately @@ -192,25 +209,36 @@ __TT=${TARGET} .else __TT=${MACHINE} .endif -# Clang is only for x86, powerpc and little-endian arm right now, by default. -.if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*} -__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL CLANG_BOOTSTRAP -.elif ${__TT} == "arm" && ${__T:Marm*eb*} == "" -__DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP -# GCC is unable to build the full clang on arm, disable it by default. -__DEFAULT_NO_OPTIONS+=CLANG_FULL -.else -__DEFAULT_NO_OPTIONS+=CLANG CLANG_FULL CLANG_BOOTSTRAP -.endif -# Clang the default system compiler only on little-endian arm and x86. -.if ${__T} == "amd64" || (${__TT} == "arm" && ${__T:Marm*eb*} == "") || \ - ${__T} == "i386" -__DEFAULT_YES_OPTIONS+=CLANG_IS_CC -__DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX -.else -# If clang is not cc, then build gcc by default -__DEFAULT_NO_OPTIONS+=CLANG_IS_CC CLANG CLANG_BOOTSTRAP + +.include +.if !${COMPILER_FEATURES:Mc++11} +# If the compiler is not C++11 capable, disable clang and use gcc instead. __DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX +__DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC +.elif ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" +# On x86 and arm64, clang is enabled, and will be installed as the default cc. +__DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC +__DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX +.elif ${__TT} == "arm" && ${__T:Marm*eb*} == "" +# On little-endian arm, clang is enabled, and it is installed as the default +# cc, but since gcc is unable to build the full clang, disable it by default. +__DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_IS_CC +__DEFAULT_NO_OPTIONS+=CLANG_FULL GCC GCC_BOOTSTRAP GNUCXX +.elif ${__T:Mpowerpc*} +# On powerpc, clang is enabled, but gcc is installed as the default cc. +__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL GCC GCC_BOOTSTRAP GNUCXX +__DEFAULT_NO_OPTIONS+=CLANG_BOOTSTRAP CLANG_IS_CC +.else +# Everything else disables clang, and uses gcc instead. +__DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX +__DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC +.endif +.if ${__T} == "aarch64" +BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GCC GCC_BOOTSTRAP GDB +.endif +# LLVM lacks support for FreeBSD 64-bit atomic operations for ARMv4/ARMv5 +.if ${__T} == "arm" || ${__T} == "armeb" +BROKEN_OPTIONS+=LLDB .endif .include @@ -218,7 +246,6 @@ __DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX # # MK_* options that default to "yes" if the compiler is a C++11 compiler. # -.include .for var in \ LIBCPLUSPLUS .if !defined(MK_${var}) diff --git a/share/mk/src.sys.mk b/share/mk/src.sys.mk index 4bd22e5e80e8..e235a64f52dd 100644 --- a/share/mk/src.sys.mk +++ b/share/mk/src.sys.mk @@ -5,9 +5,22 @@ # to preserve historical (and useful) behavior. Changes here need to # be reflected there so SRCCONF isn't included multiple times. +# make sure this is defined in a consistent manner +SRCTOP:= ${.PARSEDIR:tA:H:H} + # Allow user to configure things that only effect src tree builds. SRCCONF?= /etc/src.conf .if (exists(${SRCCONF}) || ${SRCCONF} != "/etc/src.conf") && !target(_srcconf_included_) .sinclude "${SRCCONF}" _srcconf_included_: .NOTMAIN .endif +# If we were found via .../share/mk we need to replace that in +# with ${SRCTOP} so that we can be found by +# sub-makes launched from objdir. +.if ${.MAKEFLAGS:M.../share/mk} != "" +.MAKEFLAGS:= ${.MAKEFLAGS:S,.../share/mk,${SRCTOP}/share/mk,} +.endif +.if ${MAKESYSPATH:Uno:M*.../*} != "" +MAKESYSPATH:= ${MAKESYSPATH:S,.../share/mk,${SRCTOP}/share/mk,} +.export MAKESYSPATH +.endif From 4113aa90776ac4b6d192cfbef7f021f8d6a98cf4 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 26 May 2015 21:44:15 +0000 Subject: [PATCH 195/228] Move META_MODE bits to local.meta.sys.mk By moving META_MODE bits from local.sys.mk, they are easier to skip when MK_META_MODE=no Update some filters to cope with sync from head. If buildworld etc or WITHOUT_META_MODE disable all the META_MODE related options. --- share/mk/local.dirdeps.mk | 4 + share/mk/local.gendirdeps.mk | 9 ++ share/mk/local.init.mk | 5 +- share/mk/local.meta.sys.mk | 204 ++++++++++++++++++++++++++ share/mk/local.sys.mk | 273 ++--------------------------------- 5 files changed, 231 insertions(+), 264 deletions(-) create mode 100644 share/mk/local.meta.sys.mk diff --git a/share/mk/local.dirdeps.mk b/share/mk/local.dirdeps.mk index 88783db69973..33838219660e 100644 --- a/share/mk/local.dirdeps.mk +++ b/share/mk/local.dirdeps.mk @@ -35,6 +35,7 @@ _need_host_libs= \ lib/libc++ \ lib/libcxxrt \ lib/libdwarf \ + lib/libmd \ N_host_libs:= ${cd ${SRCTOP} && echo lib/lib*:L:sh:${_need_host_libs:${M_ListToSkip}}:${M_ListToSkip}} DIRDEPS_FILTER.host = \ @@ -44,6 +45,7 @@ DIRDEPS_FILTER.host = \ Nlib/[mn]* \ Ngnu/lib/csu* \ Ngnu/lib/lib[a-r]* \ + Nusr.bin/xinstall* \ DIRDEPS_FILTER+= \ @@ -81,10 +83,12 @@ DIRDEPS += \ DIRDEPS+= lib/clang/include .endif +.if ${MK_STAGING} == "yes" # we need targets/pseudo/stage to prep the stage tree .if ${DEP_RELDIR} != "targets/pseudo/stage" DIRDEPS += targets/pseudo/stage .endif +.endif CSU_DIR.i386 = csu/i386-elf DEP_MACHINE_ARCH = ${MACHINE_ARCH.${DEP_MACHINE}} diff --git a/share/mk/local.gendirdeps.mk b/share/mk/local.gendirdeps.mk index df32cda6af2e..6bfc5c620b53 100644 --- a/share/mk/local.gendirdeps.mk +++ b/share/mk/local.gendirdeps.mk @@ -9,12 +9,21 @@ GENDIRDEPS_FILTER+= \ Ntools/* .if ${RELDIR:Mtargets*} == "" +.if ${RELDIR:Nusr.bin/clang/*:Ngnu/usr.bin/cc/*:Nlib/clang*} != "" +GENDIRDEPS_FILTER.host+= \ + Nusr.bin/clang/* \ + Ngnu/usr.bin/cc/* \ + +.endif GENDIRDEPS_FILTER+= \ Nusr.bin/clang/clang.host \ Ngnu/usr.bin/cc* \ + Ngnu/usr.bin/binutils*.host \ .endif +GENDIRDEPS_FILTER+= ${GENDIRDEPS_FILTER.${MACHINE}:U} + # gendirdeps.mk will turn _{VAR} into ${VAR} which keeps this simple # order of this list matters! GENDIRDEPS_FILTER_DIR_VARS+= \ diff --git a/share/mk/local.init.mk b/share/mk/local.init.mk index 1f77c00880ce..2d0ad4fd0882 100644 --- a/share/mk/local.init.mk +++ b/share/mk/local.init.mk @@ -16,13 +16,16 @@ CFLAGS_LAST+= --sysroot=${SYSROOT} CXXFLAGS_LAST+= --sysroot=${SYSROOT} LDADD+= --sysroot=${SYSROOT} +.elif ${MK_STAGING} == "yes" +CFLAGS+= -I${STAGE_INCLUDEDIR} +LDADD+= -L${STAGE_LIBDIR} +.endif .if ${MACHINE} == "host" # we cheat? LDADD+= -B/usr/lib CFLAGS_LAST+= -I/usr/include CXXFLAGS_LAST+= -I/usr/include .endif -.endif .if ${MACHINE} == "host" .if ${.MAKE.DEPENDFILE:E} != "host" diff --git a/share/mk/local.meta.sys.mk b/share/mk/local.meta.sys.mk new file mode 100644 index 000000000000..b4109a397009 --- /dev/null +++ b/share/mk/local.meta.sys.mk @@ -0,0 +1,204 @@ +# $FreeBSD$ + +# local configuration specific to meta mode +# XXX some of this should be in meta.sys.mk +# we assume that MK_META_MODE=yes + +.if ${.MAKE.LEVEL} == 0 +.if !empty(SB) +SB_OBJROOT ?= ${SB}/obj/ +# this is what we use below +OBJROOT ?= ${SB_OBJROOT} +.endif +OBJROOT ?= ${SRCTOP:H}/obj/ +.if ${OBJROOT:M*/} != "" +OBJROOT:= ${OBJROOT:tA}/ +.else +OBJROOT:= ${OBJROOT:H:tA}/${OBJROOT:T} +.endif +.export OBJROOT SRCTOP + +# we need HOST_TARGET etc below. +.include +.export HOST_TARGET +.endif + +# from src/Makefile (for universe) +TARGET_ARCHES_arm?= arm armeb armv6 armv6eb +TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 +TARGET_ARCHES_powerpc?= powerpc powerpc64 +TARGET_ARCHES_pc98?= i386 + +# some corner cases +CSU_DIR.i386 = csu/i386-elf +BOOT_MACHINE_DIR.amd64 = boot/i386 +MACHINE_ARCH.host = ${_HOST_ARCH} + +# the list of machines we support +ALL_MACHINE_LIST?= amd64 arm i386 ia64 mips pc98 powerpc sparc64 +.for m in ${ALL_MACHINE_LIST:O:u} +MACHINE_ARCH_LIST.$m?= ${TARGET_ARCHES_${m}:U$m} +MACHINE_ARCH.$m?= ${MACHINE_ARCH_LIST.$m:[1]} +BOOT_MACHINE_DIR.$m ?= boot/$m +.endfor +.ifndef _TARGET_SPEC +.if empty(MACHINE_ARCH) +.if !empty(TARGET_ARCH) +MACHINE_ARCH= ${TARGET_ARCH} +.else +MACHINE_ARCH= ${MACHINE_ARCH.${MACHINE}} +.endif +.endif +MACHINE_ARCH?= ${MACHINE_ARCH.${MACHINE}} +MACHINE_ARCH:= ${MACHINE_ARCH} +.else +# we got here via dirdeps +MACHINE_ARCH:= ${MACHINE_ARCH.${MACHINE}} +.endif + +# now because for universe we want to potentially +# build for multiple MACHINE_ARCH per MACHINE +# we need more than MACHINE in TARGET_SPEC +TARGET_SPEC_VARS= MACHINE MACHINE_ARCH +# see dirdeps.mk +.if ${TARGET_SPEC:Uno:M*,*} != "" +_tspec := ${TARGET_SPEC:S/,/ /g} +MACHINE := ${_tspec:[1]} +MACHINE_ARCH := ${_tspec:[2]} +# etc. +# We need to stop that TARGET_SPEC affecting any submakes +# and deal with MACHINE=${TARGET_SPEC} in the environment. +TARGET_SPEC= +# export but do not track +.export-env TARGET_SPEC +.export ${TARGET_SPEC_VARS} +.for v in ${TARGET_SPEC_VARS:O:u} +.if empty($v) +.undef $v +.endif +.endfor +.endif +# make sure we know what TARGET_SPEC is +# as we may need it to find Makefile.depend* +TARGET_SPEC = ${TARGET_SPEC_VARS:@v@${$v:U}@:ts,} + +# to be consistent with src/Makefile just concatenate with '.'s +TARGET_OBJ_SPEC:= ${TARGET_SPEC:S;,;.;g} +OBJTOP:= ${OBJROOT}${TARGET_OBJ_SPEC} + +.if ${.CURDIR} == ${SRCTOP} +RELDIR = . +.elif ${.CURDIR:M${SRCTOP}/*} +RELDIR := ${.CURDIR:S,${SRCTOP}/,,} +.endif + +HOST_OBJTOP ?= ${OBJROOT}${HOST_TARGET} + +.if ${OBJTOP} == ${HOST_OBJTOP} || ${REQUESTED_MACHINE:U${MACHINE}} == "host" +MACHINE= host +.if ${TARGET_MACHINE:Uno} == ${HOST_TARGET} +# not what we want +TARGET_MACHINE= host +.endif +.endif +.if ${MACHINE} == "host" +OBJTOP := ${HOST_OBJTOP} +.endif + +.if ${.MAKE.LEVEL} == 0 +PYTHON ?= /usr/local/bin/python +# this works best if share/mk is ready for it. +BUILD_AT_LEVEL0= no +.export PYTHON + +# we want to end up with a singe stage tree for all machines +.if ${MK_STAGING} == "yes" +.if empty(STAGE_ROOT) +STAGE_ROOT?= ${OBJROOT}stage +.export STAGE_ROOT +.endif +.endif +.endif + +.if ${MK_STAGING} == "yes" +.if ${MACHINE} == "host" +STAGE_MACHINE= ${HOST_TARGET} +.else +STAGE_MACHINE:= ${TARGET_OBJ_SPEC} +.endif +STAGE_OBJTOP:= ${STAGE_ROOT}/${STAGE_MACHINE} +STAGE_COMMON_OBJTOP:= ${STAGE_ROOT}/common +STAGE_HOST_OBJTOP:= ${STAGE_ROOT}/${HOST_TARGET} + +STAGE_LIBDIR= ${STAGE_OBJTOP}${_LIBDIR:U${LIBDIR:U/lib}} +STAGE_INCLUDEDIR= ${STAGE_OBJTOP}${INCLUDEDIR:U/usr/include} +# this is not the same as INCLUDEDIR +STAGE_INCSDIR= ${STAGE_OBJTOP}${INCSDIR:U/include} +# the target is usually an absolute path +STAGE_SYMLINKS_DIR= ${STAGE_OBJTOP} + +LDFLAGS_LAST+= -Wl,-rpath-link -Wl,${STAGE_LIBDIR} +.ifdef WITH_SYSROOT +SYSROOT?= ${STAGE_OBJTOP}/ +.else +LDFLAGS_LAST+= -L${STAGE_LIBDIR} +.endif + +.endif # MK_STAGING + +# this is sufficient for most of the tree. +.MAKE.DEPENDFILE_DEFAULT = ${.MAKE.DEPENDFILE_PREFIX} + +# but if we have a machine qualified file it should be used in preference +.MAKE.DEPENDFILE_PREFERENCE = \ + ${.MAKE.DEPENDFILE_PREFIX}.${MACHINE} \ + ${.MAKE.DEPENDFILE_PREFIX} + +.undef .MAKE.DEPENDFILE + +.include "sys.dependfile.mk" + +.if ${.MAKE.LEVEL} > 0 && ${MACHINE} == "host" && ${.MAKE.DEPENDFILE:E} != "host" +# we can use this but should not update it. +UPDATE_DEPENDFILE= NO +.endif + +.MAKE.META.BAILIWICK = ${SB} ${OBJROOT} ${STAGE_ROOT} + +CSU_DIR.i386 = csu/i386-elf +CSU_DIR.${MACHINE_ARCH} ?= csu/${MACHINE_ARCH} +CSU_DIR := ${CSU_DIR.${MACHINE_ARCH}} + +.if !empty(TIME_STAMP) +TRACER= ${TIME_STAMP} ${:U} +.endif + +# toolchains can be a pain - especially bootstrappping them +.if ${MACHINE} == "host" +MK_SHARED_TOOLCHAIN= no +.endif +.ifdef WITH_TOOLSDIR +TOOLSDIR?= ${HOST_OBJTOP}/tools +.elif defined(STAGE_HOST_OBJTOP) && exists(${STAGE_HOST_OBJTOP}/usr/bin) +TOOLSDIR?= ${STAGE_HOST_OBJTOP} +.endif +.if ${.MAKE.LEVEL} == 0 && exists(${TOOLSDIR}/usr/bin) +PATH:= ${PATH:S,:, ,g:@d@${exists(${TOOLSDIR}$d):?${TOOLSDIR}$d:}@:ts:}:${PATH} +.export PATH +.if exists(${TOOLSDIR}/usr/bin/cc) +HOST_CC?= ${TOOLSDIR}/usr/bin/cc +.export HOST_CC +.endif +.endif + +.if ${MACHINE:Nhost:Ncommon} != "" && ${MACHINE} != ${HOST_MACHINE} +# cross-building +.if !defined(FREEBSD_REVISION) +FREEBSD_REVISION!= sed -n '/^REVISION=/{s,.*=,,;s,",,g;p; }' ${SRCTOP}/sys/conf/newvers.sh +.export FREEBSD_REVISION +.endif +CROSS_TARGET_FLAGS= -target ${MACHINE_ARCH}-unknown-freebsd${FREEBSD_REVISION} +CFLAGS+= ${CROSS_TARGET_FLAGS} +ACFLAGS+= ${CROSS_TARGET_FLAGS} +LDFLAGS+= -Wl,-m -Wl,elf_${MACHINE_ARCH}_fbsd +.endif diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index aa9f82829448..37536aa578db 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -1,17 +1,20 @@ WITH_INSTALL_AS_USER= yes -.if defined(.PARSEDIR) # bmake .if !defined(_TARGETS) # some things we do only once -_TARGETS := ${.TARGETS} +_TARGETS:= ${.TARGETS} .export _TARGETS .endif -.if ${_TARGETS:Mbuildworld} -WITHOUT_STAGING= -WITHOUT_SYSROOT= + +.if (!empty(_TARGETS) && ${_TARGETS:Nbuildworld:Nuniverse:Ninstallworld} == "") || defined(WITHOUT_META_MODE) +MK_AUTO_OBJ= no +MK_META_MODE= no +MK_STAGING= no +MK_STAGING_PROG= no +MK_SYSROOT= no UPDATE_DEPENDFILE=NO -NO_AUTO_OBJ= .endif + SRCCONF:= ${.PARSEDIR}/src.conf # ensure we are self contained __MAKE_CONF:= ${SRCCONF} @@ -40,226 +43,6 @@ M_whence = ${M_type}:M/*:[1] # convert a path to a valid shell variable M_P2V = tu:C,[./-],_,g -# absoulte path to what we are reading. -_PARSEDIR = ${.PARSEDIR:tA} - -.if !empty(SB) -SB_SRC ?= ${SB}/src -SB_OBJROOT ?= ${SB}/obj/ -# this is what we use below -SRCTOP ?= ${SB_SRC} -OBJROOT ?= ${SB_OBJROOT} -.endif - -.if empty(SRCTOP) -SRCTOP := ${_PARSEDIR:H:H} -OBJROOT ?= ${SRCTOP:H}/obj/ -OBJROOT := ${OBJROOT} -.endif -.export OBJROOT SRCTOP - -# we need HOST_TARGET etc below. -.include - -# from src/Makefile (for universe) -TARGET_ARCHES_arm?= arm armeb armv6 armv6eb -TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 -TARGET_ARCHES_powerpc?= powerpc powerpc64 -TARGET_ARCHES_pc98?= i386 - -# some corner cases -CSU_DIR.i386 = csu/i386-elf -BOOT_MACHINE_DIR.amd64 = boot/i386 -MACHINE_ARCH.host = ${_HOST_ARCH} - -# the list of machines we support -ALL_MACHINE_LIST?= amd64 arm i386 ia64 mips pc98 powerpc sparc64 -.for m in ${ALL_MACHINE_LIST:O:u} -MACHINE_ARCH_LIST.$m?= ${TARGET_ARCHES_${m}:U$m} -MACHINE_ARCH.$m?= ${MACHINE_ARCH_LIST.$m:[1]} -BOOT_MACHINE_DIR.$m ?= boot/$m -.endfor -.ifndef _TARGET_SPEC -.if empty(MACHINE_ARCH) -.if !empty(TARGET_ARCH) -MACHINE_ARCH= ${TARGET_ARCH} -.else -MACHINE_ARCH= ${MACHINE_ARCH.${MACHINE}} -.endif -.endif -MACHINE_ARCH?= ${MACHINE_ARCH.${MACHINE}} -MACHINE_ARCH:= ${MACHINE_ARCH} -.else -# we got here via dirdeps -MACHINE_ARCH:= ${MACHINE_ARCH.${MACHINE}} -.endif - -.if ${.MAKE.LEVEL} == 0 -# 1st time only -.-include -.if !empty(OBJROOT) -.if ${OBJROOT:M*/} != "" -OBJROOT:= ${OBJROOT:tA}/ -.else -OBJROOT:= ${OBJROOT:H:tA}/${OBJROOT:T} -.endif -.export OBJROOT -.endif -.endif - -# now because for universe we want to potentially -# build for multiple MACHINE_ARCH per MACHINE -# we need more than MACHINE in TARGET_SPEC -TARGET_SPEC_VARS= MACHINE MACHINE_ARCH -# see dirdeps.mk -.if ${TARGET_SPEC:Uno:M*,*} != "" -_tspec := ${TARGET_SPEC:S/,/ /g} -MACHINE := ${_tspec:[1]} -MACHINE_ARCH := ${_tspec:[2]} -# etc. -# We need to stop that TARGET_SPEC affecting any submakes -# and deal with MACHINE=${TARGET_SPEC} in the environment. -TARGET_SPEC= -# export but do not track -.export-env TARGET_SPEC -.export ${TARGET_SPEC_VARS} -.for v in ${TARGET_SPEC_VARS:O:u} -.if empty($v) -.undef $v -.endif -.endfor -.endif -# make sure we know what TARGET_SPEC is -# as we may need it to find Makefile.depend* -TARGET_SPEC = ${TARGET_SPEC_VARS:@v@${$v:U}@:ts,} - -# to be consistent with src/Makefile just concatenate with '.'s -TARGET_OBJ_SPEC:= ${TARGET_SPEC:S;,;.;g} -OBJTOP:= ${OBJROOT}${TARGET_OBJ_SPEC} - -.if !empty(SRCTOP) -.if ${.CURDIR} == ${SRCTOP} -RELDIR = . -.elif ${.CURDIR:M${SRCTOP}/*} -RELDIR := ${.CURDIR:S,${SRCTOP}/,,} -.endif -.endif - -HOST_OBJTOP ?= ${OBJROOT}${HOST_TARGET} - -.if ${OBJTOP} == ${HOST_OBJTOP} || ${REQUESTED_MACHINE:U${MACHINE}} == "host" -MACHINE= host -.if ${TARGET_MACHINE:Uno} == ${HOST_TARGET} -# not what we want -TARGET_MACHINE= host -.endif -.endif -.if ${MACHINE} == "host" -OBJTOP := ${HOST_OBJTOP} -.endif - -# the logic in bsd.own.mk forces this dance -.ifndef WITHOUT_META_MODE -WITH_META_MODE= yes - -.ifndef WITHOUT_SYSROOT -WITH_SYSROOT= yes -.endif -.ifndef WITHOUT_STAGING -WITH_STAGING= yes -.ifndef WITHOUT_STAGING_PROG -WITH_STAGING_PROG= yes -.endif -.endif - -PYTHON ?= /usr/local/bin/python - -.if ${.MAKE.LEVEL} == 0 -# just in case -m, MAKESYSPATH or our default has .../ -# export a sanitised version... -# first any -m* from command line, -# then any MAKESYSPATH and finally ${.PARSEDIR} -_makesyspath:= ${.MAKEFLAGS:tW:S/ -m / -m/g:tw:M-m*:S,^-m,,} \ - ${MAKESYSPATH:U} \ - ${.PARSEDIR} -# replace .../.* with ${.PARSEDIR}, not perfect but pretty close -MAKESYSPATH:= ${_makesyspath:S,:, ,g:C,^\.\.\./.*,${.PARSEDIR},:u:ts:} -.export MAKESYSPATH - -# this works best if share/mk is ready for it. -BUILD_AT_LEVEL0= no -# By default only MACHINE0 updates dependencies -# see local.autodep.mk -MACHINE0 := ${MACHINE} -.export MACHINE0 -.export PYTHON -.endif - -# we want to end up with a singe stage tree for all machines -.ifndef WITHOUT_STAGING -.if empty(STAGE_ROOT) -STAGE_ROOT?= ${OBJROOT}stage -.export STAGE_ROOT -.endif -.endif - -.if !empty(STAGE_ROOT) && !defined(WITHOUT_STAGING) -.if ${MACHINE} == "host" -STAGE_MACHINE= ${HOST_TARGET} -.else -STAGE_MACHINE:= ${TARGET_OBJ_SPEC} -.endif -STAGE_OBJTOP:= ${STAGE_ROOT}/${STAGE_MACHINE} -STAGE_COMMON_OBJTOP:= ${STAGE_ROOT}/common -STAGE_HOST_OBJTOP:= ${STAGE_ROOT}/${HOST_TARGET} - -STAGE_LIBDIR= ${STAGE_OBJTOP}${_LIBDIR:U${LIBDIR:U/lib}} -# this is not the same as INCLUDEDIR -STAGE_INCSDIR= ${STAGE_OBJTOP}${INCSDIR:U/include} -# the target is usually an absolute path -STAGE_SYMLINKS_DIR= ${STAGE_OBJTOP} - -.if ${MACHINE} == "host" && defined(EARLY_BUILD) -# we literally want to build with host cc and includes -.else -.ifdef WITH_SYSROOT -SYSROOT?= ${STAGE_OBJTOP}/ -.endif -LDFLAGS_LAST+= -Wl,-rpath-link -Wl,${STAGE_LIBDIR} -STAGED_INCLUDE_DIR= ${STAGE_OBJTOP}/usr/include -.endif -.endif # EARLY_BUILD for host - -# this is sufficient for most of the tree. -.MAKE.DEPENDFILE_DEFAULT = ${.MAKE.DEPENDFILE_PREFIX} - -# but if we have a machine qualified file it should be used in preference -.MAKE.DEPENDFILE_PREFERENCE = \ - ${.MAKE.DEPENDFILE_PREFIX}.${MACHINE} \ - ${.MAKE.DEPENDFILE_PREFIX} - -.undef .MAKE.DEPENDFILE - -.include "sys.dependfile.mk" - -.include "meta.sys.mk" - -.if ${.MAKE.LEVEL} > 0 && ${MACHINE} == "host" && ${.MAKE.DEPENDFILE:E} != "host" -# we can use this but should not update it. -UPDATE_DEPENDFILE= NO -.endif - -.MAKE.META.BAILIWICK = ${SB} ${OBJROOT} ${STAGE_ROOT} - -CSU_DIR.i386 = csu/i386-elf -CSU_DIR.${MACHINE_ARCH} ?= csu/${MACHINE_ARCH} -CSU_DIR := ${CSU_DIR.${MACHINE_ARCH}} - -.endif # meta mode - -# ensure we have a value -.MAKE.MODE ?= normal - MAKE_PRINT_VAR_ON_ERROR+= \ .CURDIR \ .MAKE \ @@ -272,6 +55,7 @@ MAKE_PRINT_VAR_ON_ERROR+= \ MAKEOBJDIRPREFIX \ MAKESYSPATH \ MAKE_VERSION\ + SRCTOP \ OBJTOP \ ${MAKE_PRINT_VAR_ON_ERROR_XTRAS} @@ -279,49 +63,12 @@ MAKE_PRINT_VAR_ON_ERROR+= \ MAKE_PRINT_VAR_ON_ERROR += .MAKE.MAKEFILES .PATH .endif - # these are handy # we can use this for a cheap timestamp at the start of a target's script, # but not at the end - since make will expand both at the same time. -AnEmptyVar= TIME_STAMP_FMT = @ %s [%Y-%m-%d %T] TIME_STAMP = ${TIME_STAMP_FMT:localtime} # this will produce the same output but as of when date(1) is run. TIME_STAMP_DATE = `date '+${TIME_STAMP_FMT}'` TIME_STAMP_END?= ${TIME_STAMP_DATE} -.ifdef WITH_TIMESTAMPS -TRACER= ${TIME_STAMP} ${AnEmptyVar} -.endif - -# toolchains can be a pain - especially bootstrappping them -.if ${MACHINE} == "host" -MK_SHARED_TOOLCHAIN= no -.endif -.ifdef WITH_TOOLSDIR -TOOLSDIR?= ${HOST_OBJTOP}/tools -.elif defined(STAGE_HOST_OBJTOP) && exists(${STAGE_HOST_OBJTOP}/usr/bin) -TOOLSDIR?= ${STAGE_HOST_OBJTOP} -.endif -.if ${.MAKE.LEVEL} == 0 && exists(${TOOLSDIR}/usr/bin) -PATH:= ${PATH:S,:, ,g:@d@${exists(${TOOLSDIR}$d):?${TOOLSDIR}$d:}@:ts:}:${PATH} -.export PATH -.if exists(${TOOLSDIR}/usr/bin/cc) -HOST_CC?= ${TOOLSDIR}/usr/bin/cc -.export HOST_CC -.endif -.endif - -.if ${MACHINE:Nhost:Ncommon} != "" && ${MACHINE} != ${HOST_MACHINE} -# cross-building -.if !defined(FREEBSD_REVISION) -FREEBSD_REVISION!= sed -n '/^REVISION=/{s,.*=,,;s,",,g;p; }' ${SRCTOP}/sys/conf/newvers.sh -.export FREEBSD_REVISION -.endif -CROSS_TARGET_FLAGS= -target ${MACHINE_ARCH}-unknown-freebsd${FREEBSD_REVISION} -CFLAGS+= ${CROSS_TARGET_FLAGS} -ACFLAGS+= ${CROSS_TARGET_FLAGS} -LDFLAGS+= -Wl,-m -Wl,elf_${MACHINE_ARCH}_fbsd -.endif - -.endif # bmake From 43f42ca719d53edbcc1850064f872bc721019cf9 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 26 May 2015 21:47:12 +0000 Subject: [PATCH 196/228] always filter out dirdeps.cache*meta --- share/mk/meta.autodep.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/mk/meta.autodep.mk b/share/mk/meta.autodep.mk index 64bc30bd4757..c5f473397e48 100644 --- a/share/mk/meta.autodep.mk +++ b/share/mk/meta.autodep.mk @@ -97,6 +97,8 @@ UPDATE_DEPENDFILE = no # for example the result of running configure # just make sure this is not empty META_FILE_FILTER ?= N.meta +# never consider these +META_FILE_FILTER += Ndirdeps.cache* .if !empty(DPADD) # if we have any non-libs in DPADD, From 6d5e42ed3ab52a0295cd87738625b50e34fa26d4 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 26 May 2015 21:47:43 +0000 Subject: [PATCH 197/228] include local.meta.sys.mk --- share/mk/meta.sys.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/share/mk/meta.sys.mk b/share/mk/meta.sys.mk index 666ef7191fa9..622ac8afe00e 100644 --- a/share/mk/meta.sys.mk +++ b/share/mk/meta.sys.mk @@ -20,6 +20,10 @@ .if ${MAKE_VERSION:U0} > 20100901 .if !target(.ERROR) +.-include "local.meta.sys.mk" + +# absoulte path to what we are reading. +_PARSEDIR = ${.PARSEDIR:tA} META_MODE += meta verbose .MAKE.MODE ?= ${META_MODE} @@ -69,6 +73,7 @@ MACHINE = host # for example, if using Makefild.depend for multiple machines, # allowing only MACHINE0 to update can keep things simple. MACHINE0 := ${MACHINE} +.export MACHINE0 .if defined(PYTHON) && exists(${PYTHON}) # we prefer the python version of this - it is much faster From c4a81da0c86e429eb3e262498a8529ae341ecf1c Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 26 May 2015 21:51:36 +0000 Subject: [PATCH 198/228] Include bsd.mkopt.mk before local.sys.mk Also use __DEFAULT_DEPENDENT_OPTIONS for options that generally depend on META_MODE. Deal with MK_META_MODE and MK_AUTO_OBJ directly. Also allow MK_META_FILES if no -B this is very handy for getting meta files from say buildworld --- share/mk/sys.mk | 62 +++++++++++++++++++++++++++++-------------------- 1 file changed, 37 insertions(+), 25 deletions(-) diff --git a/share/mk/sys.mk b/share/mk/sys.mk index 73a5e26ba015..7d7d42bcff44 100644 --- a/share/mk/sys.mk +++ b/share/mk/sys.mk @@ -62,12 +62,18 @@ CFLAGS += -fno-strict-aliasing .endif PO_CFLAGS ?= ${CFLAGS} +# cp(1) is used to copy source files to ${.OBJDIR}, make sure it can handle +# read-only files as non-root by passing -f. +CP ?= cp -f + +CPP ?= cpp + # C Type Format data is required for DTrace CTFFLAGS ?= -L VERSION CTFCONVERT ?= ctfconvert CTFMERGE ?= ctfmerge -DTRACE ?= dtrace + .if defined(CFLAGS) && (${CFLAGS:M-g} != "") CTFFLAGS += -g .endif @@ -76,7 +82,8 @@ CXX ?= c++ CXXFLAGS ?= ${CFLAGS:N-std=*:N-Wnested-externs:N-W*-prototypes:N-Wno-pointer-sign:N-Wold-style-definition} PO_CXXFLAGS ?= ${CXXFLAGS} -CPP ?= cpp +DTRACE ?= dtrace +DTRACEFLAGS ?= -C -x nolibs .if empty(.MAKEFLAGS:M-s) ECHO ?= echo @@ -237,21 +244,21 @@ YFLAGS ?= -d ${CTFCONVERT_CMD} .c.o: - ${CC} ${CFLAGS} -c ${.IMPSRC} + ${CC} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .cc .cpp .cxx .C: ${CXX} ${CXXFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET} .cc.o .cpp.o .cxx.o .C.o: - ${CXX} ${CXXFLAGS} -c ${.IMPSRC} + ${CXX} ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET} .m.o: - ${OBJC} ${OBJCFLAGS} -c ${.IMPSRC} + ${OBJC} ${OBJCFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .p.o: - ${PC} ${PFLAGS} -c ${.IMPSRC} + ${PC} ${PFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .e .r .F .f: @@ -259,14 +266,15 @@ YFLAGS ?= -d -o ${.TARGET} .e.o .r.o .F.o .f.o: - ${FC} ${RFLAGS} ${EFLAGS} ${FFLAGS} -c ${.IMPSRC} + ${FC} ${RFLAGS} ${EFLAGS} ${FFLAGS} -c ${.IMPSRC} -o ${.TARGET} .S.o: - ${CC} ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} + ${CC} ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .asm.o: - ${CC} -x assembler-with-cpp ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} + ${CC} -x assembler-with-cpp ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} \ + -o ${.TARGET} ${CTFCONVERT_CMD} .s.o: @@ -317,6 +325,21 @@ YFLAGS ?= -d rm -f ${.PREFIX}.tmp.c ${CTFCONVERT_CMD} + +# Some options we need now +__DEFAULT_NO_OPTIONS= \ + DIRDEPS_CACHE \ + META_MODE \ + META_FILES \ + + +__DEFAULT_DEPENDENT_OPTIONS= \ + AUTO_OBJ/META_MODE \ + STAGING/META_MODE \ + SYSROOT/META_MODE + +.include + # Set any local definitions first. Place this early, but it needs # MACHINE_CPUARCH to be defined. .sinclude @@ -331,26 +354,15 @@ __MAKE_CONF?=/etc/make.conf # inside the source tree. Needs to be after make.conf .sinclude -# Some options we need now -__DEFAULT_NO_OPTIONS+= \ - AUTO_OBJ \ - META_MODE \ - META_FILES \ - STAGING - -.include - +.if ${MK_META_MODE} == "yes" +.sinclude +.elif ${MK_META_FILES} == "yes" && ${.MAKEFLAGS:U:M-B} == "" +.MAKE.MODE= meta verbose +.endif .if ${MK_AUTO_OBJ} == "yes" # This needs to be done early - before .PATH is computed .sinclude .endif -.if ${MK_META_MODE} == "yes" -.sinclude -.elif ${MK_META_FILES} == "yes" -.MAKE.MODE= meta verbose -.else -MK_STAGING= no -.endif .if defined(__MAKE_SHELL) && !empty(__MAKE_SHELL) SHELL= ${__MAKE_SHELL} From f49116fcd96f2420f604c904ef63ccced77adc2a Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 29 May 2015 06:44:09 +0000 Subject: [PATCH 199/228] Adapt based on whether 'mk' wrapper is used. If 'mk' is used we can expect SB_NAME to be set. Use 'mk' versions of command suggestions. Otherwise 'make' version - a bit more cumbersom. --- targets/Makefile.xtras | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/targets/Makefile.xtras b/targets/Makefile.xtras index 358f5ddec537..57a04532812c 100644 --- a/targets/Makefile.xtras +++ b/targets/Makefile.xtras @@ -11,9 +11,19 @@ _here := ${_PARSEDIR} .MAIN: no-default +.if !empty(SB_NAME) +# mk wrapper +MAKE_CMD= mk +MAKE_MACHINE_CMD= mk --machine +.else +# not using 'mk' +MAKE_CMD= ${.MAKE:T} +MAKE_MACHINE_CMD= env MACHINE= ${.MAKE:T} +.endif + no-default: @echo "ERROR: there is no supported default target."; \ - echo "Try 'mk help'" + echo "Try '${MAKE_CMD} help'" .if make(show-valid-targets) @@ -25,7 +35,8 @@ BUILD_TARGETS != cd ${_here} && \ sed 's,/Makefile.*,,;s,^./,,' | sort -u show-valid-targets: - @echo "Build targets for ${MACHINE}:"; echo "${BUILD_TARGETS:ts\n}" + @echo "Build targets for ${MACHINE} (leave out the ${target_dirs:S,${_here:T},,:S,^/,,:S,$,/,}):" + @echo "${BUILD_TARGETS:ts\n}" @echo; echo "Other targets:"; echo "${OTHER_TARGETS:ts\n}" .endif @@ -33,7 +44,7 @@ help: show-help show-help: @echo; \ echo "You can see the targets which are valid for a given machine"; \ - echo "by running 'mk --machine show-valid-targets'"; \ + echo "by running '${MAKE_MACHINE_CMD} show-valid-targets'"; \ echo "For other information, read: ${HELP_DOCS:@d@${.newline}$d@}"; \ echo From 10e781d1ba9859790840230d080517c2da66de1a Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 29 May 2015 06:45:32 +0000 Subject: [PATCH 200/228] Allow AUTO_OBJ with out META_MODE. Remove frobbing of SRCCONF etc - not strictly relevant to meta mode. --- share/mk/local.sys.mk | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/share/mk/local.sys.mk b/share/mk/local.sys.mk index 37536aa578db..6a11477d30e9 100644 --- a/share/mk/local.sys.mk +++ b/share/mk/local.sys.mk @@ -7,7 +7,7 @@ _TARGETS:= ${.TARGETS} .endif .if (!empty(_TARGETS) && ${_TARGETS:Nbuildworld:Nuniverse:Ninstallworld} == "") || defined(WITHOUT_META_MODE) -MK_AUTO_OBJ= no +MK_AUTO_OBJ?= no MK_META_MODE= no MK_STAGING= no MK_STAGING_PROG= no @@ -15,11 +15,6 @@ MK_SYSROOT= no UPDATE_DEPENDFILE=NO .endif -SRCCONF:= ${.PARSEDIR}/src.conf -# ensure we are self contained -__MAKE_CONF:= ${SRCCONF} -.-include "src.conf" - # some handy macros _this = ${.PARSEDIR:tA}/${.PARSEFILE} # some useful modifiers From 3a3005dfddc9f86c3b7fea75ad62ea8f4b65b90d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 30 May 2015 17:24:41 +0000 Subject: [PATCH 201/228] Fix include of atf-c.h --- lib/libcrypt/tests/Makefile.depend | 2 ++ lib/libcrypt/tests/crypt_tests.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/libcrypt/tests/Makefile.depend b/lib/libcrypt/tests/Makefile.depend index cef7a1fc65b8..42ba8392961a 100644 --- a/lib/libcrypt/tests/Makefile.depend +++ b/lib/libcrypt/tests/Makefile.depend @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + gnu/lib/csu \ gnu/lib/libgcc \ include \ include/xlocale \ @@ -10,6 +11,7 @@ DIRDEPS = \ lib/atf/libatf-c \ lib/libc \ lib/libcompiler_rt \ + lib/libcrypt \ .include diff --git a/lib/libcrypt/tests/crypt_tests.c b/lib/libcrypt/tests/crypt_tests.c index 2b2f9e6ebed9..ea7cfbc3da65 100644 --- a/lib/libcrypt/tests/crypt_tests.c +++ b/lib/libcrypt/tests/crypt_tests.c @@ -4,7 +4,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #define LEET "0.s0.l33t" From fdfa61c3ab0d4bc803c01b46627194064101cb48 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 30 May 2015 17:27:52 +0000 Subject: [PATCH 202/228] Test that .CURDIR is component of (or matches) .OBJDIR --- share/mk/src.libnames.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/mk/src.libnames.mk b/share/mk/src.libnames.mk index 9b357035be20..ccca375da32c 100644 --- a/share/mk/src.libnames.mk +++ b/share/mk/src.libnames.mk @@ -9,8 +9,8 @@ .include -.if defined(MAKEOBJDIRPREFIX) && ${.OBJDIR:M${MAKEOBJDIRPREFIX}/*} != "" -ROOTOBJDIR= ${.OBJDIR:S/${.CURDIR}//}${SRCTOP} +.if ${.OBJDIR:S,${.CURDIR},,} != ${.OBJDIR} +ROOTOBJDIR= ${.OBJDIR:S,${.CURDIR},,}${SRCTOP} .elif defined(OBJTOP) && ${.OBJDIR:M${OBJTOP}*} != "" ROOTOBJDIR= ${OBJTOP} .endif From 58073855a49f4e8a80d8af85322f04638ff9b07f Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sat, 30 May 2015 17:29:51 +0000 Subject: [PATCH 203/228] Do not override variables on command line that build needs to change. It is sufficient to explicitly set DEPENDFILE in env for each sub-make. --- share/mk/bsd.progs.mk | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/share/mk/bsd.progs.mk b/share/mk/bsd.progs.mk index 46abbb3fc165..f943678a8ff7 100644 --- a/share/mk/bsd.progs.mk +++ b/share/mk/bsd.progs.mk @@ -62,8 +62,6 @@ UPDATE_DEPENDFILE ?= yes .endif UPDATE_DEPENDFILE ?= NO -# ensure that we don't clobber each other's dependencies -DEPENDFILE?= .depend.${PROG} # prog.mk will do the rest .else all: ${FILES} ${PROGS} ${SCRIPTS} @@ -95,17 +93,17 @@ x.$p= PROG_CXX=$p .endif $p ${p}_p: .PHONY .MAKE - (cd ${.CURDIR} && ${MAKE} -f ${MAKEFILE} _RECURSING_PROGS= \ - SUBDIR= PROG=$p \ - DEPENDFILE=.depend.$p .MAKE.DEPENDFILE=.depend.$p \ - ${x.$p}) + (cd ${.CURDIR} && \ + DEPENDFILE=.depend.$p \ + ${MAKE} -f ${MAKEFILE} _RECURSING_PROGS= \ + SUBDIR= PROG=$p ${x.$p}) .for t in ${PROGS_TARGETS:O:u} $p.$t: .PHONY .MAKE - (cd ${.CURDIR} && ${MAKE} -f ${MAKEFILE} _RECURSING_PROGS= \ - SUBDIR= PROG=$p \ - DEPENDFILE=.depend.$p .MAKE.DEPENDFILE=.depend.$p \ - ${x.$p} ${@:E}) + (cd ${.CURDIR} && \ + DEPENDFILE=.depend.$p \ + ${MAKE} -f ${MAKEFILE} _RECURSING_PROGS= \ + SUBDIR= PROG=$p ${x.$p} ${@:E}) .endfor .endfor From 09cdd180a2effb6101f4d186ab17d3152709a26e Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 31 May 2015 03:13:24 +0000 Subject: [PATCH 204/228] Stage man pages. --- share/mk/bsd.man.mk | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/share/mk/bsd.man.mk b/share/mk/bsd.man.mk index 416993ee3fa4..2db49af5e613 100644 --- a/share/mk/bsd.man.mk +++ b/share/mk/bsd.man.mk @@ -127,6 +127,20 @@ _manpages: ${MAN} ZEXT= ${MCOMPRESS_EXT} .if defined(MAN) && !empty(MAN) +.if ${MK_STAGING} +staging: stage_files +_mansets:= ${MAN:E:O:u:@s@man$s@} +STAGE_SETS+= ${_mansets} +.for _page in ${MAN} +stage_files.man${_page:T:E}: ${_page} +STAGE_DIR.man${_page:T:E}?= ${STAGE_OBJTOP}${MANDIR}${_page:T:E}${MANSUBDIR} +.endfor +.if !empty(MLINKS) +staging: stage_links +STAGE_LINKS.${_mansets:[1]} := ${MLINKS:S,^,${MANDIR}${_mansets:[1]:S,man,,}${MANSUBDIR}/,} +.endif +.endif + CLEANFILES+= ${MAN:T:S/$/${MCOMPRESS_EXT}/g} CLEANFILES+= ${MAN:T:S/$/${CATEXT}${MCOMPRESS_EXT}/g} .for __page in ${MAN} From 8bf4a1b89c87b713570807f8257862bf915bcd2f Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Sun, 31 May 2015 07:16:31 +0000 Subject: [PATCH 205/228] Handle multiple sections in MLINKS --- share/mk/bsd.man.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/share/mk/bsd.man.mk b/share/mk/bsd.man.mk index 2db49af5e613..5928e435d942 100644 --- a/share/mk/bsd.man.mk +++ b/share/mk/bsd.man.mk @@ -137,7 +137,9 @@ STAGE_DIR.man${_page:T:E}?= ${STAGE_OBJTOP}${MANDIR}${_page:T:E}${MANSUBDIR} .endfor .if !empty(MLINKS) staging: stage_links -STAGE_LINKS.${_mansets:[1]} := ${MLINKS:S,^,${MANDIR}${_mansets:[1]:S,man,,}${MANSUBDIR}/,} +.for __section in ${MLINKS:E:O:u} +STAGE_LINKS.man${__section}:= ${MLINKS:M*.${__section}:S,^,${MANDIR}${__section}${MANSUBDIR}/,} +.endfor .endif .endif From 1e3443763742580f9d17149b065b5680672d9d70 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 4 Jun 2015 19:11:56 +0000 Subject: [PATCH 206/228] Add dependent option STAGING_MAN/STAGING Use a single mlinks set, since some libs (eg. libc) do cross section links. --- share/mk/bsd.man.mk | 8 ++++---- share/mk/bsd.opts.mk | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/share/mk/bsd.man.mk b/share/mk/bsd.man.mk index 5928e435d942..9a9b5be92ec9 100644 --- a/share/mk/bsd.man.mk +++ b/share/mk/bsd.man.mk @@ -127,7 +127,7 @@ _manpages: ${MAN} ZEXT= ${MCOMPRESS_EXT} .if defined(MAN) && !empty(MAN) -.if ${MK_STAGING} +.if ${MK_STAGING_MAN} == "yes" staging: stage_files _mansets:= ${MAN:E:O:u:@s@man$s@} STAGE_SETS+= ${_mansets} @@ -136,10 +136,10 @@ stage_files.man${_page:T:E}: ${_page} STAGE_DIR.man${_page:T:E}?= ${STAGE_OBJTOP}${MANDIR}${_page:T:E}${MANSUBDIR} .endfor .if !empty(MLINKS) +STAGE_SETS+= mlinks staging: stage_links -.for __section in ${MLINKS:E:O:u} -STAGE_LINKS.man${__section}:= ${MLINKS:M*.${__section}:S,^,${MANDIR}${__section}${MANSUBDIR}/,} -.endfor +STAGE_LINKS.mlinks:= ${MLINKS:@f@${f:S,^,${MANDIR}${f:E}${MANSUBDIR}/,}@} +stage_links.mlinks: ${_mansets:@s@stage_files.$s@} .endif .endif diff --git a/share/mk/bsd.opts.mk b/share/mk/bsd.opts.mk index aa5c664fc16d..ce6965368c5c 100644 --- a/share/mk/bsd.opts.mk +++ b/share/mk/bsd.opts.mk @@ -72,6 +72,7 @@ __DEFAULT_NO_OPTIONS = \ # meta mode related __DEFAULT_DEPENDENT_OPTIONS = \ + STAGING_MAN/STAGING \ STAGING_PROG/STAGING .include From 924b88f687b2fda49ee2d3bf00a611f820b07276 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 8 Jun 2015 23:32:27 +0000 Subject: [PATCH 207/228] Watchout for bogus MAN --- share/mk/bsd.man.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/mk/bsd.man.mk b/share/mk/bsd.man.mk index 9a9b5be92ec9..98c3a046b433 100644 --- a/share/mk/bsd.man.mk +++ b/share/mk/bsd.man.mk @@ -129,7 +129,7 @@ ZEXT= ${MCOMPRESS_EXT} .if defined(MAN) && !empty(MAN) .if ${MK_STAGING_MAN} == "yes" staging: stage_files -_mansets:= ${MAN:E:O:u:@s@man$s@} +_mansets:= ${MAN:E:O:u:M*[1-9]:@s@man$s@} STAGE_SETS+= ${_mansets} .for _page in ${MAN} stage_files.man${_page:T:E}: ${_page} From 6251c65a82b50212fc46ba91b6ab0613b7751ba5 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 8 Jun 2015 23:34:04 +0000 Subject: [PATCH 208/228] Latest dirdeps.mk sets DEP_RELDIR for itself. This helps guard against bugs in manually edited Makefile.depend files, and avoids the need to call realpath from the Makefile.depend file. --- share/mk/dirdeps.mk | 11 +++++++++-- share/mk/gendirdeps.mk | 15 ++++++++++++--- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/share/mk/dirdeps.mk b/share/mk/dirdeps.mk index d46bced3f89d..4aa101fbd8d0 100644 --- a/share/mk/dirdeps.mk +++ b/share/mk/dirdeps.mk @@ -1,4 +1,4 @@ -# $Id: dirdeps.mk,v 1.53 2015/05/24 07:08:24 sjg Exp $ +# $Id: dirdeps.mk,v 1.54 2015/06/08 20:55:11 sjg Exp $ # Copyright (c) 2010-2013, Juniper Networks, Inc. # All rights reserved. @@ -588,6 +588,11 @@ _qm := ${_m:C;(\.depend)$;\1.${d:E};:${M_dep_qual_fixes:ts:}} _DEP_TARGET_SPEC := ${d:E} # some makefiles may still look at this _DEP_MACHINE := ${d:E:C/,.*//} +# set this "just in case" +# we can skip :tA since we computed the path above +DEP_RELDIR := ${_m:H:S,${SRCTOP}/,,} +# and reset this +DIRDEPS = .if ${_debug_reldir} && ${_qm} != ${_m} .info loading ${_m} for ${d:E} .endif @@ -603,7 +608,9 @@ _DEP_MACHINE := ${d:E:C/,.*//} .elif ${.MAKE.LEVEL} > 42 .error You should have stopped recursing by now. .else -_DEP_RELDIR := ${DEP_RELDIR} +# we are building something +DEP_RELDIR := ${RELDIR} +_DEP_RELDIR := ${RELDIR} # pickup local dependencies .-include <.depend> .endif diff --git a/share/mk/gendirdeps.mk b/share/mk/gendirdeps.mk index b313298b3fef..614a20e3d451 100644 --- a/share/mk/gendirdeps.mk +++ b/share/mk/gendirdeps.mk @@ -1,4 +1,4 @@ -# $Id: gendirdeps.mk,v 1.25 2014/03/14 21:28:37 sjg Exp $ +# $Id: gendirdeps.mk,v 1.27 2015/06/08 20:55:11 sjg Exp $ # Copyright (c) 2010-2013, Juniper Networks, Inc. # All rights reserved. @@ -93,6 +93,17 @@ _skip_gendirdeps = egrep -v '^(${SKIP_GENDIRDEPS:O:u:ts|})' | _skip_gendirdeps = .endif +# Below we will turn _{VAR} into ${VAR} which keeps this simple +# GENDIRDEPS_FILTER_DIR_VARS is a list of dirs to be substiuted for. +# GENDIRDEPS_FILTER_VARS is more general. +# In each case order matters. +.if !empty(GENDIRDEPS_FILTER_DIR_VARS) +GENDIRDEPS_FILTER += ${GENDIRDEPS_FILTER_DIR_VARS:@v@S,${$v},_{${v}},@} +.endif +.if !empty(GENDIRDEPS_FILTER_VARS) +GENDIRDEPS_FILTER += ${GENDIRDEPS_FILTER_VARS:@v@S,/${$v}/,/_{${v}}/,@:NS,//,*:u} +.endif + # this (*should* be set in meta.sys.mk) # is the script that extracts what we want. META2DEPS ?= ${.PARSEDIR}/meta2deps.sh @@ -300,7 +311,6 @@ CAT_DEPEND ?= .depend # to output _{VAR} tokens which we will turn into proper ${VAR} references. ${_DEPENDFILE}: ${CAT_DEPEND:M.depend} ${META_FILES:O:u:@m@${exists($m):?$m:}@} ${_this} ${META2DEPS} @(echo '# Autogenerated - do NOT edit!'; echo; \ - echo 'DEP_RELDIR := $${_PARSEDIR:S,$${SRCTOP}/,,}'; echo; \ echo 'DIRDEPS = \'; \ echo '${DIRDEPS:@d@ $d \\${.newline}@}'; echo; \ ${_include_src_dirdeps} \ @@ -321,7 +331,6 @@ all: ${_DEPENDFILE} ${_DEPENDFILE}: ${MAKEFILE} ${_this} @(echo '# Autogenerated - do NOT edit!'; echo; \ - echo 'DEP_RELDIR := $${_PARSEDIR:S,$${SRCTOP}/,,}'; echo; \ echo 'DIRDEPS = \'; \ echo '${DIRDEPS:@d@ $d \\${.newline}@}'; echo; \ echo '.include '; \ From 44d314f704764f0247a540648a4b4fc3e8012133 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 8 Jun 2015 23:35:17 +0000 Subject: [PATCH 209/228] dirdeps.mk now sets DEP_RELDIR --- bin/cat/Makefile.depend | 2 - bin/chflags/Makefile.depend | 2 - bin/chio/Makefile.depend | 2 - bin/chmod/Makefile.depend | 2 - bin/cp/Makefile.depend | 2 - bin/csh/Makefile.depend | 2 - bin/date/Makefile.depend | 2 - bin/dd/Makefile.depend | 2 - bin/df/Makefile.depend | 2 - bin/domainname/Makefile.depend | 2 - bin/echo/Makefile.depend | 2 - bin/ed/Makefile.depend | 2 - bin/expr/Makefile.depend | 3 +- bin/freebsd-version/Makefile.depend | 2 - bin/getfacl/Makefile.depend | 2 - bin/hostname/Makefile.depend | 2 - bin/kenv/Makefile.depend | 2 - bin/kill/Makefile.depend | 2 - bin/ln/Makefile.depend | 2 - bin/ls/Makefile.depend | 2 - bin/mkdir/Makefile.depend | 2 - bin/mv/Makefile.depend | 2 - bin/pax/Makefile.depend | 2 - bin/pkill/Makefile.depend | 2 - bin/ps/Makefile.depend | 2 - bin/pwait/Makefile.depend | 2 - bin/pwd/Makefile.depend | 2 - bin/rcp/Makefile.depend | 2 - bin/realpath/Makefile.depend | 2 - bin/rm/Makefile.depend | 2 - bin/rmail/Makefile.depend | 2 - bin/rmdir/Makefile.depend | 2 - bin/setfacl/Makefile.depend | 2 - bin/sh/Makefile.depend | 2 - bin/sleep/Makefile.depend | 2 - bin/stty/Makefile.depend | 2 - bin/sync/Makefile.depend | 2 - bin/test/Makefile.depend | 2 - bin/uuidgen/Makefile.depend | 2 - cddl/lib/drti/Makefile.depend | 2 - cddl/lib/libavl/Makefile.depend | 2 - cddl/lib/libctf/Makefile.depend | 2 - cddl/lib/libdtrace/Makefile.depend | 2 - cddl/lib/libnvpair/Makefile.depend | 2 - cddl/lib/libumem/Makefile.depend | 2 - cddl/lib/libuutil/Makefile.depend | 2 - cddl/lib/libzfs/Makefile.depend | 2 - cddl/lib/libzfs_core/Makefile.depend | 2 - cddl/lib/libzpool/Makefile.depend | 2 - cddl/sbin/zfs/Makefile.depend | 2 - cddl/sbin/zpool/Makefile.depend | 2 - cddl/usr.bin/sgsmsg/Makefile.depend | 2 - cddl/usr.bin/zinject/Makefile.depend | 2 - cddl/usr.bin/zstreamdump/Makefile.depend | 2 - cddl/usr.bin/ztest/Makefile.depend | 2 - cddl/usr.sbin/lockstat/Makefile.depend | 2 - cddl/usr.sbin/zdb/Makefile.depend | 2 - cddl/usr.sbin/zhack/Makefile.depend | 2 - games/caesar/Makefile.depend | 2 - games/factor/Makefile.depend | 2 - games/fortune/datfiles/Makefile.depend | 2 - games/fortune/fortune/Makefile.depend | 2 - games/fortune/strfile/Makefile.depend | 2 - games/fortune/unstr/Makefile.depend | 2 - games/grdc/Makefile.depend | 2 - games/morse/Makefile.depend | 2 - games/number/Makefile.depend | 2 - games/pom/Makefile.depend | 2 - games/primes/Makefile.depend | 2 - games/random/Makefile.depend | 2 - gnu/lib/csu/Makefile.depend | 2 - gnu/lib/libdialog/Makefile.depend | 2 - gnu/lib/libgcc/Makefile.depend | 2 - gnu/lib/libgcov/Makefile.depend | 2 - gnu/lib/libgomp/Makefile.depend | 2 - gnu/lib/libreadline/readline/Makefile.depend | 2 - gnu/lib/libregex/Makefile.depend | 2 - .../libssp/libssp_nonshared/Makefile.depend | 2 - gnu/lib/libstdc++/Makefile.depend | 2 - gnu/lib/libsupc++/Makefile.depend | 2 - .../binutils/addr2line/Makefile.depend | 2 - gnu/usr.bin/binutils/as/Makefile.depend | 2 - gnu/usr.bin/binutils/doc/Makefile.depend | 2 - gnu/usr.bin/binutils/ld/Makefile.depend.amd64 | 2 - gnu/usr.bin/binutils/ld/Makefile.depend.host | 2 - .../binutils/libbfd/Makefile.depend.amd64 | 2 - .../binutils/libbfd/Makefile.depend.host | 2 - .../binutils/libbinutils/Makefile.depend | 2 - .../binutils/libiberty/Makefile.depend | 2 - .../binutils/libopcodes/Makefile.depend | 2 - gnu/usr.bin/binutils/nm/Makefile.depend | 2 - gnu/usr.bin/binutils/objcopy/Makefile.depend | 2 - gnu/usr.bin/binutils/objdump/Makefile.depend | 2 - gnu/usr.bin/binutils/readelf/Makefile.depend | 2 - gnu/usr.bin/binutils/size/Makefile.depend | 2 - gnu/usr.bin/binutils/strings/Makefile.depend | 2 - gnu/usr.bin/binutils/strip/Makefile.depend | 2 - gnu/usr.bin/dialog/Makefile.depend | 2 - gnu/usr.bin/diff3/Makefile.depend | 2 - gnu/usr.bin/gdb/gdb/Makefile.depend | 2 - gnu/usr.bin/gdb/gdbserver/Makefile.depend | 2 - gnu/usr.bin/gdb/gdbtui/Makefile.depend | 2 - gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 | 2 - gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 | 2 - gnu/usr.bin/groff/contrib/mm/Makefile.depend | 2 - .../groff/font/devX100-12/Makefile.depend | 2 - .../groff/font/devX100/Makefile.depend | 2 - .../groff/font/devX75-12/Makefile.depend | 2 - gnu/usr.bin/groff/font/devX75/Makefile.depend | 2 - .../groff/font/devascii/Makefile.depend | 2 - .../groff/font/devcp1047/Makefile.depend | 2 - gnu/usr.bin/groff/font/devdvi/Makefile.depend | 2 - .../groff/font/devhtml/Makefile.depend | 2 - .../groff/font/devkoi8-r/Makefile.depend | 2 - .../groff/font/devlatin1/Makefile.depend | 2 - gnu/usr.bin/groff/font/devlbp/Makefile.depend | 2 - gnu/usr.bin/groff/font/devlj4/Makefile.depend | 2 - gnu/usr.bin/groff/font/devps/Makefile.depend | 2 - .../groff/font/devutf8/Makefile.depend | 2 - gnu/usr.bin/groff/man/Makefile.depend | 2 - .../groff/src/devices/grodvi/Makefile.depend | 2 - .../groff/src/devices/grohtml/Makefile.depend | 2 - .../groff/src/devices/grolbp/Makefile.depend | 2 - .../groff/src/devices/grolj4/Makefile.depend | 2 - .../groff/src/devices/grops/Makefile.depend | 2 - .../groff/src/devices/grotty/Makefile.depend | 2 - .../groff/src/libs/libbib/Makefile.depend | 2 - .../groff/src/libs/libdriver/Makefile.depend | 2 - .../groff/src/libs/libgroff/Makefile.depend | 2 - .../groff/src/preproc/eqn/Makefile.depend | 2 - .../groff/src/preproc/grn/Makefile.depend | 2 - .../groff/src/preproc/html/Makefile.depend | 2 - .../groff/src/preproc/pic/Makefile.depend | 2 - .../groff/src/preproc/refer/Makefile.depend | 2 - .../groff/src/preproc/tbl/Makefile.depend | 2 - .../groff/src/roff/groff/Makefile.depend | 2 - .../groff/src/roff/grog/Makefile.depend | 2 - .../groff/src/roff/nroff/Makefile.depend | 2 - .../groff/src/roff/psroff/Makefile.depend | 2 - .../groff/src/roff/troff/Makefile.depend | 2 - .../groff/src/utils/addftinfo/Makefile.depend | 2 - .../groff/src/utils/afmtodit/Makefile.depend | 2 - .../groff/src/utils/hpftodit/Makefile.depend | 2 - .../groff/src/utils/indxbib/Makefile.depend | 2 - .../groff/src/utils/lkbib/Makefile.depend | 2 - .../groff/src/utils/lookbib/Makefile.depend | 2 - .../groff/src/utils/pfbtops/Makefile.depend | 2 - .../groff/src/utils/tfmtodit/Makefile.depend | 2 - gnu/usr.bin/groff/tmac/Makefile.depend | 2 - gnu/usr.bin/rcs/ci/Makefile.depend | 2 - gnu/usr.bin/rcs/co/Makefile.depend | 2 - gnu/usr.bin/rcs/ident/Makefile.depend | 2 - gnu/usr.bin/rcs/lib/Makefile.depend | 2 - gnu/usr.bin/rcs/merge/Makefile.depend | 2 - gnu/usr.bin/rcs/rcs/Makefile.depend | 2 - gnu/usr.bin/rcs/rcsclean/Makefile.depend | 2 - gnu/usr.bin/rcs/rcsdiff/Makefile.depend | 2 - gnu/usr.bin/rcs/rcsfreeze/Makefile.depend | 2 - gnu/usr.bin/rcs/rcsmerge/Makefile.depend | 2 - gnu/usr.bin/rcs/rlog/Makefile.depend | 2 - gnu/usr.bin/sdiff/Makefile.depend | 2 - include/Makefile.depend | 2 - include/arpa/Makefile.depend | 2 - include/gssapi/Makefile.depend | 2 - include/protocols/Makefile.depend | 2 - include/rpc/Makefile.depend | 2 - include/rpcsvc/Makefile.depend | 2 - include/xlocale/Makefile.depend | 2 - kerberos5/lib/libasn1/Makefile.depend | 2 - kerberos5/lib/libgssapi_krb5/Makefile.depend | 2 - kerberos5/lib/libgssapi_ntlm/Makefile.depend | 2 - .../lib/libgssapi_spnego/Makefile.depend | 2 - kerberos5/lib/libhdb/Makefile.depend | 2 - kerberos5/lib/libheimbase/Makefile.depend | 2 - kerberos5/lib/libheimipcc/Makefile.depend | 2 - kerberos5/lib/libheimipcs/Makefile.depend | 2 - kerberos5/lib/libheimntlm/Makefile.depend | 2 - kerberos5/lib/libhx509/Makefile.depend | 2 - kerberos5/lib/libkadm5clnt/Makefile.depend | 2 - kerberos5/lib/libkadm5srv/Makefile.depend | 2 - kerberos5/lib/libkafs5/Makefile.depend | 2 - kerberos5/lib/libkdc/Makefile.depend | 2 - kerberos5/lib/libkrb5/Makefile.depend | 2 - kerberos5/lib/libroken/Makefile.depend | 2 - kerberos5/lib/libsl/Makefile.depend | 2 - kerberos5/lib/libvers/Makefile.depend | 2 - kerberos5/lib/libwind/Makefile.depend | 2 - .../libexec/digest-service/Makefile.depend | 2 - kerberos5/libexec/hprop/Makefile.depend | 2 - kerberos5/libexec/hpropd/Makefile.depend | 2 - .../libexec/ipropd-master/Makefile.depend | 2 - .../libexec/ipropd-slave/Makefile.depend | 2 - kerberos5/libexec/kadmind/Makefile.depend | 2 - kerberos5/libexec/kcm/Makefile.depend | 2 - kerberos5/libexec/kdc/Makefile.depend | 2 - kerberos5/libexec/kdigest/Makefile.depend | 2 - kerberos5/libexec/kfd/Makefile.depend | 2 - .../libexec/kimpersonate/Makefile.depend | 2 - kerberos5/libexec/kpasswdd/Makefile.depend | 2 - kerberos5/tools/asn1_compile/Makefile.depend | 2 - kerberos5/tools/make-roken/Makefile.depend | 2 - kerberos5/tools/slc/Makefile.depend | 2 - kerberos5/usr.bin/hxtool/Makefile.depend | 2 - kerberos5/usr.bin/kadmin/Makefile.depend | 2 - kerberos5/usr.bin/kcc/Makefile.depend | 2 - kerberos5/usr.bin/kdestroy/Makefile.depend | 2 - kerberos5/usr.bin/kf/Makefile.depend | 2 - kerberos5/usr.bin/kgetcred/Makefile.depend | 2 - kerberos5/usr.bin/kinit/Makefile.depend | 2 - kerberos5/usr.bin/kpasswd/Makefile.depend | 2 - kerberos5/usr.bin/krb5-config/Makefile.depend | 2 - kerberos5/usr.bin/ksu/Makefile.depend | 2 - kerberos5/usr.bin/string2key/Makefile.depend | 2 - .../usr.bin/verify_krb5_conf/Makefile.depend | 2 - kerberos5/usr.sbin/iprop-log/Makefile.depend | 2 - kerberos5/usr.sbin/kstash/Makefile.depend | 2 - kerberos5/usr.sbin/ktutil/Makefile.depend | 2 - lib/atf/libatf-c++/Makefile.depend | 2 - lib/atf/libatf-c/Makefile.depend | 2 - lib/clang/include/Makefile.depend | 2 - lib/clang/libclanganalysis/Makefile.depend | 36 ++++++- lib/clang/libclangarcmigrate/Makefile.depend | 86 ++++++++++++++- lib/clang/libclangast/Makefile.depend | 102 ++++++++++++++++-- lib/clang/libclangbasic/Makefile.depend | 25 ++++- lib/clang/libclangcodegen/Makefile.depend | 100 ++++++++++++----- lib/clang/libclangdriver/Makefile.depend | 28 ++--- lib/clang/libclangedit/Makefile.depend | 2 - lib/clang/libclangfrontend/Makefile.depend | 58 ++++++++-- .../libclangfrontendtool/Makefile.depend | 8 +- lib/clang/libclanglex/Makefile.depend | 7 +- lib/clang/libclangparse/Makefile.depend | 40 +++++-- lib/clang/libclangrewrite/Makefile.depend | 2 - .../libclangrewritefrontend/Makefile.depend | 28 +---- lib/clang/libclangsema/Makefile.depend | 62 +++++++---- .../libclangserialization/Makefile.depend | 18 +++- .../Makefile.depend | 94 +++++++++++++--- .../Makefile.depend | 50 ++++++++- .../Makefile.depend | 32 +++++- .../libllvmaarch64asmparser/Makefile.depend | 4 +- lib/clang/libllvmaarch64desc/Makefile.depend | 4 +- .../Makefile.depend | 4 +- lib/clang/libllvmaarch64info/Makefile.depend | 4 +- .../libllvmaarch64instprinter/Makefile.depend | 4 +- lib/clang/libllvmaarch64utils/Makefile.depend | 4 +- lib/clang/libllvmanalysis/Makefile.depend | 10 +- lib/clang/libllvmarmasmparser/Makefile.depend | 2 - lib/clang/libllvmarmcodegen/Makefile.depend | 22 ++-- lib/clang/libllvmarmdesc/Makefile.depend | 8 +- .../libllvmarmdisassembler/Makefile.depend | 2 - lib/clang/libllvmarminfo/Makefile.depend | 2 - .../libllvmarminstprinter/Makefile.depend | 2 - lib/clang/libllvmasmparser/Makefile.depend | 2 - lib/clang/libllvmasmprinter/Makefile.depend | 2 - lib/clang/libllvmbitreader/Makefile.depend | 2 - lib/clang/libllvmbitwriter/Makefile.depend | 2 - lib/clang/libllvmcodegen/Makefile.depend | 8 +- lib/clang/libllvmcore/Makefile.depend | 6 +- lib/clang/libllvminstcombine/Makefile.depend | 2 - .../libllvminstrumentation/Makefile.depend | 8 +- lib/clang/libllvmipa/Makefile.depend | 2 - lib/clang/libllvmipo/Makefile.depend | 2 - lib/clang/libllvmirreader/Makefile.depend | 2 - lib/clang/libllvmlinker/Makefile.depend | 2 - lib/clang/libllvmmc/Makefile.depend | 2 - lib/clang/libllvmmcparser/Makefile.depend | 2 - .../libllvmmipsasmparser/Makefile.depend | 2 - lib/clang/libllvmmipscodegen/Makefile.depend | 44 +++++--- lib/clang/libllvmmipsdesc/Makefile.depend | 34 +++++- .../libllvmmipsdisassembler/Makefile.depend | 2 - lib/clang/libllvmmipsinfo/Makefile.depend | 2 - .../libllvmmipsinstprinter/Makefile.depend | 2 - lib/clang/libllvmobjcarcopts/Makefile.depend | 2 - lib/clang/libllvmobject/Makefile.depend | 2 - lib/clang/libllvmoption/Makefile.depend | 2 - .../libllvmpowerpcasmparser/Makefile.depend | 2 - .../libllvmpowerpccodegen/Makefile.depend | 16 --- lib/clang/libllvmpowerpcdesc/Makefile.depend | 2 - .../Makefile.depend | 4 +- lib/clang/libllvmpowerpcinfo/Makefile.depend | 2 - .../libllvmpowerpcinstprinter/Makefile.depend | 2 - lib/clang/libllvmprofiledata/Makefile.depend | 4 +- lib/clang/libllvmscalaropts/Makefile.depend | 18 ++-- lib/clang/libllvmselectiondag/Makefile.depend | 4 +- .../libllvmsparcasmparser/Makefile.depend | 2 - lib/clang/libllvmsparccodegen/Makefile.depend | 22 ---- lib/clang/libllvmsparcdesc/Makefile.depend | 2 - .../libllvmsparcdisassembler/Makefile.depend | 2 - lib/clang/libllvmsparcinfo/Makefile.depend | 2 - .../libllvmsparcinstprinter/Makefile.depend | 2 - lib/clang/libllvmsupport/Makefile.depend | 4 +- lib/clang/libllvmtablegen/Makefile.depend | 2 - lib/clang/libllvmtarget/Makefile.depend | 2 - .../libllvmtransformutils/Makefile.depend | 6 +- lib/clang/libllvmvectorize/Makefile.depend | 2 - lib/clang/libllvmx86asmparser/Makefile.depend | 8 +- lib/clang/libllvmx86codegen/Makefile.depend | 22 ++-- lib/clang/libllvmx86desc/Makefile.depend | 8 +- .../libllvmx86disassembler/Makefile.depend | 4 +- lib/clang/libllvmx86info/Makefile.depend | 2 - .../libllvmx86instprinter/Makefile.depend | 2 - lib/clang/libllvmx86utils/Makefile.depend | 2 - lib/csu/amd64/Makefile.depend | 2 - lib/libalias/libalias/Makefile.depend | 2 - lib/libarchive/Makefile.depend | 2 - lib/libauditd/Makefile.depend | 2 - lib/libbegemot/Makefile.depend | 2 - lib/libbluetooth/Makefile.depend | 2 - lib/libbsm/Makefile.depend | 2 - lib/libbsnmp/libbsnmp/Makefile.depend | 2 - lib/libbz2/Makefile.depend | 2 - lib/libc++/Makefile.depend | 2 - lib/libc/Makefile.depend | 2 - lib/libc_nonshared/Makefile.depend | 2 - lib/libcalendar/Makefile.depend | 2 - lib/libcam/Makefile.depend | 2 - lib/libcapsicum/Makefile.depend | 2 - lib/libcom_err/Makefile.depend | 2 - lib/libcompiler_rt/Makefile.depend | 2 - lib/libcrypt/Makefile.depend | 2 - lib/libcxxrt/Makefile.depend | 2 - lib/libdevinfo/Makefile.depend | 2 - lib/libdevstat/Makefile.depend | 2 - lib/libdpv/Makefile.depend | 2 - lib/libedit/Makefile.depend | 2 - lib/libedit/edit/readline/Makefile.depend | 2 - lib/libelf/Makefile.depend | 2 - lib/libexecinfo/Makefile.depend | 2 - lib/libexpat/Makefile.depend | 2 - lib/libfetch/Makefile.depend | 2 - lib/libfigpar/Makefile.depend | 2 - lib/libgeom/Makefile.depend | 2 - lib/libgpio/Makefile.depend | 2 - lib/libgssapi/Makefile.depend | 2 - lib/libipsec/Makefile.depend | 2 - lib/libjail/Makefile.depend | 2 - lib/libkiconv/Makefile.depend | 2 - lib/libkvm/Makefile.depend | 2 - lib/libldns/Makefile.depend | 2 - lib/liblzma/Makefile.depend | 2 - lib/libmagic/Makefile.depend | 2 - lib/libmd/Makefile.depend | 2 - lib/libmd/Makefile.depend.host | 2 - lib/libmemstat/Makefile.depend | 2 - lib/libmp/Makefile.depend | 2 - lib/libmt/Makefile.depend | 2 - lib/libnetbsd/Makefile.depend | 2 - lib/libnetgraph/Makefile.depend | 2 - lib/libngatm/Makefile.depend | 2 - lib/libnv/Makefile.depend | 2 - lib/libohash/Makefile.depend | 2 - lib/libopie/Makefile.depend | 2 - lib/libpam/libpam/Makefile.depend | 2 - lib/libpcap/Makefile.depend | 3 +- lib/libpmc/Makefile.depend | 2 - lib/libproc/Makefile.depend | 2 - lib/libprocstat/Makefile.depend | 2 - lib/libprocstat/zfs/Makefile.depend | 2 - lib/libradius/Makefile.depend | 2 - lib/librpcsvc/Makefile.depend | 2 - lib/librt/Makefile.depend | 2 - lib/librtld_db/Makefile.depend | 2 - lib/libsbuf/Makefile.depend | 2 - lib/libsdp/Makefile.depend | 2 - lib/libsm/Makefile.depend | 2 - lib/libsmdb/Makefile.depend | 2 - lib/libsmutil/Makefile.depend | 2 - lib/libsqlite3/Makefile.depend | 2 - lib/libtelnet/Makefile.depend | 2 - lib/libthr/Makefile.depend | 2 - lib/libthread_db/Makefile.depend | 2 - lib/libucl/Makefile.depend | 2 - lib/libufs/Makefile.depend | 2 - lib/libugidfw/Makefile.depend | 2 - lib/libulog/Makefile.depend | 2 - lib/libusb/Makefile.depend | 2 - lib/libusbhid/Makefile.depend | 2 - lib/libutil/Makefile.depend | 2 - lib/libwrap/Makefile.depend | 2 - lib/libxo/Makefile.depend | 2 - lib/liby/Makefile.depend | 2 - lib/libypclnt/Makefile.depend | 2 - lib/libz/Makefile.depend | 2 - lib/msun/Makefile.depend | 2 - lib/ncurses/ncurses/Makefile.depend | 2 - lib/ncurses/ncursesw/Makefile.depend | 2 - libexec/atf/atf-check/Makefile.depend | 2 - libexec/atf/atf-sh/Makefile.depend | 2 - libexec/atrun/Makefile.depend | 2 - libexec/bootpd/bootpgw/Makefile.depend | 2 - libexec/bootpd/tools/bootpef/Makefile.depend | 2 - .../bootpd/tools/bootptest/Makefile.depend | 2 - libexec/comsat/Makefile.depend | 2 - libexec/fingerd/Makefile.depend | 2 - libexec/ftpd/Makefile.depend | 2 - libexec/getty/Makefile.depend | 2 - libexec/mail.local/Makefile.depend | 2 - libexec/mknetid/Makefile.depend | 2 - libexec/pppoed/Makefile.depend | 2 - libexec/rbootd/Makefile.depend | 2 - libexec/revnetgroup/Makefile.depend | 2 - libexec/rlogind/Makefile.depend | 2 - libexec/rpc.rquotad/Makefile.depend | 2 - libexec/rpc.rstatd/Makefile.depend | 2 - libexec/rpc.rusersd/Makefile.depend | 2 - libexec/rpc.rwalld/Makefile.depend | 2 - libexec/rpc.sprayd/Makefile.depend | 2 - libexec/rshd/Makefile.depend | 2 - libexec/rtld-elf/Makefile.depend | 2 - libexec/save-entropy/Makefile.depend | 2 - libexec/smrsh/Makefile.depend | 2 - libexec/talkd/Makefile.depend | 2 - libexec/tcpd/Makefile.depend | 2 - libexec/telnetd/Makefile.depend | 2 - libexec/tftp-proxy/Makefile.depend | 2 - libexec/tftpd/Makefile.depend | 2 - libexec/ulog-helper/Makefile.depend | 2 - libexec/ypxfr/Makefile.depend | 2 - sbin/adjkerntz/Makefile.depend | 2 - sbin/atm/atmconfig/Makefile.depend | 2 - sbin/badsect/Makefile.depend | 2 - sbin/bsdlabel/Makefile.depend | 2 - sbin/camcontrol/Makefile.depend | 2 - sbin/ccdconfig/Makefile.depend | 2 - sbin/clri/Makefile.depend | 2 - sbin/comcontrol/Makefile.depend | 2 - sbin/conscontrol/Makefile.depend | 2 - sbin/ddb/Makefile.depend | 2 - sbin/devd/Makefile.depend | 2 - sbin/devfs/Makefile.depend | 2 - sbin/dhclient/Makefile.depend | 2 - sbin/dmesg/Makefile.depend | 2 - sbin/dump/Makefile.depend | 2 - sbin/dumpfs/Makefile.depend | 2 - sbin/dumpon/Makefile.depend | 2 - sbin/etherswitchcfg/Makefile.depend | 2 - sbin/fdisk/Makefile.depend | 2 - sbin/ffsinfo/Makefile.depend | 2 - sbin/fsck/Makefile.depend | 2 - sbin/fsck_ffs/Makefile.depend | 2 - sbin/fsck_msdosfs/Makefile.depend | 2 - sbin/fsdb/Makefile.depend | 2 - sbin/fsirand/Makefile.depend | 2 - sbin/gbde/Makefile.depend | 2 - sbin/geom/class/cache/Makefile.depend | 2 - sbin/geom/class/concat/Makefile.depend | 2 - sbin/geom/class/eli/Makefile.depend | 2 - sbin/geom/class/journal/Makefile.depend | 2 - sbin/geom/class/label/Makefile.depend | 2 - sbin/geom/class/mirror/Makefile.depend | 2 - sbin/geom/class/mountver/Makefile.depend | 2 - sbin/geom/class/multipath/Makefile.depend | 2 - sbin/geom/class/nop/Makefile.depend | 2 - sbin/geom/class/part/Makefile.depend | 2 - sbin/geom/class/raid/Makefile.depend | 2 - sbin/geom/class/raid3/Makefile.depend | 2 - sbin/geom/class/sched/Makefile.depend | 2 - sbin/geom/class/shsec/Makefile.depend | 2 - sbin/geom/class/stripe/Makefile.depend | 2 - sbin/geom/class/virstor/Makefile.depend | 2 - sbin/geom/core/Makefile.depend | 2 - sbin/ggate/ggatec/Makefile.depend | 2 - sbin/ggate/ggated/Makefile.depend | 2 - sbin/ggate/ggatel/Makefile.depend | 2 - sbin/growfs/Makefile.depend | 2 - sbin/gvinum/Makefile.depend | 2 - sbin/hastctl/Makefile.depend | 2 - sbin/hastd/Makefile.depend | 2 - sbin/ifconfig/Makefile.depend | 2 - sbin/init/Makefile.depend | 2 - sbin/ipf/ipf/Makefile.depend | 2 - sbin/ipf/ipfs/Makefile.depend | 2 - sbin/ipf/ipfstat/Makefile.depend | 2 - sbin/ipf/ipftest/Makefile.depend | 2 - sbin/ipf/ipmon/Makefile.depend | 2 - sbin/ipf/ipnat/Makefile.depend | 2 - sbin/ipf/ippool/Makefile.depend | 2 - sbin/ipf/ipresend/Makefile.depend | 2 - sbin/ipf/libipf/Makefile.depend | 2 - sbin/ipfw/Makefile.depend | 2 - sbin/iscontrol/Makefile.depend | 2 - sbin/kldconfig/Makefile.depend | 2 - sbin/kldload/Makefile.depend | 2 - sbin/kldstat/Makefile.depend | 2 - sbin/kldunload/Makefile.depend | 2 - sbin/ldconfig/Makefile.depend | 2 - sbin/md5/Makefile.depend | 2 - sbin/mdconfig/Makefile.depend | 2 - sbin/mdmfs/Makefile.depend | 2 - sbin/mknod/Makefile.depend | 2 - sbin/mksnap_ffs/Makefile.depend | 2 - sbin/mount/Makefile.depend | 2 - sbin/mount_cd9660/Makefile.depend | 2 - sbin/mount_fusefs/Makefile.depend | 2 - sbin/mount_msdosfs/Makefile.depend | 2 - sbin/mount_nfs/Makefile.depend | 2 - sbin/mount_nullfs/Makefile.depend | 2 - sbin/mount_udf/Makefile.depend | 2 - sbin/mount_unionfs/Makefile.depend | 2 - sbin/natd/Makefile.depend | 2 - sbin/newfs/Makefile.depend | 2 - sbin/newfs_msdos/Makefile.depend | 2 - sbin/nfsiod/Makefile.depend | 2 - sbin/nos-tun/Makefile.depend | 2 - sbin/nvmecontrol/Makefile.depend | 2 - sbin/pfctl/Makefile.depend | 2 - sbin/pflogd/Makefile.depend | 2 - sbin/ping/Makefile.depend | 2 - sbin/ping6/Makefile.depend | 2 - sbin/quotacheck/Makefile.depend | 2 - sbin/rcorder/Makefile.depend | 2 - sbin/reboot/Makefile.depend | 2 - sbin/recoverdisk/Makefile.depend | 2 - sbin/resolvconf/Makefile.depend | 2 - sbin/restore/Makefile.depend | 2 - sbin/route/Makefile.depend | 2 - sbin/routed/rtquery/Makefile.depend | 2 - sbin/rtsol/Makefile.depend | 2 - sbin/savecore/Makefile.depend | 2 - sbin/setkey/Makefile.depend | 2 - sbin/shutdown/Makefile.depend | 2 - sbin/spppcontrol/Makefile.depend | 2 - sbin/swapon/Makefile.depend | 2 - sbin/sysctl/Makefile.depend | 2 - sbin/tunefs/Makefile.depend | 2 - sbin/umount/Makefile.depend | 2 - secure/lib/libcrypto/Makefile.depend | 2 - .../engines/lib4758cca/Makefile.depend | 2 - .../libcrypto/engines/libaep/Makefile.depend | 2 - .../engines/libatalla/Makefile.depend | 2 - .../libcrypto/engines/libchil/Makefile.depend | 2 - .../engines/libcswift/Makefile.depend | 2 - .../libcrypto/engines/libgost/Makefile.depend | 2 - .../engines/libnuron/Makefile.depend | 2 - .../engines/libsureware/Makefile.depend | 2 - .../engines/libubsec/Makefile.depend | 2 - secure/lib/libssh/Makefile.depend | 2 - secure/lib/libssl/Makefile.depend | 2 - secure/libexec/sftp-server/Makefile.depend | 2 - secure/libexec/ssh-keysign/Makefile.depend | 2 - .../libexec/ssh-pkcs11-helper/Makefile.depend | 2 - secure/usr.bin/bdes/Makefile.depend | 2 - secure/usr.bin/openssl/Makefile.depend | 2 - secure/usr.bin/scp/Makefile.depend | 2 - secure/usr.bin/sftp/Makefile.depend | 2 - secure/usr.bin/ssh-add/Makefile.depend | 2 - secure/usr.bin/ssh-agent/Makefile.depend | 2 - secure/usr.bin/ssh-keygen/Makefile.depend | 2 - secure/usr.bin/ssh-keyscan/Makefile.depend | 2 - secure/usr.bin/ssh/Makefile.depend | 2 - secure/usr.sbin/sshd/Makefile.depend | 2 - share/colldef/Makefile.depend | 2 - share/dict/Makefile.depend | 2 - share/doc/IPv6/Makefile.depend | 2 - share/doc/atf/Makefile.depend | 2 - share/doc/legal/intel_ipw/Makefile.depend | 2 - share/doc/legal/intel_iwi/Makefile.depend | 2 - share/doc/legal/intel_iwn/Makefile.depend | 2 - share/doc/legal/intel_wpi/Makefile.depend | 2 - share/doc/llvm/clang/Makefile.depend | 2 - share/dtrace/toolkit/Makefile.depend | 2 - share/examples/ipfilter/Makefile.depend | 2 - share/examples/pf/Makefile.depend | 2 - share/i18n/csmapper/APPLE/Makefile.depend | 2 - share/i18n/csmapper/AST/Makefile.depend | 2 - share/i18n/csmapper/BIG5/Makefile.depend | 2 - share/i18n/csmapper/CNS/Makefile.depend | 2 - share/i18n/csmapper/CP/Makefile.depend | 2 - share/i18n/csmapper/EBCDIC/Makefile.depend | 2 - share/i18n/csmapper/GB/Makefile.depend | 2 - share/i18n/csmapper/GEORGIAN/Makefile.depend | 2 - share/i18n/csmapper/ISO-8859/Makefile.depend | 2 - share/i18n/csmapper/ISO646/Makefile.depend | 2 - share/i18n/csmapper/JIS/Makefile.depend | 2 - share/i18n/csmapper/KAZAKH/Makefile.depend | 2 - share/i18n/csmapper/KOI/Makefile.depend | 2 - share/i18n/csmapper/KS/Makefile.depend | 2 - share/i18n/csmapper/MISC/Makefile.depend | 2 - share/i18n/csmapper/Makefile.depend | 2 - share/i18n/csmapper/TCVN/Makefile.depend | 2 - share/i18n/esdb/APPLE/Makefile.depend | 2 - share/i18n/esdb/AST/Makefile.depend | 2 - share/i18n/esdb/BIG5/Makefile.depend | 2 - share/i18n/esdb/CP/Makefile.depend | 2 - share/i18n/esdb/DEC/Makefile.depend | 2 - share/i18n/esdb/EBCDIC/Makefile.depend | 2 - share/i18n/esdb/EUC/Makefile.depend | 2 - share/i18n/esdb/GB/Makefile.depend | 2 - share/i18n/esdb/GEORGIAN/Makefile.depend | 2 - share/i18n/esdb/ISO-2022/Makefile.depend | 2 - share/i18n/esdb/ISO-8859/Makefile.depend | 2 - share/i18n/esdb/ISO646/Makefile.depend | 2 - share/i18n/esdb/KAZAKH/Makefile.depend | 2 - share/i18n/esdb/KOI/Makefile.depend | 2 - share/i18n/esdb/MISC/Makefile.depend | 2 - share/i18n/esdb/Makefile.depend | 2 - share/i18n/esdb/TCVN/Makefile.depend | 2 - share/i18n/esdb/UTF/Makefile.depend | 2 - share/man/man1/Makefile.depend | 2 - share/man/man3/Makefile.depend | 2 - share/man/man4/Makefile.depend | 2 - share/man/man5/Makefile.depend | 2 - share/man/man6/Makefile.depend | 2 - share/man/man7/Makefile.depend | 2 - share/man/man8/Makefile.depend | 2 - share/man/man9/Makefile.depend | 2 - share/me/Makefile.depend | 2 - share/misc/Makefile.depend | 2 - share/mklocale/Makefile.depend | 2 - share/monetdef/Makefile.depend | 2 - share/msgdef/Makefile.depend | 2 - share/numericdef/Makefile.depend | 2 - share/sendmail/Makefile.depend | 2 - share/skel/Makefile.depend | 2 - share/snmp/mibs/Makefile.depend | 2 - share/syscons/fonts/Makefile.depend | 2 - share/syscons/keymaps/Makefile.depend | 2 - share/syscons/scrnmaps/Makefile.depend | 2 - share/tabset/Makefile.depend | 2 - share/termcap/Makefile.depend | 2 - share/timedef/Makefile.depend | 2 - share/zoneinfo/Makefile.depend | 2 - usr.bin/alias/Makefile.depend | 2 - usr.bin/apply/Makefile.depend | 2 - usr.bin/ar/Makefile.depend | 2 - usr.bin/asa/Makefile.depend | 2 - usr.bin/at/Makefile.depend | 2 - usr.bin/atm/sscop/Makefile.depend | 2 - usr.bin/awk/Makefile.depend | 2 - usr.bin/banner/Makefile.depend | 2 - usr.bin/basename/Makefile.depend | 2 - usr.bin/bc/Makefile.depend | 2 - usr.bin/biff/Makefile.depend | 2 - usr.bin/bluetooth/bthost/Makefile.depend | 2 - usr.bin/bluetooth/btsockstat/Makefile.depend | 2 - usr.bin/bluetooth/rfcomm_sppd/Makefile.depend | 2 - usr.bin/bmake/Makefile.depend | 2 - usr.bin/brandelf/Makefile.depend | 2 - usr.bin/bsdiff/bsdiff/Makefile.depend | 2 - usr.bin/bsdiff/bspatch/Makefile.depend | 2 - usr.bin/bzip2/Makefile.depend | 2 - usr.bin/bzip2recover/Makefile.depend | 2 - usr.bin/c89/Makefile.depend | 2 - usr.bin/c99/Makefile.depend | 2 - usr.bin/calendar/Makefile.depend | 2 - usr.bin/cap_mkdb/Makefile.depend | 2 - usr.bin/catman/Makefile.depend | 2 - usr.bin/chat/Makefile.depend | 2 - usr.bin/checknr/Makefile.depend | 2 - usr.bin/chkey/Makefile.depend | 2 - usr.bin/chpass/Makefile.depend | 2 - usr.bin/cksum/Makefile.depend | 2 - usr.bin/clang/clang-tblgen/Makefile.depend | 2 - usr.bin/cmp/Makefile.depend | 2 - usr.bin/col/Makefile.depend | 2 - usr.bin/colcrt/Makefile.depend | 2 - usr.bin/colldef/Makefile.depend | 2 - usr.bin/colrm/Makefile.depend | 2 - usr.bin/column/Makefile.depend | 2 - usr.bin/comm/Makefile.depend | 2 - usr.bin/compile_et/Makefile.depend | 2 - usr.bin/compress/Makefile.depend | 2 - usr.bin/cpio/Makefile.depend | 2 - usr.bin/cpuset/Makefile.depend | 2 - usr.bin/csplit/Makefile.depend | 2 - usr.bin/csup/Makefile.depend | 2 - usr.bin/ctags/Makefile.depend | 2 - usr.bin/ctlstat/Makefile.depend | 2 - usr.bin/cut/Makefile.depend | 2 - usr.bin/dc/Makefile.depend | 2 - usr.bin/dirname/Makefile.depend | 2 - usr.bin/du/Makefile.depend | 2 - usr.bin/ee/Makefile.depend | 2 - usr.bin/elf2aout/Makefile.depend | 2 - usr.bin/elfdump/Makefile.depend | 2 - usr.bin/enigma/Makefile.depend | 2 - usr.bin/env/Makefile.depend | 2 - usr.bin/expand/Makefile.depend | 2 - usr.bin/false/Makefile.depend | 2 - usr.bin/fetch/Makefile.depend | 2 - usr.bin/file/Makefile.depend | 2 - usr.bin/file2c/Makefile.depend | 2 - usr.bin/find/Makefile.depend | 2 - usr.bin/finger/Makefile.depend | 2 - usr.bin/fmt/Makefile.depend | 2 - usr.bin/fold/Makefile.depend | 2 - usr.bin/from/Makefile.depend | 2 - usr.bin/fstat/Makefile.depend | 2 - usr.bin/fsync/Makefile.depend | 2 - usr.bin/ftp/Makefile.depend | 2 - usr.bin/gcore/Makefile.depend | 2 - usr.bin/gencat/Makefile.depend | 2 - usr.bin/getconf/Makefile.depend | 2 - usr.bin/getent/Makefile.depend | 2 - usr.bin/getopt/Makefile.depend | 2 - usr.bin/gprof/Makefile.depend | 2 - usr.bin/grep/Makefile.depend | 2 - usr.bin/gzip/Makefile.depend | 2 - usr.bin/head/Makefile.depend | 2 - usr.bin/hexdump/Makefile.depend | 2 - usr.bin/host/Makefile.depend | 2 - usr.bin/id/Makefile.depend | 2 - usr.bin/indent/Makefile.depend | 2 - usr.bin/ipcrm/Makefile.depend | 2 - usr.bin/ipcs/Makefile.depend | 2 - usr.bin/join/Makefile.depend | 2 - usr.bin/jot/Makefile.depend | 2 - usr.bin/kdump/Makefile.depend | 2 - usr.bin/keylogin/Makefile.depend | 2 - usr.bin/keylogout/Makefile.depend | 2 - usr.bin/killall/Makefile.depend | 2 - usr.bin/ktrace/Makefile.depend | 2 - usr.bin/ktrdump/Makefile.depend | 2 - usr.bin/lam/Makefile.depend | 2 - usr.bin/last/Makefile.depend | 2 - usr.bin/lastcomm/Makefile.depend | 2 - usr.bin/ldd/Makefile.depend | 2 - usr.bin/leave/Makefile.depend | 2 - usr.bin/less/Makefile.depend | 2 - usr.bin/lessecho/Makefile.depend | 2 - usr.bin/lesskey/Makefile.depend | 2 - usr.bin/lex/lib/Makefile.depend | 2 - usr.bin/limits/Makefile.depend | 2 - usr.bin/locale/Makefile.depend | 2 - usr.bin/locate/bigram/Makefile.depend | 2 - usr.bin/locate/code/Makefile.depend | 2 - usr.bin/locate/locate/Makefile.depend | 2 - usr.bin/lock/Makefile.depend | 2 - usr.bin/lockf/Makefile.depend | 2 - usr.bin/logger/Makefile.depend | 2 - usr.bin/login/Makefile.depend | 2 - usr.bin/logins/Makefile.depend | 2 - usr.bin/logname/Makefile.depend | 2 - usr.bin/look/Makefile.depend | 2 - usr.bin/lorder/Makefile.depend | 2 - usr.bin/lsvfs/Makefile.depend | 2 - usr.bin/lzmainfo/Makefile.depend | 2 - usr.bin/m4/Makefile.depend | 2 - usr.bin/mail/Makefile.depend | 2 - usr.bin/makewhatis/Makefile.depend | 2 - usr.bin/man/Makefile.depend | 2 - usr.bin/mandoc/Makefile.depend | 2 - usr.bin/mesg/Makefile.depend | 2 - usr.bin/minigzip/Makefile.depend | 2 - usr.bin/ministat/Makefile.depend | 2 - usr.bin/mkdep/Makefile.depend | 2 - usr.bin/mkfifo/Makefile.depend | 2 - usr.bin/mklocale/Makefile.depend | 2 - usr.bin/mkstr/Makefile.depend | 2 - usr.bin/mktemp/Makefile.depend | 2 - usr.bin/mkulzma/Makefile.depend | 2 - usr.bin/mkuzip/Makefile.depend | 2 - usr.bin/msgs/Makefile.depend | 2 - usr.bin/mt/Makefile.depend | 2 - usr.bin/nc/Makefile.depend | 2 - usr.bin/ncal/Makefile.depend | 2 - usr.bin/netstat/Makefile.depend | 2 - usr.bin/newgrp/Makefile.depend | 2 - usr.bin/newkey/Makefile.depend | 2 - usr.bin/nfsstat/Makefile.depend | 2 - usr.bin/nice/Makefile.depend | 2 - usr.bin/nl/Makefile.depend | 2 - usr.bin/nohup/Makefile.depend | 2 - usr.bin/opieinfo/Makefile.depend | 2 - usr.bin/opiekey/Makefile.depend | 2 - usr.bin/opiepasswd/Makefile.depend | 2 - usr.bin/pagesize/Makefile.depend | 2 - usr.bin/passwd/Makefile.depend | 2 - usr.bin/paste/Makefile.depend | 2 - usr.bin/pathchk/Makefile.depend | 2 - usr.bin/perror/Makefile.depend | 2 - usr.bin/pr/Makefile.depend | 2 - usr.bin/printenv/Makefile.depend | 2 - usr.bin/printf/Makefile.depend | 2 - usr.bin/procstat/Makefile.depend | 2 - usr.bin/quota/Makefile.depend | 2 - usr.bin/rctl/Makefile.depend | 2 - usr.bin/renice/Makefile.depend | 2 - usr.bin/rev/Makefile.depend | 2 - usr.bin/revoke/Makefile.depend | 2 - usr.bin/rlogin/Makefile.depend | 2 - usr.bin/rpcgen/Makefile.depend | 2 - usr.bin/rpcinfo/Makefile.depend | 2 - usr.bin/rs/Makefile.depend | 2 - usr.bin/rsh/Makefile.depend | 2 - usr.bin/rup/Makefile.depend | 2 - usr.bin/ruptime/Makefile.depend | 2 - usr.bin/rusers/Makefile.depend | 2 - usr.bin/rwall/Makefile.depend | 2 - usr.bin/rwho/Makefile.depend | 2 - usr.bin/script/Makefile.depend | 2 - usr.bin/sed/Makefile.depend | 2 - usr.bin/seq/Makefile.depend | 2 - usr.bin/shar/Makefile.depend | 2 - usr.bin/showmount/Makefile.depend | 2 - usr.bin/sockstat/Makefile.depend | 2 - usr.bin/sort/Makefile.depend | 2 - usr.bin/split/Makefile.depend | 2 - usr.bin/ssh-copy-id/Makefile.depend | 2 - usr.bin/stat/Makefile.depend | 2 - usr.bin/stdbuf/Makefile.depend | 2 - usr.bin/su/Makefile.depend | 2 - usr.bin/systat/Makefile.depend | 2 - usr.bin/tabs/Makefile.depend | 2 - usr.bin/tail/Makefile.depend | 2 - usr.bin/talk/Makefile.depend | 2 - usr.bin/tar/Makefile.depend | 2 - usr.bin/tcopy/Makefile.depend | 2 - usr.bin/tee/Makefile.depend | 2 - usr.bin/telnet/Makefile.depend | 2 - usr.bin/tftp/Makefile.depend | 2 - usr.bin/time/Makefile.depend | 2 - usr.bin/timeout/Makefile.depend | 2 - usr.bin/tip/tip/Makefile.depend | 2 - usr.bin/top/Makefile.depend | 2 - usr.bin/touch/Makefile.depend | 2 - usr.bin/tput/Makefile.depend | 2 - usr.bin/tr/Makefile.depend | 2 - usr.bin/true/Makefile.depend | 2 - usr.bin/truncate/Makefile.depend | 2 - usr.bin/truss/Makefile.depend.amd64 | 2 - usr.bin/tset/Makefile.depend | 2 - usr.bin/tsort/Makefile.depend | 2 - usr.bin/tty/Makefile.depend | 2 - usr.bin/ul/Makefile.depend | 2 - usr.bin/uname/Makefile.depend | 2 - usr.bin/unexpand/Makefile.depend | 2 - usr.bin/unifdef/Makefile.depend | 2 - usr.bin/uniq/Makefile.depend | 2 - usr.bin/units/Makefile.depend | 2 - usr.bin/unvis/Makefile.depend | 2 - usr.bin/unzip/Makefile.depend | 2 - usr.bin/usbhidaction/Makefile.depend | 2 - usr.bin/usbhidctl/Makefile.depend | 2 - usr.bin/users/Makefile.depend | 2 - usr.bin/uudecode/Makefile.depend | 2 - usr.bin/uuencode/Makefile.depend | 2 - usr.bin/vacation/Makefile.depend | 2 - usr.bin/vgrind/Makefile.depend | 2 - usr.bin/vi/Makefile.depend | 2 - usr.bin/vis/Makefile.depend | 2 - usr.bin/vmstat/Makefile.depend | 2 - usr.bin/vtfontcvt/Makefile.depend | 2 - usr.bin/w/Makefile.depend | 2 - usr.bin/wall/Makefile.depend | 2 - usr.bin/wc/Makefile.depend | 2 - usr.bin/what/Makefile.depend | 2 - usr.bin/whereis/Makefile.depend | 2 - usr.bin/which/Makefile.depend | 2 - usr.bin/who/Makefile.depend | 2 - usr.bin/whois/Makefile.depend | 2 - usr.bin/write/Makefile.depend | 2 - usr.bin/xargs/Makefile.depend | 2 - usr.bin/xinstall/Makefile.depend | 2 - usr.bin/xinstall/Makefile.depend.host | 2 - usr.bin/xlint/lint1/Makefile.depend | 2 - usr.bin/xlint/lint2/Makefile.depend | 2 - usr.bin/xlint/llib/Makefile.depend | 2 - usr.bin/xlint/xlint/Makefile.depend | 2 - usr.bin/xstr/Makefile.depend | 2 - usr.bin/xz/Makefile.depend | 2 - usr.bin/xzdec/Makefile.depend | 2 - usr.bin/yacc/Makefile.depend | 2 - usr.bin/yes/Makefile.depend | 2 - usr.bin/ypcat/Makefile.depend | 2 - usr.bin/ypmatch/Makefile.depend | 2 - usr.bin/ypwhich/Makefile.depend | 2 - usr.sbin/ac/Makefile.depend | 2 - usr.sbin/accton/Makefile.depend | 2 - usr.sbin/acpi/acpiconf/Makefile.depend | 2 - usr.sbin/acpi/acpidb/Makefile.depend | 2 - usr.sbin/acpi/acpidump/Makefile.depend | 2 - usr.sbin/acpi/iasl/Makefile.depend | 2 - usr.sbin/adduser/Makefile.depend | 2 - usr.sbin/amd/amd/Makefile.depend | 2 - usr.sbin/amd/amq/Makefile.depend | 2 - usr.sbin/amd/fixmount/Makefile.depend | 2 - usr.sbin/amd/fsinfo/Makefile.depend | 2 - usr.sbin/amd/hlfsd/Makefile.depend | 2 - usr.sbin/amd/include/Makefile.depend | 3 +- usr.sbin/amd/libamu/Makefile.depend | 2 - usr.sbin/amd/mk-amd-map/Makefile.depend | 2 - usr.sbin/amd/pawd/Makefile.depend | 2 - usr.sbin/amd/scripts/Makefile.depend | 2 - usr.sbin/amd/wire-test/Makefile.depend | 2 - usr.sbin/ancontrol/Makefile.depend | 2 - usr.sbin/apm/Makefile.depend | 2 - usr.sbin/arp/Makefile.depend | 2 - usr.sbin/asf/Makefile.depend | 2 - usr.sbin/audit/Makefile.depend | 2 - usr.sbin/auditd/Makefile.depend | 2 - usr.sbin/auditreduce/Makefile.depend | 2 - usr.sbin/authpf/Makefile.depend | 2 - usr.sbin/bluetooth/ath3kfw/Makefile.depend | 2 - usr.sbin/bluetooth/bcmfw/Makefile.depend | 2 - usr.sbin/bluetooth/bt3cfw/Makefile.depend | 2 - .../bluetooth/bthidcontrol/Makefile.depend | 2 - usr.sbin/bluetooth/bthidd/Makefile.depend | 2 - usr.sbin/bluetooth/btpand/Makefile.depend | 2 - usr.sbin/bluetooth/hccontrol/Makefile.depend | 2 - usr.sbin/bluetooth/hcsecd/Makefile.depend | 2 - usr.sbin/bluetooth/hcseriald/Makefile.depend | 2 - usr.sbin/bluetooth/l2control/Makefile.depend | 2 - usr.sbin/bluetooth/l2ping/Makefile.depend | 2 - .../bluetooth/rfcomm_pppd/Makefile.depend | 2 - usr.sbin/bluetooth/sdpcontrol/Makefile.depend | 2 - usr.sbin/bluetooth/sdpd/Makefile.depend | 2 - usr.sbin/boot0cfg/Makefile.depend | 2 - .../bootparamd/bootparamd/Makefile.depend | 2 - usr.sbin/bootparamd/callbootd/Makefile.depend | 2 - .../bsdinstall/distextract/Makefile.depend | 2 - usr.sbin/bsdinstall/distfetch/Makefile.depend | 2 - usr.sbin/bsdinstall/partedit/Makefile.depend | 2 - usr.sbin/bsdinstall/scripts/Makefile.depend | 2 - usr.sbin/bsnmpd/bsnmpd/Makefile.depend | 2 - usr.sbin/bsnmpd/gensnmptree/Makefile.depend | 2 - usr.sbin/bsnmpd/modules/Makefile.depend | 2 - .../bsnmpd/modules/snmp_atm/Makefile.depend | 2 - .../modules/snmp_bridge/Makefile.depend | 2 - .../modules/snmp_hostres/Makefile.depend | 2 - .../bsnmpd/modules/snmp_lm75/Makefile.depend | 2 - .../bsnmpd/modules/snmp_mibII/Makefile.depend | 2 - .../modules/snmp_netgraph/Makefile.depend | 2 - .../bsnmpd/modules/snmp_pf/Makefile.depend | 2 - .../modules/snmp_target/Makefile.depend | 2 - .../bsnmpd/modules/snmp_usm/Makefile.depend | 2 - .../bsnmpd/modules/snmp_vacm/Makefile.depend | 2 - .../bsnmpd/modules/snmp_wlan/Makefile.depend | 2 - .../bsnmpd/tools/bsnmptools/Makefile.depend | 2 - .../tools/libbsnmptools/Makefile.depend | 2 - usr.sbin/btxld/Makefile.depend | 2 - usr.sbin/cdcontrol/Makefile.depend | 2 - usr.sbin/chkgrp/Makefile.depend | 2 - usr.sbin/chown/Makefile.depend | 2 - usr.sbin/chroot/Makefile.depend | 2 - usr.sbin/ckdist/Makefile.depend | 2 - usr.sbin/clear_locks/Makefile.depend | 2 - usr.sbin/config/Makefile.depend | 2 - usr.sbin/cpucontrol/Makefile.depend | 2 - usr.sbin/crashinfo/Makefile.depend | 2 - usr.sbin/cron/cron/Makefile.depend | 2 - usr.sbin/cron/crontab/Makefile.depend | 2 - usr.sbin/cron/lib/Makefile.depend | 2 - usr.sbin/crunch/crunchgen/Makefile.depend | 2 - usr.sbin/crunch/crunchide/Makefile.depend | 2 - usr.sbin/ctladm/Makefile.depend | 2 - usr.sbin/ctm/ctm/Makefile.depend | 2 - usr.sbin/ctm/ctm_dequeue/Makefile.depend | 2 - usr.sbin/ctm/ctm_rmail/Makefile.depend | 2 - usr.sbin/ctm/ctm_smail/Makefile.depend | 2 - usr.sbin/daemon/Makefile.depend | 2 - usr.sbin/dconschat/Makefile.depend | 2 - usr.sbin/devinfo/Makefile.depend | 2 - usr.sbin/digictl/Makefile.depend | 2 - usr.sbin/diskinfo/Makefile.depend | 2 - usr.sbin/dumpcis/Makefile.depend | 2 - usr.sbin/editmap/Makefile.depend | 2 - usr.sbin/edquota/Makefile.depend | 2 - usr.sbin/etcupdate/Makefile.depend | 2 - usr.sbin/extattr/Makefile.depend | 2 - usr.sbin/extattrctl/Makefile.depend | 2 - usr.sbin/fdcontrol/Makefile.depend | 2 - usr.sbin/fdformat/Makefile.depend | 2 - usr.sbin/fdread/Makefile.depend | 2 - usr.sbin/fdwrite/Makefile.depend | 2 - .../fifolog/fifolog_create/Makefile.depend | 2 - .../fifolog/fifolog_reader/Makefile.depend | 2 - .../fifolog/fifolog_writer/Makefile.depend | 2 - usr.sbin/fifolog/lib/Makefile.depend | 2 - usr.sbin/flowctl/Makefile.depend | 2 - usr.sbin/freebsd-update/Makefile.depend | 2 - usr.sbin/fwcontrol/Makefile.depend | 2 - usr.sbin/getfmac/Makefile.depend | 2 - usr.sbin/getpmac/Makefile.depend | 2 - usr.sbin/gpioctl/Makefile.depend | 2 - usr.sbin/gssd/Makefile.depend | 2 - usr.sbin/gstat/Makefile.depend | 2 - usr.sbin/i2c/Makefile.depend | 2 - usr.sbin/ifmcstat/Makefile.depend | 2 - usr.sbin/inetd/Makefile.depend | 2 - usr.sbin/iostat/Makefile.depend | 2 - usr.sbin/ip6addrctl/Makefile.depend | 2 - usr.sbin/ipfwpcap/Makefile.depend | 2 - usr.sbin/jail/Makefile.depend | 2 - usr.sbin/jexec/Makefile.depend | 2 - usr.sbin/jls/Makefile.depend | 2 - usr.sbin/kbdcontrol/Makefile.depend | 2 - usr.sbin/kbdmap/Makefile.depend | 2 - usr.sbin/keyserv/Makefile.depend | 2 - usr.sbin/kgmon/Makefile.depend | 2 - usr.sbin/kldxref/Makefile.depend | 2 - usr.sbin/lastlogin/Makefile.depend | 2 - usr.sbin/lmcconfig/Makefile.depend | 2 - usr.sbin/lpr/chkprintcap/Makefile.depend | 2 - usr.sbin/lpr/common_source/Makefile.depend | 2 - .../lpr/filters.ru/koi2855/Makefile.depend | 2 - .../lpr/filters.ru/koi2alt/Makefile.depend | 2 - usr.sbin/lpr/filters/Makefile.depend | 2 - usr.sbin/lpr/lp/Makefile.depend | 2 - usr.sbin/lpr/lpc/Makefile.depend | 2 - usr.sbin/lpr/lpd/Makefile.depend | 2 - usr.sbin/lpr/lpq/Makefile.depend | 2 - usr.sbin/lpr/lpr/Makefile.depend | 2 - usr.sbin/lpr/lprm/Makefile.depend | 2 - usr.sbin/lpr/lptest/Makefile.depend | 2 - usr.sbin/lpr/pac/Makefile.depend | 2 - usr.sbin/lptcontrol/Makefile.depend | 2 - usr.sbin/mailstats/Makefile.depend | 2 - usr.sbin/mailwrapper/Makefile.depend | 2 - usr.sbin/makefs/Makefile.depend | 2 - usr.sbin/makemap/Makefile.depend | 2 - usr.sbin/manctl/Makefile.depend | 2 - usr.sbin/memcontrol/Makefile.depend | 2 - usr.sbin/mergemaster/Makefile.depend | 2 - usr.sbin/mfiutil/Makefile.depend | 2 - usr.sbin/mixer/Makefile.depend | 2 - usr.sbin/mld6query/Makefile.depend | 2 - usr.sbin/mlxcontrol/Makefile.depend | 2 - usr.sbin/mountd/Makefile.depend | 2 - usr.sbin/moused/Makefile.depend | 2 - usr.sbin/mptable/Makefile.depend | 2 - usr.sbin/mptutil/Makefile.depend | 2 - usr.sbin/mtest/Makefile.depend | 2 - usr.sbin/mtree/Makefile.depend | 2 - usr.sbin/ndiscvt/Makefile.depend | 2 - usr.sbin/ndp/Makefile.depend | 2 - usr.sbin/newsyslog/Makefile.depend | 2 - usr.sbin/nfscbd/Makefile.depend | 2 - usr.sbin/nfsd/Makefile.depend | 2 - usr.sbin/nfsdumpstate/Makefile.depend | 2 - usr.sbin/nfsrevoke/Makefile.depend | 2 - usr.sbin/nfsuserd/Makefile.depend | 2 - usr.sbin/ngctl/Makefile.depend | 2 - usr.sbin/nghook/Makefile.depend | 2 - usr.sbin/nologin/Makefile.depend | 2 - usr.sbin/nscd/Makefile.depend | 2 - usr.sbin/ntp/doc/Makefile.depend | 2 - usr.sbin/ntp/libntp/Makefile.depend | 2 - usr.sbin/ntp/libntpevent/Makefile.depend | 2 - usr.sbin/ntp/libopts/Makefile.depend | 2 - usr.sbin/ntp/libparse/Makefile.depend | 2 - usr.sbin/ntp/ntp-keygen/Makefile.depend | 2 - usr.sbin/ntp/ntpd/Makefile.depend | 2 - usr.sbin/ntp/ntpdate/Makefile.depend | 2 - usr.sbin/ntp/ntpdc/Makefile.depend | 2 - usr.sbin/ntp/ntpq/Makefile.depend | 2 - usr.sbin/ntp/ntptime/Makefile.depend | 2 - usr.sbin/ntp/sntp/Makefile.depend | 2 - .../backend-partmanager/Makefile.depend | 2 - .../backend-query/Makefile.depend | 2 - .../pc-sysinstall/backend/Makefile.depend | 2 - usr.sbin/pc-sysinstall/conf/Makefile.depend | 2 - usr.sbin/pc-sysinstall/doc/Makefile.depend | 2 - .../pc-sysinstall/examples/Makefile.depend | 2 - .../pc-sysinstall/Makefile.depend | 2 - usr.sbin/pciconf/Makefile.depend | 2 - usr.sbin/periodic/Makefile.depend | 2 - usr.sbin/pkg/Makefile.depend | 2 - usr.sbin/pmcannotate/Makefile.depend | 2 - usr.sbin/pmccontrol/Makefile.depend | 2 - usr.sbin/pmcstat/Makefile.depend | 2 - usr.sbin/portsnap/make_index/Makefile.depend | 2 - usr.sbin/portsnap/phttpget/Makefile.depend | 2 - usr.sbin/portsnap/portsnap/Makefile.depend | 2 - usr.sbin/powerd/Makefile.depend | 2 - usr.sbin/ppp/Makefile.depend | 2 - usr.sbin/pppctl/Makefile.depend | 2 - usr.sbin/praliases/Makefile.depend | 2 - usr.sbin/praudit/Makefile.depend | 2 - usr.sbin/procctl/Makefile.depend | 2 - usr.sbin/pstat/Makefile.depend | 2 - usr.sbin/pw/Makefile.depend | 2 - usr.sbin/pwd_mkdb/Makefile.depend | 2 - usr.sbin/quot/Makefile.depend | 2 - usr.sbin/quotaon/Makefile.depend | 2 - usr.sbin/rarpd/Makefile.depend | 2 - usr.sbin/repquota/Makefile.depend | 2 - usr.sbin/rip6query/Makefile.depend | 2 - usr.sbin/rmt/Makefile.depend | 2 - usr.sbin/route6d/Makefile.depend | 2 - usr.sbin/rpc.lockd/Makefile.depend | 2 - usr.sbin/rpc.statd/Makefile.depend | 2 - usr.sbin/rpc.umntall/Makefile.depend | 2 - usr.sbin/rpc.yppasswdd/Makefile.depend | 2 - usr.sbin/rpc.ypupdated/Makefile.depend | 2 - usr.sbin/rpc.ypxfrd/Makefile.depend | 2 - usr.sbin/rpcbind/Makefile.depend | 2 - usr.sbin/rrenumd/Makefile.depend | 2 - usr.sbin/rtadvctl/Makefile.depend | 2 - usr.sbin/rtadvd/Makefile.depend | 2 - usr.sbin/rtprio/Makefile.depend | 2 - usr.sbin/rtsold/Makefile.depend | 2 - usr.sbin/rwhod/Makefile.depend | 2 - usr.sbin/sa/Makefile.depend | 2 - usr.sbin/sendmail/Makefile.depend | 2 - usr.sbin/service/Makefile.depend | 2 - usr.sbin/services_mkdb/Makefile.depend | 2 - usr.sbin/setfib/Makefile.depend | 2 - usr.sbin/setfmac/Makefile.depend | 2 - usr.sbin/setpmac/Makefile.depend | 2 - usr.sbin/sicontrol/Makefile.depend | 2 - usr.sbin/smbmsg/Makefile.depend | 2 - usr.sbin/snapinfo/Makefile.depend | 2 - usr.sbin/spkrtest/Makefile.depend | 2 - usr.sbin/spray/Makefile.depend | 2 - usr.sbin/syslogd/Makefile.depend | 2 - usr.sbin/tcpdchk/Makefile.depend | 2 - usr.sbin/tcpdmatch/Makefile.depend | 2 - usr.sbin/tcpdrop/Makefile.depend | 2 - usr.sbin/tcpdump/tcpdump/Makefile.depend | 2 - usr.sbin/timed/timed/Makefile.depend | 2 - usr.sbin/timed/timedc/Makefile.depend | 2 - usr.sbin/traceroute/Makefile.depend | 2 - usr.sbin/traceroute6/Makefile.depend | 2 - usr.sbin/trpt/Makefile.depend | 2 - usr.sbin/tzsetup/Makefile.depend | 2 - usr.sbin/uathload/Makefile.depend | 2 - usr.sbin/ugidfw/Makefile.depend | 2 - usr.sbin/uhsoctl/Makefile.depend | 2 - usr.sbin/usbconfig/Makefile.depend | 2 - usr.sbin/usbdump/Makefile.depend | 2 - usr.sbin/utx/Makefile.depend | 2 - usr.sbin/vidcontrol/Makefile.depend | 2 - usr.sbin/vipw/Makefile.depend | 2 - usr.sbin/wake/Makefile.depend | 2 - usr.sbin/watch/Makefile.depend | 2 - usr.sbin/watchdogd/Makefile.depend | 2 - usr.sbin/wlandebug/Makefile.depend | 2 - usr.sbin/wpa/hostapd/Makefile.depend | 2 - usr.sbin/wpa/hostapd_cli/Makefile.depend | 2 - usr.sbin/wpa/ndis_events/Makefile.depend | 2 - usr.sbin/wpa/wpa_cli/Makefile.depend | 2 - usr.sbin/wpa/wpa_passphrase/Makefile.depend | 2 - usr.sbin/wpa/wpa_supplicant/Makefile.depend | 2 - usr.sbin/yp_mkdb/Makefile.depend | 2 - usr.sbin/ypbind/Makefile.depend | 2 - usr.sbin/yppoll/Makefile.depend | 2 - usr.sbin/yppush/Makefile.depend | 2 - usr.sbin/ypserv/Makefile.depend | 2 - usr.sbin/ypset/Makefile.depend | 2 - usr.sbin/zic/zdump/Makefile.depend | 2 - usr.sbin/zic/zic/Makefile.depend | 2 - usr.sbin/zzz/Makefile.depend | 2 - 1142 files changed, 785 insertions(+), 2476 deletions(-) diff --git a/bin/cat/Makefile.depend b/bin/cat/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/cat/Makefile.depend +++ b/bin/cat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/chflags/Makefile.depend b/bin/chflags/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/chflags/Makefile.depend +++ b/bin/chflags/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/chio/Makefile.depend b/bin/chio/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/chio/Makefile.depend +++ b/bin/chio/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/chmod/Makefile.depend b/bin/chmod/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/chmod/Makefile.depend +++ b/bin/chmod/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/cp/Makefile.depend b/bin/cp/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/cp/Makefile.depend +++ b/bin/cp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/csh/Makefile.depend b/bin/csh/Makefile.depend index d86382c7ecd0..0ab05cec4215 100644 --- a/bin/csh/Makefile.depend +++ b/bin/csh/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/bin/date/Makefile.depend b/bin/date/Makefile.depend index 4a9f7867ec6d..725077b09bfc 100644 --- a/bin/date/Makefile.depend +++ b/bin/date/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/dd/Makefile.depend b/bin/dd/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/dd/Makefile.depend +++ b/bin/dd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/df/Makefile.depend b/bin/df/Makefile.depend index 92ffb0f8eb8c..04ae687c061b 100644 --- a/bin/df/Makefile.depend +++ b/bin/df/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/domainname/Makefile.depend b/bin/domainname/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/domainname/Makefile.depend +++ b/bin/domainname/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/echo/Makefile.depend b/bin/echo/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/echo/Makefile.depend +++ b/bin/echo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/ed/Makefile.depend b/bin/ed/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/bin/ed/Makefile.depend +++ b/bin/ed/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/expr/Makefile.depend b/bin/expr/Makefile.depend index 1c402a90a785..ef4e1b5f3a35 100644 --- a/bin/expr/Makefile.depend +++ b/bin/expr/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ @@ -10,6 +8,7 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ + usr.bin/yacc.host \ .include diff --git a/bin/freebsd-version/Makefile.depend b/bin/freebsd-version/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/bin/freebsd-version/Makefile.depend +++ b/bin/freebsd-version/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/bin/getfacl/Makefile.depend b/bin/getfacl/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/getfacl/Makefile.depend +++ b/bin/getfacl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/hostname/Makefile.depend b/bin/hostname/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/hostname/Makefile.depend +++ b/bin/hostname/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/kenv/Makefile.depend b/bin/kenv/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/kenv/Makefile.depend +++ b/bin/kenv/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/kill/Makefile.depend b/bin/kill/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/kill/Makefile.depend +++ b/bin/kill/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/ln/Makefile.depend b/bin/ln/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/ln/Makefile.depend +++ b/bin/ln/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/ls/Makefile.depend b/bin/ls/Makefile.depend index 549c3a266093..d735a0110c17 100644 --- a/bin/ls/Makefile.depend +++ b/bin/ls/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/mkdir/Makefile.depend b/bin/mkdir/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/mkdir/Makefile.depend +++ b/bin/mkdir/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/mv/Makefile.depend b/bin/mv/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/mv/Makefile.depend +++ b/bin/mv/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/pax/Makefile.depend b/bin/pax/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/pax/Makefile.depend +++ b/bin/pax/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/pkill/Makefile.depend b/bin/pkill/Makefile.depend index 384b6754a9ab..7a06b0fecff9 100644 --- a/bin/pkill/Makefile.depend +++ b/bin/pkill/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/ps/Makefile.depend b/bin/ps/Makefile.depend index b98c059d8b87..a6a55bad1cf0 100644 --- a/bin/ps/Makefile.depend +++ b/bin/ps/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/pwait/Makefile.depend b/bin/pwait/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/pwait/Makefile.depend +++ b/bin/pwait/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/pwd/Makefile.depend b/bin/pwd/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/pwd/Makefile.depend +++ b/bin/pwd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/rcp/Makefile.depend b/bin/rcp/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/rcp/Makefile.depend +++ b/bin/rcp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/realpath/Makefile.depend b/bin/realpath/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/bin/realpath/Makefile.depend +++ b/bin/realpath/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/rm/Makefile.depend b/bin/rm/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/rm/Makefile.depend +++ b/bin/rm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/rmail/Makefile.depend b/bin/rmail/Makefile.depend index 38c9111f896a..b0f36f63f108 100644 --- a/bin/rmail/Makefile.depend +++ b/bin/rmail/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/rmdir/Makefile.depend b/bin/rmdir/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/rmdir/Makefile.depend +++ b/bin/rmdir/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/setfacl/Makefile.depend b/bin/setfacl/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/setfacl/Makefile.depend +++ b/bin/setfacl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/sh/Makefile.depend b/bin/sh/Makefile.depend index b2615f6310e4..9e17d64c61e2 100644 --- a/bin/sh/Makefile.depend +++ b/bin/sh/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/bin/sleep/Makefile.depend b/bin/sleep/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/sleep/Makefile.depend +++ b/bin/sleep/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/stty/Makefile.depend b/bin/stty/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/stty/Makefile.depend +++ b/bin/stty/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/sync/Makefile.depend b/bin/sync/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/bin/sync/Makefile.depend +++ b/bin/sync/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/test/Makefile.depend b/bin/test/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/bin/test/Makefile.depend +++ b/bin/test/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/bin/uuidgen/Makefile.depend b/bin/uuidgen/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/bin/uuidgen/Makefile.depend +++ b/bin/uuidgen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/cddl/lib/drti/Makefile.depend b/cddl/lib/drti/Makefile.depend index 22badd395eef..2c564fe515ff 100644 --- a/cddl/lib/drti/Makefile.depend +++ b/cddl/lib/drti/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/cddl/lib/libavl/Makefile.depend b/cddl/lib/libavl/Makefile.depend index 7cedd5f867c7..c9d74dc112b4 100644 --- a/cddl/lib/libavl/Makefile.depend +++ b/cddl/lib/libavl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/cddl/lib/libctf/Makefile.depend b/cddl/lib/libctf/Makefile.depend index 8c281dd942e7..b1a0bae870af 100644 --- a/cddl/lib/libctf/Makefile.depend +++ b/cddl/lib/libctf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/cddl/lib/libdtrace/Makefile.depend b/cddl/lib/libdtrace/Makefile.depend index 08a9c5d99d0c..411b46981ae5 100644 --- a/cddl/lib/libdtrace/Makefile.depend +++ b/cddl/lib/libdtrace/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libctf \ gnu/lib/csu \ diff --git a/cddl/lib/libnvpair/Makefile.depend b/cddl/lib/libnvpair/Makefile.depend index bee153c2a7af..a83fb20541b6 100644 --- a/cddl/lib/libnvpair/Makefile.depend +++ b/cddl/lib/libnvpair/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/cddl/lib/libumem/Makefile.depend b/cddl/lib/libumem/Makefile.depend index 7cedd5f867c7..c9d74dc112b4 100644 --- a/cddl/lib/libumem/Makefile.depend +++ b/cddl/lib/libumem/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/cddl/lib/libuutil/Makefile.depend b/cddl/lib/libuutil/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/cddl/lib/libuutil/Makefile.depend +++ b/cddl/lib/libuutil/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/cddl/lib/libzfs/Makefile.depend b/cddl/lib/libzfs/Makefile.depend index 11f311469919..3380eff74574 100644 --- a/cddl/lib/libzfs/Makefile.depend +++ b/cddl/lib/libzfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/cddl/lib/libzfs_core/Makefile.depend b/cddl/lib/libzfs_core/Makefile.depend index cce84af56921..3abceb80152c 100644 --- a/cddl/lib/libzfs_core/Makefile.depend +++ b/cddl/lib/libzfs_core/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libnvpair \ gnu/lib/csu \ diff --git a/cddl/lib/libzpool/Makefile.depend b/cddl/lib/libzpool/Makefile.depend index a08600061584..667f0fddd874 100644 --- a/cddl/lib/libzpool/Makefile.depend +++ b/cddl/lib/libzpool/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/cddl/sbin/zfs/Makefile.depend b/cddl/sbin/zfs/Makefile.depend index 33d8e6d35a66..2648cea26662 100644 --- a/cddl/sbin/zfs/Makefile.depend +++ b/cddl/sbin/zfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/cddl/sbin/zpool/Makefile.depend b/cddl/sbin/zpool/Makefile.depend index 5486a80db25b..80ee84f4ddda 100644 --- a/cddl/sbin/zpool/Makefile.depend +++ b/cddl/sbin/zpool/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/cddl/usr.bin/sgsmsg/Makefile.depend b/cddl/usr.bin/sgsmsg/Makefile.depend index 56f580e457d3..7e64306f69cf 100644 --- a/cddl/usr.bin/sgsmsg/Makefile.depend +++ b/cddl/usr.bin/sgsmsg/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/cddl/usr.bin/zinject/Makefile.depend b/cddl/usr.bin/zinject/Makefile.depend index 2a76b0ebb740..1e6ee392c3f7 100644 --- a/cddl/usr.bin/zinject/Makefile.depend +++ b/cddl/usr.bin/zinject/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/cddl/usr.bin/zstreamdump/Makefile.depend b/cddl/usr.bin/zstreamdump/Makefile.depend index b44a5fda14b7..7f2f2a4bd21f 100644 --- a/cddl/usr.bin/zstreamdump/Makefile.depend +++ b/cddl/usr.bin/zstreamdump/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/cddl/usr.bin/ztest/Makefile.depend b/cddl/usr.bin/ztest/Makefile.depend index 2a76b0ebb740..1e6ee392c3f7 100644 --- a/cddl/usr.bin/ztest/Makefile.depend +++ b/cddl/usr.bin/ztest/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/cddl/usr.sbin/lockstat/Makefile.depend b/cddl/usr.sbin/lockstat/Makefile.depend index 77eeee84f64a..08502fb11e0b 100644 --- a/cddl/usr.sbin/lockstat/Makefile.depend +++ b/cddl/usr.sbin/lockstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libctf \ cddl/lib/libdtrace \ diff --git a/cddl/usr.sbin/zdb/Makefile.depend b/cddl/usr.sbin/zdb/Makefile.depend index 2a76b0ebb740..1e6ee392c3f7 100644 --- a/cddl/usr.sbin/zdb/Makefile.depend +++ b/cddl/usr.sbin/zdb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/cddl/usr.sbin/zhack/Makefile.depend b/cddl/usr.sbin/zhack/Makefile.depend index 2a76b0ebb740..1e6ee392c3f7 100644 --- a/cddl/usr.sbin/zhack/Makefile.depend +++ b/cddl/usr.sbin/zhack/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libavl \ cddl/lib/libnvpair \ diff --git a/games/caesar/Makefile.depend b/games/caesar/Makefile.depend index da4f56b373df..8a1da00d4f15 100644 --- a/games/caesar/Makefile.depend +++ b/games/caesar/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/games/factor/Makefile.depend b/games/factor/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/games/factor/Makefile.depend +++ b/games/factor/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/games/fortune/datfiles/Makefile.depend b/games/fortune/datfiles/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/games/fortune/datfiles/Makefile.depend +++ b/games/fortune/datfiles/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/games/fortune/fortune/Makefile.depend b/games/fortune/fortune/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/games/fortune/fortune/Makefile.depend +++ b/games/fortune/fortune/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/games/fortune/strfile/Makefile.depend b/games/fortune/strfile/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/games/fortune/strfile/Makefile.depend +++ b/games/fortune/strfile/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/games/fortune/unstr/Makefile.depend b/games/fortune/unstr/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/games/fortune/unstr/Makefile.depend +++ b/games/fortune/unstr/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/games/grdc/Makefile.depend b/games/grdc/Makefile.depend index a25f5f6a2451..3e23976fdb5c 100644 --- a/games/grdc/Makefile.depend +++ b/games/grdc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/games/morse/Makefile.depend b/games/morse/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/games/morse/Makefile.depend +++ b/games/morse/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/games/number/Makefile.depend b/games/number/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/games/number/Makefile.depend +++ b/games/number/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/games/pom/Makefile.depend b/games/pom/Makefile.depend index da4f56b373df..8a1da00d4f15 100644 --- a/games/pom/Makefile.depend +++ b/games/pom/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/games/primes/Makefile.depend b/games/primes/Makefile.depend index da4f56b373df..8a1da00d4f15 100644 --- a/games/primes/Makefile.depend +++ b/games/primes/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/games/random/Makefile.depend b/games/random/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/games/random/Makefile.depend +++ b/games/random/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/lib/csu/Makefile.depend b/gnu/lib/csu/Makefile.depend index 2c6edc6c2124..f70069b09a9b 100644 --- a/gnu/lib/csu/Makefile.depend +++ b/gnu/lib/csu/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ include \ diff --git a/gnu/lib/libdialog/Makefile.depend b/gnu/lib/libdialog/Makefile.depend index 4f075dab95e0..770632ff9254 100644 --- a/gnu/lib/libdialog/Makefile.depend +++ b/gnu/lib/libdialog/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/lib/libgcc/Makefile.depend b/gnu/lib/libgcc/Makefile.depend index bc6313842e19..ed1cc11a5c8e 100644 --- a/gnu/lib/libgcc/Makefile.depend +++ b/gnu/lib/libgcc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/lib/libgcov/Makefile.depend b/gnu/lib/libgcov/Makefile.depend index f056c6619d3c..1b14e7145a51 100644 --- a/gnu/lib/libgcov/Makefile.depend +++ b/gnu/lib/libgcov/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ include \ diff --git a/gnu/lib/libgomp/Makefile.depend b/gnu/lib/libgomp/Makefile.depend index a4ffdad7922b..7246faa8e222 100644 --- a/gnu/lib/libgomp/Makefile.depend +++ b/gnu/lib/libgomp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/lib/libreadline/readline/Makefile.depend b/gnu/lib/libreadline/readline/Makefile.depend index bc5416fdbaa1..f811f6d92456 100644 --- a/gnu/lib/libreadline/readline/Makefile.depend +++ b/gnu/lib/libreadline/readline/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/lib/libregex/Makefile.depend b/gnu/lib/libregex/Makefile.depend index aa86386d4c32..0d58ca4b3c16 100644 --- a/gnu/lib/libregex/Makefile.depend +++ b/gnu/lib/libregex/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/lib/libssp/libssp_nonshared/Makefile.depend b/gnu/lib/libssp/libssp_nonshared/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/lib/libssp/libssp_nonshared/Makefile.depend +++ b/gnu/lib/libssp/libssp_nonshared/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/lib/libstdc++/Makefile.depend b/gnu/lib/libstdc++/Makefile.depend index 7155be6f266c..b539d2d25fce 100644 --- a/gnu/lib/libstdc++/Makefile.depend +++ b/gnu/lib/libstdc++/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/lib/libsupc++/Makefile.depend b/gnu/lib/libsupc++/Makefile.depend index dcb5bb9dea54..08854471d2c8 100644 --- a/gnu/lib/libsupc++/Makefile.depend +++ b/gnu/lib/libsupc++/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/binutils/addr2line/Makefile.depend b/gnu/usr.bin/binutils/addr2line/Makefile.depend index 4ed5ef1f4a47..e4d96da85acd 100644 --- a/gnu/usr.bin/binutils/addr2line/Makefile.depend +++ b/gnu/usr.bin/binutils/addr2line/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/binutils/as/Makefile.depend b/gnu/usr.bin/binutils/as/Makefile.depend index c9c4fe5b3feb..6ea00961ea04 100644 --- a/gnu/usr.bin/binutils/as/Makefile.depend +++ b/gnu/usr.bin/binutils/as/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/usr.bin/binutils/libbfd \ diff --git a/gnu/usr.bin/binutils/doc/Makefile.depend b/gnu/usr.bin/binutils/doc/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/binutils/doc/Makefile.depend +++ b/gnu/usr.bin/binutils/doc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 b/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 index 65ee0abc784b..10cfb2b5402a 100644 --- a/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 +++ b/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/binutils/ld/Makefile.depend.host b/gnu/usr.bin/binutils/ld/Makefile.depend.host index 41a9683ec630..a59cee95ad9f 100644 --- a/gnu/usr.bin/binutils/ld/Makefile.depend.host +++ b/gnu/usr.bin/binutils/ld/Makefile.depend.host @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/usr.bin/binutils/libbfd \ gnu/usr.bin/binutils/libiberty \ diff --git a/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 b/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 index 919536e8129c..f7e42649b506 100644 --- a/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 +++ b/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/binutils/libbfd/Makefile.depend.host b/gnu/usr.bin/binutils/libbfd/Makefile.depend.host index c5f94aaf36a9..c36b8934a635 100644 --- a/gnu/usr.bin/binutils/libbfd/Makefile.depend.host +++ b/gnu/usr.bin/binutils/libbfd/Makefile.depend.host @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/binutils/libbinutils/Makefile.depend b/gnu/usr.bin/binutils/libbinutils/Makefile.depend index a3d213c603d3..3246dce3e835 100644 --- a/gnu/usr.bin/binutils/libbinutils/Makefile.depend +++ b/gnu/usr.bin/binutils/libbinutils/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/usr.bin/binutils/libbfd \ include \ diff --git a/gnu/usr.bin/binutils/libiberty/Makefile.depend b/gnu/usr.bin/binutils/libiberty/Makefile.depend index 4e6cdd82297c..ecc8fe860f5e 100644 --- a/gnu/usr.bin/binutils/libiberty/Makefile.depend +++ b/gnu/usr.bin/binutils/libiberty/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/binutils/libopcodes/Makefile.depend b/gnu/usr.bin/binutils/libopcodes/Makefile.depend index 639d45d8b9b0..15a1f9c07f7c 100644 --- a/gnu/usr.bin/binutils/libopcodes/Makefile.depend +++ b/gnu/usr.bin/binutils/libopcodes/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/binutils/nm/Makefile.depend b/gnu/usr.bin/binutils/nm/Makefile.depend index 4ed5ef1f4a47..e4d96da85acd 100644 --- a/gnu/usr.bin/binutils/nm/Makefile.depend +++ b/gnu/usr.bin/binutils/nm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/binutils/objcopy/Makefile.depend b/gnu/usr.bin/binutils/objcopy/Makefile.depend index 4ed5ef1f4a47..e4d96da85acd 100644 --- a/gnu/usr.bin/binutils/objcopy/Makefile.depend +++ b/gnu/usr.bin/binutils/objcopy/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/binutils/objdump/Makefile.depend b/gnu/usr.bin/binutils/objdump/Makefile.depend index ca80e98ef859..1a59231b4ac3 100644 --- a/gnu/usr.bin/binutils/objdump/Makefile.depend +++ b/gnu/usr.bin/binutils/objdump/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/binutils/readelf/Makefile.depend b/gnu/usr.bin/binutils/readelf/Makefile.depend index 4ed5ef1f4a47..e4d96da85acd 100644 --- a/gnu/usr.bin/binutils/readelf/Makefile.depend +++ b/gnu/usr.bin/binutils/readelf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/binutils/size/Makefile.depend b/gnu/usr.bin/binutils/size/Makefile.depend index 4ed5ef1f4a47..e4d96da85acd 100644 --- a/gnu/usr.bin/binutils/size/Makefile.depend +++ b/gnu/usr.bin/binutils/size/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/binutils/strings/Makefile.depend b/gnu/usr.bin/binutils/strings/Makefile.depend index 4ed5ef1f4a47..e4d96da85acd 100644 --- a/gnu/usr.bin/binutils/strings/Makefile.depend +++ b/gnu/usr.bin/binutils/strings/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/binutils/strip/Makefile.depend b/gnu/usr.bin/binutils/strip/Makefile.depend index 4ed5ef1f4a47..e4d96da85acd 100644 --- a/gnu/usr.bin/binutils/strip/Makefile.depend +++ b/gnu/usr.bin/binutils/strip/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/dialog/Makefile.depend b/gnu/usr.bin/dialog/Makefile.depend index d9cc8893dc80..bf205a7a3f59 100644 --- a/gnu/usr.bin/dialog/Makefile.depend +++ b/gnu/usr.bin/dialog/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libdialog \ diff --git a/gnu/usr.bin/diff3/Makefile.depend b/gnu/usr.bin/diff3/Makefile.depend index 71c3d5e9b0de..9415fc6f37f5 100644 --- a/gnu/usr.bin/diff3/Makefile.depend +++ b/gnu/usr.bin/diff3/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/gdb/gdb/Makefile.depend b/gnu/usr.bin/gdb/gdb/Makefile.depend index 595475a2f748..645797f7f7c6 100644 --- a/gnu/usr.bin/gdb/gdb/Makefile.depend +++ b/gnu/usr.bin/gdb/gdb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/gdb/gdbserver/Makefile.depend b/gnu/usr.bin/gdb/gdbserver/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/gnu/usr.bin/gdb/gdbserver/Makefile.depend +++ b/gnu/usr.bin/gdb/gdbserver/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/gdb/gdbtui/Makefile.depend b/gnu/usr.bin/gdb/gdbtui/Makefile.depend index 7ed5830a984b..a6eaebdf3b32 100644 --- a/gnu/usr.bin/gdb/gdbtui/Makefile.depend +++ b/gnu/usr.bin/gdb/gdbtui/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 b/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 index 9a4e4059b461..a5830c8c822e 100644 --- a/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 +++ b/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 b/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 index f8f080266a05..9380a2250436 100644 --- a/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 +++ b/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/libreadline/readline \ include \ diff --git a/gnu/usr.bin/groff/contrib/mm/Makefile.depend b/gnu/usr.bin/groff/contrib/mm/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/contrib/mm/Makefile.depend +++ b/gnu/usr.bin/groff/contrib/mm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devX100-12/Makefile.depend b/gnu/usr.bin/groff/font/devX100-12/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devX100-12/Makefile.depend +++ b/gnu/usr.bin/groff/font/devX100-12/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devX100/Makefile.depend b/gnu/usr.bin/groff/font/devX100/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devX100/Makefile.depend +++ b/gnu/usr.bin/groff/font/devX100/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devX75-12/Makefile.depend b/gnu/usr.bin/groff/font/devX75-12/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devX75-12/Makefile.depend +++ b/gnu/usr.bin/groff/font/devX75-12/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devX75/Makefile.depend b/gnu/usr.bin/groff/font/devX75/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devX75/Makefile.depend +++ b/gnu/usr.bin/groff/font/devX75/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devascii/Makefile.depend b/gnu/usr.bin/groff/font/devascii/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devascii/Makefile.depend +++ b/gnu/usr.bin/groff/font/devascii/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devcp1047/Makefile.depend b/gnu/usr.bin/groff/font/devcp1047/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devcp1047/Makefile.depend +++ b/gnu/usr.bin/groff/font/devcp1047/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devdvi/Makefile.depend b/gnu/usr.bin/groff/font/devdvi/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devdvi/Makefile.depend +++ b/gnu/usr.bin/groff/font/devdvi/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devhtml/Makefile.depend b/gnu/usr.bin/groff/font/devhtml/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devhtml/Makefile.depend +++ b/gnu/usr.bin/groff/font/devhtml/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend b/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend +++ b/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devlatin1/Makefile.depend b/gnu/usr.bin/groff/font/devlatin1/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devlatin1/Makefile.depend +++ b/gnu/usr.bin/groff/font/devlatin1/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devlbp/Makefile.depend b/gnu/usr.bin/groff/font/devlbp/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devlbp/Makefile.depend +++ b/gnu/usr.bin/groff/font/devlbp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devlj4/Makefile.depend b/gnu/usr.bin/groff/font/devlj4/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devlj4/Makefile.depend +++ b/gnu/usr.bin/groff/font/devlj4/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devps/Makefile.depend b/gnu/usr.bin/groff/font/devps/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devps/Makefile.depend +++ b/gnu/usr.bin/groff/font/devps/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/font/devutf8/Makefile.depend b/gnu/usr.bin/groff/font/devutf8/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/font/devutf8/Makefile.depend +++ b/gnu/usr.bin/groff/font/devutf8/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/man/Makefile.depend b/gnu/usr.bin/groff/man/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/man/Makefile.depend +++ b/gnu/usr.bin/groff/man/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend index e3872b6cf465..9da4713f590e 100644 --- a/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend index b5a6296105ba..5f37b45f0d43 100644 --- a/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend index e3872b6cf465..9da4713f590e 100644 --- a/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend index e3872b6cf465..9da4713f590e 100644 --- a/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/devices/grops/Makefile.depend b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend index e3872b6cf465..9da4713f590e 100644 --- a/gnu/usr.bin/groff/src/devices/grops/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grops/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend index e3872b6cf465..9da4713f590e 100644 --- a/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend +++ b/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend b/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend index 639d45d8b9b0..15a1f9c07f7c 100644 --- a/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend b/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend index 4e6cdd82297c..ecc8fe860f5e 100644 --- a/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend +++ b/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend b/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend index d0592e7410d5..97dcd6f4e2ae 100644 --- a/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend +++ b/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ include \ diff --git a/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend index 89c4028da522..cba339af6b91 100644 --- a/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend index 0c568068d28e..319a92f4aef3 100644 --- a/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/preproc/html/Makefile.depend b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend index df023f12a0d1..e4a162b2e44d 100644 --- a/gnu/usr.bin/groff/src/preproc/html/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/html/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend index bb28db84d636..270f0018069e 100644 --- a/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend index 880c2e993dae..a5f47cf55b08 100644 --- a/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend index 0c568068d28e..319a92f4aef3 100644 --- a/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend +++ b/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/roff/groff/Makefile.depend b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend index 0c568068d28e..319a92f4aef3 100644 --- a/gnu/usr.bin/groff/src/roff/groff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/groff/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/roff/grog/Makefile.depend b/gnu/usr.bin/groff/src/roff/grog/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/src/roff/grog/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/grog/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend b/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend b/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/src/roff/troff/Makefile.depend b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend index 00efcdbf6898..258b3e846e1e 100644 --- a/gnu/usr.bin/groff/src/roff/troff/Makefile.depend +++ b/gnu/usr.bin/groff/src/roff/troff/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend index 0c568068d28e..319a92f4aef3 100644 --- a/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend index 0c568068d28e..319a92f4aef3 100644 --- a/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend index d9e7bc19bd5a..90c204ee94f3 100644 --- a/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend index d9e7bc19bd5a..90c204ee94f3 100644 --- a/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend index d9e7bc19bd5a..90c204ee94f3 100644 --- a/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend index 21bca0b44018..ed1ce1e005fa 100644 --- a/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend index 0c568068d28e..319a92f4aef3 100644 --- a/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend +++ b/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/gnu/usr.bin/groff/tmac/Makefile.depend b/gnu/usr.bin/groff/tmac/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/groff/tmac/Makefile.depend +++ b/gnu/usr.bin/groff/tmac/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/rcs/ci/Makefile.depend b/gnu/usr.bin/rcs/ci/Makefile.depend index 12b27259d9a0..7549f529c059 100644 --- a/gnu/usr.bin/rcs/ci/Makefile.depend +++ b/gnu/usr.bin/rcs/ci/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/rcs/co/Makefile.depend b/gnu/usr.bin/rcs/co/Makefile.depend index 12b27259d9a0..7549f529c059 100644 --- a/gnu/usr.bin/rcs/co/Makefile.depend +++ b/gnu/usr.bin/rcs/co/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/rcs/ident/Makefile.depend b/gnu/usr.bin/rcs/ident/Makefile.depend index 12b27259d9a0..7549f529c059 100644 --- a/gnu/usr.bin/rcs/ident/Makefile.depend +++ b/gnu/usr.bin/rcs/ident/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/rcs/lib/Makefile.depend b/gnu/usr.bin/rcs/lib/Makefile.depend index 639d45d8b9b0..15a1f9c07f7c 100644 --- a/gnu/usr.bin/rcs/lib/Makefile.depend +++ b/gnu/usr.bin/rcs/lib/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/gnu/usr.bin/rcs/merge/Makefile.depend b/gnu/usr.bin/rcs/merge/Makefile.depend index 12b27259d9a0..7549f529c059 100644 --- a/gnu/usr.bin/rcs/merge/Makefile.depend +++ b/gnu/usr.bin/rcs/merge/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/rcs/rcs/Makefile.depend b/gnu/usr.bin/rcs/rcs/Makefile.depend index 12b27259d9a0..7549f529c059 100644 --- a/gnu/usr.bin/rcs/rcs/Makefile.depend +++ b/gnu/usr.bin/rcs/rcs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/rcs/rcsclean/Makefile.depend b/gnu/usr.bin/rcs/rcsclean/Makefile.depend index 12b27259d9a0..7549f529c059 100644 --- a/gnu/usr.bin/rcs/rcsclean/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsclean/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/rcs/rcsdiff/Makefile.depend b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend index 12b27259d9a0..7549f529c059 100644 --- a/gnu/usr.bin/rcs/rcsdiff/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsdiff/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend b/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/gnu/usr.bin/rcs/rcsmerge/Makefile.depend b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend index 12b27259d9a0..7549f529c059 100644 --- a/gnu/usr.bin/rcs/rcsmerge/Makefile.depend +++ b/gnu/usr.bin/rcs/rcsmerge/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/rcs/rlog/Makefile.depend b/gnu/usr.bin/rcs/rlog/Makefile.depend index 12b27259d9a0..7549f529c059 100644 --- a/gnu/usr.bin/rcs/rlog/Makefile.depend +++ b/gnu/usr.bin/rcs/rlog/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/gnu/usr.bin/sdiff/Makefile.depend b/gnu/usr.bin/sdiff/Makefile.depend index 243191967bf4..e7f6e7390bef 100644 --- a/gnu/usr.bin/sdiff/Makefile.depend +++ b/gnu/usr.bin/sdiff/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/include/Makefile.depend b/include/Makefile.depend index 482a633b8798..5e924d50a322 100644 --- a/include/Makefile.depend +++ b/include/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ usr.bin/xinstall.host \ diff --git a/include/arpa/Makefile.depend b/include/arpa/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/include/arpa/Makefile.depend +++ b/include/arpa/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/include/gssapi/Makefile.depend b/include/gssapi/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/include/gssapi/Makefile.depend +++ b/include/gssapi/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/include/protocols/Makefile.depend b/include/protocols/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/include/protocols/Makefile.depend +++ b/include/protocols/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/include/rpc/Makefile.depend b/include/rpc/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/include/rpc/Makefile.depend +++ b/include/rpc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/include/rpcsvc/Makefile.depend b/include/rpcsvc/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/include/rpcsvc/Makefile.depend +++ b/include/rpcsvc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/include/xlocale/Makefile.depend b/include/xlocale/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/include/xlocale/Makefile.depend +++ b/include/xlocale/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/kerberos5/lib/libasn1/Makefile.depend b/kerberos5/lib/libasn1/Makefile.depend index ef5a7ac2bb05..273c07226a1b 100644 --- a/kerberos5/lib/libasn1/Makefile.depend +++ b/kerberos5/lib/libasn1/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libgssapi_krb5/Makefile.depend b/kerberos5/lib/libgssapi_krb5/Makefile.depend index cddcc4485992..b58366df0b78 100644 --- a/kerberos5/lib/libgssapi_krb5/Makefile.depend +++ b/kerberos5/lib/libgssapi_krb5/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libgssapi_ntlm/Makefile.depend b/kerberos5/lib/libgssapi_ntlm/Makefile.depend index 6faf414b4983..f450d4804e0b 100644 --- a/kerberos5/lib/libgssapi_ntlm/Makefile.depend +++ b/kerberos5/lib/libgssapi_ntlm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libgssapi_spnego/Makefile.depend b/kerberos5/lib/libgssapi_spnego/Makefile.depend index 6fd1d4bc7afc..cbf227fed65b 100644 --- a/kerberos5/lib/libgssapi_spnego/Makefile.depend +++ b/kerberos5/lib/libgssapi_spnego/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libhdb/Makefile.depend b/kerberos5/lib/libhdb/Makefile.depend index 47b2075cff2f..293a6799dbd7 100644 --- a/kerberos5/lib/libhdb/Makefile.depend +++ b/kerberos5/lib/libhdb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libheimbase/Makefile.depend b/kerberos5/lib/libheimbase/Makefile.depend index 37acbe0cd621..fd5a53596779 100644 --- a/kerberos5/lib/libheimbase/Makefile.depend +++ b/kerberos5/lib/libheimbase/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libheimipcc/Makefile.depend b/kerberos5/lib/libheimipcc/Makefile.depend index 2e6c752672cd..51d46e50a615 100644 --- a/kerberos5/lib/libheimipcc/Makefile.depend +++ b/kerberos5/lib/libheimipcc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libheimipcs/Makefile.depend b/kerberos5/lib/libheimipcs/Makefile.depend index b025a8a77f0a..b9fdb01f411e 100644 --- a/kerberos5/lib/libheimipcs/Makefile.depend +++ b/kerberos5/lib/libheimipcs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libheimntlm/Makefile.depend b/kerberos5/lib/libheimntlm/Makefile.depend index ccf7070eb77b..15c8afd85df3 100644 --- a/kerberos5/lib/libheimntlm/Makefile.depend +++ b/kerberos5/lib/libheimntlm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libhx509/Makefile.depend b/kerberos5/lib/libhx509/Makefile.depend index d243220a81db..c71f667ab7d9 100644 --- a/kerberos5/lib/libhx509/Makefile.depend +++ b/kerberos5/lib/libhx509/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libkadm5clnt/Makefile.depend b/kerberos5/lib/libkadm5clnt/Makefile.depend index cf30e8fd4fe5..750b74776a5a 100644 --- a/kerberos5/lib/libkadm5clnt/Makefile.depend +++ b/kerberos5/lib/libkadm5clnt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libkadm5srv/Makefile.depend b/kerberos5/lib/libkadm5srv/Makefile.depend index 2a559eb51517..bb2204b2e717 100644 --- a/kerberos5/lib/libkadm5srv/Makefile.depend +++ b/kerberos5/lib/libkadm5srv/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libkafs5/Makefile.depend b/kerberos5/lib/libkafs5/Makefile.depend index a2e5f8c7b076..c8d2c66e8e28 100644 --- a/kerberos5/lib/libkafs5/Makefile.depend +++ b/kerberos5/lib/libkafs5/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libkdc/Makefile.depend b/kerberos5/lib/libkdc/Makefile.depend index 391591d58b83..30f2e46ce03e 100644 --- a/kerberos5/lib/libkdc/Makefile.depend +++ b/kerberos5/lib/libkdc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libkrb5/Makefile.depend b/kerberos5/lib/libkrb5/Makefile.depend index 3e1417105421..3b36cdd1b2af 100644 --- a/kerberos5/lib/libkrb5/Makefile.depend +++ b/kerberos5/lib/libkrb5/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libroken/Makefile.depend b/kerberos5/lib/libroken/Makefile.depend index 631ef86406f8..296a59cc23fa 100644 --- a/kerberos5/lib/libroken/Makefile.depend +++ b/kerberos5/lib/libroken/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/lib/libsl/Makefile.depend b/kerberos5/lib/libsl/Makefile.depend index 37043e8431b2..57d80642bafe 100644 --- a/kerberos5/lib/libsl/Makefile.depend +++ b/kerberos5/lib/libsl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/arpa \ diff --git a/kerberos5/lib/libvers/Makefile.depend b/kerberos5/lib/libvers/Makefile.depend index 3c5440f5efff..97088116efd8 100644 --- a/kerberos5/lib/libvers/Makefile.depend +++ b/kerberos5/lib/libvers/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/arpa \ diff --git a/kerberos5/lib/libwind/Makefile.depend b/kerberos5/lib/libwind/Makefile.depend index eb1ed587d341..c6fa42927bc0 100644 --- a/kerberos5/lib/libwind/Makefile.depend +++ b/kerberos5/lib/libwind/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/digest-service/Makefile.depend b/kerberos5/libexec/digest-service/Makefile.depend index d19df424affe..c6fa21c5cd41 100644 --- a/kerberos5/libexec/digest-service/Makefile.depend +++ b/kerberos5/libexec/digest-service/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/hprop/Makefile.depend b/kerberos5/libexec/hprop/Makefile.depend index 1885fadf3b40..224629d66d41 100644 --- a/kerberos5/libexec/hprop/Makefile.depend +++ b/kerberos5/libexec/hprop/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/hpropd/Makefile.depend b/kerberos5/libexec/hpropd/Makefile.depend index b09cf17be415..c1e0a30ad9d6 100644 --- a/kerberos5/libexec/hpropd/Makefile.depend +++ b/kerberos5/libexec/hpropd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/ipropd-master/Makefile.depend b/kerberos5/libexec/ipropd-master/Makefile.depend index 39d8295edfbe..d47b2d283e1f 100644 --- a/kerberos5/libexec/ipropd-master/Makefile.depend +++ b/kerberos5/libexec/ipropd-master/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/ipropd-slave/Makefile.depend b/kerberos5/libexec/ipropd-slave/Makefile.depend index 9f162ce0f0e1..7aaaeee4d0cb 100644 --- a/kerberos5/libexec/ipropd-slave/Makefile.depend +++ b/kerberos5/libexec/ipropd-slave/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/kadmind/Makefile.depend b/kerberos5/libexec/kadmind/Makefile.depend index 0aafe393ff11..c9deae8dff51 100644 --- a/kerberos5/libexec/kadmind/Makefile.depend +++ b/kerberos5/libexec/kadmind/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/kcm/Makefile.depend b/kerberos5/libexec/kcm/Makefile.depend index 22a46a28d1c5..e405f6ecae70 100644 --- a/kerberos5/libexec/kcm/Makefile.depend +++ b/kerberos5/libexec/kcm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/kdc/Makefile.depend b/kerberos5/libexec/kdc/Makefile.depend index 4e23c9df223a..fb98c599b2bf 100644 --- a/kerberos5/libexec/kdc/Makefile.depend +++ b/kerberos5/libexec/kdc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/kdigest/Makefile.depend b/kerberos5/libexec/kdigest/Makefile.depend index a99bfacec012..4f5855db7fe4 100644 --- a/kerberos5/libexec/kdigest/Makefile.depend +++ b/kerberos5/libexec/kdigest/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/kfd/Makefile.depend b/kerberos5/libexec/kfd/Makefile.depend index ff20361da26b..d2c2aa5ff538 100644 --- a/kerberos5/libexec/kfd/Makefile.depend +++ b/kerberos5/libexec/kfd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/kimpersonate/Makefile.depend b/kerberos5/libexec/kimpersonate/Makefile.depend index 0bc3ece1140b..b377d80d58c4 100644 --- a/kerberos5/libexec/kimpersonate/Makefile.depend +++ b/kerberos5/libexec/kimpersonate/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/libexec/kpasswdd/Makefile.depend b/kerberos5/libexec/kpasswdd/Makefile.depend index 865ecf59d25f..10ac011a98e8 100644 --- a/kerberos5/libexec/kpasswdd/Makefile.depend +++ b/kerberos5/libexec/kpasswdd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/tools/asn1_compile/Makefile.depend b/kerberos5/tools/asn1_compile/Makefile.depend index 15a407309218..b1281ab6010f 100644 --- a/kerberos5/tools/asn1_compile/Makefile.depend +++ b/kerberos5/tools/asn1_compile/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/tools/make-roken/Makefile.depend b/kerberos5/tools/make-roken/Makefile.depend index 0347dd3a14ae..6cac55624a4c 100644 --- a/kerberos5/tools/make-roken/Makefile.depend +++ b/kerberos5/tools/make-roken/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/tools/slc/Makefile.depend b/kerberos5/tools/slc/Makefile.depend index fc49f81bfe17..6bf0c8fdc158 100644 --- a/kerberos5/tools/slc/Makefile.depend +++ b/kerberos5/tools/slc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.bin/hxtool/Makefile.depend b/kerberos5/usr.bin/hxtool/Makefile.depend index f5b3362ab829..00490359dd05 100644 --- a/kerberos5/usr.bin/hxtool/Makefile.depend +++ b/kerberos5/usr.bin/hxtool/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.bin/kadmin/Makefile.depend b/kerberos5/usr.bin/kadmin/Makefile.depend index fedd97fec86d..bcbf24b747ce 100644 --- a/kerberos5/usr.bin/kadmin/Makefile.depend +++ b/kerberos5/usr.bin/kadmin/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.bin/kcc/Makefile.depend b/kerberos5/usr.bin/kcc/Makefile.depend index aef9d5bc8a6b..973681b16fdc 100644 --- a/kerberos5/usr.bin/kcc/Makefile.depend +++ b/kerberos5/usr.bin/kcc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.bin/kdestroy/Makefile.depend b/kerberos5/usr.bin/kdestroy/Makefile.depend index 0bc3ece1140b..b377d80d58c4 100644 --- a/kerberos5/usr.bin/kdestroy/Makefile.depend +++ b/kerberos5/usr.bin/kdestroy/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.bin/kf/Makefile.depend b/kerberos5/usr.bin/kf/Makefile.depend index ff20361da26b..d2c2aa5ff538 100644 --- a/kerberos5/usr.bin/kf/Makefile.depend +++ b/kerberos5/usr.bin/kf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.bin/kgetcred/Makefile.depend b/kerberos5/usr.bin/kgetcred/Makefile.depend index 0bc3ece1140b..b377d80d58c4 100644 --- a/kerberos5/usr.bin/kgetcred/Makefile.depend +++ b/kerberos5/usr.bin/kgetcred/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.bin/kinit/Makefile.depend b/kerberos5/usr.bin/kinit/Makefile.depend index 3a7e74bf4d5e..df0ac2ac0cc9 100644 --- a/kerberos5/usr.bin/kinit/Makefile.depend +++ b/kerberos5/usr.bin/kinit/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.bin/kpasswd/Makefile.depend b/kerberos5/usr.bin/kpasswd/Makefile.depend index e835c54d3ebc..fb4a7d61008c 100644 --- a/kerberos5/usr.bin/kpasswd/Makefile.depend +++ b/kerberos5/usr.bin/kpasswd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.bin/krb5-config/Makefile.depend b/kerberos5/usr.bin/krb5-config/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/kerberos5/usr.bin/krb5-config/Makefile.depend +++ b/kerberos5/usr.bin/krb5-config/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/kerberos5/usr.bin/ksu/Makefile.depend b/kerberos5/usr.bin/ksu/Makefile.depend index 0bc3ece1140b..b377d80d58c4 100644 --- a/kerberos5/usr.bin/ksu/Makefile.depend +++ b/kerberos5/usr.bin/ksu/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.bin/string2key/Makefile.depend b/kerberos5/usr.bin/string2key/Makefile.depend index f8e773d814fc..a246c9e10cf3 100644 --- a/kerberos5/usr.bin/string2key/Makefile.depend +++ b/kerberos5/usr.bin/string2key/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend index ff20361da26b..d2c2aa5ff538 100644 --- a/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend +++ b/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.sbin/iprop-log/Makefile.depend b/kerberos5/usr.sbin/iprop-log/Makefile.depend index 8d6a1ea2499c..84c3a4d8a5e8 100644 --- a/kerberos5/usr.sbin/iprop-log/Makefile.depend +++ b/kerberos5/usr.sbin/iprop-log/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.sbin/kstash/Makefile.depend b/kerberos5/usr.sbin/kstash/Makefile.depend index b09cf17be415..c1e0a30ad9d6 100644 --- a/kerberos5/usr.sbin/kstash/Makefile.depend +++ b/kerberos5/usr.sbin/kstash/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/kerberos5/usr.sbin/ktutil/Makefile.depend b/kerberos5/usr.sbin/ktutil/Makefile.depend index bc401252657a..860f453d6782 100644 --- a/kerberos5/usr.sbin/ktutil/Makefile.depend +++ b/kerberos5/usr.sbin/ktutil/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/atf/libatf-c++/Makefile.depend b/lib/atf/libatf-c++/Makefile.depend index 5f89eeec2c06..4920fa819c4c 100644 --- a/lib/atf/libatf-c++/Makefile.depend +++ b/lib/atf/libatf-c++/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/atf/libatf-c/Makefile.depend b/lib/atf/libatf-c/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/atf/libatf-c/Makefile.depend +++ b/lib/atf/libatf-c/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/clang/include/Makefile.depend b/lib/clang/include/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/lib/clang/include/Makefile.depend +++ b/lib/clang/include/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/lib/clang/libclanganalysis/Makefile.depend b/lib/clang/libclanganalysis/Makefile.depend index 3e73ed20437f..116d55c3318a 100644 --- a/lib/clang/libclanganalysis/Makefile.depend +++ b/lib/clang/libclanganalysis/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -14,10 +12,14 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +AnalysisDeclContext.o: AttrList.inc.h +AnalysisDeclContext.o: Attrs.inc.h AnalysisDeclContext.o: CommentCommandList.inc.h AnalysisDeclContext.o: DeclNodes.inc.h AnalysisDeclContext.o: DiagnosticCommonKinds.inc.h AnalysisDeclContext.o: StmtNodes.inc.h +AnalysisDeclContext.po: AttrList.inc.h +AnalysisDeclContext.po: Attrs.inc.h AnalysisDeclContext.po: CommentCommandList.inc.h AnalysisDeclContext.po: DeclNodes.inc.h AnalysisDeclContext.po: DiagnosticCommonKinds.inc.h @@ -46,10 +48,16 @@ CFGReachabilityAnalysis.o: StmtNodes.inc.h CFGReachabilityAnalysis.po: StmtNodes.inc.h CFGStmtMap.o: StmtNodes.inc.h CFGStmtMap.po: StmtNodes.inc.h +CallGraph.o: AttrList.inc.h +CallGraph.o: AttrVisitor.inc.h +CallGraph.o: Attrs.inc.h CallGraph.o: CommentCommandList.inc.h CallGraph.o: DeclNodes.inc.h CallGraph.o: DiagnosticCommonKinds.inc.h CallGraph.o: StmtNodes.inc.h +CallGraph.po: AttrList.inc.h +CallGraph.po: AttrVisitor.inc.h +CallGraph.po: Attrs.inc.h CallGraph.po: CommentCommandList.inc.h CallGraph.po: DeclNodes.inc.h CallGraph.po: DiagnosticCommonKinds.inc.h @@ -59,12 +67,14 @@ CocoaConventions.o: DiagnosticCommonKinds.inc.h CocoaConventions.po: DeclNodes.inc.h CocoaConventions.po: DiagnosticCommonKinds.inc.h Consumed.o: AttrList.inc.h +Consumed.o: AttrVisitor.inc.h Consumed.o: Attrs.inc.h Consumed.o: CommentCommandList.inc.h Consumed.o: DeclNodes.inc.h Consumed.o: DiagnosticCommonKinds.inc.h Consumed.o: StmtNodes.inc.h Consumed.po: AttrList.inc.h +Consumed.po: AttrVisitor.inc.h Consumed.po: Attrs.inc.h Consumed.po: CommentCommandList.inc.h Consumed.po: DeclNodes.inc.h @@ -148,6 +158,28 @@ ThreadSafety.po: Attrs.inc.h ThreadSafety.po: DeclNodes.inc.h ThreadSafety.po: DiagnosticCommonKinds.inc.h ThreadSafety.po: StmtNodes.inc.h +ThreadSafetyCommon.o: AttrList.inc.h +ThreadSafetyCommon.o: Attrs.inc.h +ThreadSafetyCommon.o: DeclNodes.inc.h +ThreadSafetyCommon.o: DiagnosticCommonKinds.inc.h +ThreadSafetyCommon.o: StmtNodes.inc.h +ThreadSafetyCommon.po: AttrList.inc.h +ThreadSafetyCommon.po: Attrs.inc.h +ThreadSafetyCommon.po: DeclNodes.inc.h +ThreadSafetyCommon.po: DiagnosticCommonKinds.inc.h +ThreadSafetyCommon.po: StmtNodes.inc.h +ThreadSafetyLogical.o: DeclNodes.inc.h +ThreadSafetyLogical.o: DiagnosticCommonKinds.inc.h +ThreadSafetyLogical.o: StmtNodes.inc.h +ThreadSafetyLogical.po: DeclNodes.inc.h +ThreadSafetyLogical.po: DiagnosticCommonKinds.inc.h +ThreadSafetyLogical.po: StmtNodes.inc.h +ThreadSafetyTIL.o: DeclNodes.inc.h +ThreadSafetyTIL.o: DiagnosticCommonKinds.inc.h +ThreadSafetyTIL.o: StmtNodes.inc.h +ThreadSafetyTIL.po: DeclNodes.inc.h +ThreadSafetyTIL.po: DiagnosticCommonKinds.inc.h +ThreadSafetyTIL.po: StmtNodes.inc.h UninitializedValues.o: AttrList.inc.h UninitializedValues.o: Attrs.inc.h UninitializedValues.o: CommentCommandList.inc.h diff --git a/lib/clang/libclangarcmigrate/Makefile.depend b/lib/clang/libclangarcmigrate/Makefile.depend index 91f16dcf6e63..9a1733e09106 100644 --- a/lib/clang/libclangarcmigrate/Makefile.depend +++ b/lib/clang/libclangarcmigrate/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -14,31 +12,43 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +ARCMT.o: AttrList.inc.h ARCMT.o: AttrParsedAttrList.inc.h +ARCMT.o: Attrs.inc.h ARCMT.o: CommentCommandList.inc.h ARCMT.o: DeclNodes.inc.h ARCMT.o: DiagnosticCommonKinds.inc.h ARCMT.o: DiagnosticGroups.inc.h ARCMT.o: DiagnosticSemaKinds.inc.h ARCMT.o: StmtNodes.inc.h +ARCMT.po: AttrList.inc.h ARCMT.po: AttrParsedAttrList.inc.h +ARCMT.po: Attrs.inc.h ARCMT.po: CommentCommandList.inc.h ARCMT.po: DeclNodes.inc.h ARCMT.po: DiagnosticCommonKinds.inc.h ARCMT.po: DiagnosticGroups.inc.h ARCMT.po: DiagnosticSemaKinds.inc.h ARCMT.po: StmtNodes.inc.h +ARCMTActions.o: CommentCommandList.inc.h +ARCMTActions.o: DeclNodes.inc.h ARCMTActions.o: DiagnosticCommonKinds.inc.h +ARCMTActions.o: StmtNodes.inc.h +ARCMTActions.po: CommentCommandList.inc.h +ARCMTActions.po: DeclNodes.inc.h ARCMTActions.po: DiagnosticCommonKinds.inc.h +ARCMTActions.po: StmtNodes.inc.h FileRemapper.o: DiagnosticCommonKinds.inc.h FileRemapper.po: DiagnosticCommonKinds.inc.h ObjCMT.o: AttrList.inc.h +ObjCMT.o: AttrVisitor.inc.h ObjCMT.o: Attrs.inc.h ObjCMT.o: CommentCommandList.inc.h ObjCMT.o: DeclNodes.inc.h ObjCMT.o: DiagnosticCommonKinds.inc.h ObjCMT.o: StmtNodes.inc.h ObjCMT.po: AttrList.inc.h +ObjCMT.po: AttrVisitor.inc.h ObjCMT.po: Attrs.inc.h ObjCMT.po: CommentCommandList.inc.h ObjCMT.po: DeclNodes.inc.h @@ -46,105 +56,162 @@ ObjCMT.po: DiagnosticCommonKinds.inc.h ObjCMT.po: StmtNodes.inc.h PlistReporter.o: DiagnosticCommonKinds.inc.h PlistReporter.po: DiagnosticCommonKinds.inc.h +TransAPIUses.o: AttrList.inc.h +TransAPIUses.o: AttrVisitor.inc.h +TransAPIUses.o: Attrs.inc.h TransAPIUses.o: CommentCommandList.inc.h TransAPIUses.o: DeclNodes.inc.h TransAPIUses.o: DiagnosticCommonKinds.inc.h TransAPIUses.o: DiagnosticSemaKinds.inc.h TransAPIUses.o: StmtNodes.inc.h +TransAPIUses.po: AttrList.inc.h +TransAPIUses.po: AttrVisitor.inc.h +TransAPIUses.po: Attrs.inc.h TransAPIUses.po: CommentCommandList.inc.h TransAPIUses.po: DeclNodes.inc.h TransAPIUses.po: DiagnosticCommonKinds.inc.h TransAPIUses.po: DiagnosticSemaKinds.inc.h TransAPIUses.po: StmtNodes.inc.h +TransARCAssign.o: AttrList.inc.h +TransARCAssign.o: AttrVisitor.inc.h +TransARCAssign.o: Attrs.inc.h TransARCAssign.o: CommentCommandList.inc.h TransARCAssign.o: DeclNodes.inc.h TransARCAssign.o: DiagnosticCommonKinds.inc.h TransARCAssign.o: DiagnosticSemaKinds.inc.h TransARCAssign.o: StmtNodes.inc.h +TransARCAssign.po: AttrList.inc.h +TransARCAssign.po: AttrVisitor.inc.h +TransARCAssign.po: Attrs.inc.h TransARCAssign.po: CommentCommandList.inc.h TransARCAssign.po: DeclNodes.inc.h TransARCAssign.po: DiagnosticCommonKinds.inc.h TransARCAssign.po: DiagnosticSemaKinds.inc.h TransARCAssign.po: StmtNodes.inc.h +TransAutoreleasePool.o: AttrList.inc.h +TransAutoreleasePool.o: AttrVisitor.inc.h +TransAutoreleasePool.o: Attrs.inc.h TransAutoreleasePool.o: CommentCommandList.inc.h TransAutoreleasePool.o: DeclNodes.inc.h TransAutoreleasePool.o: DiagnosticCommonKinds.inc.h TransAutoreleasePool.o: DiagnosticSemaKinds.inc.h TransAutoreleasePool.o: StmtNodes.inc.h +TransAutoreleasePool.po: AttrList.inc.h +TransAutoreleasePool.po: AttrVisitor.inc.h +TransAutoreleasePool.po: Attrs.inc.h TransAutoreleasePool.po: CommentCommandList.inc.h TransAutoreleasePool.po: DeclNodes.inc.h TransAutoreleasePool.po: DiagnosticCommonKinds.inc.h TransAutoreleasePool.po: DiagnosticSemaKinds.inc.h TransAutoreleasePool.po: StmtNodes.inc.h TransBlockObjCVariable.o: AttrList.inc.h +TransBlockObjCVariable.o: AttrVisitor.inc.h TransBlockObjCVariable.o: Attrs.inc.h TransBlockObjCVariable.o: CommentCommandList.inc.h TransBlockObjCVariable.o: DeclNodes.inc.h TransBlockObjCVariable.o: DiagnosticCommonKinds.inc.h TransBlockObjCVariable.o: StmtNodes.inc.h TransBlockObjCVariable.po: AttrList.inc.h +TransBlockObjCVariable.po: AttrVisitor.inc.h TransBlockObjCVariable.po: Attrs.inc.h TransBlockObjCVariable.po: CommentCommandList.inc.h TransBlockObjCVariable.po: DeclNodes.inc.h TransBlockObjCVariable.po: DiagnosticCommonKinds.inc.h TransBlockObjCVariable.po: StmtNodes.inc.h +TransEmptyStatementsAndDealloc.o: AttrList.inc.h +TransEmptyStatementsAndDealloc.o: AttrVisitor.inc.h +TransEmptyStatementsAndDealloc.o: Attrs.inc.h TransEmptyStatementsAndDealloc.o: CommentCommandList.inc.h TransEmptyStatementsAndDealloc.o: DeclNodes.inc.h TransEmptyStatementsAndDealloc.o: DiagnosticCommonKinds.inc.h TransEmptyStatementsAndDealloc.o: StmtNodes.inc.h +TransEmptyStatementsAndDealloc.po: AttrList.inc.h +TransEmptyStatementsAndDealloc.po: AttrVisitor.inc.h +TransEmptyStatementsAndDealloc.po: Attrs.inc.h TransEmptyStatementsAndDealloc.po: CommentCommandList.inc.h TransEmptyStatementsAndDealloc.po: DeclNodes.inc.h TransEmptyStatementsAndDealloc.po: DiagnosticCommonKinds.inc.h TransEmptyStatementsAndDealloc.po: StmtNodes.inc.h +TransGCAttrs.o: AttrList.inc.h +TransGCAttrs.o: AttrVisitor.inc.h +TransGCAttrs.o: Attrs.inc.h TransGCAttrs.o: CommentCommandList.inc.h TransGCAttrs.o: DeclNodes.inc.h TransGCAttrs.o: DiagnosticCommonKinds.inc.h TransGCAttrs.o: DiagnosticSemaKinds.inc.h TransGCAttrs.o: StmtNodes.inc.h +TransGCAttrs.po: AttrList.inc.h +TransGCAttrs.po: AttrVisitor.inc.h +TransGCAttrs.po: Attrs.inc.h TransGCAttrs.po: CommentCommandList.inc.h TransGCAttrs.po: DeclNodes.inc.h TransGCAttrs.po: DiagnosticCommonKinds.inc.h TransGCAttrs.po: DiagnosticSemaKinds.inc.h TransGCAttrs.po: StmtNodes.inc.h +TransGCCalls.o: AttrList.inc.h +TransGCCalls.o: AttrVisitor.inc.h +TransGCCalls.o: Attrs.inc.h TransGCCalls.o: CommentCommandList.inc.h TransGCCalls.o: DeclNodes.inc.h TransGCCalls.o: DiagnosticCommonKinds.inc.h TransGCCalls.o: DiagnosticSemaKinds.inc.h TransGCCalls.o: StmtNodes.inc.h +TransGCCalls.po: AttrList.inc.h +TransGCCalls.po: AttrVisitor.inc.h +TransGCCalls.po: Attrs.inc.h TransGCCalls.po: CommentCommandList.inc.h TransGCCalls.po: DeclNodes.inc.h TransGCCalls.po: DiagnosticCommonKinds.inc.h TransGCCalls.po: DiagnosticSemaKinds.inc.h TransGCCalls.po: StmtNodes.inc.h +TransProperties.o: AttrList.inc.h +TransProperties.o: AttrVisitor.inc.h +TransProperties.o: Attrs.inc.h TransProperties.o: DeclNodes.inc.h TransProperties.o: DiagnosticCommonKinds.inc.h TransProperties.o: DiagnosticSemaKinds.inc.h TransProperties.o: StmtNodes.inc.h +TransProperties.po: AttrList.inc.h +TransProperties.po: AttrVisitor.inc.h +TransProperties.po: Attrs.inc.h TransProperties.po: DeclNodes.inc.h TransProperties.po: DiagnosticCommonKinds.inc.h TransProperties.po: DiagnosticSemaKinds.inc.h TransProperties.po: StmtNodes.inc.h +TransProtectedScope.o: AttrList.inc.h +TransProtectedScope.o: AttrVisitor.inc.h +TransProtectedScope.o: Attrs.inc.h TransProtectedScope.o: CommentCommandList.inc.h TransProtectedScope.o: DeclNodes.inc.h TransProtectedScope.o: DiagnosticCommonKinds.inc.h TransProtectedScope.o: DiagnosticSemaKinds.inc.h TransProtectedScope.o: StmtNodes.inc.h +TransProtectedScope.po: AttrList.inc.h +TransProtectedScope.po: AttrVisitor.inc.h +TransProtectedScope.po: Attrs.inc.h TransProtectedScope.po: CommentCommandList.inc.h TransProtectedScope.po: DeclNodes.inc.h TransProtectedScope.po: DiagnosticCommonKinds.inc.h TransProtectedScope.po: DiagnosticSemaKinds.inc.h TransProtectedScope.po: StmtNodes.inc.h +TransRetainReleaseDealloc.o: AttrList.inc.h +TransRetainReleaseDealloc.o: AttrVisitor.inc.h +TransRetainReleaseDealloc.o: Attrs.inc.h TransRetainReleaseDealloc.o: CommentCommandList.inc.h TransRetainReleaseDealloc.o: DeclNodes.inc.h TransRetainReleaseDealloc.o: DiagnosticCommonKinds.inc.h TransRetainReleaseDealloc.o: DiagnosticSemaKinds.inc.h TransRetainReleaseDealloc.o: StmtNodes.inc.h +TransRetainReleaseDealloc.po: AttrList.inc.h +TransRetainReleaseDealloc.po: AttrVisitor.inc.h +TransRetainReleaseDealloc.po: Attrs.inc.h TransRetainReleaseDealloc.po: CommentCommandList.inc.h TransRetainReleaseDealloc.po: DeclNodes.inc.h TransRetainReleaseDealloc.po: DiagnosticCommonKinds.inc.h TransRetainReleaseDealloc.po: DiagnosticSemaKinds.inc.h TransRetainReleaseDealloc.po: StmtNodes.inc.h TransUnbridgedCasts.o: AttrList.inc.h +TransUnbridgedCasts.o: AttrVisitor.inc.h TransUnbridgedCasts.o: Attrs.inc.h TransUnbridgedCasts.o: CommentCommandList.inc.h TransUnbridgedCasts.o: DeclNodes.inc.h @@ -152,26 +219,39 @@ TransUnbridgedCasts.o: DiagnosticCommonKinds.inc.h TransUnbridgedCasts.o: DiagnosticSemaKinds.inc.h TransUnbridgedCasts.o: StmtNodes.inc.h TransUnbridgedCasts.po: AttrList.inc.h +TransUnbridgedCasts.po: AttrVisitor.inc.h TransUnbridgedCasts.po: Attrs.inc.h TransUnbridgedCasts.po: CommentCommandList.inc.h TransUnbridgedCasts.po: DeclNodes.inc.h TransUnbridgedCasts.po: DiagnosticCommonKinds.inc.h TransUnbridgedCasts.po: DiagnosticSemaKinds.inc.h TransUnbridgedCasts.po: StmtNodes.inc.h +TransUnusedInitDelegate.o: AttrList.inc.h +TransUnusedInitDelegate.o: AttrVisitor.inc.h +TransUnusedInitDelegate.o: Attrs.inc.h TransUnusedInitDelegate.o: CommentCommandList.inc.h TransUnusedInitDelegate.o: DeclNodes.inc.h TransUnusedInitDelegate.o: DiagnosticCommonKinds.inc.h TransUnusedInitDelegate.o: DiagnosticSemaKinds.inc.h TransUnusedInitDelegate.o: StmtNodes.inc.h +TransUnusedInitDelegate.po: AttrList.inc.h +TransUnusedInitDelegate.po: AttrVisitor.inc.h +TransUnusedInitDelegate.po: Attrs.inc.h TransUnusedInitDelegate.po: CommentCommandList.inc.h TransUnusedInitDelegate.po: DeclNodes.inc.h TransUnusedInitDelegate.po: DiagnosticCommonKinds.inc.h TransUnusedInitDelegate.po: DiagnosticSemaKinds.inc.h TransUnusedInitDelegate.po: StmtNodes.inc.h +TransZeroOutPropsInDealloc.o: AttrList.inc.h +TransZeroOutPropsInDealloc.o: AttrVisitor.inc.h +TransZeroOutPropsInDealloc.o: Attrs.inc.h TransZeroOutPropsInDealloc.o: CommentCommandList.inc.h TransZeroOutPropsInDealloc.o: DeclNodes.inc.h TransZeroOutPropsInDealloc.o: DiagnosticCommonKinds.inc.h TransZeroOutPropsInDealloc.o: StmtNodes.inc.h +TransZeroOutPropsInDealloc.po: AttrList.inc.h +TransZeroOutPropsInDealloc.po: AttrVisitor.inc.h +TransZeroOutPropsInDealloc.po: Attrs.inc.h TransZeroOutPropsInDealloc.po: CommentCommandList.inc.h TransZeroOutPropsInDealloc.po: DeclNodes.inc.h TransZeroOutPropsInDealloc.po: DiagnosticCommonKinds.inc.h @@ -186,6 +266,7 @@ TransformActions.po: DiagnosticCommonKinds.inc.h TransformActions.po: StmtNodes.inc.h Transforms.o: AttrList.inc.h Transforms.o: AttrParsedAttrList.inc.h +Transforms.o: AttrVisitor.inc.h Transforms.o: Attrs.inc.h Transforms.o: CommentCommandList.inc.h Transforms.o: DeclNodes.inc.h @@ -194,6 +275,7 @@ Transforms.o: DiagnosticSemaKinds.inc.h Transforms.o: StmtNodes.inc.h Transforms.po: AttrList.inc.h Transforms.po: AttrParsedAttrList.inc.h +Transforms.po: AttrVisitor.inc.h Transforms.po: Attrs.inc.h Transforms.po: CommentCommandList.inc.h Transforms.po: DeclNodes.inc.h diff --git a/lib/clang/libclangast/Makefile.depend b/lib/clang/libclangast/Makefile.depend index eccc381966dd..9a49e742c287 100644 --- a/lib/clang/libclangast/Makefile.depend +++ b/lib/clang/libclangast/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -14,10 +12,14 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +APValue.o: AttrList.inc.h +APValue.o: Attrs.inc.h APValue.o: CommentCommandList.inc.h APValue.o: DeclNodes.inc.h APValue.o: DiagnosticCommonKinds.inc.h APValue.o: StmtNodes.inc.h +APValue.po: AttrList.inc.h +APValue.po: Attrs.inc.h APValue.po: CommentCommandList.inc.h APValue.po: DeclNodes.inc.h APValue.po: DiagnosticCommonKinds.inc.h @@ -27,6 +29,7 @@ ASTConsumer.o: DiagnosticCommonKinds.inc.h ASTConsumer.po: DeclNodes.inc.h ASTConsumer.po: DiagnosticCommonKinds.inc.h ASTContext.o: AttrList.inc.h +ASTContext.o: AttrVisitor.inc.h ASTContext.o: Attrs.inc.h ASTContext.o: CommentCommandList.inc.h ASTContext.o: CommentNodes.inc.h @@ -34,17 +37,22 @@ ASTContext.o: DeclNodes.inc.h ASTContext.o: DiagnosticCommonKinds.inc.h ASTContext.o: StmtNodes.inc.h ASTContext.po: AttrList.inc.h +ASTContext.po: AttrVisitor.inc.h ASTContext.po: Attrs.inc.h ASTContext.po: CommentCommandList.inc.h ASTContext.po: CommentNodes.inc.h ASTContext.po: DeclNodes.inc.h ASTContext.po: DiagnosticCommonKinds.inc.h ASTContext.po: StmtNodes.inc.h +ASTDiagnostic.o: AttrList.inc.h +ASTDiagnostic.o: Attrs.inc.h ASTDiagnostic.o: CommentCommandList.inc.h ASTDiagnostic.o: DeclNodes.inc.h ASTDiagnostic.o: DiagnosticASTKinds.inc.h ASTDiagnostic.o: DiagnosticCommonKinds.inc.h ASTDiagnostic.o: StmtNodes.inc.h +ASTDiagnostic.po: AttrList.inc.h +ASTDiagnostic.po: Attrs.inc.h ASTDiagnostic.po: CommentCommandList.inc.h ASTDiagnostic.po: DeclNodes.inc.h ASTDiagnostic.po: DiagnosticASTKinds.inc.h @@ -66,20 +74,28 @@ ASTDumper.po: CommentNodes.inc.h ASTDumper.po: DeclNodes.inc.h ASTDumper.po: DiagnosticCommonKinds.inc.h ASTDumper.po: StmtNodes.inc.h +ASTImporter.o: AttrList.inc.h +ASTImporter.o: Attrs.inc.h ASTImporter.o: CommentCommandList.inc.h ASTImporter.o: DeclNodes.inc.h ASTImporter.o: DiagnosticASTKinds.inc.h ASTImporter.o: DiagnosticCommonKinds.inc.h ASTImporter.o: StmtNodes.inc.h +ASTImporter.po: AttrList.inc.h +ASTImporter.po: Attrs.inc.h ASTImporter.po: CommentCommandList.inc.h ASTImporter.po: DeclNodes.inc.h ASTImporter.po: DiagnosticASTKinds.inc.h ASTImporter.po: DiagnosticCommonKinds.inc.h ASTImporter.po: StmtNodes.inc.h +ASTTypeTraits.o: AttrList.inc.h +ASTTypeTraits.o: Attrs.inc.h ASTTypeTraits.o: CommentCommandList.inc.h ASTTypeTraits.o: DeclNodes.inc.h ASTTypeTraits.o: DiagnosticCommonKinds.inc.h ASTTypeTraits.o: StmtNodes.inc.h +ASTTypeTraits.po: AttrList.inc.h +ASTTypeTraits.po: Attrs.inc.h ASTTypeTraits.po: CommentCommandList.inc.h ASTTypeTraits.po: DeclNodes.inc.h ASTTypeTraits.po: DiagnosticCommonKinds.inc.h @@ -98,19 +114,27 @@ AttrImpl.po: CommentCommandList.inc.h AttrImpl.po: DeclNodes.inc.h AttrImpl.po: DiagnosticCommonKinds.inc.h AttrImpl.po: StmtNodes.inc.h +CXXInheritance.o: AttrList.inc.h +CXXInheritance.o: Attrs.inc.h CXXInheritance.o: CommentCommandList.inc.h CXXInheritance.o: DeclNodes.inc.h CXXInheritance.o: DiagnosticCommonKinds.inc.h CXXInheritance.o: StmtNodes.inc.h +CXXInheritance.po: AttrList.inc.h +CXXInheritance.po: Attrs.inc.h CXXInheritance.po: CommentCommandList.inc.h CXXInheritance.po: DeclNodes.inc.h CXXInheritance.po: DiagnosticCommonKinds.inc.h CXXInheritance.po: StmtNodes.inc.h +Comment.o: AttrList.inc.h +Comment.o: Attrs.inc.h Comment.o: CommentCommandList.inc.h Comment.o: CommentNodes.inc.h Comment.o: DeclNodes.inc.h Comment.o: DiagnosticCommonKinds.inc.h Comment.o: StmtNodes.inc.h +Comment.po: AttrList.inc.h +Comment.po: Attrs.inc.h Comment.po: CommentCommandList.inc.h Comment.po: CommentNodes.inc.h Comment.po: DeclNodes.inc.h @@ -167,12 +191,14 @@ Decl.o: Attrs.inc.h Decl.o: CommentCommandList.inc.h Decl.o: DeclNodes.inc.h Decl.o: DiagnosticCommonKinds.inc.h +Decl.o: DiagnosticFrontendKinds.inc.h Decl.o: StmtNodes.inc.h Decl.po: AttrList.inc.h Decl.po: Attrs.inc.h Decl.po: CommentCommandList.inc.h Decl.po: DeclNodes.inc.h Decl.po: DiagnosticCommonKinds.inc.h +Decl.po: DiagnosticFrontendKinds.inc.h Decl.po: StmtNodes.inc.h DeclBase.o: AttrList.inc.h DeclBase.o: Attrs.inc.h @@ -186,18 +212,26 @@ DeclBase.po: CommentCommandList.inc.h DeclBase.po: DeclNodes.inc.h DeclBase.po: DiagnosticCommonKinds.inc.h DeclBase.po: StmtNodes.inc.h +DeclCXX.o: AttrList.inc.h +DeclCXX.o: Attrs.inc.h DeclCXX.o: CommentCommandList.inc.h DeclCXX.o: DeclNodes.inc.h DeclCXX.o: DiagnosticCommonKinds.inc.h DeclCXX.o: StmtNodes.inc.h +DeclCXX.po: AttrList.inc.h +DeclCXX.po: Attrs.inc.h DeclCXX.po: CommentCommandList.inc.h DeclCXX.po: DeclNodes.inc.h DeclCXX.po: DiagnosticCommonKinds.inc.h DeclCXX.po: StmtNodes.inc.h +DeclFriend.o: AttrList.inc.h +DeclFriend.o: Attrs.inc.h DeclFriend.o: CommentCommandList.inc.h DeclFriend.o: DeclNodes.inc.h DeclFriend.o: DiagnosticCommonKinds.inc.h DeclFriend.o: StmtNodes.inc.h +DeclFriend.po: AttrList.inc.h +DeclFriend.po: Attrs.inc.h DeclFriend.po: CommentCommandList.inc.h DeclFriend.po: DeclNodes.inc.h DeclFriend.po: DiagnosticCommonKinds.inc.h @@ -242,10 +276,14 @@ DeclPrinter.po: CommentCommandList.inc.h DeclPrinter.po: DeclNodes.inc.h DeclPrinter.po: DiagnosticCommonKinds.inc.h DeclPrinter.po: StmtNodes.inc.h +DeclTemplate.o: AttrList.inc.h +DeclTemplate.o: Attrs.inc.h DeclTemplate.o: CommentCommandList.inc.h DeclTemplate.o: DeclNodes.inc.h DeclTemplate.o: DiagnosticCommonKinds.inc.h DeclTemplate.o: StmtNodes.inc.h +DeclTemplate.po: AttrList.inc.h +DeclTemplate.po: Attrs.inc.h DeclTemplate.po: CommentCommandList.inc.h DeclTemplate.po: DeclNodes.inc.h DeclTemplate.po: DiagnosticCommonKinds.inc.h @@ -284,40 +322,60 @@ ExprCXX.po: CommentCommandList.inc.h ExprCXX.po: DeclNodes.inc.h ExprCXX.po: DiagnosticCommonKinds.inc.h ExprCXX.po: StmtNodes.inc.h +ExprClassification.o: AttrList.inc.h +ExprClassification.o: Attrs.inc.h ExprClassification.o: CommentCommandList.inc.h ExprClassification.o: DeclNodes.inc.h ExprClassification.o: DiagnosticCommonKinds.inc.h ExprClassification.o: StmtNodes.inc.h +ExprClassification.po: AttrList.inc.h +ExprClassification.po: Attrs.inc.h ExprClassification.po: CommentCommandList.inc.h ExprClassification.po: DeclNodes.inc.h ExprClassification.po: DiagnosticCommonKinds.inc.h ExprClassification.po: StmtNodes.inc.h +ExprConstant.o: AttrList.inc.h +ExprConstant.o: Attrs.inc.h ExprConstant.o: CommentCommandList.inc.h ExprConstant.o: DeclNodes.inc.h ExprConstant.o: DiagnosticASTKinds.inc.h ExprConstant.o: DiagnosticCommonKinds.inc.h ExprConstant.o: StmtNodes.inc.h +ExprConstant.po: AttrList.inc.h +ExprConstant.po: Attrs.inc.h ExprConstant.po: CommentCommandList.inc.h ExprConstant.po: DeclNodes.inc.h ExprConstant.po: DiagnosticASTKinds.inc.h ExprConstant.po: DiagnosticCommonKinds.inc.h ExprConstant.po: StmtNodes.inc.h +ExternalASTSource.o: CommentCommandList.inc.h ExternalASTSource.o: DeclNodes.inc.h ExternalASTSource.o: DiagnosticCommonKinds.inc.h +ExternalASTSource.o: StmtNodes.inc.h +ExternalASTSource.po: CommentCommandList.inc.h ExternalASTSource.po: DeclNodes.inc.h ExternalASTSource.po: DiagnosticCommonKinds.inc.h +ExternalASTSource.po: StmtNodes.inc.h +InheritViz.o: AttrList.inc.h +InheritViz.o: Attrs.inc.h InheritViz.o: CommentCommandList.inc.h InheritViz.o: DeclNodes.inc.h InheritViz.o: DiagnosticCommonKinds.inc.h InheritViz.o: StmtNodes.inc.h +InheritViz.po: AttrList.inc.h +InheritViz.po: Attrs.inc.h InheritViz.po: CommentCommandList.inc.h InheritViz.po: DeclNodes.inc.h InheritViz.po: DiagnosticCommonKinds.inc.h InheritViz.po: StmtNodes.inc.h +ItaniumCXXABI.o: AttrList.inc.h +ItaniumCXXABI.o: Attrs.inc.h ItaniumCXXABI.o: CommentCommandList.inc.h ItaniumCXXABI.o: DeclNodes.inc.h ItaniumCXXABI.o: DiagnosticCommonKinds.inc.h ItaniumCXXABI.o: StmtNodes.inc.h +ItaniumCXXABI.po: AttrList.inc.h +ItaniumCXXABI.po: Attrs.inc.h ItaniumCXXABI.po: CommentCommandList.inc.h ItaniumCXXABI.po: DeclNodes.inc.h ItaniumCXXABI.po: DiagnosticCommonKinds.inc.h @@ -346,14 +404,6 @@ Mangle.po: CommentCommandList.inc.h Mangle.po: DeclNodes.inc.h Mangle.po: DiagnosticCommonKinds.inc.h Mangle.po: StmtNodes.inc.h -MangleNumberingContext.o: CommentCommandList.inc.h -MangleNumberingContext.o: DeclNodes.inc.h -MangleNumberingContext.o: DiagnosticCommonKinds.inc.h -MangleNumberingContext.o: StmtNodes.inc.h -MangleNumberingContext.po: CommentCommandList.inc.h -MangleNumberingContext.po: DeclNodes.inc.h -MangleNumberingContext.po: DiagnosticCommonKinds.inc.h -MangleNumberingContext.po: StmtNodes.inc.h MicrosoftCXXABI.o: AttrList.inc.h MicrosoftCXXABI.o: Attrs.inc.h MicrosoftCXXABI.o: CommentCommandList.inc.h @@ -386,10 +436,14 @@ NSAPI.po: CommentCommandList.inc.h NSAPI.po: DeclNodes.inc.h NSAPI.po: DiagnosticCommonKinds.inc.h NSAPI.po: StmtNodes.inc.h +NestedNameSpecifier.o: AttrList.inc.h +NestedNameSpecifier.o: Attrs.inc.h NestedNameSpecifier.o: CommentCommandList.inc.h NestedNameSpecifier.o: DeclNodes.inc.h NestedNameSpecifier.o: DiagnosticCommonKinds.inc.h NestedNameSpecifier.o: StmtNodes.inc.h +NestedNameSpecifier.po: AttrList.inc.h +NestedNameSpecifier.po: Attrs.inc.h NestedNameSpecifier.po: CommentCommandList.inc.h NestedNameSpecifier.po: DeclNodes.inc.h NestedNameSpecifier.po: DiagnosticCommonKinds.inc.h @@ -410,10 +464,14 @@ RawCommentList.po: CommentNodes.inc.h RawCommentList.po: DeclNodes.inc.h RawCommentList.po: DiagnosticCommonKinds.inc.h RawCommentList.po: StmtNodes.inc.h +RecordLayout.o: AttrList.inc.h +RecordLayout.o: Attrs.inc.h RecordLayout.o: CommentCommandList.inc.h RecordLayout.o: DeclNodes.inc.h RecordLayout.o: DiagnosticCommonKinds.inc.h RecordLayout.o: StmtNodes.inc.h +RecordLayout.po: AttrList.inc.h +RecordLayout.po: Attrs.inc.h RecordLayout.po: CommentCommandList.inc.h RecordLayout.po: DeclNodes.inc.h RecordLayout.po: DiagnosticCommonKinds.inc.h @@ -464,10 +522,14 @@ StmtPrinter.po: CommentCommandList.inc.h StmtPrinter.po: DeclNodes.inc.h StmtPrinter.po: DiagnosticCommonKinds.inc.h StmtPrinter.po: StmtNodes.inc.h +StmtProfile.o: AttrList.inc.h +StmtProfile.o: Attrs.inc.h StmtProfile.o: CommentCommandList.inc.h StmtProfile.o: DeclNodes.inc.h StmtProfile.o: DiagnosticCommonKinds.inc.h StmtProfile.o: StmtNodes.inc.h +StmtProfile.po: AttrList.inc.h +StmtProfile.po: Attrs.inc.h StmtProfile.po: CommentCommandList.inc.h StmtProfile.po: DeclNodes.inc.h StmtProfile.po: DiagnosticCommonKinds.inc.h @@ -478,17 +540,25 @@ StmtViz.o: StmtNodes.inc.h StmtViz.po: DeclNodes.inc.h StmtViz.po: DiagnosticCommonKinds.inc.h StmtViz.po: StmtNodes.inc.h +TemplateBase.o: AttrList.inc.h +TemplateBase.o: Attrs.inc.h TemplateBase.o: CommentCommandList.inc.h TemplateBase.o: DeclNodes.inc.h TemplateBase.o: DiagnosticCommonKinds.inc.h TemplateBase.o: StmtNodes.inc.h +TemplateBase.po: AttrList.inc.h +TemplateBase.po: Attrs.inc.h TemplateBase.po: CommentCommandList.inc.h TemplateBase.po: DeclNodes.inc.h TemplateBase.po: DiagnosticCommonKinds.inc.h TemplateBase.po: StmtNodes.inc.h +TemplateName.o: AttrList.inc.h +TemplateName.o: Attrs.inc.h TemplateName.o: DeclNodes.inc.h TemplateName.o: DiagnosticCommonKinds.inc.h TemplateName.o: StmtNodes.inc.h +TemplateName.po: AttrList.inc.h +TemplateName.po: Attrs.inc.h TemplateName.po: DeclNodes.inc.h TemplateName.po: DiagnosticCommonKinds.inc.h TemplateName.po: StmtNodes.inc.h @@ -512,26 +582,38 @@ TypeLoc.po: CommentCommandList.inc.h TypeLoc.po: DeclNodes.inc.h TypeLoc.po: DiagnosticCommonKinds.inc.h TypeLoc.po: StmtNodes.inc.h +TypePrinter.o: AttrList.inc.h +TypePrinter.o: Attrs.inc.h TypePrinter.o: CommentCommandList.inc.h TypePrinter.o: DeclNodes.inc.h TypePrinter.o: DiagnosticCommonKinds.inc.h TypePrinter.o: StmtNodes.inc.h +TypePrinter.po: AttrList.inc.h +TypePrinter.po: Attrs.inc.h TypePrinter.po: CommentCommandList.inc.h TypePrinter.po: DeclNodes.inc.h TypePrinter.po: DiagnosticCommonKinds.inc.h TypePrinter.po: StmtNodes.inc.h +VTTBuilder.o: AttrList.inc.h +VTTBuilder.o: Attrs.inc.h VTTBuilder.o: CommentCommandList.inc.h VTTBuilder.o: DeclNodes.inc.h VTTBuilder.o: DiagnosticCommonKinds.inc.h VTTBuilder.o: StmtNodes.inc.h +VTTBuilder.po: AttrList.inc.h +VTTBuilder.po: Attrs.inc.h VTTBuilder.po: CommentCommandList.inc.h VTTBuilder.po: DeclNodes.inc.h VTTBuilder.po: DiagnosticCommonKinds.inc.h VTTBuilder.po: StmtNodes.inc.h +VTableBuilder.o: AttrList.inc.h +VTableBuilder.o: Attrs.inc.h VTableBuilder.o: CommentCommandList.inc.h VTableBuilder.o: DeclNodes.inc.h VTableBuilder.o: DiagnosticCommonKinds.inc.h VTableBuilder.o: StmtNodes.inc.h +VTableBuilder.po: AttrList.inc.h +VTableBuilder.po: Attrs.inc.h VTableBuilder.po: CommentCommandList.inc.h VTableBuilder.po: DeclNodes.inc.h VTableBuilder.po: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangbasic/Makefile.depend b/lib/clang/libclangbasic/Makefile.depend index 6d3d657869a5..29d9bc9ef53d 100644 --- a/lib/clang/libclangbasic/Makefile.depend +++ b/lib/clang/libclangbasic/Makefile.depend @@ -1,10 +1,9 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ + lib/clang/include.host \ lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ @@ -14,6 +13,8 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +Attributes.o: AttrHasAttributeImpl.inc.h +Attributes.po: AttrHasAttributeImpl.inc.h Diagnostic.o: DiagnosticCommonKinds.inc.h Diagnostic.po: DiagnosticCommonKinds.inc.h DiagnosticIDs.o: DiagnosticASTKinds.inc.h @@ -44,4 +45,24 @@ Targets.o: DiagnosticCommonKinds.inc.h Targets.o: arm_neon.inc.h Targets.po: DiagnosticCommonKinds.inc.h Targets.po: arm_neon.inc.h +Warnings.o: DiagnosticASTKinds.inc.h +Warnings.o: DiagnosticAnalysisKinds.inc.h +Warnings.o: DiagnosticCommentKinds.inc.h +Warnings.o: DiagnosticCommonKinds.inc.h +Warnings.o: DiagnosticDriverKinds.inc.h +Warnings.o: DiagnosticFrontendKinds.inc.h +Warnings.o: DiagnosticLexKinds.inc.h +Warnings.o: DiagnosticParseKinds.inc.h +Warnings.o: DiagnosticSemaKinds.inc.h +Warnings.o: DiagnosticSerializationKinds.inc.h +Warnings.po: DiagnosticASTKinds.inc.h +Warnings.po: DiagnosticAnalysisKinds.inc.h +Warnings.po: DiagnosticCommentKinds.inc.h +Warnings.po: DiagnosticCommonKinds.inc.h +Warnings.po: DiagnosticDriverKinds.inc.h +Warnings.po: DiagnosticFrontendKinds.inc.h +Warnings.po: DiagnosticLexKinds.inc.h +Warnings.po: DiagnosticParseKinds.inc.h +Warnings.po: DiagnosticSemaKinds.inc.h +Warnings.po: DiagnosticSerializationKinds.inc.h .endif diff --git a/lib/clang/libclangcodegen/Makefile.depend b/lib/clang/libclangcodegen/Makefile.depend index 611aebbd68d8..3573fe7882e6 100644 --- a/lib/clang/libclangcodegen/Makefile.depend +++ b/lib/clang/libclangcodegen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -114,12 +112,14 @@ CGCall.o: Attrs.inc.h CGCall.o: CommentCommandList.inc.h CGCall.o: DeclNodes.inc.h CGCall.o: DiagnosticCommonKinds.inc.h +CGCall.o: Intrinsics.inc.h CGCall.o: StmtNodes.inc.h CGCall.po: AttrList.inc.h CGCall.po: Attrs.inc.h CGCall.po: CommentCommandList.inc.h CGCall.po: DeclNodes.inc.h CGCall.po: DiagnosticCommonKinds.inc.h +CGCall.po: Intrinsics.inc.h CGCall.po: StmtNodes.inc.h CGClass.o: AttrList.inc.h CGClass.o: Attrs.inc.h @@ -347,18 +347,18 @@ CGOpenCLRuntime.po: CommentCommandList.inc.h CGOpenCLRuntime.po: DeclNodes.inc.h CGOpenCLRuntime.po: DiagnosticCommonKinds.inc.h CGOpenCLRuntime.po: StmtNodes.inc.h -CGRTTI.o: AttrList.inc.h -CGRTTI.o: Attrs.inc.h -CGRTTI.o: CommentCommandList.inc.h -CGRTTI.o: DeclNodes.inc.h -CGRTTI.o: DiagnosticCommonKinds.inc.h -CGRTTI.o: StmtNodes.inc.h -CGRTTI.po: AttrList.inc.h -CGRTTI.po: Attrs.inc.h -CGRTTI.po: CommentCommandList.inc.h -CGRTTI.po: DeclNodes.inc.h -CGRTTI.po: DiagnosticCommonKinds.inc.h -CGRTTI.po: StmtNodes.inc.h +CGOpenMPRuntime.o: AttrList.inc.h +CGOpenMPRuntime.o: Attrs.inc.h +CGOpenMPRuntime.o: CommentCommandList.inc.h +CGOpenMPRuntime.o: DeclNodes.inc.h +CGOpenMPRuntime.o: DiagnosticCommonKinds.inc.h +CGOpenMPRuntime.o: StmtNodes.inc.h +CGOpenMPRuntime.po: AttrList.inc.h +CGOpenMPRuntime.po: Attrs.inc.h +CGOpenMPRuntime.po: CommentCommandList.inc.h +CGOpenMPRuntime.po: DeclNodes.inc.h +CGOpenMPRuntime.po: DiagnosticCommonKinds.inc.h +CGOpenMPRuntime.po: StmtNodes.inc.h CGRecordLayoutBuilder.o: AttrList.inc.h CGRecordLayoutBuilder.o: Attrs.inc.h CGRecordLayoutBuilder.o: CommentCommandList.inc.h @@ -372,6 +372,7 @@ CGRecordLayoutBuilder.po: DeclNodes.inc.h CGRecordLayoutBuilder.po: DiagnosticCommonKinds.inc.h CGRecordLayoutBuilder.po: StmtNodes.inc.h CGStmt.o: AttrList.inc.h +CGStmt.o: AttrParsedAttrList.inc.h CGStmt.o: Attrs.inc.h CGStmt.o: CommentCommandList.inc.h CGStmt.o: DeclNodes.inc.h @@ -380,6 +381,7 @@ CGStmt.o: DiagnosticSemaKinds.inc.h CGStmt.o: Intrinsics.inc.h CGStmt.o: StmtNodes.inc.h CGStmt.po: AttrList.inc.h +CGStmt.po: AttrParsedAttrList.inc.h CGStmt.po: Attrs.inc.h CGStmt.po: CommentCommandList.inc.h CGStmt.po: DeclNodes.inc.h @@ -387,6 +389,18 @@ CGStmt.po: DiagnosticCommonKinds.inc.h CGStmt.po: DiagnosticSemaKinds.inc.h CGStmt.po: Intrinsics.inc.h CGStmt.po: StmtNodes.inc.h +CGStmtOpenMP.o: AttrList.inc.h +CGStmtOpenMP.o: Attrs.inc.h +CGStmtOpenMP.o: CommentCommandList.inc.h +CGStmtOpenMP.o: DeclNodes.inc.h +CGStmtOpenMP.o: DiagnosticCommonKinds.inc.h +CGStmtOpenMP.o: StmtNodes.inc.h +CGStmtOpenMP.po: AttrList.inc.h +CGStmtOpenMP.po: Attrs.inc.h +CGStmtOpenMP.po: CommentCommandList.inc.h +CGStmtOpenMP.po: DeclNodes.inc.h +CGStmtOpenMP.po: DiagnosticCommonKinds.inc.h +CGStmtOpenMP.po: StmtNodes.inc.h CGVTT.o: AttrList.inc.h CGVTT.o: Attrs.inc.h CGVTT.o: CommentCommandList.inc.h @@ -423,11 +437,15 @@ CodeGenABITypes.po: CommentCommandList.inc.h CodeGenABITypes.po: DeclNodes.inc.h CodeGenABITypes.po: DiagnosticCommonKinds.inc.h CodeGenABITypes.po: StmtNodes.inc.h +CodeGenAction.o: AttrList.inc.h +CodeGenAction.o: Attrs.inc.h CodeGenAction.o: CommentCommandList.inc.h CodeGenAction.o: DeclNodes.inc.h CodeGenAction.o: DiagnosticCommonKinds.inc.h CodeGenAction.o: DiagnosticFrontendKinds.inc.h CodeGenAction.o: StmtNodes.inc.h +CodeGenAction.po: AttrList.inc.h +CodeGenAction.po: Attrs.inc.h CodeGenAction.po: CommentCommandList.inc.h CodeGenAction.po: DeclNodes.inc.h CodeGenAction.po: DiagnosticCommonKinds.inc.h @@ -448,6 +466,7 @@ CodeGenFunction.po: DiagnosticCommonKinds.inc.h CodeGenFunction.po: Intrinsics.inc.h CodeGenFunction.po: StmtNodes.inc.h CodeGenModule.o: AttrList.inc.h +CodeGenModule.o: AttrVisitor.inc.h CodeGenModule.o: Attrs.inc.h CodeGenModule.o: CommentCommandList.inc.h CodeGenModule.o: DeclNodes.inc.h @@ -456,6 +475,7 @@ CodeGenModule.o: DiagnosticSemaKinds.inc.h CodeGenModule.o: Intrinsics.inc.h CodeGenModule.o: StmtNodes.inc.h CodeGenModule.po: AttrList.inc.h +CodeGenModule.po: AttrVisitor.inc.h CodeGenModule.po: Attrs.inc.h CodeGenModule.po: CommentCommandList.inc.h CodeGenModule.po: DeclNodes.inc.h @@ -463,6 +483,22 @@ CodeGenModule.po: DiagnosticCommonKinds.inc.h CodeGenModule.po: DiagnosticSemaKinds.inc.h CodeGenModule.po: Intrinsics.inc.h CodeGenModule.po: StmtNodes.inc.h +CodeGenPGO.o: AttrList.inc.h +CodeGenPGO.o: AttrVisitor.inc.h +CodeGenPGO.o: Attrs.inc.h +CodeGenPGO.o: CommentCommandList.inc.h +CodeGenPGO.o: DeclNodes.inc.h +CodeGenPGO.o: DiagnosticCommonKinds.inc.h +CodeGenPGO.o: Intrinsics.inc.h +CodeGenPGO.o: StmtNodes.inc.h +CodeGenPGO.po: AttrList.inc.h +CodeGenPGO.po: AttrVisitor.inc.h +CodeGenPGO.po: Attrs.inc.h +CodeGenPGO.po: CommentCommandList.inc.h +CodeGenPGO.po: DeclNodes.inc.h +CodeGenPGO.po: DiagnosticCommonKinds.inc.h +CodeGenPGO.po: Intrinsics.inc.h +CodeGenPGO.po: StmtNodes.inc.h CodeGenTBAA.o: AttrList.inc.h CodeGenTBAA.o: Attrs.inc.h CodeGenTBAA.o: CommentCommandList.inc.h @@ -487,6 +523,18 @@ CodeGenTypes.po: CommentCommandList.inc.h CodeGenTypes.po: DeclNodes.inc.h CodeGenTypes.po: DiagnosticCommonKinds.inc.h CodeGenTypes.po: StmtNodes.inc.h +CoverageMappingGen.o: AttrList.inc.h +CoverageMappingGen.o: Attrs.inc.h +CoverageMappingGen.o: CommentCommandList.inc.h +CoverageMappingGen.o: DeclNodes.inc.h +CoverageMappingGen.o: DiagnosticCommonKinds.inc.h +CoverageMappingGen.o: StmtNodes.inc.h +CoverageMappingGen.po: AttrList.inc.h +CoverageMappingGen.po: Attrs.inc.h +CoverageMappingGen.po: CommentCommandList.inc.h +CoverageMappingGen.po: DeclNodes.inc.h +CoverageMappingGen.po: DiagnosticCommonKinds.inc.h +CoverageMappingGen.po: StmtNodes.inc.h ItaniumCXXABI.o: AttrList.inc.h ItaniumCXXABI.o: Attrs.inc.h ItaniumCXXABI.o: CommentCommandList.inc.h @@ -513,18 +561,6 @@ MicrosoftCXXABI.po: CommentCommandList.inc.h MicrosoftCXXABI.po: DeclNodes.inc.h MicrosoftCXXABI.po: DiagnosticCommonKinds.inc.h MicrosoftCXXABI.po: StmtNodes.inc.h -MicrosoftVBTables.o: AttrList.inc.h -MicrosoftVBTables.o: Attrs.inc.h -MicrosoftVBTables.o: CommentCommandList.inc.h -MicrosoftVBTables.o: DeclNodes.inc.h -MicrosoftVBTables.o: DiagnosticCommonKinds.inc.h -MicrosoftVBTables.o: StmtNodes.inc.h -MicrosoftVBTables.po: AttrList.inc.h -MicrosoftVBTables.po: Attrs.inc.h -MicrosoftVBTables.po: CommentCommandList.inc.h -MicrosoftVBTables.po: DeclNodes.inc.h -MicrosoftVBTables.po: DiagnosticCommonKinds.inc.h -MicrosoftVBTables.po: StmtNodes.inc.h ModuleBuilder.o: AttrList.inc.h ModuleBuilder.o: Attrs.inc.h ModuleBuilder.o: CommentCommandList.inc.h @@ -537,6 +573,18 @@ ModuleBuilder.po: CommentCommandList.inc.h ModuleBuilder.po: DeclNodes.inc.h ModuleBuilder.po: DiagnosticCommonKinds.inc.h ModuleBuilder.po: StmtNodes.inc.h +SanitizerMetadata.o: AttrList.inc.h +SanitizerMetadata.o: Attrs.inc.h +SanitizerMetadata.o: CommentCommandList.inc.h +SanitizerMetadata.o: DeclNodes.inc.h +SanitizerMetadata.o: DiagnosticCommonKinds.inc.h +SanitizerMetadata.o: StmtNodes.inc.h +SanitizerMetadata.po: AttrList.inc.h +SanitizerMetadata.po: Attrs.inc.h +SanitizerMetadata.po: CommentCommandList.inc.h +SanitizerMetadata.po: DeclNodes.inc.h +SanitizerMetadata.po: DiagnosticCommonKinds.inc.h +SanitizerMetadata.po: StmtNodes.inc.h TargetInfo.o: AttrList.inc.h TargetInfo.o: Attrs.inc.h TargetInfo.o: CommentCommandList.inc.h diff --git a/lib/clang/libclangdriver/Makefile.depend b/lib/clang/libclangdriver/Makefile.depend index 6c6cde521e99..9c274550a15f 100644 --- a/lib/clang/libclangdriver/Makefile.depend +++ b/lib/clang/libclangdriver/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -15,14 +13,16 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree -CC1AsOptions.o: CC1AsOptions.inc.h -CC1AsOptions.po: CC1AsOptions.inc.h Compilation.o: DiagnosticCommonKinds.inc.h Compilation.o: DiagnosticDriverKinds.inc.h Compilation.o: Options.inc.h Compilation.po: DiagnosticCommonKinds.inc.h Compilation.po: DiagnosticDriverKinds.inc.h Compilation.po: Options.inc.h +CrossWindowsToolChain.o: DiagnosticCommonKinds.inc.h +CrossWindowsToolChain.o: Options.inc.h +CrossWindowsToolChain.po: DiagnosticCommonKinds.inc.h +CrossWindowsToolChain.po: Options.inc.h Driver.o: DiagnosticCommonKinds.inc.h Driver.o: DiagnosticDriverKinds.inc.h Driver.o: Options.inc.h @@ -31,6 +31,18 @@ Driver.po: DiagnosticDriverKinds.inc.h Driver.po: Options.inc.h DriverOptions.o: Options.inc.h DriverOptions.po: Options.inc.h +Job.o: DiagnosticCommonKinds.inc.h +Job.o: DiagnosticDriverKinds.inc.h +Job.po: DiagnosticCommonKinds.inc.h +Job.po: DiagnosticDriverKinds.inc.h +MSVCToolChain.o: DiagnosticCommonKinds.inc.h +MSVCToolChain.o: DiagnosticDriverKinds.inc.h +MSVCToolChain.o: Options.inc.h +MSVCToolChain.po: DiagnosticCommonKinds.inc.h +MSVCToolChain.po: DiagnosticDriverKinds.inc.h +MSVCToolChain.po: Options.inc.h +Multilib.o: Options.inc.h +Multilib.po: Options.inc.h SanitizerArgs.o: DiagnosticCommonKinds.inc.h SanitizerArgs.o: DiagnosticDriverKinds.inc.h SanitizerArgs.o: Options.inc.h @@ -51,16 +63,8 @@ ToolChains.po: DiagnosticDriverKinds.inc.h ToolChains.po: Options.inc.h Tools.o: DiagnosticCommonKinds.inc.h Tools.o: DiagnosticDriverKinds.inc.h -Tools.o: DiagnosticSemaKinds.inc.h Tools.o: Options.inc.h Tools.po: DiagnosticCommonKinds.inc.h Tools.po: DiagnosticDriverKinds.inc.h -Tools.po: DiagnosticSemaKinds.inc.h Tools.po: Options.inc.h -WindowsToolChain.o: DiagnosticCommonKinds.inc.h -WindowsToolChain.o: DiagnosticDriverKinds.inc.h -WindowsToolChain.o: Options.inc.h -WindowsToolChain.po: DiagnosticCommonKinds.inc.h -WindowsToolChain.po: DiagnosticDriverKinds.inc.h -WindowsToolChain.po: Options.inc.h .endif diff --git a/lib/clang/libclangedit/Makefile.depend b/lib/clang/libclangedit/Makefile.depend index 05b479b95959..e3ab3a61ea3c 100644 --- a/lib/clang/libclangedit/Makefile.depend +++ b/lib/clang/libclangedit/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libclangfrontend/Makefile.depend b/lib/clang/libclangfrontend/Makefile.depend index 870ea103360b..a0f6b20782bf 100644 --- a/lib/clang/libclangfrontend/Makefile.depend +++ b/lib/clang/libclangfrontend/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -15,10 +13,16 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +ASTConsumers.o: AttrList.inc.h +ASTConsumers.o: AttrVisitor.inc.h +ASTConsumers.o: Attrs.inc.h ASTConsumers.o: CommentCommandList.inc.h ASTConsumers.o: DeclNodes.inc.h ASTConsumers.o: DiagnosticCommonKinds.inc.h ASTConsumers.o: StmtNodes.inc.h +ASTConsumers.po: AttrList.inc.h +ASTConsumers.po: AttrVisitor.inc.h +ASTConsumers.po: Attrs.inc.h ASTConsumers.po: CommentCommandList.inc.h ASTConsumers.po: DeclNodes.inc.h ASTConsumers.po: DiagnosticCommonKinds.inc.h @@ -53,12 +57,16 @@ CacheTokens.o: DiagnosticCommonKinds.inc.h CacheTokens.po: DiagnosticCommonKinds.inc.h ChainedDiagnosticConsumer.o: DiagnosticCommonKinds.inc.h ChainedDiagnosticConsumer.po: DiagnosticCommonKinds.inc.h +ChainedIncludesSource.o: AttrList.inc.h ChainedIncludesSource.o: AttrParsedAttrList.inc.h +ChainedIncludesSource.o: Attrs.inc.h ChainedIncludesSource.o: CommentCommandList.inc.h ChainedIncludesSource.o: DeclNodes.inc.h ChainedIncludesSource.o: DiagnosticCommonKinds.inc.h ChainedIncludesSource.o: StmtNodes.inc.h +ChainedIncludesSource.po: AttrList.inc.h ChainedIncludesSource.po: AttrParsedAttrList.inc.h +ChainedIncludesSource.po: Attrs.inc.h ChainedIncludesSource.po: CommentCommandList.inc.h ChainedIncludesSource.po: DeclNodes.inc.h ChainedIncludesSource.po: DiagnosticCommonKinds.inc.h @@ -79,16 +87,22 @@ CompilerInstance.po: DeclNodes.inc.h CompilerInstance.po: DiagnosticCommonKinds.inc.h CompilerInstance.po: DiagnosticFrontendKinds.inc.h CompilerInstance.po: StmtNodes.inc.h +CompilerInvocation.o: AttrList.inc.h CompilerInvocation.o: AttrParsedAttrList.inc.h +CompilerInvocation.o: Attrs.inc.h CompilerInvocation.o: DeclNodes.inc.h CompilerInvocation.o: DiagnosticCommonKinds.inc.h CompilerInvocation.o: DiagnosticDriverKinds.inc.h +CompilerInvocation.o: DiagnosticFrontendKinds.inc.h CompilerInvocation.o: Options.inc.h CompilerInvocation.o: StmtNodes.inc.h +CompilerInvocation.po: AttrList.inc.h CompilerInvocation.po: AttrParsedAttrList.inc.h +CompilerInvocation.po: Attrs.inc.h CompilerInvocation.po: DeclNodes.inc.h CompilerInvocation.po: DiagnosticCommonKinds.inc.h CompilerInvocation.po: DiagnosticDriverKinds.inc.h +CompilerInvocation.po: DiagnosticFrontendKinds.inc.h CompilerInvocation.po: Options.inc.h CompilerInvocation.po: StmtNodes.inc.h CreateInvocationFromCommandLine.o: DiagnosticCommonKinds.inc.h @@ -97,25 +111,39 @@ CreateInvocationFromCommandLine.o: Options.inc.h CreateInvocationFromCommandLine.po: DiagnosticCommonKinds.inc.h CreateInvocationFromCommandLine.po: DiagnosticFrontendKinds.inc.h CreateInvocationFromCommandLine.po: Options.inc.h +DependencyFile.o: AttrList.inc.h +DependencyFile.o: AttrParsedAttrList.inc.h +DependencyFile.o: Attrs.inc.h +DependencyFile.o: DeclNodes.inc.h DependencyFile.o: DiagnosticCommonKinds.inc.h DependencyFile.o: DiagnosticFrontendKinds.inc.h DependencyFile.o: DiagnosticLexKinds.inc.h +DependencyFile.o: StmtNodes.inc.h +DependencyFile.po: AttrList.inc.h +DependencyFile.po: AttrParsedAttrList.inc.h +DependencyFile.po: Attrs.inc.h +DependencyFile.po: DeclNodes.inc.h DependencyFile.po: DiagnosticCommonKinds.inc.h DependencyFile.po: DiagnosticFrontendKinds.inc.h DependencyFile.po: DiagnosticLexKinds.inc.h +DependencyFile.po: StmtNodes.inc.h DependencyGraph.o: DiagnosticCommonKinds.inc.h DependencyGraph.o: DiagnosticFrontendKinds.inc.h DependencyGraph.po: DiagnosticCommonKinds.inc.h DependencyGraph.po: DiagnosticFrontendKinds.inc.h DiagnosticRenderer.o: DiagnosticCommonKinds.inc.h DiagnosticRenderer.po: DiagnosticCommonKinds.inc.h +FrontendAction.o: AttrList.inc.h FrontendAction.o: AttrParsedAttrList.inc.h +FrontendAction.o: Attrs.inc.h FrontendAction.o: CommentCommandList.inc.h FrontendAction.o: DeclNodes.inc.h FrontendAction.o: DiagnosticCommonKinds.inc.h FrontendAction.o: DiagnosticFrontendKinds.inc.h FrontendAction.o: StmtNodes.inc.h +FrontendAction.po: AttrList.inc.h FrontendAction.po: AttrParsedAttrList.inc.h +FrontendAction.po: Attrs.inc.h FrontendAction.po: CommentCommandList.inc.h FrontendAction.po: DeclNodes.inc.h FrontendAction.po: DiagnosticCommonKinds.inc.h @@ -143,12 +171,16 @@ HeaderIncludeGen.po: DiagnosticCommonKinds.inc.h HeaderIncludeGen.po: DiagnosticFrontendKinds.inc.h InitHeaderSearch.o: DiagnosticCommonKinds.inc.h InitHeaderSearch.po: DiagnosticCommonKinds.inc.h +InitPreprocessor.o: AttrList.inc.h InitPreprocessor.o: AttrParsedAttrList.inc.h +InitPreprocessor.o: Attrs.inc.h InitPreprocessor.o: DeclNodes.inc.h InitPreprocessor.o: DiagnosticCommonKinds.inc.h InitPreprocessor.o: DiagnosticFrontendKinds.inc.h InitPreprocessor.o: StmtNodes.inc.h +InitPreprocessor.po: AttrList.inc.h InitPreprocessor.po: AttrParsedAttrList.inc.h +InitPreprocessor.po: Attrs.inc.h InitPreprocessor.po: DeclNodes.inc.h InitPreprocessor.po: DiagnosticCommonKinds.inc.h InitPreprocessor.po: DiagnosticFrontendKinds.inc.h @@ -159,12 +191,26 @@ LayoutOverrideSource.po: DeclNodes.inc.h LayoutOverrideSource.po: DiagnosticCommonKinds.inc.h LogDiagnosticPrinter.o: DiagnosticCommonKinds.inc.h LogDiagnosticPrinter.po: DiagnosticCommonKinds.inc.h +ModuleDependencyCollector.o: AttrList.inc.h +ModuleDependencyCollector.o: AttrParsedAttrList.inc.h +ModuleDependencyCollector.o: Attrs.inc.h +ModuleDependencyCollector.o: DeclNodes.inc.h +ModuleDependencyCollector.o: DiagnosticCommonKinds.inc.h +ModuleDependencyCollector.o: StmtNodes.inc.h +ModuleDependencyCollector.po: AttrList.inc.h +ModuleDependencyCollector.po: AttrParsedAttrList.inc.h +ModuleDependencyCollector.po: Attrs.inc.h +ModuleDependencyCollector.po: DeclNodes.inc.h +ModuleDependencyCollector.po: DiagnosticCommonKinds.inc.h +ModuleDependencyCollector.po: StmtNodes.inc.h MultiplexConsumer.o: DiagnosticCommonKinds.inc.h MultiplexConsumer.po: DiagnosticCommonKinds.inc.h PrintPreprocessedOutput.o: DiagnosticCommonKinds.inc.h PrintPreprocessedOutput.po: DiagnosticCommonKinds.inc.h SerializedDiagnosticPrinter.o: DiagnosticCommonKinds.inc.h +SerializedDiagnosticPrinter.o: DiagnosticFrontendKinds.inc.h SerializedDiagnosticPrinter.po: DiagnosticCommonKinds.inc.h +SerializedDiagnosticPrinter.po: DiagnosticFrontendKinds.inc.h TextDiagnostic.o: DiagnosticCommonKinds.inc.h TextDiagnostic.po: DiagnosticCommonKinds.inc.h TextDiagnosticBuffer.o: DiagnosticCommonKinds.inc.h @@ -175,12 +221,4 @@ VerifyDiagnosticConsumer.o: DiagnosticCommonKinds.inc.h VerifyDiagnosticConsumer.o: DiagnosticFrontendKinds.inc.h VerifyDiagnosticConsumer.po: DiagnosticCommonKinds.inc.h VerifyDiagnosticConsumer.po: DiagnosticFrontendKinds.inc.h -Warnings.o: DiagnosticCommonKinds.inc.h -Warnings.o: DiagnosticFrontendKinds.inc.h -Warnings.o: DiagnosticLexKinds.inc.h -Warnings.o: DiagnosticSemaKinds.inc.h -Warnings.po: DiagnosticCommonKinds.inc.h -Warnings.po: DiagnosticFrontendKinds.inc.h -Warnings.po: DiagnosticLexKinds.inc.h -Warnings.po: DiagnosticSemaKinds.inc.h .endif diff --git a/lib/clang/libclangfrontendtool/Makefile.depend b/lib/clang/libclangfrontendtool/Makefile.depend index b3f9b2b610af..a775732eee23 100644 --- a/lib/clang/libclangfrontendtool/Makefile.depend +++ b/lib/clang/libclangfrontendtool/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -15,10 +13,16 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +ExecuteCompilerInvocation.o: CommentCommandList.inc.h +ExecuteCompilerInvocation.o: DeclNodes.inc.h ExecuteCompilerInvocation.o: DiagnosticCommonKinds.inc.h ExecuteCompilerInvocation.o: DiagnosticFrontendKinds.inc.h ExecuteCompilerInvocation.o: Options.inc.h +ExecuteCompilerInvocation.o: StmtNodes.inc.h +ExecuteCompilerInvocation.po: CommentCommandList.inc.h +ExecuteCompilerInvocation.po: DeclNodes.inc.h ExecuteCompilerInvocation.po: DiagnosticCommonKinds.inc.h ExecuteCompilerInvocation.po: DiagnosticFrontendKinds.inc.h ExecuteCompilerInvocation.po: Options.inc.h +ExecuteCompilerInvocation.po: StmtNodes.inc.h .endif diff --git a/lib/clang/libclanglex/Makefile.depend b/lib/clang/libclanglex/Makefile.depend index 362b138d509d..58c03db48ec3 100644 --- a/lib/clang/libclanglex/Makefile.depend +++ b/lib/clang/libclanglex/Makefile.depend @@ -1,10 +1,9 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ + lib/clang/include.host \ lib/libc++ \ lib/msun \ usr.bin/clang/clang-tblgen.host \ @@ -15,7 +14,9 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree HeaderSearch.o: DiagnosticCommonKinds.inc.h +HeaderSearch.o: DiagnosticLexKinds.inc.h HeaderSearch.po: DiagnosticCommonKinds.inc.h +HeaderSearch.po: DiagnosticLexKinds.inc.h Lexer.o: DiagnosticCommonKinds.inc.h Lexer.o: DiagnosticLexKinds.inc.h Lexer.po: DiagnosticCommonKinds.inc.h @@ -52,10 +53,8 @@ PPLexerChange.o: DiagnosticCommonKinds.inc.h PPLexerChange.o: DiagnosticLexKinds.inc.h PPLexerChange.po: DiagnosticCommonKinds.inc.h PPLexerChange.po: DiagnosticLexKinds.inc.h -PPMacroExpansion.o: AttrSpellings.inc.h PPMacroExpansion.o: DiagnosticCommonKinds.inc.h PPMacroExpansion.o: DiagnosticLexKinds.inc.h -PPMacroExpansion.po: AttrSpellings.inc.h PPMacroExpansion.po: DiagnosticCommonKinds.inc.h PPMacroExpansion.po: DiagnosticLexKinds.inc.h PTHLexer.o: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangparse/Makefile.depend b/lib/clang/libclangparse/Makefile.depend index 263adfc50223..46723537919f 100644 --- a/lib/clang/libclangparse/Makefile.depend +++ b/lib/clang/libclangparse/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -44,22 +42,20 @@ ParseCXXInlineMethods.po: DeclNodes.inc.h ParseCXXInlineMethods.po: DiagnosticCommonKinds.inc.h ParseCXXInlineMethods.po: DiagnosticParseKinds.inc.h ParseCXXInlineMethods.po: StmtNodes.inc.h -ParseDecl.o: AttrIdentifierArg.inc.h -ParseDecl.o: AttrLateParsed.inc.h ParseDecl.o: AttrList.inc.h ParseDecl.o: AttrParsedAttrList.inc.h -ParseDecl.o: AttrTypeArg.inc.h +ParseDecl.o: AttrParserStringSwitches.inc.h ParseDecl.o: Attrs.inc.h +ParseDecl.o: CommentCommandList.inc.h ParseDecl.o: DeclNodes.inc.h ParseDecl.o: DiagnosticCommonKinds.inc.h ParseDecl.o: DiagnosticParseKinds.inc.h ParseDecl.o: StmtNodes.inc.h -ParseDecl.po: AttrIdentifierArg.inc.h -ParseDecl.po: AttrLateParsed.inc.h ParseDecl.po: AttrList.inc.h ParseDecl.po: AttrParsedAttrList.inc.h -ParseDecl.po: AttrTypeArg.inc.h +ParseDecl.po: AttrParserStringSwitches.inc.h ParseDecl.po: Attrs.inc.h +ParseDecl.po: CommentCommandList.inc.h ParseDecl.po: DeclNodes.inc.h ParseDecl.po: DiagnosticCommonKinds.inc.h ParseDecl.po: DiagnosticParseKinds.inc.h @@ -67,6 +63,7 @@ ParseDecl.po: StmtNodes.inc.h ParseDeclCXX.o: AttrList.inc.h ParseDeclCXX.o: AttrParsedAttrList.inc.h ParseDeclCXX.o: Attrs.inc.h +ParseDeclCXX.o: CommentCommandList.inc.h ParseDeclCXX.o: DeclNodes.inc.h ParseDeclCXX.o: DiagnosticCommonKinds.inc.h ParseDeclCXX.o: DiagnosticParseKinds.inc.h @@ -75,6 +72,7 @@ ParseDeclCXX.o: StmtNodes.inc.h ParseDeclCXX.po: AttrList.inc.h ParseDeclCXX.po: AttrParsedAttrList.inc.h ParseDeclCXX.po: Attrs.inc.h +ParseDeclCXX.po: CommentCommandList.inc.h ParseDeclCXX.po: DeclNodes.inc.h ParseDeclCXX.po: DiagnosticCommonKinds.inc.h ParseDeclCXX.po: DiagnosticParseKinds.inc.h @@ -83,6 +81,7 @@ ParseDeclCXX.po: StmtNodes.inc.h ParseExpr.o: AttrList.inc.h ParseExpr.o: AttrParsedAttrList.inc.h ParseExpr.o: Attrs.inc.h +ParseExpr.o: CommentCommandList.inc.h ParseExpr.o: DeclNodes.inc.h ParseExpr.o: DiagnosticCommonKinds.inc.h ParseExpr.o: DiagnosticParseKinds.inc.h @@ -90,6 +89,7 @@ ParseExpr.o: StmtNodes.inc.h ParseExpr.po: AttrList.inc.h ParseExpr.po: AttrParsedAttrList.inc.h ParseExpr.po: Attrs.inc.h +ParseExpr.po: CommentCommandList.inc.h ParseExpr.po: DeclNodes.inc.h ParseExpr.po: DiagnosticCommonKinds.inc.h ParseExpr.po: DiagnosticParseKinds.inc.h @@ -97,6 +97,7 @@ ParseExpr.po: StmtNodes.inc.h ParseExprCXX.o: AttrList.inc.h ParseExprCXX.o: AttrParsedAttrList.inc.h ParseExprCXX.o: Attrs.inc.h +ParseExprCXX.o: CommentCommandList.inc.h ParseExprCXX.o: DeclNodes.inc.h ParseExprCXX.o: DiagnosticCommonKinds.inc.h ParseExprCXX.o: DiagnosticParseKinds.inc.h @@ -104,6 +105,7 @@ ParseExprCXX.o: StmtNodes.inc.h ParseExprCXX.po: AttrList.inc.h ParseExprCXX.po: AttrParsedAttrList.inc.h ParseExprCXX.po: Attrs.inc.h +ParseExprCXX.po: CommentCommandList.inc.h ParseExprCXX.po: DeclNodes.inc.h ParseExprCXX.po: DiagnosticCommonKinds.inc.h ParseExprCXX.po: DiagnosticParseKinds.inc.h @@ -139,6 +141,7 @@ ParseObjc.po: StmtNodes.inc.h ParseOpenMP.o: AttrList.inc.h ParseOpenMP.o: AttrParsedAttrList.inc.h ParseOpenMP.o: Attrs.inc.h +ParseOpenMP.o: CommentCommandList.inc.h ParseOpenMP.o: DeclNodes.inc.h ParseOpenMP.o: DiagnosticCommonKinds.inc.h ParseOpenMP.o: DiagnosticParseKinds.inc.h @@ -146,6 +149,7 @@ ParseOpenMP.o: StmtNodes.inc.h ParseOpenMP.po: AttrList.inc.h ParseOpenMP.po: AttrParsedAttrList.inc.h ParseOpenMP.po: Attrs.inc.h +ParseOpenMP.po: CommentCommandList.inc.h ParseOpenMP.po: DeclNodes.inc.h ParseOpenMP.po: DiagnosticCommonKinds.inc.h ParseOpenMP.po: DiagnosticParseKinds.inc.h @@ -153,6 +157,7 @@ ParseOpenMP.po: StmtNodes.inc.h ParsePragma.o: AttrList.inc.h ParsePragma.o: AttrParsedAttrList.inc.h ParsePragma.o: Attrs.inc.h +ParsePragma.o: CommentCommandList.inc.h ParsePragma.o: DeclNodes.inc.h ParsePragma.o: DiagnosticCommonKinds.inc.h ParsePragma.o: DiagnosticParseKinds.inc.h @@ -160,6 +165,7 @@ ParsePragma.o: StmtNodes.inc.h ParsePragma.po: AttrList.inc.h ParsePragma.po: AttrParsedAttrList.inc.h ParsePragma.po: Attrs.inc.h +ParsePragma.po: CommentCommandList.inc.h ParsePragma.po: DeclNodes.inc.h ParsePragma.po: DiagnosticCommonKinds.inc.h ParsePragma.po: DiagnosticParseKinds.inc.h @@ -180,6 +186,22 @@ ParseStmt.po: DeclNodes.inc.h ParseStmt.po: DiagnosticCommonKinds.inc.h ParseStmt.po: DiagnosticParseKinds.inc.h ParseStmt.po: StmtNodes.inc.h +ParseStmtAsm.o: AttrList.inc.h +ParseStmtAsm.o: AttrParsedAttrList.inc.h +ParseStmtAsm.o: Attrs.inc.h +ParseStmtAsm.o: CommentCommandList.inc.h +ParseStmtAsm.o: DeclNodes.inc.h +ParseStmtAsm.o: DiagnosticCommonKinds.inc.h +ParseStmtAsm.o: DiagnosticParseKinds.inc.h +ParseStmtAsm.o: StmtNodes.inc.h +ParseStmtAsm.po: AttrList.inc.h +ParseStmtAsm.po: AttrParsedAttrList.inc.h +ParseStmtAsm.po: Attrs.inc.h +ParseStmtAsm.po: CommentCommandList.inc.h +ParseStmtAsm.po: DeclNodes.inc.h +ParseStmtAsm.po: DiagnosticCommonKinds.inc.h +ParseStmtAsm.po: DiagnosticParseKinds.inc.h +ParseStmtAsm.po: StmtNodes.inc.h ParseTemplate.o: AttrList.inc.h ParseTemplate.o: AttrParsedAttrList.inc.h ParseTemplate.o: Attrs.inc.h @@ -211,6 +233,7 @@ ParseTentative.po: StmtNodes.inc.h Parser.o: AttrList.inc.h Parser.o: AttrParsedAttrList.inc.h Parser.o: Attrs.inc.h +Parser.o: CommentCommandList.inc.h Parser.o: DeclNodes.inc.h Parser.o: DiagnosticCommonKinds.inc.h Parser.o: DiagnosticParseKinds.inc.h @@ -218,6 +241,7 @@ Parser.o: StmtNodes.inc.h Parser.po: AttrList.inc.h Parser.po: AttrParsedAttrList.inc.h Parser.po: Attrs.inc.h +Parser.po: CommentCommandList.inc.h Parser.po: DeclNodes.inc.h Parser.po: DiagnosticCommonKinds.inc.h Parser.po: DiagnosticParseKinds.inc.h diff --git a/lib/clang/libclangrewrite/Makefile.depend b/lib/clang/libclangrewrite/Makefile.depend index ef170d1d6f69..099fc62a5a3c 100644 --- a/lib/clang/libclangrewrite/Makefile.depend +++ b/lib/clang/libclangrewrite/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libclangrewritefrontend/Makefile.depend b/lib/clang/libclangrewritefrontend/Makefile.depend index 8fbe823dfb30..f4dda4dffc08 100644 --- a/lib/clang/libclangrewritefrontend/Makefile.depend +++ b/lib/clang/libclangrewritefrontend/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -21,6 +19,7 @@ FixItRewriter.po: DiagnosticFrontendKinds.inc.h FrontendActions.o: AttrList.inc.h FrontendActions.o: AttrParsedAttrList.inc.h FrontendActions.o: Attrs.inc.h +FrontendActions.o: CommentCommandList.inc.h FrontendActions.o: DeclNodes.inc.h FrontendActions.o: DiagnosticCommonKinds.inc.h FrontendActions.o: DiagnosticFrontendKinds.inc.h @@ -28,6 +27,7 @@ FrontendActions.o: StmtNodes.inc.h FrontendActions.po: AttrList.inc.h FrontendActions.po: AttrParsedAttrList.inc.h FrontendActions.po: Attrs.inc.h +FrontendActions.po: CommentCommandList.inc.h FrontendActions.po: DeclNodes.inc.h FrontendActions.po: DiagnosticCommonKinds.inc.h FrontendActions.po: DiagnosticFrontendKinds.inc.h @@ -44,30 +44,6 @@ InclusionRewriter.o: DiagnosticCommonKinds.inc.h InclusionRewriter.po: DiagnosticCommonKinds.inc.h RewriteMacros.o: DiagnosticCommonKinds.inc.h RewriteMacros.po: DiagnosticCommonKinds.inc.h -RewriteModernObjC.o: AttrList.inc.h -RewriteModernObjC.o: Attrs.inc.h -RewriteModernObjC.o: CommentCommandList.inc.h -RewriteModernObjC.o: DeclNodes.inc.h -RewriteModernObjC.o: DiagnosticCommonKinds.inc.h -RewriteModernObjC.o: StmtNodes.inc.h -RewriteModernObjC.po: AttrList.inc.h -RewriteModernObjC.po: Attrs.inc.h -RewriteModernObjC.po: CommentCommandList.inc.h -RewriteModernObjC.po: DeclNodes.inc.h -RewriteModernObjC.po: DiagnosticCommonKinds.inc.h -RewriteModernObjC.po: StmtNodes.inc.h -RewriteObjC.o: AttrList.inc.h -RewriteObjC.o: Attrs.inc.h -RewriteObjC.o: CommentCommandList.inc.h -RewriteObjC.o: DeclNodes.inc.h -RewriteObjC.o: DiagnosticCommonKinds.inc.h -RewriteObjC.o: StmtNodes.inc.h -RewriteObjC.po: AttrList.inc.h -RewriteObjC.po: Attrs.inc.h -RewriteObjC.po: CommentCommandList.inc.h -RewriteObjC.po: DeclNodes.inc.h -RewriteObjC.po: DiagnosticCommonKinds.inc.h -RewriteObjC.po: StmtNodes.inc.h RewriteTest.o: DiagnosticCommonKinds.inc.h RewriteTest.po: DiagnosticCommonKinds.inc.h .endif diff --git a/lib/clang/libclangsema/Makefile.depend b/lib/clang/libclangsema/Makefile.depend index 8e45ce4d048b..3d2730b75a3f 100644 --- a/lib/clang/libclangsema/Makefile.depend +++ b/lib/clang/libclangsema/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -16,6 +14,7 @@ DIRDEPS = \ # local dependencies - needed for -jN in clean tree AnalysisBasedWarnings.o: AttrList.inc.h AnalysisBasedWarnings.o: AttrParsedAttrList.inc.h +AnalysisBasedWarnings.o: AttrVisitor.inc.h AnalysisBasedWarnings.o: Attrs.inc.h AnalysisBasedWarnings.o: CommentCommandList.inc.h AnalysisBasedWarnings.o: DeclNodes.inc.h @@ -24,27 +23,34 @@ AnalysisBasedWarnings.o: DiagnosticSemaKinds.inc.h AnalysisBasedWarnings.o: StmtNodes.inc.h AnalysisBasedWarnings.po: AttrList.inc.h AnalysisBasedWarnings.po: AttrParsedAttrList.inc.h +AnalysisBasedWarnings.po: AttrVisitor.inc.h AnalysisBasedWarnings.po: Attrs.inc.h AnalysisBasedWarnings.po: CommentCommandList.inc.h AnalysisBasedWarnings.po: DeclNodes.inc.h AnalysisBasedWarnings.po: DiagnosticCommonKinds.inc.h AnalysisBasedWarnings.po: DiagnosticSemaKinds.inc.h AnalysisBasedWarnings.po: StmtNodes.inc.h +AttributeList.o: AttrList.inc.h AttributeList.o: AttrParsedAttrImpl.inc.h AttributeList.o: AttrParsedAttrKinds.inc.h AttributeList.o: AttrParsedAttrList.inc.h AttributeList.o: AttrSpellingListIndex.inc.h +AttributeList.o: Attrs.inc.h AttributeList.o: CommentCommandList.inc.h AttributeList.o: DeclNodes.inc.h AttributeList.o: DiagnosticCommonKinds.inc.h +AttributeList.o: DiagnosticSemaKinds.inc.h AttributeList.o: StmtNodes.inc.h +AttributeList.po: AttrList.inc.h AttributeList.po: AttrParsedAttrImpl.inc.h AttributeList.po: AttrParsedAttrKinds.inc.h AttributeList.po: AttrParsedAttrList.inc.h AttributeList.po: AttrSpellingListIndex.inc.h +AttributeList.po: Attrs.inc.h AttributeList.po: CommentCommandList.inc.h AttributeList.po: DeclNodes.inc.h AttributeList.po: DiagnosticCommonKinds.inc.h +AttributeList.po: DiagnosticSemaKinds.inc.h AttributeList.po: StmtNodes.inc.h CodeCompleteConsumer.o: AttrList.inc.h CodeCompleteConsumer.o: AttrParsedAttrList.inc.h @@ -120,11 +126,17 @@ MultiplexExternalSemaSource.po: Attrs.inc.h MultiplexExternalSemaSource.po: DeclNodes.inc.h MultiplexExternalSemaSource.po: DiagnosticCommonKinds.inc.h MultiplexExternalSemaSource.po: StmtNodes.inc.h +Scope.o: DeclNodes.inc.h Scope.o: DiagnosticCommonKinds.inc.h +Scope.po: DeclNodes.inc.h Scope.po: DiagnosticCommonKinds.inc.h +ScopeInfo.o: AttrList.inc.h +ScopeInfo.o: Attrs.inc.h ScopeInfo.o: DeclNodes.inc.h ScopeInfo.o: DiagnosticCommonKinds.inc.h ScopeInfo.o: StmtNodes.inc.h +ScopeInfo.po: AttrList.inc.h +ScopeInfo.po: Attrs.inc.h ScopeInfo.po: DeclNodes.inc.h ScopeInfo.po: DiagnosticCommonKinds.inc.h ScopeInfo.po: StmtNodes.inc.h @@ -178,6 +190,22 @@ SemaAttr.po: DeclNodes.inc.h SemaAttr.po: DiagnosticCommonKinds.inc.h SemaAttr.po: DiagnosticSemaKinds.inc.h SemaAttr.po: StmtNodes.inc.h +SemaCUDA.o: AttrList.inc.h +SemaCUDA.o: AttrParsedAttrList.inc.h +SemaCUDA.o: Attrs.inc.h +SemaCUDA.o: CommentCommandList.inc.h +SemaCUDA.o: DeclNodes.inc.h +SemaCUDA.o: DiagnosticCommonKinds.inc.h +SemaCUDA.o: DiagnosticSemaKinds.inc.h +SemaCUDA.o: StmtNodes.inc.h +SemaCUDA.po: AttrList.inc.h +SemaCUDA.po: AttrParsedAttrList.inc.h +SemaCUDA.po: Attrs.inc.h +SemaCUDA.po: CommentCommandList.inc.h +SemaCUDA.po: DeclNodes.inc.h +SemaCUDA.po: DiagnosticCommonKinds.inc.h +SemaCUDA.po: DiagnosticSemaKinds.inc.h +SemaCUDA.po: StmtNodes.inc.h SemaCXXScopeSpec.o: AttrList.inc.h SemaCXXScopeSpec.o: AttrParsedAttrList.inc.h SemaCXXScopeSpec.o: Attrs.inc.h @@ -282,6 +310,7 @@ SemaDeclAttr.po: DiagnosticSemaKinds.inc.h SemaDeclAttr.po: StmtNodes.inc.h SemaDeclCXX.o: AttrList.inc.h SemaDeclCXX.o: AttrParsedAttrList.inc.h +SemaDeclCXX.o: AttrVisitor.inc.h SemaDeclCXX.o: Attrs.inc.h SemaDeclCXX.o: CommentCommandList.inc.h SemaDeclCXX.o: DeclNodes.inc.h @@ -290,6 +319,7 @@ SemaDeclCXX.o: DiagnosticSemaKinds.inc.h SemaDeclCXX.o: StmtNodes.inc.h SemaDeclCXX.po: AttrList.inc.h SemaDeclCXX.po: AttrParsedAttrList.inc.h +SemaDeclCXX.po: AttrVisitor.inc.h SemaDeclCXX.po: Attrs.inc.h SemaDeclCXX.po: CommentCommandList.inc.h SemaDeclCXX.po: DeclNodes.inc.h @@ -298,6 +328,7 @@ SemaDeclCXX.po: DiagnosticSemaKinds.inc.h SemaDeclCXX.po: StmtNodes.inc.h SemaDeclObjC.o: AttrList.inc.h SemaDeclObjC.o: AttrParsedAttrList.inc.h +SemaDeclObjC.o: AttrVisitor.inc.h SemaDeclObjC.o: Attrs.inc.h SemaDeclObjC.o: CommentCommandList.inc.h SemaDeclObjC.o: DeclNodes.inc.h @@ -306,6 +337,7 @@ SemaDeclObjC.o: DiagnosticSemaKinds.inc.h SemaDeclObjC.o: StmtNodes.inc.h SemaDeclObjC.po: AttrList.inc.h SemaDeclObjC.po: AttrParsedAttrList.inc.h +SemaDeclObjC.po: AttrVisitor.inc.h SemaDeclObjC.po: Attrs.inc.h SemaDeclObjC.po: CommentCommandList.inc.h SemaDeclObjC.po: DeclNodes.inc.h @@ -330,6 +362,7 @@ SemaExceptionSpec.po: DiagnosticSemaKinds.inc.h SemaExceptionSpec.po: StmtNodes.inc.h SemaExpr.o: AttrList.inc.h SemaExpr.o: AttrParsedAttrList.inc.h +SemaExpr.o: AttrVisitor.inc.h SemaExpr.o: Attrs.inc.h SemaExpr.o: CommentCommandList.inc.h SemaExpr.o: DeclNodes.inc.h @@ -338,6 +371,7 @@ SemaExpr.o: DiagnosticSemaKinds.inc.h SemaExpr.o: StmtNodes.inc.h SemaExpr.po: AttrList.inc.h SemaExpr.po: AttrParsedAttrList.inc.h +SemaExpr.po: AttrVisitor.inc.h SemaExpr.po: Attrs.inc.h SemaExpr.po: CommentCommandList.inc.h SemaExpr.po: DeclNodes.inc.h @@ -346,6 +380,7 @@ SemaExpr.po: DiagnosticSemaKinds.inc.h SemaExpr.po: StmtNodes.inc.h SemaExprCXX.o: AttrList.inc.h SemaExprCXX.o: AttrParsedAttrList.inc.h +SemaExprCXX.o: AttrVisitor.inc.h SemaExprCXX.o: Attrs.inc.h SemaExprCXX.o: CommentCommandList.inc.h SemaExprCXX.o: DeclNodes.inc.h @@ -354,6 +389,7 @@ SemaExprCXX.o: DiagnosticSemaKinds.inc.h SemaExprCXX.o: StmtNodes.inc.h SemaExprCXX.po: AttrList.inc.h SemaExprCXX.po: AttrParsedAttrList.inc.h +SemaExprCXX.po: AttrVisitor.inc.h SemaExprCXX.po: Attrs.inc.h SemaExprCXX.po: CommentCommandList.inc.h SemaExprCXX.po: DeclNodes.inc.h @@ -520,6 +556,7 @@ SemaPseudoObject.po: DiagnosticSemaKinds.inc.h SemaPseudoObject.po: StmtNodes.inc.h SemaStmt.o: AttrList.inc.h SemaStmt.o: AttrParsedAttrList.inc.h +SemaStmt.o: AttrVisitor.inc.h SemaStmt.o: Attrs.inc.h SemaStmt.o: CommentCommandList.inc.h SemaStmt.o: DeclNodes.inc.h @@ -529,6 +566,7 @@ SemaStmt.o: DiagnosticSemaKinds.inc.h SemaStmt.o: StmtNodes.inc.h SemaStmt.po: AttrList.inc.h SemaStmt.po: AttrParsedAttrList.inc.h +SemaStmt.po: AttrVisitor.inc.h SemaStmt.po: Attrs.inc.h SemaStmt.po: CommentCommandList.inc.h SemaStmt.po: DeclNodes.inc.h @@ -570,6 +608,7 @@ SemaStmtAttr.po: DiagnosticSemaKinds.inc.h SemaStmtAttr.po: StmtNodes.inc.h SemaTemplate.o: AttrList.inc.h SemaTemplate.o: AttrParsedAttrList.inc.h +SemaTemplate.o: AttrVisitor.inc.h SemaTemplate.o: Attrs.inc.h SemaTemplate.o: CommentCommandList.inc.h SemaTemplate.o: DeclNodes.inc.h @@ -578,6 +617,7 @@ SemaTemplate.o: DiagnosticSemaKinds.inc.h SemaTemplate.o: StmtNodes.inc.h SemaTemplate.po: AttrList.inc.h SemaTemplate.po: AttrParsedAttrList.inc.h +SemaTemplate.po: AttrVisitor.inc.h SemaTemplate.po: Attrs.inc.h SemaTemplate.po: CommentCommandList.inc.h SemaTemplate.po: DeclNodes.inc.h @@ -636,6 +676,7 @@ SemaTemplateInstantiateDecl.po: DiagnosticSemaKinds.inc.h SemaTemplateInstantiateDecl.po: StmtNodes.inc.h SemaTemplateVariadic.o: AttrList.inc.h SemaTemplateVariadic.o: AttrParsedAttrList.inc.h +SemaTemplateVariadic.o: AttrVisitor.inc.h SemaTemplateVariadic.o: Attrs.inc.h SemaTemplateVariadic.o: CommentCommandList.inc.h SemaTemplateVariadic.o: DeclNodes.inc.h @@ -644,6 +685,7 @@ SemaTemplateVariadic.o: DiagnosticSemaKinds.inc.h SemaTemplateVariadic.o: StmtNodes.inc.h SemaTemplateVariadic.po: AttrList.inc.h SemaTemplateVariadic.po: AttrParsedAttrList.inc.h +SemaTemplateVariadic.po: AttrVisitor.inc.h SemaTemplateVariadic.po: Attrs.inc.h SemaTemplateVariadic.po: CommentCommandList.inc.h SemaTemplateVariadic.po: DeclNodes.inc.h @@ -668,22 +710,6 @@ SemaType.po: DiagnosticCommonKinds.inc.h SemaType.po: DiagnosticParseKinds.inc.h SemaType.po: DiagnosticSemaKinds.inc.h SemaType.po: StmtNodes.inc.h -TargetAttributesSema.o: AttrList.inc.h -TargetAttributesSema.o: AttrParsedAttrList.inc.h -TargetAttributesSema.o: Attrs.inc.h -TargetAttributesSema.o: CommentCommandList.inc.h -TargetAttributesSema.o: DeclNodes.inc.h -TargetAttributesSema.o: DiagnosticCommonKinds.inc.h -TargetAttributesSema.o: DiagnosticSemaKinds.inc.h -TargetAttributesSema.o: StmtNodes.inc.h -TargetAttributesSema.po: AttrList.inc.h -TargetAttributesSema.po: AttrParsedAttrList.inc.h -TargetAttributesSema.po: Attrs.inc.h -TargetAttributesSema.po: CommentCommandList.inc.h -TargetAttributesSema.po: DeclNodes.inc.h -TargetAttributesSema.po: DiagnosticCommonKinds.inc.h -TargetAttributesSema.po: DiagnosticSemaKinds.inc.h -TargetAttributesSema.po: StmtNodes.inc.h TypeLocBuilder.o: CommentCommandList.inc.h TypeLocBuilder.o: DeclNodes.inc.h TypeLocBuilder.o: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangserialization/Makefile.depend b/lib/clang/libclangserialization/Makefile.depend index 7d04136aa606..1c2cb9fd03ff 100644 --- a/lib/clang/libclangserialization/Makefile.depend +++ b/lib/clang/libclangserialization/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -14,10 +12,14 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +ASTCommon.o: AttrList.inc.h +ASTCommon.o: Attrs.inc.h ASTCommon.o: CommentCommandList.inc.h ASTCommon.o: DeclNodes.inc.h ASTCommon.o: DiagnosticCommonKinds.inc.h ASTCommon.o: StmtNodes.inc.h +ASTCommon.po: AttrList.inc.h +ASTCommon.po: Attrs.inc.h ASTCommon.po: CommentCommandList.inc.h ASTCommon.po: DeclNodes.inc.h ASTCommon.po: DiagnosticCommonKinds.inc.h @@ -56,12 +58,16 @@ ASTReaderDecl.po: DeclNodes.inc.h ASTReaderDecl.po: DiagnosticCommonKinds.inc.h ASTReaderDecl.po: DiagnosticSemaKinds.inc.h ASTReaderDecl.po: StmtNodes.inc.h +ASTReaderStmt.o: AttrList.inc.h ASTReaderStmt.o: AttrParsedAttrList.inc.h +ASTReaderStmt.o: Attrs.inc.h ASTReaderStmt.o: CommentCommandList.inc.h ASTReaderStmt.o: DeclNodes.inc.h ASTReaderStmt.o: DiagnosticCommonKinds.inc.h ASTReaderStmt.o: StmtNodes.inc.h +ASTReaderStmt.po: AttrList.inc.h ASTReaderStmt.po: AttrParsedAttrList.inc.h +ASTReaderStmt.po: Attrs.inc.h ASTReaderStmt.po: CommentCommandList.inc.h ASTReaderStmt.po: DeclNodes.inc.h ASTReaderStmt.po: DiagnosticCommonKinds.inc.h @@ -82,20 +88,28 @@ ASTWriter.po: CommentCommandList.inc.h ASTWriter.po: DeclNodes.inc.h ASTWriter.po: DiagnosticCommonKinds.inc.h ASTWriter.po: StmtNodes.inc.h +ASTWriterDecl.o: AttrList.inc.h ASTWriterDecl.o: AttrParsedAttrList.inc.h +ASTWriterDecl.o: Attrs.inc.h ASTWriterDecl.o: CommentCommandList.inc.h ASTWriterDecl.o: DeclNodes.inc.h ASTWriterDecl.o: DiagnosticCommonKinds.inc.h ASTWriterDecl.o: StmtNodes.inc.h +ASTWriterDecl.po: AttrList.inc.h ASTWriterDecl.po: AttrParsedAttrList.inc.h +ASTWriterDecl.po: Attrs.inc.h ASTWriterDecl.po: CommentCommandList.inc.h ASTWriterDecl.po: DeclNodes.inc.h ASTWriterDecl.po: DiagnosticCommonKinds.inc.h ASTWriterDecl.po: StmtNodes.inc.h +ASTWriterStmt.o: AttrList.inc.h +ASTWriterStmt.o: Attrs.inc.h ASTWriterStmt.o: CommentCommandList.inc.h ASTWriterStmt.o: DeclNodes.inc.h ASTWriterStmt.o: DiagnosticCommonKinds.inc.h ASTWriterStmt.o: StmtNodes.inc.h +ASTWriterStmt.po: AttrList.inc.h +ASTWriterStmt.po: Attrs.inc.h ASTWriterStmt.po: CommentCommandList.inc.h ASTWriterStmt.po: DeclNodes.inc.h ASTWriterStmt.po: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangstaticanalyzercheckers/Makefile.depend b/lib/clang/libclangstaticanalyzercheckers/Makefile.depend index 68d1e50d7e55..4b797b8ba223 100644 --- a/lib/clang/libclangstaticanalyzercheckers/Makefile.depend +++ b/lib/clang/libclangstaticanalyzercheckers/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -44,11 +42,15 @@ ArrayBoundCheckerV2.po: CommentCommandList.inc.h ArrayBoundCheckerV2.po: DeclNodes.inc.h ArrayBoundCheckerV2.po: DiagnosticCommonKinds.inc.h ArrayBoundCheckerV2.po: StmtNodes.inc.h +BasicObjCFoundationChecks.o: AttrList.inc.h +BasicObjCFoundationChecks.o: Attrs.inc.h BasicObjCFoundationChecks.o: Checkers.inc.h BasicObjCFoundationChecks.o: CommentCommandList.inc.h BasicObjCFoundationChecks.o: DeclNodes.inc.h BasicObjCFoundationChecks.o: DiagnosticCommonKinds.inc.h BasicObjCFoundationChecks.o: StmtNodes.inc.h +BasicObjCFoundationChecks.po: AttrList.inc.h +BasicObjCFoundationChecks.po: Attrs.inc.h BasicObjCFoundationChecks.po: Checkers.inc.h BasicObjCFoundationChecks.po: CommentCommandList.inc.h BasicObjCFoundationChecks.po: DeclNodes.inc.h @@ -94,11 +96,15 @@ CStringSyntaxChecker.po: CommentCommandList.inc.h CStringSyntaxChecker.po: DeclNodes.inc.h CStringSyntaxChecker.po: DiagnosticCommonKinds.inc.h CStringSyntaxChecker.po: StmtNodes.inc.h +CallAndMessageChecker.o: AttrList.inc.h +CallAndMessageChecker.o: Attrs.inc.h CallAndMessageChecker.o: Checkers.inc.h CallAndMessageChecker.o: CommentCommandList.inc.h CallAndMessageChecker.o: DeclNodes.inc.h CallAndMessageChecker.o: DiagnosticCommonKinds.inc.h CallAndMessageChecker.o: StmtNodes.inc.h +CallAndMessageChecker.po: AttrList.inc.h +CallAndMessageChecker.po: Attrs.inc.h CallAndMessageChecker.po: Checkers.inc.h CallAndMessageChecker.po: CommentCommandList.inc.h CallAndMessageChecker.po: DeclNodes.inc.h @@ -199,6 +205,7 @@ ClangCheckers.po: DeclNodes.inc.h ClangCheckers.po: DiagnosticCommonKinds.inc.h ClangCheckers.po: StmtNodes.inc.h DeadStoresChecker.o: AttrList.inc.h +DeadStoresChecker.o: AttrVisitor.inc.h DeadStoresChecker.o: Attrs.inc.h DeadStoresChecker.o: Checkers.inc.h DeadStoresChecker.o: CommentCommandList.inc.h @@ -206,17 +213,24 @@ DeadStoresChecker.o: DeclNodes.inc.h DeadStoresChecker.o: DiagnosticCommonKinds.inc.h DeadStoresChecker.o: StmtNodes.inc.h DeadStoresChecker.po: AttrList.inc.h +DeadStoresChecker.po: AttrVisitor.inc.h DeadStoresChecker.po: Attrs.inc.h DeadStoresChecker.po: Checkers.inc.h DeadStoresChecker.po: CommentCommandList.inc.h DeadStoresChecker.po: DeclNodes.inc.h DeadStoresChecker.po: DiagnosticCommonKinds.inc.h DeadStoresChecker.po: StmtNodes.inc.h +DebugCheckers.o: AttrList.inc.h +DebugCheckers.o: AttrVisitor.inc.h +DebugCheckers.o: Attrs.inc.h DebugCheckers.o: Checkers.inc.h DebugCheckers.o: CommentCommandList.inc.h DebugCheckers.o: DeclNodes.inc.h DebugCheckers.o: DiagnosticCommonKinds.inc.h DebugCheckers.o: StmtNodes.inc.h +DebugCheckers.po: AttrList.inc.h +DebugCheckers.po: AttrVisitor.inc.h +DebugCheckers.po: Attrs.inc.h DebugCheckers.po: Checkers.inc.h DebugCheckers.po: CommentCommandList.inc.h DebugCheckers.po: DeclNodes.inc.h @@ -256,11 +270,15 @@ DivZeroChecker.po: CommentCommandList.inc.h DivZeroChecker.po: DeclNodes.inc.h DivZeroChecker.po: DiagnosticCommonKinds.inc.h DivZeroChecker.po: StmtNodes.inc.h +DynamicTypePropagation.o: AttrList.inc.h +DynamicTypePropagation.o: Attrs.inc.h DynamicTypePropagation.o: Checkers.inc.h DynamicTypePropagation.o: CommentCommandList.inc.h DynamicTypePropagation.o: DeclNodes.inc.h DynamicTypePropagation.o: DiagnosticCommonKinds.inc.h DynamicTypePropagation.o: StmtNodes.inc.h +DynamicTypePropagation.po: AttrList.inc.h +DynamicTypePropagation.po: Attrs.inc.h DynamicTypePropagation.po: Checkers.inc.h DynamicTypePropagation.po: CommentCommandList.inc.h DynamicTypePropagation.po: DeclNodes.inc.h @@ -300,21 +318,17 @@ GenericTaintChecker.po: CommentCommandList.inc.h GenericTaintChecker.po: DeclNodes.inc.h GenericTaintChecker.po: DiagnosticCommonKinds.inc.h GenericTaintChecker.po: StmtNodes.inc.h -IdempotentOperationChecker.o: Checkers.inc.h -IdempotentOperationChecker.o: CommentCommandList.inc.h -IdempotentOperationChecker.o: DeclNodes.inc.h -IdempotentOperationChecker.o: DiagnosticCommonKinds.inc.h -IdempotentOperationChecker.o: StmtNodes.inc.h -IdempotentOperationChecker.po: Checkers.inc.h -IdempotentOperationChecker.po: CommentCommandList.inc.h -IdempotentOperationChecker.po: DeclNodes.inc.h -IdempotentOperationChecker.po: DiagnosticCommonKinds.inc.h -IdempotentOperationChecker.po: StmtNodes.inc.h +IdenticalExprChecker.o: AttrList.inc.h +IdenticalExprChecker.o: AttrVisitor.inc.h +IdenticalExprChecker.o: Attrs.inc.h IdenticalExprChecker.o: Checkers.inc.h IdenticalExprChecker.o: CommentCommandList.inc.h IdenticalExprChecker.o: DeclNodes.inc.h IdenticalExprChecker.o: DiagnosticCommonKinds.inc.h IdenticalExprChecker.o: StmtNodes.inc.h +IdenticalExprChecker.po: AttrList.inc.h +IdenticalExprChecker.po: AttrVisitor.inc.h +IdenticalExprChecker.po: Attrs.inc.h IdenticalExprChecker.po: Checkers.inc.h IdenticalExprChecker.po: CommentCommandList.inc.h IdenticalExprChecker.po: DeclNodes.inc.h @@ -334,11 +348,15 @@ IvarInvalidationChecker.po: CommentCommandList.inc.h IvarInvalidationChecker.po: DeclNodes.inc.h IvarInvalidationChecker.po: DiagnosticCommonKinds.inc.h IvarInvalidationChecker.po: StmtNodes.inc.h +LLVMConventionsChecker.o: AttrList.inc.h +LLVMConventionsChecker.o: Attrs.inc.h LLVMConventionsChecker.o: Checkers.inc.h LLVMConventionsChecker.o: CommentCommandList.inc.h LLVMConventionsChecker.o: DeclNodes.inc.h LLVMConventionsChecker.o: DiagnosticCommonKinds.inc.h LLVMConventionsChecker.o: StmtNodes.inc.h +LLVMConventionsChecker.po: AttrList.inc.h +LLVMConventionsChecker.po: Attrs.inc.h LLVMConventionsChecker.po: Checkers.inc.h LLVMConventionsChecker.po: CommentCommandList.inc.h LLVMConventionsChecker.po: DeclNodes.inc.h @@ -378,11 +396,15 @@ MallocChecker.po: CommentCommandList.inc.h MallocChecker.po: DeclNodes.inc.h MallocChecker.po: DiagnosticCommonKinds.inc.h MallocChecker.po: StmtNodes.inc.h +MallocOverflowSecurityChecker.o: AttrList.inc.h +MallocOverflowSecurityChecker.o: Attrs.inc.h MallocOverflowSecurityChecker.o: Checkers.inc.h MallocOverflowSecurityChecker.o: CommentCommandList.inc.h MallocOverflowSecurityChecker.o: DeclNodes.inc.h MallocOverflowSecurityChecker.o: DiagnosticCommonKinds.inc.h MallocOverflowSecurityChecker.o: StmtNodes.inc.h +MallocOverflowSecurityChecker.po: AttrList.inc.h +MallocOverflowSecurityChecker.po: Attrs.inc.h MallocOverflowSecurityChecker.po: Checkers.inc.h MallocOverflowSecurityChecker.po: CommentCommandList.inc.h MallocOverflowSecurityChecker.po: DeclNodes.inc.h @@ -398,11 +420,15 @@ MallocSizeofChecker.po: CommentCommandList.inc.h MallocSizeofChecker.po: DeclNodes.inc.h MallocSizeofChecker.po: DiagnosticCommonKinds.inc.h MallocSizeofChecker.po: StmtNodes.inc.h +NSAutoreleasePoolChecker.o: AttrList.inc.h +NSAutoreleasePoolChecker.o: Attrs.inc.h NSAutoreleasePoolChecker.o: Checkers.inc.h NSAutoreleasePoolChecker.o: CommentCommandList.inc.h NSAutoreleasePoolChecker.o: DeclNodes.inc.h NSAutoreleasePoolChecker.o: DiagnosticCommonKinds.inc.h NSAutoreleasePoolChecker.o: StmtNodes.inc.h +NSAutoreleasePoolChecker.po: AttrList.inc.h +NSAutoreleasePoolChecker.po: Attrs.inc.h NSAutoreleasePoolChecker.po: Checkers.inc.h NSAutoreleasePoolChecker.po: CommentCommandList.inc.h NSAutoreleasePoolChecker.po: DeclNodes.inc.h @@ -476,21 +502,31 @@ ObjCContainersChecker.po: CommentCommandList.inc.h ObjCContainersChecker.po: DeclNodes.inc.h ObjCContainersChecker.po: DiagnosticCommonKinds.inc.h ObjCContainersChecker.po: StmtNodes.inc.h +ObjCMissingSuperCallChecker.o: AttrList.inc.h +ObjCMissingSuperCallChecker.o: AttrVisitor.inc.h +ObjCMissingSuperCallChecker.o: Attrs.inc.h ObjCMissingSuperCallChecker.o: Checkers.inc.h ObjCMissingSuperCallChecker.o: CommentCommandList.inc.h ObjCMissingSuperCallChecker.o: DeclNodes.inc.h ObjCMissingSuperCallChecker.o: DiagnosticCommonKinds.inc.h ObjCMissingSuperCallChecker.o: StmtNodes.inc.h +ObjCMissingSuperCallChecker.po: AttrList.inc.h +ObjCMissingSuperCallChecker.po: AttrVisitor.inc.h +ObjCMissingSuperCallChecker.po: Attrs.inc.h ObjCMissingSuperCallChecker.po: Checkers.inc.h ObjCMissingSuperCallChecker.po: CommentCommandList.inc.h ObjCMissingSuperCallChecker.po: DeclNodes.inc.h ObjCMissingSuperCallChecker.po: DiagnosticCommonKinds.inc.h ObjCMissingSuperCallChecker.po: StmtNodes.inc.h +ObjCSelfInitChecker.o: AttrList.inc.h +ObjCSelfInitChecker.o: Attrs.inc.h ObjCSelfInitChecker.o: Checkers.inc.h ObjCSelfInitChecker.o: CommentCommandList.inc.h ObjCSelfInitChecker.o: DeclNodes.inc.h ObjCSelfInitChecker.o: DiagnosticCommonKinds.inc.h ObjCSelfInitChecker.o: StmtNodes.inc.h +ObjCSelfInitChecker.po: AttrList.inc.h +ObjCSelfInitChecker.po: Attrs.inc.h ObjCSelfInitChecker.po: Checkers.inc.h ObjCSelfInitChecker.po: CommentCommandList.inc.h ObjCSelfInitChecker.po: DeclNodes.inc.h @@ -564,21 +600,29 @@ ReturnPointerRangeChecker.po: CommentCommandList.inc.h ReturnPointerRangeChecker.po: DeclNodes.inc.h ReturnPointerRangeChecker.po: DiagnosticCommonKinds.inc.h ReturnPointerRangeChecker.po: StmtNodes.inc.h +ReturnUndefChecker.o: AttrList.inc.h +ReturnUndefChecker.o: Attrs.inc.h ReturnUndefChecker.o: Checkers.inc.h ReturnUndefChecker.o: CommentCommandList.inc.h ReturnUndefChecker.o: DeclNodes.inc.h ReturnUndefChecker.o: DiagnosticCommonKinds.inc.h ReturnUndefChecker.o: StmtNodes.inc.h +ReturnUndefChecker.po: AttrList.inc.h +ReturnUndefChecker.po: Attrs.inc.h ReturnUndefChecker.po: Checkers.inc.h ReturnUndefChecker.po: CommentCommandList.inc.h ReturnUndefChecker.po: DeclNodes.inc.h ReturnUndefChecker.po: DiagnosticCommonKinds.inc.h ReturnUndefChecker.po: StmtNodes.inc.h +SimpleStreamChecker.o: AttrList.inc.h +SimpleStreamChecker.o: Attrs.inc.h SimpleStreamChecker.o: Checkers.inc.h SimpleStreamChecker.o: CommentCommandList.inc.h SimpleStreamChecker.o: DeclNodes.inc.h SimpleStreamChecker.o: DiagnosticCommonKinds.inc.h SimpleStreamChecker.o: StmtNodes.inc.h +SimpleStreamChecker.po: AttrList.inc.h +SimpleStreamChecker.po: Attrs.inc.h SimpleStreamChecker.po: Checkers.inc.h SimpleStreamChecker.po: CommentCommandList.inc.h SimpleStreamChecker.po: DeclNodes.inc.h @@ -614,11 +658,29 @@ TaintTesterChecker.po: CommentCommandList.inc.h TaintTesterChecker.po: DeclNodes.inc.h TaintTesterChecker.po: DiagnosticCommonKinds.inc.h TaintTesterChecker.po: StmtNodes.inc.h +TestAfterDivZeroChecker.o: AttrList.inc.h +TestAfterDivZeroChecker.o: Attrs.inc.h +TestAfterDivZeroChecker.o: Checkers.inc.h +TestAfterDivZeroChecker.o: CommentCommandList.inc.h +TestAfterDivZeroChecker.o: DeclNodes.inc.h +TestAfterDivZeroChecker.o: DiagnosticCommonKinds.inc.h +TestAfterDivZeroChecker.o: StmtNodes.inc.h +TestAfterDivZeroChecker.po: AttrList.inc.h +TestAfterDivZeroChecker.po: Attrs.inc.h +TestAfterDivZeroChecker.po: Checkers.inc.h +TestAfterDivZeroChecker.po: CommentCommandList.inc.h +TestAfterDivZeroChecker.po: DeclNodes.inc.h +TestAfterDivZeroChecker.po: DiagnosticCommonKinds.inc.h +TestAfterDivZeroChecker.po: StmtNodes.inc.h +TraversalChecker.o: AttrList.inc.h +TraversalChecker.o: Attrs.inc.h TraversalChecker.o: Checkers.inc.h TraversalChecker.o: CommentCommandList.inc.h TraversalChecker.o: DeclNodes.inc.h TraversalChecker.o: DiagnosticCommonKinds.inc.h TraversalChecker.o: StmtNodes.inc.h +TraversalChecker.po: AttrList.inc.h +TraversalChecker.po: Attrs.inc.h TraversalChecker.po: Checkers.inc.h TraversalChecker.po: CommentCommandList.inc.h TraversalChecker.po: DeclNodes.inc.h @@ -658,11 +720,15 @@ UndefResultChecker.po: CommentCommandList.inc.h UndefResultChecker.po: DeclNodes.inc.h UndefResultChecker.po: DiagnosticCommonKinds.inc.h UndefResultChecker.po: StmtNodes.inc.h +UndefinedArraySubscriptChecker.o: AttrList.inc.h +UndefinedArraySubscriptChecker.o: Attrs.inc.h UndefinedArraySubscriptChecker.o: Checkers.inc.h UndefinedArraySubscriptChecker.o: CommentCommandList.inc.h UndefinedArraySubscriptChecker.o: DeclNodes.inc.h UndefinedArraySubscriptChecker.o: DiagnosticCommonKinds.inc.h UndefinedArraySubscriptChecker.o: StmtNodes.inc.h +UndefinedArraySubscriptChecker.po: AttrList.inc.h +UndefinedArraySubscriptChecker.po: Attrs.inc.h UndefinedArraySubscriptChecker.po: Checkers.inc.h UndefinedArraySubscriptChecker.po: CommentCommandList.inc.h UndefinedArraySubscriptChecker.po: DeclNodes.inc.h @@ -708,11 +774,15 @@ VLASizeChecker.po: CommentCommandList.inc.h VLASizeChecker.po: DeclNodes.inc.h VLASizeChecker.po: DiagnosticCommonKinds.inc.h VLASizeChecker.po: StmtNodes.inc.h +VirtualCallChecker.o: AttrList.inc.h +VirtualCallChecker.o: Attrs.inc.h VirtualCallChecker.o: Checkers.inc.h VirtualCallChecker.o: CommentCommandList.inc.h VirtualCallChecker.o: DeclNodes.inc.h VirtualCallChecker.o: DiagnosticCommonKinds.inc.h VirtualCallChecker.o: StmtNodes.inc.h +VirtualCallChecker.po: AttrList.inc.h +VirtualCallChecker.po: Attrs.inc.h VirtualCallChecker.po: Checkers.inc.h VirtualCallChecker.po: CommentCommandList.inc.h VirtualCallChecker.po: DeclNodes.inc.h diff --git a/lib/clang/libclangstaticanalyzercore/Makefile.depend b/lib/clang/libclangstaticanalyzercore/Makefile.depend index 41d7e388c307..d018547e8782 100644 --- a/lib/clang/libclangstaticanalyzercore/Makefile.depend +++ b/lib/clang/libclangstaticanalyzercore/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -38,18 +36,26 @@ BugReporter.po: CommentCommandList.inc.h BugReporter.po: DeclNodes.inc.h BugReporter.po: DiagnosticCommonKinds.inc.h BugReporter.po: StmtNodes.inc.h +BugReporterVisitors.o: AttrList.inc.h +BugReporterVisitors.o: Attrs.inc.h BugReporterVisitors.o: CommentCommandList.inc.h BugReporterVisitors.o: DeclNodes.inc.h BugReporterVisitors.o: DiagnosticCommonKinds.inc.h BugReporterVisitors.o: StmtNodes.inc.h +BugReporterVisitors.po: AttrList.inc.h +BugReporterVisitors.po: Attrs.inc.h BugReporterVisitors.po: CommentCommandList.inc.h BugReporterVisitors.po: DeclNodes.inc.h BugReporterVisitors.po: DiagnosticCommonKinds.inc.h BugReporterVisitors.po: StmtNodes.inc.h +CallEvent.o: AttrList.inc.h +CallEvent.o: Attrs.inc.h CallEvent.o: CommentCommandList.inc.h CallEvent.o: DeclNodes.inc.h CallEvent.o: DiagnosticCommonKinds.inc.h CallEvent.o: StmtNodes.inc.h +CallEvent.po: AttrList.inc.h +CallEvent.po: Attrs.inc.h CallEvent.po: CommentCommandList.inc.h CallEvent.po: DeclNodes.inc.h CallEvent.po: DiagnosticCommonKinds.inc.h @@ -76,10 +82,14 @@ CheckerHelpers.o: StmtNodes.inc.h CheckerHelpers.po: DeclNodes.inc.h CheckerHelpers.po: DiagnosticCommonKinds.inc.h CheckerHelpers.po: StmtNodes.inc.h +CheckerManager.o: AttrList.inc.h +CheckerManager.o: Attrs.inc.h CheckerManager.o: CommentCommandList.inc.h CheckerManager.o: DeclNodes.inc.h CheckerManager.o: DiagnosticCommonKinds.inc.h CheckerManager.o: StmtNodes.inc.h +CheckerManager.po: AttrList.inc.h +CheckerManager.po: Attrs.inc.h CheckerManager.po: CommentCommandList.inc.h CheckerManager.po: DeclNodes.inc.h CheckerManager.po: DiagnosticCommonKinds.inc.h @@ -116,18 +126,26 @@ Environment.po: CommentCommandList.inc.h Environment.po: DeclNodes.inc.h Environment.po: DiagnosticCommonKinds.inc.h Environment.po: StmtNodes.inc.h +ExplodedGraph.o: AttrList.inc.h +ExplodedGraph.o: Attrs.inc.h ExplodedGraph.o: CommentCommandList.inc.h ExplodedGraph.o: DeclNodes.inc.h ExplodedGraph.o: DiagnosticCommonKinds.inc.h ExplodedGraph.o: StmtNodes.inc.h +ExplodedGraph.po: AttrList.inc.h +ExplodedGraph.po: Attrs.inc.h ExplodedGraph.po: CommentCommandList.inc.h ExplodedGraph.po: DeclNodes.inc.h ExplodedGraph.po: DiagnosticCommonKinds.inc.h ExplodedGraph.po: StmtNodes.inc.h +ExprEngine.o: AttrList.inc.h +ExprEngine.o: Attrs.inc.h ExprEngine.o: CommentCommandList.inc.h ExprEngine.o: DeclNodes.inc.h ExprEngine.o: DiagnosticCommonKinds.inc.h ExprEngine.o: StmtNodes.inc.h +ExprEngine.po: AttrList.inc.h +ExprEngine.po: Attrs.inc.h ExprEngine.po: CommentCommandList.inc.h ExprEngine.po: DeclNodes.inc.h ExprEngine.po: DiagnosticCommonKinds.inc.h @@ -140,26 +158,38 @@ ExprEngineC.po: CommentCommandList.inc.h ExprEngineC.po: DeclNodes.inc.h ExprEngineC.po: DiagnosticCommonKinds.inc.h ExprEngineC.po: StmtNodes.inc.h +ExprEngineCXX.o: AttrList.inc.h +ExprEngineCXX.o: Attrs.inc.h ExprEngineCXX.o: CommentCommandList.inc.h ExprEngineCXX.o: DeclNodes.inc.h ExprEngineCXX.o: DiagnosticCommonKinds.inc.h ExprEngineCXX.o: StmtNodes.inc.h +ExprEngineCXX.po: AttrList.inc.h +ExprEngineCXX.po: Attrs.inc.h ExprEngineCXX.po: CommentCommandList.inc.h ExprEngineCXX.po: DeclNodes.inc.h ExprEngineCXX.po: DiagnosticCommonKinds.inc.h ExprEngineCXX.po: StmtNodes.inc.h +ExprEngineCallAndReturn.o: AttrList.inc.h +ExprEngineCallAndReturn.o: Attrs.inc.h ExprEngineCallAndReturn.o: CommentCommandList.inc.h ExprEngineCallAndReturn.o: DeclNodes.inc.h ExprEngineCallAndReturn.o: DiagnosticCommonKinds.inc.h ExprEngineCallAndReturn.o: StmtNodes.inc.h +ExprEngineCallAndReturn.po: AttrList.inc.h +ExprEngineCallAndReturn.po: Attrs.inc.h ExprEngineCallAndReturn.po: CommentCommandList.inc.h ExprEngineCallAndReturn.po: DeclNodes.inc.h ExprEngineCallAndReturn.po: DiagnosticCommonKinds.inc.h ExprEngineCallAndReturn.po: StmtNodes.inc.h +ExprEngineObjC.o: AttrList.inc.h +ExprEngineObjC.o: Attrs.inc.h ExprEngineObjC.o: CommentCommandList.inc.h ExprEngineObjC.o: DeclNodes.inc.h ExprEngineObjC.o: DiagnosticCommonKinds.inc.h ExprEngineObjC.o: StmtNodes.inc.h +ExprEngineObjC.po: AttrList.inc.h +ExprEngineObjC.po: Attrs.inc.h ExprEngineObjC.po: CommentCommandList.inc.h ExprEngineObjC.po: DeclNodes.inc.h ExprEngineObjC.po: DiagnosticCommonKinds.inc.h @@ -184,10 +214,14 @@ MemRegion.po: CommentCommandList.inc.h MemRegion.po: DeclNodes.inc.h MemRegion.po: DiagnosticCommonKinds.inc.h MemRegion.po: StmtNodes.inc.h +PathDiagnostic.o: AttrList.inc.h +PathDiagnostic.o: Attrs.inc.h PathDiagnostic.o: CommentCommandList.inc.h PathDiagnostic.o: DeclNodes.inc.h PathDiagnostic.o: DiagnosticCommonKinds.inc.h PathDiagnostic.o: StmtNodes.inc.h +PathDiagnostic.po: AttrList.inc.h +PathDiagnostic.po: Attrs.inc.h PathDiagnostic.po: CommentCommandList.inc.h PathDiagnostic.po: DeclNodes.inc.h PathDiagnostic.po: DiagnosticCommonKinds.inc.h @@ -198,10 +232,14 @@ PlistDiagnostics.o: StmtNodes.inc.h PlistDiagnostics.po: DeclNodes.inc.h PlistDiagnostics.po: DiagnosticCommonKinds.inc.h PlistDiagnostics.po: StmtNodes.inc.h +ProgramState.o: AttrList.inc.h +ProgramState.o: Attrs.inc.h ProgramState.o: CommentCommandList.inc.h ProgramState.o: DeclNodes.inc.h ProgramState.o: DiagnosticCommonKinds.inc.h ProgramState.o: StmtNodes.inc.h +ProgramState.po: AttrList.inc.h +ProgramState.po: Attrs.inc.h ProgramState.po: CommentCommandList.inc.h ProgramState.po: DeclNodes.inc.h ProgramState.po: DiagnosticCommonKinds.inc.h @@ -226,10 +264,14 @@ RegionStore.po: CommentCommandList.inc.h RegionStore.po: DeclNodes.inc.h RegionStore.po: DiagnosticCommonKinds.inc.h RegionStore.po: StmtNodes.inc.h +SValBuilder.o: AttrList.inc.h +SValBuilder.o: Attrs.inc.h SValBuilder.o: CommentCommandList.inc.h SValBuilder.o: DeclNodes.inc.h SValBuilder.o: DiagnosticCommonKinds.inc.h SValBuilder.o: StmtNodes.inc.h +SValBuilder.po: AttrList.inc.h +SValBuilder.po: Attrs.inc.h SValBuilder.po: CommentCommandList.inc.h SValBuilder.po: DeclNodes.inc.h SValBuilder.po: DiagnosticCommonKinds.inc.h @@ -258,10 +300,14 @@ SimpleSValBuilder.po: CommentCommandList.inc.h SimpleSValBuilder.po: DeclNodes.inc.h SimpleSValBuilder.po: DiagnosticCommonKinds.inc.h SimpleSValBuilder.po: StmtNodes.inc.h +Store.o: AttrList.inc.h +Store.o: Attrs.inc.h Store.o: CommentCommandList.inc.h Store.o: DeclNodes.inc.h Store.o: DiagnosticCommonKinds.inc.h Store.o: StmtNodes.inc.h +Store.po: AttrList.inc.h +Store.po: Attrs.inc.h Store.po: CommentCommandList.inc.h Store.po: DeclNodes.inc.h Store.po: DiagnosticCommonKinds.inc.h diff --git a/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend b/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend index 7a70a3738b1e..eaac03f3ac9e 100644 --- a/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend +++ b/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -14,10 +12,16 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +AnalysisConsumer.o: AttrList.inc.h +AnalysisConsumer.o: AttrVisitor.inc.h +AnalysisConsumer.o: Attrs.inc.h AnalysisConsumer.o: CommentCommandList.inc.h AnalysisConsumer.o: DeclNodes.inc.h AnalysisConsumer.o: DiagnosticCommonKinds.inc.h AnalysisConsumer.o: StmtNodes.inc.h +AnalysisConsumer.po: AttrList.inc.h +AnalysisConsumer.po: AttrVisitor.inc.h +AnalysisConsumer.po: Attrs.inc.h AnalysisConsumer.po: CommentCommandList.inc.h AnalysisConsumer.po: DeclNodes.inc.h AnalysisConsumer.po: DiagnosticCommonKinds.inc.h @@ -32,6 +36,30 @@ CheckerRegistration.po: DeclNodes.inc.h CheckerRegistration.po: DiagnosticCommonKinds.inc.h CheckerRegistration.po: DiagnosticFrontendKinds.inc.h CheckerRegistration.po: StmtNodes.inc.h +FrontendActions.o: CommentCommandList.inc.h +FrontendActions.o: DeclNodes.inc.h FrontendActions.o: DiagnosticCommonKinds.inc.h +FrontendActions.o: StmtNodes.inc.h +FrontendActions.po: CommentCommandList.inc.h +FrontendActions.po: DeclNodes.inc.h FrontendActions.po: DiagnosticCommonKinds.inc.h +FrontendActions.po: StmtNodes.inc.h +ModelConsumer.o: DeclNodes.inc.h +ModelConsumer.o: DiagnosticCommonKinds.inc.h +ModelConsumer.po: DeclNodes.inc.h +ModelConsumer.po: DiagnosticCommonKinds.inc.h +ModelInjector.o: AttrList.inc.h +ModelInjector.o: AttrParsedAttrList.inc.h +ModelInjector.o: Attrs.inc.h +ModelInjector.o: CommentCommandList.inc.h +ModelInjector.o: DeclNodes.inc.h +ModelInjector.o: DiagnosticCommonKinds.inc.h +ModelInjector.o: StmtNodes.inc.h +ModelInjector.po: AttrList.inc.h +ModelInjector.po: AttrParsedAttrList.inc.h +ModelInjector.po: Attrs.inc.h +ModelInjector.po: CommentCommandList.inc.h +ModelInjector.po: DeclNodes.inc.h +ModelInjector.po: DiagnosticCommonKinds.inc.h +ModelInjector.po: StmtNodes.inc.h .endif diff --git a/lib/clang/libllvmaarch64asmparser/Makefile.depend b/lib/clang/libllvmaarch64asmparser/Makefile.depend index 39ddb0eb9b99..9c80e952287f 100644 --- a/lib/clang/libllvmaarch64asmparser/Makefile.depend +++ b/lib/clang/libllvmaarch64asmparser/Makefile.depend @@ -1,10 +1,10 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ + lib/libc++ \ + lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmaarch64desc/Makefile.depend b/lib/clang/libllvmaarch64desc/Makefile.depend index f1a450cd7529..790d0e306443 100644 --- a/lib/clang/libllvmaarch64desc/Makefile.depend +++ b/lib/clang/libllvmaarch64desc/Makefile.depend @@ -1,10 +1,10 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ + lib/libc++ \ + lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmaarch64disassembler/Makefile.depend b/lib/clang/libllvmaarch64disassembler/Makefile.depend index ef36bbacae7a..ea61fad53f55 100644 --- a/lib/clang/libllvmaarch64disassembler/Makefile.depend +++ b/lib/clang/libllvmaarch64disassembler/Makefile.depend @@ -1,10 +1,10 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ + lib/libc++ \ + lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmaarch64info/Makefile.depend b/lib/clang/libllvmaarch64info/Makefile.depend index 2be5570d3033..18d28d624599 100644 --- a/lib/clang/libllvmaarch64info/Makefile.depend +++ b/lib/clang/libllvmaarch64info/Makefile.depend @@ -1,10 +1,10 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ + lib/libc++ \ + lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmaarch64instprinter/Makefile.depend b/lib/clang/libllvmaarch64instprinter/Makefile.depend index c2fc210907ee..ae511632406a 100644 --- a/lib/clang/libllvmaarch64instprinter/Makefile.depend +++ b/lib/clang/libllvmaarch64instprinter/Makefile.depend @@ -1,10 +1,10 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ + lib/libc++ \ + lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmaarch64utils/Makefile.depend b/lib/clang/libllvmaarch64utils/Makefile.depend index 59e0fe901791..93a05f4332e2 100644 --- a/lib/clang/libllvmaarch64utils/Makefile.depend +++ b/lib/clang/libllvmaarch64utils/Makefile.depend @@ -1,10 +1,10 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ + lib/libc++ \ + lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmanalysis/Makefile.depend b/lib/clang/libllvmanalysis/Makefile.depend index ab902c251a4e..d7ef225eb15b 100644 --- a/lib/clang/libllvmanalysis/Makefile.depend +++ b/lib/clang/libllvmanalysis/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -18,18 +16,26 @@ AliasAnalysis.o: Intrinsics.inc.h AliasAnalysis.po: Intrinsics.inc.h AliasSetTracker.o: Intrinsics.inc.h AliasSetTracker.po: Intrinsics.inc.h +AssumptionCache.o: Intrinsics.inc.h +AssumptionCache.po: Intrinsics.inc.h BasicAliasAnalysis.o: Intrinsics.inc.h BasicAliasAnalysis.po: Intrinsics.inc.h +CFLAliasAnalysis.o: Intrinsics.inc.h +CFLAliasAnalysis.po: Intrinsics.inc.h CodeMetrics.o: Intrinsics.inc.h CodeMetrics.po: Intrinsics.inc.h ConstantFolding.o: Intrinsics.inc.h ConstantFolding.po: Intrinsics.inc.h CostModel.o: Intrinsics.inc.h CostModel.po: Intrinsics.inc.h +FunctionTargetTransformInfo.o: Intrinsics.inc.h +FunctionTargetTransformInfo.po: Intrinsics.inc.h InstCount.o: Intrinsics.inc.h InstCount.po: Intrinsics.inc.h InstructionSimplify.o: Intrinsics.inc.h InstructionSimplify.po: Intrinsics.inc.h +LazyCallGraph.o: Intrinsics.inc.h +LazyCallGraph.po: Intrinsics.inc.h LazyValueInfo.o: Intrinsics.inc.h LazyValueInfo.po: Intrinsics.inc.h Lint.o: Intrinsics.inc.h diff --git a/lib/clang/libllvmarmasmparser/Makefile.depend b/lib/clang/libllvmarmasmparser/Makefile.depend index 3b15beeaae80..6efd01d55032 100644 --- a/lib/clang/libllvmarmasmparser/Makefile.depend +++ b/lib/clang/libllvmarmasmparser/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmarmcodegen/Makefile.depend b/lib/clang/libllvmarmcodegen/Makefile.depend index 5a85191fb047..e2875343b0a8 100644 --- a/lib/clang/libllvmarmcodegen/Makefile.depend +++ b/lib/clang/libllvmarmcodegen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -40,14 +38,6 @@ ARMBaseRegisterInfo.o: ARMGenSubtargetInfo.inc.h ARMBaseRegisterInfo.po: ARMGenInstrInfo.inc.h ARMBaseRegisterInfo.po: ARMGenRegisterInfo.inc.h ARMBaseRegisterInfo.po: ARMGenSubtargetInfo.inc.h -ARMCodeEmitter.o: ARMGenCodeEmitter.inc.h -ARMCodeEmitter.o: ARMGenInstrInfo.inc.h -ARMCodeEmitter.o: ARMGenRegisterInfo.inc.h -ARMCodeEmitter.o: ARMGenSubtargetInfo.inc.h -ARMCodeEmitter.po: ARMGenCodeEmitter.inc.h -ARMCodeEmitter.po: ARMGenInstrInfo.inc.h -ARMCodeEmitter.po: ARMGenRegisterInfo.inc.h -ARMCodeEmitter.po: ARMGenSubtargetInfo.inc.h ARMConstantIslandPass.o: ARMGenInstrInfo.inc.h ARMConstantIslandPass.o: ARMGenRegisterInfo.inc.h ARMConstantIslandPass.o: ARMGenSubtargetInfo.inc.h @@ -110,12 +100,6 @@ ARMInstrInfo.o: ARMGenSubtargetInfo.inc.h ARMInstrInfo.po: ARMGenInstrInfo.inc.h ARMInstrInfo.po: ARMGenRegisterInfo.inc.h ARMInstrInfo.po: ARMGenSubtargetInfo.inc.h -ARMJITInfo.o: ARMGenInstrInfo.inc.h -ARMJITInfo.o: ARMGenRegisterInfo.inc.h -ARMJITInfo.o: ARMGenSubtargetInfo.inc.h -ARMJITInfo.po: ARMGenInstrInfo.inc.h -ARMJITInfo.po: ARMGenRegisterInfo.inc.h -ARMJITInfo.po: ARMGenSubtargetInfo.inc.h ARMLoadStoreOptimizer.o: ARMGenInstrInfo.inc.h ARMLoadStoreOptimizer.o: ARMGenRegisterInfo.inc.h ARMLoadStoreOptimizer.o: ARMGenSubtargetInfo.inc.h @@ -134,6 +118,12 @@ ARMMachineFunctionInfo.o: ARMGenSubtargetInfo.inc.h ARMMachineFunctionInfo.po: ARMGenInstrInfo.inc.h ARMMachineFunctionInfo.po: ARMGenRegisterInfo.inc.h ARMMachineFunctionInfo.po: ARMGenSubtargetInfo.inc.h +ARMOptimizeBarriersPass.o: ARMGenInstrInfo.inc.h +ARMOptimizeBarriersPass.o: ARMGenRegisterInfo.inc.h +ARMOptimizeBarriersPass.o: ARMGenSubtargetInfo.inc.h +ARMOptimizeBarriersPass.po: ARMGenInstrInfo.inc.h +ARMOptimizeBarriersPass.po: ARMGenRegisterInfo.inc.h +ARMOptimizeBarriersPass.po: ARMGenSubtargetInfo.inc.h ARMRegisterInfo.o: ARMGenInstrInfo.inc.h ARMRegisterInfo.o: ARMGenRegisterInfo.inc.h ARMRegisterInfo.o: ARMGenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmarmdesc/Makefile.depend b/lib/clang/libllvmarmdesc/Makefile.depend index a3c276069236..72650d006fbd 100644 --- a/lib/clang/libllvmarmdesc/Makefile.depend +++ b/lib/clang/libllvmarmdesc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -58,4 +56,10 @@ ARMMachObjectWriter.o: ARMGenSubtargetInfo.inc.h ARMMachObjectWriter.po: ARMGenInstrInfo.inc.h ARMMachObjectWriter.po: ARMGenRegisterInfo.inc.h ARMMachObjectWriter.po: ARMGenSubtargetInfo.inc.h +ARMWinCOFFStreamer.o: ARMGenInstrInfo.inc.h +ARMWinCOFFStreamer.o: ARMGenRegisterInfo.inc.h +ARMWinCOFFStreamer.o: ARMGenSubtargetInfo.inc.h +ARMWinCOFFStreamer.po: ARMGenInstrInfo.inc.h +ARMWinCOFFStreamer.po: ARMGenRegisterInfo.inc.h +ARMWinCOFFStreamer.po: ARMGenSubtargetInfo.inc.h .endif diff --git a/lib/clang/libllvmarmdisassembler/Makefile.depend b/lib/clang/libllvmarmdisassembler/Makefile.depend index 38ea1cb0d490..1185dc6e1c73 100644 --- a/lib/clang/libllvmarmdisassembler/Makefile.depend +++ b/lib/clang/libllvmarmdisassembler/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmarminfo/Makefile.depend b/lib/clang/libllvmarminfo/Makefile.depend index 794d0ae4d58b..7bd1454306d1 100644 --- a/lib/clang/libllvmarminfo/Makefile.depend +++ b/lib/clang/libllvmarminfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmarminstprinter/Makefile.depend b/lib/clang/libllvmarminstprinter/Makefile.depend index 87d7ea956eed..679c240a82eb 100644 --- a/lib/clang/libllvmarminstprinter/Makefile.depend +++ b/lib/clang/libllvmarminstprinter/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmasmparser/Makefile.depend b/lib/clang/libllvmasmparser/Makefile.depend index 4d8f064b840b..1cb182ef8ce1 100644 --- a/lib/clang/libllvmasmparser/Makefile.depend +++ b/lib/clang/libllvmasmparser/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmasmprinter/Makefile.depend b/lib/clang/libllvmasmprinter/Makefile.depend index 33dfbf9a5eb0..4c488fb70535 100644 --- a/lib/clang/libllvmasmprinter/Makefile.depend +++ b/lib/clang/libllvmasmprinter/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmbitreader/Makefile.depend b/lib/clang/libllvmbitreader/Makefile.depend index edbadfd147fa..3ebccd2b6638 100644 --- a/lib/clang/libllvmbitreader/Makefile.depend +++ b/lib/clang/libllvmbitreader/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmbitwriter/Makefile.depend b/lib/clang/libllvmbitwriter/Makefile.depend index 4d8f064b840b..1cb182ef8ce1 100644 --- a/lib/clang/libllvmbitwriter/Makefile.depend +++ b/lib/clang/libllvmbitwriter/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmcodegen/Makefile.depend b/lib/clang/libllvmcodegen/Makefile.depend index 0dda0fddea1b..d4f1f499fe23 100644 --- a/lib/clang/libllvmcodegen/Makefile.depend +++ b/lib/clang/libllvmcodegen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -16,12 +14,18 @@ DIRDEPS = \ # local dependencies - needed for -jN in clean tree Analysis.o: Intrinsics.inc.h Analysis.po: Intrinsics.inc.h +AtomicExpandPass.o: Intrinsics.inc.h +AtomicExpandPass.po: Intrinsics.inc.h BasicTargetTransformInfo.o: Intrinsics.inc.h BasicTargetTransformInfo.po: Intrinsics.inc.h +CodeGenPrepare.o: Intrinsics.inc.h +CodeGenPrepare.po: Intrinsics.inc.h DwarfEHPrepare.o: Intrinsics.inc.h DwarfEHPrepare.po: Intrinsics.inc.h GCStrategy.o: Intrinsics.inc.h GCStrategy.po: Intrinsics.inc.h +GlobalMerge.o: Intrinsics.inc.h +GlobalMerge.po: Intrinsics.inc.h IntrinsicLowering.o: Intrinsics.inc.h IntrinsicLowering.po: Intrinsics.inc.h LocalStackSlotAllocation.o: Intrinsics.inc.h diff --git a/lib/clang/libllvmcore/Makefile.depend b/lib/clang/libllvmcore/Makefile.depend index 0b232ec27459..a3ed9235619e 100644 --- a/lib/clang/libllvmcore/Makefile.depend +++ b/lib/clang/libllvmcore/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -20,6 +18,8 @@ AutoUpgrade.o: Intrinsics.inc.h AutoUpgrade.po: Intrinsics.inc.h BasicBlock.o: Intrinsics.inc.h BasicBlock.po: Intrinsics.inc.h +ConstantFold.o: Intrinsics.inc.h +ConstantFold.po: Intrinsics.inc.h Core.o: Intrinsics.inc.h Core.po: Intrinsics.inc.h DIBuilder.o: Intrinsics.inc.h @@ -32,6 +32,8 @@ IRBuilder.o: Intrinsics.inc.h IRBuilder.po: Intrinsics.inc.h IntrinsicInst.o: Intrinsics.inc.h IntrinsicInst.po: Intrinsics.inc.h +Statepoint.o: Intrinsics.inc.h +Statepoint.po: Intrinsics.inc.h Verifier.o: Intrinsics.inc.h Verifier.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvminstcombine/Makefile.depend b/lib/clang/libllvminstcombine/Makefile.depend index 2910d05e8dea..d12846343b87 100644 --- a/lib/clang/libllvminstcombine/Makefile.depend +++ b/lib/clang/libllvminstcombine/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvminstrumentation/Makefile.depend b/lib/clang/libllvminstrumentation/Makefile.depend index 8e825e09c7e2..60f060f800c5 100644 --- a/lib/clang/libllvminstrumentation/Makefile.depend +++ b/lib/clang/libllvminstrumentation/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -20,8 +18,10 @@ BoundsChecking.o: Intrinsics.inc.h BoundsChecking.po: Intrinsics.inc.h DataFlowSanitizer.o: Intrinsics.inc.h DataFlowSanitizer.po: Intrinsics.inc.h -DebugIR.o: Intrinsics.inc.h -DebugIR.po: Intrinsics.inc.h +GCOVProfiling.o: Intrinsics.inc.h +GCOVProfiling.po: Intrinsics.inc.h +InstrProfiling.o: Intrinsics.inc.h +InstrProfiling.po: Intrinsics.inc.h MemorySanitizer.o: Intrinsics.inc.h MemorySanitizer.po: Intrinsics.inc.h ThreadSanitizer.o: Intrinsics.inc.h diff --git a/lib/clang/libllvmipa/Makefile.depend b/lib/clang/libllvmipa/Makefile.depend index 916056a7beec..e1b83e09d79b 100644 --- a/lib/clang/libllvmipa/Makefile.depend +++ b/lib/clang/libllvmipa/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmipo/Makefile.depend b/lib/clang/libllvmipo/Makefile.depend index 151c976f9979..d549f142c179 100644 --- a/lib/clang/libllvmipo/Makefile.depend +++ b/lib/clang/libllvmipo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmirreader/Makefile.depend b/lib/clang/libllvmirreader/Makefile.depend index 4d8f064b840b..1cb182ef8ce1 100644 --- a/lib/clang/libllvmirreader/Makefile.depend +++ b/lib/clang/libllvmirreader/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmlinker/Makefile.depend b/lib/clang/libllvmlinker/Makefile.depend index 4d8f064b840b..1cb182ef8ce1 100644 --- a/lib/clang/libllvmlinker/Makefile.depend +++ b/lib/clang/libllvmlinker/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmmc/Makefile.depend b/lib/clang/libllvmmc/Makefile.depend index 4d8f064b840b..1cb182ef8ce1 100644 --- a/lib/clang/libllvmmc/Makefile.depend +++ b/lib/clang/libllvmmc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmmcparser/Makefile.depend b/lib/clang/libllvmmcparser/Makefile.depend index 4d8f064b840b..1cb182ef8ce1 100644 --- a/lib/clang/libllvmmcparser/Makefile.depend +++ b/lib/clang/libllvmmcparser/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmmipsasmparser/Makefile.depend b/lib/clang/libllvmmipsasmparser/Makefile.depend index bbb5c8a3e639..7b56cd349f50 100644 --- a/lib/clang/libllvmmipsasmparser/Makefile.depend +++ b/lib/clang/libllvmmipsasmparser/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmmipscodegen/Makefile.depend b/lib/clang/libllvmmipscodegen/Makefile.depend index dd0e8917c122..a145f9a1fcee 100644 --- a/lib/clang/libllvmmipscodegen/Makefile.depend +++ b/lib/clang/libllvmmipscodegen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -68,14 +66,12 @@ MipsAsmPrinter.po: MipsGenInstrInfo.inc.h MipsAsmPrinter.po: MipsGenMCPseudoLowering.inc.h MipsAsmPrinter.po: MipsGenRegisterInfo.inc.h MipsAsmPrinter.po: MipsGenSubtargetInfo.inc.h -MipsCodeEmitter.o: MipsGenCodeEmitter.inc.h -MipsCodeEmitter.o: MipsGenInstrInfo.inc.h -MipsCodeEmitter.o: MipsGenRegisterInfo.inc.h -MipsCodeEmitter.o: MipsGenSubtargetInfo.inc.h -MipsCodeEmitter.po: MipsGenCodeEmitter.inc.h -MipsCodeEmitter.po: MipsGenInstrInfo.inc.h -MipsCodeEmitter.po: MipsGenRegisterInfo.inc.h -MipsCodeEmitter.po: MipsGenSubtargetInfo.inc.h +MipsCCState.o: MipsGenInstrInfo.inc.h +MipsCCState.o: MipsGenRegisterInfo.inc.h +MipsCCState.o: MipsGenSubtargetInfo.inc.h +MipsCCState.po: MipsGenInstrInfo.inc.h +MipsCCState.po: MipsGenRegisterInfo.inc.h +MipsCCState.po: MipsGenSubtargetInfo.inc.h MipsConstantIslandPass.o: MipsGenInstrInfo.inc.h MipsConstantIslandPass.o: MipsGenRegisterInfo.inc.h MipsConstantIslandPass.o: MipsGenSubtargetInfo.inc.h @@ -88,6 +84,18 @@ MipsDelaySlotFiller.o: MipsGenSubtargetInfo.inc.h MipsDelaySlotFiller.po: MipsGenInstrInfo.inc.h MipsDelaySlotFiller.po: MipsGenRegisterInfo.inc.h MipsDelaySlotFiller.po: MipsGenSubtargetInfo.inc.h +MipsFastISel.o: Intrinsics.inc.h +MipsFastISel.o: MipsGenCallingConv.inc.h +MipsFastISel.o: MipsGenFastISel.inc.h +MipsFastISel.o: MipsGenInstrInfo.inc.h +MipsFastISel.o: MipsGenRegisterInfo.inc.h +MipsFastISel.o: MipsGenSubtargetInfo.inc.h +MipsFastISel.po: Intrinsics.inc.h +MipsFastISel.po: MipsGenCallingConv.inc.h +MipsFastISel.po: MipsGenFastISel.inc.h +MipsFastISel.po: MipsGenInstrInfo.inc.h +MipsFastISel.po: MipsGenRegisterInfo.inc.h +MipsFastISel.po: MipsGenSubtargetInfo.inc.h MipsFrameLowering.o: MipsGenInstrInfo.inc.h MipsFrameLowering.o: MipsGenRegisterInfo.inc.h MipsFrameLowering.o: MipsGenSubtargetInfo.inc.h @@ -118,12 +126,6 @@ MipsInstrInfo.o: MipsGenSubtargetInfo.inc.h MipsInstrInfo.po: MipsGenInstrInfo.inc.h MipsInstrInfo.po: MipsGenRegisterInfo.inc.h MipsInstrInfo.po: MipsGenSubtargetInfo.inc.h -MipsJITInfo.o: MipsGenInstrInfo.inc.h -MipsJITInfo.o: MipsGenRegisterInfo.inc.h -MipsJITInfo.o: MipsGenSubtargetInfo.inc.h -MipsJITInfo.po: MipsGenInstrInfo.inc.h -MipsJITInfo.po: MipsGenRegisterInfo.inc.h -MipsJITInfo.po: MipsGenSubtargetInfo.inc.h MipsLongBranch.o: MipsGenInstrInfo.inc.h MipsLongBranch.o: MipsGenRegisterInfo.inc.h MipsLongBranch.o: MipsGenSubtargetInfo.inc.h @@ -150,6 +152,12 @@ MipsModuleISelDAGToDAG.po: MipsGenDAGISel.inc.h MipsModuleISelDAGToDAG.po: MipsGenInstrInfo.inc.h MipsModuleISelDAGToDAG.po: MipsGenRegisterInfo.inc.h MipsModuleISelDAGToDAG.po: MipsGenSubtargetInfo.inc.h +MipsOptimizePICCall.o: MipsGenInstrInfo.inc.h +MipsOptimizePICCall.o: MipsGenRegisterInfo.inc.h +MipsOptimizePICCall.o: MipsGenSubtargetInfo.inc.h +MipsOptimizePICCall.po: MipsGenInstrInfo.inc.h +MipsOptimizePICCall.po: MipsGenRegisterInfo.inc.h +MipsOptimizePICCall.po: MipsGenSubtargetInfo.inc.h MipsOs16.o: MipsGenInstrInfo.inc.h MipsOs16.o: MipsGenRegisterInfo.inc.h MipsOs16.o: MipsGenSubtargetInfo.inc.h @@ -220,6 +228,10 @@ MipsTargetMachine.po: MipsGenDAGISel.inc.h MipsTargetMachine.po: MipsGenInstrInfo.inc.h MipsTargetMachine.po: MipsGenRegisterInfo.inc.h MipsTargetMachine.po: MipsGenSubtargetInfo.inc.h +MipsTargetObjectFile.o: MipsGenInstrInfo.inc.h +MipsTargetObjectFile.o: MipsGenRegisterInfo.inc.h MipsTargetObjectFile.o: MipsGenSubtargetInfo.inc.h +MipsTargetObjectFile.po: MipsGenInstrInfo.inc.h +MipsTargetObjectFile.po: MipsGenRegisterInfo.inc.h MipsTargetObjectFile.po: MipsGenSubtargetInfo.inc.h .endif diff --git a/lib/clang/libllvmmipsdesc/Makefile.depend b/lib/clang/libllvmmipsdesc/Makefile.depend index c0c495914f42..f27206a10e04 100644 --- a/lib/clang/libllvmmipsdesc/Makefile.depend +++ b/lib/clang/libllvmmipsdesc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -14,6 +12,12 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +MipsABIInfo.o: MipsGenInstrInfo.inc.h +MipsABIInfo.o: MipsGenRegisterInfo.inc.h +MipsABIInfo.o: MipsGenSubtargetInfo.inc.h +MipsABIInfo.po: MipsGenInstrInfo.inc.h +MipsABIInfo.po: MipsGenRegisterInfo.inc.h +MipsABIInfo.po: MipsGenSubtargetInfo.inc.h MipsAsmBackend.o: MipsGenInstrInfo.inc.h MipsAsmBackend.o: MipsGenRegisterInfo.inc.h MipsAsmBackend.o: MipsGenSubtargetInfo.inc.h @@ -26,6 +30,12 @@ MipsELFObjectWriter.o: MipsGenSubtargetInfo.inc.h MipsELFObjectWriter.po: MipsGenInstrInfo.inc.h MipsELFObjectWriter.po: MipsGenRegisterInfo.inc.h MipsELFObjectWriter.po: MipsGenSubtargetInfo.inc.h +MipsELFStreamer.o: MipsGenInstrInfo.inc.h +MipsELFStreamer.o: MipsGenRegisterInfo.inc.h +MipsELFStreamer.o: MipsGenSubtargetInfo.inc.h +MipsELFStreamer.po: MipsGenInstrInfo.inc.h +MipsELFStreamer.po: MipsGenRegisterInfo.inc.h +MipsELFStreamer.po: MipsGenSubtargetInfo.inc.h MipsMCCodeEmitter.o: MipsGenInstrInfo.inc.h MipsMCCodeEmitter.o: MipsGenMCCodeEmitter.inc.h MipsMCCodeEmitter.o: MipsGenRegisterInfo.inc.h @@ -40,6 +50,22 @@ MipsMCTargetDesc.o: MipsGenSubtargetInfo.inc.h MipsMCTargetDesc.po: MipsGenInstrInfo.inc.h MipsMCTargetDesc.po: MipsGenRegisterInfo.inc.h MipsMCTargetDesc.po: MipsGenSubtargetInfo.inc.h -MipsReginfo.o: MipsGenSubtargetInfo.inc.h -MipsReginfo.po: MipsGenSubtargetInfo.inc.h +MipsNaClELFStreamer.o: MipsGenInstrInfo.inc.h +MipsNaClELFStreamer.o: MipsGenRegisterInfo.inc.h +MipsNaClELFStreamer.o: MipsGenSubtargetInfo.inc.h +MipsNaClELFStreamer.po: MipsGenInstrInfo.inc.h +MipsNaClELFStreamer.po: MipsGenRegisterInfo.inc.h +MipsNaClELFStreamer.po: MipsGenSubtargetInfo.inc.h +MipsOptionRecord.o: MipsGenInstrInfo.inc.h +MipsOptionRecord.o: MipsGenRegisterInfo.inc.h +MipsOptionRecord.o: MipsGenSubtargetInfo.inc.h +MipsOptionRecord.po: MipsGenInstrInfo.inc.h +MipsOptionRecord.po: MipsGenRegisterInfo.inc.h +MipsOptionRecord.po: MipsGenSubtargetInfo.inc.h +MipsTargetStreamer.o: MipsGenInstrInfo.inc.h +MipsTargetStreamer.o: MipsGenRegisterInfo.inc.h +MipsTargetStreamer.o: MipsGenSubtargetInfo.inc.h +MipsTargetStreamer.po: MipsGenInstrInfo.inc.h +MipsTargetStreamer.po: MipsGenRegisterInfo.inc.h +MipsTargetStreamer.po: MipsGenSubtargetInfo.inc.h .endif diff --git a/lib/clang/libllvmmipsdisassembler/Makefile.depend b/lib/clang/libllvmmipsdisassembler/Makefile.depend index 878dd8593cf6..0e59343eb59d 100644 --- a/lib/clang/libllvmmipsdisassembler/Makefile.depend +++ b/lib/clang/libllvmmipsdisassembler/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmmipsinfo/Makefile.depend b/lib/clang/libllvmmipsinfo/Makefile.depend index 452184f8ae4d..7d759189ab40 100644 --- a/lib/clang/libllvmmipsinfo/Makefile.depend +++ b/lib/clang/libllvmmipsinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmmipsinstprinter/Makefile.depend b/lib/clang/libllvmmipsinstprinter/Makefile.depend index 99744bab583c..8cfc6801e08f 100644 --- a/lib/clang/libllvmmipsinstprinter/Makefile.depend +++ b/lib/clang/libllvmmipsinstprinter/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmobjcarcopts/Makefile.depend b/lib/clang/libllvmobjcarcopts/Makefile.depend index 4ebd17e012a6..553854efa843 100644 --- a/lib/clang/libllvmobjcarcopts/Makefile.depend +++ b/lib/clang/libllvmobjcarcopts/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmobject/Makefile.depend b/lib/clang/libllvmobject/Makefile.depend index 4d8f064b840b..1cb182ef8ce1 100644 --- a/lib/clang/libllvmobject/Makefile.depend +++ b/lib/clang/libllvmobject/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmoption/Makefile.depend b/lib/clang/libllvmoption/Makefile.depend index 4d8f064b840b..1cb182ef8ce1 100644 --- a/lib/clang/libllvmoption/Makefile.depend +++ b/lib/clang/libllvmoption/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmpowerpcasmparser/Makefile.depend b/lib/clang/libllvmpowerpcasmparser/Makefile.depend index 194691fed594..2245911c6dc9 100644 --- a/lib/clang/libllvmpowerpcasmparser/Makefile.depend +++ b/lib/clang/libllvmpowerpcasmparser/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmpowerpccodegen/Makefile.depend b/lib/clang/libllvmpowerpccodegen/Makefile.depend index 2808f9ae4a4b..bbdeedcde684 100644 --- a/lib/clang/libllvmpowerpccodegen/Makefile.depend +++ b/lib/clang/libllvmpowerpccodegen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -34,14 +32,6 @@ PPCCTRLoops.po: Intrinsics.inc.h PPCCTRLoops.po: PPCGenInstrInfo.inc.h PPCCTRLoops.po: PPCGenRegisterInfo.inc.h PPCCTRLoops.po: PPCGenSubtargetInfo.inc.h -PPCCodeEmitter.o: PPCGenCodeEmitter.inc.h -PPCCodeEmitter.o: PPCGenInstrInfo.inc.h -PPCCodeEmitter.o: PPCGenRegisterInfo.inc.h -PPCCodeEmitter.o: PPCGenSubtargetInfo.inc.h -PPCCodeEmitter.po: PPCGenCodeEmitter.inc.h -PPCCodeEmitter.po: PPCGenInstrInfo.inc.h -PPCCodeEmitter.po: PPCGenRegisterInfo.inc.h -PPCCodeEmitter.po: PPCGenSubtargetInfo.inc.h PPCFastISel.o: Intrinsics.inc.h PPCFastISel.o: PPCGenCallingConv.inc.h PPCFastISel.o: PPCGenFastISel.inc.h @@ -92,12 +82,6 @@ PPCInstrInfo.o: PPCGenSubtargetInfo.inc.h PPCInstrInfo.po: PPCGenInstrInfo.inc.h PPCInstrInfo.po: PPCGenRegisterInfo.inc.h PPCInstrInfo.po: PPCGenSubtargetInfo.inc.h -PPCJITInfo.o: PPCGenInstrInfo.inc.h -PPCJITInfo.o: PPCGenRegisterInfo.inc.h -PPCJITInfo.o: PPCGenSubtargetInfo.inc.h -PPCJITInfo.po: PPCGenInstrInfo.inc.h -PPCJITInfo.po: PPCGenRegisterInfo.inc.h -PPCJITInfo.po: PPCGenSubtargetInfo.inc.h PPCMCInstLower.o: PPCGenInstrInfo.inc.h PPCMCInstLower.o: PPCGenRegisterInfo.inc.h PPCMCInstLower.o: PPCGenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmpowerpcdesc/Makefile.depend b/lib/clang/libllvmpowerpcdesc/Makefile.depend index d6220e7321a8..d694c9d75903 100644 --- a/lib/clang/libllvmpowerpcdesc/Makefile.depend +++ b/lib/clang/libllvmpowerpcdesc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmpowerpcdisassembler/Makefile.depend b/lib/clang/libllvmpowerpcdisassembler/Makefile.depend index bf2f722191c4..798d155543a6 100644 --- a/lib/clang/libllvmpowerpcdisassembler/Makefile.depend +++ b/lib/clang/libllvmpowerpcdisassembler/Makefile.depend @@ -1,10 +1,10 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ + lib/libc++ \ + lib/msun \ usr.bin/clang/tblgen.host \ diff --git a/lib/clang/libllvmpowerpcinfo/Makefile.depend b/lib/clang/libllvmpowerpcinfo/Makefile.depend index 022060a5f096..d4655516d319 100644 --- a/lib/clang/libllvmpowerpcinfo/Makefile.depend +++ b/lib/clang/libllvmpowerpcinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmpowerpcinstprinter/Makefile.depend b/lib/clang/libllvmpowerpcinstprinter/Makefile.depend index 676a53c94bdc..e679c8269f4a 100644 --- a/lib/clang/libllvmpowerpcinstprinter/Makefile.depend +++ b/lib/clang/libllvmpowerpcinstprinter/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmprofiledata/Makefile.depend b/lib/clang/libllvmprofiledata/Makefile.depend index 639d45d8b9b0..1cb182ef8ce1 100644 --- a/lib/clang/libllvmprofiledata/Makefile.depend +++ b/lib/clang/libllvmprofiledata/Makefile.depend @@ -1,10 +1,10 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ + lib/libc++ \ + lib/msun \ .include diff --git a/lib/clang/libllvmscalaropts/Makefile.depend b/lib/clang/libllvmscalaropts/Makefile.depend index 1c880cd3d3fd..fb802c919622 100644 --- a/lib/clang/libllvmscalaropts/Makefile.depend +++ b/lib/clang/libllvmscalaropts/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -16,14 +14,16 @@ DIRDEPS = \ # local dependencies - needed for -jN in clean tree ADCE.o: Intrinsics.inc.h ADCE.po: Intrinsics.inc.h -CodeGenPrepare.o: Intrinsics.inc.h -CodeGenPrepare.po: Intrinsics.inc.h +AlignmentFromAssumptions.o: Intrinsics.inc.h +AlignmentFromAssumptions.po: Intrinsics.inc.h +ConstantHoisting.o: Intrinsics.inc.h +ConstantHoisting.po: Intrinsics.inc.h DeadStoreElimination.o: Intrinsics.inc.h DeadStoreElimination.po: Intrinsics.inc.h +EarlyCSE.o: Intrinsics.inc.h +EarlyCSE.po: Intrinsics.inc.h GVN.o: Intrinsics.inc.h GVN.po: Intrinsics.inc.h -GlobalMerge.o: Intrinsics.inc.h -GlobalMerge.po: Intrinsics.inc.h IndVarSimplify.o: Intrinsics.inc.h IndVarSimplify.po: Intrinsics.inc.h JumpThreading.o: Intrinsics.inc.h @@ -46,6 +46,8 @@ LowerAtomic.o: Intrinsics.inc.h LowerAtomic.po: Intrinsics.inc.h MemCpyOptimizer.o: Intrinsics.inc.h MemCpyOptimizer.po: Intrinsics.inc.h +MergedLoadStoreMotion.o: Intrinsics.inc.h +MergedLoadStoreMotion.po: Intrinsics.inc.h PartiallyInlineLibCalls.o: Intrinsics.inc.h PartiallyInlineLibCalls.po: Intrinsics.inc.h Reassociate.o: Intrinsics.inc.h @@ -56,6 +58,10 @@ SROA.o: Intrinsics.inc.h SROA.po: Intrinsics.inc.h ScalarReplAggregates.o: Intrinsics.inc.h ScalarReplAggregates.po: Intrinsics.inc.h +Scalarizer.o: Intrinsics.inc.h +Scalarizer.po: Intrinsics.inc.h +SeparateConstOffsetFromGEP.o: Intrinsics.inc.h +SeparateConstOffsetFromGEP.po: Intrinsics.inc.h SimplifyCFGPass.o: Intrinsics.inc.h SimplifyCFGPass.po: Intrinsics.inc.h Sink.o: Intrinsics.inc.h diff --git a/lib/clang/libllvmselectiondag/Makefile.depend b/lib/clang/libllvmselectiondag/Makefile.depend index 737ede18613e..9e219b950174 100644 --- a/lib/clang/libllvmselectiondag/Makefile.depend +++ b/lib/clang/libllvmselectiondag/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -26,4 +24,6 @@ SelectionDAGDumper.o: Intrinsics.inc.h SelectionDAGDumper.po: Intrinsics.inc.h SelectionDAGISel.o: Intrinsics.inc.h SelectionDAGISel.po: Intrinsics.inc.h +StatepointLowering.o: Intrinsics.inc.h +StatepointLowering.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvmsparcasmparser/Makefile.depend b/lib/clang/libllvmsparcasmparser/Makefile.depend index 63286f919113..7082fc0dd1c7 100644 --- a/lib/clang/libllvmsparcasmparser/Makefile.depend +++ b/lib/clang/libllvmsparcasmparser/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmsparccodegen/Makefile.depend b/lib/clang/libllvmsparccodegen/Makefile.depend index 19188f948753..3309d0fe1732 100644 --- a/lib/clang/libllvmsparccodegen/Makefile.depend +++ b/lib/clang/libllvmsparccodegen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -26,14 +24,6 @@ SparcAsmPrinter.o: SparcGenSubtargetInfo.inc.h SparcAsmPrinter.po: SparcGenInstrInfo.inc.h SparcAsmPrinter.po: SparcGenRegisterInfo.inc.h SparcAsmPrinter.po: SparcGenSubtargetInfo.inc.h -SparcCodeEmitter.o: SparcGenCodeEmitter.inc.h -SparcCodeEmitter.o: SparcGenInstrInfo.inc.h -SparcCodeEmitter.o: SparcGenRegisterInfo.inc.h -SparcCodeEmitter.o: SparcGenSubtargetInfo.inc.h -SparcCodeEmitter.po: SparcGenCodeEmitter.inc.h -SparcCodeEmitter.po: SparcGenInstrInfo.inc.h -SparcCodeEmitter.po: SparcGenRegisterInfo.inc.h -SparcCodeEmitter.po: SparcGenSubtargetInfo.inc.h SparcFrameLowering.o: SparcGenInstrInfo.inc.h SparcFrameLowering.o: SparcGenRegisterInfo.inc.h SparcFrameLowering.o: SparcGenSubtargetInfo.inc.h @@ -64,12 +54,6 @@ SparcInstrInfo.o: SparcGenSubtargetInfo.inc.h SparcInstrInfo.po: SparcGenInstrInfo.inc.h SparcInstrInfo.po: SparcGenRegisterInfo.inc.h SparcInstrInfo.po: SparcGenSubtargetInfo.inc.h -SparcJITInfo.o: SparcGenInstrInfo.inc.h -SparcJITInfo.o: SparcGenRegisterInfo.inc.h -SparcJITInfo.o: SparcGenSubtargetInfo.inc.h -SparcJITInfo.po: SparcGenInstrInfo.inc.h -SparcJITInfo.po: SparcGenRegisterInfo.inc.h -SparcJITInfo.po: SparcGenSubtargetInfo.inc.h SparcMCInstLower.o: SparcGenInstrInfo.inc.h SparcMCInstLower.o: SparcGenRegisterInfo.inc.h SparcMCInstLower.o: SparcGenSubtargetInfo.inc.h @@ -82,12 +66,6 @@ SparcRegisterInfo.o: SparcGenSubtargetInfo.inc.h SparcRegisterInfo.po: SparcGenInstrInfo.inc.h SparcRegisterInfo.po: SparcGenRegisterInfo.inc.h SparcRegisterInfo.po: SparcGenSubtargetInfo.inc.h -SparcSelectionDAGInfo.o: SparcGenInstrInfo.inc.h -SparcSelectionDAGInfo.o: SparcGenRegisterInfo.inc.h -SparcSelectionDAGInfo.o: SparcGenSubtargetInfo.inc.h -SparcSelectionDAGInfo.po: SparcGenInstrInfo.inc.h -SparcSelectionDAGInfo.po: SparcGenRegisterInfo.inc.h -SparcSelectionDAGInfo.po: SparcGenSubtargetInfo.inc.h SparcSubtarget.o: SparcGenInstrInfo.inc.h SparcSubtarget.o: SparcGenRegisterInfo.inc.h SparcSubtarget.o: SparcGenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmsparcdesc/Makefile.depend b/lib/clang/libllvmsparcdesc/Makefile.depend index c7de05425c15..38f81e8e89de 100644 --- a/lib/clang/libllvmsparcdesc/Makefile.depend +++ b/lib/clang/libllvmsparcdesc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmsparcdisassembler/Makefile.depend b/lib/clang/libllvmsparcdisassembler/Makefile.depend index e25131cd0a60..46bcee86861b 100644 --- a/lib/clang/libllvmsparcdisassembler/Makefile.depend +++ b/lib/clang/libllvmsparcdisassembler/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmsparcinfo/Makefile.depend b/lib/clang/libllvmsparcinfo/Makefile.depend index f5a3bc975e49..5b70773c63be 100644 --- a/lib/clang/libllvmsparcinfo/Makefile.depend +++ b/lib/clang/libllvmsparcinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmsparcinstprinter/Makefile.depend b/lib/clang/libllvmsparcinstprinter/Makefile.depend index 411f0807c2b1..deb858d64ec7 100644 --- a/lib/clang/libllvmsparcinstprinter/Makefile.depend +++ b/lib/clang/libllvmsparcinstprinter/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmsupport/Makefile.depend b/lib/clang/libllvmsupport/Makefile.depend index 4d8f064b840b..ef8fa438cf6b 100644 --- a/lib/clang/libllvmsupport/Makefile.depend +++ b/lib/clang/libllvmsupport/Makefile.depend @@ -1,11 +1,11 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ lib/libc++ \ + lib/libexecinfo \ + lib/libz \ lib/msun \ diff --git a/lib/clang/libllvmtablegen/Makefile.depend b/lib/clang/libllvmtablegen/Makefile.depend index 4d8f064b840b..1cb182ef8ce1 100644 --- a/lib/clang/libllvmtablegen/Makefile.depend +++ b/lib/clang/libllvmtablegen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmtarget/Makefile.depend b/lib/clang/libllvmtarget/Makefile.depend index 4d8f064b840b..1cb182ef8ce1 100644 --- a/lib/clang/libllvmtarget/Makefile.depend +++ b/lib/clang/libllvmtarget/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmtransformutils/Makefile.depend b/lib/clang/libllvmtransformutils/Makefile.depend index 2aad904d8c6a..b11adc75c51e 100644 --- a/lib/clang/libllvmtransformutils/Makefile.depend +++ b/lib/clang/libllvmtransformutils/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -34,14 +32,14 @@ LoopSimplify.o: Intrinsics.inc.h LoopSimplify.po: Intrinsics.inc.h LowerExpectIntrinsic.o: Intrinsics.inc.h LowerExpectIntrinsic.po: Intrinsics.inc.h -LowerInvoke.o: Intrinsics.inc.h -LowerInvoke.po: Intrinsics.inc.h PromoteMemoryToRegister.o: Intrinsics.inc.h PromoteMemoryToRegister.po: Intrinsics.inc.h SSAUpdater.o: Intrinsics.inc.h SSAUpdater.po: Intrinsics.inc.h SimplifyCFG.o: Intrinsics.inc.h SimplifyCFG.po: Intrinsics.inc.h +SimplifyIndVar.o: Intrinsics.inc.h +SimplifyIndVar.po: Intrinsics.inc.h SimplifyLibCalls.o: Intrinsics.inc.h SimplifyLibCalls.po: Intrinsics.inc.h .endif diff --git a/lib/clang/libllvmvectorize/Makefile.depend b/lib/clang/libllvmvectorize/Makefile.depend index 171d928360a5..1aaac6e03e97 100644 --- a/lib/clang/libllvmvectorize/Makefile.depend +++ b/lib/clang/libllvmvectorize/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmx86asmparser/Makefile.depend b/lib/clang/libllvmx86asmparser/Makefile.depend index 200e80ddc0c4..96ece14b15aa 100644 --- a/lib/clang/libllvmx86asmparser/Makefile.depend +++ b/lib/clang/libllvmx86asmparser/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -14,6 +12,12 @@ DIRDEPS = \ .if ${DEP_RELDIR} == ${_DEP_RELDIR} # local dependencies - needed for -jN in clean tree +X86AsmInstrumentation.o: X86GenInstrInfo.inc.h +X86AsmInstrumentation.o: X86GenRegisterInfo.inc.h +X86AsmInstrumentation.o: X86GenSubtargetInfo.inc.h +X86AsmInstrumentation.po: X86GenInstrInfo.inc.h +X86AsmInstrumentation.po: X86GenRegisterInfo.inc.h +X86AsmInstrumentation.po: X86GenSubtargetInfo.inc.h X86AsmParser.o: X86GenAsmMatcher.inc.h X86AsmParser.o: X86GenInstrInfo.inc.h X86AsmParser.o: X86GenRegisterInfo.inc.h diff --git a/lib/clang/libllvmx86codegen/Makefile.depend b/lib/clang/libllvmx86codegen/Makefile.depend index 530394855029..a0b95c864e47 100644 --- a/lib/clang/libllvmx86codegen/Makefile.depend +++ b/lib/clang/libllvmx86codegen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -20,12 +18,12 @@ X86AsmPrinter.o: X86GenSubtargetInfo.inc.h X86AsmPrinter.po: X86GenInstrInfo.inc.h X86AsmPrinter.po: X86GenRegisterInfo.inc.h X86AsmPrinter.po: X86GenSubtargetInfo.inc.h -X86CodeEmitter.o: X86GenInstrInfo.inc.h -X86CodeEmitter.o: X86GenRegisterInfo.inc.h -X86CodeEmitter.o: X86GenSubtargetInfo.inc.h -X86CodeEmitter.po: X86GenInstrInfo.inc.h -X86CodeEmitter.po: X86GenRegisterInfo.inc.h -X86CodeEmitter.po: X86GenSubtargetInfo.inc.h +X86CallFrameOptimization.o: X86GenInstrInfo.inc.h +X86CallFrameOptimization.o: X86GenRegisterInfo.inc.h +X86CallFrameOptimization.o: X86GenSubtargetInfo.inc.h +X86CallFrameOptimization.po: X86GenInstrInfo.inc.h +X86CallFrameOptimization.po: X86GenRegisterInfo.inc.h +X86CallFrameOptimization.po: X86GenSubtargetInfo.inc.h X86FastISel.o: Intrinsics.inc.h X86FastISel.o: X86GenCallingConv.inc.h X86FastISel.o: X86GenFastISel.inc.h @@ -82,18 +80,14 @@ X86InstrInfo.o: X86GenSubtargetInfo.inc.h X86InstrInfo.po: X86GenInstrInfo.inc.h X86InstrInfo.po: X86GenRegisterInfo.inc.h X86InstrInfo.po: X86GenSubtargetInfo.inc.h -X86JITInfo.o: X86GenInstrInfo.inc.h -X86JITInfo.o: X86GenRegisterInfo.inc.h -X86JITInfo.o: X86GenSubtargetInfo.inc.h -X86JITInfo.po: X86GenInstrInfo.inc.h -X86JITInfo.po: X86GenRegisterInfo.inc.h -X86JITInfo.po: X86GenSubtargetInfo.inc.h X86MCInstLower.o: X86GenInstrInfo.inc.h X86MCInstLower.o: X86GenRegisterInfo.inc.h X86MCInstLower.o: X86GenSubtargetInfo.inc.h X86MCInstLower.po: X86GenInstrInfo.inc.h X86MCInstLower.po: X86GenRegisterInfo.inc.h X86MCInstLower.po: X86GenSubtargetInfo.inc.h +X86MachineFunctionInfo.o: X86GenRegisterInfo.inc.h +X86MachineFunctionInfo.po: X86GenRegisterInfo.inc.h X86PadShortFunction.o: X86GenInstrInfo.inc.h X86PadShortFunction.o: X86GenRegisterInfo.inc.h X86PadShortFunction.o: X86GenSubtargetInfo.inc.h diff --git a/lib/clang/libllvmx86desc/Makefile.depend b/lib/clang/libllvmx86desc/Makefile.depend index 503475705ddc..a682e28ddff4 100644 --- a/lib/clang/libllvmx86desc/Makefile.depend +++ b/lib/clang/libllvmx86desc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -62,4 +60,10 @@ X86WinCOFFObjectWriter.o: X86GenSubtargetInfo.inc.h X86WinCOFFObjectWriter.po: X86GenInstrInfo.inc.h X86WinCOFFObjectWriter.po: X86GenRegisterInfo.inc.h X86WinCOFFObjectWriter.po: X86GenSubtargetInfo.inc.h +X86WinCOFFStreamer.o: X86GenInstrInfo.inc.h +X86WinCOFFStreamer.o: X86GenRegisterInfo.inc.h +X86WinCOFFStreamer.o: X86GenSubtargetInfo.inc.h +X86WinCOFFStreamer.po: X86GenInstrInfo.inc.h +X86WinCOFFStreamer.po: X86GenRegisterInfo.inc.h +X86WinCOFFStreamer.po: X86GenSubtargetInfo.inc.h .endif diff --git a/lib/clang/libllvmx86disassembler/Makefile.depend b/lib/clang/libllvmx86disassembler/Makefile.depend index fa7a65b0d137..b4f594398ff9 100644 --- a/lib/clang/libllvmx86disassembler/Makefile.depend +++ b/lib/clang/libllvmx86disassembler/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ @@ -16,6 +14,8 @@ DIRDEPS = \ # local dependencies - needed for -jN in clean tree X86Disassembler.o: X86GenInstrInfo.inc.h X86Disassembler.o: X86GenRegisterInfo.inc.h +X86Disassembler.o: X86GenSubtargetInfo.inc.h X86Disassembler.po: X86GenInstrInfo.inc.h X86Disassembler.po: X86GenRegisterInfo.inc.h +X86Disassembler.po: X86GenSubtargetInfo.inc.h .endif diff --git a/lib/clang/libllvmx86info/Makefile.depend b/lib/clang/libllvmx86info/Makefile.depend index 1ea75cbc9180..b62bf66baee0 100644 --- a/lib/clang/libllvmx86info/Makefile.depend +++ b/lib/clang/libllvmx86info/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmx86instprinter/Makefile.depend b/lib/clang/libllvmx86instprinter/Makefile.depend index 86a651a27d43..17a02b4e6c2f 100644 --- a/lib/clang/libllvmx86instprinter/Makefile.depend +++ b/lib/clang/libllvmx86instprinter/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/clang/libllvmx86utils/Makefile.depend b/lib/clang/libllvmx86utils/Makefile.depend index 4d8f064b840b..1cb182ef8ce1 100644 --- a/lib/clang/libllvmx86utils/Makefile.depend +++ b/lib/clang/libllvmx86utils/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/csu/amd64/Makefile.depend b/lib/csu/amd64/Makefile.depend index 7d982eb5c63a..993ab0638f4a 100644 --- a/lib/csu/amd64/Makefile.depend +++ b/lib/csu/amd64/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ diff --git a/lib/libalias/libalias/Makefile.depend b/lib/libalias/libalias/Makefile.depend index 807c0a46764c..bd8ae02a7258 100644 --- a/lib/libalias/libalias/Makefile.depend +++ b/lib/libalias/libalias/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libarchive/Makefile.depend b/lib/libarchive/Makefile.depend index f87de01ae5f6..a4f9ef487613 100644 --- a/lib/libarchive/Makefile.depend +++ b/lib/libarchive/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libauditd/Makefile.depend b/lib/libauditd/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libauditd/Makefile.depend +++ b/lib/libauditd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libbegemot/Makefile.depend b/lib/libbegemot/Makefile.depend index 4acc32f64da1..8bbd7a297d83 100644 --- a/lib/libbegemot/Makefile.depend +++ b/lib/libbegemot/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libbluetooth/Makefile.depend b/lib/libbluetooth/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libbluetooth/Makefile.depend +++ b/lib/libbluetooth/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libbsm/Makefile.depend b/lib/libbsm/Makefile.depend index 807c0a46764c..bd8ae02a7258 100644 --- a/lib/libbsm/Makefile.depend +++ b/lib/libbsm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libbsnmp/libbsnmp/Makefile.depend b/lib/libbsnmp/libbsnmp/Makefile.depend index 4de5cd32a6b8..004583e056b4 100644 --- a/lib/libbsnmp/libbsnmp/Makefile.depend +++ b/lib/libbsnmp/libbsnmp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libbz2/Makefile.depend b/lib/libbz2/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libbz2/Makefile.depend +++ b/lib/libbz2/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libc++/Makefile.depend b/lib/libc++/Makefile.depend index 83e9e6a005e4..12e148a62f10 100644 --- a/lib/libc++/Makefile.depend +++ b/lib/libc++/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libc/Makefile.depend b/lib/libc/Makefile.depend index d23769e11570..2058affc0a60 100644 --- a/lib/libc/Makefile.depend +++ b/lib/libc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libc_nonshared/Makefile.depend b/lib/libc_nonshared/Makefile.depend index 639d45d8b9b0..15a1f9c07f7c 100644 --- a/lib/libc_nonshared/Makefile.depend +++ b/lib/libc_nonshared/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libcalendar/Makefile.depend b/lib/libcalendar/Makefile.depend index 7cedd5f867c7..c9d74dc112b4 100644 --- a/lib/libcalendar/Makefile.depend +++ b/lib/libcalendar/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libcam/Makefile.depend b/lib/libcam/Makefile.depend index f976a9c926dd..2a956d82c2fd 100644 --- a/lib/libcam/Makefile.depend +++ b/lib/libcam/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libcapsicum/Makefile.depend b/lib/libcapsicum/Makefile.depend index ab84fcc1c757..bf32038992de 100644 --- a/lib/libcapsicum/Makefile.depend +++ b/lib/libcapsicum/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libcom_err/Makefile.depend b/lib/libcom_err/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libcom_err/Makefile.depend +++ b/lib/libcom_err/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libcompiler_rt/Makefile.depend b/lib/libcompiler_rt/Makefile.depend index 7d982eb5c63a..993ab0638f4a 100644 --- a/lib/libcompiler_rt/Makefile.depend +++ b/lib/libcompiler_rt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ diff --git a/lib/libcrypt/Makefile.depend b/lib/libcrypt/Makefile.depend index 807c0a46764c..bd8ae02a7258 100644 --- a/lib/libcrypt/Makefile.depend +++ b/lib/libcrypt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libcxxrt/Makefile.depend b/lib/libcxxrt/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libcxxrt/Makefile.depend +++ b/lib/libcxxrt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libdevinfo/Makefile.depend b/lib/libdevinfo/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libdevinfo/Makefile.depend +++ b/lib/libdevinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libdevstat/Makefile.depend b/lib/libdevstat/Makefile.depend index 46488c998a57..a785d0c4eb86 100644 --- a/lib/libdevstat/Makefile.depend +++ b/lib/libdevstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libdpv/Makefile.depend b/lib/libdpv/Makefile.depend index c6e5e45d4bbb..027da9c99c98 100644 --- a/lib/libdpv/Makefile.depend +++ b/lib/libdpv/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libdialog \ diff --git a/lib/libedit/Makefile.depend b/lib/libedit/Makefile.depend index 8a034afe581b..d4b7b5c5bf82 100644 --- a/lib/libedit/Makefile.depend +++ b/lib/libedit/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libedit/edit/readline/Makefile.depend b/lib/libedit/edit/readline/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/lib/libedit/edit/readline/Makefile.depend +++ b/lib/libedit/edit/readline/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/lib/libelf/Makefile.depend b/lib/libelf/Makefile.depend index b2c79ae13999..5830cc8b2913 100644 --- a/lib/libelf/Makefile.depend +++ b/lib/libelf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libexecinfo/Makefile.depend b/lib/libexecinfo/Makefile.depend index f8f5a363f748..f895c3711f53 100644 --- a/lib/libexecinfo/Makefile.depend +++ b/lib/libexecinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libexpat/Makefile.depend b/lib/libexpat/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libexpat/Makefile.depend +++ b/lib/libexpat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libfetch/Makefile.depend b/lib/libfetch/Makefile.depend index 4bedb02c7bc6..a9a742b0cf63 100644 --- a/lib/libfetch/Makefile.depend +++ b/lib/libfetch/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libfigpar/Makefile.depend b/lib/libfigpar/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libfigpar/Makefile.depend +++ b/lib/libfigpar/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libgeom/Makefile.depend b/lib/libgeom/Makefile.depend index acc7f3579c8e..e60493655ee5 100644 --- a/lib/libgeom/Makefile.depend +++ b/lib/libgeom/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libgpio/Makefile.depend b/lib/libgpio/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libgpio/Makefile.depend +++ b/lib/libgpio/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libgssapi/Makefile.depend b/lib/libgssapi/Makefile.depend index cf58a7bfde96..a27ab523ae0c 100644 --- a/lib/libgssapi/Makefile.depend +++ b/lib/libgssapi/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libipsec/Makefile.depend b/lib/libipsec/Makefile.depend index f48095aeb79d..60bd0fe797ec 100644 --- a/lib/libipsec/Makefile.depend +++ b/lib/libipsec/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libjail/Makefile.depend b/lib/libjail/Makefile.depend index 807c0a46764c..bd8ae02a7258 100644 --- a/lib/libjail/Makefile.depend +++ b/lib/libjail/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libkiconv/Makefile.depend b/lib/libkiconv/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libkiconv/Makefile.depend +++ b/lib/libkiconv/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libkvm/Makefile.depend b/lib/libkvm/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libkvm/Makefile.depend +++ b/lib/libkvm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libldns/Makefile.depend b/lib/libldns/Makefile.depend index 3bf324e728f6..42849eb9aa4c 100644 --- a/lib/libldns/Makefile.depend +++ b/lib/libldns/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/liblzma/Makefile.depend b/lib/liblzma/Makefile.depend index e855f901e227..38b643578f6c 100644 --- a/lib/liblzma/Makefile.depend +++ b/lib/liblzma/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libmagic/Makefile.depend b/lib/libmagic/Makefile.depend index ace658ad7a0d..ecdbd375a35d 100644 --- a/lib/libmagic/Makefile.depend +++ b/lib/libmagic/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libmd/Makefile.depend b/lib/libmd/Makefile.depend index 33e3fb551c7d..a54cafa726b0 100644 --- a/lib/libmd/Makefile.depend +++ b/lib/libmd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libmd/Makefile.depend.host b/lib/libmd/Makefile.depend.host index beeaf302621a..3f41a3f3c46c 100644 --- a/lib/libmd/Makefile.depend.host +++ b/lib/libmd/Makefile.depend.host @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat \ gnu/usr.bin/binutils/ld \ diff --git a/lib/libmemstat/Makefile.depend b/lib/libmemstat/Makefile.depend index 46488c998a57..a785d0c4eb86 100644 --- a/lib/libmemstat/Makefile.depend +++ b/lib/libmemstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libmp/Makefile.depend b/lib/libmp/Makefile.depend index 62e4b3caef0a..399ee78756d8 100644 --- a/lib/libmp/Makefile.depend +++ b/lib/libmp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libmt/Makefile.depend b/lib/libmt/Makefile.depend index acc7f3579c8e..e60493655ee5 100644 --- a/lib/libmt/Makefile.depend +++ b/lib/libmt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libnetbsd/Makefile.depend b/lib/libnetbsd/Makefile.depend index 8780851ef9b5..217d6b6b7bd8 100644 --- a/lib/libnetbsd/Makefile.depend +++ b/lib/libnetbsd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libnetgraph/Makefile.depend b/lib/libnetgraph/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libnetgraph/Makefile.depend +++ b/lib/libnetgraph/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libngatm/Makefile.depend b/lib/libngatm/Makefile.depend index 807c0a46764c..bd8ae02a7258 100644 --- a/lib/libngatm/Makefile.depend +++ b/lib/libngatm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libnv/Makefile.depend b/lib/libnv/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libnv/Makefile.depend +++ b/lib/libnv/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libohash/Makefile.depend b/lib/libohash/Makefile.depend index 639d45d8b9b0..15a1f9c07f7c 100644 --- a/lib/libohash/Makefile.depend +++ b/lib/libohash/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libopie/Makefile.depend b/lib/libopie/Makefile.depend index 9c2e45312c9f..14d8b0f8ca01 100644 --- a/lib/libopie/Makefile.depend +++ b/lib/libopie/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libpam/libpam/Makefile.depend b/lib/libpam/libpam/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libpam/libpam/Makefile.depend +++ b/lib/libpam/libpam/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libpcap/Makefile.depend b/lib/libpcap/Makefile.depend index c3f153ba3ae8..54902e78e135 100644 --- a/lib/libpcap/Makefile.depend +++ b/lib/libpcap/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ @@ -12,6 +10,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ usr.bin/xinstall.host \ + usr.bin/yacc.host \ .include diff --git a/lib/libpmc/Makefile.depend b/lib/libpmc/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libpmc/Makefile.depend +++ b/lib/libpmc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libproc/Makefile.depend b/lib/libproc/Makefile.depend index 9d42af4a50d8..f86335a4be98 100644 --- a/lib/libproc/Makefile.depend +++ b/lib/libproc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ cddl/lib/libctf \ gnu/lib/csu \ diff --git a/lib/libprocstat/Makefile.depend b/lib/libprocstat/Makefile.depend index 914766954c5e..18080106ce03 100644 --- a/lib/libprocstat/Makefile.depend +++ b/lib/libprocstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libprocstat/zfs/Makefile.depend b/lib/libprocstat/zfs/Makefile.depend index b142a6736e9e..d26b6e761a7b 100644 --- a/lib/libprocstat/zfs/Makefile.depend +++ b/lib/libprocstat/zfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libradius/Makefile.depend b/lib/libradius/Makefile.depend index 6047b890a604..640beb9c5bc0 100644 --- a/lib/libradius/Makefile.depend +++ b/lib/libradius/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/librpcsvc/Makefile.depend b/lib/librpcsvc/Makefile.depend index 0c8f02a303d1..5d080b0973bf 100644 --- a/lib/librpcsvc/Makefile.depend +++ b/lib/librpcsvc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/librt/Makefile.depend b/lib/librt/Makefile.depend index 37acbe0cd621..fd5a53596779 100644 --- a/lib/librt/Makefile.depend +++ b/lib/librt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/librtld_db/Makefile.depend b/lib/librtld_db/Makefile.depend index 8a7801e2e170..23bc80ed4ee4 100644 --- a/lib/librtld_db/Makefile.depend +++ b/lib/librtld_db/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libsbuf/Makefile.depend b/lib/libsbuf/Makefile.depend index 4acc32f64da1..8bbd7a297d83 100644 --- a/lib/libsbuf/Makefile.depend +++ b/lib/libsbuf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libsdp/Makefile.depend b/lib/libsdp/Makefile.depend index 7a7a3e35ab8d..b4cc6bf68e52 100644 --- a/lib/libsdp/Makefile.depend +++ b/lib/libsdp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libsm/Makefile.depend b/lib/libsm/Makefile.depend index 6053a6b9662f..27d4c25c36b2 100644 --- a/lib/libsm/Makefile.depend +++ b/lib/libsm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libsmdb/Makefile.depend b/lib/libsmdb/Makefile.depend index fa096c87b950..5bc2c13a5f69 100644 --- a/lib/libsmdb/Makefile.depend +++ b/lib/libsmdb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libsmutil/Makefile.depend b/lib/libsmutil/Makefile.depend index 2a24094e085d..be806028ad04 100644 --- a/lib/libsmutil/Makefile.depend +++ b/lib/libsmutil/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/arpa \ diff --git a/lib/libsqlite3/Makefile.depend b/lib/libsqlite3/Makefile.depend index 37acbe0cd621..fd5a53596779 100644 --- a/lib/libsqlite3/Makefile.depend +++ b/lib/libsqlite3/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libtelnet/Makefile.depend b/lib/libtelnet/Makefile.depend index 3c4206715da7..a055e3e41935 100644 --- a/lib/libtelnet/Makefile.depend +++ b/lib/libtelnet/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/lib/libthr/Makefile.depend b/lib/libthr/Makefile.depend index be21aee72d17..3e6955230bce 100644 --- a/lib/libthr/Makefile.depend +++ b/lib/libthr/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libthread_db/Makefile.depend b/lib/libthread_db/Makefile.depend index 4acc32f64da1..8bbd7a297d83 100644 --- a/lib/libthread_db/Makefile.depend +++ b/lib/libthread_db/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libucl/Makefile.depend b/lib/libucl/Makefile.depend index bee153c2a7af..a83fb20541b6 100644 --- a/lib/libucl/Makefile.depend +++ b/lib/libucl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libufs/Makefile.depend b/lib/libufs/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libufs/Makefile.depend +++ b/lib/libufs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libugidfw/Makefile.depend b/lib/libugidfw/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libugidfw/Makefile.depend +++ b/lib/libugidfw/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libulog/Makefile.depend b/lib/libulog/Makefile.depend index c448c48e5e65..da3a812e3d96 100644 --- a/lib/libulog/Makefile.depend +++ b/lib/libulog/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/libusb/Makefile.depend b/lib/libusb/Makefile.depend index 37acbe0cd621..fd5a53596779 100644 --- a/lib/libusb/Makefile.depend +++ b/lib/libusb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libusbhid/Makefile.depend b/lib/libusbhid/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libusbhid/Makefile.depend +++ b/lib/libusbhid/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libutil/Makefile.depend b/lib/libutil/Makefile.depend index 807c0a46764c..bd8ae02a7258 100644 --- a/lib/libutil/Makefile.depend +++ b/lib/libutil/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libwrap/Makefile.depend b/lib/libwrap/Makefile.depend index 807c0a46764c..bd8ae02a7258 100644 --- a/lib/libwrap/Makefile.depend +++ b/lib/libwrap/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libxo/Makefile.depend b/lib/libxo/Makefile.depend index 467741f6d1a9..593d407e3f02 100644 --- a/lib/libxo/Makefile.depend +++ b/lib/libxo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/liby/Makefile.depend b/lib/liby/Makefile.depend index 7d982eb5c63a..993ab0638f4a 100644 --- a/lib/liby/Makefile.depend +++ b/lib/liby/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ diff --git a/lib/libypclnt/Makefile.depend b/lib/libypclnt/Makefile.depend index 7d7c7444e9b2..6b4dcd40cfb0 100644 --- a/lib/libypclnt/Makefile.depend +++ b/lib/libypclnt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/lib/libz/Makefile.depend b/lib/libz/Makefile.depend index 4acc32f64da1..8bbd7a297d83 100644 --- a/lib/libz/Makefile.depend +++ b/lib/libz/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/msun/Makefile.depend b/lib/msun/Makefile.depend index 4acc32f64da1..8bbd7a297d83 100644 --- a/lib/msun/Makefile.depend +++ b/lib/msun/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/ncurses/ncurses/Makefile.depend b/lib/ncurses/ncurses/Makefile.depend index 919abe588b18..52197c8ecb87 100644 --- a/lib/ncurses/ncurses/Makefile.depend +++ b/lib/ncurses/ncurses/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/lib/ncurses/ncursesw/Makefile.depend b/lib/ncurses/ncursesw/Makefile.depend index 8990db97ebf7..045bbfc5a224 100644 --- a/lib/ncurses/ncursesw/Makefile.depend +++ b/lib/ncurses/ncursesw/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/libexec/atf/atf-check/Makefile.depend b/libexec/atf/atf-check/Makefile.depend index 72e04cf1a78d..40b975a50497 100644 --- a/libexec/atf/atf-check/Makefile.depend +++ b/libexec/atf/atf-check/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/atf/atf-sh/Makefile.depend b/libexec/atf/atf-sh/Makefile.depend index 72e04cf1a78d..40b975a50497 100644 --- a/libexec/atf/atf-sh/Makefile.depend +++ b/libexec/atf/atf-sh/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/atrun/Makefile.depend b/libexec/atrun/Makefile.depend index 0d2c9f9e78d5..ea1c9d1f82fa 100644 --- a/libexec/atrun/Makefile.depend +++ b/libexec/atrun/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/bootpd/bootpgw/Makefile.depend b/libexec/bootpd/bootpgw/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/libexec/bootpd/bootpgw/Makefile.depend +++ b/libexec/bootpd/bootpgw/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/bootpd/tools/bootpef/Makefile.depend b/libexec/bootpd/tools/bootpef/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/libexec/bootpd/tools/bootpef/Makefile.depend +++ b/libexec/bootpd/tools/bootpef/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/bootpd/tools/bootptest/Makefile.depend b/libexec/bootpd/tools/bootptest/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/libexec/bootpd/tools/bootptest/Makefile.depend +++ b/libexec/bootpd/tools/bootptest/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/comsat/Makefile.depend b/libexec/comsat/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/libexec/comsat/Makefile.depend +++ b/libexec/comsat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/fingerd/Makefile.depend b/libexec/fingerd/Makefile.depend index d9ecce6a52af..45371c5423a0 100644 --- a/libexec/fingerd/Makefile.depend +++ b/libexec/fingerd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/ftpd/Makefile.depend b/libexec/ftpd/Makefile.depend index 3c7559f5d412..8ab58290cf5b 100644 --- a/libexec/ftpd/Makefile.depend +++ b/libexec/ftpd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/getty/Makefile.depend b/libexec/getty/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/libexec/getty/Makefile.depend +++ b/libexec/getty/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/mail.local/Makefile.depend b/libexec/mail.local/Makefile.depend index 9dfec4858713..0e250c88c9a9 100644 --- a/libexec/mail.local/Makefile.depend +++ b/libexec/mail.local/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/mknetid/Makefile.depend b/libexec/mknetid/Makefile.depend index c1655db8b437..c3bc1bd6b9c0 100644 --- a/libexec/mknetid/Makefile.depend +++ b/libexec/mknetid/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/pppoed/Makefile.depend b/libexec/pppoed/Makefile.depend index 83a8148003a0..e8a95b24b1a6 100644 --- a/libexec/pppoed/Makefile.depend +++ b/libexec/pppoed/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/rbootd/Makefile.depend b/libexec/rbootd/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/libexec/rbootd/Makefile.depend +++ b/libexec/rbootd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/revnetgroup/Makefile.depend b/libexec/revnetgroup/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/libexec/revnetgroup/Makefile.depend +++ b/libexec/revnetgroup/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/rlogind/Makefile.depend b/libexec/rlogind/Makefile.depend index d9ecce6a52af..45371c5423a0 100644 --- a/libexec/rlogind/Makefile.depend +++ b/libexec/rlogind/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/rpc.rquotad/Makefile.depend b/libexec/rpc.rquotad/Makefile.depend index 3eb4558310fb..0558552514b4 100644 --- a/libexec/rpc.rquotad/Makefile.depend +++ b/libexec/rpc.rquotad/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/rpc.rstatd/Makefile.depend b/libexec/rpc.rstatd/Makefile.depend index 755b5ef9b5b7..d60511c2b1da 100644 --- a/libexec/rpc.rstatd/Makefile.depend +++ b/libexec/rpc.rstatd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/rpc.rusersd/Makefile.depend b/libexec/rpc.rusersd/Makefile.depend index e44fad36fdf9..9e3ced92f5c7 100644 --- a/libexec/rpc.rusersd/Makefile.depend +++ b/libexec/rpc.rusersd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/rpc.rwalld/Makefile.depend b/libexec/rpc.rwalld/Makefile.depend index bcf0e390016a..8dd4123ca8d2 100644 --- a/libexec/rpc.rwalld/Makefile.depend +++ b/libexec/rpc.rwalld/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/rpc.sprayd/Makefile.depend b/libexec/rpc.sprayd/Makefile.depend index e44fad36fdf9..9e3ced92f5c7 100644 --- a/libexec/rpc.sprayd/Makefile.depend +++ b/libexec/rpc.sprayd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/rshd/Makefile.depend b/libexec/rshd/Makefile.depend index a6d700e4d586..eef278db223a 100644 --- a/libexec/rshd/Makefile.depend +++ b/libexec/rshd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/rtld-elf/Makefile.depend b/libexec/rtld-elf/Makefile.depend index c4bbe3a972b9..359c150b9873 100644 --- a/libexec/rtld-elf/Makefile.depend +++ b/libexec/rtld-elf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ include \ diff --git a/libexec/save-entropy/Makefile.depend b/libexec/save-entropy/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/libexec/save-entropy/Makefile.depend +++ b/libexec/save-entropy/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/libexec/smrsh/Makefile.depend b/libexec/smrsh/Makefile.depend index af04b518f38b..ff9b0882c68b 100644 --- a/libexec/smrsh/Makefile.depend +++ b/libexec/smrsh/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/talkd/Makefile.depend b/libexec/talkd/Makefile.depend index 7cc74610b497..39abfa751015 100644 --- a/libexec/talkd/Makefile.depend +++ b/libexec/talkd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/tcpd/Makefile.depend b/libexec/tcpd/Makefile.depend index e66cc0b2d565..8c64a39fa45c 100644 --- a/libexec/tcpd/Makefile.depend +++ b/libexec/tcpd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/telnetd/Makefile.depend b/libexec/telnetd/Makefile.depend index ccb80ea92119..9d01a64a1b52 100644 --- a/libexec/telnetd/Makefile.depend +++ b/libexec/telnetd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/tftp-proxy/Makefile.depend b/libexec/tftp-proxy/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/libexec/tftp-proxy/Makefile.depend +++ b/libexec/tftp-proxy/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/tftpd/Makefile.depend b/libexec/tftpd/Makefile.depend index 2e79396a44b9..57b0fdf65570 100644 --- a/libexec/tftpd/Makefile.depend +++ b/libexec/tftpd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/ulog-helper/Makefile.depend b/libexec/ulog-helper/Makefile.depend index 545efc7ef401..ab59eb1b5631 100644 --- a/libexec/ulog-helper/Makefile.depend +++ b/libexec/ulog-helper/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/libexec/ypxfr/Makefile.depend b/libexec/ypxfr/Makefile.depend index 70e571fc5df5..b122d8a174d6 100644 --- a/libexec/ypxfr/Makefile.depend +++ b/libexec/ypxfr/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/adjkerntz/Makefile.depend b/sbin/adjkerntz/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/adjkerntz/Makefile.depend +++ b/sbin/adjkerntz/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/atm/atmconfig/Makefile.depend b/sbin/atm/atmconfig/Makefile.depend index 42e50670ff63..3782b97c1d29 100644 --- a/sbin/atm/atmconfig/Makefile.depend +++ b/sbin/atm/atmconfig/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/sbin/badsect/Makefile.depend b/sbin/badsect/Makefile.depend index 66da85cb1de1..6ce72ccfcfb4 100644 --- a/sbin/badsect/Makefile.depend +++ b/sbin/badsect/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/bsdlabel/Makefile.depend b/sbin/bsdlabel/Makefile.depend index df6361797d5d..5d7ba237baf6 100644 --- a/sbin/bsdlabel/Makefile.depend +++ b/sbin/bsdlabel/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/camcontrol/Makefile.depend b/sbin/camcontrol/Makefile.depend index 981ec38d17a8..1448d0fcbdc8 100644 --- a/sbin/camcontrol/Makefile.depend +++ b/sbin/camcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ccdconfig/Makefile.depend b/sbin/ccdconfig/Makefile.depend index df6361797d5d..5d7ba237baf6 100644 --- a/sbin/ccdconfig/Makefile.depend +++ b/sbin/ccdconfig/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/clri/Makefile.depend b/sbin/clri/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/clri/Makefile.depend +++ b/sbin/clri/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/comcontrol/Makefile.depend b/sbin/comcontrol/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/comcontrol/Makefile.depend +++ b/sbin/comcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/conscontrol/Makefile.depend b/sbin/conscontrol/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/conscontrol/Makefile.depend +++ b/sbin/conscontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ddb/Makefile.depend b/sbin/ddb/Makefile.depend index 384b6754a9ab..7a06b0fecff9 100644 --- a/sbin/ddb/Makefile.depend +++ b/sbin/ddb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/devd/Makefile.depend b/sbin/devd/Makefile.depend index 9102b495c06e..ff511e6109ca 100644 --- a/sbin/devd/Makefile.depend +++ b/sbin/devd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ include \ diff --git a/sbin/devfs/Makefile.depend b/sbin/devfs/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/devfs/Makefile.depend +++ b/sbin/devfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/dhclient/Makefile.depend b/sbin/dhclient/Makefile.depend index d9ecce6a52af..45371c5423a0 100644 --- a/sbin/dhclient/Makefile.depend +++ b/sbin/dhclient/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/dmesg/Makefile.depend b/sbin/dmesg/Makefile.depend index 384b6754a9ab..7a06b0fecff9 100644 --- a/sbin/dmesg/Makefile.depend +++ b/sbin/dmesg/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/dump/Makefile.depend b/sbin/dump/Makefile.depend index 4a9f7867ec6d..725077b09bfc 100644 --- a/sbin/dump/Makefile.depend +++ b/sbin/dump/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/dumpfs/Makefile.depend b/sbin/dumpfs/Makefile.depend index 66da85cb1de1..6ce72ccfcfb4 100644 --- a/sbin/dumpfs/Makefile.depend +++ b/sbin/dumpfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/dumpon/Makefile.depend b/sbin/dumpon/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/dumpon/Makefile.depend +++ b/sbin/dumpon/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/etherswitchcfg/Makefile.depend b/sbin/etherswitchcfg/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/etherswitchcfg/Makefile.depend +++ b/sbin/etherswitchcfg/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/fdisk/Makefile.depend b/sbin/fdisk/Makefile.depend index df6361797d5d..5d7ba237baf6 100644 --- a/sbin/fdisk/Makefile.depend +++ b/sbin/fdisk/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ffsinfo/Makefile.depend b/sbin/ffsinfo/Makefile.depend index 66da85cb1de1..6ce72ccfcfb4 100644 --- a/sbin/ffsinfo/Makefile.depend +++ b/sbin/ffsinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/fsck/Makefile.depend b/sbin/fsck/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/fsck/Makefile.depend +++ b/sbin/fsck/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/fsck_ffs/Makefile.depend b/sbin/fsck_ffs/Makefile.depend index 66da85cb1de1..6ce72ccfcfb4 100644 --- a/sbin/fsck_ffs/Makefile.depend +++ b/sbin/fsck_ffs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/fsck_msdosfs/Makefile.depend b/sbin/fsck_msdosfs/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/fsck_msdosfs/Makefile.depend +++ b/sbin/fsck_msdosfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/fsdb/Makefile.depend b/sbin/fsdb/Makefile.depend index 6653b3c047eb..a0fbe507ae3f 100644 --- a/sbin/fsdb/Makefile.depend +++ b/sbin/fsdb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/fsirand/Makefile.depend b/sbin/fsirand/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/fsirand/Makefile.depend +++ b/sbin/fsirand/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/gbde/Makefile.depend b/sbin/gbde/Makefile.depend index f30afe7cb903..d71c69a04869 100644 --- a/sbin/gbde/Makefile.depend +++ b/sbin/gbde/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/cache/Makefile.depend b/sbin/geom/class/cache/Makefile.depend index b1d6d2cfbef4..f680682b60f1 100644 --- a/sbin/geom/class/cache/Makefile.depend +++ b/sbin/geom/class/cache/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/concat/Makefile.depend b/sbin/geom/class/concat/Makefile.depend index b1d6d2cfbef4..f680682b60f1 100644 --- a/sbin/geom/class/concat/Makefile.depend +++ b/sbin/geom/class/concat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/eli/Makefile.depend b/sbin/geom/class/eli/Makefile.depend index 2c7c316eefa7..02b0007caa64 100644 --- a/sbin/geom/class/eli/Makefile.depend +++ b/sbin/geom/class/eli/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/journal/Makefile.depend b/sbin/geom/class/journal/Makefile.depend index 058f0d7f87e5..20b8969b91f1 100644 --- a/sbin/geom/class/journal/Makefile.depend +++ b/sbin/geom/class/journal/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/label/Makefile.depend b/sbin/geom/class/label/Makefile.depend index b1d6d2cfbef4..f680682b60f1 100644 --- a/sbin/geom/class/label/Makefile.depend +++ b/sbin/geom/class/label/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/mirror/Makefile.depend b/sbin/geom/class/mirror/Makefile.depend index 4fa82023ea16..9c072c2e2e6d 100644 --- a/sbin/geom/class/mirror/Makefile.depend +++ b/sbin/geom/class/mirror/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/mountver/Makefile.depend b/sbin/geom/class/mountver/Makefile.depend index b1d6d2cfbef4..f680682b60f1 100644 --- a/sbin/geom/class/mountver/Makefile.depend +++ b/sbin/geom/class/mountver/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/multipath/Makefile.depend b/sbin/geom/class/multipath/Makefile.depend index b1d6d2cfbef4..f680682b60f1 100644 --- a/sbin/geom/class/multipath/Makefile.depend +++ b/sbin/geom/class/multipath/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/nop/Makefile.depend b/sbin/geom/class/nop/Makefile.depend index b1d6d2cfbef4..f680682b60f1 100644 --- a/sbin/geom/class/nop/Makefile.depend +++ b/sbin/geom/class/nop/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/part/Makefile.depend b/sbin/geom/class/part/Makefile.depend index ef3b57ef9b99..40c0f449eb7d 100644 --- a/sbin/geom/class/part/Makefile.depend +++ b/sbin/geom/class/part/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/raid/Makefile.depend b/sbin/geom/class/raid/Makefile.depend index 4fa82023ea16..9c072c2e2e6d 100644 --- a/sbin/geom/class/raid/Makefile.depend +++ b/sbin/geom/class/raid/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/raid3/Makefile.depend b/sbin/geom/class/raid3/Makefile.depend index 4fa82023ea16..9c072c2e2e6d 100644 --- a/sbin/geom/class/raid3/Makefile.depend +++ b/sbin/geom/class/raid3/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/sched/Makefile.depend b/sbin/geom/class/sched/Makefile.depend index b1d6d2cfbef4..f680682b60f1 100644 --- a/sbin/geom/class/sched/Makefile.depend +++ b/sbin/geom/class/sched/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/shsec/Makefile.depend b/sbin/geom/class/shsec/Makefile.depend index b1d6d2cfbef4..f680682b60f1 100644 --- a/sbin/geom/class/shsec/Makefile.depend +++ b/sbin/geom/class/shsec/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/stripe/Makefile.depend b/sbin/geom/class/stripe/Makefile.depend index b1d6d2cfbef4..f680682b60f1 100644 --- a/sbin/geom/class/stripe/Makefile.depend +++ b/sbin/geom/class/stripe/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/class/virstor/Makefile.depend b/sbin/geom/class/virstor/Makefile.depend index b1d6d2cfbef4..f680682b60f1 100644 --- a/sbin/geom/class/virstor/Makefile.depend +++ b/sbin/geom/class/virstor/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/geom/core/Makefile.depend b/sbin/geom/core/Makefile.depend index e20388c0bb72..870b8700d3dd 100644 --- a/sbin/geom/core/Makefile.depend +++ b/sbin/geom/core/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ggate/ggatec/Makefile.depend b/sbin/ggate/ggatec/Makefile.depend index c2834f3d54b9..712737622dc3 100644 --- a/sbin/ggate/ggatec/Makefile.depend +++ b/sbin/ggate/ggatec/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ggate/ggated/Makefile.depend b/sbin/ggate/ggated/Makefile.depend index 375f95b6da8c..b721496c4d24 100644 --- a/sbin/ggate/ggated/Makefile.depend +++ b/sbin/ggate/ggated/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ggate/ggatel/Makefile.depend b/sbin/ggate/ggatel/Makefile.depend index 4aa987016f02..c8afe60b38e7 100644 --- a/sbin/ggate/ggatel/Makefile.depend +++ b/sbin/ggate/ggatel/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/growfs/Makefile.depend b/sbin/growfs/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/sbin/growfs/Makefile.depend +++ b/sbin/growfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/gvinum/Makefile.depend b/sbin/gvinum/Makefile.depend index 4e1e3356405b..c85fadc09dc6 100644 --- a/sbin/gvinum/Makefile.depend +++ b/sbin/gvinum/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/hastctl/Makefile.depend b/sbin/hastctl/Makefile.depend index dfbfa37ec7aa..3afd98293a5a 100644 --- a/sbin/hastctl/Makefile.depend +++ b/sbin/hastctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/hastd/Makefile.depend b/sbin/hastd/Makefile.depend index 6e891232fbaa..a6d738870256 100644 --- a/sbin/hastd/Makefile.depend +++ b/sbin/hastd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ifconfig/Makefile.depend b/sbin/ifconfig/Makefile.depend index 318c7c863a7e..1e768ab157ef 100644 --- a/sbin/ifconfig/Makefile.depend +++ b/sbin/ifconfig/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/init/Makefile.depend b/sbin/init/Makefile.depend index 1b2a0bde85e0..0d0455363a9b 100644 --- a/sbin/init/Makefile.depend +++ b/sbin/init/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ include \ diff --git a/sbin/ipf/ipf/Makefile.depend b/sbin/ipf/ipf/Makefile.depend index 6ca8be610c38..e0b84fd13465 100644 --- a/sbin/ipf/ipf/Makefile.depend +++ b/sbin/ipf/ipf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ipf/ipfs/Makefile.depend b/sbin/ipf/ipfs/Makefile.depend index c09695388eae..814419a49c75 100644 --- a/sbin/ipf/ipfs/Makefile.depend +++ b/sbin/ipf/ipfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ipf/ipfstat/Makefile.depend b/sbin/ipf/ipfstat/Makefile.depend index fd3e984f7770..a72e1f327905 100644 --- a/sbin/ipf/ipfstat/Makefile.depend +++ b/sbin/ipf/ipfstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ipf/ipftest/Makefile.depend b/sbin/ipf/ipftest/Makefile.depend index 549569e478dc..d47fed75964c 100644 --- a/sbin/ipf/ipftest/Makefile.depend +++ b/sbin/ipf/ipftest/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ipf/ipmon/Makefile.depend b/sbin/ipf/ipmon/Makefile.depend index 69020e077bf0..729899c4e5a3 100644 --- a/sbin/ipf/ipmon/Makefile.depend +++ b/sbin/ipf/ipmon/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ipf/ipnat/Makefile.depend b/sbin/ipf/ipnat/Makefile.depend index 5be902b36082..aa41ba1c73c3 100644 --- a/sbin/ipf/ipnat/Makefile.depend +++ b/sbin/ipf/ipnat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ipf/ippool/Makefile.depend b/sbin/ipf/ippool/Makefile.depend index 4e4cedc57518..a91cdf71e653 100644 --- a/sbin/ipf/ippool/Makefile.depend +++ b/sbin/ipf/ippool/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ipf/ipresend/Makefile.depend b/sbin/ipf/ipresend/Makefile.depend index 7499c73c3480..ca9247f1988a 100644 --- a/sbin/ipf/ipresend/Makefile.depend +++ b/sbin/ipf/ipresend/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ipf/libipf/Makefile.depend b/sbin/ipf/libipf/Makefile.depend index 06fce29bf119..f9d041194c3e 100644 --- a/sbin/ipf/libipf/Makefile.depend +++ b/sbin/ipf/libipf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/arpa \ diff --git a/sbin/ipfw/Makefile.depend b/sbin/ipfw/Makefile.depend index a4fcbf0bce75..57e21da12b91 100644 --- a/sbin/ipfw/Makefile.depend +++ b/sbin/ipfw/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/iscontrol/Makefile.depend b/sbin/iscontrol/Makefile.depend index bf26a6c27532..45dda9055233 100644 --- a/sbin/iscontrol/Makefile.depend +++ b/sbin/iscontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/kldconfig/Makefile.depend b/sbin/kldconfig/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/kldconfig/Makefile.depend +++ b/sbin/kldconfig/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/kldload/Makefile.depend b/sbin/kldload/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/kldload/Makefile.depend +++ b/sbin/kldload/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/kldstat/Makefile.depend b/sbin/kldstat/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/sbin/kldstat/Makefile.depend +++ b/sbin/kldstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/kldunload/Makefile.depend b/sbin/kldunload/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/sbin/kldunload/Makefile.depend +++ b/sbin/kldunload/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ldconfig/Makefile.depend b/sbin/ldconfig/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/ldconfig/Makefile.depend +++ b/sbin/ldconfig/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/md5/Makefile.depend b/sbin/md5/Makefile.depend index 50e2e74bea35..c0953baa2e6d 100644 --- a/sbin/md5/Makefile.depend +++ b/sbin/md5/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mdconfig/Makefile.depend b/sbin/mdconfig/Makefile.depend index d6b21c79a951..dd4a96f8307a 100644 --- a/sbin/mdconfig/Makefile.depend +++ b/sbin/mdconfig/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mdmfs/Makefile.depend b/sbin/mdmfs/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/mdmfs/Makefile.depend +++ b/sbin/mdmfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mknod/Makefile.depend b/sbin/mknod/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/mknod/Makefile.depend +++ b/sbin/mknod/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mksnap_ffs/Makefile.depend b/sbin/mksnap_ffs/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/mksnap_ffs/Makefile.depend +++ b/sbin/mksnap_ffs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mount/Makefile.depend b/sbin/mount/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/sbin/mount/Makefile.depend +++ b/sbin/mount/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mount_cd9660/Makefile.depend b/sbin/mount_cd9660/Makefile.depend index 69a5342e7030..467d7eb368d2 100644 --- a/sbin/mount_cd9660/Makefile.depend +++ b/sbin/mount_cd9660/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mount_fusefs/Makefile.depend b/sbin/mount_fusefs/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/mount_fusefs/Makefile.depend +++ b/sbin/mount_fusefs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mount_msdosfs/Makefile.depend b/sbin/mount_msdosfs/Makefile.depend index 6f58bd155962..9a6cb3cf33d7 100644 --- a/sbin/mount_msdosfs/Makefile.depend +++ b/sbin/mount_msdosfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mount_nfs/Makefile.depend b/sbin/mount_nfs/Makefile.depend index 2a44c25ffe8e..f0ca83a7daa5 100644 --- a/sbin/mount_nfs/Makefile.depend +++ b/sbin/mount_nfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mount_nullfs/Makefile.depend b/sbin/mount_nullfs/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/mount_nullfs/Makefile.depend +++ b/sbin/mount_nullfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mount_udf/Makefile.depend b/sbin/mount_udf/Makefile.depend index 24c6b245d3af..7c6a14243622 100644 --- a/sbin/mount_udf/Makefile.depend +++ b/sbin/mount_udf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/mount_unionfs/Makefile.depend b/sbin/mount_unionfs/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/mount_unionfs/Makefile.depend +++ b/sbin/mount_unionfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/natd/Makefile.depend b/sbin/natd/Makefile.depend index 0aa70dbca58f..88214e1f2ca0 100644 --- a/sbin/natd/Makefile.depend +++ b/sbin/natd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/newfs/Makefile.depend b/sbin/newfs/Makefile.depend index f94cc5edbe53..f5ecca90af80 100644 --- a/sbin/newfs/Makefile.depend +++ b/sbin/newfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/newfs_msdos/Makefile.depend b/sbin/newfs_msdos/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/newfs_msdos/Makefile.depend +++ b/sbin/newfs_msdos/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/nfsiod/Makefile.depend b/sbin/nfsiod/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/sbin/nfsiod/Makefile.depend +++ b/sbin/nfsiod/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/nos-tun/Makefile.depend b/sbin/nos-tun/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/sbin/nos-tun/Makefile.depend +++ b/sbin/nos-tun/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/nvmecontrol/Makefile.depend b/sbin/nvmecontrol/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/nvmecontrol/Makefile.depend +++ b/sbin/nvmecontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/pfctl/Makefile.depend b/sbin/pfctl/Makefile.depend index 4ce935dc54d9..812d0c2b9a4e 100644 --- a/sbin/pfctl/Makefile.depend +++ b/sbin/pfctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/pflogd/Makefile.depend b/sbin/pflogd/Makefile.depend index fb2e1ea9ff35..2fabd863a4f8 100644 --- a/sbin/pflogd/Makefile.depend +++ b/sbin/pflogd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ping/Makefile.depend b/sbin/ping/Makefile.depend index aa5c26eba086..c9d90b8df5a4 100644 --- a/sbin/ping/Makefile.depend +++ b/sbin/ping/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/ping6/Makefile.depend b/sbin/ping6/Makefile.depend index c657f0f52556..056a76458410 100644 --- a/sbin/ping6/Makefile.depend +++ b/sbin/ping6/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/quotacheck/Makefile.depend b/sbin/quotacheck/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/sbin/quotacheck/Makefile.depend +++ b/sbin/quotacheck/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/rcorder/Makefile.depend b/sbin/rcorder/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/sbin/rcorder/Makefile.depend +++ b/sbin/rcorder/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/reboot/Makefile.depend b/sbin/reboot/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/reboot/Makefile.depend +++ b/sbin/reboot/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/recoverdisk/Makefile.depend b/sbin/recoverdisk/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/recoverdisk/Makefile.depend +++ b/sbin/recoverdisk/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/resolvconf/Makefile.depend b/sbin/resolvconf/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/sbin/resolvconf/Makefile.depend +++ b/sbin/resolvconf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/sbin/restore/Makefile.depend b/sbin/restore/Makefile.depend index 4a9f7867ec6d..725077b09bfc 100644 --- a/sbin/restore/Makefile.depend +++ b/sbin/restore/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/route/Makefile.depend b/sbin/route/Makefile.depend index 32760141ab1a..26a5ca9ce55a 100644 --- a/sbin/route/Makefile.depend +++ b/sbin/route/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/routed/rtquery/Makefile.depend b/sbin/routed/rtquery/Makefile.depend index beb04be9c6be..a2bd3917758e 100644 --- a/sbin/routed/rtquery/Makefile.depend +++ b/sbin/routed/rtquery/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/rtsol/Makefile.depend b/sbin/rtsol/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/sbin/rtsol/Makefile.depend +++ b/sbin/rtsol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/savecore/Makefile.depend b/sbin/savecore/Makefile.depend index 8639f8385fef..2822d44448d1 100644 --- a/sbin/savecore/Makefile.depend +++ b/sbin/savecore/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/setkey/Makefile.depend b/sbin/setkey/Makefile.depend index a467db1d2c66..68c2ae32d0f4 100644 --- a/sbin/setkey/Makefile.depend +++ b/sbin/setkey/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/shutdown/Makefile.depend b/sbin/shutdown/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/shutdown/Makefile.depend +++ b/sbin/shutdown/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/spppcontrol/Makefile.depend b/sbin/spppcontrol/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/spppcontrol/Makefile.depend +++ b/sbin/spppcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/swapon/Makefile.depend b/sbin/swapon/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/sbin/swapon/Makefile.depend +++ b/sbin/swapon/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/sysctl/Makefile.depend b/sbin/sysctl/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/sbin/sysctl/Makefile.depend +++ b/sbin/sysctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/tunefs/Makefile.depend b/sbin/tunefs/Makefile.depend index 66da85cb1de1..6ce72ccfcfb4 100644 --- a/sbin/tunefs/Makefile.depend +++ b/sbin/tunefs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/sbin/umount/Makefile.depend b/sbin/umount/Makefile.depend index c1655db8b437..c3bc1bd6b9c0 100644 --- a/sbin/umount/Makefile.depend +++ b/sbin/umount/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libcrypto/Makefile.depend b/secure/lib/libcrypto/Makefile.depend index 7ef0e6328eb6..78145faf8e5b 100644 --- a/secure/lib/libcrypto/Makefile.depend +++ b/secure/lib/libcrypto/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend +++ b/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libcrypto/engines/libaep/Makefile.depend b/secure/lib/libcrypto/engines/libaep/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/secure/lib/libcrypto/engines/libaep/Makefile.depend +++ b/secure/lib/libcrypto/engines/libaep/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libcrypto/engines/libatalla/Makefile.depend b/secure/lib/libcrypto/engines/libatalla/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/secure/lib/libcrypto/engines/libatalla/Makefile.depend +++ b/secure/lib/libcrypto/engines/libatalla/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libcrypto/engines/libchil/Makefile.depend b/secure/lib/libcrypto/engines/libchil/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/secure/lib/libcrypto/engines/libchil/Makefile.depend +++ b/secure/lib/libcrypto/engines/libchil/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libcrypto/engines/libcswift/Makefile.depend b/secure/lib/libcrypto/engines/libcswift/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/secure/lib/libcrypto/engines/libcswift/Makefile.depend +++ b/secure/lib/libcrypto/engines/libcswift/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libcrypto/engines/libgost/Makefile.depend b/secure/lib/libcrypto/engines/libgost/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/secure/lib/libcrypto/engines/libgost/Makefile.depend +++ b/secure/lib/libcrypto/engines/libgost/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libcrypto/engines/libnuron/Makefile.depend b/secure/lib/libcrypto/engines/libnuron/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/secure/lib/libcrypto/engines/libnuron/Makefile.depend +++ b/secure/lib/libcrypto/engines/libnuron/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libcrypto/engines/libsureware/Makefile.depend b/secure/lib/libcrypto/engines/libsureware/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/secure/lib/libcrypto/engines/libsureware/Makefile.depend +++ b/secure/lib/libcrypto/engines/libsureware/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libcrypto/engines/libubsec/Makefile.depend b/secure/lib/libcrypto/engines/libubsec/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/secure/lib/libcrypto/engines/libubsec/Makefile.depend +++ b/secure/lib/libcrypto/engines/libubsec/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libssh/Makefile.depend b/secure/lib/libssh/Makefile.depend index 2103620c72cd..79fb4cb568bd 100644 --- a/secure/lib/libssh/Makefile.depend +++ b/secure/lib/libssh/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/lib/libssl/Makefile.depend b/secure/lib/libssl/Makefile.depend index 6047b890a604..640beb9c5bc0 100644 --- a/secure/lib/libssl/Makefile.depend +++ b/secure/lib/libssl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/libexec/sftp-server/Makefile.depend b/secure/libexec/sftp-server/Makefile.depend index 3f50378ffc9f..6710af32ceb9 100644 --- a/secure/libexec/sftp-server/Makefile.depend +++ b/secure/libexec/sftp-server/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/libexec/ssh-keysign/Makefile.depend b/secure/libexec/ssh-keysign/Makefile.depend index 3f50378ffc9f..6710af32ceb9 100644 --- a/secure/libexec/ssh-keysign/Makefile.depend +++ b/secure/libexec/ssh-keysign/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/libexec/ssh-pkcs11-helper/Makefile.depend b/secure/libexec/ssh-pkcs11-helper/Makefile.depend index 3f50378ffc9f..6710af32ceb9 100644 --- a/secure/libexec/ssh-pkcs11-helper/Makefile.depend +++ b/secure/libexec/ssh-pkcs11-helper/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/usr.bin/bdes/Makefile.depend b/secure/usr.bin/bdes/Makefile.depend index ebcc77915608..e9b5ed15f5df 100644 --- a/secure/usr.bin/bdes/Makefile.depend +++ b/secure/usr.bin/bdes/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/usr.bin/openssl/Makefile.depend b/secure/usr.bin/openssl/Makefile.depend index cdca1d280c31..4d65dad1dd22 100644 --- a/secure/usr.bin/openssl/Makefile.depend +++ b/secure/usr.bin/openssl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/usr.bin/scp/Makefile.depend b/secure/usr.bin/scp/Makefile.depend index 3f50378ffc9f..6710af32ceb9 100644 --- a/secure/usr.bin/scp/Makefile.depend +++ b/secure/usr.bin/scp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/usr.bin/sftp/Makefile.depend b/secure/usr.bin/sftp/Makefile.depend index a5cc82686f1f..708d66579111 100644 --- a/secure/usr.bin/sftp/Makefile.depend +++ b/secure/usr.bin/sftp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/usr.bin/ssh-add/Makefile.depend b/secure/usr.bin/ssh-add/Makefile.depend index 3f50378ffc9f..6710af32ceb9 100644 --- a/secure/usr.bin/ssh-add/Makefile.depend +++ b/secure/usr.bin/ssh-add/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/usr.bin/ssh-agent/Makefile.depend b/secure/usr.bin/ssh-agent/Makefile.depend index 3f50378ffc9f..6710af32ceb9 100644 --- a/secure/usr.bin/ssh-agent/Makefile.depend +++ b/secure/usr.bin/ssh-agent/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/usr.bin/ssh-keygen/Makefile.depend b/secure/usr.bin/ssh-keygen/Makefile.depend index 3f50378ffc9f..6710af32ceb9 100644 --- a/secure/usr.bin/ssh-keygen/Makefile.depend +++ b/secure/usr.bin/ssh-keygen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/usr.bin/ssh-keyscan/Makefile.depend b/secure/usr.bin/ssh-keyscan/Makefile.depend index 3f50378ffc9f..6710af32ceb9 100644 --- a/secure/usr.bin/ssh-keyscan/Makefile.depend +++ b/secure/usr.bin/ssh-keyscan/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/usr.bin/ssh/Makefile.depend b/secure/usr.bin/ssh/Makefile.depend index 3ff06846d087..e968da290d9e 100644 --- a/secure/usr.bin/ssh/Makefile.depend +++ b/secure/usr.bin/ssh/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/secure/usr.sbin/sshd/Makefile.depend b/secure/usr.sbin/sshd/Makefile.depend index feb99c8e5f21..860467c73590 100644 --- a/secure/usr.sbin/sshd/Makefile.depend +++ b/secure/usr.sbin/sshd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/share/colldef/Makefile.depend b/share/colldef/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/colldef/Makefile.depend +++ b/share/colldef/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/dict/Makefile.depend b/share/dict/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/dict/Makefile.depend +++ b/share/dict/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/doc/IPv6/Makefile.depend b/share/doc/IPv6/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/doc/IPv6/Makefile.depend +++ b/share/doc/IPv6/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/doc/atf/Makefile.depend b/share/doc/atf/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/doc/atf/Makefile.depend +++ b/share/doc/atf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/doc/legal/intel_ipw/Makefile.depend b/share/doc/legal/intel_ipw/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/doc/legal/intel_ipw/Makefile.depend +++ b/share/doc/legal/intel_ipw/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/doc/legal/intel_iwi/Makefile.depend b/share/doc/legal/intel_iwi/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/doc/legal/intel_iwi/Makefile.depend +++ b/share/doc/legal/intel_iwi/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/doc/legal/intel_iwn/Makefile.depend b/share/doc/legal/intel_iwn/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/doc/legal/intel_iwn/Makefile.depend +++ b/share/doc/legal/intel_iwn/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/doc/legal/intel_wpi/Makefile.depend b/share/doc/legal/intel_wpi/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/doc/legal/intel_wpi/Makefile.depend +++ b/share/doc/legal/intel_wpi/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/doc/llvm/clang/Makefile.depend b/share/doc/llvm/clang/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/doc/llvm/clang/Makefile.depend +++ b/share/doc/llvm/clang/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/dtrace/toolkit/Makefile.depend b/share/dtrace/toolkit/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/dtrace/toolkit/Makefile.depend +++ b/share/dtrace/toolkit/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/examples/ipfilter/Makefile.depend b/share/examples/ipfilter/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/examples/ipfilter/Makefile.depend +++ b/share/examples/ipfilter/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/examples/pf/Makefile.depend b/share/examples/pf/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/examples/pf/Makefile.depend +++ b/share/examples/pf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/i18n/csmapper/APPLE/Makefile.depend b/share/i18n/csmapper/APPLE/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/APPLE/Makefile.depend +++ b/share/i18n/csmapper/APPLE/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/AST/Makefile.depend b/share/i18n/csmapper/AST/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/AST/Makefile.depend +++ b/share/i18n/csmapper/AST/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/BIG5/Makefile.depend b/share/i18n/csmapper/BIG5/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/BIG5/Makefile.depend +++ b/share/i18n/csmapper/BIG5/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/CNS/Makefile.depend b/share/i18n/csmapper/CNS/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/CNS/Makefile.depend +++ b/share/i18n/csmapper/CNS/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/CP/Makefile.depend b/share/i18n/csmapper/CP/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/CP/Makefile.depend +++ b/share/i18n/csmapper/CP/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/EBCDIC/Makefile.depend b/share/i18n/csmapper/EBCDIC/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/EBCDIC/Makefile.depend +++ b/share/i18n/csmapper/EBCDIC/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/GB/Makefile.depend b/share/i18n/csmapper/GB/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/GB/Makefile.depend +++ b/share/i18n/csmapper/GB/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/GEORGIAN/Makefile.depend b/share/i18n/csmapper/GEORGIAN/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/GEORGIAN/Makefile.depend +++ b/share/i18n/csmapper/GEORGIAN/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/ISO-8859/Makefile.depend b/share/i18n/csmapper/ISO-8859/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/ISO-8859/Makefile.depend +++ b/share/i18n/csmapper/ISO-8859/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/ISO646/Makefile.depend b/share/i18n/csmapper/ISO646/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/i18n/csmapper/ISO646/Makefile.depend +++ b/share/i18n/csmapper/ISO646/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/i18n/csmapper/JIS/Makefile.depend b/share/i18n/csmapper/JIS/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/JIS/Makefile.depend +++ b/share/i18n/csmapper/JIS/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/KAZAKH/Makefile.depend b/share/i18n/csmapper/KAZAKH/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/KAZAKH/Makefile.depend +++ b/share/i18n/csmapper/KAZAKH/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/KOI/Makefile.depend b/share/i18n/csmapper/KOI/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/KOI/Makefile.depend +++ b/share/i18n/csmapper/KOI/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/KS/Makefile.depend b/share/i18n/csmapper/KS/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/KS/Makefile.depend +++ b/share/i18n/csmapper/KS/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/MISC/Makefile.depend b/share/i18n/csmapper/MISC/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/MISC/Makefile.depend +++ b/share/i18n/csmapper/MISC/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/csmapper/Makefile.depend b/share/i18n/csmapper/Makefile.depend index 29100ce92574..d291e4180f98 100644 --- a/share/i18n/csmapper/Makefile.depend +++ b/share/i18n/csmapper/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ share/i18n/csmapper/APPLE \ diff --git a/share/i18n/csmapper/TCVN/Makefile.depend b/share/i18n/csmapper/TCVN/Makefile.depend index e914153843a8..e027058e6475 100644 --- a/share/i18n/csmapper/TCVN/Makefile.depend +++ b/share/i18n/csmapper/TCVN/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkcsmapper_static.host \ diff --git a/share/i18n/esdb/APPLE/Makefile.depend b/share/i18n/esdb/APPLE/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/APPLE/Makefile.depend +++ b/share/i18n/esdb/APPLE/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/AST/Makefile.depend b/share/i18n/esdb/AST/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/AST/Makefile.depend +++ b/share/i18n/esdb/AST/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/BIG5/Makefile.depend b/share/i18n/esdb/BIG5/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/BIG5/Makefile.depend +++ b/share/i18n/esdb/BIG5/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/CP/Makefile.depend b/share/i18n/esdb/CP/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/CP/Makefile.depend +++ b/share/i18n/esdb/CP/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/DEC/Makefile.depend b/share/i18n/esdb/DEC/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/DEC/Makefile.depend +++ b/share/i18n/esdb/DEC/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/EBCDIC/Makefile.depend b/share/i18n/esdb/EBCDIC/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/EBCDIC/Makefile.depend +++ b/share/i18n/esdb/EBCDIC/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/EUC/Makefile.depend b/share/i18n/esdb/EUC/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/EUC/Makefile.depend +++ b/share/i18n/esdb/EUC/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/GB/Makefile.depend b/share/i18n/esdb/GB/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/GB/Makefile.depend +++ b/share/i18n/esdb/GB/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/GEORGIAN/Makefile.depend b/share/i18n/esdb/GEORGIAN/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/GEORGIAN/Makefile.depend +++ b/share/i18n/esdb/GEORGIAN/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/ISO-2022/Makefile.depend b/share/i18n/esdb/ISO-2022/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/ISO-2022/Makefile.depend +++ b/share/i18n/esdb/ISO-2022/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/ISO-8859/Makefile.depend b/share/i18n/esdb/ISO-8859/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/ISO-8859/Makefile.depend +++ b/share/i18n/esdb/ISO-8859/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/ISO646/Makefile.depend b/share/i18n/esdb/ISO646/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/ISO646/Makefile.depend +++ b/share/i18n/esdb/ISO646/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/KAZAKH/Makefile.depend b/share/i18n/esdb/KAZAKH/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/KAZAKH/Makefile.depend +++ b/share/i18n/esdb/KAZAKH/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/KOI/Makefile.depend b/share/i18n/esdb/KOI/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/KOI/Makefile.depend +++ b/share/i18n/esdb/KOI/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/MISC/Makefile.depend b/share/i18n/esdb/MISC/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/MISC/Makefile.depend +++ b/share/i18n/esdb/MISC/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/Makefile.depend b/share/i18n/esdb/Makefile.depend index 82d12ce9488b..5bc8b12ed3f5 100644 --- a/share/i18n/esdb/Makefile.depend +++ b/share/i18n/esdb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ share/i18n/esdb/APPLE \ diff --git a/share/i18n/esdb/TCVN/Makefile.depend b/share/i18n/esdb/TCVN/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/TCVN/Makefile.depend +++ b/share/i18n/esdb/TCVN/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/i18n/esdb/UTF/Makefile.depend b/share/i18n/esdb/UTF/Makefile.depend index aae5f4a13072..605ed3de4705 100644 --- a/share/i18n/esdb/UTF/Makefile.depend +++ b/share/i18n/esdb/UTF/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ usr.bin/mkesdb_static.host \ diff --git a/share/man/man1/Makefile.depend b/share/man/man1/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/man/man1/Makefile.depend +++ b/share/man/man1/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/man/man3/Makefile.depend b/share/man/man3/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/man/man3/Makefile.depend +++ b/share/man/man3/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/man/man4/Makefile.depend b/share/man/man4/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/man/man4/Makefile.depend +++ b/share/man/man4/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/man/man5/Makefile.depend b/share/man/man5/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/man/man5/Makefile.depend +++ b/share/man/man5/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/man/man6/Makefile.depend b/share/man/man6/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/man/man6/Makefile.depend +++ b/share/man/man6/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/man/man7/Makefile.depend b/share/man/man7/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/man/man7/Makefile.depend +++ b/share/man/man7/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/man/man8/Makefile.depend b/share/man/man8/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/man/man8/Makefile.depend +++ b/share/man/man8/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/man/man9/Makefile.depend b/share/man/man9/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/man/man9/Makefile.depend +++ b/share/man/man9/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/me/Makefile.depend b/share/me/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/me/Makefile.depend +++ b/share/me/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/misc/Makefile.depend b/share/misc/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/misc/Makefile.depend +++ b/share/misc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/mklocale/Makefile.depend b/share/mklocale/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/mklocale/Makefile.depend +++ b/share/mklocale/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/monetdef/Makefile.depend b/share/monetdef/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/monetdef/Makefile.depend +++ b/share/monetdef/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/msgdef/Makefile.depend b/share/msgdef/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/msgdef/Makefile.depend +++ b/share/msgdef/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/numericdef/Makefile.depend b/share/numericdef/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/numericdef/Makefile.depend +++ b/share/numericdef/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/sendmail/Makefile.depend b/share/sendmail/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/sendmail/Makefile.depend +++ b/share/sendmail/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/skel/Makefile.depend b/share/skel/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/skel/Makefile.depend +++ b/share/skel/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/snmp/mibs/Makefile.depend b/share/snmp/mibs/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/snmp/mibs/Makefile.depend +++ b/share/snmp/mibs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/syscons/fonts/Makefile.depend b/share/syscons/fonts/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/syscons/fonts/Makefile.depend +++ b/share/syscons/fonts/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/syscons/keymaps/Makefile.depend b/share/syscons/keymaps/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/syscons/keymaps/Makefile.depend +++ b/share/syscons/keymaps/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/syscons/scrnmaps/Makefile.depend b/share/syscons/scrnmaps/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/share/syscons/scrnmaps/Makefile.depend +++ b/share/syscons/scrnmaps/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/share/tabset/Makefile.depend b/share/tabset/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/tabset/Makefile.depend +++ b/share/tabset/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/termcap/Makefile.depend b/share/termcap/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/termcap/Makefile.depend +++ b/share/termcap/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/timedef/Makefile.depend b/share/timedef/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/timedef/Makefile.depend +++ b/share/timedef/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/share/zoneinfo/Makefile.depend b/share/zoneinfo/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/share/zoneinfo/Makefile.depend +++ b/share/zoneinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.bin/alias/Makefile.depend b/usr.bin/alias/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.bin/alias/Makefile.depend +++ b/usr.bin/alias/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.bin/apply/Makefile.depend b/usr.bin/apply/Makefile.depend index dc9c62a00fa1..d5a7c112c80f 100644 --- a/usr.bin/apply/Makefile.depend +++ b/usr.bin/apply/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ar/Makefile.depend b/usr.bin/ar/Makefile.depend index 924359fe47d8..b1dce21b5b04 100644 --- a/usr.bin/ar/Makefile.depend +++ b/usr.bin/ar/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ include \ diff --git a/usr.bin/asa/Makefile.depend b/usr.bin/asa/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/asa/Makefile.depend +++ b/usr.bin/asa/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/at/Makefile.depend b/usr.bin/at/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/at/Makefile.depend +++ b/usr.bin/at/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/atm/sscop/Makefile.depend b/usr.bin/atm/sscop/Makefile.depend index d5379612c1ae..dfa18defcd84 100644 --- a/usr.bin/atm/sscop/Makefile.depend +++ b/usr.bin/atm/sscop/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/awk/Makefile.depend b/usr.bin/awk/Makefile.depend index e16eb957551e..94deebf6840c 100644 --- a/usr.bin/awk/Makefile.depend +++ b/usr.bin/awk/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/banner/Makefile.depend b/usr.bin/banner/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/banner/Makefile.depend +++ b/usr.bin/banner/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/basename/Makefile.depend b/usr.bin/basename/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/basename/Makefile.depend +++ b/usr.bin/basename/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/bc/Makefile.depend b/usr.bin/bc/Makefile.depend index 3a0478905cdd..f41c8c3ce633 100644 --- a/usr.bin/bc/Makefile.depend +++ b/usr.bin/bc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/biff/Makefile.depend b/usr.bin/biff/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/biff/Makefile.depend +++ b/usr.bin/biff/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/bluetooth/bthost/Makefile.depend b/usr.bin/bluetooth/bthost/Makefile.depend index 9e752f475e12..af90191a8460 100644 --- a/usr.bin/bluetooth/bthost/Makefile.depend +++ b/usr.bin/bluetooth/bthost/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/bluetooth/btsockstat/Makefile.depend b/usr.bin/bluetooth/btsockstat/Makefile.depend index 7272828c7373..5797eb472cc5 100644 --- a/usr.bin/bluetooth/btsockstat/Makefile.depend +++ b/usr.bin/bluetooth/btsockstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend index 9b6c133a202b..19a9ab864e95 100644 --- a/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend +++ b/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/bmake/Makefile.depend b/usr.bin/bmake/Makefile.depend index eaf546ae1d12..84b8ddd67e34 100644 --- a/usr.bin/bmake/Makefile.depend +++ b/usr.bin/bmake/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ include \ diff --git a/usr.bin/brandelf/Makefile.depend b/usr.bin/brandelf/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/brandelf/Makefile.depend +++ b/usr.bin/brandelf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/bsdiff/bsdiff/Makefile.depend b/usr.bin/bsdiff/bsdiff/Makefile.depend index 95b1d2b4c706..74b6cfb18868 100644 --- a/usr.bin/bsdiff/bsdiff/Makefile.depend +++ b/usr.bin/bsdiff/bsdiff/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/bsdiff/bspatch/Makefile.depend b/usr.bin/bsdiff/bspatch/Makefile.depend index 95b1d2b4c706..74b6cfb18868 100644 --- a/usr.bin/bsdiff/bspatch/Makefile.depend +++ b/usr.bin/bsdiff/bspatch/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/bzip2/Makefile.depend b/usr.bin/bzip2/Makefile.depend index 3b800419adc2..afe16c40e648 100644 --- a/usr.bin/bzip2/Makefile.depend +++ b/usr.bin/bzip2/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/bzip2recover/Makefile.depend b/usr.bin/bzip2recover/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/bzip2recover/Makefile.depend +++ b/usr.bin/bzip2recover/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/c89/Makefile.depend b/usr.bin/c89/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/c89/Makefile.depend +++ b/usr.bin/c89/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/c99/Makefile.depend b/usr.bin/c99/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/c99/Makefile.depend +++ b/usr.bin/c99/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/calendar/Makefile.depend b/usr.bin/calendar/Makefile.depend index da4f56b373df..8a1da00d4f15 100644 --- a/usr.bin/calendar/Makefile.depend +++ b/usr.bin/calendar/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/cap_mkdb/Makefile.depend b/usr.bin/cap_mkdb/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/cap_mkdb/Makefile.depend +++ b/usr.bin/cap_mkdb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/catman/Makefile.depend b/usr.bin/catman/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/catman/Makefile.depend +++ b/usr.bin/catman/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/chat/Makefile.depend b/usr.bin/chat/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/chat/Makefile.depend +++ b/usr.bin/chat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/checknr/Makefile.depend b/usr.bin/checknr/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/checknr/Makefile.depend +++ b/usr.bin/checknr/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/chkey/Makefile.depend b/usr.bin/chkey/Makefile.depend index 93ea89a54add..3739603fa694 100644 --- a/usr.bin/chkey/Makefile.depend +++ b/usr.bin/chkey/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/chpass/Makefile.depend b/usr.bin/chpass/Makefile.depend index e31b02bc51f2..3755d65af71b 100644 --- a/usr.bin/chpass/Makefile.depend +++ b/usr.bin/chpass/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/cksum/Makefile.depend b/usr.bin/cksum/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/cksum/Makefile.depend +++ b/usr.bin/cksum/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/clang/clang-tblgen/Makefile.depend b/usr.bin/clang/clang-tblgen/Makefile.depend index 71f237e7e28b..cc5a7b71ee73 100644 --- a/usr.bin/clang/clang-tblgen/Makefile.depend +++ b/usr.bin/clang/clang-tblgen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ include \ diff --git a/usr.bin/cmp/Makefile.depend b/usr.bin/cmp/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/cmp/Makefile.depend +++ b/usr.bin/cmp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/col/Makefile.depend b/usr.bin/col/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/col/Makefile.depend +++ b/usr.bin/col/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/colcrt/Makefile.depend b/usr.bin/colcrt/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/colcrt/Makefile.depend +++ b/usr.bin/colcrt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/colldef/Makefile.depend b/usr.bin/colldef/Makefile.depend index 032dbbf85786..06136c74ea4f 100644 --- a/usr.bin/colldef/Makefile.depend +++ b/usr.bin/colldef/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/colrm/Makefile.depend b/usr.bin/colrm/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/colrm/Makefile.depend +++ b/usr.bin/colrm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/column/Makefile.depend b/usr.bin/column/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/column/Makefile.depend +++ b/usr.bin/column/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/comm/Makefile.depend b/usr.bin/comm/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/comm/Makefile.depend +++ b/usr.bin/comm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/compile_et/Makefile.depend b/usr.bin/compile_et/Makefile.depend index debff2ed6574..ac0e650a54f2 100644 --- a/usr.bin/compile_et/Makefile.depend +++ b/usr.bin/compile_et/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/compress/Makefile.depend b/usr.bin/compress/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/compress/Makefile.depend +++ b/usr.bin/compress/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/cpio/Makefile.depend b/usr.bin/cpio/Makefile.depend index 52fc11f8bcb1..2b9c4f76f3d9 100644 --- a/usr.bin/cpio/Makefile.depend +++ b/usr.bin/cpio/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/cpuset/Makefile.depend b/usr.bin/cpuset/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/cpuset/Makefile.depend +++ b/usr.bin/cpuset/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/csplit/Makefile.depend b/usr.bin/csplit/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/csplit/Makefile.depend +++ b/usr.bin/csplit/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/csup/Makefile.depend b/usr.bin/csup/Makefile.depend index 33da45f0b8ce..c223aad75ddc 100644 --- a/usr.bin/csup/Makefile.depend +++ b/usr.bin/csup/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ctags/Makefile.depend b/usr.bin/ctags/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/ctags/Makefile.depend +++ b/usr.bin/ctags/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ctlstat/Makefile.depend b/usr.bin/ctlstat/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/ctlstat/Makefile.depend +++ b/usr.bin/ctlstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/cut/Makefile.depend b/usr.bin/cut/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/cut/Makefile.depend +++ b/usr.bin/cut/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/dc/Makefile.depend b/usr.bin/dc/Makefile.depend index 2e6643d674ec..e41f74a736c0 100644 --- a/usr.bin/dc/Makefile.depend +++ b/usr.bin/dc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/dirname/Makefile.depend b/usr.bin/dirname/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/dirname/Makefile.depend +++ b/usr.bin/dirname/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/du/Makefile.depend b/usr.bin/du/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.bin/du/Makefile.depend +++ b/usr.bin/du/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ee/Makefile.depend b/usr.bin/ee/Makefile.depend index 3a6e381333c6..195b2e82568b 100644 --- a/usr.bin/ee/Makefile.depend +++ b/usr.bin/ee/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.bin/elf2aout/Makefile.depend b/usr.bin/elf2aout/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/elf2aout/Makefile.depend +++ b/usr.bin/elf2aout/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/elfdump/Makefile.depend b/usr.bin/elfdump/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/elfdump/Makefile.depend +++ b/usr.bin/elfdump/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/enigma/Makefile.depend b/usr.bin/enigma/Makefile.depend index ea9a8a21fd88..50d097bb3454 100644 --- a/usr.bin/enigma/Makefile.depend +++ b/usr.bin/enigma/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/env/Makefile.depend b/usr.bin/env/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/env/Makefile.depend +++ b/usr.bin/env/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/expand/Makefile.depend b/usr.bin/expand/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/expand/Makefile.depend +++ b/usr.bin/expand/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/false/Makefile.depend b/usr.bin/false/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/false/Makefile.depend +++ b/usr.bin/false/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/fetch/Makefile.depend b/usr.bin/fetch/Makefile.depend index b7ff32463013..db995532a624 100644 --- a/usr.bin/fetch/Makefile.depend +++ b/usr.bin/fetch/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/file/Makefile.depend b/usr.bin/file/Makefile.depend index 35dd078a5e28..b647c4fb6bb7 100644 --- a/usr.bin/file/Makefile.depend +++ b/usr.bin/file/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/file2c/Makefile.depend b/usr.bin/file2c/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/file2c/Makefile.depend +++ b/usr.bin/file2c/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/find/Makefile.depend b/usr.bin/find/Makefile.depend index c834e401a401..50f3680f87d6 100644 --- a/usr.bin/find/Makefile.depend +++ b/usr.bin/find/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/finger/Makefile.depend b/usr.bin/finger/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/finger/Makefile.depend +++ b/usr.bin/finger/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/fmt/Makefile.depend b/usr.bin/fmt/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/fmt/Makefile.depend +++ b/usr.bin/fmt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/fold/Makefile.depend b/usr.bin/fold/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/fold/Makefile.depend +++ b/usr.bin/fold/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/from/Makefile.depend b/usr.bin/from/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/from/Makefile.depend +++ b/usr.bin/from/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/fstat/Makefile.depend b/usr.bin/fstat/Makefile.depend index 5c89c182eb46..00df5bd04589 100644 --- a/usr.bin/fstat/Makefile.depend +++ b/usr.bin/fstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/fsync/Makefile.depend b/usr.bin/fsync/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/fsync/Makefile.depend +++ b/usr.bin/fsync/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ftp/Makefile.depend b/usr.bin/ftp/Makefile.depend index abbcdbc6ab98..e2fa4c73cad2 100644 --- a/usr.bin/ftp/Makefile.depend +++ b/usr.bin/ftp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/gcore/Makefile.depend b/usr.bin/gcore/Makefile.depend index 2d670d2625ea..997f3ba7eb16 100644 --- a/usr.bin/gcore/Makefile.depend +++ b/usr.bin/gcore/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/gencat/Makefile.depend b/usr.bin/gencat/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.bin/gencat/Makefile.depend +++ b/usr.bin/gencat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/getconf/Makefile.depend b/usr.bin/getconf/Makefile.depend index 580f1ec12dcd..a3ff6bb57b93 100644 --- a/usr.bin/getconf/Makefile.depend +++ b/usr.bin/getconf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.bin/getent/Makefile.depend b/usr.bin/getent/Makefile.depend index 5de5043a0bb9..0337134773d6 100644 --- a/usr.bin/getent/Makefile.depend +++ b/usr.bin/getent/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/getopt/Makefile.depend b/usr.bin/getopt/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/getopt/Makefile.depend +++ b/usr.bin/getopt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/gprof/Makefile.depend b/usr.bin/gprof/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/gprof/Makefile.depend +++ b/usr.bin/gprof/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/grep/Makefile.depend b/usr.bin/grep/Makefile.depend index e170be23c055..7ccf682698ba 100644 --- a/usr.bin/grep/Makefile.depend +++ b/usr.bin/grep/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.bin/gzip/Makefile.depend b/usr.bin/gzip/Makefile.depend index f4f6fd631453..8d5c65cf433f 100644 --- a/usr.bin/gzip/Makefile.depend +++ b/usr.bin/gzip/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/head/Makefile.depend b/usr.bin/head/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/head/Makefile.depend +++ b/usr.bin/head/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/hexdump/Makefile.depend b/usr.bin/hexdump/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/hexdump/Makefile.depend +++ b/usr.bin/hexdump/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/host/Makefile.depend b/usr.bin/host/Makefile.depend index 74e1d285bfa9..9b18a04fb7c7 100644 --- a/usr.bin/host/Makefile.depend +++ b/usr.bin/host/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/id/Makefile.depend b/usr.bin/id/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/id/Makefile.depend +++ b/usr.bin/id/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/indent/Makefile.depend b/usr.bin/indent/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/indent/Makefile.depend +++ b/usr.bin/indent/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ipcrm/Makefile.depend b/usr.bin/ipcrm/Makefile.depend index 384b6754a9ab..7a06b0fecff9 100644 --- a/usr.bin/ipcrm/Makefile.depend +++ b/usr.bin/ipcrm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ipcs/Makefile.depend b/usr.bin/ipcs/Makefile.depend index 384b6754a9ab..7a06b0fecff9 100644 --- a/usr.bin/ipcs/Makefile.depend +++ b/usr.bin/ipcs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/join/Makefile.depend b/usr.bin/join/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/join/Makefile.depend +++ b/usr.bin/join/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/jot/Makefile.depend b/usr.bin/jot/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/jot/Makefile.depend +++ b/usr.bin/jot/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/kdump/Makefile.depend b/usr.bin/kdump/Makefile.depend index dcb717415a03..8d18e4cf6185 100644 --- a/usr.bin/kdump/Makefile.depend +++ b/usr.bin/kdump/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.bin/keylogin/Makefile.depend b/usr.bin/keylogin/Makefile.depend index e44fad36fdf9..9e3ced92f5c7 100644 --- a/usr.bin/keylogin/Makefile.depend +++ b/usr.bin/keylogin/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/keylogout/Makefile.depend b/usr.bin/keylogout/Makefile.depend index c1655db8b437..c3bc1bd6b9c0 100644 --- a/usr.bin/keylogout/Makefile.depend +++ b/usr.bin/keylogout/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/killall/Makefile.depend b/usr.bin/killall/Makefile.depend index 80299ac8a6bd..6c3f8b86478a 100644 --- a/usr.bin/killall/Makefile.depend +++ b/usr.bin/killall/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ktrace/Makefile.depend b/usr.bin/ktrace/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/ktrace/Makefile.depend +++ b/usr.bin/ktrace/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ktrdump/Makefile.depend b/usr.bin/ktrdump/Makefile.depend index 384b6754a9ab..7a06b0fecff9 100644 --- a/usr.bin/ktrdump/Makefile.depend +++ b/usr.bin/ktrdump/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/lam/Makefile.depend b/usr.bin/lam/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/lam/Makefile.depend +++ b/usr.bin/lam/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/last/Makefile.depend b/usr.bin/last/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/last/Makefile.depend +++ b/usr.bin/last/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/lastcomm/Makefile.depend b/usr.bin/lastcomm/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/lastcomm/Makefile.depend +++ b/usr.bin/lastcomm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ldd/Makefile.depend b/usr.bin/ldd/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.bin/ldd/Makefile.depend +++ b/usr.bin/ldd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/leave/Makefile.depend b/usr.bin/leave/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/leave/Makefile.depend +++ b/usr.bin/leave/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/less/Makefile.depend b/usr.bin/less/Makefile.depend index 3a6e381333c6..195b2e82568b 100644 --- a/usr.bin/less/Makefile.depend +++ b/usr.bin/less/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.bin/lessecho/Makefile.depend b/usr.bin/lessecho/Makefile.depend index 09f98c16fbdc..0e27a754cfd8 100644 --- a/usr.bin/lessecho/Makefile.depend +++ b/usr.bin/lessecho/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.bin/lesskey/Makefile.depend b/usr.bin/lesskey/Makefile.depend index 09f98c16fbdc..0e27a754cfd8 100644 --- a/usr.bin/lesskey/Makefile.depend +++ b/usr.bin/lesskey/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.bin/lex/lib/Makefile.depend b/usr.bin/lex/lib/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.bin/lex/lib/Makefile.depend +++ b/usr.bin/lex/lib/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.bin/limits/Makefile.depend b/usr.bin/limits/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.bin/limits/Makefile.depend +++ b/usr.bin/limits/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/locale/Makefile.depend b/usr.bin/locale/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/locale/Makefile.depend +++ b/usr.bin/locale/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/locate/bigram/Makefile.depend b/usr.bin/locate/bigram/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/locate/bigram/Makefile.depend +++ b/usr.bin/locate/bigram/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/locate/code/Makefile.depend b/usr.bin/locate/code/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/locate/code/Makefile.depend +++ b/usr.bin/locate/code/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/locate/locate/Makefile.depend b/usr.bin/locate/locate/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.bin/locate/locate/Makefile.depend +++ b/usr.bin/locate/locate/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/lock/Makefile.depend b/usr.bin/lock/Makefile.depend index ea9a8a21fd88..50d097bb3454 100644 --- a/usr.bin/lock/Makefile.depend +++ b/usr.bin/lock/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/lockf/Makefile.depend b/usr.bin/lockf/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/lockf/Makefile.depend +++ b/usr.bin/lockf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/logger/Makefile.depend b/usr.bin/logger/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/logger/Makefile.depend +++ b/usr.bin/logger/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/login/Makefile.depend b/usr.bin/login/Makefile.depend index 67fd380bc7a8..497ebf6557c1 100644 --- a/usr.bin/login/Makefile.depend +++ b/usr.bin/login/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/logins/Makefile.depend b/usr.bin/logins/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/logins/Makefile.depend +++ b/usr.bin/logins/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/logname/Makefile.depend b/usr.bin/logname/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/logname/Makefile.depend +++ b/usr.bin/logname/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/look/Makefile.depend b/usr.bin/look/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/look/Makefile.depend +++ b/usr.bin/look/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/lorder/Makefile.depend b/usr.bin/lorder/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.bin/lorder/Makefile.depend +++ b/usr.bin/lorder/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.bin/lsvfs/Makefile.depend b/usr.bin/lsvfs/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/lsvfs/Makefile.depend +++ b/usr.bin/lsvfs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/lzmainfo/Makefile.depend b/usr.bin/lzmainfo/Makefile.depend index 4915738179af..24bdb3fb3406 100644 --- a/usr.bin/lzmainfo/Makefile.depend +++ b/usr.bin/lzmainfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/m4/Makefile.depend b/usr.bin/m4/Makefile.depend index 7c87b4987b1f..fe894c45b2f9 100644 --- a/usr.bin/m4/Makefile.depend +++ b/usr.bin/m4/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/mail/Makefile.depend b/usr.bin/mail/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/mail/Makefile.depend +++ b/usr.bin/mail/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/makewhatis/Makefile.depend b/usr.bin/makewhatis/Makefile.depend index 4f4a210e3f59..08808f4aca48 100644 --- a/usr.bin/makewhatis/Makefile.depend +++ b/usr.bin/makewhatis/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/man/Makefile.depend b/usr.bin/man/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.bin/man/Makefile.depend +++ b/usr.bin/man/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.bin/mandoc/Makefile.depend b/usr.bin/mandoc/Makefile.depend index 1a4115bce966..6845b5fd701c 100644 --- a/usr.bin/mandoc/Makefile.depend +++ b/usr.bin/mandoc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/mesg/Makefile.depend b/usr.bin/mesg/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/mesg/Makefile.depend +++ b/usr.bin/mesg/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/minigzip/Makefile.depend b/usr.bin/minigzip/Makefile.depend index 4f4a210e3f59..08808f4aca48 100644 --- a/usr.bin/minigzip/Makefile.depend +++ b/usr.bin/minigzip/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ministat/Makefile.depend b/usr.bin/ministat/Makefile.depend index da4f56b373df..8a1da00d4f15 100644 --- a/usr.bin/ministat/Makefile.depend +++ b/usr.bin/ministat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/mkdep/Makefile.depend b/usr.bin/mkdep/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.bin/mkdep/Makefile.depend +++ b/usr.bin/mkdep/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.bin/mkfifo/Makefile.depend b/usr.bin/mkfifo/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/mkfifo/Makefile.depend +++ b/usr.bin/mkfifo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/mklocale/Makefile.depend b/usr.bin/mklocale/Makefile.depend index 6895869c32e2..28150b2f75a8 100644 --- a/usr.bin/mklocale/Makefile.depend +++ b/usr.bin/mklocale/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/mkstr/Makefile.depend b/usr.bin/mkstr/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/mkstr/Makefile.depend +++ b/usr.bin/mkstr/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/mktemp/Makefile.depend b/usr.bin/mktemp/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/mktemp/Makefile.depend +++ b/usr.bin/mktemp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/mkulzma/Makefile.depend b/usr.bin/mkulzma/Makefile.depend index 4915738179af..24bdb3fb3406 100644 --- a/usr.bin/mkulzma/Makefile.depend +++ b/usr.bin/mkulzma/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/mkuzip/Makefile.depend b/usr.bin/mkuzip/Makefile.depend index 4f4a210e3f59..08808f4aca48 100644 --- a/usr.bin/mkuzip/Makefile.depend +++ b/usr.bin/mkuzip/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/msgs/Makefile.depend b/usr.bin/msgs/Makefile.depend index a25f5f6a2451..3e23976fdb5c 100644 --- a/usr.bin/msgs/Makefile.depend +++ b/usr.bin/msgs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/mt/Makefile.depend b/usr.bin/mt/Makefile.depend index 0d771d1d26d7..01c9b2eb822d 100644 --- a/usr.bin/mt/Makefile.depend +++ b/usr.bin/mt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/nc/Makefile.depend b/usr.bin/nc/Makefile.depend index 4de996d8a07b..100114269473 100644 --- a/usr.bin/nc/Makefile.depend +++ b/usr.bin/nc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ncal/Makefile.depend b/usr.bin/ncal/Makefile.depend index 5653d06a7cc4..543b33c2affa 100644 --- a/usr.bin/ncal/Makefile.depend +++ b/usr.bin/ncal/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/netstat/Makefile.depend b/usr.bin/netstat/Makefile.depend index cf3f475de4a8..d7e0a95d698e 100644 --- a/usr.bin/netstat/Makefile.depend +++ b/usr.bin/netstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/newgrp/Makefile.depend b/usr.bin/newgrp/Makefile.depend index 8595bfc84564..fd2fd3ae54e0 100644 --- a/usr.bin/newgrp/Makefile.depend +++ b/usr.bin/newgrp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/newkey/Makefile.depend b/usr.bin/newkey/Makefile.depend index 93ea89a54add..3739603fa694 100644 --- a/usr.bin/newkey/Makefile.depend +++ b/usr.bin/newkey/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/nfsstat/Makefile.depend b/usr.bin/nfsstat/Makefile.depend index 384b6754a9ab..7a06b0fecff9 100644 --- a/usr.bin/nfsstat/Makefile.depend +++ b/usr.bin/nfsstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/nice/Makefile.depend b/usr.bin/nice/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/nice/Makefile.depend +++ b/usr.bin/nice/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/nl/Makefile.depend b/usr.bin/nl/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/nl/Makefile.depend +++ b/usr.bin/nl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/nohup/Makefile.depend b/usr.bin/nohup/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/nohup/Makefile.depend +++ b/usr.bin/nohup/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/opieinfo/Makefile.depend b/usr.bin/opieinfo/Makefile.depend index 6b42295d36ec..172eaaa024ed 100644 --- a/usr.bin/opieinfo/Makefile.depend +++ b/usr.bin/opieinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/opiekey/Makefile.depend b/usr.bin/opiekey/Makefile.depend index 6b42295d36ec..172eaaa024ed 100644 --- a/usr.bin/opiekey/Makefile.depend +++ b/usr.bin/opiekey/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/opiepasswd/Makefile.depend b/usr.bin/opiepasswd/Makefile.depend index 6b42295d36ec..172eaaa024ed 100644 --- a/usr.bin/opiepasswd/Makefile.depend +++ b/usr.bin/opiepasswd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/pagesize/Makefile.depend b/usr.bin/pagesize/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.bin/pagesize/Makefile.depend +++ b/usr.bin/pagesize/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.bin/passwd/Makefile.depend b/usr.bin/passwd/Makefile.depend index 35dd079986b8..4aae750d830b 100644 --- a/usr.bin/passwd/Makefile.depend +++ b/usr.bin/passwd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/paste/Makefile.depend b/usr.bin/paste/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/paste/Makefile.depend +++ b/usr.bin/paste/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/pathchk/Makefile.depend b/usr.bin/pathchk/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/pathchk/Makefile.depend +++ b/usr.bin/pathchk/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/perror/Makefile.depend b/usr.bin/perror/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/perror/Makefile.depend +++ b/usr.bin/perror/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/pr/Makefile.depend b/usr.bin/pr/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/pr/Makefile.depend +++ b/usr.bin/pr/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/printenv/Makefile.depend b/usr.bin/printenv/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/printenv/Makefile.depend +++ b/usr.bin/printenv/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/printf/Makefile.depend b/usr.bin/printf/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/printf/Makefile.depend +++ b/usr.bin/printf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/procstat/Makefile.depend b/usr.bin/procstat/Makefile.depend index a0478e259cf4..4f77d121f2f9 100644 --- a/usr.bin/procstat/Makefile.depend +++ b/usr.bin/procstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/quota/Makefile.depend b/usr.bin/quota/Makefile.depend index 40fe95df0535..e8ee261bd804 100644 --- a/usr.bin/quota/Makefile.depend +++ b/usr.bin/quota/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/rctl/Makefile.depend b/usr.bin/rctl/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.bin/rctl/Makefile.depend +++ b/usr.bin/rctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/renice/Makefile.depend b/usr.bin/renice/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/renice/Makefile.depend +++ b/usr.bin/renice/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/rev/Makefile.depend b/usr.bin/rev/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/rev/Makefile.depend +++ b/usr.bin/rev/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/revoke/Makefile.depend b/usr.bin/revoke/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/revoke/Makefile.depend +++ b/usr.bin/revoke/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/rlogin/Makefile.depend b/usr.bin/rlogin/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/rlogin/Makefile.depend +++ b/usr.bin/rlogin/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/rpcgen/Makefile.depend b/usr.bin/rpcgen/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/rpcgen/Makefile.depend +++ b/usr.bin/rpcgen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/rpcinfo/Makefile.depend b/usr.bin/rpcinfo/Makefile.depend index 5de5043a0bb9..0337134773d6 100644 --- a/usr.bin/rpcinfo/Makefile.depend +++ b/usr.bin/rpcinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/rs/Makefile.depend b/usr.bin/rs/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/rs/Makefile.depend +++ b/usr.bin/rs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/rsh/Makefile.depend b/usr.bin/rsh/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.bin/rsh/Makefile.depend +++ b/usr.bin/rsh/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/rup/Makefile.depend b/usr.bin/rup/Makefile.depend index 2fa66dd368db..482559018148 100644 --- a/usr.bin/rup/Makefile.depend +++ b/usr.bin/rup/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ruptime/Makefile.depend b/usr.bin/ruptime/Makefile.depend index 4a9f7867ec6d..725077b09bfc 100644 --- a/usr.bin/ruptime/Makefile.depend +++ b/usr.bin/ruptime/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/rusers/Makefile.depend b/usr.bin/rusers/Makefile.depend index 2fa66dd368db..482559018148 100644 --- a/usr.bin/rusers/Makefile.depend +++ b/usr.bin/rusers/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/rwall/Makefile.depend b/usr.bin/rwall/Makefile.depend index c1655db8b437..c3bc1bd6b9c0 100644 --- a/usr.bin/rwall/Makefile.depend +++ b/usr.bin/rwall/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/rwho/Makefile.depend b/usr.bin/rwho/Makefile.depend index 4a9f7867ec6d..725077b09bfc 100644 --- a/usr.bin/rwho/Makefile.depend +++ b/usr.bin/rwho/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/script/Makefile.depend b/usr.bin/script/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.bin/script/Makefile.depend +++ b/usr.bin/script/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/sed/Makefile.depend b/usr.bin/sed/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/sed/Makefile.depend +++ b/usr.bin/sed/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/seq/Makefile.depend b/usr.bin/seq/Makefile.depend index da4f56b373df..8a1da00d4f15 100644 --- a/usr.bin/seq/Makefile.depend +++ b/usr.bin/seq/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/shar/Makefile.depend b/usr.bin/shar/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.bin/shar/Makefile.depend +++ b/usr.bin/shar/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.bin/showmount/Makefile.depend b/usr.bin/showmount/Makefile.depend index c1655db8b437..c3bc1bd6b9c0 100644 --- a/usr.bin/showmount/Makefile.depend +++ b/usr.bin/showmount/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/sockstat/Makefile.depend b/usr.bin/sockstat/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.bin/sockstat/Makefile.depend +++ b/usr.bin/sockstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/sort/Makefile.depend b/usr.bin/sort/Makefile.depend index 967988823cfa..1c6397327359 100644 --- a/usr.bin/sort/Makefile.depend +++ b/usr.bin/sort/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.bin/split/Makefile.depend b/usr.bin/split/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.bin/split/Makefile.depend +++ b/usr.bin/split/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ssh-copy-id/Makefile.depend b/usr.bin/ssh-copy-id/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.bin/ssh-copy-id/Makefile.depend +++ b/usr.bin/ssh-copy-id/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.bin/stat/Makefile.depend b/usr.bin/stat/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/stat/Makefile.depend +++ b/usr.bin/stat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/stdbuf/Makefile.depend b/usr.bin/stdbuf/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/stdbuf/Makefile.depend +++ b/usr.bin/stdbuf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/su/Makefile.depend b/usr.bin/su/Makefile.depend index 67fd380bc7a8..497ebf6557c1 100644 --- a/usr.bin/su/Makefile.depend +++ b/usr.bin/su/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/systat/Makefile.depend b/usr.bin/systat/Makefile.depend index 846e23f1bb2e..e18561d65adf 100644 --- a/usr.bin/systat/Makefile.depend +++ b/usr.bin/systat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/tabs/Makefile.depend b/usr.bin/tabs/Makefile.depend index a25f5f6a2451..3e23976fdb5c 100644 --- a/usr.bin/tabs/Makefile.depend +++ b/usr.bin/tabs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/tail/Makefile.depend b/usr.bin/tail/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/tail/Makefile.depend +++ b/usr.bin/tail/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/talk/Makefile.depend b/usr.bin/talk/Makefile.depend index e07a2f668f95..2bac29f6e48f 100644 --- a/usr.bin/talk/Makefile.depend +++ b/usr.bin/talk/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/tar/Makefile.depend b/usr.bin/tar/Makefile.depend index 52fc11f8bcb1..2b9c4f76f3d9 100644 --- a/usr.bin/tar/Makefile.depend +++ b/usr.bin/tar/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/tcopy/Makefile.depend b/usr.bin/tcopy/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/tcopy/Makefile.depend +++ b/usr.bin/tcopy/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/tee/Makefile.depend b/usr.bin/tee/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/tee/Makefile.depend +++ b/usr.bin/tee/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/telnet/Makefile.depend b/usr.bin/telnet/Makefile.depend index 0bc9047dee69..90349d5e04ab 100644 --- a/usr.bin/telnet/Makefile.depend +++ b/usr.bin/telnet/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/tftp/Makefile.depend b/usr.bin/tftp/Makefile.depend index abbcdbc6ab98..e2fa4c73cad2 100644 --- a/usr.bin/tftp/Makefile.depend +++ b/usr.bin/tftp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/time/Makefile.depend b/usr.bin/time/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/time/Makefile.depend +++ b/usr.bin/time/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/timeout/Makefile.depend b/usr.bin/timeout/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/timeout/Makefile.depend +++ b/usr.bin/timeout/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/tip/tip/Makefile.depend b/usr.bin/tip/tip/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/tip/tip/Makefile.depend +++ b/usr.bin/tip/tip/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/top/Makefile.depend b/usr.bin/top/Makefile.depend index fd276ae97526..00a18269e194 100644 --- a/usr.bin/top/Makefile.depend +++ b/usr.bin/top/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.bin/touch/Makefile.depend b/usr.bin/touch/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/touch/Makefile.depend +++ b/usr.bin/touch/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/tput/Makefile.depend b/usr.bin/tput/Makefile.depend index a25f5f6a2451..3e23976fdb5c 100644 --- a/usr.bin/tput/Makefile.depend +++ b/usr.bin/tput/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/tr/Makefile.depend b/usr.bin/tr/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/tr/Makefile.depend +++ b/usr.bin/tr/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/true/Makefile.depend b/usr.bin/true/Makefile.depend index 05a6a1b483a0..1a3b3a26cd62 100644 --- a/usr.bin/true/Makefile.depend +++ b/usr.bin/true/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/truncate/Makefile.depend b/usr.bin/truncate/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.bin/truncate/Makefile.depend +++ b/usr.bin/truncate/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/truss/Makefile.depend.amd64 b/usr.bin/truss/Makefile.depend.amd64 index 138628c1d016..277bd6c026af 100644 --- a/usr.bin/truss/Makefile.depend.amd64 +++ b/usr.bin/truss/Makefile.depend.amd64 @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.bin/tset/Makefile.depend b/usr.bin/tset/Makefile.depend index a25f5f6a2451..3e23976fdb5c 100644 --- a/usr.bin/tset/Makefile.depend +++ b/usr.bin/tset/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/tsort/Makefile.depend b/usr.bin/tsort/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/tsort/Makefile.depend +++ b/usr.bin/tsort/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/tty/Makefile.depend b/usr.bin/tty/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/tty/Makefile.depend +++ b/usr.bin/tty/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ul/Makefile.depend b/usr.bin/ul/Makefile.depend index a25f5f6a2451..3e23976fdb5c 100644 --- a/usr.bin/ul/Makefile.depend +++ b/usr.bin/ul/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/uname/Makefile.depend b/usr.bin/uname/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/uname/Makefile.depend +++ b/usr.bin/uname/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/unexpand/Makefile.depend b/usr.bin/unexpand/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/unexpand/Makefile.depend +++ b/usr.bin/unexpand/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/unifdef/Makefile.depend b/usr.bin/unifdef/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/unifdef/Makefile.depend +++ b/usr.bin/unifdef/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/uniq/Makefile.depend b/usr.bin/uniq/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/uniq/Makefile.depend +++ b/usr.bin/uniq/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/units/Makefile.depend b/usr.bin/units/Makefile.depend index 1ba7586e5576..f9ea659cec9f 100644 --- a/usr.bin/units/Makefile.depend +++ b/usr.bin/units/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/unvis/Makefile.depend b/usr.bin/unvis/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/unvis/Makefile.depend +++ b/usr.bin/unvis/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/unzip/Makefile.depend b/usr.bin/unzip/Makefile.depend index 52fc11f8bcb1..2b9c4f76f3d9 100644 --- a/usr.bin/unzip/Makefile.depend +++ b/usr.bin/unzip/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/usbhidaction/Makefile.depend b/usr.bin/usbhidaction/Makefile.depend index ddc15a902498..37c3dc651454 100644 --- a/usr.bin/usbhidaction/Makefile.depend +++ b/usr.bin/usbhidaction/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/usbhidctl/Makefile.depend b/usr.bin/usbhidctl/Makefile.depend index ddc15a902498..37c3dc651454 100644 --- a/usr.bin/usbhidctl/Makefile.depend +++ b/usr.bin/usbhidctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/users/Makefile.depend b/usr.bin/users/Makefile.depend index 3ec7ff9854a0..534d27dccf55 100644 --- a/usr.bin/users/Makefile.depend +++ b/usr.bin/users/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/uudecode/Makefile.depend b/usr.bin/uudecode/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.bin/uudecode/Makefile.depend +++ b/usr.bin/uudecode/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/uuencode/Makefile.depend b/usr.bin/uuencode/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.bin/uuencode/Makefile.depend +++ b/usr.bin/uuencode/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/vacation/Makefile.depend b/usr.bin/vacation/Makefile.depend index 5ef7ccc610d8..f32c7f332fa3 100644 --- a/usr.bin/vacation/Makefile.depend +++ b/usr.bin/vacation/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/vgrind/Makefile.depend b/usr.bin/vgrind/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/vgrind/Makefile.depend +++ b/usr.bin/vgrind/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/vi/Makefile.depend b/usr.bin/vi/Makefile.depend index 358a9d309341..5865b43042ac 100644 --- a/usr.bin/vi/Makefile.depend +++ b/usr.bin/vi/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/vis/Makefile.depend b/usr.bin/vis/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/vis/Makefile.depend +++ b/usr.bin/vis/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/vmstat/Makefile.depend b/usr.bin/vmstat/Makefile.depend index 11e4d51c98b7..3597f709849e 100644 --- a/usr.bin/vmstat/Makefile.depend +++ b/usr.bin/vmstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/vtfontcvt/Makefile.depend b/usr.bin/vtfontcvt/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/vtfontcvt/Makefile.depend +++ b/usr.bin/vtfontcvt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/w/Makefile.depend b/usr.bin/w/Makefile.depend index d17ba05e76b8..f23127b34bd0 100644 --- a/usr.bin/w/Makefile.depend +++ b/usr.bin/w/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/wall/Makefile.depend b/usr.bin/wall/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/wall/Makefile.depend +++ b/usr.bin/wall/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/wc/Makefile.depend b/usr.bin/wc/Makefile.depend index 57f7edd4bcc5..e93405892f19 100644 --- a/usr.bin/wc/Makefile.depend +++ b/usr.bin/wc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/what/Makefile.depend b/usr.bin/what/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/what/Makefile.depend +++ b/usr.bin/what/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/whereis/Makefile.depend b/usr.bin/whereis/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/whereis/Makefile.depend +++ b/usr.bin/whereis/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/which/Makefile.depend b/usr.bin/which/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/which/Makefile.depend +++ b/usr.bin/which/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/who/Makefile.depend b/usr.bin/who/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/who/Makefile.depend +++ b/usr.bin/who/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/whois/Makefile.depend b/usr.bin/whois/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.bin/whois/Makefile.depend +++ b/usr.bin/whois/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/write/Makefile.depend b/usr.bin/write/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/write/Makefile.depend +++ b/usr.bin/write/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/xargs/Makefile.depend b/usr.bin/xargs/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/xargs/Makefile.depend +++ b/usr.bin/xargs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/xinstall/Makefile.depend b/usr.bin/xinstall/Makefile.depend index 1fca33bfb0df..64f9704059a9 100644 --- a/usr.bin/xinstall/Makefile.depend +++ b/usr.bin/xinstall/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/xinstall/Makefile.depend.host b/usr.bin/xinstall/Makefile.depend.host index bc49a51f5efd..8f7b4a41f614 100644 --- a/usr.bin/xinstall/Makefile.depend.host +++ b/usr.bin/xinstall/Makefile.depend.host @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/usr.bin/binutils/ld \ lib/libmd \ diff --git a/usr.bin/xlint/lint1/Makefile.depend b/usr.bin/xlint/lint1/Makefile.depend index 0886bd537186..65d8b0e50d0a 100644 --- a/usr.bin/xlint/lint1/Makefile.depend +++ b/usr.bin/xlint/lint1/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.bin/xlint/lint2/Makefile.depend b/usr.bin/xlint/lint2/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/xlint/lint2/Makefile.depend +++ b/usr.bin/xlint/lint2/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/xlint/llib/Makefile.depend b/usr.bin/xlint/llib/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.bin/xlint/llib/Makefile.depend +++ b/usr.bin/xlint/llib/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.bin/xlint/xlint/Makefile.depend b/usr.bin/xlint/xlint/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/xlint/xlint/Makefile.depend +++ b/usr.bin/xlint/xlint/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/xstr/Makefile.depend b/usr.bin/xstr/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/xstr/Makefile.depend +++ b/usr.bin/xstr/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/xz/Makefile.depend b/usr.bin/xz/Makefile.depend index 4915738179af..24bdb3fb3406 100644 --- a/usr.bin/xz/Makefile.depend +++ b/usr.bin/xz/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/xzdec/Makefile.depend b/usr.bin/xzdec/Makefile.depend index 4915738179af..24bdb3fb3406 100644 --- a/usr.bin/xzdec/Makefile.depend +++ b/usr.bin/xzdec/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/yacc/Makefile.depend b/usr.bin/yacc/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.bin/yacc/Makefile.depend +++ b/usr.bin/yacc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/yes/Makefile.depend b/usr.bin/yes/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.bin/yes/Makefile.depend +++ b/usr.bin/yes/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ypcat/Makefile.depend b/usr.bin/ypcat/Makefile.depend index c1655db8b437..c3bc1bd6b9c0 100644 --- a/usr.bin/ypcat/Makefile.depend +++ b/usr.bin/ypcat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ypmatch/Makefile.depend b/usr.bin/ypmatch/Makefile.depend index c1655db8b437..c3bc1bd6b9c0 100644 --- a/usr.bin/ypmatch/Makefile.depend +++ b/usr.bin/ypmatch/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.bin/ypwhich/Makefile.depend b/usr.bin/ypwhich/Makefile.depend index 2a44c25ffe8e..f0ca83a7daa5 100644 --- a/usr.bin/ypwhich/Makefile.depend +++ b/usr.bin/ypwhich/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ac/Makefile.depend b/usr.sbin/ac/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/ac/Makefile.depend +++ b/usr.sbin/ac/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/accton/Makefile.depend b/usr.sbin/accton/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/accton/Makefile.depend +++ b/usr.sbin/accton/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/acpi/acpiconf/Makefile.depend b/usr.sbin/acpi/acpiconf/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/acpi/acpiconf/Makefile.depend +++ b/usr.sbin/acpi/acpiconf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/acpi/acpidb/Makefile.depend b/usr.sbin/acpi/acpidb/Makefile.depend index 0a2118269eec..67ddfab36776 100644 --- a/usr.sbin/acpi/acpidb/Makefile.depend +++ b/usr.sbin/acpi/acpidb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/acpi/acpidump/Makefile.depend b/usr.sbin/acpi/acpidump/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/acpi/acpidump/Makefile.depend +++ b/usr.sbin/acpi/acpidump/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/acpi/iasl/Makefile.depend b/usr.sbin/acpi/iasl/Makefile.depend index 0630151feb05..dee26688439a 100644 --- a/usr.sbin/acpi/iasl/Makefile.depend +++ b/usr.sbin/acpi/iasl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/adduser/Makefile.depend b/usr.sbin/adduser/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/adduser/Makefile.depend +++ b/usr.sbin/adduser/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/amd/amd/Makefile.depend b/usr.sbin/amd/amd/Makefile.depend index 507b7adafbfb..0b56bb635618 100644 --- a/usr.sbin/amd/amd/Makefile.depend +++ b/usr.sbin/amd/amd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/amd/amq/Makefile.depend b/usr.sbin/amd/amq/Makefile.depend index 2035894ef981..69a5323b68a4 100644 --- a/usr.sbin/amd/amq/Makefile.depend +++ b/usr.sbin/amd/amq/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/amd/fixmount/Makefile.depend b/usr.sbin/amd/fixmount/Makefile.depend index f7c2c0354019..e2e7c16d0e59 100644 --- a/usr.sbin/amd/fixmount/Makefile.depend +++ b/usr.sbin/amd/fixmount/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/amd/fsinfo/Makefile.depend b/usr.sbin/amd/fsinfo/Makefile.depend index d78eb4fe56ef..8fc2a2d87fa8 100644 --- a/usr.sbin/amd/fsinfo/Makefile.depend +++ b/usr.sbin/amd/fsinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/amd/hlfsd/Makefile.depend b/usr.sbin/amd/hlfsd/Makefile.depend index 2035894ef981..69a5323b68a4 100644 --- a/usr.sbin/amd/hlfsd/Makefile.depend +++ b/usr.sbin/amd/hlfsd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/amd/include/Makefile.depend b/usr.sbin/amd/include/Makefile.depend index 57b7e10c3d71..ba382d290124 100644 --- a/usr.sbin/amd/include/Makefile.depend +++ b/usr.sbin/amd/include/Makefile.depend @@ -1,8 +1,7 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ + bin/cat.host \ .include diff --git a/usr.sbin/amd/libamu/Makefile.depend b/usr.sbin/amd/libamu/Makefile.depend index a869b197e3de..0cbbcfc0db52 100644 --- a/usr.sbin/amd/libamu/Makefile.depend +++ b/usr.sbin/amd/libamu/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/arpa \ diff --git a/usr.sbin/amd/mk-amd-map/Makefile.depend b/usr.sbin/amd/mk-amd-map/Makefile.depend index 2035894ef981..69a5323b68a4 100644 --- a/usr.sbin/amd/mk-amd-map/Makefile.depend +++ b/usr.sbin/amd/mk-amd-map/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/amd/pawd/Makefile.depend b/usr.sbin/amd/pawd/Makefile.depend index 2035894ef981..69a5323b68a4 100644 --- a/usr.sbin/amd/pawd/Makefile.depend +++ b/usr.sbin/amd/pawd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/amd/scripts/Makefile.depend b/usr.sbin/amd/scripts/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/amd/scripts/Makefile.depend +++ b/usr.sbin/amd/scripts/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/amd/wire-test/Makefile.depend b/usr.sbin/amd/wire-test/Makefile.depend index 2035894ef981..69a5323b68a4 100644 --- a/usr.sbin/amd/wire-test/Makefile.depend +++ b/usr.sbin/amd/wire-test/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ancontrol/Makefile.depend b/usr.sbin/ancontrol/Makefile.depend index adfa321cff0a..7a472edb8d78 100644 --- a/usr.sbin/ancontrol/Makefile.depend +++ b/usr.sbin/ancontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/apm/Makefile.depend b/usr.sbin/apm/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/apm/Makefile.depend +++ b/usr.sbin/apm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/arp/Makefile.depend b/usr.sbin/arp/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/arp/Makefile.depend +++ b/usr.sbin/arp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/asf/Makefile.depend b/usr.sbin/asf/Makefile.depend index 384b6754a9ab..7a06b0fecff9 100644 --- a/usr.sbin/asf/Makefile.depend +++ b/usr.sbin/asf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/audit/Makefile.depend b/usr.sbin/audit/Makefile.depend index 24594da0ac10..4cce0576d882 100644 --- a/usr.sbin/audit/Makefile.depend +++ b/usr.sbin/audit/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/auditd/Makefile.depend b/usr.sbin/auditd/Makefile.depend index f0b54f797798..9cdfa5efcb37 100644 --- a/usr.sbin/auditd/Makefile.depend +++ b/usr.sbin/auditd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/auditreduce/Makefile.depend b/usr.sbin/auditreduce/Makefile.depend index 24594da0ac10..4cce0576d882 100644 --- a/usr.sbin/auditreduce/Makefile.depend +++ b/usr.sbin/auditreduce/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/authpf/Makefile.depend b/usr.sbin/authpf/Makefile.depend index ef2646cd6ade..42acde09f9f7 100644 --- a/usr.sbin/authpf/Makefile.depend +++ b/usr.sbin/authpf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/ath3kfw/Makefile.depend b/usr.sbin/bluetooth/ath3kfw/Makefile.depend index 91ae73e1aa71..d089be9a124e 100644 --- a/usr.sbin/bluetooth/ath3kfw/Makefile.depend +++ b/usr.sbin/bluetooth/ath3kfw/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/bcmfw/Makefile.depend b/usr.sbin/bluetooth/bcmfw/Makefile.depend index 181b85adfc73..7fbd5c8db42a 100644 --- a/usr.sbin/bluetooth/bcmfw/Makefile.depend +++ b/usr.sbin/bluetooth/bcmfw/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/bt3cfw/Makefile.depend b/usr.sbin/bluetooth/bt3cfw/Makefile.depend index 181b85adfc73..7fbd5c8db42a 100644 --- a/usr.sbin/bluetooth/bt3cfw/Makefile.depend +++ b/usr.sbin/bluetooth/bt3cfw/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/bthidcontrol/Makefile.depend b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend index 0bcf768e602d..384ab1c950ee 100644 --- a/usr.sbin/bluetooth/bthidcontrol/Makefile.depend +++ b/usr.sbin/bluetooth/bthidcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/bthidd/Makefile.depend b/usr.sbin/bluetooth/bthidd/Makefile.depend index dedd94424c6d..ddbc43a33186 100644 --- a/usr.sbin/bluetooth/bthidd/Makefile.depend +++ b/usr.sbin/bluetooth/bthidd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/btpand/Makefile.depend b/usr.sbin/bluetooth/btpand/Makefile.depend index 9b6c133a202b..19a9ab864e95 100644 --- a/usr.sbin/bluetooth/btpand/Makefile.depend +++ b/usr.sbin/bluetooth/btpand/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/hccontrol/Makefile.depend b/usr.sbin/bluetooth/hccontrol/Makefile.depend index 9e752f475e12..af90191a8460 100644 --- a/usr.sbin/bluetooth/hccontrol/Makefile.depend +++ b/usr.sbin/bluetooth/hccontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/hcsecd/Makefile.depend b/usr.sbin/bluetooth/hcsecd/Makefile.depend index cd6c344bdfdb..58768ba69eec 100644 --- a/usr.sbin/bluetooth/hcsecd/Makefile.depend +++ b/usr.sbin/bluetooth/hcsecd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/hcseriald/Makefile.depend b/usr.sbin/bluetooth/hcseriald/Makefile.depend index 181b85adfc73..7fbd5c8db42a 100644 --- a/usr.sbin/bluetooth/hcseriald/Makefile.depend +++ b/usr.sbin/bluetooth/hcseriald/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/l2control/Makefile.depend b/usr.sbin/bluetooth/l2control/Makefile.depend index 9e752f475e12..af90191a8460 100644 --- a/usr.sbin/bluetooth/l2control/Makefile.depend +++ b/usr.sbin/bluetooth/l2control/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/l2ping/Makefile.depend b/usr.sbin/bluetooth/l2ping/Makefile.depend index 4d052006175a..c0f9b0b38d58 100644 --- a/usr.sbin/bluetooth/l2ping/Makefile.depend +++ b/usr.sbin/bluetooth/l2ping/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend index 70283d4fe738..2e984a3a6939 100644 --- a/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend +++ b/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/sdpcontrol/Makefile.depend b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend index 70283d4fe738..2e984a3a6939 100644 --- a/usr.sbin/bluetooth/sdpcontrol/Makefile.depend +++ b/usr.sbin/bluetooth/sdpcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bluetooth/sdpd/Makefile.depend b/usr.sbin/bluetooth/sdpd/Makefile.depend index d95c08f9104b..2bde7d042257 100644 --- a/usr.sbin/bluetooth/sdpd/Makefile.depend +++ b/usr.sbin/bluetooth/sdpd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/boot0cfg/Makefile.depend b/usr.sbin/boot0cfg/Makefile.depend index df6361797d5d..5d7ba237baf6 100644 --- a/usr.sbin/boot0cfg/Makefile.depend +++ b/usr.sbin/boot0cfg/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bootparamd/bootparamd/Makefile.depend b/usr.sbin/bootparamd/bootparamd/Makefile.depend index 1d3642f698a2..13f1710ec35d 100644 --- a/usr.sbin/bootparamd/bootparamd/Makefile.depend +++ b/usr.sbin/bootparamd/bootparamd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bootparamd/callbootd/Makefile.depend b/usr.sbin/bootparamd/callbootd/Makefile.depend index 3c40b30a3331..25e6eb5dc6e5 100644 --- a/usr.sbin/bootparamd/callbootd/Makefile.depend +++ b/usr.sbin/bootparamd/callbootd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bsdinstall/distextract/Makefile.depend b/usr.sbin/bsdinstall/distextract/Makefile.depend index 3d6ca5af15a7..fd582bdde2e8 100644 --- a/usr.sbin/bsdinstall/distextract/Makefile.depend +++ b/usr.sbin/bsdinstall/distextract/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libdialog \ diff --git a/usr.sbin/bsdinstall/distfetch/Makefile.depend b/usr.sbin/bsdinstall/distfetch/Makefile.depend index a58535625412..570d72b5fdc2 100644 --- a/usr.sbin/bsdinstall/distfetch/Makefile.depend +++ b/usr.sbin/bsdinstall/distfetch/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libdialog \ diff --git a/usr.sbin/bsdinstall/partedit/Makefile.depend b/usr.sbin/bsdinstall/partedit/Makefile.depend index d7a53af2c60a..5faa884403a2 100644 --- a/usr.sbin/bsdinstall/partedit/Makefile.depend +++ b/usr.sbin/bsdinstall/partedit/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libdialog \ diff --git a/usr.sbin/bsdinstall/scripts/Makefile.depend b/usr.sbin/bsdinstall/scripts/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/bsdinstall/scripts/Makefile.depend +++ b/usr.sbin/bsdinstall/scripts/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/bsnmpd/bsnmpd/Makefile.depend b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend index a67edf4a706b..06a2ce954571 100644 --- a/usr.sbin/bsnmpd/bsnmpd/Makefile.depend +++ b/usr.sbin/bsnmpd/bsnmpd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bsnmpd/gensnmptree/Makefile.depend b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/bsnmpd/gensnmptree/Makefile.depend +++ b/usr.sbin/bsnmpd/gensnmptree/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bsnmpd/modules/Makefile.depend b/usr.sbin/bsnmpd/modules/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/bsnmpd/modules/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend index cd6c4580e750..185b16d8670a 100644 --- a/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend index 479f0565332a..fbc996092012 100644 --- a/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend index 81b9958df464..547ee263238f 100644 --- a/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/bsnmpd/modules/snmp_lm75/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_lm75/Makefile.depend index c831e4828308..df4c4ec6cea5 100644 --- a/usr.sbin/bsnmpd/modules/snmp_lm75/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_lm75/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend index b156e4a8f47b..94ed3b4761e2 100644 --- a/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend index 171b7a3c7865..2a32124aa085 100644 --- a/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend index 5254406ef57e..5709a189c501 100644 --- a/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend index a2ad1578e50d..502a3ebcc870 100644 --- a/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend index 41f2049c1b38..70fef4206a11 100644 --- a/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend index de05307af19e..7c2d43e54af6 100644 --- a/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend index e864a7ee6df8..13b962fc97c9 100644 --- a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend +++ b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend b/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend index a6f194b02727..79d62f870aab 100644 --- a/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend +++ b/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend index ead6599deb3a..2e72cb67039b 100644 --- a/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend +++ b/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/btxld/Makefile.depend b/usr.sbin/btxld/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/btxld/Makefile.depend +++ b/usr.sbin/btxld/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/cdcontrol/Makefile.depend b/usr.sbin/cdcontrol/Makefile.depend index abbcdbc6ab98..e2fa4c73cad2 100644 --- a/usr.sbin/cdcontrol/Makefile.depend +++ b/usr.sbin/cdcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/chkgrp/Makefile.depend b/usr.sbin/chkgrp/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/chkgrp/Makefile.depend +++ b/usr.sbin/chkgrp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/chown/Makefile.depend b/usr.sbin/chown/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/chown/Makefile.depend +++ b/usr.sbin/chown/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/chroot/Makefile.depend b/usr.sbin/chroot/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/chroot/Makefile.depend +++ b/usr.sbin/chroot/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ckdist/Makefile.depend b/usr.sbin/ckdist/Makefile.depend index 50e2e74bea35..c0953baa2e6d 100644 --- a/usr.sbin/ckdist/Makefile.depend +++ b/usr.sbin/ckdist/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/clear_locks/Makefile.depend b/usr.sbin/clear_locks/Makefile.depend index e44fad36fdf9..9e3ced92f5c7 100644 --- a/usr.sbin/clear_locks/Makefile.depend +++ b/usr.sbin/clear_locks/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/config/Makefile.depend b/usr.sbin/config/Makefile.depend index ee946e47fb83..f5f35fecb072 100644 --- a/usr.sbin/config/Makefile.depend +++ b/usr.sbin/config/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/cpucontrol/Makefile.depend b/usr.sbin/cpucontrol/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/cpucontrol/Makefile.depend +++ b/usr.sbin/cpucontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/crashinfo/Makefile.depend b/usr.sbin/crashinfo/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/crashinfo/Makefile.depend +++ b/usr.sbin/crashinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/cron/cron/Makefile.depend b/usr.sbin/cron/cron/Makefile.depend index 87e49fd76dd9..34a58902db21 100644 --- a/usr.sbin/cron/cron/Makefile.depend +++ b/usr.sbin/cron/cron/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/cron/crontab/Makefile.depend b/usr.sbin/cron/crontab/Makefile.depend index 6e07a85e08ba..5c1a1ba52f52 100644 --- a/usr.sbin/cron/crontab/Makefile.depend +++ b/usr.sbin/cron/crontab/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/cron/lib/Makefile.depend b/usr.sbin/cron/lib/Makefile.depend index 8780851ef9b5..217d6b6b7bd8 100644 --- a/usr.sbin/cron/lib/Makefile.depend +++ b/usr.sbin/cron/lib/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/usr.sbin/crunch/crunchgen/Makefile.depend b/usr.sbin/crunch/crunchgen/Makefile.depend index d10ac0b566e9..3235da407a16 100644 --- a/usr.sbin/crunch/crunchgen/Makefile.depend +++ b/usr.sbin/crunch/crunchgen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/crunch/crunchide/Makefile.depend b/usr.sbin/crunch/crunchide/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/crunch/crunchide/Makefile.depend +++ b/usr.sbin/crunch/crunchide/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ctladm/Makefile.depend b/usr.sbin/ctladm/Makefile.depend index 24b66ebf3acf..f187a0694f3f 100644 --- a/usr.sbin/ctladm/Makefile.depend +++ b/usr.sbin/ctladm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ctm/ctm/Makefile.depend b/usr.sbin/ctm/ctm/Makefile.depend index 50e2e74bea35..c0953baa2e6d 100644 --- a/usr.sbin/ctm/ctm/Makefile.depend +++ b/usr.sbin/ctm/ctm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ctm/ctm_dequeue/Makefile.depend b/usr.sbin/ctm/ctm_dequeue/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/ctm/ctm_dequeue/Makefile.depend +++ b/usr.sbin/ctm/ctm_dequeue/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ctm/ctm_rmail/Makefile.depend b/usr.sbin/ctm/ctm_rmail/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/ctm/ctm_rmail/Makefile.depend +++ b/usr.sbin/ctm/ctm_rmail/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ctm/ctm_smail/Makefile.depend b/usr.sbin/ctm/ctm_smail/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/ctm/ctm_smail/Makefile.depend +++ b/usr.sbin/ctm/ctm_smail/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/daemon/Makefile.depend b/usr.sbin/daemon/Makefile.depend index 7df683f8f51a..5d48cd0401af 100644 --- a/usr.sbin/daemon/Makefile.depend +++ b/usr.sbin/daemon/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/dconschat/Makefile.depend b/usr.sbin/dconschat/Makefile.depend index 3820cc87112a..0bca328b289d 100644 --- a/usr.sbin/dconschat/Makefile.depend +++ b/usr.sbin/dconschat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/devinfo/Makefile.depend b/usr.sbin/devinfo/Makefile.depend index 608934c480ff..fabd6f572f06 100644 --- a/usr.sbin/devinfo/Makefile.depend +++ b/usr.sbin/devinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/digictl/Makefile.depend b/usr.sbin/digictl/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/digictl/Makefile.depend +++ b/usr.sbin/digictl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/diskinfo/Makefile.depend b/usr.sbin/diskinfo/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.sbin/diskinfo/Makefile.depend +++ b/usr.sbin/diskinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/dumpcis/Makefile.depend b/usr.sbin/dumpcis/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/dumpcis/Makefile.depend +++ b/usr.sbin/dumpcis/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/editmap/Makefile.depend b/usr.sbin/editmap/Makefile.depend index fdd37893b51c..c1c3567c85c1 100644 --- a/usr.sbin/editmap/Makefile.depend +++ b/usr.sbin/editmap/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/edquota/Makefile.depend b/usr.sbin/edquota/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.sbin/edquota/Makefile.depend +++ b/usr.sbin/edquota/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/etcupdate/Makefile.depend b/usr.sbin/etcupdate/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/etcupdate/Makefile.depend +++ b/usr.sbin/etcupdate/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/extattr/Makefile.depend b/usr.sbin/extattr/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.sbin/extattr/Makefile.depend +++ b/usr.sbin/extattr/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/extattrctl/Makefile.depend b/usr.sbin/extattrctl/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.sbin/extattrctl/Makefile.depend +++ b/usr.sbin/extattrctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/fdcontrol/Makefile.depend b/usr.sbin/fdcontrol/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/fdcontrol/Makefile.depend +++ b/usr.sbin/fdcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/fdformat/Makefile.depend b/usr.sbin/fdformat/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/fdformat/Makefile.depend +++ b/usr.sbin/fdformat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/fdread/Makefile.depend b/usr.sbin/fdread/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/fdread/Makefile.depend +++ b/usr.sbin/fdread/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/fdwrite/Makefile.depend b/usr.sbin/fdwrite/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/fdwrite/Makefile.depend +++ b/usr.sbin/fdwrite/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/fifolog/fifolog_create/Makefile.depend b/usr.sbin/fifolog/fifolog_create/Makefile.depend index e6e291af4fe0..9d8166079749 100644 --- a/usr.sbin/fifolog/fifolog_create/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_create/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/fifolog/fifolog_reader/Makefile.depend b/usr.sbin/fifolog/fifolog_reader/Makefile.depend index 4367c660cfe7..0e1e70ffd020 100644 --- a/usr.sbin/fifolog/fifolog_reader/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_reader/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/fifolog/fifolog_writer/Makefile.depend b/usr.sbin/fifolog/fifolog_writer/Makefile.depend index 4367c660cfe7..0e1e70ffd020 100644 --- a/usr.sbin/fifolog/fifolog_writer/Makefile.depend +++ b/usr.sbin/fifolog/fifolog_writer/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/fifolog/lib/Makefile.depend b/usr.sbin/fifolog/lib/Makefile.depend index bcbc78b28e5a..0979e86cd8b3 100644 --- a/usr.sbin/fifolog/lib/Makefile.depend +++ b/usr.sbin/fifolog/lib/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/usr.sbin/flowctl/Makefile.depend b/usr.sbin/flowctl/Makefile.depend index 83a8148003a0..e8a95b24b1a6 100644 --- a/usr.sbin/flowctl/Makefile.depend +++ b/usr.sbin/flowctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/freebsd-update/Makefile.depend b/usr.sbin/freebsd-update/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/freebsd-update/Makefile.depend +++ b/usr.sbin/freebsd-update/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/fwcontrol/Makefile.depend b/usr.sbin/fwcontrol/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/fwcontrol/Makefile.depend +++ b/usr.sbin/fwcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/getfmac/Makefile.depend b/usr.sbin/getfmac/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/getfmac/Makefile.depend +++ b/usr.sbin/getfmac/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/getpmac/Makefile.depend b/usr.sbin/getpmac/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/getpmac/Makefile.depend +++ b/usr.sbin/getpmac/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/gpioctl/Makefile.depend b/usr.sbin/gpioctl/Makefile.depend index e0158f3c9689..e08b36921a8b 100644 --- a/usr.sbin/gpioctl/Makefile.depend +++ b/usr.sbin/gpioctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/gssd/Makefile.depend b/usr.sbin/gssd/Makefile.depend index 4f3249e485f5..0921534cdff2 100644 --- a/usr.sbin/gssd/Makefile.depend +++ b/usr.sbin/gssd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/gstat/Makefile.depend b/usr.sbin/gstat/Makefile.depend index 67e0e7333b8d..d5a06884a1b0 100644 --- a/usr.sbin/gstat/Makefile.depend +++ b/usr.sbin/gstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/i2c/Makefile.depend b/usr.sbin/i2c/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/i2c/Makefile.depend +++ b/usr.sbin/i2c/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ifmcstat/Makefile.depend b/usr.sbin/ifmcstat/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/ifmcstat/Makefile.depend +++ b/usr.sbin/ifmcstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/inetd/Makefile.depend b/usr.sbin/inetd/Makefile.depend index 0713fe0de09b..0d1aa30bb7b2 100644 --- a/usr.sbin/inetd/Makefile.depend +++ b/usr.sbin/inetd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/iostat/Makefile.depend b/usr.sbin/iostat/Makefile.depend index 819a99f1c05c..9ef86280f180 100644 --- a/usr.sbin/iostat/Makefile.depend +++ b/usr.sbin/iostat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ip6addrctl/Makefile.depend b/usr.sbin/ip6addrctl/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/ip6addrctl/Makefile.depend +++ b/usr.sbin/ip6addrctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ipfwpcap/Makefile.depend b/usr.sbin/ipfwpcap/Makefile.depend index fb2e1ea9ff35..2fabd863a4f8 100644 --- a/usr.sbin/ipfwpcap/Makefile.depend +++ b/usr.sbin/ipfwpcap/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/jail/Makefile.depend b/usr.sbin/jail/Makefile.depend index b624768dec72..0be151ac8ccb 100644 --- a/usr.sbin/jail/Makefile.depend +++ b/usr.sbin/jail/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/jexec/Makefile.depend b/usr.sbin/jexec/Makefile.depend index 8870ca410289..7efb1233f93b 100644 --- a/usr.sbin/jexec/Makefile.depend +++ b/usr.sbin/jexec/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/jls/Makefile.depend b/usr.sbin/jls/Makefile.depend index a365c22fe4cb..490339f6975f 100644 --- a/usr.sbin/jls/Makefile.depend +++ b/usr.sbin/jls/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/kbdcontrol/Makefile.depend b/usr.sbin/kbdcontrol/Makefile.depend index e3418c5550dd..3888b66cb397 100644 --- a/usr.sbin/kbdcontrol/Makefile.depend +++ b/usr.sbin/kbdcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/kbdmap/Makefile.depend b/usr.sbin/kbdmap/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/kbdmap/Makefile.depend +++ b/usr.sbin/kbdmap/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/keyserv/Makefile.depend b/usr.sbin/keyserv/Makefile.depend index c9aa32c97057..e1219dfebd57 100644 --- a/usr.sbin/keyserv/Makefile.depend +++ b/usr.sbin/keyserv/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/kgmon/Makefile.depend b/usr.sbin/kgmon/Makefile.depend index 384b6754a9ab..7a06b0fecff9 100644 --- a/usr.sbin/kgmon/Makefile.depend +++ b/usr.sbin/kgmon/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/kldxref/Makefile.depend b/usr.sbin/kldxref/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/kldxref/Makefile.depend +++ b/usr.sbin/kldxref/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lastlogin/Makefile.depend b/usr.sbin/lastlogin/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/lastlogin/Makefile.depend +++ b/usr.sbin/lastlogin/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lmcconfig/Makefile.depend b/usr.sbin/lmcconfig/Makefile.depend index 181b85adfc73..7fbd5c8db42a 100644 --- a/usr.sbin/lmcconfig/Makefile.depend +++ b/usr.sbin/lmcconfig/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lpr/chkprintcap/Makefile.depend b/usr.sbin/lpr/chkprintcap/Makefile.depend index 003813c8b56e..f0ff87fbf4b9 100644 --- a/usr.sbin/lpr/chkprintcap/Makefile.depend +++ b/usr.sbin/lpr/chkprintcap/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lpr/common_source/Makefile.depend b/usr.sbin/lpr/common_source/Makefile.depend index 84c18191a454..f2b0559818dd 100644 --- a/usr.sbin/lpr/common_source/Makefile.depend +++ b/usr.sbin/lpr/common_source/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/arpa \ diff --git a/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend +++ b/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend +++ b/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lpr/filters/Makefile.depend b/usr.sbin/lpr/filters/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/lpr/filters/Makefile.depend +++ b/usr.sbin/lpr/filters/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lpr/lp/Makefile.depend b/usr.sbin/lpr/lp/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/lpr/lp/Makefile.depend +++ b/usr.sbin/lpr/lp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/lpr/lpc/Makefile.depend b/usr.sbin/lpr/lpc/Makefile.depend index fbbafd5e06c0..2a566924988f 100644 --- a/usr.sbin/lpr/lpc/Makefile.depend +++ b/usr.sbin/lpr/lpc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lpr/lpd/Makefile.depend b/usr.sbin/lpr/lpd/Makefile.depend index 167bd2a96e9b..fc22c9245555 100644 --- a/usr.sbin/lpr/lpd/Makefile.depend +++ b/usr.sbin/lpr/lpd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lpr/lpq/Makefile.depend b/usr.sbin/lpr/lpq/Makefile.depend index 003813c8b56e..f0ff87fbf4b9 100644 --- a/usr.sbin/lpr/lpq/Makefile.depend +++ b/usr.sbin/lpr/lpq/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lpr/lpr/Makefile.depend b/usr.sbin/lpr/lpr/Makefile.depend index 003813c8b56e..f0ff87fbf4b9 100644 --- a/usr.sbin/lpr/lpr/Makefile.depend +++ b/usr.sbin/lpr/lpr/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lpr/lprm/Makefile.depend b/usr.sbin/lpr/lprm/Makefile.depend index 003813c8b56e..f0ff87fbf4b9 100644 --- a/usr.sbin/lpr/lprm/Makefile.depend +++ b/usr.sbin/lpr/lprm/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lpr/lptest/Makefile.depend b/usr.sbin/lpr/lptest/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.sbin/lpr/lptest/Makefile.depend +++ b/usr.sbin/lpr/lptest/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lpr/pac/Makefile.depend b/usr.sbin/lpr/pac/Makefile.depend index 003813c8b56e..f0ff87fbf4b9 100644 --- a/usr.sbin/lpr/pac/Makefile.depend +++ b/usr.sbin/lpr/pac/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/lptcontrol/Makefile.depend b/usr.sbin/lptcontrol/Makefile.depend index 2d9ec507cd13..461e7100bbd1 100644 --- a/usr.sbin/lptcontrol/Makefile.depend +++ b/usr.sbin/lptcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/mailstats/Makefile.depend b/usr.sbin/mailstats/Makefile.depend index 1e452ffb53bb..5286cc40c8cc 100644 --- a/usr.sbin/mailstats/Makefile.depend +++ b/usr.sbin/mailstats/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/mailwrapper/Makefile.depend b/usr.sbin/mailwrapper/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.sbin/mailwrapper/Makefile.depend +++ b/usr.sbin/mailwrapper/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/makefs/Makefile.depend b/usr.sbin/makefs/Makefile.depend index 4c55f94e78c7..73094ef21022 100644 --- a/usr.sbin/makefs/Makefile.depend +++ b/usr.sbin/makefs/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/makemap/Makefile.depend b/usr.sbin/makemap/Makefile.depend index 3e6ba435356b..76d8a0ad1485 100644 --- a/usr.sbin/makemap/Makefile.depend +++ b/usr.sbin/makemap/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/manctl/Makefile.depend b/usr.sbin/manctl/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/manctl/Makefile.depend +++ b/usr.sbin/manctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/memcontrol/Makefile.depend b/usr.sbin/memcontrol/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/memcontrol/Makefile.depend +++ b/usr.sbin/memcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/mergemaster/Makefile.depend b/usr.sbin/mergemaster/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/mergemaster/Makefile.depend +++ b/usr.sbin/mergemaster/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/mfiutil/Makefile.depend b/usr.sbin/mfiutil/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.sbin/mfiutil/Makefile.depend +++ b/usr.sbin/mfiutil/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/mixer/Makefile.depend b/usr.sbin/mixer/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/mixer/Makefile.depend +++ b/usr.sbin/mixer/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/mld6query/Makefile.depend b/usr.sbin/mld6query/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/mld6query/Makefile.depend +++ b/usr.sbin/mld6query/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/mlxcontrol/Makefile.depend b/usr.sbin/mlxcontrol/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/mlxcontrol/Makefile.depend +++ b/usr.sbin/mlxcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/mountd/Makefile.depend b/usr.sbin/mountd/Makefile.depend index bcf0e390016a..8dd4123ca8d2 100644 --- a/usr.sbin/mountd/Makefile.depend +++ b/usr.sbin/mountd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/moused/Makefile.depend b/usr.sbin/moused/Makefile.depend index 9292a7dc93ae..aa7dc3b59c02 100644 --- a/usr.sbin/moused/Makefile.depend +++ b/usr.sbin/moused/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/mptable/Makefile.depend b/usr.sbin/mptable/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/mptable/Makefile.depend +++ b/usr.sbin/mptable/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/mptutil/Makefile.depend b/usr.sbin/mptutil/Makefile.depend index 981ec38d17a8..1448d0fcbdc8 100644 --- a/usr.sbin/mptutil/Makefile.depend +++ b/usr.sbin/mptutil/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/mtest/Makefile.depend b/usr.sbin/mtest/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/mtest/Makefile.depend +++ b/usr.sbin/mtest/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/mtree/Makefile.depend b/usr.sbin/mtree/Makefile.depend index 50e2e74bea35..c0953baa2e6d 100644 --- a/usr.sbin/mtree/Makefile.depend +++ b/usr.sbin/mtree/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ndiscvt/Makefile.depend b/usr.sbin/ndiscvt/Makefile.depend index 4fe82d8a0b80..fdf924dc1da8 100644 --- a/usr.sbin/ndiscvt/Makefile.depend +++ b/usr.sbin/ndiscvt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ndp/Makefile.depend b/usr.sbin/ndp/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/ndp/Makefile.depend +++ b/usr.sbin/ndp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/newsyslog/Makefile.depend b/usr.sbin/newsyslog/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/newsyslog/Makefile.depend +++ b/usr.sbin/newsyslog/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/nfscbd/Makefile.depend b/usr.sbin/nfscbd/Makefile.depend index 102b1c3ddd08..84cc2df88a9f 100644 --- a/usr.sbin/nfscbd/Makefile.depend +++ b/usr.sbin/nfscbd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/nfsd/Makefile.depend b/usr.sbin/nfsd/Makefile.depend index 2a44c25ffe8e..f0ca83a7daa5 100644 --- a/usr.sbin/nfsd/Makefile.depend +++ b/usr.sbin/nfsd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/nfsdumpstate/Makefile.depend b/usr.sbin/nfsdumpstate/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/nfsdumpstate/Makefile.depend +++ b/usr.sbin/nfsdumpstate/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/nfsrevoke/Makefile.depend b/usr.sbin/nfsrevoke/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/nfsrevoke/Makefile.depend +++ b/usr.sbin/nfsrevoke/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/nfsuserd/Makefile.depend b/usr.sbin/nfsuserd/Makefile.depend index 102b1c3ddd08..84cc2df88a9f 100644 --- a/usr.sbin/nfsuserd/Makefile.depend +++ b/usr.sbin/nfsuserd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ngctl/Makefile.depend b/usr.sbin/ngctl/Makefile.depend index 2e9e2ab5e978..610056c5a32f 100644 --- a/usr.sbin/ngctl/Makefile.depend +++ b/usr.sbin/ngctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/nghook/Makefile.depend b/usr.sbin/nghook/Makefile.depend index 181b85adfc73..7fbd5c8db42a 100644 --- a/usr.sbin/nghook/Makefile.depend +++ b/usr.sbin/nghook/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/nologin/Makefile.depend b/usr.sbin/nologin/Makefile.depend index 0e905603c660..d80b3a4991d1 100644 --- a/usr.sbin/nologin/Makefile.depend +++ b/usr.sbin/nologin/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ include \ diff --git a/usr.sbin/nscd/Makefile.depend b/usr.sbin/nscd/Makefile.depend index c3952a6d19ea..d76fafd5b80e 100644 --- a/usr.sbin/nscd/Makefile.depend +++ b/usr.sbin/nscd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ntp/doc/Makefile.depend b/usr.sbin/ntp/doc/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/ntp/doc/Makefile.depend +++ b/usr.sbin/ntp/doc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/ntp/libntp/Makefile.depend b/usr.sbin/ntp/libntp/Makefile.depend index 927153e3d6f4..8c3f055f9a18 100644 --- a/usr.sbin/ntp/libntp/Makefile.depend +++ b/usr.sbin/ntp/libntp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ include \ diff --git a/usr.sbin/ntp/libntpevent/Makefile.depend b/usr.sbin/ntp/libntpevent/Makefile.depend index e848c2cb3427..7a3afd2ac075 100644 --- a/usr.sbin/ntp/libntpevent/Makefile.depend +++ b/usr.sbin/ntp/libntpevent/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/arpa \ diff --git a/usr.sbin/ntp/libopts/Makefile.depend b/usr.sbin/ntp/libopts/Makefile.depend index 639d45d8b9b0..15a1f9c07f7c 100644 --- a/usr.sbin/ntp/libopts/Makefile.depend +++ b/usr.sbin/ntp/libopts/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/xlocale \ diff --git a/usr.sbin/ntp/libparse/Makefile.depend b/usr.sbin/ntp/libparse/Makefile.depend index ffaa905b3f48..469861b9c400 100644 --- a/usr.sbin/ntp/libparse/Makefile.depend +++ b/usr.sbin/ntp/libparse/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ include \ include/arpa \ diff --git a/usr.sbin/ntp/ntp-keygen/Makefile.depend b/usr.sbin/ntp/ntp-keygen/Makefile.depend index 61817ccb07a5..05e51c1432b8 100644 --- a/usr.sbin/ntp/ntp-keygen/Makefile.depend +++ b/usr.sbin/ntp/ntp-keygen/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ntp/ntpd/Makefile.depend b/usr.sbin/ntp/ntpd/Makefile.depend index 73ae1796648b..5898bbaad2fc 100644 --- a/usr.sbin/ntp/ntpd/Makefile.depend +++ b/usr.sbin/ntp/ntpd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/ntp/ntpdate/Makefile.depend b/usr.sbin/ntp/ntpdate/Makefile.depend index 3f251af3e518..b4a3b1a09b19 100644 --- a/usr.sbin/ntp/ntpdate/Makefile.depend +++ b/usr.sbin/ntp/ntpdate/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/ntp/ntpdc/Makefile.depend b/usr.sbin/ntp/ntpdc/Makefile.depend index 09b85e6a098c..309a4522d930 100644 --- a/usr.sbin/ntp/ntpdc/Makefile.depend +++ b/usr.sbin/ntp/ntpdc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/ntp/ntpq/Makefile.depend b/usr.sbin/ntp/ntpq/Makefile.depend index 1a4abc4dc96f..79264b8dc7bd 100644 --- a/usr.sbin/ntp/ntpq/Makefile.depend +++ b/usr.sbin/ntp/ntpq/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ bin/cat.host \ gnu/lib/csu \ diff --git a/usr.sbin/ntp/ntptime/Makefile.depend b/usr.sbin/ntp/ntptime/Makefile.depend index 6dc23dec308e..18087aa59a62 100644 --- a/usr.sbin/ntp/ntptime/Makefile.depend +++ b/usr.sbin/ntp/ntptime/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ntp/sntp/Makefile.depend b/usr.sbin/ntp/sntp/Makefile.depend index da4042f9e261..36eddd05c7a5 100644 --- a/usr.sbin/ntp/sntp/Makefile.depend +++ b/usr.sbin/ntp/sntp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend b/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend +++ b/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/pc-sysinstall/backend-query/Makefile.depend b/usr.sbin/pc-sysinstall/backend-query/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/pc-sysinstall/backend-query/Makefile.depend +++ b/usr.sbin/pc-sysinstall/backend-query/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/pc-sysinstall/backend/Makefile.depend b/usr.sbin/pc-sysinstall/backend/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/pc-sysinstall/backend/Makefile.depend +++ b/usr.sbin/pc-sysinstall/backend/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/pc-sysinstall/conf/Makefile.depend b/usr.sbin/pc-sysinstall/conf/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/pc-sysinstall/conf/Makefile.depend +++ b/usr.sbin/pc-sysinstall/conf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/pc-sysinstall/doc/Makefile.depend b/usr.sbin/pc-sysinstall/doc/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/pc-sysinstall/doc/Makefile.depend +++ b/usr.sbin/pc-sysinstall/doc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/pc-sysinstall/examples/Makefile.depend b/usr.sbin/pc-sysinstall/examples/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/pc-sysinstall/examples/Makefile.depend +++ b/usr.sbin/pc-sysinstall/examples/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend b/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend +++ b/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/pciconf/Makefile.depend b/usr.sbin/pciconf/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/pciconf/Makefile.depend +++ b/usr.sbin/pciconf/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/periodic/Makefile.depend b/usr.sbin/periodic/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/periodic/Makefile.depend +++ b/usr.sbin/periodic/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/pkg/Makefile.depend b/usr.sbin/pkg/Makefile.depend index d8f6d6345f11..097f7fb29cc0 100644 --- a/usr.sbin/pkg/Makefile.depend +++ b/usr.sbin/pkg/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/pmcannotate/Makefile.depend b/usr.sbin/pmcannotate/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/pmcannotate/Makefile.depend +++ b/usr.sbin/pmcannotate/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/pmccontrol/Makefile.depend b/usr.sbin/pmccontrol/Makefile.depend index d0338228a632..8d14713e3efd 100644 --- a/usr.sbin/pmccontrol/Makefile.depend +++ b/usr.sbin/pmccontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/pmcstat/Makefile.depend b/usr.sbin/pmcstat/Makefile.depend index f382224b173e..e970bdb2d11a 100644 --- a/usr.sbin/pmcstat/Makefile.depend +++ b/usr.sbin/pmcstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/portsnap/make_index/Makefile.depend b/usr.sbin/portsnap/make_index/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/portsnap/make_index/Makefile.depend +++ b/usr.sbin/portsnap/make_index/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/portsnap/phttpget/Makefile.depend b/usr.sbin/portsnap/phttpget/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/portsnap/phttpget/Makefile.depend +++ b/usr.sbin/portsnap/phttpget/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/portsnap/portsnap/Makefile.depend b/usr.sbin/portsnap/portsnap/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/portsnap/portsnap/Makefile.depend +++ b/usr.sbin/portsnap/portsnap/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/powerd/Makefile.depend b/usr.sbin/powerd/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.sbin/powerd/Makefile.depend +++ b/usr.sbin/powerd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ppp/Makefile.depend b/usr.sbin/ppp/Makefile.depend index 6be8d6a0df8d..858fe08ffdc5 100644 --- a/usr.sbin/ppp/Makefile.depend +++ b/usr.sbin/ppp/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/pppctl/Makefile.depend b/usr.sbin/pppctl/Makefile.depend index 17daa8577fad..8f071a8c78d2 100644 --- a/usr.sbin/pppctl/Makefile.depend +++ b/usr.sbin/pppctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/praliases/Makefile.depend b/usr.sbin/praliases/Makefile.depend index 95c819c68a8f..b2feaa719034 100644 --- a/usr.sbin/praliases/Makefile.depend +++ b/usr.sbin/praliases/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/praudit/Makefile.depend b/usr.sbin/praudit/Makefile.depend index 24594da0ac10..4cce0576d882 100644 --- a/usr.sbin/praudit/Makefile.depend +++ b/usr.sbin/praudit/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/procctl/Makefile.depend b/usr.sbin/procctl/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/procctl/Makefile.depend +++ b/usr.sbin/procctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/pstat/Makefile.depend b/usr.sbin/pstat/Makefile.depend index 5181feb78738..1692857b36d7 100644 --- a/usr.sbin/pstat/Makefile.depend +++ b/usr.sbin/pstat/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/pw/Makefile.depend b/usr.sbin/pw/Makefile.depend index e9c6d4c4ac26..b4cd016ba08c 100644 --- a/usr.sbin/pw/Makefile.depend +++ b/usr.sbin/pw/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/pwd_mkdb/Makefile.depend b/usr.sbin/pwd_mkdb/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/pwd_mkdb/Makefile.depend +++ b/usr.sbin/pwd_mkdb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/quot/Makefile.depend b/usr.sbin/quot/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/quot/Makefile.depend +++ b/usr.sbin/quot/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/quotaon/Makefile.depend b/usr.sbin/quotaon/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.sbin/quotaon/Makefile.depend +++ b/usr.sbin/quotaon/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rarpd/Makefile.depend b/usr.sbin/rarpd/Makefile.depend index d9ecce6a52af..45371c5423a0 100644 --- a/usr.sbin/rarpd/Makefile.depend +++ b/usr.sbin/rarpd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/repquota/Makefile.depend b/usr.sbin/repquota/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.sbin/repquota/Makefile.depend +++ b/usr.sbin/repquota/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rip6query/Makefile.depend b/usr.sbin/rip6query/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/rip6query/Makefile.depend +++ b/usr.sbin/rip6query/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rmt/Makefile.depend b/usr.sbin/rmt/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/rmt/Makefile.depend +++ b/usr.sbin/rmt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/route6d/Makefile.depend b/usr.sbin/route6d/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/route6d/Makefile.depend +++ b/usr.sbin/route6d/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rpc.lockd/Makefile.depend b/usr.sbin/rpc.lockd/Makefile.depend index 5d4d88112deb..c7b269b89951 100644 --- a/usr.sbin/rpc.lockd/Makefile.depend +++ b/usr.sbin/rpc.lockd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rpc.statd/Makefile.depend b/usr.sbin/rpc.statd/Makefile.depend index 332bf27d9933..37fc024cd7ae 100644 --- a/usr.sbin/rpc.statd/Makefile.depend +++ b/usr.sbin/rpc.statd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rpc.umntall/Makefile.depend b/usr.sbin/rpc.umntall/Makefile.depend index c1655db8b437..c3bc1bd6b9c0 100644 --- a/usr.sbin/rpc.umntall/Makefile.depend +++ b/usr.sbin/rpc.umntall/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rpc.yppasswdd/Makefile.depend b/usr.sbin/rpc.yppasswdd/Makefile.depend index cdca06f53d8a..8aa26a1295df 100644 --- a/usr.sbin/rpc.yppasswdd/Makefile.depend +++ b/usr.sbin/rpc.yppasswdd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rpc.ypupdated/Makefile.depend b/usr.sbin/rpc.ypupdated/Makefile.depend index d02c4ba0aaa0..17de37a697a8 100644 --- a/usr.sbin/rpc.ypupdated/Makefile.depend +++ b/usr.sbin/rpc.ypupdated/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rpc.ypxfrd/Makefile.depend b/usr.sbin/rpc.ypxfrd/Makefile.depend index ff79a2ec2fcf..cfed9fe7d81a 100644 --- a/usr.sbin/rpc.ypxfrd/Makefile.depend +++ b/usr.sbin/rpc.ypxfrd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rpcbind/Makefile.depend b/usr.sbin/rpcbind/Makefile.depend index ee9a1f9ced9a..77d6c82ac523 100644 --- a/usr.sbin/rpcbind/Makefile.depend +++ b/usr.sbin/rpcbind/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rrenumd/Makefile.depend b/usr.sbin/rrenumd/Makefile.depend index 9ea337d6625c..786027950518 100644 --- a/usr.sbin/rrenumd/Makefile.depend +++ b/usr.sbin/rrenumd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rtadvctl/Makefile.depend b/usr.sbin/rtadvctl/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/rtadvctl/Makefile.depend +++ b/usr.sbin/rtadvctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rtadvd/Makefile.depend b/usr.sbin/rtadvd/Makefile.depend index d9ecce6a52af..45371c5423a0 100644 --- a/usr.sbin/rtadvd/Makefile.depend +++ b/usr.sbin/rtadvd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rtprio/Makefile.depend b/usr.sbin/rtprio/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/rtprio/Makefile.depend +++ b/usr.sbin/rtprio/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rtsold/Makefile.depend b/usr.sbin/rtsold/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/rtsold/Makefile.depend +++ b/usr.sbin/rtsold/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/rwhod/Makefile.depend b/usr.sbin/rwhod/Makefile.depend index 7cc74610b497..39abfa751015 100644 --- a/usr.sbin/rwhod/Makefile.depend +++ b/usr.sbin/rwhod/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/sa/Makefile.depend b/usr.sbin/sa/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/sa/Makefile.depend +++ b/usr.sbin/sa/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/sendmail/Makefile.depend b/usr.sbin/sendmail/Makefile.depend index c86601a362af..549e803dc486 100644 --- a/usr.sbin/sendmail/Makefile.depend +++ b/usr.sbin/sendmail/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/service/Makefile.depend b/usr.sbin/service/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/service/Makefile.depend +++ b/usr.sbin/service/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/services_mkdb/Makefile.depend b/usr.sbin/services_mkdb/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.sbin/services_mkdb/Makefile.depend +++ b/usr.sbin/services_mkdb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/setfib/Makefile.depend b/usr.sbin/setfib/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/setfib/Makefile.depend +++ b/usr.sbin/setfib/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/setfmac/Makefile.depend b/usr.sbin/setfmac/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/setfmac/Makefile.depend +++ b/usr.sbin/setfmac/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/setpmac/Makefile.depend b/usr.sbin/setpmac/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/setpmac/Makefile.depend +++ b/usr.sbin/setpmac/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/sicontrol/Makefile.depend b/usr.sbin/sicontrol/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/sicontrol/Makefile.depend +++ b/usr.sbin/sicontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/smbmsg/Makefile.depend b/usr.sbin/smbmsg/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/smbmsg/Makefile.depend +++ b/usr.sbin/smbmsg/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/snapinfo/Makefile.depend b/usr.sbin/snapinfo/Makefile.depend index 66da85cb1de1..6ce72ccfcfb4 100644 --- a/usr.sbin/snapinfo/Makefile.depend +++ b/usr.sbin/snapinfo/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/spkrtest/Makefile.depend b/usr.sbin/spkrtest/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/spkrtest/Makefile.depend +++ b/usr.sbin/spkrtest/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ diff --git a/usr.sbin/spray/Makefile.depend b/usr.sbin/spray/Makefile.depend index e44fad36fdf9..9e3ced92f5c7 100644 --- a/usr.sbin/spray/Makefile.depend +++ b/usr.sbin/spray/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/syslogd/Makefile.depend b/usr.sbin/syslogd/Makefile.depend index d9ecce6a52af..45371c5423a0 100644 --- a/usr.sbin/syslogd/Makefile.depend +++ b/usr.sbin/syslogd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/tcpdchk/Makefile.depend b/usr.sbin/tcpdchk/Makefile.depend index 2e79396a44b9..57b0fdf65570 100644 --- a/usr.sbin/tcpdchk/Makefile.depend +++ b/usr.sbin/tcpdchk/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/tcpdmatch/Makefile.depend b/usr.sbin/tcpdmatch/Makefile.depend index 2e79396a44b9..57b0fdf65570 100644 --- a/usr.sbin/tcpdmatch/Makefile.depend +++ b/usr.sbin/tcpdmatch/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/tcpdrop/Makefile.depend b/usr.sbin/tcpdrop/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/tcpdrop/Makefile.depend +++ b/usr.sbin/tcpdrop/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/tcpdump/tcpdump/Makefile.depend b/usr.sbin/tcpdump/tcpdump/Makefile.depend index d6449ae305d6..f604a95cef6a 100644 --- a/usr.sbin/tcpdump/tcpdump/Makefile.depend +++ b/usr.sbin/tcpdump/tcpdump/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/timed/timed/Makefile.depend b/usr.sbin/timed/timed/Makefile.depend index 662a3391e707..d7b30c20d0b4 100644 --- a/usr.sbin/timed/timed/Makefile.depend +++ b/usr.sbin/timed/timed/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/timed/timedc/Makefile.depend b/usr.sbin/timed/timedc/Makefile.depend index 7cc74610b497..39abfa751015 100644 --- a/usr.sbin/timed/timedc/Makefile.depend +++ b/usr.sbin/timed/timedc/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/traceroute/Makefile.depend b/usr.sbin/traceroute/Makefile.depend index 76dabb396b38..a7f7247f6ee7 100644 --- a/usr.sbin/traceroute/Makefile.depend +++ b/usr.sbin/traceroute/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/traceroute6/Makefile.depend b/usr.sbin/traceroute6/Makefile.depend index 4de996d8a07b..100114269473 100644 --- a/usr.sbin/traceroute6/Makefile.depend +++ b/usr.sbin/traceroute6/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/trpt/Makefile.depend b/usr.sbin/trpt/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/trpt/Makefile.depend +++ b/usr.sbin/trpt/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/tzsetup/Makefile.depend b/usr.sbin/tzsetup/Makefile.depend index d9cc8893dc80..bf205a7a3f59 100644 --- a/usr.sbin/tzsetup/Makefile.depend +++ b/usr.sbin/tzsetup/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libdialog \ diff --git a/usr.sbin/uathload/Makefile.depend b/usr.sbin/uathload/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/uathload/Makefile.depend +++ b/usr.sbin/uathload/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ugidfw/Makefile.depend b/usr.sbin/ugidfw/Makefile.depend index 005d01278800..2d9aa72b3b32 100644 --- a/usr.sbin/ugidfw/Makefile.depend +++ b/usr.sbin/ugidfw/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/uhsoctl/Makefile.depend b/usr.sbin/uhsoctl/Makefile.depend index d9ecce6a52af..45371c5423a0 100644 --- a/usr.sbin/uhsoctl/Makefile.depend +++ b/usr.sbin/uhsoctl/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/usbconfig/Makefile.depend b/usr.sbin/usbconfig/Makefile.depend index 91ae73e1aa71..d089be9a124e 100644 --- a/usr.sbin/usbconfig/Makefile.depend +++ b/usr.sbin/usbconfig/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/usbdump/Makefile.depend b/usr.sbin/usbdump/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/usbdump/Makefile.depend +++ b/usr.sbin/usbdump/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/utx/Makefile.depend b/usr.sbin/utx/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/utx/Makefile.depend +++ b/usr.sbin/utx/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/vidcontrol/Makefile.depend b/usr.sbin/vidcontrol/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/vidcontrol/Makefile.depend +++ b/usr.sbin/vidcontrol/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/vipw/Makefile.depend b/usr.sbin/vipw/Makefile.depend index 78b235bef5b2..0eab23f2ef7a 100644 --- a/usr.sbin/vipw/Makefile.depend +++ b/usr.sbin/vipw/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/wake/Makefile.depend b/usr.sbin/wake/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/wake/Makefile.depend +++ b/usr.sbin/wake/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/watch/Makefile.depend b/usr.sbin/watch/Makefile.depend index a25f5f6a2451..3e23976fdb5c 100644 --- a/usr.sbin/watch/Makefile.depend +++ b/usr.sbin/watch/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/watchdogd/Makefile.depend b/usr.sbin/watchdogd/Makefile.depend index 9292a7dc93ae..aa7dc3b59c02 100644 --- a/usr.sbin/watchdogd/Makefile.depend +++ b/usr.sbin/watchdogd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/wlandebug/Makefile.depend b/usr.sbin/wlandebug/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/wlandebug/Makefile.depend +++ b/usr.sbin/wlandebug/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/wpa/hostapd/Makefile.depend b/usr.sbin/wpa/hostapd/Makefile.depend index 5acb789f294b..ced01a8c8cfe 100644 --- a/usr.sbin/wpa/hostapd/Makefile.depend +++ b/usr.sbin/wpa/hostapd/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/wpa/hostapd_cli/Makefile.depend b/usr.sbin/wpa/hostapd_cli/Makefile.depend index d9ecce6a52af..45371c5423a0 100644 --- a/usr.sbin/wpa/hostapd_cli/Makefile.depend +++ b/usr.sbin/wpa/hostapd_cli/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/wpa/ndis_events/Makefile.depend b/usr.sbin/wpa/ndis_events/Makefile.depend index b68b4bb5daf9..007ffdde7baf 100644 --- a/usr.sbin/wpa/ndis_events/Makefile.depend +++ b/usr.sbin/wpa/ndis_events/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/wpa/wpa_cli/Makefile.depend b/usr.sbin/wpa/wpa_cli/Makefile.depend index d9ecce6a52af..45371c5423a0 100644 --- a/usr.sbin/wpa/wpa_cli/Makefile.depend +++ b/usr.sbin/wpa/wpa_cli/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/wpa/wpa_passphrase/Makefile.depend b/usr.sbin/wpa/wpa_passphrase/Makefile.depend index d9ecce6a52af..45371c5423a0 100644 --- a/usr.sbin/wpa/wpa_passphrase/Makefile.depend +++ b/usr.sbin/wpa/wpa_passphrase/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/wpa/wpa_supplicant/Makefile.depend b/usr.sbin/wpa/wpa_supplicant/Makefile.depend index 5acb789f294b..ced01a8c8cfe 100644 --- a/usr.sbin/wpa/wpa_supplicant/Makefile.depend +++ b/usr.sbin/wpa/wpa_supplicant/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/yp_mkdb/Makefile.depend b/usr.sbin/yp_mkdb/Makefile.depend index c1655db8b437..c3bc1bd6b9c0 100644 --- a/usr.sbin/yp_mkdb/Makefile.depend +++ b/usr.sbin/yp_mkdb/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ypbind/Makefile.depend b/usr.sbin/ypbind/Makefile.depend index 2a44c25ffe8e..f0ca83a7daa5 100644 --- a/usr.sbin/ypbind/Makefile.depend +++ b/usr.sbin/ypbind/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/yppoll/Makefile.depend b/usr.sbin/yppoll/Makefile.depend index c1655db8b437..c3bc1bd6b9c0 100644 --- a/usr.sbin/yppoll/Makefile.depend +++ b/usr.sbin/yppoll/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/yppush/Makefile.depend b/usr.sbin/yppush/Makefile.depend index fcb2738e1f24..96ccaed343d5 100644 --- a/usr.sbin/yppush/Makefile.depend +++ b/usr.sbin/yppush/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ypserv/Makefile.depend b/usr.sbin/ypserv/Makefile.depend index ed8b35e4cff1..b3d7ce8a409d 100644 --- a/usr.sbin/ypserv/Makefile.depend +++ b/usr.sbin/ypserv/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/ypset/Makefile.depend b/usr.sbin/ypset/Makefile.depend index 2a44c25ffe8e..f0ca83a7daa5 100644 --- a/usr.sbin/ypset/Makefile.depend +++ b/usr.sbin/ypset/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/zic/zdump/Makefile.depend b/usr.sbin/zic/zdump/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/zic/zdump/Makefile.depend +++ b/usr.sbin/zic/zdump/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/zic/zic/Makefile.depend b/usr.sbin/zic/zic/Makefile.depend index 96aa2a21a959..f4b51420002f 100644 --- a/usr.sbin/zic/zic/Makefile.depend +++ b/usr.sbin/zic/zic/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ gnu/lib/csu \ gnu/lib/libgcc \ diff --git a/usr.sbin/zzz/Makefile.depend b/usr.sbin/zzz/Makefile.depend index 57b7e10c3d71..11aba52f82cf 100644 --- a/usr.sbin/zzz/Makefile.depend +++ b/usr.sbin/zzz/Makefile.depend @@ -1,7 +1,5 @@ # Autogenerated - do NOT edit! -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - DIRDEPS = \ From 87750562a154523018239e9ca301d0f14d1373e8 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 8 Jun 2015 23:37:17 +0000 Subject: [PATCH 210/228] Avoid bogus MLINKS when MK_LZMA_SUPPORT=yes and MK_BSD_GREP=no --- usr.bin/grep/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr.bin/grep/Makefile b/usr.bin/grep/Makefile index 38df85a6f807..af2147180031 100644 --- a/usr.bin/grep/Makefile +++ b/usr.bin/grep/Makefile @@ -39,6 +39,7 @@ LIBADD= z .if ${MK_LZMA_SUPPORT} != "no" LIBADD+= lzma +.if ${MK_BSD_GREP} == "yes" LINKS+= ${BINDIR}/${PROG} ${BINDIR}/xzgrep \ ${BINDIR}/${PROG} ${BINDIR}/xzegrep \ ${BINDIR}/${PROG} ${BINDIR}/xzfgrep \ @@ -52,6 +53,7 @@ MLINKS+= grep.1 xzgrep.1 \ grep.1 lzgrep.1 \ grep.1 lzegrep.1 \ grep.1 lzfgrep.1 +.endif .else CFLAGS+= -DWITHOUT_LZMA .endif From 1f1f6146caf57ce6fc1d813a5d04dff36c85b991 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 04:57:09 +0000 Subject: [PATCH 211/228] Explain why NO_BEFOREBUILD_INCLUDES is needed --- kerberos5/lib/libasn1/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kerberos5/lib/libasn1/Makefile b/kerberos5/lib/libasn1/Makefile index 911868331f9b..177de85c1ed5 100644 --- a/kerberos5/lib/libasn1/Makefile +++ b/kerberos5/lib/libasn1/Makefile @@ -116,6 +116,9 @@ ${GEN_KX509}: kx509.asn1 .hx.h: ${CP} ${.IMPSRC} ${.TARGET} +# This makefile generates a lot of its headers +# so tell bsd.sys.mk not to try and stage them before they are built. +# Note: this is rare NO_BEFOREBUILD_INCLUDES= .include From 13172aa2058dae7beb51773c7582d28cd7d2e7b1 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 05:30:13 +0000 Subject: [PATCH 212/228] Removed extra line --- rescue/rescue/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index 31ca21e4be09..8e682bd1f2ed 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -223,4 +223,3 @@ CRUNCH_LIBS+= -lm .include .include - From fbeda970cfdf3c3329bc5bb7508080d44ade3ad4 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 05:39:06 +0000 Subject: [PATCH 213/228] remove extra line --- share/syscons/fonts/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/share/syscons/fonts/Makefile b/share/syscons/fonts/Makefile index 25ff16ad0fcc..c7c6a1b36dc7 100644 --- a/share/syscons/fonts/Makefile +++ b/share/syscons/fonts/Makefile @@ -32,5 +32,4 @@ FILES= armscii8-8x8.fnt armscii8-8x14.fnt armscii8-8x16.fnt \ FILESDIR= ${SHAREDIR}/syscons/fonts - .include From ee10d8d237f695a137ee24f30407c7eab12a1993 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 05:39:48 +0000 Subject: [PATCH 214/228] Remove extra line --- share/syscons/keymaps/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/share/syscons/keymaps/Makefile b/share/syscons/keymaps/Makefile index 295399b93f64..83ed4ae4d8b5 100644 --- a/share/syscons/keymaps/Makefile +++ b/share/syscons/keymaps/Makefile @@ -52,5 +52,4 @@ FILES= INDEX.keymaps \ FILESDIR= ${SHAREDIR}/syscons/keymaps - .include From 1fc3d968ac896ad2044a7cad3e4d711ff6e4b260 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 13:08:45 +0000 Subject: [PATCH 215/228] Since sys.mk now handles META_MODE and META_FILES options we need not worry about them here. Checking for .PARSEDIR no longer needed. --- Makefile | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index e0317eb30dfb..b37098e51d1f 100644 --- a/Makefile +++ b/Makefile @@ -521,26 +521,22 @@ universe_epilogue: buildLINT: ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT -.if defined(.PARSEDIR) # This makefile does not run in meta mode .MAKE.MODE= normal # Normally the things we run from here don't either. -# Using -DWITH_META_FILES -DWITHOUT_STAGING +# Using -DWITH_META_FILES # we can buildworld with meta files created which are useful # for debugging, but without any of the rest of a meta mode build. -.ifndef WITH_META_FILES -WITHOUT_META_MODE= -.export WITHOUT_META_MODE -.else -WITHOUT_STAGING= -UPDATE_DEPENDFILE=NO -.export UPDATE_DEPENDFILE WITHOUT_STAGING -.endif +MK_META_MODE= no +MK_STAGING= no +# tell meta.autodep.mk to not even think about updating anything. +UPDATE_DEPENDFILE= NO +.export MK_META_MODE MK_STAGING UPDATE_DEPENDFILE .if make(universe) # we do not want a failure of one branch abort all. MAKE_JOB_ERROR_TOKEN= no .export MAKE_JOB_ERROR_TOKEN .endif -.endif -.endif + +.endif # META_MODE From b56a78b69e9b04e4d09a1424548b1e9dfe7efa6e Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 13:14:24 +0000 Subject: [PATCH 216/228] Let people use this with MAKEOBJDIRPREFIX if they really want to --- share/mk/auto.obj.mk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/share/mk/auto.obj.mk b/share/mk/auto.obj.mk index 795bc1002f5d..7cc094c28838 100644 --- a/share/mk/auto.obj.mk +++ b/share/mk/auto.obj.mk @@ -40,7 +40,10 @@ MKOBJDIRS= auto .if !defined(NOOBJ) && !defined(NO_OBJ) && ${MKOBJDIRS:Uno} == auto # Use __objdir here so it is easier to tweak without impacting # the logic. -__objdir?= ${MAKEOBJDIR} +.if !empty(MAKEOBJDIRPREFIX) && exists(${MAKEOBJDIRPREFIX}) +__objdir?= ${MAKEOBJDIRPREFIX}${.CURDIR} +.endif +__objdir?= ${MAKEOBJDIR:Uobj} __objdir:= ${__objdir:tA} .if ${.OBJDIR} != ${__objdir} # We need to chdir, make the directory if needed From 8bbb3bbab54f0943e2e2a7f9580bfe04e665ee03 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 13:57:11 +0000 Subject: [PATCH 217/228] Revert unneeded change --- sbin/atm/atmconfig/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/atm/atmconfig/Makefile b/sbin/atm/atmconfig/Makefile index 6ba1d317a2ff..1e48f0454d32 100644 --- a/sbin/atm/atmconfig/Makefile +++ b/sbin/atm/atmconfig/Makefile @@ -12,7 +12,7 @@ SRCS= main.c diag.c natm.c MAN= atmconfig.8 # CFLAGS+= -DPATH_HELP='".:/usr/share/doc/atm:/usr/local/share/doc/atm"' -CFLAGS+= -I. +CFLAGS+= -I${.OBJDIR} .if !defined(RESCUE) && ${MK_BSNMP} != "no" CFLAGS+= -DWITH_BSNMP From b589e6297b06281cfa576521ac9a255566627438 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 14:08:36 +0000 Subject: [PATCH 218/228] Remove extra blank lines --- Makefile.inc1 | 1 - share/dtrace/toolkit/Makefile | 1 - share/examples/pf/Makefile | 1 - share/sendmail/Makefile | 1 - usr.sbin/pc-sysinstall/conf/Makefile | 1 - 5 files changed, 5 deletions(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 217c00891b4e..7539a14a8b74 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1361,7 +1361,6 @@ _kerberos5_bootstrap_tools= \ usr.bin/compile_et .ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} - .endif # Rebuild up-to-date libmd for xinstall diff --git a/share/dtrace/toolkit/Makefile b/share/dtrace/toolkit/Makefile index 66dc3b8ca659..367b95ece32a 100644 --- a/share/dtrace/toolkit/Makefile +++ b/share/dtrace/toolkit/Makefile @@ -12,5 +12,4 @@ SCRIPTS= ${DTRACETOOLKIT}/execsnoop \ SCRIPTSDIR= ${SHAREDIR}/dtrace/toolkit - .include diff --git a/share/examples/pf/Makefile b/share/examples/pf/Makefile index 684a32605351..618f417e8fe2 100644 --- a/share/examples/pf/Makefile +++ b/share/examples/pf/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ - FILES= faq-example1 faq-example2 faq-example3 \ ackpri queue1 queue2 queue3 queue4 \ pf.conf \ diff --git a/share/sendmail/Makefile b/share/sendmail/Makefile index 77554aed8320..8153d490be60 100644 --- a/share/sendmail/Makefile +++ b/share/sendmail/Makefile @@ -9,7 +9,6 @@ CFFILES!= (cd ${SENDMAIL_DIR}; find -L ${CFDIR} \( \( -name CVS -o -name .svn \) DDIR= ${DESTDIR}/usr/share/sendmail - # Define SHARED to indicate whether you want symbolic links to the system # source (``symlinks''), or a separate copy (``copies'') SHARED?= copies diff --git a/usr.sbin/pc-sysinstall/conf/Makefile b/usr.sbin/pc-sysinstall/conf/Makefile index 2a6f58b9f822..5ccd78f6d99d 100644 --- a/usr.sbin/pc-sysinstall/conf/Makefile +++ b/usr.sbin/pc-sysinstall/conf/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ - FILESGROUPS= CONF LICENSE CONF= exclude-from-upgrade pc-sysinstall.conf avail-langs CONFDIR= ${SHAREDIR}/pc-sysinstall/conf From 4cc6b8394f5e639f942efca8d057fa7cad9be235 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 18:09:05 +0000 Subject: [PATCH 219/228] If MK_AUTO_OBJ==yes, it is done before bsd.obj.mk included --- share/mk/bsd.obj.mk | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/share/mk/bsd.obj.mk b/share/mk/bsd.obj.mk index b87b4243314f..00408cb6aeeb 100644 --- a/share/mk/bsd.obj.mk +++ b/share/mk/bsd.obj.mk @@ -42,7 +42,12 @@ ____: .include -.if defined(MAKEOBJDIRPREFIX) +.if ${MK_AUTO_OBJ} == "yes" +# it is done by now +objwarn: +obj: +CANONICALOBJDIR= ${.OBJDIR} +.elif defined(MAKEOBJDIRPREFIX) CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR} .elif defined(MAKEOBJDIR) && ${MAKEOBJDIR:M/*} != "" CANONICALOBJDIR:=${MAKEOBJDIR} @@ -50,15 +55,6 @@ CANONICALOBJDIR:=${MAKEOBJDIR} CANONICALOBJDIR:=/usr/obj${.CURDIR} .endif -.if defined(.PARSEDIR) && !defined(NO_OBJ) && !defined(NO_AUTO_OBJ) -.if ${MK_AUTO_OBJ} == "yes" -__objdir?= ${CANONICALOBJDIR} -# this is what auto.obj.mk wants to see -MKOBJDIRS=auto -.include "auto.obj.mk" -.endif -.endif - # # Warn of unorthodox object directory. # From f5374544f105917164afb30c628abd85ce061213 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 18:14:38 +0000 Subject: [PATCH 220/228] Building on fmake is no longer possible so removed tests for bmake. --- share/mk/bsd.dep.mk | 2 -- share/mk/bsd.init.mk | 2 -- share/mk/bsd.own.mk | 4 +--- share/mk/bsd.progs.mk | 4 ---- share/mk/bsd.subdir.mk | 2 +- share/mk/local.init.mk | 2 -- share/mk/sys.mk | 19 ------------------- 7 files changed, 2 insertions(+), 33 deletions(-) diff --git a/share/mk/bsd.dep.mk b/share/mk/bsd.dep.mk index eb75ff32158b..965f7034bdb8 100644 --- a/share/mk/bsd.dep.mk +++ b/share/mk/bsd.dep.mk @@ -147,7 +147,6 @@ beforedepend: ${DHDRS} beforebuild: ${DHDRS} .endif -.if defined(.PARSEDIR) .if ${MK_META_MODE} == "yes" .include # this depend: bypasses that below @@ -156,7 +155,6 @@ depend: beforedepend ${DPSRCS} ${SRCS} afterdepend beforedepend: afterdepend: beforedepend .endif -.endif .if !target(depend) .if defined(SRCS) diff --git a/share/mk/bsd.init.mk b/share/mk/bsd.init.mk index 14a17dd657e4..1e6979da2dda 100644 --- a/share/mk/bsd.init.mk +++ b/share/mk/bsd.init.mk @@ -16,11 +16,9 @@ ____: .include .MAIN: all -.if defined(.PARSEDIR) .if ${.MAKE.LEVEL:U1} == 0 && ${BUILD_AT_LEVEL0:Uyes:tl} == "no" && !make(clean*) # this tells lib.mk and prog.mk to not actually build anything _SKIP_BUILD = not building at level 0 .endif -.endif .endif # !target(____) diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index b41583b34250..d8ce3b497842 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -128,10 +128,8 @@ ____: .if ${MK_CTF} != "no" CTFCONVERT_CMD= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} -.elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300) -CTFCONVERT_CMD= .else -CTFCONVERT_CMD= @: +CTFCONVERT_CMD= .endif .if ${MK_INSTALL_AS_USER} != "no" diff --git a/share/mk/bsd.progs.mk b/share/mk/bsd.progs.mk index f943678a8ff7..123743922e87 100644 --- a/share/mk/bsd.progs.mk +++ b/share/mk/bsd.progs.mk @@ -22,14 +22,10 @@ PROGS += ${PROGS_CXX} # In meta mode, we can capture dependenices for _one_ of the progs. # if makefile doesn't nominate one, we use the first. -.if defined(.PARSEDIR) .ifndef UPDATE_DEPENDFILE_PROG UPDATE_DEPENDFILE_PROG = ${PROGS:[1]} .export UPDATE_DEPENDFILE_PROG .endif -.else -UPDATE_DEPENDFILE_PROG?= no -.endif .ifndef PROG # They may have asked us to build just one diff --git a/share/mk/bsd.subdir.mk b/share/mk/bsd.subdir.mk index c57f83c90f63..e1b12768c9e9 100644 --- a/share/mk/bsd.subdir.mk +++ b/share/mk/bsd.subdir.mk @@ -34,7 +34,7 @@ ____: .include -.if defined(.PARSEDIR) && !defined(NEED_SUBDIR) +.if !defined(NEED_SUBDIR) .if ${.MAKE.LEVEL} == 0 && ${MK_META_MODE} == "yes" && !empty(SUBDIR) && !(make(clean*) || make(destroy*)) .include # ignore this diff --git a/share/mk/local.init.mk b/share/mk/local.init.mk index 2d0ad4fd0882..c17c95741e36 100644 --- a/share/mk/local.init.mk +++ b/share/mk/local.init.mk @@ -1,7 +1,6 @@ .include "src.opts.mk" -.if defined(.PARSEDIR) .if ${.MAKE.MODE:Unormal:Mmeta*} != "" .if !empty(SUBDIR) && !defined(LIB) && !defined(PROG) && ${.MAKE.MAKEFILES:M*bsd.prog.mk} == "" .if ${.MAKE.MODE:Mleaf*} != "" @@ -10,7 +9,6 @@ .endif .endif .endif -.endif .if ${MK_SYSROOT} == "yes" && !empty(SYSROOT) CFLAGS_LAST+= --sysroot=${SYSROOT} diff --git a/share/mk/sys.mk b/share/mk/sys.mk index 7d7d42bcff44..9532edd55b88 100644 --- a/share/mk/sys.mk +++ b/share/mk/sys.mk @@ -97,17 +97,9 @@ ECHODIR ?= true .endif .endif -.if defined(.PARSEDIR) # _+_ appears to be a workaround for the special src .MAKE not working. # setting it to + interferes with -N _+_ ?= -.elif !empty(.MAKEFLAGS:M-n) && ${.MAKEFLAGS:M-n} == "-n" -# the check above matches only a single -n, so -n -n will result -# in _+_ = + -_+_ ?= -.else -_+_ ?= + -.endif .if defined(%POSIX) FC ?= fort77 @@ -369,16 +361,6 @@ SHELL= ${__MAKE_SHELL} .SHELL: path=${__MAKE_SHELL} .endif -.if !defined(.PARSEDIR) -# We are not bmake, which is more aggressive about searching .PATH -# It is sometime necessary to curb its enthusiasm with .NOPATH -# The following allows us to quietly ignore .NOPATH when not using bmake. -.NOTMAIN: .NOPATH -.NOPATH: - -# Toggle on warnings -.WARN: dirsyntax -.else # is bmake # Tell bmake to expand -V VAR by default .MAKE.EXPAND_VARIABLES= yes @@ -395,7 +377,6 @@ SHELL= ${__MAKE_SHELL} echoFlag=v errFlag=e \ path=${__MAKE_SHELL:U/bin/sh} .endif -.endif # bmake .include From 940a3032cba24cddd25bebcf51c0c8836f1daa6f Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 19:26:49 +0000 Subject: [PATCH 221/228] Explain in a nutshell why we destroy --- share/mk/bsd.obj.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/share/mk/bsd.obj.mk b/share/mk/bsd.obj.mk index 00408cb6aeeb..436074fd0fe7 100644 --- a/share/mk/bsd.obj.mk +++ b/share/mk/bsd.obj.mk @@ -160,6 +160,7 @@ cleandir: cleanobj _OBJDIR?= ${.OBJDIR} _CURDIR?= ${.CURDIR} +# destroy (rm -rf objdir) is much more efficient than clean # destroy almost everything destroy: destroy-all destroy-all: From dccf7cedd2b8adf92faaaefe017874beadf8746e Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 19:31:10 +0000 Subject: [PATCH 222/228] combine two comments --- share/mk/bsd.obj.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/share/mk/bsd.obj.mk b/share/mk/bsd.obj.mk index 436074fd0fe7..4cb8d2bde8eb 100644 --- a/share/mk/bsd.obj.mk +++ b/share/mk/bsd.obj.mk @@ -154,13 +154,12 @@ cleandir: cleanobj .include .if make(destroy*) && defined(OBJROOT) -# this is much faster and more reliable than cleaning. +# this (rm -rf objdir) is much faster and more reliable than cleaning. # just in case we are playing games with these... _OBJDIR?= ${.OBJDIR} _CURDIR?= ${.CURDIR} -# destroy (rm -rf objdir) is much more efficient than clean # destroy almost everything destroy: destroy-all destroy-all: From 10b60135a96c09317e34ae557a6411ae724103ec Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 19:36:53 +0000 Subject: [PATCH 223/228] Mention what 'common' is for --- share/mk/bsd.compiler.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/mk/bsd.compiler.mk b/share/mk/bsd.compiler.mk index cbd8fc4685aa..dcdf5987b501 100644 --- a/share/mk/bsd.compiler.mk +++ b/share/mk/bsd.compiler.mk @@ -26,6 +26,8 @@ ____: .if ${MACHINE} == "common" +# common is a pseudo machine for architecture independent +# generated files - thus there is no compiler. COMPILER_TYPE= none COMPILER_VERSION= 0 .elif !defined(COMPILER_TYPE) || !defined(COMPILER_VERSION) From a5f6297b6359ede498e69460f8f6079af91891b3 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 19:48:45 +0000 Subject: [PATCH 224/228] Explain why NO_BEFOREBUILD_INCLUDES is needed --- kerberos5/lib/libhdb/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kerberos5/lib/libhdb/Makefile b/kerberos5/lib/libhdb/Makefile index 66e0a67475ff..9134fb5180a6 100644 --- a/kerberos5/lib/libhdb/Makefile +++ b/kerberos5/lib/libhdb/Makefile @@ -96,6 +96,9 @@ ${GEN}: hdb.asn1 .hx.h: ${CP} ${.IMPSRC} ${.TARGET} +# This makefile generates a lot of its headers +# so tell bsd.sys.mk not to try and stage them before they are built. +# Note: this is rare NO_BEFOREBUILD_INCLUDES= .include From de1eae5ccb25d5ab2cb92080bfce3f7722e4950d Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Wed, 10 Jun 2015 19:51:35 +0000 Subject: [PATCH 225/228] Explain why NO_BEFOREBUILD_INCLUDES is needed --- kerberos5/lib/libhx509/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kerberos5/lib/libhx509/Makefile b/kerberos5/lib/libhx509/Makefile index eaa3beea10b5..0913e7741bc1 100644 --- a/kerberos5/lib/libhx509/Makefile +++ b/kerberos5/lib/libhx509/Makefile @@ -290,6 +290,9 @@ ${GEN_CRMF}: crmf.asn1 .hx.h: ${CP} ${.IMPSRC} ${.TARGET} +# This makefile generates a lot of its headers +# so tell bsd.sys.mk not to try and stage them before they are built. +# Note: this is rare NO_BEFOREBUILD_INCLUDES= .include From 92f755617b90bd35dc5754b6ca4e13293b9ec9cc Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 11 Jun 2015 13:51:52 +0000 Subject: [PATCH 226/228] For debugging we sometimes run makefiles forcing level > 0 Ensure setup that should have happened at level 0 is done. --- share/mk/local.meta.sys.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/mk/local.meta.sys.mk b/share/mk/local.meta.sys.mk index b4109a397009..ef7ddc3c53c8 100644 --- a/share/mk/local.meta.sys.mk +++ b/share/mk/local.meta.sys.mk @@ -4,7 +4,7 @@ # XXX some of this should be in meta.sys.mk # we assume that MK_META_MODE=yes -.if ${.MAKE.LEVEL} == 0 +.if empty(OBJROOT) || ${.MAKE.LEVEL} == 0 .if !empty(SB) SB_OBJROOT ?= ${SB}/obj/ # this is what we use below From e5b44e374327793ac2df0124052fa760f1594af4 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Thu, 11 Jun 2015 13:53:15 +0000 Subject: [PATCH 227/228] With MK_AUTO_OBJ=yes objdir is created during sys.mk If a makefile sets NO_OBJ, we should honor that by setting .OBJDIR back to .CURDIR --- share/mk/bsd.obj.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/mk/bsd.obj.mk b/share/mk/bsd.obj.mk index 4cb8d2bde8eb..f94181a74791 100644 --- a/share/mk/bsd.obj.mk +++ b/share/mk/bsd.obj.mk @@ -47,6 +47,10 @@ ____: objwarn: obj: CANONICALOBJDIR= ${.OBJDIR} +.if defined(NO_OBJ) +# but this makefile does not want it! +.OBJDIR: ${.CURDIR} +.endif .elif defined(MAKEOBJDIRPREFIX) CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR} .elif defined(MAKEOBJDIR) && ${MAKEOBJDIR:M/*} != "" From 2b3dc5355754d7cfe6736c8c2f8d573ee7ac7fab Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Fri, 12 Jun 2015 03:26:05 +0000 Subject: [PATCH 228/228] Reorganize targets/pseudo/userland This target mainly exists to help check things build. Eventually targets that build real packages or images will be more important. As such move the pseudo targets that only exist for the benefit of 'userland' to under it. --- targets/pseudo/bin/Makefile.depend | 49 -- targets/pseudo/sbin/Makefile.depend | 126 --- targets/pseudo/share/Makefile | 3 - targets/pseudo/userland/Makefile.depend | 785 +++++++++++++++++- .../{bin/Makefile => userland/Makefile.inc} | 0 targets/pseudo/{ => userland}/cddl/Makefile | 0 .../{ => userland}/cddl/Makefile.depend | 0 targets/pseudo/{ => userland}/games/Makefile | 0 .../{ => userland}/games/Makefile.depend | 0 targets/pseudo/{ => userland}/gnu/Makefile | 0 .../pseudo/{ => userland}/gnu/Makefile.depend | 0 .../pseudo/{ => userland}/include/Makefile | 0 .../{ => userland}/include/Makefile.depend | 0 .../pseudo/{ => userland}/kerberos5/Makefile | 0 .../{ => userland}/kerberos5/Makefile.depend | 0 targets/pseudo/{ => userland}/lib/Makefile | 0 .../pseudo/{ => userland}/lib/Makefile.depend | 0 .../pseudo/{ => userland}/libexec/Makefile | 0 .../{ => userland}/libexec/Makefile.depend | 0 targets/pseudo/{ => userland}/misc/Makefile | 0 .../{ => userland}/misc/Makefile.depend | 0 .../pseudo/{sbin => userland/secure}/Makefile | 0 .../{ => userland}/secure/Makefile.depend | 0 .../{secure => userland/share}/Makefile | 0 .../{ => userland}/share/Makefile.depend | 0 targets/pseudo/usr.bin/Makefile | 3 - targets/pseudo/usr.bin/Makefile.depend | 260 ------ targets/pseudo/usr.sbin/Makefile | 3 - targets/pseudo/usr.sbin/Makefile.depend | 315 ------- 29 files changed, 771 insertions(+), 773 deletions(-) delete mode 100644 targets/pseudo/bin/Makefile.depend delete mode 100644 targets/pseudo/sbin/Makefile.depend delete mode 100644 targets/pseudo/share/Makefile rename targets/pseudo/{bin/Makefile => userland/Makefile.inc} (100%) rename targets/pseudo/{ => userland}/cddl/Makefile (100%) rename targets/pseudo/{ => userland}/cddl/Makefile.depend (100%) rename targets/pseudo/{ => userland}/games/Makefile (100%) rename targets/pseudo/{ => userland}/games/Makefile.depend (100%) rename targets/pseudo/{ => userland}/gnu/Makefile (100%) rename targets/pseudo/{ => userland}/gnu/Makefile.depend (100%) rename targets/pseudo/{ => userland}/include/Makefile (100%) rename targets/pseudo/{ => userland}/include/Makefile.depend (100%) rename targets/pseudo/{ => userland}/kerberos5/Makefile (100%) rename targets/pseudo/{ => userland}/kerberos5/Makefile.depend (100%) rename targets/pseudo/{ => userland}/lib/Makefile (100%) rename targets/pseudo/{ => userland}/lib/Makefile.depend (100%) rename targets/pseudo/{ => userland}/libexec/Makefile (100%) rename targets/pseudo/{ => userland}/libexec/Makefile.depend (100%) rename targets/pseudo/{ => userland}/misc/Makefile (100%) rename targets/pseudo/{ => userland}/misc/Makefile.depend (100%) rename targets/pseudo/{sbin => userland/secure}/Makefile (100%) rename targets/pseudo/{ => userland}/secure/Makefile.depend (100%) rename targets/pseudo/{secure => userland/share}/Makefile (100%) rename targets/pseudo/{ => userland}/share/Makefile.depend (100%) delete mode 100644 targets/pseudo/usr.bin/Makefile delete mode 100644 targets/pseudo/usr.bin/Makefile.depend delete mode 100644 targets/pseudo/usr.sbin/Makefile delete mode 100644 targets/pseudo/usr.sbin/Makefile.depend diff --git a/targets/pseudo/bin/Makefile.depend b/targets/pseudo/bin/Makefile.depend deleted file mode 100644 index 6bd567f3155b..000000000000 --- a/targets/pseudo/bin/Makefile.depend +++ /dev/null @@ -1,49 +0,0 @@ -# $FreeBSD$ - -# This file is not autogenerated - take care! - -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - -DIRDEPS = \ - bin/cat \ - bin/chflags \ - bin/chio \ - bin/chmod \ - bin/cp \ - bin/csh \ - bin/date \ - bin/dd \ - bin/df \ - bin/domainname \ - bin/echo \ - bin/ed \ - bin/expr \ - bin/freebsd-version \ - bin/getfacl \ - bin/hostname \ - bin/kenv \ - bin/kill \ - bin/ln \ - bin/ls \ - bin/mkdir \ - bin/mv \ - bin/pax \ - bin/pkill \ - bin/ps \ - bin/pwait \ - bin/pwd \ - bin/rcp \ - bin/realpath \ - bin/rm \ - bin/rmail \ - bin/rmdir \ - bin/setfacl \ - bin/sh \ - bin/sleep \ - bin/stty \ - bin/sync \ - bin/test \ - bin/uuidgen \ - - -.include diff --git a/targets/pseudo/sbin/Makefile.depend b/targets/pseudo/sbin/Makefile.depend deleted file mode 100644 index b2ee99f2fec3..000000000000 --- a/targets/pseudo/sbin/Makefile.depend +++ /dev/null @@ -1,126 +0,0 @@ -# $FreeBSD$ - -# This file is not autogenerated - take care! - -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - -DIRDEPS = \ - sbin/adjkerntz \ - sbin/atacontrol \ - sbin/atm/atmconfig \ - sbin/badsect \ - sbin/camcontrol \ - sbin/ccdconfig \ - sbin/clri \ - sbin/comcontrol \ - sbin/conscontrol \ - sbin/ddb \ - sbin/devd \ - sbin/devfs \ - sbin/dhclient \ - sbin/dmesg \ - sbin/dump \ - sbin/dumpfs \ - sbin/dumpon \ - sbin/etherswitchcfg \ - sbin/ffsinfo \ - sbin/fsck \ - sbin/fsck_ffs \ - sbin/fsck_msdosfs \ - sbin/fsdb \ - sbin/fsirand \ - sbin/gbde \ - sbin/geom/class/cache \ - sbin/geom/class/concat \ - sbin/geom/class/eli \ - sbin/geom/class/journal \ - sbin/geom/class/label \ - sbin/geom/class/mirror \ - sbin/geom/class/mountver \ - sbin/geom/class/multipath \ - sbin/geom/class/nop \ - sbin/geom/class/part \ - sbin/geom/class/raid \ - sbin/geom/class/raid3 \ - sbin/geom/class/sched \ - sbin/geom/class/shsec \ - sbin/geom/class/stripe \ - sbin/geom/class/virstor \ - sbin/geom/core \ - sbin/ggate/ggatec \ - sbin/ggate/ggated \ - sbin/ggate/ggatel \ - sbin/growfs \ - sbin/gvinum \ - sbin/hastctl \ - sbin/hastd \ - sbin/ifconfig \ - sbin/init \ - sbin/ipf/ipf \ - sbin/ipf/ipfs \ - sbin/ipf/ipfstat \ - sbin/ipf/ipftest \ - sbin/ipf/ipmon \ - sbin/ipf/ipnat \ - sbin/ipf/ippool \ - sbin/ipf/ipresend \ - sbin/ipf/libipf \ - sbin/ipfw \ - sbin/iscontrol \ - sbin/kldconfig \ - sbin/kldload \ - sbin/kldstat \ - sbin/kldunload \ - sbin/ldconfig \ - sbin/md5 \ - sbin/mdconfig \ - sbin/mdmfs \ - sbin/mknod \ - sbin/mksnap_ffs \ - sbin/mount \ - sbin/mount_cd9660 \ - sbin/mount_fusefs \ - sbin/mount_msdosfs \ - sbin/mount_nfs \ - sbin/mount_nullfs \ - sbin/mount_udf \ - sbin/mount_unionfs \ - sbin/natd \ - sbin/newfs \ - sbin/newfs_msdos \ - sbin/nfsiod \ - sbin/nos-tun \ - sbin/pfctl \ - sbin/pflogd \ - sbin/ping \ - sbin/ping6 \ - sbin/quotacheck \ - sbin/rcorder \ - sbin/reboot \ - sbin/recoverdisk \ - sbin/resolvconf \ - sbin/restore \ - sbin/route \ - sbin/routed/rtquery \ - sbin/rtsol \ - sbin/savecore \ - sbin/setkey \ - sbin/shutdown \ - sbin/spppcontrol \ - sbin/swapon \ - sbin/sysctl \ - sbin/tunefs \ - sbin/umount \ - - -DIRDEPS.amd64= sbin/bsdlabel sbin/fdisk sbin/nvmecontrol -DIRDEPS.arm= sbin/bsdlabel sbin/fdisk -DIRDEPS.i386= sbin/bsdlabel sbin/fdisk sbin/nvmecontrol sbin/sconfig -DIRDEPS.ia64= sbin/mca -DIRDEPS.mips= sbin/bsdlabel sbin/fdisk -DIRDEPS.pc98= sbin/bsdlabel sbin/fdisk_pc98 sbin/sconfig -DIRDEPS.sparc64= sbin/bsdlabel sbin/sunlabel - -DIRDEPS+= ${DIRDEPS.${MACHINE}:U} - -.include diff --git a/targets/pseudo/share/Makefile b/targets/pseudo/share/Makefile deleted file mode 100644 index 265f86d1ed55..000000000000 --- a/targets/pseudo/share/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -# $FreeBSD$ - -.include "../Makefile.inc" diff --git a/targets/pseudo/userland/Makefile.depend b/targets/pseudo/userland/Makefile.depend index 2d248e1822ff..a2b5f445a478 100644 --- a/targets/pseudo/userland/Makefile.depend +++ b/targets/pseudo/userland/Makefile.depend @@ -4,20 +4,777 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DEP_MACHINE := ${.PARSEFILE:E} - DIRDEPS = \ - targets/pseudo/bin \ - targets/pseudo/cddl \ - targets/pseudo/games \ - targets/pseudo/gnu \ - targets/pseudo/include \ - targets/pseudo/kerberos5 \ - targets/pseudo/libexec \ - targets/pseudo/sbin \ - targets/pseudo/secure \ - targets/pseudo/share \ - targets/pseudo/usr.bin \ - targets/pseudo/usr.sbin \ + bin/cat \ + bin/chflags \ + bin/chio \ + bin/chmod \ + bin/cp \ + bin/csh \ + bin/date \ + bin/dd \ + bin/df \ + bin/domainname \ + bin/echo \ + bin/ed \ + bin/expr \ + bin/freebsd-version \ + bin/getfacl \ + bin/hostname \ + bin/kenv \ + bin/kill \ + bin/ln \ + bin/ls \ + bin/mkdir \ + bin/mv \ + bin/pax \ + bin/pkill \ + bin/ps \ + bin/pwait \ + bin/pwd \ + bin/rcp \ + bin/realpath \ + bin/rm \ + bin/rmail \ + bin/rmdir \ + bin/setfacl \ + bin/sh \ + bin/sleep \ + bin/stty \ + bin/sync \ + bin/test \ + bin/uuidgen \ + sbin/adjkerntz \ + sbin/atacontrol \ + sbin/atm/atmconfig \ + sbin/badsect \ + sbin/camcontrol \ + sbin/ccdconfig \ + sbin/clri \ + sbin/comcontrol \ + sbin/conscontrol \ + sbin/ddb \ + sbin/devd \ + sbin/devfs \ + sbin/dhclient \ + sbin/dmesg \ + sbin/dump \ + sbin/dumpfs \ + sbin/dumpon \ + sbin/etherswitchcfg \ + sbin/ffsinfo \ + sbin/fsck \ + sbin/fsck_ffs \ + sbin/fsck_msdosfs \ + sbin/fsdb \ + sbin/fsirand \ + sbin/gbde \ + sbin/geom/class/cache \ + sbin/geom/class/concat \ + sbin/geom/class/eli \ + sbin/geom/class/journal \ + sbin/geom/class/label \ + sbin/geom/class/mirror \ + sbin/geom/class/mountver \ + sbin/geom/class/multipath \ + sbin/geom/class/nop \ + sbin/geom/class/part \ + sbin/geom/class/raid \ + sbin/geom/class/raid3 \ + sbin/geom/class/sched \ + sbin/geom/class/shsec \ + sbin/geom/class/stripe \ + sbin/geom/class/virstor \ + sbin/geom/core \ + sbin/ggate/ggatec \ + sbin/ggate/ggated \ + sbin/ggate/ggatel \ + sbin/growfs \ + sbin/gvinum \ + sbin/hastctl \ + sbin/hastd \ + sbin/ifconfig \ + sbin/init \ + sbin/ipf/ipf \ + sbin/ipf/ipfs \ + sbin/ipf/ipfstat \ + sbin/ipf/ipftest \ + sbin/ipf/ipmon \ + sbin/ipf/ipnat \ + sbin/ipf/ippool \ + sbin/ipf/ipresend \ + sbin/ipf/libipf \ + sbin/ipfw \ + sbin/iscontrol \ + sbin/kldconfig \ + sbin/kldload \ + sbin/kldstat \ + sbin/kldunload \ + sbin/ldconfig \ + sbin/md5 \ + sbin/mdconfig \ + sbin/mdmfs \ + sbin/mknod \ + sbin/mksnap_ffs \ + sbin/mount \ + sbin/mount_cd9660 \ + sbin/mount_fusefs \ + sbin/mount_msdosfs \ + sbin/mount_nfs \ + sbin/mount_nullfs \ + sbin/mount_udf \ + sbin/mount_unionfs \ + sbin/natd \ + sbin/newfs \ + sbin/newfs_msdos \ + sbin/nfsiod \ + sbin/nos-tun \ + sbin/pfctl \ + sbin/pflogd \ + sbin/ping \ + sbin/ping6 \ + sbin/quotacheck \ + sbin/rcorder \ + sbin/reboot \ + sbin/recoverdisk \ + sbin/resolvconf \ + sbin/restore \ + sbin/route \ + sbin/routed/rtquery \ + sbin/rtsol \ + sbin/savecore \ + sbin/setkey \ + sbin/shutdown \ + sbin/spppcontrol \ + sbin/swapon \ + sbin/sysctl \ + sbin/tunefs \ + sbin/umount \ + usr.bin/alias \ + usr.bin/apply \ + usr.bin/ar \ + usr.bin/asa \ + usr.bin/at \ + usr.bin/atf/atf-config \ + usr.bin/atf/atf-report \ + usr.bin/atf/atf-run \ + usr.bin/atf/atf-version \ + usr.bin/atm/sscop \ + usr.bin/awk \ + usr.bin/banner \ + usr.bin/basename \ + usr.bin/bc \ + usr.bin/biff \ + usr.bin/bluetooth/bthost \ + usr.bin/bluetooth/btsockstat \ + usr.bin/bluetooth/rfcomm_sppd \ + usr.bin/bmake \ + usr.bin/brandelf \ + usr.bin/bsdiff/bsdiff \ + usr.bin/bsdiff/bspatch \ + usr.bin/bzip2 \ + usr.bin/bzip2recover \ + usr.bin/c89 \ + usr.bin/c99 \ + usr.bin/calendar \ + usr.bin/cap_mkdb \ + usr.bin/catman \ + usr.bin/chat \ + usr.bin/checknr \ + usr.bin/chkey \ + usr.bin/chpass \ + usr.bin/cksum \ + usr.bin/cmp \ + usr.bin/col \ + usr.bin/colcrt \ + usr.bin/colldef \ + usr.bin/colrm \ + usr.bin/column \ + usr.bin/comm \ + usr.bin/compile_et \ + usr.bin/compress \ + usr.bin/cpio \ + usr.bin/cpuset \ + usr.bin/csplit \ + usr.bin/csup \ + usr.bin/ctags \ + usr.bin/ctlstat \ + usr.bin/cut \ + usr.bin/dc \ + usr.bin/dig \ + usr.bin/dirname \ + usr.bin/du \ + usr.bin/ee \ + usr.bin/elf2aout \ + usr.bin/elfdump \ + usr.bin/enigma \ + usr.bin/env \ + usr.bin/expand \ + usr.bin/false \ + usr.bin/fetch \ + usr.bin/file \ + usr.bin/file2c \ + usr.bin/find \ + usr.bin/finger \ + usr.bin/fmt \ + usr.bin/fold \ + usr.bin/from \ + usr.bin/fstat \ + usr.bin/fsync \ + usr.bin/ftp \ + usr.bin/gcore \ + usr.bin/gencat \ + usr.bin/getconf \ + usr.bin/getent \ + usr.bin/getopt \ + usr.bin/gprof \ + usr.bin/grep \ + usr.bin/gzip \ + usr.bin/head \ + usr.bin/hexdump \ + usr.bin/host \ + usr.bin/id \ + usr.bin/indent \ + usr.bin/ipcrm \ + usr.bin/ipcs \ + usr.bin/join \ + usr.bin/jot \ + usr.bin/kdump \ + usr.bin/keylogin \ + usr.bin/keylogout \ + usr.bin/killall \ + usr.bin/ktrace \ + usr.bin/ktrdump \ + usr.bin/lam \ + usr.bin/last \ + usr.bin/lastcomm \ + usr.bin/ldd \ + usr.bin/leave \ + usr.bin/less \ + usr.bin/lessecho \ + usr.bin/lesskey \ + usr.bin/lex/lib \ + usr.bin/limits \ + usr.bin/locale \ + usr.bin/locate/bigram \ + usr.bin/locate/code \ + usr.bin/locate/locate \ + usr.bin/lock \ + usr.bin/lockf \ + usr.bin/logger \ + usr.bin/login \ + usr.bin/logins \ + usr.bin/logname \ + usr.bin/look \ + usr.bin/lorder \ + usr.bin/lsvfs \ + usr.bin/lzmainfo \ + usr.bin/m4 \ + usr.bin/mail \ + usr.bin/makewhatis \ + usr.bin/man \ + usr.bin/mandoc \ + usr.bin/mesg \ + usr.bin/minigzip \ + usr.bin/ministat \ + usr.bin/mkdep \ + usr.bin/mkfifo \ + usr.bin/mklocale \ + usr.bin/mkstr \ + usr.bin/mktemp \ + usr.bin/mkulzma \ + usr.bin/mkuzip \ + usr.bin/msgs \ + usr.bin/mt \ + usr.bin/nc \ + usr.bin/ncal \ + usr.bin/netstat \ + usr.bin/newgrp \ + usr.bin/newkey \ + usr.bin/nfsstat \ + usr.bin/nice \ + usr.bin/nl \ + usr.bin/nohup \ + usr.bin/nslookup \ + usr.bin/nsupdate \ + usr.bin/opieinfo \ + usr.bin/opiekey \ + usr.bin/opiepasswd \ + usr.bin/pagesize \ + usr.bin/passwd \ + usr.bin/paste \ + usr.bin/pathchk \ + usr.bin/perror \ + usr.bin/pr \ + usr.bin/printenv \ + usr.bin/printf \ + usr.bin/procstat \ + usr.bin/quota \ + usr.bin/rctl \ + usr.bin/renice \ + usr.bin/rev \ + usr.bin/revoke \ + usr.bin/rlogin \ + usr.bin/rpcgen \ + usr.bin/rpcinfo \ + usr.bin/rs \ + usr.bin/rsh \ + usr.bin/rup \ + usr.bin/ruptime \ + usr.bin/rusers \ + usr.bin/rwall \ + usr.bin/rwho \ + usr.bin/script \ + usr.bin/sed \ + usr.bin/seq \ + usr.bin/shar \ + usr.bin/showmount \ + usr.bin/sockstat \ + usr.bin/sort \ + usr.bin/split \ + usr.bin/ssh-copy-id \ + usr.bin/stat \ + usr.bin/stdbuf \ + usr.bin/su \ + usr.bin/systat \ + usr.bin/tabs \ + usr.bin/tail \ + usr.bin/talk \ + usr.bin/tar \ + usr.bin/tcopy \ + usr.bin/tee \ + usr.bin/telnet \ + usr.bin/tftp \ + usr.bin/time \ + usr.bin/timeout \ + usr.bin/tip/tip \ + usr.bin/top \ + usr.bin/touch \ + usr.bin/tput \ + usr.bin/tr \ + usr.bin/true \ + usr.bin/truncate \ + usr.bin/truss \ + usr.bin/tset \ + usr.bin/tsort \ + usr.bin/tty \ + usr.bin/ul \ + usr.bin/uname \ + usr.bin/unexpand \ + usr.bin/unifdef \ + usr.bin/uniq \ + usr.bin/units \ + usr.bin/unvis \ + usr.bin/unzip \ + usr.bin/usbhidaction \ + usr.bin/usbhidctl \ + usr.bin/users \ + usr.bin/uudecode \ + usr.bin/uuencode \ + usr.bin/vacation \ + usr.bin/vgrind \ + usr.bin/vi \ + usr.bin/vis \ + usr.bin/vmstat \ + usr.bin/vtfontcvt \ + usr.bin/w \ + usr.bin/wall \ + usr.bin/wc \ + usr.bin/what \ + usr.bin/whereis \ + usr.bin/which \ + usr.bin/who \ + usr.bin/whois \ + usr.bin/write \ + usr.bin/xargs \ + usr.bin/xinstall \ + usr.bin/xlint/lint1 \ + usr.bin/xlint/lint2 \ + usr.bin/xlint/xlint \ + usr.bin/xlint/llib \ + usr.bin/xstr \ + usr.bin/xz \ + usr.bin/xzdec \ + usr.bin/yacc \ + usr.bin/yes \ + usr.bin/ypcat \ + usr.bin/ypmatch \ + usr.bin/ypwhich \ + usr.sbin/IPXrouted \ + usr.sbin/ac \ + usr.sbin/accton \ + usr.sbin/adduser \ + usr.sbin/amd/include \ + usr.sbin/amd/libamu \ + usr.sbin/amd/amd \ + usr.sbin/amd/amq \ + usr.sbin/amd/doc \ + usr.sbin/amd/fixmount \ + usr.sbin/amd/fsinfo \ + usr.sbin/amd/hlfsd \ + usr.sbin/amd/mk-amd-map \ + usr.sbin/amd/pawd \ + usr.sbin/amd/scripts \ + usr.sbin/amd/wire-test \ + usr.sbin/ancontrol \ + usr.sbin/apm \ + usr.sbin/arp \ + usr.sbin/arpaname \ + usr.sbin/audit \ + usr.sbin/auditd \ + usr.sbin/auditreduce \ + usr.sbin/authpf \ + usr.sbin/bluetooth/ath3kfw \ + usr.sbin/bluetooth/bcmfw \ + usr.sbin/bluetooth/bt3cfw \ + usr.sbin/bluetooth/bthidcontrol \ + usr.sbin/bluetooth/bthidd \ + usr.sbin/bluetooth/btpand \ + usr.sbin/bluetooth/hccontrol \ + usr.sbin/bluetooth/hcsecd \ + usr.sbin/bluetooth/hcseriald \ + usr.sbin/bluetooth/l2control \ + usr.sbin/bluetooth/l2ping \ + usr.sbin/bluetooth/rfcomm_pppd \ + usr.sbin/bluetooth/sdpcontrol \ + usr.sbin/bluetooth/sdpd \ + usr.sbin/bootparamd/bootparamd \ + usr.sbin/bootparamd/callbootd \ + usr.sbin/bsdinstall/distextract \ + usr.sbin/bsdinstall/distfetch \ + usr.sbin/bsdinstall/partedit \ + usr.sbin/bsdinstall/scripts \ + usr.sbin/bsnmpd/gensnmptree \ + usr.sbin/bsnmpd/bsnmpd \ + usr.sbin/bsnmpd/modules/snmp_atm \ + usr.sbin/bsnmpd/modules/snmp_bridge \ + usr.sbin/bsnmpd/modules/snmp_hostres \ + usr.sbin/bsnmpd/modules/snmp_lm75 \ + usr.sbin/bsnmpd/modules/snmp_mibII \ + usr.sbin/bsnmpd/modules/snmp_pf \ + usr.sbin/bsnmpd/modules/snmp_target \ + usr.sbin/bsnmpd/modules/snmp_usm \ + usr.sbin/bsnmpd/modules/snmp_vacm \ + usr.sbin/bsnmpd/modules/snmp_wlan \ + usr.sbin/bsnmpd/modules/snmp_netgraph \ + usr.sbin/bsnmpd/tools/libbsnmptools \ + usr.sbin/bsnmpd/tools/bsnmptools \ + usr.sbin/burncd \ + usr.sbin/cdcontrol \ + usr.sbin/chkgrp \ + usr.sbin/chown \ + usr.sbin/chroot \ + usr.sbin/ckdist \ + usr.sbin/clear_locks \ + usr.sbin/config \ + usr.sbin/crashinfo \ + usr.sbin/cron/lib \ + usr.sbin/cron/cron \ + usr.sbin/cron/crontab \ + usr.sbin/crunch/crunchgen \ + usr.sbin/crunch/crunchide \ + usr.sbin/ctladm \ + usr.sbin/ctm/ctm \ + usr.sbin/ctm/ctm_rmail \ + usr.sbin/ctm/ctm_smail \ + usr.sbin/ctm/ctm_dequeue \ + usr.sbin/daemon \ + usr.sbin/dconschat \ + usr.sbin/ddns-confgen \ + usr.sbin/devinfo \ + usr.sbin/digictl \ + usr.sbin/diskinfo \ + usr.sbin/dnssec-dsfromkey \ + usr.sbin/dnssec-keyfromlabel \ + usr.sbin/dnssec-keygen \ + usr.sbin/dnssec-revoke \ + usr.sbin/dnssec-settime \ + usr.sbin/dnssec-signzone \ + usr.sbin/dumpcis \ + usr.sbin/editmap \ + usr.sbin/edquota \ + usr.sbin/etcupdate \ + usr.sbin/extattr \ + usr.sbin/extattrctl \ + usr.sbin/fdcontrol \ + usr.sbin/fdformat \ + usr.sbin/fdread \ + usr.sbin/fdwrite \ + usr.sbin/fifolog/lib \ + usr.sbin/fifolog/fifolog_create \ + usr.sbin/fifolog/fifolog_writer \ + usr.sbin/fifolog/fifolog_reader \ + usr.sbin/flowctl \ + usr.sbin/freebsd-update \ + usr.sbin/fwcontrol \ + usr.sbin/genrandom \ + usr.sbin/getfmac \ + usr.sbin/getpmac \ + usr.sbin/gpioctl \ + usr.sbin/gssd \ + usr.sbin/gstat \ + usr.sbin/i2c \ + usr.sbin/ifmcstat \ + usr.sbin/inetd \ + usr.sbin/iostat \ + usr.sbin/ip6addrctl \ + usr.sbin/ipfwpcap \ + usr.sbin/isc-hmac-fixup \ + usr.sbin/isfctl \ + usr.sbin/jail \ + usr.sbin/jexec \ + usr.sbin/jls \ + usr.sbin/kbdcontrol \ + usr.sbin/kbdmap \ + usr.sbin/keyserv \ + usr.sbin/kldxref \ + usr.sbin/lastlogin \ + usr.sbin/lmcconfig \ + usr.sbin/lpr/common_source \ + usr.sbin/lpr/chkprintcap \ + usr.sbin/lpr/lp \ + usr.sbin/lpr/lpc \ + usr.sbin/lpr/lpd \ + usr.sbin/lpr/lpq \ + usr.sbin/lpr/lpr \ + usr.sbin/lpr/lprm \ + usr.sbin/lpr/lptest \ + usr.sbin/lpr/pac \ + usr.sbin/lpr/filters \ + usr.sbin/lpr/filters.ru/koi2alt \ + usr.sbin/lpr/filters.ru/koi2855 \ + usr.sbin/mailstats \ + usr.sbin/mailwrapper \ + usr.sbin/makefs \ + usr.sbin/makemap \ + usr.sbin/manctl \ + usr.sbin/manctl \ + usr.sbin/memcontrol \ + usr.sbin/mergemaster \ + usr.sbin/mfiutil \ + usr.sbin/mixer \ + usr.sbin/mld6query \ + usr.sbin/mlxcontrol \ + usr.sbin/mountd \ + usr.sbin/moused \ + usr.sbin/mptutil \ + usr.sbin/mtest \ + usr.sbin/mtree \ + usr.sbin/named \ + usr.sbin/named-checkconf \ + usr.sbin/named-checkzone \ + usr.sbin/named-journalprint \ + usr.sbin/ndp \ + usr.sbin/newsyslog \ + usr.sbin/nfscbd \ + usr.sbin/nfsd \ + usr.sbin/nfsdumpstate \ + usr.sbin/nfsrevoke \ + usr.sbin/nfsuserd \ + usr.sbin/ngctl \ + usr.sbin/nghook \ + usr.sbin/nologin \ + usr.sbin/nscd \ + usr.sbin/nsec3hash \ + usr.sbin/ntp/libopts \ + usr.sbin/ntp/libntp \ + usr.sbin/ntp/libparse \ + usr.sbin/ntp/ntpd \ + usr.sbin/ntp/ntpdc \ + usr.sbin/ntp/ntpq \ + usr.sbin/ntp/ntpdate \ + usr.sbin/ntp/ntptime \ + usr.sbin/ntp/ntp-keygen \ + usr.sbin/ntp/sntp \ + usr.sbin/ntp/doc \ + usr.sbin/pc-sysinstall/backend \ + usr.sbin/pc-sysinstall/backend-partmanager \ + usr.sbin/pc-sysinstall/backend-query \ + usr.sbin/pc-sysinstall/conf \ + usr.sbin/pc-sysinstall/doc \ + usr.sbin/pc-sysinstall/examples \ + usr.sbin/pc-sysinstall/pc-sysinstall \ + usr.sbin/pciconf \ + usr.sbin/periodic \ + usr.sbin/pkg \ + usr.sbin/pkg_install/lib \ + usr.sbin/pkg_install/add \ + usr.sbin/pkg_install/create \ + usr.sbin/pkg_install/delete \ + usr.sbin/pkg_install/info \ + usr.sbin/pkg_install/updating \ + usr.sbin/pkg_install/version \ + usr.sbin/pmcannotate \ + usr.sbin/pmccontrol \ + usr.sbin/pmcstat \ + usr.sbin/portsnap/portsnap \ + usr.sbin/portsnap/make_index \ + usr.sbin/portsnap/phttpget \ + usr.sbin/powerd \ + usr.sbin/ppp \ + usr.sbin/pppctl \ + usr.sbin/praliases \ + usr.sbin/praudit \ + usr.sbin/procctl \ + usr.sbin/pstat \ + usr.sbin/pw \ + usr.sbin/pwd_mkdb \ + usr.sbin/quot \ + usr.sbin/quotaon \ + usr.sbin/rarpd \ + usr.sbin/repquota \ + usr.sbin/rip6query \ + usr.sbin/rmt \ + usr.sbin/rndc \ + usr.sbin/rndc-confgen \ + usr.sbin/route6d \ + usr.sbin/rpc.lockd \ + usr.sbin/rpc.statd \ + usr.sbin/rpc.umntall \ + usr.sbin/rpc.yppasswdd \ + usr.sbin/rpc.ypupdated \ + usr.sbin/rpc.ypxfrd \ + usr.sbin/rpcbind \ + usr.sbin/rrenumd \ + usr.sbin/rtadvctl \ + usr.sbin/rtadvd \ + usr.sbin/rtprio \ + usr.sbin/rtsold \ + usr.sbin/rwhod \ + usr.sbin/sa \ + usr.sbin/sendmail \ + usr.sbin/service \ + usr.sbin/services_mkdb \ + usr.sbin/setfib \ + usr.sbin/setfmac \ + usr.sbin/setpmac \ + usr.sbin/smbmsg \ + usr.sbin/snapinfo \ + usr.sbin/spray \ + usr.sbin/syslogd \ + usr.sbin/tcpdchk \ + usr.sbin/tcpdmatch \ + usr.sbin/tcpdrop \ + usr.sbin/tcpdump/tcpdump \ + usr.sbin/timed/timed \ + usr.sbin/timed/timedc \ + usr.sbin/traceroute \ + usr.sbin/traceroute6 \ + usr.sbin/trpt \ + usr.sbin/tzsetup \ + usr.sbin/uathload \ + usr.sbin/ugidfw \ + usr.sbin/uhsoctl \ + usr.sbin/usbconfig \ + usr.sbin/usbdump \ + usr.sbin/utx \ + usr.sbin/vidcontrol \ + usr.sbin/vipw \ + usr.sbin/wake \ + usr.sbin/watch \ + usr.sbin/watchdogd \ + usr.sbin/wlandebug \ + usr.sbin/wpa/wpa_supplicant \ + usr.sbin/wpa/wpa_cli \ + usr.sbin/wpa/wpa_passphrase \ + usr.sbin/wpa/hostapd \ + usr.sbin/wpa/hostapd_cli \ + usr.sbin/wpa/ndis_events \ + usr.sbin/yp_mkdb \ + usr.sbin/ypbind \ + usr.sbin/yppoll \ + usr.sbin/yppush \ + usr.sbin/ypserv \ + usr.sbin/ypset \ + usr.sbin/zic/zic \ + usr.sbin/zic/zdump \ + ${DEP_RELDIR}/cddl \ + ${DEP_RELDIR}/games \ + ${DEP_RELDIR}/gnu \ + ${DEP_RELDIR}/include \ + ${DEP_RELDIR}/kerberos5 \ + ${DEP_RELDIR}/libexec \ + ${DEP_RELDIR}/secure \ + ${DEP_RELDIR}/share \ + +DIRDEPS.amd64= \ + sbin/bsdlabel \ + sbin/fdisk \ + sbin/nvmecontrol \ + usr.sbin/acpi/acpiconf \ + usr.sbin/acpi/acpidb \ + usr.sbin/acpi/acpidump \ + usr.sbin/acpi/iasl \ + usr.sbin/apm \ + usr.sbin/asf \ + usr.sbin/boot0cfg \ + usr.sbin/btxld \ + usr.sbin/cpucontrol \ + usr.sbin/kgmon \ + usr.sbin/lptcontrol \ + usr.sbin/mptable \ + usr.sbin/ndiscvt \ + usr.sbin/sicontrol \ + usr.sbin/spkrtest \ + usr.sbin/sade \ + usr.sbin/zzz + +DIRDEPS.arm= \ + sbin/bsdlabel \ + sbin/fdisk \ + usr.sbin/ofwdump \ + usr.sbin/kgmon + +DIRDEPS.i386= \ + sbin/bsdlabel \ + sbin/fdisk \ + sbin/nvmecontrol \ + sbin/sconfig \ + usr.sbin/apm \ + usr.sbin/apmd \ + usr.sbin/asf \ + usr.sbin/btxld \ + usr.sbin/cpucontrol \ + usr.sbin/kgmon \ + usr.sbin/kgzip \ + usr.sbin/lptcontrol \ + usr.sbin/mptable \ + usr.sbin/ndiscvt \ + usr.sbin/pnpinfo \ + usr.sbin/sade \ + usr.sbin/sicontrol \ + usr.sbin/spkrtest \ + usr.sbin/zzz \ + usr.sbin/acpi \ + usr.sbin/boot0cfg \ + usr.sbin/wlconfig + +DIRDEPS.ia64= \ + sbin/mca \ + usr.sbin/acpi \ + usr.sbin/kgmon \ + usr.sbin/zzz + +DIRDEPS.mips= \ + sbin/bsdlabel \ + sbin/fdisk + +DIRDEPS.pc98= \ + sbin/bsdlabel \ + sbin/fdisk_pc98 \ + sbin/sconfig + +DIRDEPS.sparc64= \ + sbin/bsdlabel \ + sbin/sunlabel \ + usr.sbin/eeprom \ + usr.sbin/ofwdump \ + usr.sbin/sade + +DIRDEPS.powerpc= \ + usr.sbin/nvram \ + usr.sbin/ofwdump + +DIRDEPS+= ${DIRDEPS.${MACHINE}:U} .include diff --git a/targets/pseudo/bin/Makefile b/targets/pseudo/userland/Makefile.inc similarity index 100% rename from targets/pseudo/bin/Makefile rename to targets/pseudo/userland/Makefile.inc diff --git a/targets/pseudo/cddl/Makefile b/targets/pseudo/userland/cddl/Makefile similarity index 100% rename from targets/pseudo/cddl/Makefile rename to targets/pseudo/userland/cddl/Makefile diff --git a/targets/pseudo/cddl/Makefile.depend b/targets/pseudo/userland/cddl/Makefile.depend similarity index 100% rename from targets/pseudo/cddl/Makefile.depend rename to targets/pseudo/userland/cddl/Makefile.depend diff --git a/targets/pseudo/games/Makefile b/targets/pseudo/userland/games/Makefile similarity index 100% rename from targets/pseudo/games/Makefile rename to targets/pseudo/userland/games/Makefile diff --git a/targets/pseudo/games/Makefile.depend b/targets/pseudo/userland/games/Makefile.depend similarity index 100% rename from targets/pseudo/games/Makefile.depend rename to targets/pseudo/userland/games/Makefile.depend diff --git a/targets/pseudo/gnu/Makefile b/targets/pseudo/userland/gnu/Makefile similarity index 100% rename from targets/pseudo/gnu/Makefile rename to targets/pseudo/userland/gnu/Makefile diff --git a/targets/pseudo/gnu/Makefile.depend b/targets/pseudo/userland/gnu/Makefile.depend similarity index 100% rename from targets/pseudo/gnu/Makefile.depend rename to targets/pseudo/userland/gnu/Makefile.depend diff --git a/targets/pseudo/include/Makefile b/targets/pseudo/userland/include/Makefile similarity index 100% rename from targets/pseudo/include/Makefile rename to targets/pseudo/userland/include/Makefile diff --git a/targets/pseudo/include/Makefile.depend b/targets/pseudo/userland/include/Makefile.depend similarity index 100% rename from targets/pseudo/include/Makefile.depend rename to targets/pseudo/userland/include/Makefile.depend diff --git a/targets/pseudo/kerberos5/Makefile b/targets/pseudo/userland/kerberos5/Makefile similarity index 100% rename from targets/pseudo/kerberos5/Makefile rename to targets/pseudo/userland/kerberos5/Makefile diff --git a/targets/pseudo/kerberos5/Makefile.depend b/targets/pseudo/userland/kerberos5/Makefile.depend similarity index 100% rename from targets/pseudo/kerberos5/Makefile.depend rename to targets/pseudo/userland/kerberos5/Makefile.depend diff --git a/targets/pseudo/lib/Makefile b/targets/pseudo/userland/lib/Makefile similarity index 100% rename from targets/pseudo/lib/Makefile rename to targets/pseudo/userland/lib/Makefile diff --git a/targets/pseudo/lib/Makefile.depend b/targets/pseudo/userland/lib/Makefile.depend similarity index 100% rename from targets/pseudo/lib/Makefile.depend rename to targets/pseudo/userland/lib/Makefile.depend diff --git a/targets/pseudo/libexec/Makefile b/targets/pseudo/userland/libexec/Makefile similarity index 100% rename from targets/pseudo/libexec/Makefile rename to targets/pseudo/userland/libexec/Makefile diff --git a/targets/pseudo/libexec/Makefile.depend b/targets/pseudo/userland/libexec/Makefile.depend similarity index 100% rename from targets/pseudo/libexec/Makefile.depend rename to targets/pseudo/userland/libexec/Makefile.depend diff --git a/targets/pseudo/misc/Makefile b/targets/pseudo/userland/misc/Makefile similarity index 100% rename from targets/pseudo/misc/Makefile rename to targets/pseudo/userland/misc/Makefile diff --git a/targets/pseudo/misc/Makefile.depend b/targets/pseudo/userland/misc/Makefile.depend similarity index 100% rename from targets/pseudo/misc/Makefile.depend rename to targets/pseudo/userland/misc/Makefile.depend diff --git a/targets/pseudo/sbin/Makefile b/targets/pseudo/userland/secure/Makefile similarity index 100% rename from targets/pseudo/sbin/Makefile rename to targets/pseudo/userland/secure/Makefile diff --git a/targets/pseudo/secure/Makefile.depend b/targets/pseudo/userland/secure/Makefile.depend similarity index 100% rename from targets/pseudo/secure/Makefile.depend rename to targets/pseudo/userland/secure/Makefile.depend diff --git a/targets/pseudo/secure/Makefile b/targets/pseudo/userland/share/Makefile similarity index 100% rename from targets/pseudo/secure/Makefile rename to targets/pseudo/userland/share/Makefile diff --git a/targets/pseudo/share/Makefile.depend b/targets/pseudo/userland/share/Makefile.depend similarity index 100% rename from targets/pseudo/share/Makefile.depend rename to targets/pseudo/userland/share/Makefile.depend diff --git a/targets/pseudo/usr.bin/Makefile b/targets/pseudo/usr.bin/Makefile deleted file mode 100644 index 265f86d1ed55..000000000000 --- a/targets/pseudo/usr.bin/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -# $FreeBSD$ - -.include "../Makefile.inc" diff --git a/targets/pseudo/usr.bin/Makefile.depend b/targets/pseudo/usr.bin/Makefile.depend deleted file mode 100644 index 2eef3c06374a..000000000000 --- a/targets/pseudo/usr.bin/Makefile.depend +++ /dev/null @@ -1,260 +0,0 @@ -# $FreeBSD$ - -# This file is not autogenerated - take care! - -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - -DIRDEPS = \ - usr.bin/alias \ - usr.bin/apply \ - usr.bin/ar \ - usr.bin/asa \ - usr.bin/at \ - usr.bin/atf/atf-config \ - usr.bin/atf/atf-report \ - usr.bin/atf/atf-run \ - usr.bin/atf/atf-version \ - usr.bin/atm/sscop \ - usr.bin/awk \ - usr.bin/banner \ - usr.bin/basename \ - usr.bin/bc \ - usr.bin/biff \ - usr.bin/bluetooth/bthost \ - usr.bin/bluetooth/btsockstat \ - usr.bin/bluetooth/rfcomm_sppd \ - usr.bin/bmake \ - usr.bin/brandelf \ - usr.bin/bsdiff/bsdiff \ - usr.bin/bsdiff/bspatch \ - usr.bin/bzip2 \ - usr.bin/bzip2recover \ - usr.bin/c89 \ - usr.bin/c99 \ - usr.bin/calendar \ - usr.bin/cap_mkdb \ - usr.bin/catman \ - usr.bin/chat \ - usr.bin/checknr \ - usr.bin/chkey \ - usr.bin/chpass \ - usr.bin/cksum \ - usr.bin/cmp \ - usr.bin/col \ - usr.bin/colcrt \ - usr.bin/colldef \ - usr.bin/colrm \ - usr.bin/column \ - usr.bin/comm \ - usr.bin/compile_et \ - usr.bin/compress \ - usr.bin/cpio \ - usr.bin/cpuset \ - usr.bin/csplit \ - usr.bin/csup \ - usr.bin/ctags \ - usr.bin/ctlstat \ - usr.bin/cut \ - usr.bin/dc \ - usr.bin/dig \ - usr.bin/dirname \ - usr.bin/du \ - usr.bin/ee \ - usr.bin/elf2aout \ - usr.bin/elfdump \ - usr.bin/enigma \ - usr.bin/env \ - usr.bin/expand \ - usr.bin/false \ - usr.bin/fetch \ - usr.bin/file \ - usr.bin/file2c \ - usr.bin/find \ - usr.bin/finger \ - usr.bin/fmt \ - usr.bin/fold \ - usr.bin/from \ - usr.bin/fstat \ - usr.bin/fsync \ - usr.bin/ftp \ - usr.bin/gcore \ - usr.bin/gencat \ - usr.bin/getconf \ - usr.bin/getent \ - usr.bin/getopt \ - usr.bin/gprof \ - usr.bin/grep \ - usr.bin/gzip \ - usr.bin/head \ - usr.bin/hexdump \ - usr.bin/host \ - usr.bin/id \ - usr.bin/indent \ - usr.bin/ipcrm \ - usr.bin/ipcs \ - usr.bin/join \ - usr.bin/jot \ - usr.bin/kdump \ - usr.bin/keylogin \ - usr.bin/keylogout \ - usr.bin/killall \ - usr.bin/ktrace \ - usr.bin/ktrdump \ - usr.bin/lam \ - usr.bin/last \ - usr.bin/lastcomm \ - usr.bin/ldd \ - usr.bin/leave \ - usr.bin/less \ - usr.bin/lessecho \ - usr.bin/lesskey \ - usr.bin/lex/lib \ - usr.bin/limits \ - usr.bin/locale \ - usr.bin/locate/bigram \ - usr.bin/locate/code \ - usr.bin/locate/locate \ - usr.bin/lock \ - usr.bin/lockf \ - usr.bin/logger \ - usr.bin/login \ - usr.bin/logins \ - usr.bin/logname \ - usr.bin/look \ - usr.bin/lorder \ - usr.bin/lsvfs \ - usr.bin/lzmainfo \ - usr.bin/m4 \ - usr.bin/mail \ - usr.bin/makewhatis \ - usr.bin/man \ - usr.bin/mandoc \ - usr.bin/mesg \ - usr.bin/minigzip \ - usr.bin/ministat \ - usr.bin/mkdep \ - usr.bin/mkfifo \ - usr.bin/mklocale \ - usr.bin/mkstr \ - usr.bin/mktemp \ - usr.bin/mkulzma \ - usr.bin/mkuzip \ - usr.bin/msgs \ - usr.bin/mt \ - usr.bin/nc \ - usr.bin/ncal \ - usr.bin/netstat \ - usr.bin/newgrp \ - usr.bin/newkey \ - usr.bin/nfsstat \ - usr.bin/nice \ - usr.bin/nl \ - usr.bin/nohup \ - usr.bin/nslookup \ - usr.bin/nsupdate \ - usr.bin/opieinfo \ - usr.bin/opiekey \ - usr.bin/opiepasswd \ - usr.bin/pagesize \ - usr.bin/passwd \ - usr.bin/paste \ - usr.bin/pathchk \ - usr.bin/perror \ - usr.bin/pr \ - usr.bin/printenv \ - usr.bin/printf \ - usr.bin/procstat \ - usr.bin/quota \ - usr.bin/rctl \ - usr.bin/renice \ - usr.bin/rev \ - usr.bin/revoke \ - usr.bin/rlogin \ - usr.bin/rpcgen \ - usr.bin/rpcinfo \ - usr.bin/rs \ - usr.bin/rsh \ - usr.bin/rup \ - usr.bin/ruptime \ - usr.bin/rusers \ - usr.bin/rwall \ - usr.bin/rwho \ - usr.bin/script \ - usr.bin/sed \ - usr.bin/seq \ - usr.bin/shar \ - usr.bin/showmount \ - usr.bin/sockstat \ - usr.bin/sort \ - usr.bin/split \ - usr.bin/ssh-copy-id \ - usr.bin/stat \ - usr.bin/stdbuf \ - usr.bin/su \ - usr.bin/systat \ - usr.bin/tabs \ - usr.bin/tail \ - usr.bin/talk \ - usr.bin/tar \ - usr.bin/tcopy \ - usr.bin/tee \ - usr.bin/telnet \ - usr.bin/tftp \ - usr.bin/time \ - usr.bin/timeout \ - usr.bin/tip/tip \ - usr.bin/top \ - usr.bin/touch \ - usr.bin/tput \ - usr.bin/tr \ - usr.bin/true \ - usr.bin/truncate \ - usr.bin/truss \ - usr.bin/tset \ - usr.bin/tsort \ - usr.bin/tty \ - usr.bin/ul \ - usr.bin/uname \ - usr.bin/unexpand \ - usr.bin/unifdef \ - usr.bin/uniq \ - usr.bin/units \ - usr.bin/unvis \ - usr.bin/unzip \ - usr.bin/usbhidaction \ - usr.bin/usbhidctl \ - usr.bin/users \ - usr.bin/uudecode \ - usr.bin/uuencode \ - usr.bin/vacation \ - usr.bin/vgrind \ - usr.bin/vi \ - usr.bin/vis \ - usr.bin/vmstat \ - usr.bin/vtfontcvt \ - usr.bin/w \ - usr.bin/wall \ - usr.bin/wc \ - usr.bin/what \ - usr.bin/whereis \ - usr.bin/which \ - usr.bin/who \ - usr.bin/whois \ - usr.bin/write \ - usr.bin/xargs \ - usr.bin/xinstall \ - usr.bin/xlint/lint1 \ - usr.bin/xlint/lint2 \ - usr.bin/xlint/xlint \ - usr.bin/xlint/llib \ - usr.bin/xstr \ - usr.bin/xz \ - usr.bin/xzdec \ - usr.bin/yacc \ - usr.bin/yes \ - usr.bin/ypcat \ - usr.bin/ypmatch \ - usr.bin/ypwhich \ - - -.include diff --git a/targets/pseudo/usr.sbin/Makefile b/targets/pseudo/usr.sbin/Makefile deleted file mode 100644 index 265f86d1ed55..000000000000 --- a/targets/pseudo/usr.sbin/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -# $FreeBSD$ - -.include "../Makefile.inc" diff --git a/targets/pseudo/usr.sbin/Makefile.depend b/targets/pseudo/usr.sbin/Makefile.depend deleted file mode 100644 index 4ba91f321f5b..000000000000 --- a/targets/pseudo/usr.sbin/Makefile.depend +++ /dev/null @@ -1,315 +0,0 @@ -# $FreeBSD$ - -# This file is not autogenerated - take care! - -DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} - -DIRDEPS = \ - usr.sbin/IPXrouted \ - usr.sbin/ac \ - usr.sbin/accton \ - usr.sbin/adduser \ - usr.sbin/amd/include \ - usr.sbin/amd/libamu \ - usr.sbin/amd/amd \ - usr.sbin/amd/amq \ - usr.sbin/amd/doc \ - usr.sbin/amd/fixmount \ - usr.sbin/amd/fsinfo \ - usr.sbin/amd/hlfsd \ - usr.sbin/amd/mk-amd-map \ - usr.sbin/amd/pawd \ - usr.sbin/amd/scripts \ - usr.sbin/amd/wire-test \ - usr.sbin/ancontrol \ - usr.sbin/apm \ - usr.sbin/arp \ - usr.sbin/arpaname \ - usr.sbin/audit \ - usr.sbin/auditd \ - usr.sbin/auditreduce \ - usr.sbin/authpf \ - usr.sbin/bluetooth/ath3kfw \ - usr.sbin/bluetooth/bcmfw \ - usr.sbin/bluetooth/bt3cfw \ - usr.sbin/bluetooth/bthidcontrol \ - usr.sbin/bluetooth/bthidd \ - usr.sbin/bluetooth/btpand \ - usr.sbin/bluetooth/hccontrol \ - usr.sbin/bluetooth/hcsecd \ - usr.sbin/bluetooth/hcseriald \ - usr.sbin/bluetooth/l2control \ - usr.sbin/bluetooth/l2ping \ - usr.sbin/bluetooth/rfcomm_pppd \ - usr.sbin/bluetooth/sdpcontrol \ - usr.sbin/bluetooth/sdpd \ - usr.sbin/bootparamd/bootparamd \ - usr.sbin/bootparamd/callbootd \ - usr.sbin/bsdinstall/distextract \ - usr.sbin/bsdinstall/distfetch \ - usr.sbin/bsdinstall/partedit \ - usr.sbin/bsdinstall/scripts \ - usr.sbin/bsnmpd/gensnmptree \ - usr.sbin/bsnmpd/bsnmpd \ - usr.sbin/bsnmpd/modules/snmp_atm \ - usr.sbin/bsnmpd/modules/snmp_bridge \ - usr.sbin/bsnmpd/modules/snmp_hostres \ - usr.sbin/bsnmpd/modules/snmp_lm75 \ - usr.sbin/bsnmpd/modules/snmp_mibII \ - usr.sbin/bsnmpd/modules/snmp_pf \ - usr.sbin/bsnmpd/modules/snmp_target \ - usr.sbin/bsnmpd/modules/snmp_usm \ - usr.sbin/bsnmpd/modules/snmp_vacm \ - usr.sbin/bsnmpd/modules/snmp_wlan \ - usr.sbin/bsnmpd/modules/snmp_netgraph \ - usr.sbin/bsnmpd/tools/libbsnmptools \ - usr.sbin/bsnmpd/tools/bsnmptools \ - usr.sbin/burncd \ - usr.sbin/cdcontrol \ - usr.sbin/chkgrp \ - usr.sbin/chown \ - usr.sbin/chroot \ - usr.sbin/ckdist \ - usr.sbin/clear_locks \ - usr.sbin/config \ - usr.sbin/crashinfo \ - usr.sbin/cron/lib \ - usr.sbin/cron/cron \ - usr.sbin/cron/crontab \ - usr.sbin/crunch/crunchgen \ - usr.sbin/crunch/crunchide \ - usr.sbin/ctladm \ - usr.sbin/ctm/ctm \ - usr.sbin/ctm/ctm_rmail \ - usr.sbin/ctm/ctm_smail \ - usr.sbin/ctm/ctm_dequeue \ - usr.sbin/daemon \ - usr.sbin/dconschat \ - usr.sbin/ddns-confgen \ - usr.sbin/devinfo \ - usr.sbin/digictl \ - usr.sbin/diskinfo \ - usr.sbin/dnssec-dsfromkey \ - usr.sbin/dnssec-keyfromlabel \ - usr.sbin/dnssec-keygen \ - usr.sbin/dnssec-revoke \ - usr.sbin/dnssec-settime \ - usr.sbin/dnssec-signzone \ - usr.sbin/dumpcis \ - usr.sbin/editmap \ - usr.sbin/edquota \ - usr.sbin/etcupdate \ - usr.sbin/extattr \ - usr.sbin/extattrctl \ - usr.sbin/fdcontrol \ - usr.sbin/fdformat \ - usr.sbin/fdread \ - usr.sbin/fdwrite \ - usr.sbin/fifolog/lib \ - usr.sbin/fifolog/fifolog_create \ - usr.sbin/fifolog/fifolog_writer \ - usr.sbin/fifolog/fifolog_reader \ - usr.sbin/flowctl \ - usr.sbin/freebsd-update \ - usr.sbin/fwcontrol \ - usr.sbin/genrandom \ - usr.sbin/getfmac \ - usr.sbin/getpmac \ - usr.sbin/gpioctl \ - usr.sbin/gssd \ - usr.sbin/gstat \ - usr.sbin/i2c \ - usr.sbin/ifmcstat \ - usr.sbin/inetd \ - usr.sbin/iostat \ - usr.sbin/ip6addrctl \ - usr.sbin/ipfwpcap \ - usr.sbin/isc-hmac-fixup \ - usr.sbin/isfctl \ - usr.sbin/jail \ - usr.sbin/jexec \ - usr.sbin/jls \ - usr.sbin/kbdcontrol \ - usr.sbin/kbdmap \ - usr.sbin/keyserv \ - usr.sbin/kldxref \ - usr.sbin/lastlogin \ - usr.sbin/lmcconfig \ - usr.sbin/lpr/common_source \ - usr.sbin/lpr/chkprintcap \ - usr.sbin/lpr/lp \ - usr.sbin/lpr/lpc \ - usr.sbin/lpr/lpd \ - usr.sbin/lpr/lpq \ - usr.sbin/lpr/lpr \ - usr.sbin/lpr/lprm \ - usr.sbin/lpr/lptest \ - usr.sbin/lpr/pac \ - usr.sbin/lpr/filters \ - usr.sbin/lpr/filters.ru/koi2alt \ - usr.sbin/lpr/filters.ru/koi2855 \ - usr.sbin/mailstats \ - usr.sbin/mailwrapper \ - usr.sbin/makefs \ - usr.sbin/makemap \ - usr.sbin/manctl \ - usr.sbin/manctl \ - usr.sbin/memcontrol \ - usr.sbin/mergemaster \ - usr.sbin/mfiutil \ - usr.sbin/mixer \ - usr.sbin/mld6query \ - usr.sbin/mlxcontrol \ - usr.sbin/mountd \ - usr.sbin/moused \ - usr.sbin/mptutil \ - usr.sbin/mtest \ - usr.sbin/mtree \ - usr.sbin/named \ - usr.sbin/named-checkconf \ - usr.sbin/named-checkzone \ - usr.sbin/named-journalprint \ - usr.sbin/ndp \ - usr.sbin/newsyslog \ - usr.sbin/nfscbd \ - usr.sbin/nfsd \ - usr.sbin/nfsdumpstate \ - usr.sbin/nfsrevoke \ - usr.sbin/nfsuserd \ - usr.sbin/ngctl \ - usr.sbin/nghook \ - usr.sbin/nologin \ - usr.sbin/nscd \ - usr.sbin/nsec3hash \ - usr.sbin/ntp/libopts \ - usr.sbin/ntp/libntp \ - usr.sbin/ntp/libparse \ - usr.sbin/ntp/ntpd \ - usr.sbin/ntp/ntpdc \ - usr.sbin/ntp/ntpq \ - usr.sbin/ntp/ntpdate \ - usr.sbin/ntp/ntptime \ - usr.sbin/ntp/ntp-keygen \ - usr.sbin/ntp/sntp \ - usr.sbin/ntp/doc \ - usr.sbin/pc-sysinstall/backend \ - usr.sbin/pc-sysinstall/backend-partmanager \ - usr.sbin/pc-sysinstall/backend-query \ - usr.sbin/pc-sysinstall/conf \ - usr.sbin/pc-sysinstall/doc \ - usr.sbin/pc-sysinstall/examples \ - usr.sbin/pc-sysinstall/pc-sysinstall \ - usr.sbin/pciconf \ - usr.sbin/periodic \ - usr.sbin/pkg \ - usr.sbin/pkg_install/lib \ - usr.sbin/pkg_install/add \ - usr.sbin/pkg_install/create \ - usr.sbin/pkg_install/delete \ - usr.sbin/pkg_install/info \ - usr.sbin/pkg_install/updating \ - usr.sbin/pkg_install/version \ - usr.sbin/pmcannotate \ - usr.sbin/pmccontrol \ - usr.sbin/pmcstat \ - usr.sbin/portsnap/portsnap \ - usr.sbin/portsnap/make_index \ - usr.sbin/portsnap/phttpget \ - usr.sbin/powerd \ - usr.sbin/ppp \ - usr.sbin/pppctl \ - usr.sbin/praliases \ - usr.sbin/praudit \ - usr.sbin/procctl \ - usr.sbin/pstat \ - usr.sbin/pw \ - usr.sbin/pwd_mkdb \ - usr.sbin/quot \ - usr.sbin/quotaon \ - usr.sbin/rarpd \ - usr.sbin/repquota \ - usr.sbin/rip6query \ - usr.sbin/rmt \ - usr.sbin/rndc \ - usr.sbin/rndc-confgen \ - usr.sbin/route6d \ - usr.sbin/rpc.lockd \ - usr.sbin/rpc.statd \ - usr.sbin/rpc.umntall \ - usr.sbin/rpc.yppasswdd \ - usr.sbin/rpc.ypupdated \ - usr.sbin/rpc.ypxfrd \ - usr.sbin/rpcbind \ - usr.sbin/rrenumd \ - usr.sbin/rtadvctl \ - usr.sbin/rtadvd \ - usr.sbin/rtprio \ - usr.sbin/rtsold \ - usr.sbin/rwhod \ - usr.sbin/sa \ - usr.sbin/sendmail \ - usr.sbin/service \ - usr.sbin/services_mkdb \ - usr.sbin/setfib \ - usr.sbin/setfmac \ - usr.sbin/setpmac \ - usr.sbin/smbmsg \ - usr.sbin/snapinfo \ - usr.sbin/spray \ - usr.sbin/syslogd \ - usr.sbin/tcpdchk \ - usr.sbin/tcpdmatch \ - usr.sbin/tcpdrop \ - usr.sbin/tcpdump/tcpdump \ - usr.sbin/timed/timed \ - usr.sbin/timed/timedc \ - usr.sbin/traceroute \ - usr.sbin/traceroute6 \ - usr.sbin/trpt \ - usr.sbin/tzsetup \ - usr.sbin/uathload \ - usr.sbin/ugidfw \ - usr.sbin/uhsoctl \ - usr.sbin/usbconfig \ - usr.sbin/usbdump \ - usr.sbin/utx \ - usr.sbin/vidcontrol \ - usr.sbin/vipw \ - usr.sbin/wake \ - usr.sbin/watch \ - usr.sbin/watchdogd \ - usr.sbin/wlandebug \ - usr.sbin/wpa/wpa_supplicant \ - usr.sbin/wpa/wpa_cli \ - usr.sbin/wpa/wpa_passphrase \ - usr.sbin/wpa/hostapd \ - usr.sbin/wpa/hostapd_cli \ - usr.sbin/wpa/ndis_events \ - usr.sbin/yp_mkdb \ - usr.sbin/ypbind \ - usr.sbin/yppoll \ - usr.sbin/yppush \ - usr.sbin/ypserv \ - usr.sbin/ypset \ - usr.sbin/zic/zic \ - usr.sbin/zic/zdump \ - - - -DIRDEPS.amd64= usr.sbin/acpi/acpiconf \ - usr.sbin/acpi/acpidb \ - usr.sbin/acpi/acpidump \ - usr.sbin/acpi/iasl \ - usr.sbin/apm usr.sbin/asf usr.sbin/boot0cfg usr.sbin/btxld \ - usr.sbin/cpucontrol usr.sbin/kgmon usr.sbin/lptcontrol \ - usr.sbin/mptable usr.sbin/ndiscvt usr.sbin/sicontrol \ - usr.sbin/spkrtest usr.sbin/sade usr.sbin/zzz -DIRDEPS.arm= usr.sbin/ofwdump usr.sbin/kgmon -DIRDEPS.i386= usr.sbin/apm usr.sbin/apmd usr.sbin/asf usr.sbin/btxld usr.sbin/cpucontrol usr.sbin/kgmon usr.sbin/kgzip usr.sbin/lptcontrol usr.sbin/mptable usr.sbin/ndiscvt usr.sbin/pnpinfo usr.sbin/sade usr.sbin/sicontrol usr.sbin/spkrtest usr.sbin/zzz usr.sbin/acpi usr.sbin/boot0cfg usr.sbin/wlconfig -DIRDEPS.ia64= usr.sbin/acpi usr.sbin/kgmon usr.sbin/zzz -DIRDEPS.powerpc= usr.sbin/nvram usr.sbin/ofwdump -DIRDEPS.sparc64= usr.sbin/eeprom usr.sbin/ofwdump usr.sbin/sade - -DIRDEPS+= ${DIRDEPS.${MACHINE}:U} - -.include