Date: Thu, 19 Nov 2009 10:54:15 GMT From: Rafal Jaworowski <raj@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 170799 for review Message-ID: <200911191054.nAJAsFkK075555@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/chv.cgi?CH=170799 Change 170799 by raj@raj_fdt on 2009/11/19 10:53:49 Provide a BSD-style makefile for the 'dtc'. This lets build the tool with the regular BSD make and not rely on optional components (gmake). Affected files ... .. //depot/projects/fdt/gnu/usr.bin/Makefile#2 edit .. //depot/projects/fdt/gnu/usr.bin/dtc/Makefile#1 add .. //depot/projects/fdt/share/mk/bsd.own.mk#2 edit .. //depot/projects/fdt/tools/build/options/WITH_FDT#1 add Differences ... ==== //depot/projects/fdt/gnu/usr.bin/Makefile#2 (text+ko) ==== @@ -11,6 +11,7 @@ dialog \ diff \ diff3 \ + ${_dtc} \ ${_gdb} \ ${_gperf} \ ${_grep} \ @@ -42,6 +43,10 @@ _cvs= cvs .endif +.if ${MK_FDT} != "no" +_dtc= dtc +.endif + .if ${MK_GNU_GREP} != "no" _grep= grep .endif ==== //depot/projects/fdt/share/mk/bsd.own.mk#2 (text+ko) ==== @@ -407,6 +407,7 @@ BIND_LIBS \ BIND_SIGCHASE \ BIND_XML \ + FDT \ GNU_CPIO \ HESIOD \ IDEA
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200911191054.nAJAsFkK075555>