1# @(#)Makefile 8.1 (Berkeley) 6/4/93 2# $FreeBSD$ 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