Makefile question — one comoand makes two files. 

Newsgroups:  gmane.linux.debian.user
Date:        Fri, 25 Aug 2006 15:09:17 -0400
> > Let's say that the comoand
> >    chop onion
> > makes two files, tears and pieces
> >
> > How do I describe this in a Makefile?
> In gmake this should work:
>
> tears pieces :
>      chop onion

Thanks. It works. It's the obvious way, it's in the manual, and I feel stupid for asking.

But last time I was faced with this problem, it wasn't in the manual, and this obvious method didn't work.

hendrik