a9ef0b2904
copies of the ftp support routines. Also some cosmetic and minor bug fixes I've been meaning to incorporate for awhile.
18 lines
370 B
Makefile
18 lines
370 B
Makefile
PROG= pkg_delete
|
|
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
|
|
|
|
.include <bsd.prog.mk>
|