diff options
author | pst <pst@FreeBSD.org> | 1994-09-30 21:19:58 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1994-09-30 21:19:58 +0000 |
commit | e21dbb93b13923bb4f71cf83d686071c4851c26a (patch) | |
tree | 181a8879f802bfffdf9822a7de596236775c547b /libexec | |
parent | b4529a6011893c1f2d4c6aa5aeddf357d4632546 (diff) | |
download | FreeBSD-src-e21dbb93b13923bb4f71cf83d686071c4851c26a.zip FreeBSD-src-e21dbb93b13923bb4f71cf83d686071c4851c26a.tar.gz |
Clean up makefile
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ftpd/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libexec/ftpd/Makefile b/libexec/ftpd/Makefile index d65a4b9..396deee 100644 --- a/libexec/ftpd/Makefile +++ b/libexec/ftpd/Makefile @@ -1,11 +1,14 @@ # @(#)Makefile 8.2 (Berkeley) 4/4/94 PROG= ftpd -CFLAGS+=-DSETPROCTITLE -DSKEY +MAN8= ftpd.8 SRCS= ftpd.c ftpcmd.c logwtmp.c popen.c skey-stuff.c + +CFLAGS+=-DSETPROCTITLE -DSKEY + LDADD= -lcrypt -lskey -DPADD= ${LIBSKEY} -MAN8= ftpd.8 +DPADD= ${LIBCRYPT} ${LIBSKEY} + CLEANFILES+=ftpcmd.c y.tab.h .include <bsd.prog.mk> |