mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
tweaked Makefile
- only builds C++ by default. - files are generated into rs-nogui src tree. git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5713 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
fde1e8d66d
commit
e432a2a661
@ -6,8 +6,8 @@ PROTO = core.proto peers.proto system.proto chat.proto search.proto files.proto
|
||||
PROTOPATH = ./definition
|
||||
#CDESTPATH = ./gencc
|
||||
CDESTPATH = ../../retroshare-nogui/src/rpc/proto/gencc
|
||||
#PYDESTPATH = ./genpy
|
||||
PYDESTPATH = ../../../../github/pyrs/pyrs/proto
|
||||
PYDESTPATH = ./genpy
|
||||
#PYDESTPATH = ../../../../github/pyrs/pyrs/proto
|
||||
|
||||
CLIST = $(PROTO:%.proto=%.cc)
|
||||
CCODE = $(patsubst %.proto,$(CDESTPATH)/%.pb.cc, $(PROTO))
|
||||
@ -16,10 +16,12 @@ PYCODE = $(patsubst %.proto,$(PYDESTPATH)/%_pb2.py, $(PROTO))
|
||||
|
||||
|
||||
all: allc
|
||||
echo $(CCODE)
|
||||
echo $(PYCODE)
|
||||
|
||||
allc: $(CCODE) $(PYCODE)
|
||||
allc: $(CCODE)
|
||||
echo $(CCODE)
|
||||
|
||||
python_proto: $(PYCODE)
|
||||
echo $(PYCODE)
|
||||
|
||||
$(CDESTPATH)/%.pb.cc : $(PROTOPATH)/%.proto
|
||||
$(EXEC) --proto_path=$(PROTOPATH) --cpp_out=$(CDESTPATH) $<
|
||||
|
Loading…
Reference in New Issue
Block a user