diff options
author | Paul Fertser <fercerpav@gmail.com> | 2014-01-27 22:25:42 +0400 |
---|---|---|
committer | Paul Fertser <fercerpav@gmail.com> | 2014-03-29 07:56:33 +0000 |
commit | 8b1fabd8e000f620287b5373aa149a8eeed4709b (patch) | |
tree | 647f044966369bfed937f6c1d0a68e37b8e1fb41 | |
parent | 1a9cec020ee71b804db21ba85ccc7393336a88ce (diff) |
Add xscale debug helper sources and everything related to dist
GPL requires providing sources for any derived work. I do not see any
reason to not include the xscale stuff into release tarballs.
Wildcard matching is used because plain directory name matches
implicit rule for executables and xscale.c built is errorneously
attempted, and directory name with a slash duplicates a directory
(xscale/xscale) in dist.
Change-Id: Ie0266470dcb97be87a09ba2dda9b3957f7cbc2fa
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/1911
Tested-by: jenkins
Reviewed-by: Robert Jarzmik <robert.jarzmik@free.fr>
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
-rw-r--r-- | src/target/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/Makefile.am b/src/target/Makefile.am index 159f0fa4..08d0db48 100644 --- a/src/target/Makefile.am +++ b/src/target/Makefile.am @@ -14,7 +14,7 @@ BIN2C = $(top_builddir)/src/helper/bin2char$(EXEEXT_FOR_BUILD) DEBUG_HANDLER = $(srcdir)/xscale/debug_handler.bin EXTRA_DIST = \ startup.tcl \ - $(DEBUG_HANDLER) + $(wildcard $(srcdir)/xscale/*) DEBUG_HEADER = xscale_debug.h BUILT_SOURCES = $(DEBUG_HEADER) |