diff options
author | Juan Quintela <quintela@redhat.com> | 2009-08-03 14:47:06 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-10 13:05:46 -0500 |
commit | 3e2e0e6ba87f271e4b7dc5eac6c128940ad74002 (patch) | |
tree | d8ff85e363ba6dda2631beb8614a5a8a24c6358c | |
parent | a990240bb916ba5ad71e8980660ab3698b6f010c (diff) |
Add libs_tools support
Libraries used by qemu-<tools>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Message-Id:
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | configure | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -16,7 +16,7 @@ endif VPATH=$(SRC_PATH):$(SRC_PATH)/hw -LIBS+=-lz +LIBS+=-lz $(LIBS_TOOLS) ifdef BUILD_DOCS DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 @@ -46,6 +46,7 @@ objcopy="objcopy" ld="ld" helper_cflags="" libs_softmmu="" +libs_tools="" audio_pt_int="" # parse CC options first @@ -1783,6 +1784,7 @@ echo "LDFLAGS=$LDFLAGS" >> $config_host_mak echo "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak echo "ARLIBS_END=$arlibs_end" >> $config_host_mak echo "LIBS+=$LIBS" >> $config_host_mak +echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak echo "EXESUF=$EXESUF" >> $config_host_mak echo "/* Automatically generated by configure - do not modify */" > $config_host_h |