From: David Brownell Date: Sat, 17 Oct 2009 19:14:19 +0000 (-0700) Subject: build tweak for bin2char X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=05d6716936d4c8cea80443b1aaaa14a80e97cfc4;hp=cb7965da154793430d935f4965d7360198b711ba;p=fw%2Fopenocd build tweak for bin2char Work better when building outside the source tree. Signed-off-by: David Brownell --- diff --git a/src/target/Makefile.am b/src/target/Makefile.am index ea1641ef0..bdef58c24 100644 --- a/src/target/Makefile.am +++ b/src/target/Makefile.am @@ -10,10 +10,11 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/src/jtag \ -I$(top_srcdir)/src/xsvf -BIN2C = $(top_srcdir)/src/helper/bin2char$(EXEEXT_FOR_BUILD) +BIN2C = $(top_builddir)/src/helper/bin2char$(EXEEXT_FOR_BUILD) +DEBUG_HANDLER = $(top_srcdir)/src/target/xscale/debug_handler.bin -xscale_debug.h: $(BIN2C) xscale/debug_handler.bin - $(BIN2C) < xscale/debug_handler.bin xscale_debug_handler > xscale_debug.h +xscale_debug.h: $(BIN2C) $(DEBUG_HANDLER) + $(BIN2C) < $(DEBUG_HANDLER) xscale_debug_handler > xscale_debug.h METASOURCES = AUTO noinst_LTLIBRARIES = libtarget.la