7fa2f2a62f
As suggested in D27598. This also supports MK_WERROR.clang=no and MK_WERROR.gcc=no to support the existing NO_WERROR.<compiler> uses. Reviewed By: brooks Differential Revision: https://reviews.freebsd.org/D27601
12 lines
169 B
Makefile
12 lines
169 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= truss
|
|
SRCS= main.c setup.c syscalls.c
|
|
|
|
LIBADD= sysdecode
|
|
|
|
#CFLAGS+= -I${.CURDIR} -I. -I${SRCTOP}/sys
|
|
CFLAGS+= -I${SRCTOP}/sys
|
|
|
|
.include <bsd.prog.mk>
|