diff options
author | ngie <ngie@FreeBSD.org> | 2016-06-08 18:21:25 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2016-06-08 18:21:25 +0000 |
commit | 602200e84d9ab290c76a4290fdf3f8cd3f32c8fe (patch) | |
tree | ff5e2a9f40253b04f5cbf90b50070d3186c0e73f /tools | |
parent | d3f56237be4f1975e52091b8c52fd0c8fbcc48b5 (diff) | |
download | FreeBSD-src-602200e84d9ab290c76a4290fdf3f8cd3f32c8fe.zip FreeBSD-src-602200e84d9ab290c76a4290fdf3f8cd3f32c8fe.tar.gz |
MFC r300861,r300862:
r300861:
- Sort make variables
- Use SRCTOP instead of ad hoc definition for it
r300862:
Install ioatcontrol to /usr/bin by default instead of /
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/ioat/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/tools/ioat/Makefile b/tools/tools/ioat/Makefile index 62771ad..e19770f 100644 --- a/tools/tools/ioat/Makefile +++ b/tools/tools/ioat/Makefile @@ -2,9 +2,13 @@ PROG= ioatcontrol MAN= ioatcontrol.8 -CFLAGS+= -I${.CURDIR:H:H:H}/sys/dev/ioat -WARNS?= 6 +BINDIR?= /usr/bin + +CFLAGS+= -I${SRCTOP}/sys/dev/ioat + #LIBADD= util LDADD= -lutil +WARNS?= 6 + .include <bsd.prog.mk> |