On Fri, Mar 21, 2008 at 4:08 PM, Jim <[EMAIL PROTECTED]> wrote: > noinst_PROGRAMS = poll.spec > poll_tmpl_SOURCES = poll.tmpl FORCE > .tmpl.spec: > ./logpoll.pl $< > > FORCE: [snip] > Can anyone suggest how I might accomplish what I thought was going to be > a simple task?
Why not just take advantage of the fact that automake makes "all"
depend on "all-local" if you define that target:
all-local:
$(srcdir)/logpoll.pl $(srcdir)/poll.tmpl
