diff options
author | Martin Schmölzer <martin.schmoelzer@student.tuwien.ac.at> | 2011-06-20 19:50:54 +0200 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2011-06-26 17:43:51 +0200 |
commit | 29f6f6ae5f5cd83cb1cdff04a98bd6232e87a36b (patch) | |
tree | 3793112c8998307b3a97a88244a34022ecb2582e | |
parent | 379abb9167d30048c8fa4ba66ebef766b69b6142 (diff) | |
download | riscv-openocd-29f6f6ae5f5cd83cb1cdff04a98bd6232e87a36b.zip riscv-openocd-29f6f6ae5f5cd83cb1cdff04a98bd6232e87a36b.tar.gz riscv-openocd-29f6f6ae5f5cd83cb1cdff04a98bd6232e87a36b.tar.bz2 |
Include ULINK driver in src/Makefile.am
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index e3adaad..1e7af9c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -85,6 +85,9 @@ else if RLINK LIBUSB = -lusb else +if ULINK +LIBUSB = -lusb +else if VSLLINK LIBUSB = -lusb else @@ -93,6 +96,7 @@ endif endif endif endif +endif libopenocd_la_LIBADD = \ $(top_builddir)/src/xsvf/libxsvf.la \ |