64c2a712d6
Sponsored by: Klara, Inc. Reviewed by: asomers Differential Revision: https://reviews.freebsd.org/D38969
19 lines
320 B
Makefile
19 lines
320 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.PATH: ${SRCTOP}/libexec/tftpd
|
|
|
|
PROG= tftp
|
|
SRCS= main.c tftp-file.c tftp-io.c tftp-options.c tftp-transfer.c
|
|
SRCS+= tftp-utils.c tftp.c
|
|
CFLAGS+=-I${SRCTOP}/libexec/tftpd
|
|
|
|
LIBADD= edit
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}= tests
|
|
|
|
.include <bsd.prog.mk>
|