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.
75 lines
2.0 KiB
75 lines
2.0 KiB
# Copyright (c) 2015 - 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.
|
|
|
|
@SET_MAKE@
|
|
|
|
ANT = @ANT@
|
|
ATDGEN = @ATDGEN@
|
|
bindir = @bindir@
|
|
BUCK = @BUCK@
|
|
BUILD_C_ANALYZERS = @BUILD_C_ANALYZERS@
|
|
BUILD_JAVA_ANALYZERS = @BUILD_JAVA_ANALYZERS@
|
|
CAML_LD_LIBRARY_PATH = @CAML_LD_LIBRARY_PATH@
|
|
CC = @CC@
|
|
CFLAGS = @CFLAGS@
|
|
CLANG_INCLUDES = @CLANG_INCLUDES@
|
|
CLANG_PREFIX = @CLANG_PREFIX@
|
|
CMAKE = @CMAKE@
|
|
CPP = @CPP@
|
|
CXX = @CXX@
|
|
CXXFLAGS = @CXXFLAGS@
|
|
ENABLE_OCAMLOPT_CUSTOM_CC = @ENABLE_OCAMLOPT_CUSTOM_CC@
|
|
ENABLE_OCAML_BINANNOT = @ENABLE_OCAML_BINANNOT@
|
|
exec_prefix = @exec_prefix@
|
|
INFER_MAJOR = @INFER_MAJOR@
|
|
INFER_MINOR = @INFER_MINOR@
|
|
INFER_PATCH = @INFER_PATCH@
|
|
INSTALL = @INSTALL@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
IS_FACEBOOK_TREE = @IS_FACEBOOK_TREE@
|
|
IS_RELEASE_TREE = @IS_RELEASE_TREE@
|
|
JAVAC = @JAVAC@
|
|
LDFLAGS = @LDFLAGS@
|
|
libdir = @libdir@
|
|
# override in your `make` command to make the install relocatable
|
|
libdir_relative_to_bindir = $(libdir)
|
|
LIBS = @LIBS@
|
|
MENHIR = @MENHIR@
|
|
MKDIR_P_CMD = case "@MKDIR_P@" in \
|
|
./*) printf "$(ROOT_DIR)/@MKDIR_P@\n";; \
|
|
*) printf "@MKDIR_P@\n";; \
|
|
esac
|
|
MKDIR_P = $(shell $(MKDIR_P_CMD))
|
|
MVN = @MVN@
|
|
NCPU = @NCPU@
|
|
NDKBUILD = @NDKBUILD@
|
|
OCAMLC = @OCAMLC@
|
|
OCAMLFIND = @OCAMLFIND@
|
|
OCAMLLEX = @OCAMLLEX@
|
|
OCAMLOPT = @OCAMLOPT@
|
|
PATH = @PATH@
|
|
prefix = @prefix@
|
|
PYTHON_lxml = @PYTHON_lxml@
|
|
REBUILD = @REBUILD@
|
|
SHASUM = @SHASUM@
|
|
USER_JAVA_HOME = @USER_JAVA_HOME@
|
|
XCODE_SELECT = @XCODE_SELECT@
|
|
XCPRETTY = @XCPRETTY@
|
|
|
|
ifneq (,$(findstring s,$(MAKEFLAGS)))
|
|
# quiet mode
|
|
LN_S = @LN_S@
|
|
else
|
|
LN_S = @LN_S@ -v
|
|
endif
|
|
|
|
# Export parts of the config relevant to running other programs
|
|
# be merciful and allow PATH to be updated between ./configure and make
|
|
export PATH := $(shell printf "%s" "$$PATH"):$(PATH)
|
|
export CAML_LD_LIBRARY_PATH := $(CAML_LD_LIBRARY_PATH)
|