summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install/delete/Makefile
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-06-04 07:56:15 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-06-04 07:56:15 +0000
commit167be6f259825b0e88a4cfc7cd9228c9603fc603 (patch)
treec173305ec5afd2f63886e210fa18f7b9c69695b8 /usr.sbin/pkg_install/delete/Makefile
parentc8e3d32207db0af93ff3f660ded6b01fac993998 (diff)
add package tools from FreeBSD
Diffstat (limited to 'usr.sbin/pkg_install/delete/Makefile')
-rw-r--r--usr.sbin/pkg_install/delete/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/usr.sbin/pkg_install/delete/Makefile b/usr.sbin/pkg_install/delete/Makefile
new file mode 100644
index 00000000000..b612621f964
--- /dev/null
+++ b/usr.sbin/pkg_install/delete/Makefile
@@ -0,0 +1,15 @@
+# $OpenBSD: Makefile,v 1.1 1996/06/04 07:56:07 niklas Exp $
+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
+
+SRCS= main.c perform.c
+
+.include <bsd.prog.mk>