Skip to content

Commit

Permalink
Separate the protobuf runtime framework into a new "all_frameworks" t…
Browse files Browse the repository at this point in the history
…arget.

	Change on 2015/11/10 by kstanger <kstanger@google.com>
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=107515472
  • Loading branch information
kstanger authored and tomball committed Nov 11, 2015
1 parent 779f0b0 commit 5800954
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,24 @@ install-man-pages: $(MAN_PAGES)
@mkdir -p $(DIST_DIR)/man/man1
@install -C -m 0644 $? $(DIST_DIR)/man/man1

dist: print_environment translator_dist jre_emul_dist junit_dist jsr305_dist \
javax_inject_dist guava_dist mockito_dist cycle_finder_dist install-man-pages

protobuf_dist: protobuf_compiler_dist protobuf_runtime_dist


frameworks: dist
@cd jre_emul && $(MAKE) framework
@cd junit && $(MAKE) framework
@cd jsr305 && $(MAKE) framework
@cd inject/javax_inject && $(MAKE) framework
@cd guava && $(MAKE) framework
@cd testing/mockito && $(MAKE) framework

all_frameworks: frameworks protobuf_dist
@cd protobuf/runtime && $(MAKE) framework

all_dist: dist protobuf_dist frameworks
dist: print_environment translator_dist jre_emul_dist junit_dist jsr305_dist \
javax_inject_dist guava_dist mockito_dist cycle_finder_dist install-man-pages

protobuf_dist: protobuf_compiler_dist protobuf_runtime_dist


all_dist: dist all_frameworks

clean:
@rm -rf $(BUILD_DIR) $(DIST_DIR)
Expand Down

0 comments on commit 5800954

Please sign in to comment.