diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-11-25 11:23:12 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-11-25 11:23:12 +0000 |
commit | 13eb765f2d1a7497df9f56f5ca95950e04cb4c01 (patch) | |
tree | 69f31f17bfe80e77e4f38188819e4e69f11b9f25 /sbin/ggate/ggatec/Makefile | |
parent | cc0d90a7997d7483dcfb77b908a709fa5561a5fb (diff) | |
download | src-13eb765f2d1a7497df9f56f5ca95950e04cb4c01.tar.gz src-13eb765f2d1a7497df9f56f5ca95950e04cb4c01.zip |
Convert sbin/ to LIBADD
Reduce overlinking
Notes
Notes:
svn path=/head/; revision=275030
Diffstat (limited to 'sbin/ggate/ggatec/Makefile')
-rw-r--r-- | sbin/ggate/ggatec/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/ggate/ggatec/Makefile b/sbin/ggate/ggatec/Makefile index 4d8917f3164c..e228feaf471a 100644 --- a/sbin/ggate/ggatec/Makefile +++ b/sbin/ggate/ggatec/Makefile @@ -10,7 +10,6 @@ CFLAGS+= -DMAX_SEND_SIZE=32768 CFLAGS+= -DLIBGEOM CFLAGS+= -I${.CURDIR}/../shared -DPADD= ${LIBGEOM} ${LIBSBUF} ${LIBBSDXML} ${LIBUTIL} ${LIBPTHREAD} -LDADD= -lgeom -lsbuf -lbsdxml -lutil -lpthread +LIBADD= geom util pthread .include <bsd.prog.mk> |