Hello, I have this simple makefile:
eps_files = fig1.eps fig2.eps
$(eps_files): %.eps: %.fig
fig2dev -L ps $< $@
It is supposed to process both input files, fig1.fig and fig2.fig, and
generate the corresponding .eps files. But it only processes fig1 and
completely ignores fig2. What's wrong?
Thank you,
--
Pedro I. Sanchez
PS. I'm using make version 3.77-4 in a Debian stable box.

