search for: generator_ml

Displaying 1 result from an estimated 1 matches for "generator_ml".

Did you mean: generator_c
2009 Nov 18
1
[PATCH] Fix dependencies on generator.ml
...+++++++--- src/Makefile.am | 33 +++++++++++++++++---------------- 11 files changed, 146 insertions(+), 47 deletions(-) diff --git a/Makefile.am b/Makefile.am index 87efb2d..66f2144 100644 --- a/Makefile.am +++ b/Makefile.am @@ -54,9 +54,20 @@ if HAVE_HASKELL SUBDIRS += haskell endif +GENERATOR_ML = \ + guestfs-structs.pod \ + guestfs-actions.pod \ + guestfish-actions.pod + +.PHONY: force + +$(GENERATOR_ML): force + $(MAKE) -C $(top_builddir)/src stamp-generator + EXTRA_DIST = \ - guestfs.pod guestfs-actions.pod guestfs-structs.pod \ - guestfish.pod guestfish-actions.pod \ + $(GENERATOR_ML)...