OUTS := centtestserver centtestclient all : $(OUTS) LDFLAGS:=-lpthread centtestserver : cent.o os_generic.o centtestserver.o gcc -o $@ $^ $(LDFLAGS) centtestclient : cent.o os_generic.o centtestclient.o gcc -o $@ $^ $(LDFLAGS) clean : rm -rf *.o *~ $(OUTS)