diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2010-11-19 12:48:21 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2010-11-19 15:32:02 +0000 |
commit | c5cb65f0aac3298e634b183f73fda6644a158018 (patch) | |
tree | 6a656bee60031fe88d180191e09a327891c6968b /Makefile.am | |
parent | 60a62788d48e1d45fcb75cf0bcc7d375c42b83ba (diff) | |
download | libguestfs-c5cb65f0aac3298e634b183f73fda6644a158018.tar.gz libguestfs-c5cb65f0aac3298e634b183f73fda6644a158018.tar.xz libguestfs-c5cb65f0aac3298e634b183f73fda6644a158018.zip |
inspector: Rewrite virt-inspector in C.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index 6f171467..ec84cc5c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -35,8 +35,8 @@ SUBDIRS += gnulib/tests capitests regressions test-tool # Guestfish. SUBDIRS += fish -# virt-cat (in C). -SUBDIRS += cat +# virt-tools in C. +SUBDIRS += cat inspector # Language bindings. if HAVE_PERL @@ -64,11 +64,7 @@ endif # Unconditional because nothing is built yet. SUBDIRS += csharp -# Virt-inspector, tools and guestmount. -if HAVE_INSPECTOR -SUBDIRS += inspector -endif - +# Perl tools and guestmount. if HAVE_TOOLS SUBDIRS += tools endif @@ -255,5 +251,7 @@ bindist: cp test-tool/libguestfs-test-tool.static $(BINTMPDIR)$(bindir)/libguestfs-test-tool $(MAKE) -C cat virt-cat.static cp cat/virt-cat.static $(BINTMPDIR)$(bindir)/virt-cat + $(MAKE) -C inspector virt-inspector.static + cp inspector/virt-inspector.static $(BINTMPDIR)$(bindir)/virt-inspector (cd $(BINTMPDIR) && tar cf - .) | \ gzip -c -9 > libguestfs-$(VERSION)-$(host_cpu).tar.gz |