From d32ef8ee7582ac8e9ead8068b3f68675e1878e21 Mon Sep 17 00:00:00 2001 From: dsavvinov Date: Wed, 10 Aug 2016 20:36:26 +0300 Subject: [PATCH] Protobuf: added generation of reference messages using Google's protoc and Java --- proto/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proto/Makefile b/proto/Makefile index 95db3fcd43e..b8bbc150b42 100644 --- a/proto/Makefile +++ b/proto/Makefile @@ -25,11 +25,11 @@ $(PROTOC_EXE): $(MAKE) -C $(PROTOC_DIR) # Place ProtoKot Runtime JAR into build directory -$(JAR): $(BUILDDIR) $(RUNTIME_JAR) +$(JAR): $(BUILDDIR) gradle_invoke cp $(RUNTIME_JAR) $(JAR) # Build ProtoKot Runtime via delegating call to Gradle Script -$(RUNTIME_JAR): +gradle_invoke: cd $(RUNTIME_DIR); gradle build # Create auxillary directories @@ -44,4 +44,4 @@ clean: cd $(RUNTIME_DIR); gradle clean rm -rf $(BUILDDIR) -.PHONY: clean all generate test +.PHONY: clean all generate test gradle_invoke