153272e388
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.
16 lines
393 B
Makefile
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
|