The thing you ask for is not currently possible with tup - all output files have to be stated explicitly and there's nothing you can do to change that.

If the files created are not needed, you can delete them in the same tup rule and it will work fine. Sth like:

: input.ext |> compile %f %o && rm -rf <files-or-directories-you-don't-need> |> output.ext

One tup rule is allowed to create any number of files with random names as long as all that are _NOT_ stated as output are removed when the execution ends.

Regards,
FCh

--
--
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.

Reply via email to