Torsten Mohr wrote:
You could define LIST_C and LIST_L like this:

LIST_C = $(filter %.c,$(LIST))
LIST_L = $(filter %.l,$(LIST))

This does not work for me, %.c seems to only match a file name
that ends with a single "c".  I'd like to also match "cl".

Well you could do

LIST_C = $(filter %.c %.cl %.clrm,$(LIST))

John.


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to