diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-26 17:42:44 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-26 17:43:54 -0400 |
commit | e061b6da5ee46a334169d4e6a52e49857ae22f55 (patch) | |
tree | 54be48f77a01ef3dce27e2e7df812e0846ddcd12 /config/prelude.mk | |
parent | 83dd04452498408c1d46b7282ed08e9f5a1e76a8 (diff) | |
download | bfs-e061b6da5ee46a334169d4e6a52e49857ae22f55.tar.xz |
config: Move .c files into config/{use,has} subdirectories
Diffstat (limited to 'config/prelude.mk')
-rw-r--r-- | config/prelude.mk | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config/prelude.mk b/config/prelude.mk index e1e7a4d..6b0b649 100644 --- a/config/prelude.mk +++ b/config/prelude.mk @@ -110,13 +110,21 @@ MSG = @msg() { \ msg # Maximum width of a short message, to align the ✔/✘ -MSG_WIDTH := 33 +MSG_WIDTH := 30 # cat a file if V=1 VCAT,y := @cat VCAT, := @: VCAT := ${VCAT,${IS_V}} +# All external dependencies +ALL_PKGS := \ + libacl \ + libcap \ + libselinux \ + liburing \ + oniguruma + # List all object files here, as they're needed by both `make config` and `make` # All object files except the entry point |