mirror of
https://github.com/dgibson/dtc.git
synced 2026-01-22 01:30:34 -05:00
The freetype package already installs a binary named "ftdump", so the dtc package conflicts with that. So rename the newer dtc tool to "fdtdump". This even makes a bit more sense: ftdump: [F]lat device [T]ree [dump] fdtdump: [F]lat [D]evice [T]ree [dump] Signed-off-by: Mike Frysinger <vapier@gentoo.org> Acked-by: David Gibson <david@gibson.dropbear.id.au>
10 lines
212 B
Text
10 lines
212 B
Text
#
|
|
# This is not a complete Makefile of itself. Instead, it is designed to
|
|
# be easily embeddable into other systems of Makefiles.
|
|
#
|
|
|
|
FDTDUMP_SRCS = \
|
|
fdtdump.c \
|
|
util.c
|
|
|
|
FDTDUMP_OBJS = $(FDTDUMP_SRCS:%.c=%.o)
|