[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Detect --disable-dependency-tracking in Makefile.am
From: |
Jan Engelhardt |
Subject: |
Re: Detect --disable-dependency-tracking in Makefile.am |
Date: |
Sat, 30 Sep 2023 07:07:17 +0200 (CEST) |
User-agent: |
Alpine 2.26 (LSU 649 2022-06-02) |
On Saturday 2023-09-30 05:27, Dave Hart wrote:
>I've added code to the ntp.org Makefile.am files to ensure the static
>utility library libntp.a is up-to-date for each program that uses it, to
>ensure the build is correct. When building the project, this adds a bunch
>of extra submake invocations which slows down the build. I'd like to omit
>those when --disable-dependency-tracking is used, to speed one-off builds
>that are done by end-users and packagers.
submake is pretty much independent of and from dependency tracking.
The general direction contemporary projects take is to just not do submake
anymore, because it's a slowdown whether or not deptracking is used.