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.
33 lines
815 B
33 lines
815 B
# 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.
|
|
|
|
ROOT_DIR = $(TESTS_DIR)/../..
|
|
|
|
include $(ROOT_DIR)/Makefile.config
|
|
|
|
default: compile
|
|
|
|
issues.exp.test: infer-out/report.json $(INFERPRINT_BIN)
|
|
$(INFERPRINT_BIN) -q -a $(ANALYZER) $(INFERPRINT_OPTIONS) $@ --from-json-report $<
|
|
|
|
.PHONY: compile
|
|
compile: $(OBJECTS)
|
|
|
|
.PHONY: analyze
|
|
analyze: infer-out/report.json
|
|
|
|
.PHONY: print
|
|
print: issues.exp.test
|
|
|
|
.PHONY: test
|
|
test: issues.exp.test
|
|
diff -u issues.exp issues.exp.test
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf codetoanalyze issues.exp.test infer-out $(OBJECTS) $(CLEAN_EXTRA)
|