diff options
author | markm <markm@FreeBSD.org> | 2001-11-30 21:10:58 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-11-30 21:10:58 +0000 |
commit | 7f33af3e59446f387cb44615881c175d92320581 (patch) | |
tree | e1cbbe5dfa994edf9086841d6eb68fe87b446aca /secure/libexec | |
parent | 4be6f18d14314b6a5e0e878e13a1fe937886cf0f (diff) | |
download | FreeBSD-src-7f33af3e59446f387cb44615881c175d92320581.zip FreeBSD-src-7f33af3e59446f387cb44615881c175d92320581.tar.gz |
Clean up makefiles, and turn on WARNS=2. Take into account the telnet
#if cleanup.
Diffstat (limited to 'secure/libexec')
-rw-r--r-- | secure/libexec/telnetd/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/secure/libexec/telnetd/Makefile b/secure/libexec/telnetd/Makefile index 24e3731..ef9d1b2 100644 --- a/secure/libexec/telnetd/Makefile +++ b/secure/libexec/telnetd/Makefile @@ -6,12 +6,14 @@ PROG= telnetd MAN= telnetd.8 +SRCS= global.c slc.c state.c sys_term.c telnetd.c \ + termstat.c utility.c authenc.c + CFLAGS+= -DLINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOLD_ENVIRON \ -DENV_HACK -DAUTHENTICATION -DENCRYPTION \ -I${TELNETDIR} -DINET6 -SRCS= global.c slc.c state.c sys_term.c telnetd.c \ - termstat.c utility.c authenc.c +WARNS?= 2 DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} ${LIBMP} ${LIBCRYPTO} \ ${LIBCRYPT} ${LIBPAM} |