diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-16 11:56:23 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-16 11:57:58 -0400 |
commit | 1c1efd5c5ebc94be3b45958bfacb5ed9db99f8c7 (patch) | |
tree | f877134c6ca19126caf0ee8ae5025ca6a1c8f125 /Makefile | |
parent | 3268b64dfa29ba3919c068b38369983638536616 (diff) | |
download | bfs-1c1efd5c5ebc94be3b45958bfacb5ed9db99f8c7.tar.xz |
build: Center [ CC ] / [ LD ]
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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:: |