all: ListenerServer CreateChannel AccountClient AccountServer DIR_PREFIX=../ include MakeVars INSTALL_DIR = poa/soccer INSTALL_SRCS = Makefile ListenerServer.cc Listener.idl INSTALL_SCRIPTS = account CreateChannel: CreateChannel.o $(DEPS) $(LD) $(CXXFLAGS) $(LDFLAGS) CreateChannel.o $(COS_LDLIBS) $(LDLIBS) -o CreateChannel ListenerServer: ListenerServer.o $(DEPS) $(LD) $(CXXFLAGS) $(LDFLAGS) ListenerServer.o $(COS_LDLIBS) $(LDLIBS) -o ListenerServer AccountServer: account.h account.o AccountServer.o $(DEPS) $(LD) $(CXXFLAGS) $(LDFLAGS) account.o AccountServer.o $(COS_LDLIBS) $(LDLIBS) -o AccountServer AccountClient: account.h account.o AccountClient.o $(DEPS) $(LD) $(CXXFLAGS) $(LDFLAGS) account.o AccountClient.o $(COS_LDLIBS) $(LDLIBS) -o AccountClient Listener.h Listener.cc : Listener.idl $(IDLGEN) $(IDL) --boa --no-poa Listener.idl account.h account.cc : account.idl $(IDLGEN) $(IDL) --boa --no-poa account.idl clean: rm -f account.cc account.h AccountClient AccountServer Listener.cc Listener.h *.o core ListenerAccountServer *~ .depend