mirror of
https://github.com/opnsense/src.git
synced 2026-03-15 07:02:32 -04:00
really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current.
17 lines
358 B
Makefile
17 lines
358 B
Makefile
PROG= pkg_delete
|
|
CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib
|
|
|
|
.if exists(${.OBJDIR}/../lib)
|
|
LDADD+= -L${.OBJDIR}/../lib -linstall
|
|
DPADD+= ${.OBJDIR}/../lib/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>
|