Re: Build a single source file under src/

2009-12-27 Thread Thiago Farina
Hi Alfred, On Sun, Dec 27, 2009 at 9:52 PM, Alfred M. Szmidt wrote: > The following might work: make -C src foo.o > Thanks for the quick answer. That didn't work for the tac-pipe example. $ make -C src tac-pipe.o make: Entering directory `/home/tfarina/coreutils/src' CC tac-pipe.o tac-pipe

Re: Build a single source file under src/

2009-12-27 Thread Alfred M. Szmidt
The following might work: make -C src foo.o

Build a single source file under src/

2009-12-27 Thread Thiago Farina
Hi, Is there a way to build just one program or a source file under src/ directory? I mean, instead of just building everything when I type: $ make I just want to do something like this from the top level directory: $ make tac-pipe.o # or make src/tac-pipe.o But the output shows that doesn't