diff options
author | David Brownell <david-b@pacbell.net> | 2009-10-14 09:32:42 +0200 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2009-10-14 11:04:37 +0200 |
commit | 1ee8ef4210174d8d48977d145e9fa9a45d36a9ae (patch) | |
tree | 90f67dfe889d27124d6888ea5dc795975a9e133b /src/target | |
parent | 7afc181e428df53b4d3e2b096a3235801df102aa (diff) | |
download | openocd_libswd-1ee8ef4210174d8d48977d145e9fa9a45d36a9ae.tar.gz openocd_libswd-1ee8ef4210174d8d48977d145e9fa9a45d36a9ae.tar.bz2 openocd_libswd-1ee8ef4210174d8d48977d145e9fa9a45d36a9ae.tar.xz openocd_libswd-1ee8ef4210174d8d48977d145e9fa9a45d36a9ae.zip |
Fix problems building xscale_debug.S
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/target/Makefile.am b/src/target/Makefile.am index 86716dca..a2c34f0f 100644 --- a/src/target/Makefile.am +++ b/src/target/Makefile.am @@ -10,6 +10,12 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/src/jtag \ -I$(top_srcdir)/src/xsvf +# ideally this would be specific to xscale_debug.S ... +libtarget_la_CCASFLAGS = \ + -Wa,-I$(top_srcdir)/src/target \ + $(AM_CCASFLAGS) + + METASOURCES = AUTO noinst_LTLIBRARIES = libtarget.la libtarget_la_SOURCES = \ |