--- Makefile.orig 2023-04-13 09:38:01 +++ Makefile 2025-09-24 13:19:31 @@ -21,15 +21,15 @@ ${exe}: ${objs} @echo "Linking $@ ..." - @${CC} ${ldflags} -o $@ $^ ${libs} + ${CC} ${ldflags} -o $@ $^ ${libs} $O%.o: %.c @echo " Compiling $< ..." - @${CC} ${cflags} -MMD -MT "$(<:.c=.s) $@" -o $@ -c $< + ${CC} ${cflags} -MMD -MT "$(<:.c=.s) $@" -o $@ -c $< %.s: %.c @echo " Compiling $< to assembly ..." - @${CC} ${cflags} -S -o $@ -c $< + ${CC} ${cflags} -S -o $@ -c $< include man/Module.mk include po/Module.mk @@ -47,7 +47,7 @@ @${INSTALL} -d $@ ${exei}: ${exe} | ${exed} @echo "Installing $@ ..." - @${INSTALL_PROGRAM} $< $@ + ${INSTALL_PROGRAM} $< $@ installdirs: ${exed} install: ${exei}