NetBSD/usr.sbin/pkg_install/Makefile.inc
agc 153272e388 Add NetBSD Ids
Un-munge pkg_install/lib/Makefile which I'd overwritten on libftpio commit.
Make it compile on NetBSD.
Install pkg_* programs in /usr/sbin

XXX agc - Still to do XXX
Cleanup call to mktemp (for a tmp dir) in pkg_install/lib/pen.c
Create ftperr.c in the correct directory.
1997-06-05 12:59:18 +00:00

16 lines
393 B
Makefile

# $NetBSD: Makefile.inc,v 1.2 1997/06/05 12:59:19 agc Exp $
# Original from Freebsd, no rcs id.
# Figure out what to use for libinstall
INSTALLLIBDIR= ${.CURDIR}/../lib
.if exists(${INSTALLLIBDIR}/obj.${MACHINE})
INSTALLOBJDIR= ${INSTALLLIBDIR}/obj.${MACHINE}
.else
.if exists(${INSTALLLIBDIR}/obj)
INSTALLOBJDIR= ${INSTALLLIBDIR}/obj
.else
INSTALLOBJDIR= ${INSTALLLIBDIR}
.endif
.endif