AndreaCensi / compmake

Compmake is a non-obtrusive module that provides Makefile-like facilities (including parallel processing) for batch Python applications.
http://compmake.org/
Other
17 stars 6 forks source link

Add logical operators to job list parsing #61

Open AndreaCensi opened 14 years ago

AndreaCensi commented 14 years ago

For example, we want to say: make optic* in $failed

I think the "in" (== logical "and") would be the only useful one. "or" is implied. Maybe we should add also a "not".

more optic* in not $failed make not optic*

Add parenthesis as well? I should figure out the associativity of operators.