In my makefile I have 6 distinct flows. build creates the output structure refresh checks out the source from pvcs product creates the end product.
build depends on nothing refresh needs to have had build to run prior product needs to have had refresh to run prior I know if I do gmake build gmake refresh gmake Everything will get built. refresh takes @ 55 minutes to run so I don't want to refresh every time to build the products. What happens if I do: gmake -j --max-load 10.0 build refresh Do these get ran in parallel, or will build run first, then refresh? Will refresh attempt to put something in a directory before build has created it? _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
