summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pkg_install
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-03-07 08:55:00 +0000
committerbde <bde@FreeBSD.org>1998-03-07 08:55:00 +0000
commit6682846885f7b3347088fca27d9c55c86426311e (patch)
tree2d8dfb6b69578f3b240ed91f714ecc557fb116f9 /usr.sbin/pkg_install
parent1bc27d95394df5d8e70e98c32a02cafeb0930aea (diff)
downloadFreeBSD-src-6682846885f7b3347088fca27d9c55c86426311e.zip
FreeBSD-src-6682846885f7b3347088fca27d9c55c86426311e.tar.gz
Use `foo/bar.a' instead of `-Lfoo -lbar' for linking to static internal
libraries, so that `ld -f' in can create correct dependencies for yet-to-be-built libraries.
Diffstat (limited to 'usr.sbin/pkg_install')
-rw-r--r--usr.sbin/pkg_install/Makefile.inc8
-rw-r--r--usr.sbin/pkg_install/add/Makefile14
-rw-r--r--usr.sbin/pkg_install/create/Makefile14
-rw-r--r--usr.sbin/pkg_install/delete/Makefile14
-rw-r--r--usr.sbin/pkg_install/info/Makefile14
5 files changed, 24 insertions, 40 deletions
diff --git a/usr.sbin/pkg_install/Makefile.inc b/usr.sbin/pkg_install/Makefile.inc
index 50332c0..73ab2a3 100644
--- a/usr.sbin/pkg_install/Makefile.inc
+++ b/usr.sbin/pkg_install/Makefile.inc
@@ -1,2 +1,10 @@
+# $Id$
+
+.if exists(${.OBJDIR}/../lib)
+LIBINSTALL= ${.OBJDIR}/../lib/libinstall.a
+.else
+LIBINSTALL= ${.CURDIR}/../lib/libinstall.a
+.endif
+
# Inherit BINDIR from one level up.
.include "../Makefile.inc"
diff --git a/usr.sbin/pkg_install/add/Makefile b/usr.sbin/pkg_install/add/Makefile
index 83a022e..749285d 100644
--- a/usr.sbin/pkg_install/add/Makefile
+++ b/usr.sbin/pkg_install/add/Makefile
@@ -1,17 +1,11 @@
+# $Id$
+
PROG= pkg_add
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 -lmd
-DPADD+= ${LIBFTPIO} ${LIBMD}
+DPADD= ${LIBINSTALL} ${LIBFTPIO} ${LIBMD}
+LDADD= ${LIBINSTALL} -lftpio -lmd
SRCS= main.c perform.c futil.c extract.c
diff --git a/usr.sbin/pkg_install/create/Makefile b/usr.sbin/pkg_install/create/Makefile
index 01048ac..d347d8e 100644
--- a/usr.sbin/pkg_install/create/Makefile
+++ b/usr.sbin/pkg_install/create/Makefile
@@ -1,17 +1,11 @@
+# $Id$
+
PROG= pkg_create
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 -lmd
-DPADD+= ${LIBFTPIO} ${LIBMD}
+DPADD= ${LIBINSTALL} ${LIBFTPIO} ${LIBMD}
+LDADD= ${LIBINSTALL} -lftpio -lmd
SRCS= main.c perform.c pl.c
diff --git a/usr.sbin/pkg_install/delete/Makefile b/usr.sbin/pkg_install/delete/Makefile
index 20a5717..15b8f56 100644
--- a/usr.sbin/pkg_install/delete/Makefile
+++ b/usr.sbin/pkg_install/delete/Makefile
@@ -1,16 +1,10 @@
+# $Id$
+
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 -lmd
-DPADD+= ${LIBFTPIO} ${LIBMD}
+DPADD= ${LIBINSTALL} ${LIBFTPIO} ${LIBMD}
+LDADD= ${LIBINSTALL} -lftpio -lmd
SRCS= main.c perform.c
diff --git a/usr.sbin/pkg_install/info/Makefile b/usr.sbin/pkg_install/info/Makefile
index 29f98d2..e071687 100644
--- a/usr.sbin/pkg_install/info/Makefile
+++ b/usr.sbin/pkg_install/info/Makefile
@@ -1,16 +1,10 @@
+# $Id$
+
PROG= pkg_info
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 -lmd
-DPADD+= ${LIBFTPIO} ${LIBMD}
+DPADD= ${LIBINSTALL} ${LIBFTPIO} ${LIBMD}
+LDADD= ${LIBINSTALL} -lftpio -lmd
SRCS= main.c perform.c show.c
OpenPOWER on IntegriCloud