Fix 'make doc'
authorRichard W.M. Jones <rjones@redhat.com>
Fri, 11 Jul 2008 12:14:57 +0000 (13:14 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Fri, 11 Jul 2008 12:14:57 +0000 (13:14 +0100)
Makefile.in
lib/diskimage_ext2.mli
lib/diskimage_fat.mli
lib/diskimage_impl.mli
lib/diskimage_linux_swap.mli
lib/diskimage_linux_swsuspend.mli
lib/diskimage_lvm2.mli
lib/diskimage_lvm2_metadata.mli
lib/diskimage_mbr.mli
lib/diskimage_ntfs.mli

index 803b94a..f9f2a51 100644 (file)
@@ -22,8 +22,8 @@ VERSION               = @PACKAGE_VERSION@
 INSTALL                = @INSTALL@
 
 OCAMLDOC        = @OCAMLDOC@
-OCAMLDOCFLAGS  += -html -sort -package bitmatch.syntax -syntax bitmatch.syntax -I lib
-OCAMLDOCFILES  := $(wildcard lib/*.mli)
+OCAMLDOCFLAGS  += -html -sort -package bitmatch -I lib
+OCAMLDOCFILES  := $(wildcard lib/diskimage*.mli) lib/int63.mli
 
 SUBDIRS                = lib virt-df diskzip
 
index 1533ac7..4a53526 100644 (file)
@@ -1,3 +1,4 @@
+(** diskimage plugin for ext2/3 *)
 (* 'df' command for virtual domains.
    (C) Copyright 2007-2008 Richard W.M. Jones, Red Hat Inc.
    http://libvirt.org/
index 1533ac7..0e116a7 100644 (file)
@@ -1,3 +1,4 @@
+(** diskimage plugin for DOS FAT *)
 (* 'df' command for virtual domains.
    (C) Copyright 2007-2008 Richard W.M. Jones, Red Hat Inc.
    http://libvirt.org/
index 39ce30f..3a34dcb 100644 (file)
@@ -1,3 +1,4 @@
+(** Diskimage library implementation. *)
 (* (C) Copyright 2007-2008 Richard W.M. Jones, Red Hat Inc.
    http://libvirt.org/
 
@@ -17,9 +18,9 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
  *)
 
-(* Don't use the functions and types in here directly.  The safe ones
* are reexported through the Diskimage module, see diskimage.mli.
- *)
+(** Don't use the functions and types in here directly.  The safe ones
   are reexported through the {!Diskimage} module, see [diskimage.mli].
+*)
 
 (**/**)
 
@@ -175,7 +176,7 @@ val register_plugin :
   ?lvm:lvm_probe ->
   string -> unit
 
-(** {3 Plug-in-specific data management. *)
+(** {3 Plug-in-specific data management} *)
 
 val private_data_functions :
   ('key -> int) -> ('key -> 'data -> unit) * ('key -> 'data)
index 1533ac7..e872bc6 100644 (file)
@@ -1,3 +1,4 @@
+(** diskimage plugin for Linux swap *)
 (* 'df' command for virtual domains.
    (C) Copyright 2007-2008 Richard W.M. Jones, Red Hat Inc.
    http://libvirt.org/
index 1533ac7..7fa7022 100644 (file)
@@ -1,3 +1,4 @@
+(** diskimage plugin for Linux software suspend *)
 (* 'df' command for virtual domains.
    (C) Copyright 2007-2008 Richard W.M. Jones, Red Hat Inc.
    http://libvirt.org/
index 1533ac7..4f860d2 100644 (file)
@@ -1,3 +1,4 @@
+(** diskimage plugin for Linux LVM2 *)
 (* 'df' command for virtual domains.
    (C) Copyright 2007-2008 Richard W.M. Jones, Red Hat Inc.
    http://libvirt.org/
index 5b25580..1f122ae 100644 (file)
@@ -1,3 +1,4 @@
+(** diskimage plugin for Linux LVM2 *)
 (* 'df' command for virtual domains.
    (C) Copyright 2007-2008 Richard W.M. Jones, Red Hat Inc.
    http://libvirt.org/
index 1533ac7..cdb9f52 100644 (file)
@@ -1,3 +1,4 @@
+(** diskimage plugin for MBR (DOS partitions) *)
 (* 'df' command for virtual domains.
    (C) Copyright 2007-2008 Richard W.M. Jones, Red Hat Inc.
    http://libvirt.org/
index 1533ac7..34f7ba3 100644 (file)
@@ -1,3 +1,4 @@
+(** diskimage plugin for Windows NTFS *)
 (* 'df' command for virtual domains.
    (C) Copyright 2007-2008 Richard W.M. Jones, Red Hat Inc.
    http://libvirt.org/