inspect: Split code into separate files.
[libguestfs.git] / resize / Makefile.am
index 8ef16ff..838c78d 100644 (file)
@@ -42,12 +42,12 @@ OBJECTS = \
 
 bin_SCRIPTS = virt-resize
 
-OCAMLPACKAGES = -package guestfs,pcre
+OCAMLPACKAGES = -package pcre -I ../ocaml
 OCAMLCFLAGS = -g -warn-error CDEFLMPSUVYZX $(OCAMLPACKAGES)
 OCAMLOPTFLAGS = $(OCAMLCFLAGS)
 
 virt-resize: $(OBJECTS)
-       $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) -linkpkg $^ -o $@
+       $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) mlguestfs.cmxa -linkpkg $^ -o $@
 
 .mli.cmi:
        $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
@@ -62,15 +62,16 @@ man_MANS = virt-resize.1
 
 noinst_DATA = $(top_builddir)/html/virt-resize.1.html
 
-virt-%.1: virt-%.pod
-       $(top_srcdir)/podwrapper.sh \
-         --man $@ \
-         $<
+virt-resize.1 $(top_builddir)/html/virt-resize.1.html: stamp-virt-resize.pod
 
-$(top_builddir)/html/virt-%.1.html: virt-%
+stamp-virt-resize.pod: virt-resize.pod
        $(top_srcdir)/podwrapper.sh \
-         --html $@ \
+         --man virt-resize.1 \
+         --html $(top_builddir)/html/virt-resize.1.html \
          $<
+       touch $@
+
+CLEANFILES += stamp-virt-resize.pod
 
 # Tests.
 
@@ -99,3 +100,7 @@ include .depend
 
 endif
 endif
+
+# Parallel builds don't obey dependencies for some reason we
+# don't understand.
+.NOTPARALLEL: