[EMAIL PROTECTED] wrote:

> I'm trying to work out if it's possible to get a makefile to compile 2
> separate programs.
> 
> Not two programs built as one but two programs that will run
> separately.
> 
> prog1 is a test server for messages from prog2

Sure:

all:    prog1 prog2

prog1:  server_foo.o server_bar.o

prog2:  client_foo.o client_bar.o

-- 
Glynn Clements <[EMAIL PROTECTED]>

Reply via email to