diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-04 04:42:38 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-04 16:56:24 -0800 |
commit | 87a0119fa24fe0fc904dcf2e6569cc0b9cb580ed (patch) | |
tree | ad795d91c176b13ccfec951ced2b7307ee5f4422 | |
parent | f3e6f584f12dbde9ba9806ed4a412db0524d438c (diff) | |
download | openocd_libswd-87a0119fa24fe0fc904dcf2e6569cc0b9cb580ed.tar.gz openocd_libswd-87a0119fa24fe0fc904dcf2e6569cc0b9cb580ed.tar.bz2 openocd_libswd-87a0119fa24fe0fc904dcf2e6569cc0b9cb580ed.tar.xz openocd_libswd-87a0119fa24fe0fc904dcf2e6569cc0b9cb580ed.zip |
reorder build order of src directory
Descend into the library modules in order, from bottom-to-top.
-rw-r--r-- | src/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index e6462c1f..ea753bbf 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,12 @@ -SUBDIRS = helper jtag xsvf svf target server flash pld +SUBDIRS = \ + helper \ + jtag \ + target \ + flash \ + svf \ + xsvf \ + pld \ + server lib_LTLIBRARIES = libopenocd.la bin_PROGRAMS = openocd |