Summary: Hardcoding `variable@` in Makefiles is Bad™ because it prevents the users from overwriting them easily with `make variable="my custom value"`. The right way to do it is thus: ``` variable = variable@ # then use $(variable) everywhere ``` This diff puts all the `variable = variable@` lines in Makefile.config.in, and changes every occurrence of a `variable@` to `$(variable)` everywhere else. I mostly automated generating this diff. Here are the steps I did: - find out which `variable@`s we use: find . -name 'Makefile*' -exec grep -e '@[^@ []\+@' -o -h \{\} \+ | sort | uniq > config_variables - write this `replace.sh` script to replace every `variable@` with `$(variable)`: ``` #!/bin/sh config_vars_file=$1 shift for line in $(cat $config_vars_file); do var=$(echo $line | tr -d @) sed -i -e "s/$line/\$($var)/g" $@ > /dev/null done ``` - run the script as such: find . -name 'Makefile.*in' \( -not -wholename './Makefile.config.in' \) -exec ./replace.sh config_variables \{\} \+ - put all the `VARIABLE = VARIABLE@` lines in Makefile.config.in - move all `Makefile.in` to `Makefile`, since they don't need to be generated by `./configure` anymore: ``` for i in $(find . -name 'Makefile.*in' \( -not -wholename './Makefile.config.in' \)); do \ rm $(dirname $i)/$(basename $i .in) && git mv $i $(dirname $i)/$(basename $i .in) ; \ done ``` - delete all Makefile except Makefile.config from configure.ac - manually inspect and remove remaining instances of `VAR = $(VAR)` in makefiles, looking at the output of `git grep '^\(\w\+\) = $(\1)'` Reviewed By: jberdine Differential Revision: D3358379 fbshipit-source-id: 5d37f02master
parent
0f895b0684
commit
533831a206
@ -1,260 +0,0 @@
|
||||
# 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@
|
||||
ROOT_DIR = .
|
||||
include $(ROOT_DIR)/Makefile.config
|
||||
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
bindir = @bindir@
|
||||
libdir = @libdir@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
TARGETS_TO_TEST=
|
||||
ifeq (@BUILD_C_ANALYZERS@,yes)
|
||||
TARGETS_TO_TEST += c cpp
|
||||
endif
|
||||
ifeq (@BUILD_JAVA_ANALYZERS@,yes)
|
||||
TARGETS_TO_TEST += java
|
||||
endif
|
||||
ifneq (@XCODE_SELECT@,no)
|
||||
TARGETS_TO_TEST += objc objcpp
|
||||
endif
|
||||
TARGETS_TO_TEST := $(shell echo $(TARGETS_TO_TEST))
|
||||
|
||||
all: infer inferTraceBugs
|
||||
|
||||
$(INFER_BIN_RELPATH) $(INFERTRACEBUGS_BIN_RELPATH):
|
||||
($(REMOVE) $@ && \
|
||||
cd $(@D) && \
|
||||
$(LN_S) ../lib/python/$(@F) $(@F))
|
||||
|
||||
infer: $(INFER_BIN_RELPATH)
|
||||
$(MAKE) -C $(SRC_DIR) infer
|
||||
ifeq (@BUILD_JAVA_ANALYZERS@,yes)
|
||||
$(MAKE) -C $(ANNOTATIONS_DIR)
|
||||
endif
|
||||
$(MAKE) -C $(MODELS_DIR) all
|
||||
|
||||
ifeq (@BUILD_C_ANALYZERS@,yes)
|
||||
infer: clang_plugin
|
||||
endif
|
||||
|
||||
clang_setup:
|
||||
export CC="@CC@" CFLAGS="@CFLAGS@"; \
|
||||
export CXX="@CXX@" CXXFLAGS="@CXXFLAGS@"; \
|
||||
export CPP="@CPP@" LDFLAGS="@LDFLAGS@" LIBS="@LIBS@"; \
|
||||
$(FCP_DIR)/clang/setup.sh
|
||||
|
||||
clang_plugin: clang_setup
|
||||
ifeq (@IS_RELEASE_TREE@,no)
|
||||
$(MAKE) -C $(FCP_DIR)/libtooling all \
|
||||
CC=@CC@ CXX=@CXX@ \
|
||||
CFLAGS="@CFLAGS@" CXXFLAGS="@CXXFLAGS@" \
|
||||
CPP="@CPP@" LDFLAGS="@LDFLAGS@" LIBS="@LIBS@" \
|
||||
LOCAL_CLANG=@CLANG_PREFIX@/bin/clang \
|
||||
CLANG_PREFIX=@CLANG_PREFIX@ \
|
||||
CLANG_INCLUDES=@CLANG_INCLUDES@
|
||||
$(MAKE) -C $(FCP_DIR)/clang-ocaml all \
|
||||
build/clang_ast_proj.ml build/clang_ast_proj.mli \
|
||||
CC=@CC@ CXX=@CXX@ \
|
||||
CFLAGS="@CFLAGS@" CXXFLAGS="@CXXFLAGS@" \
|
||||
CPP="@CPP@" LDFLAGS="@LDFLAGS@" LIBS="@LIBS@" \
|
||||
LOCAL_CLANG=@CLANG_PREFIX@/bin/clang \
|
||||
CLANG_PREFIX=@CLANG_PREFIX@ \
|
||||
CLANG_INCLUDES=@CLANG_INCLUDES@
|
||||
endif
|
||||
|
||||
inferTraceBugs: $(INFERTRACEBUGS_BIN_RELPATH)
|
||||
|
||||
test_this_build: clang_plugin
|
||||
$(MAKE) -C $(SRC_DIR) test_build
|
||||
|
||||
test_oss_build: clang_plugin
|
||||
# make sure we don't break the opensource build
|
||||
$(MAKE) -C $(SRC_DIR) EXTRA_DEPS=opensource LLVM_BUILD_DIR=$(BUILD_DIR)/llvm_opensource TEST_BUILD_DIR=$(BUILD_DIR)/opensource test_build
|
||||
|
||||
test_build: test_this_build
|
||||
ifeq (@IS_FACEBOOK_TREE@,yes)
|
||||
test_build: test_oss_build
|
||||
endif
|
||||
|
||||
ocaml_unit_test: infer
|
||||
$(INFERUNIT_BIN)
|
||||
|
||||
buck_test: infer
|
||||
NO_BUCKD=1 buck clean
|
||||
NO_BUCKD=1 buck test $(TARGETS_TO_TEST)
|
||||
NO_BUCKD=1 ./infer/tests/build_systems/build_integration_tests.py
|
||||
|
||||
buck_test_xml: infer
|
||||
NO_BUCKD=1 buck clean
|
||||
NO_BUCKD=1 buck test --xml test.xml $(TARGETS_TO_TEST)
|
||||
NO_BUCKD=1 ./infer/tests/build_systems/build_integration_tests.py
|
||||
|
||||
inferTraceBugs_test: infer
|
||||
$(INFER_BIN) -o __test-infer-out__ -- \
|
||||
javac $(EXAMPLES_DIR)/Hello.java \
|
||||
> /dev/null
|
||||
@rm -f Hello.class
|
||||
$(PYTHON_DIR)/inferTraceBugs -o __test-infer-out__ \
|
||||
--select 0 --max-level max > /dev/null
|
||||
$(PYTHON_DIR)/inferTraceBugs -o __test-infer-out__ \
|
||||
--select 0 --max-level 0 > /dev/null
|
||||
$(PYTHON_DIR)/inferTraceBugs -o __test-infer-out__ \
|
||||
--select 0 --max-level max --no-source > /dev/null
|
||||
$(PYTHON_DIR)/inferTraceBugs -o __test-infer-out__ \
|
||||
--only-show > /dev/null
|
||||
@rm -fr __test-infer-out__
|
||||
|
||||
check_missing_mli:
|
||||
@bash -c '\
|
||||
for x in `find infer/src -name "*.ml"`; do \
|
||||
test -f "$$x"i || echo Missing "$$x"i; done'
|
||||
|
||||
test: test_build ocaml_unit_test buck_test inferTraceBugs_test
|
||||
$(MAKE) -C $(SRC_DIR) mod_dep.dot
|
||||
|
||||
test_xml: test_build ocaml_unit_test buck_test_xml inferTraceBugs_test
|
||||
$(MAKE) -C $(SRC_DIR) mod_dep.dot
|
||||
|
||||
uninstall:
|
||||
$(REMOVE_DIR) $(DESTDIR)$(libdir)/infer/
|
||||
$(REMOVE) $(DESTDIR)$(bindir)/inferTraceBugs
|
||||
$(REMOVE) $(DESTDIR)$(bindir)/infer
|
||||
|
||||
install: infer inferTraceBugs
|
||||
# create directory structure
|
||||
test -d $(DESTDIR)$(bindir) || \
|
||||
$(MKDIR_P) $(DESTDIR)$(bindir)
|
||||
test -d $(DESTDIR)$(libdir)/infer/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/
|
||||
ifeq (@BUILD_C_ANALYZERS@,yes)
|
||||
test -d $(DESTDIR)$(libdir)/infer/facebook-clang-plugins/libtooling/build/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/facebook-clang-plugins/libtooling/build/
|
||||
@for i in $$(find facebook-clang-plugins/clang/ -not -wholename 'src/*' -type d); do \
|
||||
test -d $(DESTDIR)$(libdir)/infer/$$i || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/$$i; \
|
||||
done
|
||||
test -d $(DESTDIR)$(libdir)/infer/infer/lib/clang_wrappers/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/infer/lib/clang_wrappers/
|
||||
endif
|
||||
ifeq (@BUILD_JAVA_ANALYZERS@,yes)
|
||||
test -d $(DESTDIR)$(libdir)/infer/infer/lib/java/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/infer/lib/java/
|
||||
endif
|
||||
ifneq (@XCODE_SELECT@,no)
|
||||
test -d $(DESTDIR)$(libdir)/infer/infer/lib/xcode_wrappers/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/infer/lib/xcode_wrappers/
|
||||
endif
|
||||
test -d $(DESTDIR)$(libdir)/infer/infer/annotations/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/infer/annotations/
|
||||
test -d $(DESTDIR)$(libdir)/infer/infer/lib/wrappers/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/infer/lib/wrappers/
|
||||
test -d $(DESTDIR)$(libdir)/infer/infer/lib/specs/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/infer/lib/specs/
|
||||
test -d $(DESTDIR)$(libdir)/infer/infer/lib/python/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/infer/lib/python/
|
||||
test -d $(DESTDIR)$(libdir)/infer/infer/lib/python/inferlib/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/infer/lib/python/inferlib/
|
||||
test -d $(DESTDIR)$(libdir)/infer/infer/lib/python/inferlib/capture/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/infer/lib/python/inferlib/capture/
|
||||
test -d $(DESTDIR)$(libdir)/infer/infer/bin/ || \
|
||||
$(MKDIR_P) $(DESTDIR)$(libdir)/infer/infer/bin/
|
||||
|
||||
# copy files
|
||||
ifeq (@BUILD_C_ANALYZERS@,yes)
|
||||
$(INSTALL_DATA) -C facebook-clang-plugins/libtooling/build/FacebookClangPlugin.dylib \
|
||||
$(DESTDIR)$(libdir)/infer/facebook-clang-plugins/libtooling/build/FacebookClangPlugin.dylib
|
||||
@for i in $$(find facebook-clang-plugins/clang/ -not -wholename 'src/*' -not -name setup.sh -not -name installed.version -not -type d); do \
|
||||
$(INSTALL_PROGRAM) -C $$i $(DESTDIR)$(libdir)/infer/$$i; \
|
||||
done
|
||||
@for i in $$(find infer/lib/clang_wrappers/*); do \
|
||||
$(INSTALL_PROGRAM) -C $$i $(DESTDIR)$(libdir)/infer/$$i; \
|
||||
done
|
||||
@for i in $$(find infer/lib/specs/*); do \
|
||||
$(INSTALL_DATA) -C $$i $(DESTDIR)$(libdir)/infer/$$i; \
|
||||
done
|
||||
$(INSTALL_PROGRAM) -C $(INFERCLANG_BIN) $(DESTDIR)$(libdir)/infer/infer/bin/
|
||||
endif
|
||||
ifneq (@XCODE_SELECT@,no)
|
||||
@for i in $$(find infer/lib/xcode_wrappers/*); do \
|
||||
$(INSTALL_PROGRAM) -C $$i $(DESTDIR)$(libdir)/infer/$$i; \
|
||||
done
|
||||
endif
|
||||
ifeq (@BUILD_JAVA_ANALYZERS@,yes)
|
||||
$(INSTALL_DATA) -C infer/annotations/annotations.jar \
|
||||
$(DESTDIR)$(libdir)/infer/infer/annotations/annotations.jar
|
||||
@for i in infer/lib/java/*.jar; do \
|
||||
$(INSTALL_DATA) -C $$i $(DESTDIR)$(libdir)/infer/$$i; \
|
||||
done
|
||||
$(INSTALL_PROGRAM) -C $(INFERJAVA_BIN) $(DESTDIR)$(libdir)/infer/infer/bin/
|
||||
endif
|
||||
@for i in $$(find infer/lib/wrappers/*); do \
|
||||
$(INSTALL_PROGRAM) -C $$i $(DESTDIR)$(libdir)/infer/$$i; \
|
||||
done
|
||||
@for i in $$(find infer/lib/python/inferlib/* -type f); do \
|
||||
$(INSTALL_DATA) -C $$i $(DESTDIR)$(libdir)/infer/$$i; \
|
||||
done
|
||||
$(INSTALL_PROGRAM) -C infer/lib/python/infer \
|
||||
$(DESTDIR)$(libdir)/infer/infer/lib/python/infer
|
||||
$(INSTALL_PROGRAM) -C infer/lib/python/inferTraceBugs \
|
||||
$(DESTDIR)$(libdir)/infer/infer/lib/python/inferTraceBugs
|
||||
$(INSTALL_PROGRAM) -C $(INFERANALYZE_BIN) $(DESTDIR)$(libdir)/infer/infer/bin/
|
||||
$(INSTALL_PROGRAM) -C $(INFERPRINT_BIN) $(DESTDIR)$(libdir)/infer/infer/bin/
|
||||
(cd $(DESTDIR)$(libdir)/infer/infer/bin/ && \
|
||||
$(REMOVE) infer && \
|
||||
$(LN_S) $(DESTDIR)$(libdir)/infer/infer/lib/python/infer infer)
|
||||
(cd $(DESTDIR)$(bindir)/ && \
|
||||
$(REMOVE) infer && \
|
||||
$(LN_S) $(DESTDIR)$(libdir)/infer/infer/lib/python/infer infer)
|
||||
(cd $(DESTDIR)$(bindir)/ && \
|
||||
$(REMOVE) inferTraceBugs && \
|
||||
$(LN_S) $(DESTDIR)$(libdir)/infer/infer/lib/python/inferTraceBugs inferTraceBugs)
|
||||
|
||||
clean:
|
||||
$(REMOVE) test.xml
|
||||
ifeq (@IS_RELEASE_TREE@,no)
|
||||
ifeq (@BUILD_C_ANALYZERS@,yes)
|
||||
$(MAKE) -C $(FCP_DIR) clean
|
||||
$(MAKE) -C $(FCP_DIR)/clang-ocaml clean
|
||||
endif
|
||||
endif
|
||||
$(MAKE) -C $(SRC_DIR) clean
|
||||
$(MAKE) -C $(ANNOTATIONS_DIR) clean
|
||||
$(MAKE) -C $(MODELS_DIR) clean
|
||||
$(REMOVE) $(INFER_BIN_RELPATH) $(INFERTRACEBUGS_BIN_RELPATH)
|
||||
|
||||
conf-clean: clean
|
||||
$(REMOVE) infer/lib/python/inferlib/*.pyc
|
||||
$(REMOVE) infer/lib/python/inferlib/*/*.pyc
|
||||
$(REMOVE) .buckversion
|
||||
$(REMOVE) Makefile
|
||||
$(REMOVE) Makefile.config
|
||||
$(REMOVE) acinclude.m4
|
||||
$(REMOVE) aclocal.m4
|
||||
$(REMOVE_DIR) autom4te.cache/
|
||||
$(REMOVE) config.log
|
||||
$(REMOVE) config.status
|
||||
$(REMOVE) configure
|
||||
$(REMOVE) infer/models/Makefile
|
||||
$(REMOVE) infer/models/c/Makefile
|
||||
$(REMOVE_DIR) infer/models/c/out/
|
||||
$(REMOVE) infer/models/cpp/Makefile
|
||||
$(REMOVE_DIR) infer/models/cpp/out/
|
||||
$(REMOVE) infer/models/java/Makefile
|
||||
$(REMOVE_DIR) infer/models/java/infer-out/
|
||||
$(REMOVE) infer/models/objc/Makefile
|
||||
$(REMOVE_DIR) infer/models/objc/out/
|
||||
$(REMOVE) infer/src/Makefile
|
||||
|
||||
.PHONY: all buck_test buck_test_xml clean clang_plugin clang_setup infer inferTraceBugs
|
||||
.PHONY: inferTraceBugs_test ocaml_unit_test check_missing_mli test test_xml test_build install
|
||||
.PHONY: uninstall
|
Loading…
Reference in new issue