all: system test .PHONY: system system: clean rm -rf include/c++ server/c++ ifaces $(IDLC) -o ifaces/system `find ../../idl -name '*.idl'` -s System $(IDLC) -o include/c++ -l c++ -s System -i ifaces/system -t ppc $(IDLC) -o server/c++ -l c++ -r -s System -i ifaces/system -t ppc cpp-server.cdl test: system g++ -Wall -c -g3 -O3 ../../lib/c++/orb.cc -o orb.o -I include/c++ -I ../../include/c++ g++ -Wall -g3 -O3 cpp-caller.cc orb.o -o cpp-caller -I include/c++ -I ../../include/c++ g++ -Wall -g3 -O3 cpp-server.cc orb.o -o cpp-server -I include/c++ -I ../../include/c++ g++ -Wall -g3 -O3 cpp-vstruct.cc orb.o -o cpp-vstruct -I include/c++ -I ../../include/c++ clean: rm -rf include/c++ server/c++ ifaces rm -f cpp-caller cpp-server *.o .gdb_history