summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomek CEDRO <cederom@tlen.pl>2011-06-16 05:31:12 +0000
committerTomek CEDRO <cederom@tlen.pl>2011-06-16 05:31:12 +0000
commit5a0b2d476daaf1bff73eb36a7be25173fdfc6bd9 (patch)
tree79c343c6d0396b61bd4c2bf83064da593c21dd2e
parent30b3cae0036e2667136674c8d21e600042e2194b (diff)
downloadopenocd_libswd-5a0b2d476daaf1bff73eb36a7be25173fdfc6bd9.tar.gz
openocd_libswd-5a0b2d476daaf1bff73eb36a7be25173fdfc6bd9.tar.bz2
openocd_libswd-5a0b2d476daaf1bff73eb36a7be25173fdfc6bd9.tar.xz
openocd_libswd-5a0b2d476daaf1bff73eb36a7be25173fdfc6bd9.zip
INTERFACE: Integrating generic interface from src/interface with autotools and build system. Resulting src/interface/libinterface.la is now part of libopenocd.la.
-rw-r--r--configure.in1
-rw-r--r--src/Makefile.am2
2 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index cb62c859..090d934b 100644
--- a/configure.in
+++ b/configure.in
@@ -1168,6 +1168,7 @@ AC_OUTPUT(dnl
src/jtag/Makefile dnl
src/jtag/drivers/Makefile dnl
src/transport/Makefile dnl
+ src/interface/Makefile dnl
src/xsvf/Makefile dnl
src/svf/Makefile dnl
src/target/Makefile dnl
diff --git a/src/Makefile.am b/src/Makefile.am
index 60d1189b..cd034acb 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -5,6 +5,7 @@ SUBDIRS = \
helper \
target \
transport \
+ interface \
flash \
svf \
xsvf \
@@ -100,6 +101,7 @@ libopenocd_la_LIBADD = \
$(top_builddir)/src/pld/libpld.la \
$(top_builddir)/src/jtag/libjtag.la \
$(top_builddir)/src/transport/libtransport.la \
+ $(top_builddir)/src/interface/libinterface.la \
$(top_builddir)/src/flash/libflash.la \
$(top_builddir)/src/target/libtarget.la \
$(top_builddir)/src/server/libserver.la \