Re: Loop/wildcard-like syntax for GNU make?

2007-04-17 Thread Parv
in message <[EMAIL PROTECTED]>, wrote Kelly Jones thusly... Would you mind cutting the number of mailing lists? I think a|any technical list would have been enough. Anyway ... > Here's a Makefile that converts 3 GIFs to JPGs in a given directory: > > 1.jpg: 1.gif >/usr/local/bin/conv

Loop/wildcard-like syntax for GNU make?

2007-04-17 Thread Kelly Jones
Here's a Makefile that converts 3 GIFs to JPGs in a given directory: 1.jpg: 1.gif /usr/local/bin/convert 1.gif 1.jpg 2.jpg: 2.gif /usr/local/bin/convert 2.gif 2.jpg 3.jpg: 3.gif /usr/local/bin/convert 3.gif 3.jpg How do I generalize this to apply to ALL the GIFs in a given dire