diff options
author | Fredrik Kuivinen <frekui@gmail.com> | 2011-06-22 12:50:56 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-06-22 11:56:53 -0700 |
commit | d9a25fca5fc01ab4e2e114795c442906bc67de26 (patch) | |
tree | 7d705f4a5b3e91539435e645832b3b5ce420b144 /.gitignore | |
parent | 2765233c64c35eb43a8b46c377fb8b464469221f (diff) | |
download | git-d9a25fca5fc01ab4e2e114795c442906bc67de26.tar.gz |
Makefile: Track changes to LDFLAGS and relink when necessary
Some profiling tools (e.g., google-perftools and mutrace) work by
linking in a new library into the executables. When using these tools
it is convenient to only relink instead of doing a full make clean;
make cycle.
This change complements the auto-detection of changes to CFLAGS that
we already have. Tracking of more variables that affect the build can
be added when the need arise.
Signed-off-by: Fredrik Kuivinen <frekui@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index acffdfaae6..8572c8c0b0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ /GIT-BUILD-OPTIONS /GIT-CFLAGS +/GIT-LDFLAGS /GIT-GUI-VARS /GIT-VERSION-FILE /bin-wrappers/ |