diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-06-21 11:57:18 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-06-21 11:57:18 -0400 |
commit | 4bc06bd999786da359a05801bf9106597fe57298 (patch) | |
tree | 35f6df837663793f0dca34996c82c19552041f7a /build/header.mk | |
parent | bc20905af9b61e78549705117fd3401329a972c0 (diff) | |
download | bfs-4bc06bd999786da359a05801bf9106597fe57298.tar.xz |
build: Generate config.mk after config.h
That way if ./configure fails, make will complain about it directly.
Diffstat (limited to 'build/header.mk')
-rw-r--r-- | build/header.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/header.mk b/build/header.mk index 632afb6..65e95cb 100644 --- a/build/header.mk +++ b/build/header.mk @@ -4,7 +4,10 @@ # Makefile that generates gen/config.h include build/prelude.mk -include gen/config.mk +include gen/vars.mk +include gen/flags.mk +include gen/deps.mk +include gen/pkgs.mk include build/exports.mk # All header fragments we generate |