mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
021713f548
- Adding first pass at defining stream protocol. - Added ADD/REMOVE peer Command, tweaked other parameters / response msgs too. git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-rpc-b1@6147 b45a01b8-16f6-495d-af2f-9b41ad6348cc
34 lines
970 B
Makefile
34 lines
970 B
Makefile
|
|
EXEC = protoc
|
|
#PROTO = core.proto peers.proto system.proto chat.proto search.proto files.proto stream.proto gxs.proto msgs.proto
|
|
PROTO = core.proto peers.proto system.proto chat.proto search.proto files.proto stream.proto
|
|
|
|
PROTOPATH = ./definition
|
|
#CDESTPATH = ./gencc
|
|
CDESTPATH = ../../retroshare-nogui/src/rpc/proto/gencc
|
|
PYDESTPATH = ./genpy
|
|
#PYDESTPATH = ../../../../github/pyrs/pyrs/proto
|
|
|
|
CLIST = $(PROTO:%.proto=%.cc)
|
|
CCODE = $(patsubst %.proto,$(CDESTPATH)/%.pb.cc, $(PROTO))
|
|
HCODE = $(patsubst %.proto,$(CDESTPATH)/%.pb.h, $(PROTO))
|
|
PYCODE = $(patsubst %.proto,$(PYDESTPATH)/%_pb2.py, $(PROTO))
|
|
|
|
|
|
all: allc python_proto
|
|
|
|
allc: $(CCODE)
|
|
echo $(CCODE)
|
|
|
|
python_proto: $(PYCODE)
|
|
echo $(PYCODE)
|
|
|
|
$(CDESTPATH)/%.pb.cc : $(PROTOPATH)/%.proto
|
|
$(EXEC) --proto_path=$(PROTOPATH) --cpp_out=$(CDESTPATH) $<
|
|
|
|
$(PYDESTPATH)/%_pb2.py : $(PROTOPATH)/%.proto
|
|
$(EXEC) --proto_path=$(PROTOPATH) --python_out=$(PYDESTPATH) $<
|
|
|
|
clean:
|
|
-/bin/rm $(CCODE) $(HCODE) $(PYCODE)
|