mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 08:50:22 -05:00
everyone else). Try this: pkg_info ftp://freebsd.org/pub/FreeBSD/packages/all/gmake-3.73.tgz
17 lines
357 B
Makefile
17 lines
357 B
Makefile
PROG= pkg_info
|
|
CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib
|
|
|
|
LDADD+= -lftp
|
|
DPADD+= ${LIBFTP}
|
|
|
|
.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
|
|
|
|
SRCS= main.c perform.c show.c
|
|
|
|
.include <bsd.prog.mk>
|