a35f04fba2
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)
16 lines
234 B
Makefile
16 lines
234 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= smbutil
|
|
SRCS= smbutil.c dumptree.c login.c lookup.c view.c print.c
|
|
|
|
LIBADD= smb
|
|
|
|
CONTRIBDIR= ${SRCTOP}/contrib/smbfs
|
|
CFLAGS+= -I${CONTRIBDIR}/include
|
|
|
|
WARNS?= 0
|
|
|
|
.PATH: ${CONTRIBDIR}/smbutil
|
|
|
|
.include <bsd.prog.mk>
|