From: David Brownell Date: Sat, 17 Oct 2009 19:14:19 +0000 (-0700) Subject: build tweak for bin2char X-Git-Tag: v0.3.0-rc0~78 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=05d6716936d4c8cea80443b1aaaa14a80e97cfc4;ds=sidebyside 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 ea1641ef0d..bdef58c24d 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