Makefile revision 56668
11556Srgrimes# Copyright (c) 1996 WIDE Project. All rights reserved.
250471Speter#
31556Srgrimes# Redistribution and use in source and binary forms, with or without
455270Sjoe# modifications, are permitted provided that the above copyright notice
51556Srgrimes# and this paragraph are duplicated in all such forms and that any
657003Sjoe# documentation, advertising materials, and other materials related to
757003Sjoe# such distribution and use acknowledge that the software was developed
81556Srgrimes# by the WIDE Project, Japan. The name of the Project may not be used to
961269Sjoe# endorse or promote products derived from this software without
1061268Sjoe# specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS''
1161268Sjoe# AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
1261269Sjoe# LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1361268Sjoe# A PARTICULAR PURPOSE.
141556Srgrimes# $FreeBSD: head/usr.sbin/faithd/Makefile 56668 2000-01-27 09:28:38Z shin $
15
16PROG=	faithd
17SRCS=	faithd.c tcp.c ftp.c rsh.c
18MAN8=	faithd.8
19#CFLAGS+= -DFAITH4
20CFLAGS+= -Wall
21DPADD+=	${LIBUTIL}
22LDADD+=	-lutil
23
24.include <bsd.prog.mk>
25