Skip to content
Snippets Groups Projects
Commit 05d67169 authored by David Brownell's avatar David Brownell
Browse files

build tweak for bin2char


Work better when building outside the source tree.

Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
parent cb7965da
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment