X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile;h=88284f6882399a4972cce525104865cfabbe5bc8;hb=428096c1c01b9942c62105e547eaa6c7d44e6ce1;hp=55fdc670e3f8fc7daf108a0725ab3cda5f96065a;hpb=b63bcefe6f27357e18c4b567287b8ac67fb9b839;p=goaljobs-goals.git diff --git a/Makefile b/Makefile index 55fdc67..88284f6 100644 --- a/Makefile +++ b/Makefile @@ -3,25 +3,32 @@ # Comment out the next line if goaljobs is installed. If it is not # installed, change the path to the location of the goaljobs build # directory. -pkgdir = ../goaljobs +#pkgdir = ../goaljobs ifeq ($(pkgdir),) -goaljobs = goaljobs +goaljobs = goaljobs --package pcre,extlib else -goaljobs = $(pkgdir)/goaljobs --pkgdir=$(pkgdir) +goaljobs = $(pkgdir)/goaljobs --pkgdir=$(pkgdir) --package pcre,extlib endif programs = \ fedora_ocaml_rebuild \ - libguestfs_upstream + libguestfs_upstream \ + libguestfs_fedora all: $(programs) fedora_ocaml_rebuild: config.ml utils.ml git.ml fedora.ml fedora_ocaml_rebuild.ml - $(goaljobs) --package pcre,extlib $^ -o $@ + $(goaljobs) $^ -o $@ + +libguestfs_upstream: config.ml utils.ml libguestfs.ml libguestfs_upstream.ml + $(goaljobs) $^ -o $@ -libguestfs_upstream: config.ml libguestfs_upstream.ml +libguestfs_fedora: config.ml utils.ml git.ml fedora.ml libguestfs.ml libguestfs_fedora.ml $(goaljobs) $^ -o $@ clean: rm -f $(programs) *.cmi *.cmx *.o *~ + +# Parallel building is broken in this Makefile. +.NOTPARALLEL: