mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
7ed09cd535
debugging purposes only.
15 lines
339 B
Makefile
15 lines
339 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $FreeBSD$
|
|
|
|
PROG= tftpd
|
|
SRCS= tftpd.c tftp-io.c tftp-utils.c tftp-file.c tftp-transfer.c tftp-options.c
|
|
WARNS= 3
|
|
WFORMAT=0
|
|
MAN= tftpd.8
|
|
CFLAGS+=-I${.CURDIR}/../../usr.bin/tftp -I${.CURDIR}/../../libexec/tftpd
|
|
.PATH: ${.CURDIR}/../../usr.bin/tftp
|
|
COPTFLAGS = -O
|
|
LDFLAGS= -lwrap
|
|
|
|
.include <bsd.prog.mk>
|