1# 2# $FreeBSD$ 3# 4 5.include <bsd.own.mk> 6 7# Certain library entries have hard-coded references to 8# /bin, /sbin, etc, that require those entries to be 9# recompiled for use in /rescue. This Makefile 10# accomplishes that. Note that this is pure build hackery. 11# This library should never be installed, and isn't even linked 12# with in the normal way. (See ../rescue/Makefile for details.) 13 14.PATH: ${.CURDIR}/../../lib/libc/gen \ 15 ${.CURDIR}/../../lib/libc/net \ 16 ${.CURDIR}/../../lib/libc/stdlib \ 17 ${.CURDIR}/../../lib/libutil 18 19LIB= rescue 20INTERNALLIB= # Don't install this library 21SRCS= exec.c getusershell.c login_class.c popen.c rcmdsh.c \ 22 sysctl.c system.c 23 24CFLAGS+= -DRESCUE 25# Flags copied from src/lib/libc and src/lib/libutil 26# libc/db/Makefile.inc 27CFLAGS+= -D__DBINTERFACE_PRIVATE 28# libc/net/Makefile.inc & libutil/Makefile 29CFLAGS+= -DINET6 30# libc/regex/Makefile.inc & libc/regex/grot/Makefile 31CFLAGS+= -DPOSIX_MISTAKE 32# libc/rpc/Makefile.inc 33CFLAGS+= -DBROKEN_DES -DPORTMAP -DDES_BUILTIN 34# libc/Makefile 35.if ${MK_NIS} != "no" 36CFLAGS+= -DYP 37.endif 38.if ${MK_HESIOD} != "no" 39CFLAGS+= -DHESIOD 40.endif 41CFLAGS+= -I${.CURDIR}/../../lib/libc/include 42 43.include <bsd.lib.mk> 44