Makefile revision 207608
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/libexec/tftpd/Makefile 207608 2010-05-04 06:19:19Z imp $
3
4PROG=	tftpd
5SRCS=	tftpd.c tftp-io.c tftp-utils.c tftp-file.c tftp-transfer.c tftp-options.c
6WARNS=	3
7WFORMAT=0
8MAN=	tftpd.8
9CFLAGS=-g -Wall
10CFLAGS+=-I${.CURDIR}/../../usr.bin/tftp -I${.CURDIR}/../../libexec/tftpd
11.PATH:	${.CURDIR}/../../usr.bin/tftp
12COPTFLAGS = -O
13LDFLAGS= -lwrap
14
15.include <bsd.prog.mk>
16