diff options
author | jkh <jkh@FreeBSD.org> | 1997-10-05 09:40:24 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-10-05 09:40:24 +0000 |
commit | 418d0a6a92470af062b69dd63c64f3166ee615e5 (patch) | |
tree | 7f06509995affc58ef8727989dc29f3a49b10feb /usr.bin/ftp/Makefile | |
parent | 038c3f0595c56a98acb9161846fdfa51640a0e4b (diff) | |
download | FreeBSD-src-418d0a6a92470af062b69dd63c64f3166ee615e5.zip FreeBSD-src-418d0a6a92470af062b69dd63c64f3166ee615e5.tar.gz |
Changes to support full make parallelism (-j<n>) in the world
target.
Reviewed by: <many different folks>
Submitted by: Nickolay N. Dudorov" <nnd@nnd.itfs.nsk.su>
Diffstat (limited to 'usr.bin/ftp/Makefile')
-rw-r--r-- | usr.bin/ftp/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ftp/Makefile b/usr.bin/ftp/Makefile index 4bb9dc0..acf31c1 100644 --- a/usr.bin/ftp/Makefile +++ b/usr.bin/ftp/Makefile @@ -1,10 +1,11 @@ -# $Id$ +# $Id: Makefile,v 1.6 1997/06/25 08:56:33 msmith Exp $ # $NetBSD: Makefile,v 1.11 1997/03/24 21:59:36 christos Exp $ # from: @(#)Makefile 8.2 (Berkeley) 4/3/94 PROG= ftp SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \ util.c +CFLAGS+=-I${.CURDIR}/../../contrib-crypto/telnet LDADD+= -ledit -ltermcap DPADD+= ${LIBEDIT} ${LIBTERMCAP} |