summaryrefslogtreecommitdiffstats
path: root/config/config.mk
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-04-17 12:09:11 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-04-17 12:09:11 -0400
commit94f26cec62be7f0d766f80f7376ea5e0040948ae (patch)
tree9e94e128f8a0aa0c0bd90f175b9e0a4096a43bd2 /config/config.mk
parentadf0ab47c2d18d807bb21345b92be9cc5525d539 (diff)
downloadbfs-94f26cec62be7f0d766f80f7376ea5e0040948ae.tar.xz
build: Dont include ${BUILDDIR} in short messages
Diffstat (limited to 'config/config.mk')
-rw-r--r--config/config.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/config.mk b/config/config.mk
index 164af76..9d64eec 100644
--- a/config/config.mk
+++ b/config/config.mk
@@ -16,7 +16,7 @@ MKS := \
# The main configuration file, which includes the others
${CONFIG}: ${MKS}
- ${MSG} "[ GEN] $@"
+ ${MSG} "[ GEN] ${TGT}"
@printf '# %s\n' "$@" >$@
@printf 'include $${GEN}/%s\n' ${.ALLSRC:${GEN}/%=%} >>$@
${VCAT} ${CONFIG}
@@ -25,7 +25,7 @@ ${CONFIG}: ${MKS}
# Saves the configurable variables
${GEN}/vars.mk::
@${MKDIR} ${@D}
- ${MSG} "[ GEN] $@"
+ ${MSG} "[ GEN] ${TGT}"
@printf '# %s\n' "$@" >$@
@printf 'PREFIX := %s\n' "$$XPREFIX" >>$@
@printf 'MANDIR := %s\n' "$$XMANDIR" >>$@
@@ -53,7 +53,7 @@ ${GEN}/deps.mk: ${GEN}/flags.mk
# Lists file.o: file.c dependencies
${GEN}/objs.mk::
@${MKDIR} ${@D}
- ${MSG} "[ GEN] $@"
+ ${MSG} "[ GEN] ${TGT}"
@printf '# %s\n' "$@" >$@
@for obj in ${OBJS:${OBJ}/%.o=%}; do printf '$${OBJ}/%s.o: %s.c\n' "$$obj" "$$obj"; done >>$@