summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-04-16 11:56:23 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-04-16 11:57:58 -0400
commit1c1efd5c5ebc94be3b45958bfacb5ed9db99f8c7 (patch)
treef877134c6ca19126caf0ee8ae5025ca6a1c8f125 /Makefile
parent3268b64dfa29ba3919c068b38369983638536616 (diff)
downloadbfs-1c1efd5c5ebc94be3b45958bfacb5ed9db99f8c7.tar.xz
build: Center [ CC ] / [ LD ]
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 006e93b..7cddc51 100644
--- a/Makefile
+++ b/Makefile
@@ -352,7 +352,7 @@ ${BIN}/bfs: ${LIBBFS} ${OBJ}/src/main.o
${BINS}:
@${MKDIR} ${@D}
- +${MSG} "[ LD] $@" ${CC} ${ALL_LDFLAGS} ${.ALLSRC} ${LDLIBS} -o $@
+ +${MSG} "[ LD ] $@" ${CC} ${ALL_LDFLAGS} ${.ALLSRC} ${LDLIBS} -o $@
${POSTLINK}
# All object files
@@ -378,7 +378,7 @@ CSRC = ${@:${OBJ}/%.o=%.c}
# the configuration changes
${OBJS}: ${CONFIG}
@${MKDIR} ${@D}
- ${MSG} "[ CC] ${CSRC}" ${CC} ${ALL_CFLAGS} -c ${CSRC} -o $@
+ ${MSG} "[ CC ] ${CSRC}" ${CC} ${ALL_CFLAGS} -c ${CSRC} -o $@
# Save the version number to this file, but only update VERSION if it changes
${GEN}/NEWVERSION::