freebsd-dev/usr.bin/tftp/Makefile
Dag-Erling Smørgrav 64c2a712d6 tftp: Add tests.
Sponsored by:	Klara, Inc.
Reviewed by:	asomers
Differential Revision:	https://reviews.freebsd.org/D38969
2023-03-10 13:25:16 +00:00

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>