bdbf3440ce
When a review is closed via Phabricator it updates the patch attached to the review. I downloaded the raw patch from Phabricator, applied it, and repeated my mistake from r345704 by accident mixing content from D19732 and D19738. For my own personal sanity, I will try not to mix reviews like this in the future. MFC after: 1 month MFC with: r345706 Approved by: emaste (mentor, implicit)
14 lines
201 B
Makefile
14 lines
201 B
Makefile
# $FreeBSD$
|
|
|
|
PROG_CXX=dtc
|
|
SRCS= dtc.cc input_buffer.cc string.cc dtb.cc fdt.cc checking.cc
|
|
MAN= dtc.1
|
|
|
|
WARNS?= 3
|
|
|
|
CXXFLAGS+= -std=c++11 -fno-rtti -fno-exceptions
|
|
|
|
NO_SHARED?=NO
|
|
|
|
.include <bsd.prog.mk>
|