From b732d6bad565d111295844178428e42b554994ad Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Tue, 16 Dec 1997 17:53:39 +0000 Subject: [PATCH] Fixed DPADD. --- usr.sbin/lpr/chkprintcap/Makefile | 3 ++- usr.sbin/lpr/lpc/Makefile | 3 ++- usr.sbin/lpr/lpd/Makefile | 3 ++- usr.sbin/lpr/lpq/Makefile | 3 ++- usr.sbin/lpr/lpr/Makefile | 3 ++- usr.sbin/lpr/lprm/Makefile | 3 ++- usr.sbin/lpr/pac/Makefile | 3 ++- 7 files changed, 14 insertions(+), 7 deletions(-) diff --git a/usr.sbin/lpr/chkprintcap/Makefile b/usr.sbin/lpr/chkprintcap/Makefile index 9d6160c29b0e..3fc24ae878a7 100644 --- a/usr.sbin/lpr/chkprintcap/Makefile +++ b/usr.sbin/lpr/chkprintcap/Makefile @@ -1,9 +1,10 @@ -# $Id$ +# $Id: Makefile,v 1.1 1997/12/02 20:45:07 wollman Exp $ PROG= chkprintcap MAN8= chkprintcap.8 CFLAGS+=-I${.CURDIR}/../common_source -Wall -Werror .PATH: ${.CURDIR}/../common_source +DPADD= ${.OBJDIR}/../common_source/liblpr.a LDADD= -L${.OBJDIR}/../common_source -llpr .include "../../Makefile.inc" diff --git a/usr.sbin/lpr/lpc/Makefile b/usr.sbin/lpr/lpc/Makefile index 8d1326e9343c..cf3412d95b80 100644 --- a/usr.sbin/lpr/lpc/Makefile +++ b/usr.sbin/lpr/lpc/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $Id: Makefile,v 1.3 1997/12/02 20:45:35 wollman Exp $ PROG= lpc CFLAGS+=-I${.CURDIR}/../common_source ${CWARNFLAGS} @@ -8,6 +8,7 @@ SRCS= lpc.c cmds.c cmdtab.c BINGRP= daemon BINMODE=2555 .PATH: ${.CURDIR}/../common_source +DPADD= ${.OBJDIR}/../common_source/liblpr.a LDADD= -L${.OBJDIR}/../common_source -llpr .include "../../Makefile.inc" diff --git a/usr.sbin/lpr/lpd/Makefile b/usr.sbin/lpr/lpd/Makefile index f1eb2daab959..de9b86055ffe 100644 --- a/usr.sbin/lpr/lpd/Makefile +++ b/usr.sbin/lpr/lpd/Makefile @@ -1,10 +1,11 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $Id: Makefile,v 1.4 1997/12/02 20:45:52 wollman Exp $ PROG= lpd CFLAGS+=-I${.CURDIR}/../common_source -Wall -Werror MAN8= lpd.8 SRCS= lpd.c printjob.c recvjob.c lpdchar.c modes.c +DPADD= ${.OBJDIR}/../common_source/liblpr.a LDADD= -L${.OBJDIR}/../common_source -llpr .include "../../Makefile.inc" diff --git a/usr.sbin/lpr/lpq/Makefile b/usr.sbin/lpr/lpq/Makefile index c0938edd3d20..7b2cdc487a4c 100644 --- a/usr.sbin/lpr/lpq/Makefile +++ b/usr.sbin/lpr/lpq/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $Id: Makefile,v 1.3 1997/12/02 20:46:03 wollman Exp $ PROG= lpq CFLAGS+=-I${.CURDIR}/../common_source ${CWARNFLAGS} @@ -9,6 +9,7 @@ BINGRP= daemon BINMODE=6555 BINDIR= /usr/bin MAN1= lpq.1 +DPADD= ${.OBJDIR}/../common_source/liblpr.a LDADD= -L${.OBJDIR}/../common_source -llpr .include diff --git a/usr.sbin/lpr/lpr/Makefile b/usr.sbin/lpr/lpr/Makefile index 0f02d7894425..c77746a4f319 100644 --- a/usr.sbin/lpr/lpr/Makefile +++ b/usr.sbin/lpr/lpr/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $Id: Makefile,v 1.3 1997/12/02 20:46:08 wollman Exp $ PROG= lpr CFLAGS+=-I${.CURDIR}/../common_source ${CWARNFLAGS} @@ -10,6 +10,7 @@ BINMODE=6555 BINDIR= /usr/bin MAN1= lpr.1 .PATH: ${.CURDIR}/../common_source +DPADD= ${.OBJDIR}/../common_source/liblpr.a LDADD= -L${.OBJDIR}/../common_source -llpr .include diff --git a/usr.sbin/lpr/lprm/Makefile b/usr.sbin/lpr/lprm/Makefile index cb597c51c515..ecefae475463 100644 --- a/usr.sbin/lpr/lprm/Makefile +++ b/usr.sbin/lpr/lprm/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $Id: Makefile,v 1.3 1997/12/02 20:46:13 wollman Exp $ PROG= lprm CFLAGS+=-I${.CURDIR}/../common_source -Wall -Werror @@ -10,6 +10,7 @@ BINMODE=6555 BINDIR= /usr/bin MAN1= lprm.1 .PATH: ${.CURDIR}/../common_source +DPADD= ${.OBJDIR}/../common_source/liblpr.a LDADD= -L${.OBJDIR}/../common_source -llpr .include diff --git a/usr.sbin/lpr/pac/Makefile b/usr.sbin/lpr/pac/Makefile index 758045c3a131..188dcc859221 100644 --- a/usr.sbin/lpr/pac/Makefile +++ b/usr.sbin/lpr/pac/Makefile @@ -1,11 +1,12 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $Id: Makefile,v 1.3 1997/12/02 20:46:18 wollman Exp $ PROG= pac CFLAGS+=-I${.CURDIR}/../common_source MAN8= pac.8 SRCS= pac.c .PATH: ${.CURDIR}/../common_source +DPADD= ${.OBJDIR}/../common_source/liblpr.a LDADD= -L${.OBJDIR}/../common_source -llpr .include "../../Makefile.inc"