diff options
author | bapt <bapt@FreeBSD.org> | 2014-11-25 11:15:40 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-11-25 11:15:40 +0000 |
commit | 53c2ff7734d36745ac563d50ed143d9cd7b352b0 (patch) | |
tree | 464e2b0fe4b668bbca54a17c993842255230d630 /bin/sh/Makefile | |
parent | ae45ae3f5d298bc24587c5e94dab89e48f5d2378 (diff) | |
download | FreeBSD-src-53c2ff7734d36745ac563d50ed143d9cd7b352b0.zip FreeBSD-src-53c2ff7734d36745ac563d50ed143d9cd7b352b0.tar.gz |
Convert bin/ to LIBADD, reduce overlinking allow to build all components as
static
Diffstat (limited to 'bin/sh/Makefile')
-rw-r--r-- | bin/sh/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile index ad43d33..3f28a12 100644 --- a/bin/sh/Makefile +++ b/bin/sh/Makefile @@ -18,8 +18,7 @@ SRCS= ${SHSRCS} ${GENSRCS} ${GENHDRS} # utilities of the same name are handled with the associated manpage, # builtin.1 in share/man/man1/. -DPADD= ${LIBEDIT} ${LIBTERMCAPW} -LDADD= -ledit -ltermcapw +LIBADD= edit CFLAGS+=-DSHELL -I. -I${.CURDIR} # for debug: |