diff options
author | Richard Jones <rjones@redhat.com> | 2010-08-25 11:53:00 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-08-25 17:22:54 +0100 |
commit | a0d514f13d3334b79745d7d1f90a6ac615afa7c2 (patch) | |
tree | 98965e8dbd8363c7add46e57fc4f91ada2a5a7b7 /fuse | |
parent | 27ef6f9171127afd248f38d280cf3d0eae51fdaf (diff) | |
download | libguestfs-a0d514f13d3334b79745d7d1f90a6ac615afa7c2.tar.gz libguestfs-a0d514f13d3334b79745d7d1f90a6ac615afa7c2.tar.xz libguestfs-a0d514f13d3334b79745d7d1f90a6ac615afa7c2.zip |
Include statically linked binaries in the binary distribution.
Diffstat (limited to 'fuse')
-rw-r--r-- | fuse/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fuse/Makefile.am b/fuse/Makefile.am index 1bfc3755..db0e418e 100644 --- a/fuse/Makefile.am +++ b/fuse/Makefile.am @@ -42,6 +42,12 @@ guestmount_LDADD = \ $(top_builddir)/src/libguestfs.la \ ../gnulib/lib/libgnu.la +# Build a partly-static library (for the binary distribution). + +guestmount.static$(EXEEXT): $(guestmount_OBJECTS) $(guestmount_DEPENDENCIES) + $(top_srcdir)/relink-static.sh \ + $(guestmount_LINK) $(guestmount_OBJECTS) -static $(guestmount_LDADD) $(guestmount_LIBS) -lpcre -lhivex -lmagic -lz + # Documentation. man_MANS = guestmount.1 |