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)
13 lines
191 B
Makefile
13 lines
191 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/contrib/com_err
|
|
|
|
PROG= compile_et
|
|
SRCS= compile_et.c parse.y lex.l
|
|
LIBADD= roken vers
|
|
CFLAGS+=-I. -I${SRCTOP}/contrib/com_err
|
|
|
|
WARNS?= 0
|
|
|
|
.include <bsd.prog.mk>
|