diff options
author | phk <phk@FreeBSD.org> | 1998-09-17 09:35:02 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1998-09-17 09:35:02 +0000 |
commit | 231bd37d3c3215f2bf6cccc1a4f6d79ac7e1b167 (patch) | |
tree | 28f16d9c354c723093e7fcf66c873381205685c1 /usr.sbin/atm | |
parent | 399a16928fecfe7a1b87962aa2146351791bb090 (diff) | |
download | FreeBSD-src-231bd37d3c3215f2bf6cccc1a4f6d79ac7e1b167.zip FreeBSD-src-231bd37d3c3215f2bf6cccc1a4f6d79ac7e1b167.tar.gz |
Two patches from the HARP people:
Various Makefile related fixes.
-Wformat fixes.
Submitted by: Mike Spengler <mks@networkcs.com>
Diffstat (limited to 'usr.sbin/atm')
-rw-r--r-- | usr.sbin/atm/atmarpd/Makefile | 3 | ||||
-rw-r--r-- | usr.sbin/atm/scspd/Makefile | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/atm/atmarpd/Makefile b/usr.sbin/atm/atmarpd/Makefile index d484632..013e119 100644 --- a/usr.sbin/atm/atmarpd/Makefile +++ b/usr.sbin/atm/atmarpd/Makefile @@ -23,7 +23,7 @@ # Copies of this Software may be made, however, the above copyright # notice must be reproduced on all copies. # -# @(#) $Id: Makefile,v 1.1 1998/09/15 08:23:14 phk Exp $ +# @(#) $Id: Makefile,v 1.2 1998/09/15 19:16:33 phk Exp $ # # @@ -34,5 +34,6 @@ MAN8= atmarpd.8 CFLAGS+= -I${.CURDIR}/../../../sys LDADD+= -latm -lmd +DPADD+= ${LIBATM} ${LIBMD} .include <bsd.prog.mk> diff --git a/usr.sbin/atm/scspd/Makefile b/usr.sbin/atm/scspd/Makefile index a913a1f..ce36b5a 100644 --- a/usr.sbin/atm/scspd/Makefile +++ b/usr.sbin/atm/scspd/Makefile @@ -23,7 +23,7 @@ # Copies of this Software may be made, however, the above copyright # notice must be reproduced on all copies. # -# @(#) $Id: Makefile,v 1.3 1998/09/15 18:57:43 jkh Exp $ +# @(#) $Id: Makefile,v 1.4 1998/09/15 19:01:46 jkh Exp $ # # @@ -37,7 +37,7 @@ MAN8= scspd.8 CFLAGS+= -I${.CURDIR}/../../../sys -I${.OBJDIR} LDADD+= -latm -lmd -DPADD+= ${LIBMD} +DPADD+= ${LIBATM} ${LIBMD} YFLAGS= -d |