diff options
author | marius <marius@FreeBSD.org> | 2010-09-23 14:06:15 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2010-09-23 14:06:15 +0000 |
commit | 938d1370478b2252a5daea843aab02ee8900ed58 (patch) | |
tree | 864c35e3f4d0f4fe40afb9f73afb3357a3600e60 /libexec/tftpd/Makefile | |
parent | e2ef5877c7dc0dfe860d44ab342714bec7de594d (diff) | |
download | FreeBSD-src-938d1370478b2252a5daea843aab02ee8900ed58.zip FreeBSD-src-938d1370478b2252a5daea843aab02ee8900ed58.tar.gz |
Try to adhere to style.Makefile(5).
MFC after: 3 days
Diffstat (limited to 'libexec/tftpd/Makefile')
-rw-r--r-- | libexec/tftpd/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libexec/tftpd/Makefile b/libexec/tftpd/Makefile index 656f5bd..48c5e0d 100644 --- a/libexec/tftpd/Makefile +++ b/libexec/tftpd/Makefile @@ -2,13 +2,11 @@ # $FreeBSD$ PROG= tftpd -SRCS= tftpd.c tftp-io.c tftp-utils.c tftp-file.c tftp-transfer.c tftp-options.c +MAN= tftpd.8 +SRCS= tftp-file.c tftp-io.c tftp-options.c tftp-transfer.c tftp-utils.c +SRCS+= tftpd.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> |