diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-06-04 07:56:15 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-06-04 07:56:15 +0000 |
commit | 167be6f259825b0e88a4cfc7cd9228c9603fc603 (patch) | |
tree | c173305ec5afd2f63886e210fa18f7b9c69695b8 /usr.sbin/pkg_install/add/Makefile | |
parent | c8e3d32207db0af93ff3f660ded6b01fac993998 (diff) |
add package tools from FreeBSD
Diffstat (limited to 'usr.sbin/pkg_install/add/Makefile')
-rw-r--r-- | usr.sbin/pkg_install/add/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/usr.sbin/pkg_install/add/Makefile b/usr.sbin/pkg_install/add/Makefile new file mode 100644 index 00000000000..6817ca75341 --- /dev/null +++ b/usr.sbin/pkg_install/add/Makefile @@ -0,0 +1,17 @@ +# $OpenBSD: Makefile,v 1.1 1996/06/04 07:56:02 niklas Exp $ +PROG= pkg_add + +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 + + +SRCS= main.c perform.c futil.c extract.c + +.include <bsd.prog.mk> |