diff options
author | Ed Maste <emaste@FreeBSD.org> | 2020-02-29 17:10:54 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2020-02-29 17:10:54 +0000 |
commit | 134b378392a81b2a11b23fac073c306087a421ef (patch) | |
tree | 5386bf53c1c1b3b2563060f1ca3e12bc88f8371a /gnu | |
parent | b95cee35d395c05584ae951a7cd11369ab03c94e (diff) |
Notes
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/Makefile | 1 | ||||
-rw-r--r-- | gnu/usr.bin/dtc/Makefile | 51 | ||||
-rw-r--r-- | gnu/usr.bin/dtc/Makefile.depend | 18 |
3 files changed, 0 insertions, 70 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index 98fffa9c08d6..c642b83a61db 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -12,7 +12,6 @@ SUBDIR.${MK_GNU_DIFF}+= diff3 SUBDIR.${MK_GNU_GREP}+= grep SUBDIR.${MK_GDB}+= gdb SUBDIR_DEPEND_gdb= binutils -SUBDIR.${MK_GPL_DTC}+= dtc SUBDIR.${MK_TESTS}+= tests SUBDIR_PARALLEL= diff --git a/gnu/usr.bin/dtc/Makefile b/gnu/usr.bin/dtc/Makefile deleted file mode 100644 index d9fcc6404a91..000000000000 --- a/gnu/usr.bin/dtc/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# $FreeBSD$ - -.include <bsd.own.mk> - -DTCDIR= ${.CURDIR}/../../../contrib/dtc -_LIBFDTDIR= ${.CURDIR}/../../../sys/contrib/libfdt -.PATH: ${DTCDIR} ${_LIBFDTDIR} - -PROG= dtc - -SRCS= dtc.c checks.c fstree.c livetree.c treesource.c data.c \ - flattree.c srcpos.c util.c \ - fdt.c fdt_ro.c fdt_rw.c fdt_strerror.c \ - fdt_sw.c fdt_wip.c ${DTCVERSIONFILE} - -WARNS?= 2 -CFLAGS+= -I. -I${.CURDIR} -I${DTCDIR} -I${_LIBFDTDIR} - -VERSIONMAJ!= awk '/^VERSION =/ { print $$3 }' ${DTCDIR}/Makefile -VERSIONMIN!= awk '/^PATCHLEVEL =/ { print $$3 }' ${DTCDIR}/Makefile -VERSIONSUB!= awk '/^SUBLEVEL =/ { print $$3 }' ${DTCDIR}/Makefile -VERSIONEXTRA= - -DTCVERSION:= ${VERSIONMAJ}.${VERSIONMIN}.${VERSIONSUB}${VERSIONEXTRA} -DTCVERSIONFILE:= version_gen.h - -MAN= - -BISON= yacc -LEX= lex - -OBJS+= dtc-parser.tab.o dtc-lexer.lex.o - -CLEANFILES+= dtc-parser.tab.o dtc-lexer.lex.o dtc-parser.tab.c \ - dtc-parser.tab.h dtc-lexer.lex.c ${DTCVERSIONFILE} - -${DTCVERSIONFILE}: ${DTCDIR}/Makefile - @echo '#define DTC_VERSION "DTC ${DTCVERSION}"' > ${DTCVERSIONFILE} - -dtc-parser.tab.o: dtc-parser.tab.c dtc-parser.tab.h -dtc-lexer.lex.o: dtc-lexer.lex.c dtc-parser.tab.h - -dtc-parser.tab.c: dtc-parser.y - ${BISON} -o$@ -d ${DTCDIR}/dtc-parser.y - -dtc-parser.tab.h: dtc-parser.tab.c - -dtc-lexer.lex.c: dtc-lexer.l - ${LEX} -o$@ ${DTCDIR}/dtc-lexer.l - -.include <bsd.prog.mk> diff --git a/gnu/usr.bin/dtc/Makefile.depend b/gnu/usr.bin/dtc/Makefile.depend deleted file mode 100644 index d084433f911c..000000000000 --- a/gnu/usr.bin/dtc/Makefile.depend +++ /dev/null @@ -1,18 +0,0 @@ -# $FreeBSD$ -# Autogenerated - do NOT edit! - -DIRDEPS = \ - gnu/lib/csu \ - include \ - include/xlocale \ - lib/${CSU_DIR} \ - lib/libc \ - lib/libcompiler_rt \ - usr.bin/yacc.host \ - - -.include <dirdeps.mk> - -.if ${DEP_RELDIR} == ${_DEP_RELDIR} -# local dependencies - needed for -jN in clean tree -.endif |