dba0fd308e
unique names based on the submitted filename, a strftime(3) format string and a two digit sequence number. By default the strftime(3) format string is %Y%m%d (YYYYMMDD), but this can be changed by the -F option. PR: bin/106049 (based on patch in that PR) Approved by: grog@ (mentor)
14 lines
243 B
Makefile
14 lines
243 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $FreeBSD$
|
|
|
|
PROG= tftpd
|
|
SRCS= tftpd.c tftpsubs.c
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
WFORMAT=0
|
|
MAN= tftpd.8
|
|
CFLAGS+=-I${.CURDIR}/../../usr.bin/tftp
|
|
.PATH: ${.CURDIR}/../../usr.bin/tftp
|
|
|
|
.include <bsd.prog.mk>
|