freebsd-dev/usr.sbin/pkg_install/info/Makefile
Jordan K. Hubbard a9ef0b2904 Make pkg_install understand and use libftpio instead of its own
copies of the ftp support routines.  Also some cosmetic and minor
bug fixes I've been meaning to incorporate for awhile.
1996-06-20 18:33:55 +00:00

18 lines
375 B
Makefile

PROG= pkg_info
CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib
.if exists(${.CURDIR}/../lib/obj)
LDADD+= -L${.CURDIR}/../lib/obj -linstall
DPADD+= ${.CURDIR}/../lib/obj/libinstall.a
.else
LDADD+= -L${.CURDIR}/../lib -linstall
DPADD+= ${.CURDIR}/../lib/libinstall.a
.endif
LDADD+= -lftpio
DPADD+= ${LIBFTPIO}
SRCS= main.c perform.c show.c
.include <bsd.prog.mk>