Added framework for the language bindings.
[libguestfs.git] / Makefile.am
index 7054ea8..d34b942 100644 (file)
 
 ACLOCAL_AMFLAGS = -I m4
 
-SUBDIRS = src daemon examples
-
-EXTRA_DIST = make-initramfs.sh
+SUBDIRS = src daemon fish examples images
+
+if HAVE_OCAML
+SUBDIRS += ocaml
+endif
+if HAVE_PERL
+SUBDIRS += perl
+endif
+if HAVE_PYTHON
+SUBDIRS += python
+endif
+
+EXTRA_DIST = \
+       make-initramfs.sh update-initramfs.sh \
+       guestfs.pod guestfs-actions.pod guestfs-structs.pod \
+       libguestfs.spec \
+       HACKING
 
 # Build the root filesystem.
 # Currently this is arch-dependent, so it seems like putting it in
@@ -33,22 +47,43 @@ VMLINUZ = vmlinuz.$(REPO).$(host_cpu)
 
 fs_DATA =  $(INITRAMFSIMG) $(VMLINUZ)
 
-$(VMLINUZ) $(INITRAMFSIMG): initramfs.timestamp
+$(INITRAMFSIMG) $(VMLINUZ): initramfs/fakeroot.log
+
+initramfs/fakeroot.log: make-initramfs.sh.in
+       -mv $(INITRAMFSIMG) $(INITRAMFSIMG).bak
+       -mv $(VMLINUZ) $(VMLINUZ).bak
+       if ! bash $(builddir)/make-initramfs.sh; then rm -f $@; exit 1; fi
 
-initramfs.timestamp: make-initramfs.sh.in daemon/guestfsd
+$(INITRAMFSIMG): initramfs/fakeroot.log daemon/guestfsd
        rm -f $@
-       $(builddir)/make-initramfs.sh
+       bash $(builddir)/update-initramfs.sh
        touch $@
 
-.PHONY: daemon/guestfsd
-
 # Make clean.
 
-CLEANFILES = $(fs_DATA) initramfs.timestamp emptydisk
+CLEANFILES = $(fs_DATA) emptydisk
 
 clean-local:
        rm -rf initramfs
 
+# Manual page.
+# guestfs-actions.pod and guestfs-structs are autogenerated.  There is
+# no include mechanism for POD, so we have to do it by hand.
+
+man_MANS = guestfs.3
+
+guestfs.3: guestfs.pod guestfs-actions.pod guestfs-structs.pod
+       sed \
+         -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
+         -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
+         < $< | \
+       $(POD2MAN) \
+         --section 3 \
+         -c "Virtualization Support" \
+         --name "guestfs" \
+         --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
+         > $@
+
 # Test-boot the image.
 
 test-boot: emptydisk