diff options
author | bde <bde@FreeBSD.org> | 1998-05-04 18:20:18 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-05-04 18:20:18 +0000 |
commit | 1f573458e336167cb79f44ee7e1b08611058df59 (patch) | |
tree | ea7c1de71884b3ef0c6675e3596dd9f62751d52f /libexec/ftpd/Makefile | |
parent | 2717dada3ee30bc7e0c091c6b9e455da410dbe88 (diff) | |
download | FreeBSD-src-1f573458e336167cb79f44ee7e1b08611058df59.zip FreeBSD-src-1f573458e336167cb79f44ee7e1b08611058df59.tar.gz |
Simplified by using new yacc rules and by not generating y.tab.h.
Diffstat (limited to 'libexec/ftpd/Makefile')
-rw-r--r-- | libexec/ftpd/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libexec/ftpd/Makefile b/libexec/ftpd/Makefile index 7a5796d..59cd2de 100644 --- a/libexec/ftpd/Makefile +++ b/libexec/ftpd/Makefile @@ -1,18 +1,17 @@ # @(#)Makefile 8.2 (Berkeley) 4/4/94 -# $Id: Makefile,v 1.22 1997/04/29 12:42:07 davidn Exp $ +# $Id: Makefile,v 1.23 1997/10/05 09:39:27 jkh Exp $ PROG= ftpd MAN8= ftpd.8 -SRCS= ftpd.c ftpcmd.c logwtmp.c popen.c skey-stuff.c +SRCS= ftpd.c ftpcmd.y logwtmp.c popen.c skey-stuff.c CFLAGS+=-DSETPROCTITLE -DSKEY -DLOGIN_CAP -DVIRTUAL_HOSTING -Wall \ -I${.CURDIR}/../../contrib-crypto/telnet +YFLAGS= LDADD= -lskey -lmd -lcrypt -lutil DPADD= ${LIBSKEY} ${LIBMD} ${LIBCRYPT} ${LIBUTIL} -CLEANFILES+=ftpcmd.c y.tab.h - .ifdef FTPD_INTERNAL_LS LSDIR= ../../bin/ls .PATH: ${.CURDIR}/${LSDIR} |