c64a3eaf92
- Added an expression parser so that expressions from headers are now working - Fixed missing null terminators on cross references - Disabled exceptions / RTTI in the build for smaller binaries - Changed phandle order generation to be identical to GPL'd dtc
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>
|