From: Zach W. <zw...@us...> - 2009-10-20 05:03:14
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via aa8a95ad7b37e6b3123ec70c0ddc3d2d9ccb97ec (commit) from 620d7bb2b6fdcc86b645ec34cb1b348d4441ad34 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit aa8a95ad7b37e6b3123ec70c0ddc3d2d9ccb97ec Author: Zachary T Welch <zw...@su...> Date: Mon Oct 19 19:59:02 2009 -0700 Improve Makefile rules for XScale debug handler; fixes 'make distcheck'. diff --git a/src/target/Makefile.am b/src/target/Makefile.am index bdef58c..f62ba1d 100644 --- a/src/target/Makefile.am +++ b/src/target/Makefile.am @@ -11,9 +11,15 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/src/xsvf BIN2C = $(top_builddir)/src/helper/bin2char$(EXEEXT_FOR_BUILD) -DEBUG_HANDLER = $(top_srcdir)/src/target/xscale/debug_handler.bin -xscale_debug.h: $(BIN2C) $(DEBUG_HANDLER) +DEBUG_HANDLER = $(srcdir)/xscale/debug_handler.bin +EXTRA_DIST = $(DEBUG_HANDLER) + +DEBUG_HEADER = xscale_debug.h +BUILT_SOURCES = $(DEBUG_HEADER) +CLEANFILES = $(DEBUG_HEADER) + +$(DEBUG_HEADER): $(BIN2C) $(DEBUG_HANDLER) $(BIN2C) < $(DEBUG_HANDLER) xscale_debug_handler > xscale_debug.h METASOURCES = AUTO @@ -61,9 +67,6 @@ libtarget_la_SOURCES = \ mips_ejtag.c \ avrt.c -BUILT_SOURCES = \ - xscale_debug.h - noinst_HEADERS = \ target.h \ target_type.h \ ----------------------------------------------------------------------- Summary of changes: src/target/Makefile.am | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 deletions(-) hooks/post-receive -- Main OpenOCD repository |