commit 548c2849fab0906f262491fc9744724f23af6687 from: Omar Polo date: Wed Apr 14 15:06:27 2021 UTC hide output of etags even the message "sh: etags: not such file or directory" or whatever seems to be confusing for users, so silent it. (maybe it would be better not to automatically generate the TAGS, but it's so handy...) commit - b33425827e3b96fa5f0ee2b7892fb5782c9b7879 commit + 548c2849fab0906f262491fc9744724f23af6687 blob - b86703b055e972b4d193fe449bc3bf509084a900 blob + 731d37edbc4bf55d205dce4b3ef062e98182988d --- Makefile +++ Makefile @@ -26,7 +26,7 @@ static: ${OBJS} ${CC} ${OBJS} -o gmid ${LDFLAGS} ${STATIC} TAGS: ${SRCS} - -etags ${SRCS} || true + @(etags ${SRCS} || true) 2>/dev/null clean: rm -f *.o compat/*.o lex.yy.c y.tab.c y.tab.h y.output gmid gg