diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-02-25 14:19:36 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-02-25 14:19:36 -0800 |
| commit | 092180990de06a9be1b3d662c7e46eccceb24bb1 (patch) | |
| tree | e75849dff60e5072037ab2d9d508e3017b431c85 /t/perf | |
| parent | 9b07c152dfce52663795fe9b4e1ed5626bfda455 (diff) | |
| parent | 5309c1e9fb399c390ed36ef476e91f76f6746fa9 (diff) | |
| download | git-092180990de06a9be1b3d662c7e46eccceb24bb1.tar.gz | |
Merge branch 'ad/set-default-target-in-makefiles'
Correct the default target in Documentation/Makefile, and
future-proof all Makefiles from similar breakages by declaring the
default target (which happens to be "all") upfront.
* ad/set-default-target-in-makefiles:
Makefile: set default goals in makefiles
Diffstat (limited to 't/perf')
| -rw-r--r-- | t/perf/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/t/perf/Makefile b/t/perf/Makefile index e4808aebed..9b3090c4ed 100644 --- a/t/perf/Makefile +++ b/t/perf/Makefile @@ -1,10 +1,13 @@ +# The default target of this Makefile is... +all:: + # Import tree-wide shared Makefile behavior and libraries include ../../shared.mak -include ../../config.mak export GIT_TEST_OPTIONS -all: test-lint perf +all:: test-lint perf perf: pre-clean ./run |
