I'm trying to get Tup to handle depenedencies on output only files without manually specifying them all directly.
I have this rule: : foreach build/*.pdf |> convert -density 300 %f -quality 100 install/%B.png |> install/%g*.png This takes a bunch of intermediate PDF files that were created from latex that have pictures on them one per page and turns them into individual png files. I need a way to have TUP register all of the outputs as valid. The reason why I do not want to specify them manually is that each PDF file has a variable number of output images based on other inputs. So I want to basically say that anything in the install directory is a valid output, but never has a dependency. -- -- tup-users mailing list email: [email protected] unsubscribe: [email protected] options: http://groups.google.com/group/tup-users?hl=en --- You received this message because you are subscribed to the Google Groups "tup-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
