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
310 B
Makefile
16 lines
310 B
Makefile
# $NetBSD: Makefile,v 1.2 1997/06/05 12:59:22 agc Exp $
|
|
# Original from FreeBSD, no rcs id.
|
|
|
|
PROG= pkg_add
|
|
|
|
CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib
|
|
|
|
LDADD+= -L${INSTALLOBJDIR} -linstall
|
|
DPADD+= ${INSTALLOBJDIR}/libinstall.a
|
|
|
|
BINDIR= /usr/sbin
|
|
|
|
SRCS= main.c perform.c futil.c extract.c
|
|
|
|
.include <bsd.prog.mk>
|