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 /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 'sbin/atm')
-rw-r--r-- | sbin/atm/atm/Makefile | 3 | ||||
-rw-r--r-- | sbin/atm/fore_dnld/Makefile | 3 | ||||
-rw-r--r-- | sbin/atm/ilmid/Makefile | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/sbin/atm/atm/Makefile b/sbin/atm/atm/Makefile index 31ff5d2..6d5667b 100644 --- a/sbin/atm/atm/Makefile +++ b/sbin/atm/atm/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:22:44 phk Exp $ +# @(#) $Id: Makefile,v 1.2 1998/09/15 19:16:25 phk Exp $ # # @@ -34,5 +34,6 @@ MAN8= atm.8 CFLAGS+= -I${.CURDIR}/../../../sys LDADD+= -latm +DPADD+= ${LIBATM} .include <bsd.prog.mk> diff --git a/sbin/atm/fore_dnld/Makefile b/sbin/atm/fore_dnld/Makefile index 0f3d543..fef11f3 100644 --- a/sbin/atm/fore_dnld/Makefile +++ b/sbin/atm/fore_dnld/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:22:46 phk Exp $ +# @(#) $Id: Makefile,v 1.2 1998/09/15 19:16:32 phk Exp $ # # @@ -32,5 +32,6 @@ MAN8= fore_dnld.8 CFLAGS+= -I${.CURDIR}/../../../sys LDADD+= -latm +DPADD+= ${LIBATM} .include <bsd.prog.mk> diff --git a/sbin/atm/ilmid/Makefile b/sbin/atm/ilmid/Makefile index aa0ede3..6082855 100644 --- a/sbin/atm/ilmid/Makefile +++ b/sbin/atm/ilmid/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:22:47 phk Exp $ +# @(#) $Id: Makefile,v 1.2 1998/09/15 19:16:32 phk Exp $ # # @@ -32,5 +32,6 @@ MAN8= ilmid.8 CFLAGS+= -I${.CURDIR}/../../../sys LDADD+= -latm +DPADD+= ${LIBATM} .include <bsd.prog.mk> |