From d1eff7436bad62422f298655f9476f711bfbba67 Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Thu, 26 May 2016 09:38:45 -0700 Subject: [PATCH] build more things Summary: We stopped including the directories for java/clang/llvm with the change in the makefile. `ocamlbuild` seems to be mostly happy still. Reviewed By: jberdine Differential Revision: D3352703 fbshipit-source-id: 5b4e763 --- infer/src/Makefile.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/infer/src/Makefile.in b/infer/src/Makefile.in index a8be488b8..818ea1dd8 100644 --- a/infer/src/Makefile.in +++ b/infer/src/Makefile.in @@ -153,12 +153,15 @@ INFER_CONFIG_TARGETS = $(INFER_BASE_TARGETS) ifeq (@BUILD_JAVA_ANALYZERS@,yes) OCAMLBUILD_CONFIG += $(JAVA_OCAMLBUILD_OPTIONS) INFER_CONFIG_TARGETS += $(INFERJAVA_MAIN).native +DEPENDENCIES += java endif ifeq (@BUILD_C_ANALYZERS@,yes) INFER_CONFIG_TARGETS += $(INFERCLANG_MAIN).native +DEPENDENCIES += clang endif ifeq (@BUILD_LLVM_ANALYZERS@,yes) INFER_CONFIG_TARGETS += $(INFERLLVM_MAIN).native +DEPENDENCIES += llvm endif .PHONY: all infer init version sanitize clean