mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
Prefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/foo
over ${.CURDIR}/../foo for paths in Makefiles.
Differential Revision: https://reviews.freebsd.org/D9932
Sponsored by: Netflix
Silence on: arch@ (twice)
13 lines
258 B
Makefile
13 lines
258 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.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
|
|
|
|
.include <bsd.prog.mk>
|