diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-25 12:01:40 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-25 12:07:57 -0400 |
commit | 339c20aea74d5b4c6b8b178b478cc5530bc9af79 (patch) | |
tree | e0e856ca7dbf97ea1bfe95e0adc605acb5fc127c /config/deps.mk | |
parent | 19189e3f6f18b13e4f9c947c99062e658e98827d (diff) | |
download | bfs-339c20aea74d5b4c6b8b178b478cc5530bc9af79.tar.xz |
config: Add BFS_USE_LIB* to config.h instead of CPPFLAGS
Diffstat (limited to 'config/deps.mk')
-rw-r--r-- | config/deps.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/deps.mk b/config/deps.mk index 2201f06..ac394a5 100644 --- a/config/deps.mk +++ b/config/deps.mk @@ -15,4 +15,4 @@ ${GEN}/deps.mk:: printf 'DEPFLAGS = -MD -MP\n'; \ fi >>$@ 2>$@.log ${VCAT} $@ - @printf -- '-include %s\n' ${OBJS:.o=.d} >>$@ + printf -- '-include %s\n' ${OBJS:.o=.d} >>$@ |