On Wed, Oct 09, 2013 at 10:51:44PM +0200, Anton Khirnov wrote:
> --- /dev/null
> +++ b/tests/fate/libavresample.mak
> @@ -0,0 +1,26 @@
> +CROSS_TEST = $(foreach I,$(1),                                        \
> +                 $(foreach J,$(1),                                    \
> +                     $(if $(filter-out $(I),$(J)),                    \
> +                         $(eval $(call $(2),$(I),$(J),$(3),$(4))),    \
> +                     )))

I find this slightly more readable with the arguments aligned:

CROSS_TEST = $(foreach I,$(1),                                                  
\
                       $(foreach J,$(1),                                        
\
                                 $(if $(filter-out $(I),$(J)),                  
\
                                      $(eval $(call $(2),$(I),$(J),$(3),$(4))), 
\
                                      )))

I have no strong preference though, so OK either way.

Diego
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to