You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.7 KiB
42 lines
1.7 KiB
# Copyright (c) 2016 - present Facebook, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the BSD style license found in the
|
|
# LICENSE file in the root directory of this source tree. An additional grant
|
|
# of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
TESTS_DIR = ../..
|
|
ROOT_DIR = $(TESTS_DIR)/../..
|
|
|
|
ANALYZER = infer
|
|
SOURCES = $(wildcard $(TESTS_DIR)/codetoanalyze/java/infer/*.java)
|
|
OBJECTS = $(ROOT_DIR)/buck-out/genruletest/gen/infer/tests/build_systems/genrule/module2/lib__module2_compile__output/module2_compile.jar
|
|
INFER_OPTIONS = --project-root $(ROOT_DIR)
|
|
INFERPRINT_OPTIONS = --project-root $(ROOT_DIR) --issues-tests
|
|
CLEAN_EXTRA = $(ROOT_DIR)/buck-out/genruletest
|
|
|
|
include $(TESTS_DIR)/java.make
|
|
include $(TESTS_DIR)/base.make
|
|
|
|
$(OBJECTS): $(JAVA_SOURCE_FILES)
|
|
cd $(ROOT_DIR) && \
|
|
$(call silent_on_success,\
|
|
NO_BUCKD=1 buck build --no-cache //infer/tests/codetoanalyze/java/infer:compile)
|
|
|
|
.PHONY: genrule
|
|
genrule: $(ROOT_DIR)/buck-out/genruletest/gen/infer/tests/build_systems/genrule/module2/module2_infer/infer_out/report.json
|
|
|
|
|
|
$(ROOT_DIR)/buck-out/genruletest/gen/infer/tests/build_systems/genrule/module2/module2_infer/infer_out/report.json: \
|
|
$(JAVA_DEPS) $(JAVA_SOURCE_FILES)
|
|
cd $(ROOT_DIR) && \
|
|
$(call silent_on_success,\
|
|
INFER_BIN="$(INFER_BIN)" NO_BUCKD=1 GENERATE_INFER_GENRULES=1 \
|
|
buck build --config project.buck_out=buck-out/genruletest --no-cache //infer/tests/build_systems/genrule/module2:module2_infer)
|
|
touch $@
|
|
|
|
infer-out/report.json: $(ROOT_DIR)/buck-out/genruletest/gen/infer/tests/build_systems/genrule/module2/module2_infer/infer_out/report.json
|
|
$(MKDIR_P) infer-out
|
|
# the report contains absolute paths
|
|
@sed -e 's#$(abspath $(ROOT_DIR))/##g' $< > $@
|